
/*------设计师系列列表----------*/

.content-box{
    padding-top: 80px;
    min-height: calc(100vh - 134px);
}

.product-list-box{
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: space-between;
}
.product-item-box{
    width: 560px;
    height: 374px;
    position: relative;
    margin-bottom: 80px;
    overflow: hidden;
    transition: all 0.8s;
    cursor: pointer;
}
.product-img{
    width: 100%;
    height: 100%;
    transition: all 0.8s;
}
.product-text-box{
    position: absolute;
    bottom: 0px;
    left: 0;
    width: 100%;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #fff;
    background-color: rgba(0, 0, 0, 0.4);
    cursor: pointer;
}
.product-item-box:hover{
    box-shadow: 0px 2px 8px 0px rgba(156, 156, 156, 0.5);
}
.product-item-box:hover .product-img{
    transform: scale(1.1);
}

/*------设计师系列详情----------*/
.link-tab-box{
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 14px;
    line-height: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #0C0C0B;
    margin-bottom: 80px;
}
.link-item{
    width: 300px;
    color: #0C0C0B;
    cursor: pointer;
}
.link-item:nth-of-type(2){
    text-align: center;
}
.link-item:nth-of-type(3){
    text-align: right;
}
.link-item:hover{
    color: #0C0C0B;
}
.product-detail-img{
    width: 100%;
    margin-bottom: 30px;
}
.product-detail-title{
    font-size: 32px;
    margin-bottom: 20px;
    color: #111111;
    text-align: center;
}
.product-detail-content{
    line-height: 24px;
    font-size: 16px;
    color: #0C0C0B;
    text-align: center;
    margin: 0 0 20px;
}
.product-detail-list{
    display: flex;
    padding: 0 70px;
    flex-wrap: wrap;
    /* align-items: center; */
    margin-bottom: 60px;
}
.product-detail-item{
    width: 160px;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0 20px 20px 0;
    cursor: pointer;
}
.product-detail-item:nth-of-type(6n){
    margin-right: 0;
}
.detail-item-img{
    width: 100%;
    height: 160px;
    transition: all 0.6s;
    margin-bottom: 10px;
}
.detail-item-img:hover{
    transform: scale(1.1);
}
.detail-item-name{
    margin-top: 10px;
    text-align: center;
}