.product-box{
    padding: 50px 0 50px;
}
.product-list{
    display: block;
    width: 100%;
    height: auto;
    /* 移除max-height限制，允许所有产品显示 */
    padding-top: 15px;
    padding-bottom: 30px;
    position: relative;
    list-style: none;
    overflow: visible; /* 改为visible，确保所有产品都能显示 */
    z-index: 1;
}
.product-list ul{
    display: flex;
    flex-wrap: wrap;
}
.product-list li{
    display: block;
    width: 25%;
    height: auto;
    position: relative;
    padding: 25px 34px;
    border-radius: 10px;
    background-color: #FFFFFF;
}
.product-list li .pic{
    position: relative;
    display: flex;
    margin: 0 auto;
    width: 100%;
    height: auto;
    align-items: center;
    overflow: hidden;
    border-radius: 4px;
}
.product-list li .pic img{
    display: block;
    width: 100%;
    max-height: auto;
    transition: 0.3s;
}
.product-list li:hover .pic img{
    transform: scale(1.05);
}

/* 产品颜色变体样式 */
.product-list li .color-variants{
    position: absolute;
    bottom: 10px;
    left: 10px;
    display: flex;
    gap: 5px;
    z-index: 10;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}
.product-list li:hover .color-variants{
    opacity: 1;
    visibility: visible;
}
.product-list li .color-variant{
    width: 40px;
    height: 40px;
    border: 2px solid transparent;
    border-radius: 4px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.2s ease;
    background: transparent;
}
.product-list li .color-variant:hover{
    border-color: #849075;
    transform: scale(1.1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}
.product-list li .color-variant img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.2s ease;
}
.product-list li .color-variant:hover img{
    transform: scale(1.1);
}
.product-list li .text{
    position: relative;
    display: block;
    width: 100%;
    font-size: 14px;
    line-height: 1.45;
    height: auto;
    text-align: center;
    padding: 26px 0;
}
.product-info{
    display: block;
    width: 100%;
    margin: 0 auto;
    padding: 150px 6% 150px 6%;
}
.product-info .wrapper{
    display: flex;
    padding: 0 0;
    justify-content: space-between;
}
.product-info .left{
    flex: 0 0 728px;
    width: 728px;
    display: block;
}
.product-info .pic{
    width: 100%;
    height: 600px;
    position: relative;
    display: flex;
    justify-content: space-between;
}
.product-info .pro-bigpic{
    display: block;
    width: 550px;
    height: 550px;
    overflow: hidden;
    position: relative;
    list-style: none;
    z-index: 1;
}
.product-info .pro-bigpic .swiper-slide{
    background: #FFF;
}
.product-info .pro-bigpic .swiper-slide a{
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 10;
}
.product-info .pro-bigpic img{
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: All 0.4s ease-in-out;
}
.product-info .pro-bigpic .swiper-slide:hover img{
    transform: scale(1.1);
}
.product-info .pro-thumbs{
    display: block;
    margin: 0 0 0 0;
    /*margin: 35px 0 30px 0;*/
    padding-bottom: 10px;
    width: 80px;
    height: 480px; /* 6个缩略图的高度，80px * 6 */
    overflow: hidden;
    position: relative;
    list-style: none;
    z-index: 2;
    cursor: pointer;
}
.product-info .pro-thumbs .swiper-slide{
    overflow: hidden;
    width: 80px !important;
    height: 80px !important;
    border: 1px solid #EAEAEA;
    box-sizing: border-box;
    margin: 0 0 20px 0;
}
.product-info .pro-thumbs img{
    display: block;
    margin: 0 auto;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.product-info .pro-thumbs .swiper-slide-thumb-active{
    border: 2px solid #849075;
}
/*箭头*/
.product-info .pic .swiper-button-prev,.product-info .pic .swiper-button-next{
    width: 80px;
    height: 30px;
    border: none;
    align-items: center;
    background: #fafafa;
    border-radius: 10px;
    display: flex;
    justify-content: center;
}
.product-info .pic .swiper-button-prev{
    left: 0;
    top: 20px;
}
.product-info .pic .swiper-button-next{
    left: 0;
    top: unset;
    bottom: 0;
}
.product-info .pic .swiper-button-next:after, .product-info .pic .swiper-button-prev:after{
    color: #666666;
    font-size: 14px;
    font-weight: bold;
    transform: rotate(90deg);
}
.product-info .pic .swiper-button-prev:hover,.product-info .pic .swiper-button-next:hover{
    background: #f1f1f1;
    border: none;
}
.product-info .pic .swiper-button-next:hover:after, .product-info .pic .swiper-button-prev:hover:after{
    color: #0252bb;
}
.product-info .mix{
    display: block;
    padding: 0 25px 0 0;
    margin: 80px auto 0;
}
.product-info .mix .title{
    display: block;
    text-align: center;
    font-size: 16px;
}
.product-info .mix-list li{
    display: flex;
    align-items: center;
    padding: 25px 0;
    justify-content: space-between;
}
.product-info .mix-list li .mix-pic{
    flex: 0 0 100px;
    width: 100px;
    height: 100px;
    margin-right: 30px;
}
.product-info .mix-list li .mix-pic img{
    display: block;
    width: 95%;
    height: 95%;
}
.product-info .mix-list li .mix-text{
    flex: 1;
    padding-right: 30px;
    text-align: left;
}
.product-info .mix-list li .mix-text .name{
    padding: 6px 0;
}
.product-info .mix-list li .mix-text .money{
    padding: 6px 0;
}
.product-info .mix-list li .mix-btn{
    display: block;
    width: 160px;
}
.product-info .mix-list li .mix-btn button{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 42px;
    line-height: 42px;
    text-align: center;
    border: 1px solid #849075;
    color: #849075;
    cursor: pointer;
    border-radius: 5px;
    background-color: transparent;
}
.product-info .mix-list li .mix-btn button:hover{
    color: #FFF;
    background: #849075;
}
.product-info .text{
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    flex: 1;
    min-width: 0;
    padding-left: 50px;
}
.product-info .text .path{
    padding-top: 0;
}
.product-info .text .path a{
    color: #999;
}
.product-info .text .color{
    display: flex;
    padding-top: 20px;
}
.product-info .text .form-checkbox2{
    display: inline-block;
}
.product-info .text .form-checkbox2 input[type=checkbox],.product-info .text .form-checkbox2 input[type=radio]{
    display: none;
}
.product-info .text .form-checkbox2 label {
    display: flex;
    float: left;
    align-items: center;
    justify-content: space-between;
    border-radius: 50%;
    width: 34px;
    height: 34px;
    margin: 5px 8px;
    margin-bottom: 8px;
    border: 2px solid #EAEAEA;
    cursor: pointer;
    -webkit-transition: opacity .2s;
    -o-transition: opacity .2s;
    transition: opacity .2s;
}
.product-info .text .form-checkbox2 input:checked+label{
    border: 2px solid #000000;
}
.product-info .text .form-checkbox2 input:checked+label:after {
    content: "\2713";
    color: #fff;
    font-size: 18px;
    font-weight: bold;
    margin-left: 8px;
}
.product-info .text .form-checkbox2 span{
    display: block;
    width: 100%;
    text-align: center;
    margin-top: 15px;
}
.product-info .text .title{
    display: block;
    padding: 10px 0 0 0;
    font-size: 38px;
    line-height: 1.2;
    font-family: 'Times New Roman';
    font-style: italic;
    font-weight: normal;
    margin: 0 0;
}
.product-info .text .subtitle{
    display: block;
    font-size: 26px;
    color: #808080;
    padding-top: 15px;
}
.product-info .text .desc{
    display: block;
    margin-top: 20px;
    font-size: 14px;
    line-height: 1.6;
}
.product-info .text .price{
    display: flex;
    align-items: center;
    font-size: 30px;
    color: #000;
    padding-bottom: 15px;
}
.product-info .text .price strong{
    font-size: 28px;
    color: #e57e3d;
    font-weight: bold;
    padding-right: 20px;
}
.product-info .text .price span{
    font-weight: 400;
    font-size: 18px;
    color: #999999;
    padding-right: 20px;
    text-decoration-line: line-through;
}
.product-info .text .price em{
    align-items: center;
    padding: 3px 10px;
    width: max-content;
    background: #e57e3d;
    color: #FFF;
    border-radius: 10px;
    font-size: 12px;
    font-weight: 700;
    display: flex;
}
.product-info .text .num{
    color: #999;
}
.product-info .text .num-box{
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-top: 0px;
}
.product-info .text .num-box .form-btn{
    margin-bottom: 0;
    margin-left: 0px;
}
.product-info .text .tags{
    display: flex;
    margin-top: 15px;
    line-height: 1;
    color: #849075;
    align-items: center;
    justify-content: flex-start;
}
.product-info .text .tags span{
    display: block;
    padding: 5px 10px;
    text-align: center;
    color: #849075;
    margin-right: 0;
}
.product-info .text .tags span:first-child{
    padding-left: 0;
}
.product-info .text .size{
    display: block;
    font-size: 14px;
    margin-top: 15px;
    padding-left: 15px;
    position: relative;
}
.product-info .text .size::after {
    position: absolute;
    left: 0;
    top: 0;
    content: "•";
    color: #333;
    font-size: 14px;
  }
.product-info .text .pro-btn{
    display: block;
    padding-top: 15px;
    text-align: center;
}
.product-info .text .pro-btn .form-btn{
    width: 100%;
}
.form-btn{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 45px;
    font-size: 16px;
    font-family: 'Times New Roman';
    font-weight: normal;
    font-style: italic;
    color: #FFF;
    text-align: center;
    margin-bottom: 15px;
    border-radius: 0px;
    border: none;
    cursor: pointer;
    background-color: #5433eb;
    transition: All 0.3s ease-in-out;
}
.form-btn:hover{
    opacity: 0.8;
}
.form-btn.cur{
    color: #FFF;
    background: #000;
}
.form-btn.cur:hover{
    opacity: 0.8;
}

.form-btn.curfav{
    color: #FFF;
    background: #3a3a3a;
}
.form-btn.curfav:hover{
    opacity: 0.8;
}


.form-btn svg{
    margin-left: 0px;
}
.product-info .text .pro-btn .link{
    text-decoration: underline;
}
.product-info .text .pro-btn .link:hover{
    text-decoration: underline !important;
}

/* 高分辨率屏幕响应式设计 */
@media (min-width: 2560px) {
    .product-info .text {
        max-width: 800px;
        flex: 0 0 auto;
    }
}

/* 大屏幕响应式设计 */
@media (min-width: 1920px) and (max-width: 2559px) {
    .product-info .text {
        max-width: 700px;
    }
}

/* 标准大屏幕响应式设计 */
@media (min-width: 1440px) and (max-width: 1919px) {
    .product-info .text {
        max-width: 600px;
    }
}

.additional{
    display: block;
    width: 100%;
    height: auto;
    margin: 15px auto 15px auto;
    padding: 10px 0;
    background: #FFF;
    border-top: 1px solid #ededed;
    border-bottom: 1px solid #ededed;
}
.additional .adtitle{
    display: block;
    font-size: 14px;
    line-height: 25px;
    padding-right: 30px;
    position: relative;
    color: #333;
    cursor: pointer;
}
.additional:hover .adtitle{
    color:#000;
}
.additional .adtitle:before {
    content: "+";
    width: 24px;
    height: 24px;
    font-size: 18px;
    font-weight: normal;
    line-height: 24px;
    text-align: center;
    transform: translate(-50%,-50%) rotate(0);
    transition: transform .2s ease-out;
    position: absolute;
    top: 12px;
    right: -10px;
    cursor: pointer;
    border-radius: 50%;
}
.additional.show .adtitle:before {
    transform: translate(-50%,-50%) rotate(45deg);
}
.additional .adtext{
    display: none;
    padding-top: 15px;
    color: #333;
    font-size: 14px;
    overflow: hidden;
    line-height: 1.5;
    transition: transform .2s ease-out;
    position: relative;
}
.additional.show .adtext{
    display: block;
}
.additional .adtext li{
    display: block;
    position: relative;
    padding-left: 15px;
}
.additional .adtext li::after {
    position: absolute;
    left: 0;
    top: 0;
    content: "•";
    color: #333;
    font-size: 14px;
    line-height: 1.5;
}
.quantity{
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 30px;
    padding-top: 20px;
}
.quantity label{
    font-weight: bold;
    padding-right: 20px;
}
.quantity-list{
    display: flex;
    justify-content: flex-start;
}
.quantity-list li{
    border-radius: 0;
    border: 1px solid #CCC;
    padding: 5px 14px;
    margin-right: 10px;
    color: #808080;
    cursor: pointer;
}
.quantity-list li.cur{
    border:1px solid #000;
    background-color: #000;
    color: #FFF;
}
.quantity-selector{
    display: flex;
    width: 130px;
    align-items: center;
    justify-content: space-between;
    padding: 8px 10px;
    margin-top: 0;
    border-radius: 5px;
    border: none;
}
.quantity-selector button{
    border: none;
    font-size: 22px;
    cursor: pointer;
    color: #999;
    background-color: transparent;
}
.quantity-selector input{
    border: none;
    outline: none;
    text-align: center;
    width: 40px;
    font-size: 18px;

}

.guarantee-box{
    padding: 60px 0 100px;
    margin-top: -20px;
    border-top: 1px solid #ededed;
}
.guarantee-box .wrapper{
    width: 1260px;
    padding: 0 0;
    margin: 0 auto;
}
.guarantee-list{
    display: flex;
    justify-content: space-between;
    margin-top: 50px;
}
.guarantee-list li {
    display: flex;
    width: 320px;
    flex-direction: column;
    align-items: center;
}
.guarantee-list li .iconfont{
    display: block;
    font-size: 30px;
    margin-bottom: 10px;
}
.guarantee-list li .title{
    font-size: 18px;
    padding-bottom: 15px;
}
.guarantee-list li .desc{
    font-size: 14px;
    line-height: 1.45;
    text-align: center;
    height: 75px;
    overflow: hidden;
    color: #2A2D25;
}

/* 手机端自适应样式 */
@media (max-width: 768px) {
    /* 修复You May Also Like箭头显示问题 */
    .like-product .homeproduct-box,
    .homeproduct-box {
        overflow: visible !important;
        padding: 1.84210526315789vw 30px !important;
        position: relative !important;
    }
    
    .like-product .homeproduct-box .swiper-button-prev,
    .homeproduct-box .swiper-button-prev {
        left: 0 !important;
        top: 42% !important;
        width: 30px !important;
        height: 30px !important;
        display: block !important;
        z-index: 10 !important;
    }
    
    .like-product .homeproduct-box .swiper-button-next,
    .homeproduct-box .swiper-button-next {
        right: 0 !important;
        top: 42% !important;
        width: 30px !important;
        height: 30px !important;
        display: block !important;
        z-index: 10 !important;
    }
    
    .like-product .homeproduct-box .swiper-button-prev:after,
    .like-product .homeproduct-box .swiper-button-next:after,
    .homeproduct-box .swiper-button-prev:after,
    .homeproduct-box .swiper-button-next:after {
        font-size: 20px !important;
        color: #333 !important;
    }
    
    /* 手机端缩小产品列表颜色变体缩略图，最多显示4个 */
    .product-list li .color-variants {
        display: none !important;
    }
    
    /* 也隐藏其他区域中带有内联样式的color-variants */
    .color-variants {
        display: none !important;
    }
    
    .color-variant {
        display: none !important;
    }
}

/* "Out of Stock"样式 */
.out-of-stock-price {
    display: inline-block;
    color: #999;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.5px;
}