.product {
    padding: 126px 0 90px;
    background: RGBA(248, 248, 248, 1);
}
.product .box1 .title{
    font-weight: 300;
    color: #222222;
    line-height: 1;
    text-align: center;
}
.product .box1 .box-c{
    margin-top: 61px;
}
.product .box1 .box-c .list{
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 40px;
}
.product .box1 .box-c .list li{
    position: relative;
}
.product .box1 .box-c .list li>a{
    display: block;
}
.product .box1 .box-c .list li .picCover{
    padding-top: 100%;
}
.product .box1 .box-c .list li .liBox{
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: rgba(110, 89, 41, .54);
    transition: all 0.6s;
    opacity: 0;
    z-index: 3;
    padding: 20px;
}
.product .box1 .box-c .list li:hover .liBox{
    opacity: 1;
}
.product .box1 .box-c .list li .name{
    font-family: Microsoft YaHei;
    font-weight: 400;
    font-size: 18px;
    color: #FFFFFF;
    line-height: 30px;
    text-align: center;
}
.product .box1 .box-c .list li .more{
    font-weight: 400;
    font-size: 16px;
    color: #FFFFFF;
    line-height: 40px;
    text-align: center;
    background: #79171C;
    border-radius: 20px;
    padding: 0 36px;
    text-transform: uppercase;
    margin-top: 48px;
}
.product .box1 .box-c .list li.bigPicture{
    grid-row: auto / span 2;
    grid-column: auto / span 2;
}
.product-list{
    padding: 120px 0 100px;
    background-color: RGBA(248, 248, 248, 1);
}
.product-list .box1 .box-c{
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}
.product-list .box1 .box-c .r{
    flex: 1;
    margin-left: 30px;
}
.product-list .box1 .box-c .r .list{
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 10px;
}
.productItem{
    background: #fff;
}

.productItem>a{
    display: block;
    padding: 25px 30px 30px;
}
.productItem .labels{
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.productItem .labels .label{
    font-weight: 400;
    font-size: 16px;
    color: #999999;
    line-height: 34px;
    padding: 0 12px;
    border-radius: 5px;
    border: 1px solid #DEDEDE;
    transition: all 0.6s;
}
.productItem .labels .label:hover{
    background: #79171C;
    color: #fff;
    border-color: #79171C;
}
.productItem .picCover{
    margin: 19px 0 14px;
    padding-top: 100%;
}
.productItem .text-title{
    font-weight: 400;
    font-size: 18px;
    color: #222222;
    line-height: 28px;
    transition: all 0.6s;
}
.productItem:hover .text-title{
    color: #79171C;
}
.product-list .box1 .box-c .r .pagination{
    margin-top: 60px;
}
.product-details{
    background: RGBA(248, 248, 248, 1);
}
.product-details .box1{
    padding: 40px 0 156px;
    border-bottom: 1px solid RGBA(222, 222, 222, 1);
}
.product-details .box1 .box-c{
    display: flex;
    justify-content: space-between;
}
.product-details .box1 .box-c .l{
    position: relative;
    width: 50%;
    display: flex;
	justify-content: flex-end;
}
.product-details .box1 .box-c .l .galleryThumbs{
    position: absolute;
    left: 0;
    top: 0;
	width:18%;
	height: 100%;
}
.product-details .box1 .box-c .l .galleryThumbs .swiper-slide:not(:last-child){
    margin-bottom: 15.35%;
}
.product-details .box1 .box-c .l .galleryThumbs .swiper-slide{
    position: relative;
	cursor: pointer;
	border: 1px solid transparent;
	height: 22.15%;
}
.product-details .box1 .box-c .l .galleryThumbs .swiper-slide::before{
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    border: 2px solid transparent;
    /*transition: all .6s;*/
    z-index: 3;
}
.product-details .box1 .box-c .l .galleryThumbs .swiper-slide.swiper-slide-thumb-active::before{
	border-color:rgba(121, 23, 28, 1);
}
.product-details .box1 .box-c .l .galleryThumbs .swiper{
    height: 100%;
}
.product-details .box1 .box-c .l .galleryThumbs .picCover{
	padding-top:100%;
}
.product-details .box1 .box-c .l .galleryTop{
	width: 79%;
}
.product-details .box1 .box-c .l .pic{
    /* position: relative; */
}

.product-details .box1 .box-c .l .pic img{
    display: block;
    width: 100%;
}
.product-details .box1 .box-c .r{
    width: 44.89%;
}
.product-details .box1 .box-c .r .r-t{
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}
.product-details .box1 .box-c .r .r-t .labels{
    display: flex;
    flex: 1;
    margin-right: 49px;
    gap: 10px;
    flex-wrap: wrap;
}
.product-details .box1 .box-c .r .r-t .labels .label{
    padding: 0 12px;
    line-height: 34px;
    border-radius: 5px;
    border: 1px solid #DEDEDE;
    font-weight: 400;
    font-size: 16px;
    color: #999999;
}
.product-details .box1 .box-c .r .r-t .share .iconfont{
    font-size: 30px;
    line-height: 36px;
    color: rgba(153, 153, 153, 1);
    transition: all 0.6s;
}
.product-details .box1 .box-c .r .r-t .share:hover .iconfont{
    color: rgba(121, 23, 28, 1);
}
.product-details .box1 .box-c .r .title{
    font-weight: 400;
    color: #222222;
    margin-top: 30px;
}
.product-details .box1 .box-c .r-c{
    margin-top: 50px;
    border-top: 1px solid RGBA(222, 222, 222, 1);
    padding-top: 29px;
    font-weight: 400;
    font-size: 16px;
    color: #222222;
    line-height: 30px;
}
.product-details .box1 .box-c .r-c li:not(:last-child){
    margin-bottom: 18px;
}
.product-details .box2{
    padding: 120px 0 123px;
}
.product-details .box2 .title{
    font-weight: 400;
    color: #222222;
    line-height: 1;
    text-align: center;
}
.product-details .box2 .box-c{
    margin-top: 60px;
}
.product-details .box2 .box-c .list{
    display: grid;
    grid-template-columns: repeat(5,1fr);
    gap: 10px;
}
.zoomMask {
    position: absolute;
    background: url(../img/mask.png) repeat scroll 0 0 transparent;
    cursor: move;
    z-index: 1;
}
.zoomDiv{
	z-index:99;
	position:absolute;
	top:0px;
	left:0px;
	width:400px;
	height:400px;
	background:#ffffff;
	border:1px solid #CCCCCC;
	display:none;
	text-align:center;
	overflow:hidden;
}
@media (max-width: 1440px)  {
    .product-list .box1 .box-c .r .list{
        grid-template-columns: repeat(3,1fr);
    }
    .product .box1 .box-c .list li .more{
        margin-top: 28px;
    }
}
@media (max-width: 1280px){
    .product-details .box2 .box-c .list{
        grid-template-columns: repeat(4,1fr);
    }
    .product .box1 .box-c .list{
        gap: 30px;
    }
}
@media (max-width: 1199px) {
    .product{
        padding: 90px 0;
    }
    .product .box1 .box-c{
        margin-top: 45px;
    }
    .product-list{
        padding: 90px 0;
    }
    .product-details .box1{
        padding-bottom: 90px;
    }
    .product-details .box2{
        padding: 90px 0;
    }
    .product-details .box2 .box-c{
        margin-top:45px ;
    }
    .product-details .box1 .box-c .r{
        width: 46%;
    }
    .product-details .box2 .box-c .list{
        grid-template-columns: repeat(3,1fr);
    }
    .product-list .box1 .box-c .r .list{
        grid-template-columns: repeat(2,1fr);
    }
    .product-list .box1 .box-c .r .pagination{
        margin-top: 45px;
    }
}
@media (max-width: 1024px) {
    .product{
        padding: 80px 0;
    }
    .product .box1 .box-c{
        margin-top: 40px;
    }
    .product-list{
        padding: 80px 0;
    }
    .product-list .box1 .box-c .r{
        flex: none;
        width: 100%;
        margin-left: 0;
    }
    .product-list .box1 .box-c .r .pagination,
    .product-list .box1 .box-c .r{
        margin-top: 40px;
    }
    .product-list .box1 .box-c{
        flex-direction: column;
    }
    .product-details .box2 .box-c .list{
        grid-template-columns: repeat(2,1fr);
    }
    .product-details .box1{
        padding-bottom: 80px;
    }
    .product-details .box2{
        padding: 80px 0;
    }
    .product-details .box2 .box-c{
        margin-top:40px ;
    }
    .product-details .box1 .box-c .r .title{
        margin-top: 20px;
    }
    .product-details .box1 .box-c .r-c{
        margin-top: 23px;
        padding-top: 14px;
    }
    .product-details .box1 .box-c .r-c li:not(:last-child){
        margin-bottom: 13px;
    }
    .product .box1 .box-c .list{
        grid-template-columns: repeat(2,1fr);
    }
} 
@media (max-width: 768px) {
    .product{
        padding: 70px 0;
    }
    .product .box1 .box-c{
        margin-top: 35px;
    }
    .product-list{
        padding: 70px 0;
    }
    .product-list .box1 .box-c .r .pagination,
    .product-list .box1 .box-c .r{
        margin-top: 35px;
    }
    .product-details .box1 .box-c{
        flex-direction: column;
    }
    .product-details .box1{
        padding-bottom: 70px;
    }
    .product-details .box2{
        padding: 70px 0;
    }
    .product-details .box2 .box-c{
        margin-top: 35px ;
    }
    .product-details .box1 .box-c .l{
        width: 100%;
    }
    .product-details .box1 .box-c .r{
        width: 100%;
        margin-top: 30px;
    }
    .product-details .box1 .box-c .l .galleryThumbs .swiper-slide::before{
        border-width: 1px;
    }
}       
@media (max-width: 500px) {
    .product .box1 .box-c .list li .liBox{
        padding: 10px;
    }
    .product .box1 .box-c .list li .name{
        font-size: 14px;
        line-height: 22px;
    }
    .product .box1 .box-c .list li .more{
        line-height: 34px;
        padding: 0 28px;
        font-size: 14px;
        margin-top: 15px;
    }
    .product .box1 .box-c .list{
        gap: 20px;
    }
    .product{
        padding: 60px 0;
    }
    .product .box1 .box-c{
        margin-top: 30px;
    }
    .product-list .box1 .box-c .r .list{
        grid-template-columns: repeat(1,1fr);
    }
    .product-list{
        padding: 60px 0;
    }
    .product-list .box1 .box-c .r .pagination,
    .product-list .box1 .box-c .r{
        margin-top: 30px;
    }
    .product-details .box1 .box-c .r{
        margin-top: 25px;
    }
    .product-details .box1{
        padding-top: 25px;
    }
    .product-details .box1 .box-c .r .r-t .labels{
        margin-right: 31px;
    }
    .product-details .box2 .box-c .list{
        grid-template-columns: repeat(1,1fr);
    }
    .product-details .box1{
        padding-bottom: 60px;
    }
    .product-details .box2{
        padding: 60px 0;
    }
    .product-details .box2 .box-c{
        margin-top: 30px ;
    }
} 