.contentListBox{
    display: flex;
    justify-content: space-between;
}
.content-left {
    width: 300px;
    height: auto;
    max-height: 800px;
    overflow-x: hidden;
    overflow-y: auto;
    padding: 10px 10px 0;
    margin-right: 20px;
    border: 2px solid #d1d1d1;
    box-sizing: border-box;
}
.left-title {
    font-size: 18px;
    padding: 10px 0;
    font-weight: bold;
    border-bottom: 3px solid #660099;
    margin-bottom: 15px;
    box-sizing: border-box;
}
.content-right {
    width: calc(100% - 320px);
    min-height: 200px;
}
.list-box {
    margin-bottom: 20px;
    padding: 0 10px;
    box-sizing: border-box;
}
.list-item {
    display: flex;
    margin-bottom: 20px;
    cursor: pointer;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 12px 0 rgba(0, 0, 0, .1);
}
.list-item:nth-last-child(1) {
    margin-bottom: 0;
}
.list-item img {
    width: 150px;
    height: 150px;
    border: 1px solid #d1d1d1;
    margin-right: 10px;
    display: block;
}
.product-title {
    width: 180px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 16px;
    color: #333;
}

.product-specs {
    width: 110px;
    text-align: center;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 14px;
    color: #666;
}
.product-desc {
    width: 400px;
    font-size: 14px;
    color: #666;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    padding: 0 10px;
    box-sizing: border-box;
    -webkit-line-clamp: 4;
}
.list-head {
    box-shadow: 0 2px 12px 0 transparent;
}
.list-head *{
    text-align: center;
}
.list-head p {
    width: 150px;
    border-left: none;
    margin-right: 10px;
}


.page {
    text-align: right;
    padding: 20px 0;
    box-sizing: border-box;
}

.page a {
    color: #333;
    margin: 0 10px;
}

.page .page-seq {
    min-width: 30px;
    height: 28px;
    border-radius: 2px;
    display: inline-block;
    text-align: center;
    line-height: 28px;
    border: 1px solid rgba(0, 0, 0, .1);
    font-weight: bold;
}

.seq-active {
    color: #fff !important;
    background: #1890ff;
}