/* ===== PC 端 (>= 768px) ===== */
@media (min-width: 768px) {
  html {
    /* 保持你原来的区间：66px ~ 100px */
    font-size: clamp(66px, calc(100vw / 19.2), 100px);
  }
}

/* ===== 移动端 (< 768px) ===== */
@media (max-width: 767px) {
  html {
    font-size: calc(100vw / 7.5);
  }
}

:root {
    --main-color: #E83F22;       /* 主色 */
    --second-color:#141F2A;
  }
.ptb100{
    padding-top: 1rem;
    padding-bottom: 1rem;
}
.pt100{
    padding-top: 1rem;
}
.pb100{
    padding-bottom: 1rem;
}
.pt30{
    padding-top: .3rem;
}
.pt50{
    padding-top: .5rem;
}
.pb50{
    padding-bottom: .5rem;
}
.mt30{
    margin-top: .3rem;
}
.mt50{
    margin-top: .5rem;
}
.container{
    width: 96%;
    margin: 0 auto;
}
.d-flex{
    display: flex;
}
.justify-center{
    justify-content: center;
}
.justify-space-between{
    justify-content: space-between;
}
.align-items-center{
    align-items: center;
}
.text-center{
    text-align: center;
}
.img img{
    transition: all .4s;
}
.cx-btns{margin-top: .3rem;}
.cx-btns a{background: var(--main-color);  color: #fff; border-radius: 2rem;transition: all .5s; line-height: .5rem; padding: 0 .4rem;display: inline-block; font-size: .18rem;}
.cx-btns a:last-child{margin-left: 5px; width: .5rem; height: .5rem; padding: 0; text-align: center;}
.cx-btns a:last-child i{transform: rotate(-45deg); transition: all .5s;}
.cx-btns:hover a:last-child i{transform: rotate(0);}
.cx-btns a:hover{background: var(--main-color);}

.header-actions {
    display: flex;
    align-items: center;
    gap: .3rem;
  }
  
  /* 统一按钮外观（圆形图标按钮） */
  .header-actions button {
    border: none;
    color: #ff4d35;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
  .header-actions .search-btn,.header-actions .lang-btn{
    background: rgba(232, 63, 34, .1);
    font-size: .20rem;
  }
  .header-actions .search-btn i,.header-actions .lang-btn i{
    font-size: .20rem;
  }
  /* 语言切换 */
  .lang-switch {
    position: relative;
  }
  
  .lang-btn {
    width: auto;
    padding: 0 12px;
    border-radius: 20px;
    gap: 6px;
    display: inline-flex;
  }
  
  .lang-btn .current-lang {
    color: #ff4d35;
    font-size: 14px;
  }
  
  .lang-dropdown {
    position: absolute;
    right: 0;
    top: 48px;
    background: #141c28;
    border-radius: 8px;
    list-style: none;
    padding: 6px 0;
    margin: 0;
    min-width: 110px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.4);
    display: none;
    z-index: 10;
  }
  
  .lang-dropdown li {
    padding: 6px 12px;
    font-size: 14px;
    color: #fff;
    cursor: pointer;
  }
  
  .lang-dropdown li:hover {
    background: #1f2937;
  }
  
  /* 搜索 */
  .search-area {
    position: relative;
    display: flex;
    align-items: center;
  }
  
  .search-box {
    position: relative;
    overflow: hidden;
    width: 0;
    transition: width 0.25s ease;
    margin-left: 8px;
  }
  
  .search-input {
    height: 36px;
    padding: 0 10px;
    border-radius: 18px;
    border: none;
    outline: none;
    background: #141c28;
    color: #fff;
    min-width: 0;
  }
  
  /* 展开状态 */
  .search-area.active .search-box {
    width: 200px;
  }
  /* 之前 header / 按钮样式可以复用，只展示新增的部分 */

/* 弹出层基础：默认隐藏 */
.search-modal {
    position: fixed;
    inset: 0; /* top:0 right:0 bottom:0 left:0 */
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1000;
  }
  
  /* 显示状态 */
  .search-modal.active {
    display: flex;
  }
  
  /* 半透明遮罩 */
  .search-modal__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
  }
  
  /* 内容容器：居中白盒（或深色盒） */
  .search-modal__content {
    position: relative;
    z-index: 1;
    width: 90%;
    max-width: 480px;
    background: #141c28;
    border-radius: 12px;
    padding: 20px 16px 18px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    box-sizing: border-box;
  }
  
  /* 右上角关闭按钮 */
  .search-modal__close {
    position: absolute;
    top: 8px;
    right: 8px;
    border: none;
    background: transparent;
    color: #fff;
    cursor: pointer;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
  
  /* 表单布局：手机端一列，PC 也很好看 */
  .search-modal__form {
    margin-top: 16px;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  
  /* 输入框 */
  .search-modal__input {
    width: 100%;
    height: 40px;
    padding: 0 12px;
    border-radius: 20px;
    border: none;
    outline: none;
    background: #0c1520;
    color: #fff;
    font-size: 14px;
    box-sizing: border-box;
  }
  
  /* 提交按钮 */
  .search-modal__submit {
    height: 40px;
    border-radius: 20px;
    border: none;
    outline: none;
    cursor: pointer;
    background: none;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: 14px;
  }
  
  /* 简单的 PC 端横向布局（可选） */
  @media (min-width: 768px) {
    .search-modal__form {
      flex-direction: row;
    }
  
    .search-modal__input {
      flex: 1;
    }
  
    .search-modal__submit {
      padding: 0 18px;
      white-space: nowrap;
    }
  }
.banner{
    background:url(../images/banner.jpg) center no-repeat #141F2A; background-size: cover;
    padding: 2rem 0 1rem;
    position: relative;
    margin-top: -80px;
}
.bannertxt{position: relative;}
.bannertxt h2{font-size: 1.44rem; font-weight: 700; color: #fff; line-height: 1.2;}
.bannertxt h4{
    font-size: .22rem;
    max-width: 600px;
    color: #fff;
}
.btn {background: var(--main-color); border: none;}
.btn a{color: #fff; padding: 0 .4rem;}
.banner .btn{margin-top: .6rem;}
.bannerimg{position: absolute; top: 0; left: 0; right: 0; bottom: 0;}
.bannerimg .imgs{
    display: flex;
    flex-direction: column;
    align-items: center;
}
.bannerimg .imgs img{
    max-width: 9rem;
}
.bannerimg .imgs img:nth-child(2){
    position: absolute;
    top: 5.1rem;
    z-index: 2;
    right: 3rem;
}
.banneruser{margin-top: 2rem; color: #fff;}
.fans-num{
    font-size: .64rem;
    font-weight: 600;
}
.index-product-category{
    padding: 3rem 0 0;
}
.top-title h5{
    font-size: .2rem;
}
.top-title h3{
    font-size: .64rem;
    font-weight: 600;
    max-width: 800px;
    line-height: 1.2;
    margin-top: .2rem;
}
@media (min-width:1200px){
    .top-title-right{max-width: 50%;}
}
.product-category{gap: 30px; margin-top: .8rem;}
.product-category .item{position: relative; width: 50%;}
.product-category .item .img{
    overflow: hidden;
}
.product-category .item .img img{width: 100%;}
.product-category .item a:hover .img img{
    transform: scale(1.05);
}
.product-category .item .txt{position: absolute; height: 100%; width: 100%; top: 0; left: 0; display: flex; flex-direction: column; justify-content: center; max-width: 300px; padding-left: .4rem;}
.product-category .item .txt h3{
    font-size: .48rem;
    font-weight: 600;
    white-space: nowrap;
}
.product-category .item .txt .desc{
    font-size: .18rem;
    margin-top: .2rem;
}
.product-category .item .txt .btn{
    margin-top: .5rem;
    display: inline-block;
}
.index-nums{
    gap: .3rem;
}
.index-nums .item{
    width: 20%;
    padding: .4rem .3rem;
    background: #EBEBEB;
    border-radius: .2rem;
    position: relative;
    transition: all .2s;
}
.index-nums .item:hover{
    transform: translateY(-10px)!important;
}
.index-nums .item:first-child{
    width: 40%;
    background: var(--main-color);
}
.index-nums .item:nth-child(3){
    background: var(--second-color);
}
.index-nums .icon{
    position: absolute;
    top: .4rem;
    left: .3rem;
    width: .7rem;
    height: .7rem;
    background: var(--second-color);
    border-radius: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    outline: 5px solid var(--main-color);   /* 透明边框 */
    outline-offset: -1px; 
}
.index-nums .icon svg{
    width: .4rem;
    height: .4rem;
}
.index-nums .item:nth-child(2) .icon,.index-nums .item:nth-child(4) .icon{
    background: #fff;
    outline: 5px solid #EBEBEB;   /* 透明边框 */
    outline-offset: -1px; 
}
.index-nums .item:nth-child(3) .icon{
    background: var(--main-color);
    outline: 5px solid var(--second-color);   /* 透明边框 */
    outline-offset: -1px; 
}
.index-nums .counter{
    margin-left: .3rem;
    margin-top: .1rem;
}
.index-nums .counter span{
    color: var(--second-color);
    font-size: .5rem;
    font-weight: 600;
    vertical-align:super
}
.index-nums .counter span.b{
    font-size: 1rem;
    vertical-align:initial
}
.index-nums .item:first-child .counter span,.index-nums .item:nth-child(3) .counter span{
    color: #fff;
}
.index-nums .item .desc{
    font-size: .18rem;
    margin-top: .8rem;
    color: #000;
}
.index-nums .item:first-child .desc,.index-nums .item:nth-child(3) .desc{
    color: #fff;
}
.index-popular{
    background: #EBEBEB;
}
.index-popular .top-title h3{
    margin: 0 auto;
}
.index-popular .info{
    padding: .3rem .4rem;
}
.index-popular .info h4{
    font-size: .26rem;
    font-weight: 500;
}
.index-popular .swiper-slide{
    background: #fff;
}
.index-popular .swiper-slide img{width: 100%;}
.index-popular .link{background: #c8c8c8; text-align: center; font-size: .18rem;}
.index-popular .link a{ padding: .2rem 0; display: inline-block}
.index-popular .swiper-slide:hover .link{background: var(--main-color);}
.index-popular .swiper-slide:hover .link a{color: #fff;}
.index-popular .info ul{
    
}
.innerbanner{
    position: relative;
}
.innerbanner .bannertxt{
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}
.innerbanner .bannertxt .wrapper{
    height: 100%;
    flex-direction: column;
}
.innerbanner .bannertxt h1{
    font-size: .64rem;
    font-weight: 600;
    color: var(--second-color);
}
.innerbanner .bannertxt h4{
    color: var(--second-color);
    font-size: .26rem;
}
.innerbanner img{
    width: 100%;
}
.aboutbox1 .wrapper{
    gap: .6rem;
}
.aboutbox1 .exp{
    border: 1px solid var(--main-color);
    border-radius: 20px;
    width: 2.3rem;
    height: 2.3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: .4rem;
}
.aboutbox1 .exp .expnum{
    display: flex;
    color: var(--main-color);
}
.aboutbox1 .exp .expnum span:first-child{
    font-size: 1rem;
    line-height: 1.2;
    font-weight: 600;
}
.aboutbox1 .exp .expnum span:last-child{
    font-size: .6rem;
}
.aboutbox1 .exp .tit{
    color: var(--main-color);
    font-size: .18rem;
    max-width: 100px;
}
.aboutbox1 .aboutimg{
    position: relative;
}
.aboutbox1 .aboutimg .img{
    border-radius: 20px;
    overflow: hidden;
}
.aboutbox1 .aboutimg .text{
    background: var(--main-color);
    color: #fff;
    position: absolute;
    right: -1rem;
    bottom: .7rem;
    border-radius: 20px;
    padding: .4rem .6rem .4rem .2rem;
    font-size: .22rem;
    font-weight: 500;
}
.aboutbox1 .aboutimg .text p{
    max-width: 153px;
}
.aboutbox1 .aboutimg .text .icon{
    margin-top: .1rem;
    width: 50px;
    height: 50px;
    background: #fff;
    border-radius: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.aboutbox1 .aboutimg .text .icon i{
    color: var(--main-color);
    transform: rotate(-45deg);
}
.aboutbox1 .abouttext{
    padding: .5rem .5rem;
}
.aboutbox1 .abouttext h1{
    font-size: .64rem;
    font-weight: 500;
}
.aboutbox1 .abouttext .desc{
    margin-top: .2rem;
    font-size: .22rem;
    line-height: 2;
}
.factorybox{background: var(--second-color); border-radius: .4rem; padding: 1.5rem 1rem; overflow: hidden;}
.factorybox .img{
    border-radius: .5rem;
    overflow: hidden;
}
.factorybox .img img{width: 100%;}
.factorybox .text{
    text-align: center;
}
.factorybox .text h3{
    color: #fff;
    font-size: .36rem;
    font-weight: 500;
}
.factorybox .text p{
    color: #F4F4F4;
    font-size: .24rem;
    margin-top: .1rem;
}
.factorybox .swiper-slide:not(.swiper-slide-active) .text{
    opacity: 0;
}
.factorybox .swiper-3d .swiper-slide-shadow{
    background: none;
}
.business .top-title{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.business .top-title h5{
    max-width: 985px;
}
.businessimg .img img{
    width: 100%;
}
.aboutmore .item{
    position: relative;
}
.aboutmore .img{
    border-radius: .5rem;
    overflow: hidden;
}
.aboutmore .img img{
    max-width: 100%;
}
.aboutmore .text{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    text-align: center;
    display: flex;
    align-items: center;
}
.aboutmore .text a{
    display: block;
    width: 100%;
    line-height: 100%;
    font-size: .26rem;
    color: #fff;
    font-weight: 500;
}
.getintouch .container{
    position: relative;
}
.getintouch .img{
    position: relative;
}
.getintouch .img img{
    width: 100%;
    border-radius: 1rem;
}
.getintouch .img::after{
    content: "";
    background-image: url(../images/logo-bg.png);
    background-size: 100% -100%;  /* 关键 */
    background-repeat: no-repeat;
    background-position: bottom;
    inset: 0;
    width: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    z-index: 1;
}
.getintouch .text{
    width: 100%;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    position: absolute;
    bottom: .6rem;
    color: #fff;
    z-index: 2;
}
.getintouch .text h3{
    font-size: .64rem;
    font-weight: 600;
}
.getintouch .text p{
    font-size: .2rem;
}
.index-partner{
    padding-top: 2rem;
}
.index-partner .partnerbg{
    position: relative;
}
.index-partner .partnerbg .box-top,.index-partner .partnerbg .box-bottom{
    width: 100%;
}
.index-partner .partnerbox{
    background: url(../images/partbg.png) right top no-repeat var(--second-color);
    position: relative;
    padding: 0 1rem;
}
.index-partner .partnerbox .topinfo p{
    color: #fff;
    font-size: .2rem;
    max-width: 664px;
}
.index-partner .partnerbox .topinfo .cx-btns{
    margin-top: .5rem;
}
.index-partner .box-right{
    position: absolute;
    right: 1rem;
    top: -3.8rem;
    z-index: 1;
    max-width: 8rem;
}
.partnerlist img{
    filter: brightness(0) invert(1);
    max-width: 100%;
}
.partnerlist .icon img{
    width: .5rem;
}
.partnerbox .top-title{
    color: #fff;
}
.partnerbox .top-title h5{
    max-width: 420px;
}
.iconitem {
    background: rgba(255, 255, 255, .06);
    border-radius: .2rem;
    padding: .5rem;
    color: #fff;
}
.iconitem .icon{
    width: .97rem;
    height: .97rem;
    border-radius: .97rem;
    background: var(--main-color);
    display: flex;
    align-items: center;
    justify-content: center;
}
.iconitem h4{
    font-size: .26rem;
    font-weight: 500;
}
.iconitem p{
    font-size: .18rem;
}
.probox1 .wrapper1{
    max-width: 1185px;
    margin: 0 auto;
    padding: 0 40px;
	box-sizing: content-box;
}
.probox1 h2{
    font-size: .64rem;
    font-weight: 600;
}
.probox1 .desc{
    text-align: center;
    font-size: .2rem;
}
.probox1 .proimgs{
    flex-wrap: wrap;
    gap: .4rem;
    justify-content: space-between;
}
.probox1 .proimgs img{
    width: calc((100% - .4rem) / 2);
    border-radius: .5rem;
}
.probox1 .proimgs img:first-child{
    width: 100%;
}
.proad img{width: 100%;}
.probox2 .top-title{
    flex-direction: column;
    align-items: center;
    color: #000;
}
.probox2 .top-title h5{
    max-width: 1150px;
    text-align: center;
}
.materials{
    gap: .6rem;
}
.materials .item{
    width: 33.3%;
}
.materials .item img{
    width: 100%;
    border-radius: .4rem;
}
.materials .item .title{text-align: center;}
.flavors{
    background: linear-gradient(to top, rgba(232,63,34,.2), #ffffff);;
}
.flavors .top-title{
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.flavors .top-title h3{
    max-width: 850px;
}
.flavors .top-title h4{
    font-size: 2.14rem;
    font-weight: 600;
    color: var(--main-color);
    position: relative;
}
.flavors .top-title h4::after{
    content: attr(data-text); /* 用属性也可以，直接用 innerHTML 也行 */
    content: "08";            /* 直接写即可 */
    position: absolute;
    left: 15px;   /* 偏移量控制“立体厚度” */
    top: 0px;
    color: transparent;
    -webkit-text-stroke: 1px var(--main-color); /* 红色描边 */
    pointer-events: none;
}
.flavors .top-title h5{
    max-width: 1085px;
}
.prolist{
    flex-wrap: wrap;
    gap: 1.5rem 1rem;
}
.prolist .item{
    position: relative;
    width: calc((100% - 3rem) / 4);
}
.prolist .item .img img{width: 100%;border-radius: .6rem;}
.prolist .item .title{
    position: absolute;
    top: .4rem;
    font-size: .22rem;
    color: #fff;
    width: 100%;
    text-align: center;
}
.prolist .item .proimg{
    position: absolute;
    text-align: center;
    width: 100%;
    bottom: -1.2rem;
}
.prolist .item .proimg img{
    width: 60%;
    transition: all .4s;
}
.prolist .item:hover .proimg img{
    transform: translateY(-10px);
}
.canshu{
    background: #fff;
    border-radius: .3rem;
    max-width: 1468px;
    margin: 1.5rem auto 0;
}
.canshu .top-title h3{
    font-size: .48rem;
}
.canshubox{
    align-items: center;
    justify-content: center;
    gap: .4rem;
}
.canshubox .img{
    padding: .2rem;
}
.canshubox .img:hover  img{
    transform: scale(1.05);
}
.canshubox .desc{
    font-size: .2rem;
    line-height: 2;
}
.canshu2{
    background: #fff;
    border-radius: .3rem;
    max-width: 1468px;
    padding: .5rem;
    margin: .5rem auto 0;
}
.canshu2 .top-title h3{
    font-size: .48rem;
}
.canshubox2{
    justify-content: space-between;
    align-items: center;
}
.canshubox2 img{height: auto; transition: all .4s;}
.canshubox2 img:hover{
    transform: scale(1.05)
}
.canshubox2 .desc h4{
    font-size: .4rem;
    font-weight: 500;
}
.canshubox2 .desc{
    font-size: .2rem;
    line-height: 2;
}
.imglistswiper .swiper-slide img{
    width: 100%;
}
.verify-warning{
    background: #f5f5f5;
}
.verify-warning .righttxt{
    padding-left: 1rem;
    padding-right: .4rem;
    flex-direction: column;
    justify-content: center;
}
.verify-warning .righttxt h3{
    font-size: .48rem;
    font-weight: 500;
}
.verify-warning .righttxt dl{
    margin-top: .5rem;
}
.verify-warning .righttxt dl dt{
    font-size: .2rem;
    position: relative;
    padding-left: 15px;
}
.verify-warning .righttxt dl dt::before{
    content: "•";
    width: 10px;
    height: 10px;
    position: absolute;
    left: 0;
    font-size: 16px;
}
.verify-warning .righttxt dl dd{
    color: #666;
    margin-top: .2rem;
}
.reminder .top-title{
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.reminderlist{
    gap: .3rem;
}
.reminderlist .item{
    background: var(--second-color);
    padding: .3rem;
    border-radius: .2rem;
    width: calc((100% - .6rem) / 3);
}
.reminderlist .item:nth-child(2){
    background: #F4F4F4;
}
.reminderlist .item:nth-child(3){
    background: var(--main-color);
}
.reminderlist .item .img img{
    border-radius: .22rem;
    width: 100%;
}
.reminderlist .item .tit{
    color: #fff;
    font-weight: 500;
    font-size: .2rem;
}
.reminderlist .item p{
    font-size: .2rem;
    color: #fff;
}
.reminderlist .item:nth-child(2) .tit,.reminderlist .item:nth-child(2) p{
    color: #000;
}
.warmremider{
    color: var(--main-color);
    max-width: 1025px;
    margin: .5rem auto 0;
    font-size: .2rem;
    text-align: center;
}
@media (max-width: 1023px){
    .header-actions{
      display: none;
    }
}
@media (max-width:767px){
    .mt30{
        margin-top: .15rem;
    }
    .mt50{
        margin-top: .2rem;
    }
    .ptb100{
        padding-top: .6rem;
        padding-bottom: .6rem;
    }
    .pt100{
        padding-top: .6rem;
    }
    .d-flex{
        flex-wrap: wrap;
    }
    .bannertxt h2{
        font-size: .6rem;
    }
    .bannertxt h4{
        font-size: .2rem;
        max-width: 70%;
    }
    .bannerimg .imgs img{
        max-width: 60%;
    }
    .bannerimg .imgs img:nth-child(2){
        right: 0;
        top: 3.6rem;
    }
    .fans-num{
        font-size: .34rem;
    }
    .face img{height: 30px;}
    .index-product-category{
        padding: 1rem 0 0;
    }
    .top-title h3{
        font-size: .44rem;
    }
    .product-category .item{
        width: 100%;
    }
    .product-category .item .img img{
        width: 100%;
    }
    .product-category .item .txt{
        padding-left: .2rem;
    }
    .product-category .item .txt h3{
        font-size: .38rem;
    }
    .product-category .item .txt .desc{
        font-size: .16rem;
    }
    .index-nums{
        gap: .1rem;
    }
    .index-nums .item,.index-nums .item:first-child{
        width: 100%;
    }
    .index-nums .counter{
        margin-top: .3rem;
    }
    .index-partner .box-right{
        max-width: 4rem;
        right: .1rem;
        top: -1rem;
    }
    .top-title h5{
        font-size: .16rem;
    }
    .index-partner .partnerbox{
        padding: 0 .3rem;
        background-size: 40%;
    }
    .index-partner .partnerbox .topinfo{
        max-width: 50%;
    }
    .index-partner .partnerbox .topinfo p{
        font-size: .16rem;
    }
    .iconitem{
        width: 100%;
    }
    .partnerlist{
        gap: .2rem;
    }
    .getintouch .img img{
        border-radius: .4rem;
    }
    .getintouch .text h3{
        font-size: .34rem;
    }
    .getintouch .text p{
        font-size: .15rem;
        padding: .2rem;
    }
    .getintouch .img::after{
        background-size: 90%;
    }
    .cx-btns a{
        font-size: .15rem;
    }
    .footnav{
        width: 100%;
        margin-top: .5rem;
    }
    .foot-contact .contact-item{
        width: 50%;
        max-width: 50%;
        justify-content: start;
    }
    .innerbanner .bannertxt h1{
        font-size: .34rem;
    }
    .innerbanner .bannertxt h4{
        font-size: .18rem;
    }
    .probox1 h2{
        font-size: .34rem;
    }
    .probox1 .desc{
        font-size: .16rem;
    }
    .probox1 .proimgs{
        gap: .2rem;
    }
    .probox1 .proimgs img{
        border-radius: .2rem;
        width: calc((100% - .2rem) / 2);
    }
    .materials .item{
        width: 100%;
    }
    .materials .item .title{
        font-size: .16rem;
    }
    .flavors .top-title h4{
        font-size: 1.6rem;
    }
    .prolist{
        gap: 1.5rem .6rem;
    }
    .prolist .item{
        width: calc((100% - .6rem) / 2);
    }
    .canshu .top-title h3{
        font-size: .32rem;
    }
    .canshubox .desc{
        font-size: .16rem;
    }
    .aboutbox1 .exp{
        padding: .2rem;
        width: 1.8rem;
        height: 1.8rem;
    }
    .aboutbox1 .exp .expnum span{
        line-height: 1;
    }
    .aboutbox1 .exp .expnum span:first-child{
        font-size: .6rem;
        line-height: 1;
    }
    .aboutbox1 .abouttext .desc{
        font-size: .18rem;
    }
    .aboutmore .item{
        width: 100%;
    }
    .aboutmore{
        gap: .2rem;
    }
    .aboutmore .img{
        border-radius: .2rem;
    }
    .aboutmore .item img{width: 100%;}
    .factorybox{
        padding: .8rem .5rem;
        border-radius: .2rem;
    }
    .factorybox .img{
        border-radius: .2rem;
    }
    .factorybox .text h3{
        font-size: .26rem;
    }
    .factorybox .text p{
        font-size: .16rem;
    }
    .wrapper1,.probox1 .wrapper1{
        padding:0 20px;
    }
}

.blog-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    padding: 40px 0;
}

.blog-card {
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
    transition: transform .25s ease, box-shadow .25s ease;
}

.blog-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 28px rgba(0,0,0,0.12);
}

.blog-card .thumb img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}

.blog-card .info {
    padding: 22px;
}

.blog-card .title {
    font-size: .2rem;
    margin: 0 0 12px;
    font-weight: 500;
    line-height: 1.3;
}
.blog-card .title:hover a{
    color: var(--main-color);
}
.blog-card .excerpt {
    color: #666;
    font-size: 15px;
    line-height: 1.6;
    height: 70px;
    overflow: hidden;
}

.blog-card .readmore {
    display: inline-block;
    margin-top: 14px;
    font-size: 15px;
    color: var(--second-color);
    font-weight: 600;
    transition: .2s;
}

.blog-card .readmore:hover {
    color: var(--main-color);
}

/* Responsive */
@media (max-width: 992px) {
    .blog-list {
        grid-template-columns: repeat(2, 1fr);
    }
    .blog-card .thumb img {
        height: 200px;
    }
}

@media (max-width: 600px) {
    .blog-list {
        grid-template-columns: 1fr;
    }
    .blog-card .thumb img {
        height: 180px;
    }
}

.blog-detail {
    max-width: 1200px;
    margin: 0 auto;
    padding: .4rem;
    border-radius: .3rem;
    box-shadow: 0 4px 24px #2764af1a;
}

/* Title */
.post-title {
    font-size: .36rem;
    font-weight: 600;
    margin-bottom: 15px;
    line-height: 1.25;
}

/* Meta */
.post-meta {
    color: #888;
    font-size: 14px;
    display: flex;
    align-items: center;
    margin-bottom: 25px;
}

.post-meta .dot {
    width: 5px;
    height: 5px;
    background: #bbb;
    border-radius: 50%;
    margin: 0 10px;
}

/* Featured Image */
.featured-image img {
    width: 100%;
    border-radius: 18px;
    margin-bottom: 35px;
    display: block;
    box-shadow: 0 8px 28px rgba(0,0,0,0.12);
}

/* Content */
.post-content p {
    font-size: 17px;
    line-height: 1.9;
    color: #444;
    margin: 0 0 25px;
}

.post-content h2 {
    font-size: 26px;
    margin: 40px 0 20px;
    font-weight: bold;
    position: relative;
    padding-left: 12px;
}

.post-content blockquote {
    border-left: 4px solid #8f4cff;
    padding: 16px 20px;
    font-style: italic;
    color: #555;
    background: #faf8ff;
    border-radius: 8px;
    margin: 30px 0;
}

.post-content ul {
    padding-left: 20px;
    margin-bottom: 25px;
}

.post-content ul li {
    margin-bottom: 10px;
    color: #444;
    font-size: 17px;
}

/* Content images */
.content-image {
    width: 100%;
    border-radius: 12px;
    margin: 28px 0;
    box-shadow: 0 4px 18px rgba(0,0,0,0.1);
}

/* Responsive */
@media (max-width: 600px) {
    .post-title {
        font-size: 28px;
    }
    .post-content h2 {
        font-size: 22px;
    }
}

.pagination {
    list-style: none;
    display: flex;
    gap: 8px;
    padding: 0;
    margin: 40px 0;
    justify-content: center;
}

.pagination li a,.pagination li span {
    display: block;
    padding: 10px 18px;
    font-size: 14px;
    color: #555;
    border: 1px solid #ddd;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.25s ease;
}

/* Hover */
.pagination li a:hover {
    border-color: #222;
    color: #000;
}

/* 当前页 */
.pagination li.active span {
    background: #111;
    color: #fff;
    border-color: #111;
    cursor: default;
}

/* 禁用 */
.pagination li.disabled a {
    opacity: .4;
    cursor: not-allowed;
}

/* Prev / Next 加强视觉 */
.pagination li.prev a,
.pagination li.next a {
    font-weight: 600;
}

.service-box6{width:100%;padding:.93rem 0 1.2rem}
@media (max-width:767px){.service-box6{padding:1rem 0}
}
.service-box6 .wrapper{display:flex;justify-content:space-between;align-items:flex-start;flex-wrap:wrap}
@media (max-width:991px){.service-box6 .wrapper .top{width:100%}
}
.service-box6 .wrapper .top .t1{color:#999;line-height:1.5em}
@media (max-width:767px){.service-box6 .wrapper .top .t1{display:none}
}
.service-box6 .wrapper .top .title{line-height:1.16666667em;color:#333;margin-top:.14rem; font-size: .4rem;}
@media (max-width:767px){.service-box6 .wrapper .top .title{margin-top:0}
}
.service-box6 .wrapper .top .title span{display:block}
.service-box6 .wrapper .top .more{display:flex;margin-top:.75rem}
@media (max-width:991px){.service-box6 .wrapper .top .more{margin-top:.5rem}
}
.service-box6 .wrapper .top .more a{color:var(--main-color);line-height:1.5em;display:flex;align-items:center}
.service-box6 .wrapper .top .more a i{width:22px;height:22px;color: #fff; display:flex;justify-content:center;align-items:center;border-radius:50%;background:var(--main-color);margin-left:.1rem;overflow:hidden}
.service-box6 .wrapper .top .more a i svg{width:40%;height:40%}
.service-box6 .wrapper .top .more a i svg path{fill:#fff}
@media (min-width:992px){.service-box6 .wrapper .top .more a:hover i svg{animation:arrowRun 5s infinite}
}
.service-box6 .wrapper .list{width:64.44444444%;border-top:1px solid #ddd}
@media (max-width:991px){.service-box6 .wrapper .list{width:100%;margin-top:.8rem}
}
.service-box6 .wrapper .list ul{width:100%}
.service-box6 .wrapper .list ul li{width:100%;padding:.34rem .36rem .34rem .27rem;border-bottom:1px solid #ddd}
@media (max-width:767px){.service-box6 .wrapper .list ul li{padding:.34rem 0 .34rem 0}
}
.service-box6 .wrapper .list ul li .title{width:100%;display:flex;justify-content:space-between;align-items:center;line-height:1.45454545em;cursor:pointer; font-size: .24rem;}
.service-box6 .wrapper .list ul li .title span{color:#333;transition:all .4s}
.service-box6 .wrapper .list ul li .title i{width:.18rem;height:.18rem;display:flex;position:relative;flex-shrink:0}
.service-box6 .wrapper .list ul li .title i img{width:100%;height:100%}
.service-box6 .wrapper .list ul li .title i img:nth-child(2){position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);z-index:2}
.service-box6 .wrapper .list ul li .txt{line-height:2;color:#555;padding:.26rem .8rem .22rem 0;display:none;font-size: .16rem;}
.service-box6 .wrapper .list ul li .txt p{margin-bottom: .2rem;}
@media (max-width:767px){.service-box6 .wrapper .list ul li .txt{line-height:1.6}
}
@media (min-width:992px){.service-box6 .wrapper .list ul li:hover .title span{color:var(--main-color)}
}
.service-box6 .wrapper .list ul li.on .title span{color:var(--main-color)}
.service-box6 .wrapper .list ul li.on .title i img:nth-child(1){opacity:0}