/* 商品列表排列css */
body{
    font-family: 'roboto', sans-serif;
}
.products-attribute {
    padding-left: 10px;
}

.products-option {
    margin-top: 15px;
    font-size: 14px;
    color: #666;
}

.products-option .option-title{
    font-weight: 600;
    color: #ff3f7a;
}

.products-option .option-introduction {
    color: #ff3f68;
    font-size: 12px;
    margin-bottom: 10px;
}

.products-option .option-attribute{
    display: flex;
    gap: 10px;
    flex-direction: row;
    flex-wrap: wrap;
}

.products-option .attribute-list{
    text-align: center;
    position: relative;
    width: 76px;
}

.attribute-list .tips{
    display: none;
    position: absolute;
    z-index: 10;
    background-color: #8b8b8b;
    padding: 3px;
    border-radius: 5px;
    transform: translateX(-50%);
    left: 50%;
    top: 85px;
    width: 180px;
    height: 180px;
    box-shadow: 0 0 15px 3px rgb(0 0 0 / 50%);
}

.attribute-list:hover .tips{
    display: block;
    animation: flip 1s 1 ease-in-out;
}

.attribute-list .tips::before{
    content: '';
    width: 0;
    height: 0;
    border-bottom: 7px solid #8b8b8b;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    position: absolute;
    transform: translateX(-50%);
    left: 50%;
    top: -5px;
}

@keyframes flip {
	0% {
		-webkit-transform: perspective(1200px) scaleX(1) translateX(-50%) rotateY(-360deg);
		transform: perspective(1200px) scaleX(1) translateX(-50%) rotateY(-360deg);
		-webkit-animation-timing-function: ease-out;
		animation-timing-function: ease-out;
	}
	40% {
		-webkit-transform: perspective(1200px) scaleX(1) translateX(-50%) rotateY(-190deg);
		transform: perspective(1200px) scaleX(1) translateX(-50%) rotateY(-190deg);
		-webkit-animation-timing-function: ease-out;
		animation-timing-function: ease-out;
	}
	50% {
		-webkit-transform: perspective(1200px) scaleX(1) translateX(-50%) rotateY(-170deg);
		transform: perspective(1200px) scaleX(1) translateX(-50%) rotateY(-170deg);
		-webkit-animation-timing-function: ease-in;
		animation-timing-function: ease-in;
	}
	80% {
		-webkit-transform: perspective(1200px) scale3d(0.95, 0.95, 0.95) translateX(-50%) rotateY(0deg);
		transform: perspective(1200px) scale3d(0.95, 0.95, 0.95) translateX(-50%) rotateY(0deg);
		-webkit-animation-timing-function: ease-in;
		animation-timing-function: ease-in;
	}
	to {
		-webkit-transform: perspective(1200px) scaleX(1) translateX(-50%) rotateY(0deg);
		transform: perspective(1200px) scaleX(1) translateX(-50%) rotateY(0deg);
		-webkit-animation-timing-function: ease-in;
		animation-timing-function: ease-in;
	}
}

.attribute-list .tips>img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.products-option .attribute-list-img{
    position: relative;
    width: 76px;
    height: 76px;
    border-radius: 10px;
    border: 2px solid #e9e9e9;
    overflow: hidden;
    cursor: pointer;
}

[data-price]::after{
    content: '+'attr(data-price);
    position: absolute;
    z-index: 1;
    width: 100%;
    bottom: 0;
    left: 0;
    font-size: 12px;
    color: #fff;
    padding: 3px;
    background-color: rgba(0, 0, 0, 0.4);
    text-align: center;
    box-sizing: border-box;
}

.option-attribute .select-attribute .attribute-list-img{
    border-color: #ff3f68;
    box-shadow: 0 0 5px 1px #ff3f68;
}

.option-attribute .select-attribute p {
    color: #ff3f68;
}

.option-attribute .attribute-list-img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.option-attribute .attribute-list p{
    padding-top: 5px;
    font-size: 12px;
}

@media screen and (min-width:751px) {

    .mod-screen,
    .mod-keyword,
    .mod-cate {
        display: none;
    }

    .commodity {
        width: 100%;
        max-width: 1400px;
        margin: auto;
        display: flex;
        flex-wrap: wrap;
    }

    .commodity>div {
        width: 23.5%;
        margin-left: 2%;
        margin-top: 20px;
    }

    .commodity div:nth-child(4n+1) {
        margin-left: 0;
    }

    .commodity div .commodity-img {
        width: 100%;
        position: relative;
        overflow: hidden;
    }

    .commodity div .commodity-img a {
        display: inline-block;
        width: 100%;
    }

    .commodity div .commodity-img a img {
        width: 100%;
        transition: all 1s;
    }

    .commodity div:hover .commodity-img a img {
        transform: scale(1.2);
    }

    .commodity div .commodity-img .commodity-discount {
        width: 80px;
        margin-top: 0;
        position: absolute;
        left: 10px;
        top: 0px;
        z-index: 1;
    }

    .commodity div .commodity-img .commodity-discount span {
        display: block;
        margin-top: 10px;
        padding: 3px 0;
        background-color: #ff3f68;
        border-radius: 3px;
        text-align: center;
        color: #fff;
    }

    .commodity div .commodity-img .commodity-love {
        width: 30px;
        height: 30px;
        line-height: 26px;
        background-color: #fff;
        position: absolute;
        top: 10px;
        right: -100%;
        cursor: pointer;
        transition: all 500ms;
        text-align: center;
        border-radius: 5px;
    }

    .commodity div .commodity-img .commodity-p {
        width: 100%;
        padding: 15px 0;
        background-color: #ff3f68;
        color: #fff;
        text-align: center;
        position: absolute;
        left: 0;
        bottom: -100%;
        transition: all 500ms;
        cursor: pointer;
    }

    .commodity div .commodity-img .commodity-p img {
        margin-right: 10px;
        margin-top: -3px;
    }

    .commodity div .commodity-two {
        padding: 10px 0 3px 0;
        font-size: 14px;
        color: #666;
        display: flex;
        justify-content: space-around;
    }

    .commodity div .commodity-two .commodity-comment {
        display: flex;
        align-items: center;
        font-size: 16px;
    }



    .commodity div .commodity-three {
        padding: 3px 0;
        line-height: 20px;
        height: 55px;
        text-align: center;
        margin-top: 5px;
        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
    }

    .commodity div .commodity-three a {
        text-decoration: none;
        color: #666;
    }

    .commodity div .commodity-four {
        padding: 3px 0;
        margin-top: 5px;
        text-align: center;
        font-weight: bold;
    }

    .commodity div .commodity-four span {
        font-size: 12px;
        font-weight: normal;
        text-decoration: line-through;
        color: #999;
    }

    /* products.css */
    .products {
        width: 1400px;
        margin: auto;
        margin-top: 20px;
        display: flex;
        justify-content: space-between;
        position: relative;
        align-items: flex-start;
    }

    .products .products-left {
        width: 500px;
        position: sticky;
        top: 15px;
    }

    

    .products .products-left .left-cont {
        line-height: 26px;
        color: #999;
        font-size: 14px;
    }

    .products .products-left .left-cont span {
        color: #333;
        font-size: 15px;
        font-weight: bold;
    }

    .products .products-left .left-cont a {
        text-decoration: none;
        color: #999;
    }

    .products-right {
        width: 850px;
    }

    .products-right h1 {
        font-size: 28px;
        color: #333;
        line-height: 35px;
    }

    .products-right .products-star {
        margin-top: 10px;
        display: flex;
    }

    .products-right .products-star img {
        width: 21px;
        margin-right: 5px;
        margin-top: -3px;
    }

    .products-right .products-star .products-star-comment {
        margin-left: 30px;
        display: flex;
        align-items: center;
    }

    .products-code {
        margin-top: 20px;
        font-weight: bold;
    }

    .products-discount {
        margin-top: 20px;
    }

    .products-discount span {
        display: inline-block;
        padding: 5px 20px;
        color: #fff;
        font-weight: bold;
    }

    .products-discount span:first-child {
        background-color: red;
    }

    .products-discount span:nth-child(2) {
        background-color: #39b5ee;
        margin-left: 20px;
    }

    .products-money {
        margin-top: 20px;
        font-size: 30px;
        font-weight: bold;
    }

    .products-money span:nth-child(2) {
        font-size: 14px;
        font-weight: normal;
        color: #999;
        text-decoration: line-through;
    }

    .products-text,
    .products-text2 {
        margin-top: 15px;
        /* font-size: 14px; */
        color: #666;
        line-height: 26px;
    }
    .products-text h2{
        font-size: 25px;
        color: #000;
        margin-top: 20px;
    }
    .products-text h3{
        font-size: 21px;
        color: #000;
        margin-top: 20px;
    }

    .products-text ul{
        width: auto;
        max-width: 100% !important;
    }

    /* .products-text p span{
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #999;
    margin-right: 5px;
} */
    .products-text p a {
        color: red;
        text-decoration: underline;
        margin: 0 3px;
    }

    .products-text2 span {
        display: inline-block;
        width: 15px;
        height: 15px;
        border-radius: 50%;
        text-align: center;
        line-height: 15px;
        font-size: 12px;
        border: 1px solid #ccc;
        margin-right: 5px;
    }

    .products-ssl {
        margin-top: 20px;
        padding: 10px 0 20px;
        border-top: 1px solid #ccc;
        border-bottom: 1px solid #ccc;
        text-align: center;
    }

    /* .products-ssl>div {
        margin-top: 10px;
        display: flex;
        align-items: center;
    }

    .products-ssl>div div:first-child {
        width: 48px;
        margin-right: 15px;
    }

    .products-ssl>div div:first-child img {
        width: 100%;
    }

    .products-ssl>div div:first-child span {
        font-size: 49px;
        font-weight: 500;
        color: #ff5050;
    }

    .products-ssl>div div:nth-child(2) {
        width: 780px;
    }

    .products-ssl>div div:nth-child(2) p:first-child {
        font-size: 18px;
        font-weight: bold;
    }

    .products-ssl>div div:nth-child(2) p:nth-child(2) {
        font-size: 14px;
        color: #999;
    } */
    .products-ssl-discription {
        width: 100%;
        margin-top: 10px;
        /* display: flex; */
        align-items: center;
    }
    .products-ssl-discription h3 {
        font-size: 18px;
        font-weight: bold;
    }

    .products-ssl-discription-pic {
        width: 48px;
        margin-right: 15px;
    }

    .products-ssl-discription-pic span {
        font-size: 49px;
        font-weight: 500;
        color: #ff5050;
    }

    .products-ssl-description-detail {
        width: 780px;
    }
    .products-ssl-description-detail p {
        font-size: 14px;
        color: #999;
        margin-top: 10px;
    }

    .products-number {
        margin-top: 10px;
        display: flex;
        align-items: center;
    }

    .products-number span {
        display: inline-block;
        width: 35px;
        height: 35px;
        text-align: center;
        line-height: 35px;
        border: 1px solid #ccc;
        cursor: pointer;
    }

    .products-number input {
        width: 100px;
        height: 35px;
        text-align: center;
        border: 1px solid #ccc;
        outline: none;
        border-left: 0;
        border-right: 0;
    }

    .products-money2 {
        margin-top: 20px;
        font-size: 20px;
        font-weight: bold;
        color: red;
    }

    .products-join {
        margin-top: 20px;
    }

    .products-join span {
        display: inline-block;
        padding: 10px 45px;
        border-radius: 5px;
        color: #fff;
        cursor: pointer;
    }

    .products-join span:first-child {
        background-color: #ff5050;
    }

    .products-join span:nth-child(2) {
        background-color: #ffcc3f;
        margin-left: 20px;
    }

    .products-title {
        width: 1400px;
        margin: auto;
        margin-top: 20px;
    }

    .products-title span {
        display: inline-block;
        padding: 8px 25px;
        background-color: #ff5050;
        color: #fff;
        font-weight: bold;
    }

    .products-tab {
        width: 1400px;
        margin: auto;
        margin-top: 20px;
        border-bottom: 1px solid #ff5050;
    }

    .products-tab a {
        display: inline-block;
        padding: 5px 10px;
        border-radius: 3px 3px 0 0;
        background-color: #ffa3a3;
        color: #fff;
        margin-right: 10px;
    }

    .products-tab .select-tab {
        background-color: #ff5050;
    }

    .products-table-header {
        width: 1400px;
        margin: auto;
        margin-top: 15px;
        font-weight: bold;
    }

    .products-table {
        margin: auto;
        margin-top: 15px;
        display: flex;
        flex-wrap: wrap;
        line-height: 26px;
        box-sizing: border-box;
        border-top: 1px solid #ccc;
        border-right: 1px solid #ccc;
        ;
    }

    .products-table div {
        width: 16.66%;
        box-sizing: border-box;
        text-align: center;
    }

    .products-table div p {
        padding: 10px 0;
        border-left: 1px solid #ccc;
        border-bottom: 1px solid #ccc;
        ;
    }

    .products-table div p:first-child {
        background-color: #f1f3f5;
    }


/* 2022.11.3更新 */
    /* .products-detail {
        width: 1400px;
        background-color: #efefef;
        margin: auto;
        margin-top: 30px;
    }

    .products-detail img {
        width: 100%;
    } */

    /* .products-detail {
        width: 1400px;
        background-color: #efefef;
        margin: auto;
        margin-top: 30px;
        display: flex;
        flex-direction: row;
        flex-wrap:wrap;
        justify-content : space-between;
        column-count: 4;
        column-gap: 10px;
        padding: 0 10px 10px;
    }

    .products-detail span {
        display: inline-block;
        margin-top: 10px;
        width: 100%;
        height: 300px;
        break-inside: avoid;
    }

    .products-detail img {
        width: 100%;
        height: 300px;
        object-fit: none;
        width: 100%;
    } */

    .products-comment {
        width: 1400px;
        margin: auto;
        margin-top: 40px;
        transition: all 1s;
        display: none;
    }

    .products-comment .comment-none {
        padding: 30px;
        text-align: center;
    }

    .products-comment .comment-none p {
        margin-top: 15px;
    }

    .products-comment .comment-have {
        padding: 20px 0;
    }

    .products-footer-description {
        background-color: #efefef;
        padding: 0 15px 15px;
    }
    

    .products-footer-description h2 {
        font-size: 1.8em;
        color: #000;
        margin-bottom: 10px;
    }

    .products-footer-description h3 {
        font-size: 1.5em;;
        color: #000;
        margin-bottom: 5px;
    }

    .products-footer-description p {
        font-weight: 400;
        font-size: 1.1em;
        font-family: sans-serif;
        letter-spacing: 0.025em;
        line-height: 1.6;
        color: #000;
        margin: 0 0 15px;
    }

    .products-footer-description p a {
        color: red;
        text-decoration: underline;
        margin: 0 3px;
    }

    .comment-data {
        display: flex;
        justify-content: space-between;
    }

    .comment-data .comment-star {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    .comment-data .comment-star p {
        display: flex;
        line-height: 30px;
        align-items: center;
        font-size: 14px;
    }

    .comment-data .comment-star p img {
        margin-right: 5px;
        width: 20px;
    }

    .comment-data .comment-star p span {
        margin-left: 10px;
    }

    .comment-data .data-write {
        width: 50%;
        padding: 60px 0;
        border: 1px solid #999;
        border-radius: 3px;
        text-align: center;
    }

    .comment-data .data-write .write-span {
        display: flex;
        width: 180px;
        margin: auto;
        margin-top: 10px;
        padding: 10px;
        justify-content: center;
        align-items: center;
        background-color: #ffbc06;
        border-radius: 3px;
        color: #fff;
        cursor: pointer;
    }

    .detail-comment {
        padding: 20px 10px;
        margin-top: 20px;
        border-top: 1px solid #666;
        display: flex;
    }

    .detail-comment img{
        width: 45px;
        height: 45px;
    }

    .detail-comment>div:first-child {
        width: 88px;
        text-align: center;
        margin-right: 10px;
    }

    .detail-comment>div:first-child p:nth-child(2) {
        margin-top: 10px;
        text-align: center;
    }

    .detail-comment>div:nth-child(2) {
        width: 80%;
        margin-left: 20px;
    }

    .detail-comment>div:nth-child(2) .comment-star {
        color: #666;
    }

    .detail-comment>div:nth-child(2) .comment-star img {
        width: 20px;
        margin-bottom: 5px;
    }

    .detail-comment>div:nth-child(2) .comment-star .comment-time {
        margin-left: 30px;
    }

    .detail-comment>div:nth-child(2) .comment-grey {
        color: #999;
        margin-top: 5px;
        line-height: 25px;
    }

    .detail-comment>div:nth-child(2) .comment-img {
        width: 100%;
        margin-top: 10px;
        display: flex;
        align-items: center;
    }

    .detail-comment>div:nth-child(2) .comment-img>img {
        width: 65px;
        height: 97.5px;
        object-fit: cover;
        margin-right: 10px;

    }

    .detail-comment>div:nth-child(2) .comment-img .look-more {
        color: #39b5ee;
        text-decoration: underline;
        font-size: 14px;
        cursor: pointer;
    }

    .detail-comment>div:nth-child(2) .comment-img .comment-detail {
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.8);
        position: fixed;
        left: 0;
        top: 0;
        z-index: 1;
        display: none;
    }

    .detail-comment>div:nth-child(2) .comment-img .comment-detail>div {
        width: 35%;
        max-width: 600px;
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
    }

    .detail-comment>div:nth-child(2) .comment-img .comment-detail>div div:first-child {
        width: 100%;
        position: relative;
    }

    .detail-comment>div:nth-child(2) .comment-img .comment-detail>div div:first-child .comment-prev {
        position: absolute;
        left: 10px;
        top: 50%;
        transform: translateY(-50%);
    }

    .detail-comment>div:nth-child(2) .comment-img .comment-detail>div div:first-child .comment-next {
        position: absolute;
        right: 10px;
        top: 50%;
        transform: translateY(-50%);
    }

    .detail-comment>div:nth-child(2) .comment-img .comment-detail>div div:first-child img {
        width: 100%;
    }

    .detail-comment>div:nth-child(2) .comment-img .comment-detail>div .comment-detail-none {
        display: none;
    }

    .detail-comment>div:nth-child(2) .comment-img .comment-detail>div .comment-detail-two {
        margin-top: 10px;
        font-size: 30px;
        color: #fff;
        text-align: center;
    }

    .detail-comment>div:nth-child(2) .comment-img .comment-detail>div .comment-detail-two span {
        font-size: 40px;
    }

    .detail-comment>div:nth-child(2) .comment-label {
        margin-top: 10px;
    }

    .detail-comment>div:nth-child(2) .comment-label span {
        display: inline-block;
        padding: 5px 10px;
        border: 1px solid #ccc;
        border-radius: 3px;
        margin-right: 10px;
    }


    /* category相关css */
    .index-content {
        width: 1400px;
        margin: auto;
        margin-top: 20px;
        display: flex;
        justify-content: space-between;
    }

    .index-left {
        width: 230px;
    }

    .left-sort {
        border-bottom: 1px solid #ccc;
    }

    .index-left .left-sort:last-child {
        border: none;
    }

    .left-sort p {
        padding: 10px;
        font-weight: bold;
        cursor: pointer;
    }

    .box-sha {
        box-shadow: 2px 0px 5px 2px #ccc;
    }

    .left-sort p img {
        margin-top: -3px;
        transition: all 1s;
    }

    .left-sort .sort-ul {
        display: none;
    }

    .left-sort .sort-ul li {
        border-bottom: 1px solid #ccc;
        display: flex;
        align-items: center;
    }

    .left-sort .sort-ul li label {
        padding: 10px 0;
        padding-left: 10px;
        box-sizing: border-box;
        cursor: pointer;
        flex: 1;
    }

    .left-sort .sort-ul li:last-child {
        border: none;
    }

    .left-title {
        margin-top: 20px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        font-weight: bold;
    }

    .left-title span {
        display: inline-block;
        width: 30%;
        height: 2px;
        background-color: #000;
    }

    .left-tigs {
        margin-top: 15px;
    }

    .left-tigs li {
        list-style: none;
        line-height: 30px;
        font-weight: bold;
        font-size: 14px;
    }

    .left-tigs li a {
        text-decoration: none;
        color: #000;
    }

    .index-right {
        width: 1150px;
        padding-bottom: 30px;
    }

    .index-right .cate-banner {
        width: 100%;
    }

    .index-right .cate-banner img {
        width: 100%;
    }

    .cate-optimization {
        margin-top: 20px;
    }

    .cate-optimization .cate-title {
        text-align: center;
    }

    .cate-optimization .cate-title .title-p {
        font-size: 18px;
        font-weight: bold;
    }

    .cate-optimization .cate-title div {
        margin-top: 5px;
        line-height: 26px;
        color: #666;
        font-size: 14px;
    }

    .cate-optimization .cate-title2 {
        margin-top: 20px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        font-size: 18px;
        font-weight: bold;
    }

    .cate-optimization .cate-title2 span {
        display: inline-block;
        width: 38%;
        height: 1px;
        background-color: #ccc;
    }

    .index-right .cate-screen {
        margin-top: 30px;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .index-right .cate-screen select {
        width: 215px;
        padding: 10px;
        background-color: #f1f3f5;
        border: 1px solid #e2e3e4;
        outline: none;
    }

    .cate-blog {
        margin-top: 20px;
        display: flex;
        justify-content: space-between;

    }

    .cate-blog .blog-left {
        width: 45%;
    }

    .cate-blog .blog-left img {
        width: 100%;
    }

    .cate-blog .blog-right {
        width: 52%;
        color: #999;
    }

    .cate-blog .blog-right a {
        text-decoration: none;
        color: #999;
    }

    .cate-blog .blog-right .cate-title {
        color: #ff3f68;
        margin-top: 30px;
        font-size: 30px;
        font-weight: bold;
    }

    .cate-blog .blog-right>p:nth-child(2) {
        color: #333;
        margin-top: 30px;
    }

    .cate-blog .blog-right div {
        margin-top: 20px;
    }

    .cate-blog .blog-right p a {
        text-decoration: none;
        display: inline-block;
        padding: 5px 20px;
        margin-top: 10px;
        background-color: #ff3f68;
        color: #fff;
    }


    .table {
        margin-top: 15px;
        display: flex;
    }

    .table div {
        border: 1px solid #ccc;
        display: flex;
        flex-wrap: wrap;
    }

    .table div:first-child {
        width: 112px;
    }

    .table div:nth-child(2) {
        width: calc(100% - 112px);
        border-left: transparent;
    }

    .table div:first-child span,
    .table div:nth-child(2) span {
        display: flex;
        height: 65px;
        align-items: center;
        padding: 10px;
        border-bottom: 1px solid #ccc;
    }

    .table div:first-child span {
        width: 100%;
    }

    .table div:nth-child(2) span {
        width: 100%;
    }

    .table div:first-child span:last-child,
    .table div:nth-child(2) span:last-child {
        border-bottom: transparent;
    }

    /* 灯箱 */
    #lightbox{
        width: 1400px;
        box-sizing: border-box;
        padding: 0 10px 10px;
        background-color: #efefef;
        margin: auto;
        margin-top: 30px;
        column-count: 4;
        column-gap: 10px;
      }
      #lightbox img{
        display: inline-block;
        margin-top: 10px;
        width: 100%;
        break-inside: avoid;
        border-radius: 20px;
        cursor: pointer;
        transition: all .5s;
        position: relative;
        top: 0;
      }
      #lightbox img:hover{
        box-shadow: 0px 0px 5px 3px #999;
        top: -5px;
      }
      
      
      /* 覆盖CDN 样式 */
      .viewer-backdrop{
        background-color: rgba(0,0,0,.8)
      }
      
      .viewer-close:before, .viewer-flip-horizontal:before, .viewer-flip-vertical:before, .viewer-fullscreen-exit:before, .viewer-fullscreen:before, .viewer-next:before, .viewer-one-to-one:before, .viewer-play:before, .viewer-prev:before, .viewer-reset:before, .viewer-rotate-left:before, .viewer-rotate-right:before, .viewer-zoom-in:before, .viewer-zoom-out:before{
        width: 28px;
        height: 28px;
      }
      
      .viewer-toolbar>ul>li{
        width: 34px !important;
        height: 34px !important;
      }
      
      .viewer-zoom-in:before{
        background-position: 5px 5px !important;
      }
      
      .viewer-zoom-out:before{
        background-position: -16px 4px !important;
      }
      .viewer-one-to-one:before {
        background-position: -36px 4px !important;
      }
      
      .viewer-reset:before{
        background-position: -56px 4px !important;
      }
      
      .viewer-prev:before{
        background-position: -76px 4px !important;
      }
      
      .viewer-toolbar>ul>.viewer-large {
        height: 45px !important;
        width: 45px !important;
      }
      
      .viewer-play:before{
        background-position: -93px 7px !important;
      }
      
      .viewer-next:before{
        background-position: -116px 4px !important;
      }
      
      .viewer-rotate-left:before{
        background-position: -136px 4px !important;
      }
      
      .viewer-rotate-right:before{
        background-position: -156px 4px !important;
      }
      
      .viewer-flip-horizontal:before{
        background-position: -176px 4px !important;
      }
      
      .viewer-flip-vertical:before{
        background-position: -196px 4px !important;
      }
}

@media screen and (max-width:750px) {

    .index-left,
    .cate-screen,
    .cate-talk{
        display: none;
    }

    /* 商品列表排列css */
    .commodity {
        display: flex;
        flex-wrap: wrap;
    }

    .commodity>div{
        width: 48.5%;
        margin-left: 3%;
        margin-top: 20px;
    }

    .commodity>div:nth-child(2n+1) {
        margin-left: 0;
    }

    .commodity>div .commodity-img {
        width: 100%;
        position: relative;
        overflow: hidden;
    }

    .commodity>div .commodity-img a {
        display: inline-block;
        width: 100%;
    }

    .commodity>div .commodity-img a img {
        width: 100%;
        transition: all 1s;
    }

    .commodity>div .commodity-img .commodity-discount {
        width: 80px;
        margin-top: 0;
        position: absolute;
        left: 5px;
        top: 0px;
        z-index: 1;
    }

    .commodity>div .commodity-img .commodity-discount span {
        display: block;
        margin-top: 5px;
        padding: 3px 0;
        background-color: #ff3f68;
        border-radius: 3px;
        text-align: center;
        color: #fff;
    }


    .commodity>div .commodity-img .commodity-love {
        border-radius: 5px;
        width: 25px;
        height: 25px;
        text-align: center;
        line-height: 21.5px;
        background-color: #fff;
        position: absolute;
        top: 10px;
        right: 10px;
    }

    .commodity>div .commodity-img .commodity-p {
        width: 100%;
        background-color: #ff3f68;
        color: #fff;
        text-align: center;
        position: absolute;
        left: 0;
        bottom: 0;
        height: 30px;
        line-height: 30px;
        box-sizing: border-box;
    }

    .commodity>div .commodity-img .commodity-p img {
        width: 20px;
        margin-right: 10px;
        margin-top: -3px;
    }

    .commodity>div .commodity-two {
        padding: 10px 0 3px 0;
        font-size: 14px;
        color: #666;
        display: flex;
        justify-content: space-around;
    }

    .commodity>div .commodity-two .commodity-comment {
        display: flex;
    }

    .commodity>div .commodity-three {
        padding: 3px 0;
        line-height: 20px;
        height: 60px;
        text-align: center;
        margin-top: 5px;
        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
    }

    .commodity>div .commodity-three a {
        text-decoration: none;
        color: #666;
    }

    .commodity>div .commodity-four {
        padding: 3px 0;
        margin-top: 5px;
        text-align: center;
        font-weight: bold;
    }

    .commodity>div .commodity-four span {
        font-size: 12px;
        font-weight: normal;
        text-decoration: line-through;
        color: #999;
    }


    
    .products .products-left .left-cont {
        line-height: 26px;
        color: #999;
        font-size: 14px;
    }

    .products .products-left .left-cont span {
        color: #333;
        font-size: 15px;
        font-weight: bold;
    }

    .products .products-left .left-cont a {
        text-decoration: none;
        color: #999;
    }

    .products-right h1 {
        font-size: 22px;
        color: #333;
        line-height: 35px;
    }

    .products-right .products-star {
        margin-top: 10px;
        display: flex;
    }

    .products-right .products-star img {
        width: 21px;
        margin-right: 5px;
        margin-top: -3px;
    }

    .products-right .products-star .products-star-comment {
        margin-left: 30px;
        display: flex;
        align-items: center;
    }

    .products-code {
        display: none;
    }

    .products-discount {
        margin-top: 20px;
    }

    .products-discount span {
        display: inline-block;
        padding: 5px 20px;
        color: #fff;
        font-weight: bold;
    }

    .products-discount span:first-child {
        background-color: red;
    }

    .products-discount span:nth-child(2) {
        background-color: #39b5ee;
        margin-left: 20px;
    }

    .products-money {
        margin-top: 20px;
        font-size: 30px;
        font-weight: bold;
        color: red;
    }

    .products-money span:nth-child(2) {
        font-size: 14px;
        font-weight: normal;
        color: #999;
        text-decoration: line-through;
    }

    .products-text,
    .products-text2 {
        margin-top: 15px;
        font-size: 14px;
        color: #666;
        line-height: 26px;
    }

    .products-text p a {
        color: red;
        text-decoration: underline;
        margin: 0 3px;
    }

    .products-text2 span {
        display: inline-block;
        width: 15px;
        height: 15px;
        border-radius: 50%;
        text-align: center;
        line-height: 15px;
        font-size: 12px;
        border: 1px solid #ccc;
        margin-right: 5px;
    }

    .products-option .attribute-list{
        width: 66px;
    }

    .products-option .option-attribute{
        gap: 7px;
    }

    .products-option .attribute-list-img{
        position: relative;
        width: 66px;
        height: 66px;
        border-radius: 10px;
        border: 2px solid #e9e9e9;
        overflow: hidden;
    }

    .products-ssl-discription {
        display: none;
        width: 100%;
        margin-top: 10px;
        /* display: flex; */
        align-items: center;
    }
    .products-ssl-discription h3 {
        font-size: 18px;
        font-weight: bold;
    }

    .products-ssl-discription-pic {
        width: 48px;
        margin-right: 15px;
    }

    .products-ssl-discription-pic span {
        font-size: 49px;
        font-weight: 500;
        color: #ff5050;
    };

    .products-ssl-description-detail {
        width: 780px;
    }
    .products-ssl-description-detail p {
        font-size: 14px;
        color: #999;
        
    }

    .products-number {
        margin-top: 30px;
        display: flex;
        align-items: center;
    }

    .products-number span {
        display: inline-block;
        width: 35px;
        height: 35px;
        text-align: center;
        line-height: 35px;
        border: 1px solid #ccc;
        cursor: pointer;
    }

    .products-number input {
        width: 100px;
        height: 35px;
        text-align: center;
        border: 1px solid #ccc;
        border-left: none;
        border-right: none;
        outline: none;
    }

    .products-money2 {
        margin-top: 20px;
        font-size: 20px;
        font-weight: bold;
        color: red;
    }

    .products-join {
        margin-top: 20px;
    }

    .products-join span {
        display: inline-block;
        padding: 10px 30px;
        border-radius: 5px;
        color: #fff;
        cursor: pointer;
    }

    .products-join span:first-child {
        background-color: #ff5050;
    }

    .products-join span:nth-child(2) {
        background-color: #ffcc3f;
    }
    .products-title {
        margin: 20px 10px 0;
    }

    .products-title span {
        display: inline-block;
        font-size: 18px;
    }

    .products-tab {
        margin: 20px 0 10px;
        border-bottom: 1px solid #ff5050;
    }

    .products-tab a {
        display: inline-block;
        padding: 5px 10px;
        border-radius: 3px 3px 0 0;
        background-color: #ffa3a3;
        color: #fff;
        cursor: pointer;
        margin-right: 10px;
    }

    .products-tab .select-tab {
        background-color: #ff5050;
    }

    .products-table-header {
        margin: 15px 10px 0;
        font-weight: bold;
    }

    .products-table {
        /* margin: 15px 10px 0;
        display: flex;
        flex-wrap: wrap;
        line-height: 26px;
        border-top: 1px solid #ccc;
        border-right: 1px solid #ccc; */
        display: flex;
        flex-wrap: wrap;
        border-right: 1px solid #ccc;
        border-bottom: 1px solid #ccc;
    }

    .products-table div {
        /* width: 50%;
        box-sizing: border-box;
        text-align: center; */
        width: 33.3%;
        text-align: center;
    }

    .products-table div p:first-child {
        background-color: #efefef;
      }
      .products-table div p {
        padding: 10px;
        margin: 0;
        box-sizing: border-box;
        border-top: 1px solid #ccc;
        border-left: 1px solid #ccc;
    }
    /* .products-table div p {
        padding: 10px 0;
        border-left: 1px solid #ccc;
        border-bottom: 1px solid #ccc;
        ;
    }

    .products-table div p:first-child {
        background-color: #f1f3f5;
    } */

    /* .products-detail {
        margin: 20px 10px 0;
        height: 400px;
        background-color: #efefef;
    } */

    /* .products-detail img {
        width: 100%;
    } */

    .products-detail {
        column-count: 2;
        column-gap: 10px;
    }

    .products-detail span {
        display: inline-block;
        margin-top: 10px;
        width: 100%;
        /* height: 300px; */
        break-inside: avoid;
    }

    .products-detail img {
        /* width: 100%;
        height: 300px;
        object-fit: none; */
        width: 100%;
        border-radius: 10px;
        margin-top: 10px;
    }

    .products-comment .comment-none {
        padding: 20px 0;
        text-align: center;
    }

    .products-comment .comment-none p {
        width: 100%;
        margin-top: 15px;
    }
    .products-comment .comment-none p img{
        width: 100%;
    }

    .products-comment .comment-have {
        padding: 20px 0;
    }

    .products-footer-description {
        background-color: #efefef;
        padding: 0 15px 15px;
    }
    
    .products-footer-description h2 {
        font-size: 1.8em;
        color: #000;
        margin-bottom: 10px;
    }

    .products-footer-description h3 {
        font-size: 1.5em;;
        color: #000;
        margin-bottom: 5px;
    }

    .products-footer-description p {
        font-weight: 400;
        font-size: 1.1em;
        font-family: sans-serif;
        letter-spacing: 0.025em;
        line-height: 1.6;
        color: #000;
        margin: 0 0 15px;
    }

    .products-footer-description p a {
        color: red;
        text-decoration: underline;
        margin: 0 3px;
    }

    .comment-data .comment-star {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    .comment-data .comment-star p {
        display: flex;
        line-height: 30px;
        align-items: center;
        font-size: 12px;
    }

    .comment-data .comment-star p img {
        margin-right: 5px;
        width: 20px;
    }

    .comment-data .data-write {
        width: 100%;
        padding: 30px 0;
        border: 1px solid #999;
        border-radius: 3px;
        text-align: center;
        display: none;
    }

    .comment-data .data-write .write-span {
        display: flex;
        width: 180px;
        margin: auto;
        margin-top: 10px;
        padding: 5px 0;
        justify-content: center;
        align-items: center;
        background-color: #ffbc06;
        border-radius: 3px;
        color: #fff;
        cursor: pointer;
    }

    .detail-comment {
        padding: 20px 10px;
        margin-top: 20px;
        border-top: 1px solid #666;
        display: flex;
    }

    .detail-comment>div:first-child {
        width: 88px;
        margin-right: 10px;
    }

    .detail-comment>div:first-child p:nth-child(2) {
        margin-top: 10px;
        text-align: center;
    }

    .detail-comment>div:nth-child(2) {
        width: 80%;
        margin-left: 20px;
    }

    .detail-comment>div:nth-child(2) .comment-star {
        color: #666;
    }

    .detail-comment>div:nth-child(2) .comment-star img {
        width: 20px;
        margin-bottom: 5px;
    }

    .detail-comment>div:nth-child(2) .comment-star .comment-time {
        margin-left: 30px;
    }

    .detail-comment>div:nth-child(2) .comment-grey {
        color: #999;
        margin-top: 5px;
        line-height: 25px;
    }

    .detail-comment>div:nth-child(2) .comment-img {
        width: 100%;
        margin-top: 10px;
        display: flex;
        align-items: center;
    }

    .detail-comment>div:nth-child(2) .comment-img>img {
        width: 65px;
        height: 97.5px;
        object-fit: cover;
        margin-right: 10px;

    }

    .detail-comment>div:nth-child(2) .comment-img .look-more {
        color: #39b5ee;
        text-decoration: underline;
        font-size: 14px;
        cursor: pointer;
    }

    .detail-comment>div:nth-child(2) .comment-img .comment-detail {
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.8);
        position: fixed;
        left: 0;
        top: 0;
        display: none;
    }

    .detail-comment>div:nth-child(2) .comment-img .comment-detail>div {
        width: 70%;
        max-width: 600px;
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
    }

    .detail-comment>div:nth-child(2) .comment-img .comment-detail>div div:first-child {
        width: 100%;
        position: relative;
    }

    .detail-comment>div:nth-child(2) .comment-img .comment-detail>div div:first-child .comment-prev {
        position: absolute;
        left: 10px;
        top: 50%;
        transform: translateY(-50%);
    }

    .detail-comment>div:nth-child(2) .comment-img .comment-detail>div div:first-child .comment-next {
        position: absolute;
        right: 10px;
        top: 50%;
        transform: translateY(-50%);
    }

    .detail-comment>div:nth-child(2) .comment-img .comment-detail>div div:first-child img {
        width: 100%;
    }

    .detail-comment>div:nth-child(2) .comment-img .comment-detail>div .comment-detail-none {
        display: none;
    }

    .detail-comment>div:nth-child(2) .comment-img .comment-detail>div .comment-detail-two {
        margin-top: 10px;
        font-size: 30px;
        color: #fff;
        text-align: center;
    }

    .detail-comment>div:nth-child(2) .comment-img .comment-detail>div .comment-detail-two span {
        font-size: 40px;
    }

    .detail-comment>div:nth-child(2) .comment-label {
        margin-top: 10px;
    }

    .detail-comment>div:nth-child(2) .comment-label span {
        display: inline-block;
        padding: 2px 15px;
        border: 1px solid #ccc;
        border-radius: 3px;
        margin-right: 10px;
    }


    /* category.css */
    .mod-cate{
        margin: 20px 10px 0;
    }
    .mod-cate .mod-cate-div{
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    .mod-cate .mod-cate-div div:first-child{
        width: 65px;
    }
    .mod-cate .mod-cate-div div:first-child img{
        width: 100%;
    }
    .mod-cate .mod-cate-div div:nth-child(2){
        width: calc(100% - 80px);
    }
    .mod-cate .mod-cate-div div:nth-child(2) p:first-child{
        font-size: 18px;
        color: #ff3f68;
    }
    .mod-cate .mod-cate-div div:nth-child(2) p:nth-child(2){
        margin-top: 5px;
        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
    }
    .mod-cate .mod-cate-cont{
        margin-top: 5px;
        font-size: 12px;
        color: #666;
        line-height: 26px;
    }

    .mod-screen{
        margin-top: 15px;
        background-color: #efefef;
        padding: 10px 0;
        border-radius: 5px;
        text-align: center;
    }
    .mod-screen span{
        display: inline-block;
        border: 8px solid transparent;
        border-top: 8px solid #ccc;
        position: relative;
        top: 8px;
        left: 7px;
    }

    .mod-keyword{
        width: 100%;
        height: 100%;
        position: fixed;
        left: 0;
        top: 0;
        z-index: 15;
        overflow: hidden;
        background-color: rgba(0, 0, 0, 0.4);
        display: none;
    }
    .mod-keyword>div{
        width: 75%;
        height: 100%;
        padding: 0 10px;
        background-color: #fff;
        float: right;
        position: relative;
        right: -100%;
    }
    .mod-keyword>div>div{
        width: 100%;
        padding-right: 50px;
        height: 100%;
        overflow: auto;
    }
    .mod-keyword>div div p{
        padding: 10px 0;
        border-bottom: 1px solid #ccc;
    }
    .mod-keyword>div div div{
        display: flex;
        flex-wrap: wrap;
    }
    .mod-keyword>div div div:last-child{
        padding-bottom: 60px;
    }
    .mod-keyword>div div div span{
        display: inline-block;
        padding: 2px 10px;
        margin-top: 10px;
        text-align: center;
        margin-right: 10px;
        font-size: 12px;
        border-radius: 5px;
        background-color: #efefef;
    }

    .mod-keyword>div div div .select-sure{
        background-color: #ffdfdf;
        color: red;
    }
    .mod-keyword>div .key-sure{
        width: 100%;
        padding: 0;
        background-color: #fff;
        position: absolute;
        left: 0;
        bottom: 0; 
        display: flex;
        text-align: center;
    }
    .mod-keyword>div .key-sure span{
        display: inline-block;
        width: 50%;
        padding: 10px 0;
    }
    .mod-keyword>div .key-sure .key-close{
        background-color: #ccc;
    }
    .mod-keyword>div .key-sure .key-true{
        background-color: red;
        color: #fff;
    }
}


/* category.css */
.cate-banner {
    width: 100%;
}

.cate-banner img {
    width: 100%;
}

.cate-optimization {
    margin-top: 20px;
}

.cate-optimization .cate-title {
    text-align: center;
}

.cate-optimization .cate-title .title-p {
    font-size: 18px;
    font-weight: bold;
}

.cate-optimization .cate-title div {
    margin-top: 5px;
    line-height: 26px;
    color: #666;
    font-size: 14px;
}

.cate-optimization .cate-title2 {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    
    font-size: 20px;
    font-weight: bold;
    white-space: nowrap;
}

.cate-optimization .cate-title2 span {
    display: inline-block;
    width: 30%;
    height: 1px;
    background-color: #ccc;
}