/* 头部展示图 start */
h1,h2,h3 {
    text-align: center;
}
.header-display-section{
    background-image: url(https://image.maxemblem.com/maxemblem/image/cms/cd9e1420cdeffc7af79b3b88e5f6a47d.jpg);
    background-size: cover;
    min-height: 35.75em;
    width: 100%;
    display: flex;
    padding-bottom: 90px;
}
.header-content{
    margin-left: 10px;
    margin-top: 10px;
    width: 60%;
    line-height: 1.3;
}
.header-content-title{
    color: #705327;
    font-size: 4em;
    font-weight: 500;
    font-family: fantasy;
}
.header-content-title > span {
    color: #fff;
}
.header-content-val{
    color: #fff;
    font-size: 1.2em;
}
.header-content-button{
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: left;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    margin-top: 50px;
}
.header-content-button > a {
    font-size: 1.5em;
    font-weight: bold;
}
.primary-button {
    border: 1px solid #F8F1F1;
    background-color: #F8F1F1;
    border-radius: 70px;
    padding: 10px 16px 10px 20px;
    position: relative;
    overflow: hidden;
    transition: all 0.5s ease;
}

.w-inline-block {
    max-width: 100%;
    display: inline-block;
}

.button-block {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    justify-content: flex-start;
    align-items: center;
    display: flex;
}

.button-text-block {
    font-family: "JetBrains Mono", sans-serif;
    color: #705327;
    font-weight: 600;
    line-height: 144.444%;
    transition: color 0.5s ease;
}

.button-icon-block {
    aspect-ratio: 1;
    background-color: #705327;
    color: #F8F1F1;
    border-radius: 100%;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    display: flex;
    position: relative;
    overflow: hidden;
    transition: all 0.5s ease;
}

.button-icon-wrapper {
    width: 20px;
    height: 20px;
    position: relative;
    overflow: hidden;
}

/* 添加动画效果 */
.button-hover-icon {
    position: absolute;
    left: 0;
    top: 0;
    transform: translateX(-100%);
    transition: transform 0.5s ease;
}

.button-initial-icon {
    position: absolute;
    left: 0;
    top: 0;
    transform: translateX(0%);
    transition: transform 0.5s ease;
}

.primary-button:hover {
    background-color: #705327;
    border-color: #705327;
}

.primary-button:hover .button-hover-icon {
    transform: translateX(0%);
}

.primary-button:hover .button-initial-icon {
    transform: translateX(100%);
}

.primary-button:hover .button-text {
    color: #F8F1F1;
}

.primary-button:hover .button-icon-block {
    background-color: #F8F1F1;
    color: #705327;
}
@media (max-width: 768px) {
    .header-display-section {
        min-height: 30em;
        padding-bottom: 60px;
        justify-content: center;
        text-align: center;
    }
    
    .header-content {
        width: 100%;
        margin-left: 0;
        margin-top: 10px;
    }
    
    .header-content-title {
        font-size: 0.75rem;
    }
    
    .header-content-val {
        font-size: 1.1em;
    }
    
    .header-content-button {
        width: 70%;
        margin: 30px auto 0;
        justify-content: center;
    }
    
    .primary-button {
        padding: 8px 14px 8px 16px;
    }
    
    .button-icon-block {
        width: 35px;
        height: 35px;
    }
    .button-text{
        font-size: 0.45rem;
    }
}
/* 头部展示图 end */

/* 目标群体 start */
.carousel-modal-box {
    background-color: #9F9060;
    padding: 30px;
    width: 100%;
}

.carousel-sub {
    width: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: center;
}
.carousel-sub-title{
    width: 80%;
}
.carousel-sub-title > div:first-child {
    font-size: 2.5rem;
    font-weight: bold;
    color: #000000;
    text-align: center;
}
.carousel-container {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    margin: 20px auto;
}
.cards-container {
    display: grid;
    /* 一行三个超过three个的时候，就换行 */
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 30px;
    padding: 20px 20px;
    margin: 0 auto;
}

.cards-container::-webkit-scrollbar {
    display: none;
}

.carousel-card {
    flex: 0 0 auto;
    width: 500px; 
    height: auto; 
    background-color: white;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    cursor: pointer;
    position: relative;
    display: flex;
}

.carousel-card-image {
    width: 250px;
    height: auto;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.carousel-card-image img {
    width: 100%;
    /* height: 100%; */
    object-fit: cover;
    transition: transform 0.5s ease;
}

.carousel-card:hover .carousel-card-image img {
    transform: scale(1.08);
}

.carousel-card-discount{
    position: absolute;
    top: 0;
    width: 125px;
    padding: 5px 10px;
    background: #d93333;
    font-weight: 600;
    text-align: center;
    font-size: 20px;
    color: #fff;
    clip-path: polygon(0% 0%, 100% 0%, calc(100% - 15px) 50%, 100% 100%, 0% 100%);
}

.carousel-card-content {
    display: none;
    padding: 20px;
    width: 350px;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease 0.1s;
}

.carousel-card.active .carousel-card-content {
    display: flex;
    flex-direction: column;
    opacity: 1;
    transform: translateX(0);
}

.carousel-card-title {
    font-size: 18px;
    color: #705327;
    margin: 0;
    font-weight: 600;
}

.carousel-card-text {
    font-size: 14px;
    height: 80%;
    color: #555;
    margin: 0;
    overflow: hidden;
}

.pin-type-new{
    padding: 30px 20px 50px;
}

.container main h1{
    font-size: 3em;
}

@media (max-width: 768px) {
    .carousel-modal-box {
        padding: 20px 2px;
    }
    
    .carousel-sub-title {
        width: 95%;
    }
    
    .carousel-sub-title > div:first-child {
        font-size:0.65rem;
        line-height: 1.4;
    }
    
    .cards-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 4px;
        padding: 10px 0px;
    }
    
    .carousel-card {
        width: 100%;
        max-width: 100%;
        height: auto;
        min-height: 200px;
        flex-direction: column;
        margin: 0 auto;
        border-radius: 5px;
    }
    
    .carousel-card-image {
        width: 100%;
        height: auto !important;
    }
    
    .carousel-card-content {
        width: 100%;
        padding: 4px;
        display: flex;
        flex-direction: column;
        opacity: 1;
        transform: none;
        flex-grow: 1;
    }
    
    .carousel-card-title {
        font-size: 14px;
        margin-bottom: 6px;
        line-height: 1.3;
        min-height: 55px;
    }
    
    .carousel-card-text {
        font-size: 12px;
        max-height: auto; 
        overflow: hidden;
        line-height: 1.3;
        margin-bottom: 8px;
        flex-grow: 1;
        display: -webkit-box;
        -webkit-line-clamp: 5;
        -webkit-box-orient: vertical;
        line-height: 1.4;
        max-height: 7em; /* (1.4 * 5) = 7 */
        transition: max-height 0.3s ease; 
    }

    /* 展开状态 */
    .carousel-card-text.expanded {
        -webkit-line-clamp: unset;
        max-height: 200px; 
    }
    
    .quote-box {
        flex-direction: column;
        gap: 8px;
        align-items: flex-start;
        margin-top: auto; 
    }
    
    .btn-quote {
        width: 100%;
        text-align: center;
        padding: 8px;
        font-size: 12px;
    }
    
    .quote-box a:last-child {
        font-size: 12px;
    }
}
/* 目标群体 end */

/* 页面主体样式 */
.page-body {
    margin: 0 auto;
    padding: 0 3vw;
    max-width: calc(1600px + 17vw);
    width: 100%;
    height: 100%;
}

.page-body > h1 {
    text-align: center;
}
.page-body > h2 {
    font-size: 16px !important;
}


/* 商品列表网格布局 */
.goodslist {
    --img-height: 20em;
    --columns: 4;
    --title-line: 2;
    
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: clamp(1em, 1.5vw, 2em);
    container: goodslist / inline-size;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .page-body > h1 {
        font-size: 0.65rem !important;
        margin: 0 !important;
        padding-top: 20px;
    }
    .page-body > h2 {
        font-size: 0.45rem !important;
    }
    .pin-type-new{
        background-color: #FBF2E8;
        padding: 30px 5px 40px;
    }
    .goodslist {
        --columns: 2;
        grid-template-columns: repeat(2, 1fr);
        gap: 5px;
    }
    .goodslist > li{
        margin-bottom: 5px !important;
        padding:0 !important;
        display: none;
        justify-content:unset !important;
    }
    .goodslist-item-value{
        
    }
    .goodslist-item-value > p{
        height: auto;
        font-size: 0.35rem;
        color: #555;
        margin-bottom: 0;
        min-height: 190px;
        height: auto;
    }
}

/* 商品项样式 */
.goodslist > li {
    border: 1px solid #ddd;
    background-color: #fff;
    border-radius: 0.5em;
    padding: 1em;
    margin-bottom: 20px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
}

/* 图片容器样式 */
.goodslist .img {
    aspect-ratio: 1 / 1;
    min-height: 10em;
    max-height: 18em;
    margin-bottom: 1em;
    border-radius: 0.5em;
    overflow: hidden;
}

.goodslist img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    margin: 0 auto;
}

/* 图片容器布局 */
.container .el-image {
    width: 100%;
    height: 100%;
    border-radius: inherit;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* 商品项内容布局 */
.goodslist-item-value {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.goodslist-item-value > p {
    margin-bottom: 10px;
}

/* 引用框样式 */
.quote-box {
    gap: 1em;
    font-weight: bold;
}

.quote-box > .btn-quote {
    color: #fff;
}

.quote-box > a {
    color: #5d84b3;
    display: inline-block;
    cursor: pointer;
    --bg-color: #5d84b3;
}

.quote-box span a {
    color: #5d84b3;
}

/* 博客 start */
.footer-section {
  background-color: #768A63;
  padding: 40px 0;
  font-family: 'Rubik', sans-serif;
}

.footer-section >h1 {
    font-weight: 600;
}

.footer-section-title {
  font-size: 24px;
  font-weight: 700;
  color: #000;
  margin-bottom: 16px;
  text-align: center;
}

.footer-section-value {
  font-size: 16px;
  color: #000;
  line-height: 1.6;
  max-width: 1200px;
  margin: 0 auto 32px;
  text-align: center;
}

.footer-section-content {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  margin: 0 auto;
  padding: 0 20px;
  width: 90%;
}
.show-more-btn {
    display: block;
    margin: 20px auto;
    padding: 10px 20px;
    background: #4a90e2;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}
.blog-post-item {
  background: #f9f9f9;
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-post-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.blog-post-item img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-bottom: 1px solid #eeeeee;
}

.blog-post-item div:last-child {
  padding: 16px;
  font-size: 16px;
  font-weight: 500;
  color: #333333;
  text-align: center;
}
.blog-post-view-all {
  text-align: center;
  margin-top: 40px;
}

.blog-post-view-all button {
  background-color: #000; /* 主色调绿色 */
  color: white;
  border: none;
  padding: 12px 32px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  overflow: hidden;
}

.blog-post-view-all button:hover {
  background-color: #365a3d; /* 深一点的绿色 */
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(69, 112, 76, 0.3);
}

.blog-post-view-all button:active {
  transform: translateY(0);
  box-shadow: 0 2px 6px rgba(69, 112, 76, 0.3);
}

.blog-post-view-all button::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 5px;
  height: 5px;
  background: rgba(255, 255, 255, 0.5);
  opacity: 0;
  border-radius: 100%;
  transform: scale(1, 1) translate(-50%, -50%);
  transform-origin: 50% 50%;
}

.blog-post-view-all button:focus:not(:active)::after {
  animation: ripple 0.6s ease-out;
}
@media (max-width: 768px) {
  .footer-section {
    padding: 10px 0;
    background-color: #768A63;
  }
  
  .footer-section-content {
    grid-template-columns: 1fr;
    max-width: 500px;
    padding: 0 5px;
    gap: 4px;
  }
  
  .footer-section-title {
    font-size: 20px;
    margin: 12px 0;
    color: #fff;
  }
  
  .footer-section-value {
    font-size: 0.35rem;
    margin-bottom: 24px;
    padding: 0 15px;
    color: #fff;
  }
  
  .blog-post-item img {
    height: 160px;
  }

  .blog-post-item div:last-child {
    font-weight: bold;
  }

  .blog-post-view-all > a >button{
    font-weight: bold;
  }
}

/* 案例画廊 start*/
.case-gallery-box{
    width: 100%;
    background-color: #3E4441;
    padding: 1.5rem 0;
}
.case-gallery-title{
    color: #fff;
    text-align: center;
    font-size: 3em;
    margin-bottom: 10px;
    font-weight: 600;
}
.case-gallery{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.case-gallery > img {
    width: 100%;
}
.case-gallery-val{
    max-width: 250px;
    min-height: 200px;
    margin: 0 10px;
}
.case-gallery-val{
    height: 200px;
    /* background-color: #fff; */
    display: flex;
    align-items: center;
}
.case-gallery-val > a > img {
    width: 100%;
    max-height: 200px;
    transition: transform 0.3s ease;
}

.case-gallery-val > a > img:hover {
    transform: scale(1.1);
}

.case-gallery-btn1{
    width: 80%;
    background-color: #D24600;
    border-radius: 5px;
    padding: 5px 0;
}
.case-gallery-btn1 > button{
    width: 100%;
    color: #fff;
    font-weight: bold;
    font-size: large;
    background: none;
    border: none;
    cursor: pointer;
    text-align: center;
}
.case-gallery-btn2{
    width: 80%;
    background-color: #0066CC;
    border-radius: 5px;
    padding: 5px 0;
}
.case-gallery-btn2 > button{
    width: 100%;
    color: #fff;
    font-weight: bold;
    font-size: large;
    background: none;
    border: none;
    cursor: pointer;
    text-align: center;
}
.case-gallery-text{
    font-size: 0.9em;
    text-align: center;
    color: #333;
}

@media (max-width: 768px) {
    .case-gallery-box{
        padding: 20px 0;
    }
    .case-gallery-title {
        font-size: 0.65rem; 
        margin-bottom: 20px;
        padding: 0 15px;
    }
    
    .case-gallery {
        justify-content: space-between;
        gap: 15px;
        padding: 0 15px;
        flex-wrap: wrap;
    }
    
    .case-gallery-val {
        width: calc(50% - 7.5px);
        min-height: 150px;
        margin: 0;
        max-width: none;
    }
    
    .case-gallery-val {
        height: 150px;
    }
    .case-gallery-val:last-child{
        background-color: #f0eeee;
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 8px;
    }
}

/* 案例画廊 end */


.feature-section {
    position: relative;
    width: 100%;
    padding: 1.5rem 0;
    background-color: #768A63;
}

@media (min-width: 768px) {
    .feature-section {
        padding: 1.5rem 0;
    }
}

.feature-container {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1rem;
    color: #000000;
}
.feature-container > h1 {
    font-weight: 600;
}

/* 间距调整 */
.spacing-md {
    height: 15px;
}

.spacing-sm {
    height: 5px;
}

@media (max-width: 767px) {
    .spacing-md {
        display: none;
    }
}

@media (min-width: 768px) {
    .spacing-sm {
        display: none;
    }
}

/* 特色项目容器 */
.features-grid {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 0.5rem;
    flex-direction: column;
}

@media (min-width: 768px) {
    .features-grid {
        flex-direction: row;
    }
}

/* 单个特色项目 */
.feature-item {
    flex: 1;
    text-align: center;
    margin-bottom: 1.5rem;
    background-color: #fff;
    padding: 10px;
    border-radius: 10px;
    height: -webkit-fill-available;
}

@media (min-width: 768px) {
    .feature-item {
        margin-bottom: 0;
    }
}

/* 图标容器 */
.icon-container {
    position: relative;
    width: 100%;
    margin: 1rem 0;
}

.icon-bg-gradient {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: none;
}

.icon-bg-gradient-inner {
    height: 100%;
    width: 100%;
    background: linear-gradient(135deg, rgb(205, 204, 203) 0%, rgb(249, 249, 248) 100%);
    max-width: 60px;
}

.image-content {
    position: relative;
}

.glow1, .glow2 {
    position: absolute;
    margin: 0 auto;
    margin-top: auto;
    height: auto;
    max-width: 60px;
}

.glow1 {
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

.glow2 {
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
}

.feature-icon {
    max-width: 100%;
    display: block;
    margin: 0 auto;
}

/* 特色标题 */
.feature-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    min-height: 55px;
}

.text-blue {
    color: #2d5d9f; /* 蓝色，可根据需要调整 */
}

/* 特色描述 */
.feature-description {
    font-size: 0.875rem;
    font-weight: 500;
    margin: 0;
    color: #2D2D2D;
}

@media (max-width: 768px) {
    .feature-section {
        padding: 20px 0;
        background-color: #768A63;
    }
    .features-grid {
        gap: 10px;
    }
    .text-blue{
        font-size: 0.45rem;
    }
    .icon-container{
        margin-bottom:0;
    }
    .feature-description{
        font-size: 0.35rem;
        margin-top: 5px;
    }
    .feature-title{
        font-size: 0.5rem;
        margin-bottom: 0;
        min-height: auto;
    }
    .feature-item{
        margin-bottom: 0;
    }
}

/* 产品优势 start */
.product-advantage {
    margin: 0 auto;
    padding: 30px 20px;
    background-color: #FBF2E8;
    min-height: 100vh; /* 确保至少占满一屏 */
    box-sizing: border-box; /* 包含padding在高度计算内 */
    display: flex;
    flex-direction: column;
    justify-content: center; /* 垂直居中 */
}

.product-advantages-title {
    text-align: center;
    font-size: 2.2rem; /* 稍微减小字号 */
    font-weight: 800;
    color: #000000;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.product-advantages-val {
    text-align: center;
    font-size: 16px; /* 稍微减小字号 */
    color: #000000;
    margin-bottom: 20px; /* 减少底部间距 */
}

.product-advantages-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 固定3列 */
    gap: 20px;
    justify-content: center;
    max-width: 1300px;
    margin: 0 auto;
    width: 100%;
}

.product-advantages-content-item {
    border-radius: 12px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.product-advantages-content-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.2);
}

.product-item-val{
    padding: 10px;
    background-color: #fff;
    margin-top: -90px;
    min-height: 270px; /* 减少最小高度 */
    border-radius: 10px;
    display: flex;
    flex-direction: column;
}

.product-item-val > ul > li >span{
    font-weight: 600;
}

.product-item-top{
    width: 30%;
    height: 0;
    padding-bottom: 35%;
    background-color: red;
    border-radius: 50%;
    margin-left: 35%;    
}

.product-item-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 5px;
    color: #1a1a1a;
    text-align: center;
}

.product-item-content {
    padding: 0 10px;
    background-color: #9F9060;
}

.product-item-img {
    text-align: center;
    margin-top: -55px;
    margin-bottom: 5px;
    display: flex;
    justify-content: center;
    position: relative;
    z-index: 10;
}

.product-item-img img {
    width: 70px;
    height: 70px;
    object-fit: contain;
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    background-color: #fff;
}

.product-advantages-content-item ul {
    padding: 0;
    margin: 0;
    list-style: none;
    flex-grow: 1;
}

.product-advantages-content-item li {
    padding: 6px 5px; 
    position: relative;
    color: #555;
    font-size: 0.9rem; 
    line-height: 1.3;
}

.product-item-bottom {
    height: 15px;
    border-radius: 1rem 1rem 0.25rem 0.25rem;
    margin-top: -8px;
    width: 50%;
    margin-left: 25%;
}

.product-advantages-content-item:nth-child(1) .product-item-top { background-color: #ccc; }
.product-advantages-content-item:nth-child(2) .product-item-top { background-color: #F4E9DD; }
.product-advantages-content-item:nth-child(3) .product-item-top { background-color: #00BCFB; }
.product-advantages-content-item:nth-child(4) .product-item-top { background-color: #F7C332; }
.product-advantages-content-item:nth-child(5) .product-item-top { background-color: #a0d6b4; } 
.product-advantages-content-item:nth-child(6) .product-item-top { background-color: #d9a0d6; }

.product-advantages-content-item:nth-child(1) .product-item-bottom { background-color: #ccc; }
.product-advantages-content-item:nth-child(2) .product-item-bottom { background-color: #F4E9DD; }
.product-advantages-content-item:nth-child(3) .product-item-bottom { background-color: #00BCFB; }
.product-advantages-content-item:nth-child(4) .product-item-bottom { background-color: #F7C332; }
.product-advantages-content-item:nth-child(5) .product-item-bottom { background-color: #a0d6b4; } 
.product-advantages-content-item:nth-child(6) .product-item-bottom { background-color: #d9a0d6; }

.product-advantages-btn{
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 30px;
    cursor: pointer;
}

.product-advantages-btn a {
    padding: 15px 40px;
    background-color: #000;
    color: #fff;
    border-radius: 5px;
    text-align: center;
    text-decoration: none;
    font-size: 1.1rem; 
    font-weight: 600;
    transition: all 0.3s ease;
}
@media (max-width: 768px) {
    .product-advantage {
        padding: 15px 30px;
        border-radius: 0px;
        min-height: auto;   
    }
    .product-item-top{
        width: 30%;
        padding-bottom:34%;
        margin-left: 35%;
    }
    .product-advantages-title {
        font-size: 0.70rem;
    }
    .product-item-img{
        margin-top: -40px;
        margin-bottom: 15px;
    }
    .product-advantages-val {
        font-size: 0.35rem;
        margin-bottom: 30px;
    }
    .product-item-content{
        height: 450px;
    }
    
    .product-advantages-content {
        display: flex;
        overflow: hidden;
        position: relative;
        max-width: 100%;
        margin: 0 auto;
        height: auto;
        min-height: 450px;
    }
    
    .product-item-val {
        min-height: auto;
        margin-top: -80px;
        padding: 15px 10px;
        height: 400px;
    }
    
    .product-item-title {
        font-size: 0.45rem;
    }

    .product-advantages-content-item{
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        opacity: 0;
        transform: translateX(100%);
        transition: all 0.5s ease-in-out;
        flex: 0 0 100%;
        border-radius: 12px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
        margin: 0;
        height: auto;
        min-height: 450px;
    }
    .product-advantages-content-item.active {
        opacity: 1;
        transform: translateX(0);
        position: relative;
    }
    .product-advantages-content-item.prev {
        transform: translateX(-100%);
        opacity: 0;
    }
    
    .product-advantages-content-item.next {
        transform: translateX(100%);
        opacity: 0;
    }
    
    .product-advantages-content-item li {
        font-size: 0.35rem;
        padding: 8px 15px 8px 25px;
    }

    .product-advantages-btn{
        margin-top: 15px;
    }
    
    .product-advantages-btn a {
        padding: 12px 30px;
        font-size: 0.4rem;
        width: 100%;
        max-width: 280px;
    }
     /* 轮播指示器 */
    .carousel-indicators {
        display: flex;
        justify-content: center;
        margin: 25px 0 15px;
        gap: 10px;
    }
    
    .indicator {
        width: 10px;
        height: 10px;
        border-radius: 50%;
        background-color: #ddd;
        cursor: pointer;
        transition: all 0.3s ease;
        border: 2px solid transparent;
    }
    
    .indicator.active {
        background-color: #000;
        transform: scale(1.2);
        border-color: #000;
    }
}
/* 产品优势 end */

/* 产品优势轮播指示器 */
.carousel-indicators {
    display: flex;
    justify-content: center;
    margin: 25px 0 15px;
    gap: 10px;
}

.indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #ddd;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.indicator.active {
    background-color: #000;
    transform: scale(1.2);
    border-color: #000;
}

/* 评论轮播指示器 */
.comments-indicators {
    display: flex;
    justify-content: center;
    margin: 20px 0;
    gap: 8px;
}

.comments-indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #ddd;
    cursor: pointer;
    transition: all 0.3s ease;
}

.comments-indicator.active {
    background-color: #768A63;
    transform: scale(1.2);
}
@media (max-width: 768px) {
    .carousel-indicators,
    .comments-indicators {
        display: flex !important;
    }
}

@media (min-width: 769px) {
    .carousel-indicators,
    .comments-indicators {
        display: none !important;
    }
}


/* 定制介绍-左文右图 start */
.customize-container {
    margin: 0 auto;
    padding: 40px 20px;
    background-color: #9F9060;
}

.customize-hero {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
    margin-bottom: 0px;
    padding: 30px 100px;
}

.customize-text-content {
    flex: 1;
    min-width: 300px;
}

.customize-image-content {
    flex: 1;
    min-width: 300px;
    text-align: center;
}

.customize-image-content img {
    min-width: 100%;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.customize-image-content img:hover {
    transform: scale(1.02);
}

.customize-text-content > h1 {
    font-size: 2.8rem;
    margin-bottom: 25px;
    font-weight: 600;
    color: #000;
}

.customize-text-content > ul {
    list-style-type: none;
}

.customize-text-content > ul > li {
    margin-bottom: 20px;
    font-size: 1.1rem;
    line-height: 1.6;
    padding-left: 30px;
    position: relative;
    color: #000;
}

.customize-text-content > ul > li:before {
    content: "";
    color: #000;
    position: absolute;
    left: 0;
    top: 0;
    font-weight: bold;
}

.customize-cta-button {
    display: inline-block;
    color: #000;
    font-weight: bold;
    padding: 15px 40px;
    text-decoration: none;
    margin-top: 20px;
    transition: all 0.3s ease;
}

.customize-cta-button:hover {
    transform: translateY(-3px);
}

.customize-highlight {
    color: #000;
    font-weight: bold;
}

.customize-badge {
    display: inline-block;
    background-color: #fff;
    color: #000;
    font-size: 0.8rem;
    padding: 5px 15px;
    border-radius: 20px;
    margin-bottom: 15px;
    font-weight: bold;
}
@media (max-width: 768px) {
    .customize-container {
        padding: 30px 15px;
    }
    
    .customize-hero {
        flex-direction: column;
        padding: 0;
        gap: 30px;
        margin-bottom: 0px;
    }
    
    .customize-text-content > h1 {
        font-size: 2rem;
        text-align: center;
    }
    
    .customize-text-content > ul > li {
        font-size: 0.35rem;
        margin-bottom: 15px;
    }
    
    .customize-text-content > p {
        font-size: 0.35rem;
        text-align: center;
        color: #fff;
    }
    
    .customize-cta-button {
        display: block;
        text-align: center;
        padding: 12px 30px;
        margin: 20px auto 0;
        width: 100%;
        max-width: 280px;
    }
    
    .customize-badge {
        display: block;
        text-align: center;
        margin: 0 auto 15px;
        font-size: 0.45rem;
        width: fit-content;
    }
}

/* 定制介绍-左文右图 end */

/* 定制 start */
.page-patches .made-patches {
    padding: 1em 0;
}

.page-patches .made-patches .page-body {
    gap: 5%;
    align-items: center;
}

.page-patches .made-patches .page-content {
    flex: 1;
}
.page-patches .made-patches .img {
    width: 50%;
}
.page-patches .made-patches h2 {
    margin-bottom: .5em;
    text-align: left;
    font-size: 2em;
    font-weight: 400;
}
@media (max-width: 768px) {
    .page-patches .made-patches {
        padding: 2em 0
    }

    .page-patches .made-patches .page-body {
        flex-direction: column-reverse;
        gap: .5em;
        text-align: center
    }

    .page-patches .made-patches h2 {
        text-align: center;
        font-size: 0.5rem;
    }

    .page-patches .made-patches .img {
        width: 100%
    }

    .page-patches .made-patches .btn {
        margin: 1em auto 0
    }
}

/* 定制 end */

/* 用户评论 start*/
.comments-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding: 50px;
    background-color: #768A63;
}

.comments-content {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    width: 100%;
    justify-content: center;
    padding: 50px 60px;
}

.features {
    flex: 1;
    min-width: 300px;
    border-radius: 16px;
    padding: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.features-title {
    font-size: 2.6rem;
    color: #000;
    margin-bottom: 20px;
    font-weight: 600;
}

.features-desc {
    font-size: 1.3rem;
    color: #000;
    margin-bottom: 20px;
}

.comments {
    flex: 2;
    min-width: 300px;
}

.comment-card {
    background: #FBF2E8;
    border-radius: 16px;
    padding: 10px;
    margin-bottom: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.comment-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.user-info {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    position: relative;
}

.user-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #3494e6, #ec6ead);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    font-weight: bold;
    margin-right: 15px;
}

.user-details {
    flex-grow: 1;
}

.user-name {
    font-weight: 600;
    color: #000;
    margin-bottom: 5px;
    font-size: 18px;
}

.user-icon {
    position: absolute;
    right: 0;
}

.user-icon > img {
    width: 50px;
    height: 50px;
} 

.stars {
    color: #ffc107;
    font-size: 16px;
    letter-spacing: 2px;
}

.comment-text {
    color: #000;
    line-height: 1.6;
    font-size: 16px;
    padding: 15px;
    background: #f9f9f9;
    border-radius: 12px;
    border-left: 4px solid #4285f4;
}

@media (max-width: 768px) {
    .comments-container {
        padding: 0px;
        background-color: #768A63;
        overflow: hidden;
    }
    
    .comments-content {
        flex-direction: column;
        padding: 0px 20px;
        gap: 0px;
    }
    
    .features {
        padding: 0px;
        text-align: center;
    }
    
    .features-title {
        margin-top: 20px;
        font-size: 0.75rem;
    }
    
    .features-desc {
        font-size: 0.35rem;
    }
    
    .comments {
        width: 100%;
        position: relative;
        min-height: 500px; /* 确保有足够高度显示两张卡片 */
    }
    
    /* 评论轮播容器 */
    .comments-carousel {
        position: relative;
        width: 100%;
        height: 100%;
    }
    
    .comment-card {
        padding: 15px;
        margin-bottom: 15px;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        opacity: 0;
        transform: translateX(100%);
        transition: all 0.5s ease-in-out;
        display: flex;
        flex-direction: column;
        gap: 15px;
    }
    
    .comment-card.active {
        opacity: 1;
        transform: translateX(0);
        position: relative;
    }
    
    .comment-card.next {
        transform: translateX(100%);
        opacity: 0;
    }
    
    .comment-card.prev {
        transform: translateX(-100%);
        opacity: 0;
    }
    
    /* 两张卡片上下布局 */
    .comment-card:nth-child(odd).active {
        top: 0;
    }
    
    .comment-card:nth-child(even).active {
        top: 50%;
        transform: translateX(0) translateY(5%);
    }
    
    .user-avatar {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    .user-name {
        font-size: 16px;
    }
    
    .comment-text {
        font-size: 14px;
        padding: 12px;
    }
    
    .flex.flex-center {
        justify-content: center;
        align-items: center;
        width: 50%;
        margin: 5px auto 10px;
    }
    
    /* 评论轮播指示器 */
    .comments-indicators {
        display: flex;
        justify-content: center;
        margin: 20px 0;
        gap: 8px;
    }
    
    .comments-indicator {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background-color: #ddd;
        cursor: pointer;
        transition: all 0.3s ease;
    }
    
    .comments-indicator.active {
        background-color: #768A63;
        transform: scale(1.2);
    }
    
    /* 评论轮播导航按钮 */
    .comments-navigation {
        display: flex;
        justify-content: center;
        gap: 20px;
        margin: 15px 0;
    }
    
    .comments-nav-btn {
        background-color: #768A63;
        color: white;
        border: none;
        padding: 8px 16px;
        border-radius: 4px;
        cursor: pointer;
        font-size: 14px;
        transition: background-color 0.3s ease;
    }
    
    .comments-nav-btn:hover {
        background-color: #5a6a4c;
    }
    
    .comments-nav-btn:disabled {
        background-color: #ccc;
        cursor: not-allowed;
    }
}

/* 用户评论 end */

/* 社媒链接 */
.social-media-container{
    width: 100%; 
    height: auto;
    position: relative; 
    background-color: #3E4441; 
    padding: 10px 0;
}
.social-media-wrapper {
    align-items: center;
    display: flex
}
.heading-social {
    color: #fff;
    margin-top: 0;
    margin-bottom: 0;
    font-size: 3.75rem;
    display: inline-block
}
.socialmedia-icon-group {
    align-items: center;
    display: flex;
    justify-content: space-between;
    width: 100%;
}
.socialmedia-link {
    width: 60px;
    height: 60px;
    margin-left: 30px;
    transition: all .2s
}

.socialmedia-link:hover {
    transform: translateY(-10px)
}
.w-inline-block {
    max-width: 100%;
    display: inline-block
}
.w-embed:before,
.w-embed:after {
    content: " ";
    grid-area: 1/1/2/2;
    display: table
}

.w-embed:after {
    clear: both
}
@media (max-width: 768px) {
    .social-media-wrapper {
        display: flex;
        justify-content: center;
        align-items: center;
        background-color: #3E4441;
        flex-direction: column;
        align-items: flex-start
    }
    .heading-social {
        color: #fff;
        margin-top: 0;
        margin-bottom: 0;
        font-size: 0.85rem;
        font-weight: 700;
        display: inline-block;
        margin-bottom: 10px;
    }
    .socialmedia-icon-group {
        align-items: center;
        display: flex
    }
    .socialmedia-link {
        width: 45px;
        height: 45px;
        margin-left: 0;
        margin-right: 15px;
    }
    .socialmedia-link:hover {
        transform: translateY(-10px)
    }
    .w-inline-block {
        max-width: 100%;
        display: inline-block
    }
    .w-embed:before,
    .w-embed:after {
        content: " ";
        grid-area: 1/1/2/2;
        display: table
    }
    .w-embed:after {
        clear: both
    }
}
