@charset "utf-8";

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    list-style:none;
    text-decoration:none;
}
body{
    font-family:"Microsoft YaHei",SimSun,sans-serif;
    font-size:14px;
    color:#333;
    line-height:1.6;
}

.container{
    width:92%;
    max-width:1600px;
    margin:0 auto;
}
img{
    width:100%;
    height:auto;
    display:block;
}


.header-top{
    padding:15px 0;
    background:#ffffff;
    border-bottom:1px solid #eee;
}
.logo-box{
    text-align:center;
}
.logo-img{
    width:180px;
    display:inline-block;
}


.nav-wrap{
    background:#f0831e;
    position:sticky;
    top:0;
    z-index:999;
}
.nav-list{
    display:flex;
    justify-content:center;
}
.nav-list > li{
    padding:0 18px;
    position:relative;
}
.nav-list > li > a{
    display:block;
    color:#fff;
    font-size:15px;
    padding:14px 8px;
}
.nav-list > li > a:hover{
    background:#f18928;
}

.dropdown-sub{
    display:none;
    position:absolute;
    top:100%;
    left:0;
    width:140px;
    background:#fff;
    box-shadow:0 2px 8px #ccc;
}
.dropdown-sub li a{
    display:block;
    color:#333;
    padding:10px 12px;
    border-bottom:1px solid #f1f1f1;
}
.dropdown-sub li a:hover{
    background:#255ea8;
    color:#fff;
}

.mobile-menu-btn{
    display:none;
    color:#fff;
    font-size:26px;
    padding:12px 0;
    text-align:right;
    cursor:pointer;
}


.banner{
    margin:15px 0;
    position:relative;
}
.banner-pc {
    overflow: hidden;
    display: block;
}
.banner-mob {
    overflow: hidden;
    display: none;
}
.pc-ul {
    width: 400%;
    display: flex;
    
}
.pc-ul img {
    width: 25%;
}
.mob-ul {
    width: 400%;
    display: flex;
   
}
.mob-ul img {
    width: 25%;
}


.banner-pre,.banner-next{
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    width:40px;
    height:40px;
    background:rgba(0,0,0,0.35);
    color:#fff;
    text-align:center;
    line-height:40px;
    font-size:22px;
    border-radius:50%;
    cursor:pointer;
    z-index:10;
}
.banner-pre{left:10px;}
.banner-next{right:10px;}
.banner-pre:hover,.banner-next:hover{
    background:rgba(0,0,0,0.6);
}

@media screen and (max-width:768px) {
    .banner-pc {display: none;}
    .banner-mob {display: block;}
    
    .banner-pre,.banner-next{
        width:32px;
        height:32px;
        line-height:32px;
        font-size:18px;
    }
}
.pc-ul a, .mob-ul a{
    display:block;
    width:100%;
}
.pc-ul img, .mob-ul img{
    width:100%;
    display:block;
}


.product-area{
    padding:40px 0;
    background:#f8f9fa;
}
.area-title{
    text-align:center;
    font-size:24px;
    margin-bottom:30px;
    color:#222;
}
.product-box{
    display:flex;
    gap:30px;
    flex-wrap:wrap;
}
.product-item{
    flex:1;
    min-width:280px;
    background:#fff;
    padding:12px;
    border-radius:6px;
    overflow:hidden;
}

.product-bgimg {
    position: relative;
    overflow: hidden;
    width: 100%;
}

.pro-bg {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.pro-video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 1;
    transition: none;
    width: 60%;
    height: auto;
    object-fit: contain;
}


@media screen and (max-width:768px){
    .pro-video {
        width: 96%;
        object-fit: contain;
    }
    
    .pro-bg{
        height:auto;
        object-fit:unset;
    }
}
.product-item h3{
    font-size:17px;
    margin-bottom:6px;
}
.about-area{
    padding:40px 0;
}


.footer{
    background:#222;
    color:#ccc;
    text-align:center;
    padding:25px 0;
    margin-top:30px;
}


@media screen and (max-width:768px){
    .nav-list{
        flex-direction:column;
        display:none;
    }
    .nav-list.open{
        display:flex;
    }
    .mobile-menu-btn{
        display:block;
    }
    .nav-list > li{
        padding:0;
        border-bottom:1px solid #366cb9;
    }
   
    .dropdown-sub{
        position:static;
        width:100%;
        background:#f5f7fa;
    }
}



.category-area{
    padding:40px 0;
    background:#fff;
}

.clearfix:after{
    content:"";
    display:block;
    clear:both;
}
.clearfix{zoom:1;}

.category-box{
    width:100%;
}

.item-big{
    width:48%;
    float:left;
    margin-right:4%;
}

.category-right{
    width:48%;
    float:right;
}

.category-bottom-wrap .category-item{
    width:47%;
    float:left;
    margin-right:6%;
    margin-bottom:16px;
}

.category-bottom-wrap .category-item:last-child{
    margin-right:0;
}

.category-item{
    position:relative;
    overflow:hidden;
    margin-bottom:16px;
}
.category-item img{
    width:100%;
    height:auto;
    display:block;
}

.item-text{
    position:absolute;
    bottom:0;
    left:0;
    width:100%;
    background:#ffffff;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:12px 15px;
}
.item-text span{
    font-size:16px;
    font-weight:bold;
    color:#222;
}
.item-text a{
    color:#f0831e;
    font-size:13px;
    border-bottom:1px solid #f0831e;
}


@media screen and (max-width:768px){
    .item-big,.category-right{
        width:100%;
        float:none;
        margin-right:0;
    }
    .category-bottom-wrap .category-item{
        width:100%;
        float:none;
        margin-right:0;
    }
}

.category-six{
    margin-top:16px;
}
.six-item{
    
    width:13.3333%;
    float:left;
    margin-right:4%; 
    position:relative;
    overflow:hidden;
}

.six-item:last-child{
    margin-right:0;
}
.six-item img{
    width:100%;
    display:block;
}


@media screen and (max-width:768px){
    .six-item{
        width:100%;
        float:none;
        margin-right:0;
        margin-bottom:16px;
    }
}

.category-item a,.six-item a{
    display:block;
}


.two-img-area{
    padding:40px 0;
    background:#f8f9fa;
}
/* PC榛樿鏄剧ず銆佹墜鏈洪殣钘?*/
.twoban-pc {
    overflow: hidden;
    display: block;
}
.twoban-mob {
    overflow: hidden;
    display: none;
}
.twoban-pc-ul {
    width: 300%;
    display: flex;
    transition: 0.4s ease; 
}
.twoban-mob-ul {
    width: 300%;
    display: flex;
    transition: 0.4s ease;
}

@media screen and (max-width:768px) {
    .twoban-pc {display: none;}
    .twoban-mob {display: block;}
}


.twoban-pre,.twoban-next{
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    width:40px;
    height:40px;
    background:rgba(0,0,0,0.35);
    color:#fff;
    text-align:center;
    line-height:40px;
    font-size:22px;
    border-radius:50%;
    cursor:pointer;
    z-index:99;
}
.twoban-pre{left:10px;}
.twoban-next{right:10px;}
.twoban-pre:hover,.twoban-next:hover{
    background:rgba(0,0,0,0.6);
}
@media screen and (max-width:768px){
    .twoban-pre,.twoban-next{
        width:32px;
        height:32px;
        line-height:32px;
        font-size:18px;
    }
}

.twoban-pc-ul a,
.twoban-mob-ul a {
    display: block;
}
.twoban-pc-ul img,
.twoban-mob-ul img {
    width: 100%;
    display: block;
}


.about-pc{
    display:block;
    width:100%;
}
.about-mob{
    display:none;
    width:100%;
}

@media screen and (max-width:768px){
    .about-pc{
        display:none;
    }
    .about-mob{
        display:block;
    }
}

.about-pc{
    display:block;
    width:100%;
}
.about-mob{
    display:none;
    width:100%;
}
.about-wrap a{
    display:block;
}
@media screen and (max-width:768px){
    .about-pc{
        display:none;
    }
    .about-mob{
        display:block;
    }
}

.footer p a{
    color:#ccc;
    text-decoration:none;
}
.footer p a:hover{
    color:#fff;
}

.footer{
    background:#222;
    color:#ccc;
    padding:25px 0;
    margin-top:30px;
}

.clearfix:after{content:"";display:block;clear:both;}
.clearfix{zoom:1;}

.footer-wrap{
    display:flex;
    justify-content:space-between;
    align-items:center;
}
.footer-qrcode{
    text-align:center;
}
.footer-qrcode img{
    width:120px;
    margin-bottom:8px;
}
.footer-qrcode span{
    color:#fff;
    font-size:15px;
}
.footer-text{
    text-align:center;
    flex:1;
    padding:0 20px;
}
.footer-text a{
    color:#ccc;
    text-decoration:none;
}
.footer-text a:hover{
    color:#fff;
}


@media screen and (max-width:768px){
    .footer-wrap{
        flex-direction:column;
    }
    .footer-qrcode{
        margin:12px 0;
    }
    .footer-text{
        padding:10px 0;
    }
}


.back-top{
    position:fixed;
    right:30px;
    bottom:30px;
    width:45px;
    height:45px;
    background:#f8f8f8;
    border:1px solid #ddd;
    text-align:center;
    line-height:45px;
    font-size:22px;
    color:#333;
    text-decoration:none;
    border-radius:50%;
    z-index:999;
}
.back-top:hover{
    background:#f8f9fa;
}


.tab-box{
    display:flex;
    justify-content:center;
    gap:22px;
    margin-bottom:35px;
}
.tab-item{
    padding:12px 30px;
    border-radius:30px;
    background:#999;
    color:#fff;
    cursor:pointer;
    font-size:15px;
}
.tab-item.active{
    background:#f0831e;
}
.pro-wrap{display:none;}
.pro-wrap.show{display:block;}
.pro-list{
    display:flex;
    flex-wrap:wrap;
    gap:2%; 
    row-gap:30px;
}

.pro-item{
    width:18.4%;
    position:relative;
    overflow:hidden;
}
.img-box{position:relative;}
.pro-main,.pro-qrcode{
    width:100%;
    display:block;
    transition:0.3s;
}
.pro-qrcode{
    position:absolute;
    top:0;
    left:0;
    opacity:0;
}

.pro-item:hover .pro-main{opacity:0;}
.pro-item:hover .pro-qrcode{opacity:1;}
.pro-name{
    margin-top:12px;
    font-size:14px;
}

@media screen and (max-width:768px){
    .pro-item{width:32%;}
    .tab-item{padding:10px 20px;}
    .tab-box{gap:10px;flex-wrap:wrap;}
}


.icon-item a{
    display:block;
    text-decoration:none;
}

.icon-item{
    width:18.4%;
    text-align:center;
    display:flex;
    flex-direction:column;
    min-height:220px;
    justify-content:space-between;
}
.cloth-area{
    padding:45px 0;
    background:#f8f8f8;
    margin-top:20px;
}
.cloth-area:nth-child(2){
    background:#ffffff;
}
.cloth-area:nth-child(3){
    background:#f8f8f8;
}
.icon-list{
    display:flex;
    flex-wrap:wrap;
    gap:2%;
    row-gap:35px;
}

.icon-item img{
    width:70%;
    aspect-ratio:1/1;
    object-fit:contain;
    margin:0 auto 30px;
    border-radius:50%;
    background:#fff;
    padding:8px;
    display:block;
   
    transition: all 0.25s ease;
}

.icon-item a:hover img{
    transform: scale(1.08); 
    box-shadow: 0 4px 12px rgba(0,0,0,0.18);
}

.icon-item p{
    font-size:15px;
    color:#333;
    margin-top:10px;
}
.lens-list .icon-item{
    width:18.4%;
}


@media screen and (max-width:768px){
    .icon-item{
        width:32%;
    }
    .lens-list .icon-item{
        width:32%;
    }
    .icon-item img{
        width:85%;
        margin:0 auto 26px;
    }
    .icon-item p{
        margin-top:8px;
    }
}



.brand-intro{
    padding:50px 0;
    background:#fff;
}

.brand-top-text{
    margin-bottom:40px;
    text-align:center;
}
.brand-top-text h2{
    font-size:42px;
    color:#f0831e;
    margin-bottom:20px;
    font-weight:normal;
}
.brand-top-text p{
    font-size:20px;
    color:#444;
    line-height:2;
}


.brand-two-card{
    display:flex;
    align-items:center;
    background:#f9f9f9;
    border-radius:16px;
    padding:40px 20px;
}

.brand-card{
    width:49%;
    text-align:center;
}

.card-divider{
    width:1px;
    height:180px;
    background:#ddd;
}

.brand-card img{
    width:100px;
    margin:0 auto 25px;
    display:block;
}

.brand-card h3{
    font-size:32px;

    color:#f0831e;
    margin-bottom:20px;
    font-weight:normal;
}

.brand-card p{
    font-size:18px;
    color:#333;
    line-height:2.2;
}


@media screen and (max-width:768px){
    .brand-two-card{
        flex-direction:column;
    }
    .brand-card{
        width:100%;
    }
    /* 绔栫嚎鍙樻í绾?*/
    .card-divider{
        width:80%;
        height:1px;
        margin:30px 0;
    }
    .brand-top-text h2{
        font-size:32px;
    }
    .brand-card h3{
        font-size:26px;
    }
}


.shop-list-area{
    padding:50px 0;
    background:#ffffff;
}
.shop-wrap{
    margin-top:30px;
    text-align:center;
}

.shop-row{
    display:flex;
    justify-content:center;
    align-items:center;
    margin-bottom:40px;
    gap:4%;
    max-width:1200px;
    margin-left:auto;
    margin-right:auto;
}
.shop-text{
    width:48%;
    text-align:left; 
}
.shop-pic{
    width:48%;
}
.shop-pic img{
    width:100%;
    border-radius:8px;
    display:block;
}
.shop-text h3{
    font-size:22px;
    color:#333;
    margin-bottom:10px;
    padding-left:22px;
    position:relative;
}

.shop-text h3::before{
    content:"馃搷";
    position:absolute;
    left:0;
    top:0;
    color:#f0831e;
}
.shop-text p{
    font-size:16px;
    color:#555;
    line-height:1.8;
    margin-bottom:10px;
    text-align:left;
}
.shop-tel{
    background:#f0831e;
    color:#fff;
    display:inline-block;
    padding:4px 12px;
    border-radius:6px;
    font-size:15px;
    text-align:left;
}


.shop-double-row{
    display:flex;
    justify-content:center; 
    gap:4%;
    margin-bottom:40px;
    max-width:1200px;
    margin-left:auto;
    margin-right:auto;
}
.shop-double-item{
    width:48%;
}
.shop-double-item .shop-text{
    width:100%;
    margin-bottom:15px;
    text-align:left;
}
.shop-double-item .shop-pic{
    width:100%;
}


.shop-pic img{
    transition: all 0.25s ease;
}
.shop-pic img:hover{
    transform: scale(1.03);
    box-shadow: 0 4px 14px rgba(0,0,0,0.15);
}


@media screen and (max-width:768px){
    .shop-row{
        flex-direction:column;
    }
    .shop-text,.shop-pic{
        width:100%;
    }
    .shop-text{
        margin-bottom:15px;
    }
    .shop-double-row{
        flex-direction:column;
    }
    .shop-double-item{
        width:100%;
        margin-bottom:30px;
    }
}
.brand-top-text img{
    max-width:100%;
    max-width:1100px; 
    height:auto;
    display:block;
    margin:20px auto 0;
}


.tw-shop-area{
    padding:50px 0;
    background:#fff;
}
.tw-shop-wrap{
    margin-top:30px;
    max-width:1200px;
    margin-left:auto;
    margin-right:auto;
}

.tw-shop-full{
    margin-bottom:45px;
    max-width:1200px;
    margin-left:auto;
    margin-right:auto;
}

.tw-shop-double{
    display:flex;
    align-items:center;
    justify-content:space-between;
    margin-bottom:45px;
    gap:3%;
    max-width:1200px;
    margin-left:auto;
    margin-right:auto;
}
.tw-shop-left,
.tw-shop-right{
    width:48.5%;
}

.divider-line{
    width:1px;
    height:220px;
    background:#dddddd;
}

.shop-text h3{
    font-size:22px;
    color:#333;
    padding-left:24px;
    position:relative;
    margin-bottom:8px;
}
.shop-text h3::before{
    content:"📍";
    position:absolute;
    left:0;
    top:0;
    color:#f0831e;
}

.align-right h3{
    padding-left:0;
    padding-right:24px;
}
.align-right h3::before{
    left:auto;
    right:0;
}
.en-name{
    font-size:18px;
    color:#f0831e;
    margin-bottom:10px;
}
.shop-text p{
    font-size:16px;
    color:#444;
    line-height:1.8;
    margin-bottom:10px;
}
.shop-tel{
    display:inline-block;
    background:#f0831e;
    color:#fff;
    padding:4px 14px;
    border-radius:6px;
    font-size:15px;
}

.align-right{
    text-align:right;
}


@media screen and (max-width:768px){
    .tw-shop-double{
        flex-direction:column;
    }
    .tw-shop-left,
    .tw-shop-right{
        width:100%;
        margin-bottom:30px;
    }
    .divider-line{
        width:80%;
        height:1px;
        margin:20px auto;
    }
    .align-right{
        text-align:left;
    }
    .align-right h3{
        padding-left:24px;
        padding-right:0;
    }
    .align-right h3::before{
        left:0;
        right:auto;
    }
}

	/* 单图一行展示区块 */
.single-pic-area{
    padding:50px 0;
    background:#f8f8f8;
}
.single-pic-wrap{
    margin-top:30px;
}
.single-pic-item{
    text-align:center;
    margin-bottom:0; /* 清除图片之间上下间距 */
}
.single-pic-item img{
    width:48%;
    height:auto;
    display:block; /* 消除行内默认空白缝隙 */
    margin:0 auto;
    border-radius:0; /* 彻底取消圆角 */
    transition:all 0.25s ease;
}

/* 手机端铺满整行 */
@media screen and (max-width:768px){
    .single-pic-item img{
        width:100%;
    }
}

	/* 单图一行展示区块 */
.single-pic-area1{
    padding:50px 0;
    background:#f8f8f8;
}
.single-pic-wrap1{
    margin-top:30px;
}
.single-pic-item1{
    text-align:center;
    margin-bottom:0; /* 清除图片之间上下间距 */
}
.single-pic-item1 img{
    width:100%;
    height:auto;
    display:block; /* 消除行内默认空白缝隙 */
    margin:0 auto;
    border-radius:0; /* 彻底取消圆角 */
    transition:all 0.25s ease;
}

/* 手机端铺满整行 */
@media screen and (max-width:768px){
    .single-pic-item1 img{
        width:100%;
    }
}

/* 全局内容容器，限制最大1200px并居中 */
.container{
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* 面料标签区块 */
.fabric-item a{
    display:block;
    text-decoration:none;
    transition: all 0.25s ease;
}

.fabric-item{
    width:49%; /* PC一行2个 */
    text-align:center;
    display:flex;
    flex-direction:column;
    min-height:220px;
    justify-content:center;
    overflow:hidden;
    border-radius:60px;
}

.fabric-list{
    display:flex;
    flex-wrap:wrap;
    gap:2%;
    row-gap:35px;
}

.fabric-item img{
    width:96%;
    object-fit:contain;
    margin:0 auto;
    display:block;
    transition: all 0.25s ease;
}

.fabric-item a:hover img{
    transform: scale(1.04); 
}

.fabric-item p{
    font-size:15px;
    color:#333;
    margin-top:12px;
}

@media screen and (max-width:768px){
    .fabric-item{
        width:49%;
    }
    .fabric-item img{
        width:96%;
        margin:0 auto;
    }
    .fabric-item p{
        margin-top:10px;
    }
}