.header-display-section {
    height: 40em;
    width: 100%;
    display: flex;
    align-items: center; 
    justify-content: center;
    background-color: #333; 
    box-sizing: border-box;
    overflow: hidden;
}

.header-content {
    flex: 0 0 30%; 
    display: flex;
    flex-direction: column;
    justify-content: center; 
    align-items: center;
    text-align: center; 
    padding: 20px;
}

.header-content-title {
    color: #fff;
    font-size: 2em;
    font-weight: bold;
    line-height: 1.1;
    margin-bottom: 20px;
    width: 100%;
}

.header-content-val {
    color: #fff;
    font-size: 1.1em;
    list-style: none;
    padding: 0;
    margin-bottom: 15px;
    display: inline-block; 
    text-align: left;       
}

.header-content-val > li {
    padding: 6px 0;
    font-weight: 500;
    display: flex;
    align-items: flex-start;
}

.header-content-val > li:before {
    content: "●";
    margin-right: 8px;
    flex-shrink: 0;
}

.header-content-logo {
    color: #fff;
    margin-bottom: 15px;
    width: 90%;
}

.header-content-button {
    width: fit-content;
    background-color: #D24600;
    border-radius: 5px;
    transition: background 0.3s ease;
    margin-top: 10px;
}

.header-content-button:hover {
    background-color: #ff5500;
}

.header-content-button > a {
    display: block;
    padding: 12px 35px;
    color: #fff;
    font-size: 1.3em;
    font-weight: bold;
    text-decoration: none;
}

.header-image-container {
    flex: 0 0 70%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.header-image-container img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover; 
}

.header-image-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: -5px;
    width: 30%;
    height: 100%;
    background: linear-gradient(to right, #333, rgba(51, 51, 51, 0));
    z-index: 1;
}

.advantage {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #000;
    padding-top: 10px;
    padding-bottom: 10px;
}

.advantage-content {
    width: 90%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0px;
    color: #fff;
}

.advantage-content > div > a {
    text-decoration: none;
    color: #fff;
}

.advantage-content > div > a:hover {
    text-decoration: underline;
}

.product-container {
    padding: 0 20px;
    background-color: #f9f9fb;
    color: #333;
}

.product-header {
    text-align: center;
    margin-bottom: 20px;
}

.product-header h1 {
    font-size: 2rem !important;
    font-weight: 600;
    margin: 0 0 10px 0;
    color: #222;
}

.product-header p {
    font-size: 1.1rem;
    color: #666;
    font-weight: 400;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    list-style: none;
    padding: 0;
    padding-bottom: 20px;
    margin: 0 auto;
    width: 95%;
}

.product-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    border: 1px solid #eee;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.08);
}

.product-card__media {
    height: 220px;
    background: #fdfdfd;
    padding: 5px;
    border-bottom: 1px solid #f5f5f5;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;    
}

.product-card__media img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
    transition: transform 0.5s ease;
}

.product-card:hover .product-card__media img {
    transform: scale(1.08);
}

.product-card__body {
    flex-grow: 1;
    text-align: center;
}

.product-card__title {
    font-size: 1.1rem;
    margin: 0;
    min-height: 2.8em;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #222;
    line-height: 1.4;
}

.product-card__label {
    font-size: 0.85rem;
    color: #888;
}

.product-card__label > span {
    color: #D24600;
    font-weight: 600;
    font-size: 1rem;
    margin-left: 5px;
}

.product-card__actions {
    width: 80%;
    margin: 0 auto;
    height: auto;
    padding: 20px 0 20px 0;
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.btn-quote {
    width: auto;
    background-color: #333;
    color: #fff;
    text-decoration: none;
    padding: 12px;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 600;
    transition: background 0.2s;
}

.btn-quote:hover {
    background-color: #5d84b3;
    text-decoration: none;
}

.btn-info {
    font-size: 1rem;
    color: #5d84b3;
    text-decoration: none;
    transition: color 0.2s;
    font-weight: 600;
}

.btn-info:hover {
    text-decoration: underline;
    color: #333;
    text-decoration: none;
}

:root {
    --primary-orange: #5D84B3;
    --bg-color: #f8ecec;
}

.carousel-3D {
    background-color: var(--bg-color);
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow-x: hidden;
    padding: 20px 0;
}

.carousel-3D > h1 {
    font-size: 2rem !important;
    font-weight: 600;
}

.carousel-container {
    position: relative;
    width: 100%;
    height: 380px;
    display: flex;
    align-items: center;
    justify-content: center;
    perspective: 2500px;
    margin-top: 160px;
}

.carousel-item {
    position: absolute;
    width: 500px;
    height: 335px;
    border-radius: 18px;
    overflow: hidden;
    transition: all 0.7s cubic-bezier(0.25, 1, 0.5, 1);
    cursor: pointer;
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
    backface-visibility: hidden;
}

.carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid #ddd;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 200;
    transition: all 0.3s ease;
    font-size: 24px;
    color: #333;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.nav-btn:hover {
    background: var(--primary-orange);
    color: white;
    border-color: var(--primary-orange);
    box-shadow: 0 6px 15px rgba(211, 79, 10, 0.4);
}

.btn-left {
    left: 5%;
}

.btn-right {
    right: 5%;
}

.active {
    z-index: 100;
    transform: translate3d(0, 0, 150px);
    opacity: 1;
}

.prev {
    z-index: 50;
    transform: translate3d(-60%, -60px, -120px) rotateY(23deg) rotate(3deg);
    opacity: 0.9;
}

.next {
    z-index: 50;
    transform: translate3d(60%, -60px, -120px) rotateY(-23deg) rotate(-3deg);
    opacity: 0.9;
}

.far-prev {
    z-index: 10;
    transform: translate3d(-50%, -200px, -450px) rotateY(30deg) rotate(6deg);
    opacity: 0.5;
}

.far-next {
    z-index: 10;
    transform: translate3d(50%, -200px, -450px) rotateY(-30deg) rotate(-6deg);
    opacity: 0.5;
}

.hidden {
    transform: translate3d(0, 0, -600px) scale(0.5);
    opacity: 0;
    pointer-events: none;
}

.item-info {
    position: absolute;
    bottom: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    padding: 15px 0;
    text-align: center;
    font-size: 14px;
    opacity: 0;
    transition: 0.3s;
}

.active .item-info {
    opacity: 1;
}

.dots {
    margin-top: 30px;
    display: flex;
    gap: 12px;
}

.dot {
    width: 10px;
    height: 10px;
    background: #ffffff;
    border-radius: 50%;
    cursor: pointer;
    transition: 0.4s;
}

.dot.active-dot {
    background: var(--primary-orange);
    width: 30px;
    border-radius: 5px;
}

.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-advantage {
    --img-height: 20em;
    --columns: 4;
    --title-line: 2;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: clamp(1em, 1.5vw, 2em);
    container: goodslist / inline-size;
}


.goodslist-advantage > li {
    border-radius: 0.2em;
    padding: 1em;
    margin-bottom: 20px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    border: 1px solid #eee;
    background-color: #fff;
}

.goodslist-advantage > li > footer > h3 {
    min-height: 2.8em;
    display: flex;
    justify-content: center;
    align-items: center;
}

.goodslist-item-value > p {
    text-align: center;
    min-height: 4em;
}

.quote-box{
    margin-top: 5px;
}

.page-content {
    display: flex;
    gap: 8%;
}

.page-content .left {
    flex: 1;
}

.page-content .right {
    width: 40%;
}

.page-content .img img {
    max-width: 38em;
}

.page-content .img figcaption {
    font-size: 0.8em;
    text-align: center;
}

.section-highlight {
    background-color: #FBF2E8;
    padding: 20px 0;
}

/* 材质与测量部分 */
.page-content {
    gap: 8%;
}

.page-content .left {
    flex: 1;
}

.page-content .right {
    width: 40%;
}

.img img,
.page-patches .img img {
    max-width: 38em;
}

.img figcaption {
    font-size: .8em;
    text-align: center;
}

.goodslist {
    --img-height: 20em;
    --columns: 4;
    --title-line: 2;
    display: grid;
    grid-template-columns: repeat(var(--columns), 1fr);
    gap: clamp(1em, 1.5vw, 2em);
    container: goodslist / inline-size;
}

.goodslist > li {
    border-radius: .5em;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
}

.goodslist.bg > li {
    background-color: #fff;
    color: #000;
}

.goodslist > li > h4 {
    text-align: center;
}

.backing {
    --bg-color: #fff;
}

.backing dl {
    padding: .5em 1em;
    font-size: .8em;
    line-height: 1.5;
}

.backing dl dt {
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: .2em;
}

.backing dl dt::before {
    content: "";
    flex-shrink: 0;
    width: .4em;
    height: .4em;
    border-radius: 50%;
    background-color: #000;
}

/* 图片点击切换 */
.size-guide-container {
    max-width: 1200px;
    margin: 0 auto;
    background: white;
    border-radius: 10px;
    padding: 30px;
}

.tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
    border-bottom: 2px solid #eee;
    padding-bottom: 15px;
}

.tab-btn {
    padding: 12px 25px;
    margin: 0 10px;
    background: #f1f1f1;
    border: none;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tab-btn:hover {
    background: #ff8c42;
    color: white;
}

.tab-btn.active {
    background: #ff6b00;
    color: white;
}

.size-guide {
    display: none;
    padding-left: 15px;
    padding-right: 15px;
    animation: fadeIn 0.5s ease forwards;
}

.size-guide.active {
    display: block;
}

.image-gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin-bottom: 30px;
}

.image-item {
    background: #f9f9f9;
    border-radius: 8px;
    text-align: center;
    transition: transform 0.3s ease;
    position: relative;
    z-index: 1;
}

.image-item:hover {
    z-index: 2; 
}

.image-container {
    min-height: 200px;
    overflow: hidden;
    border-radius: 6px;
    transition: all 0.4s ease;
    cursor: pointer;
}

.image-placeholder {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #777;
    font-weight: 500;
    border-radius: 6px;
    transition: all 0.5s ease;
    position: absolute;
}

.image-container:hover .image-placeholder {
    transform: scale(1.08);
    transition: all 0.5s ease;
    position: absolute;
}

.image-title {
    font-weight: 600;
    margin-bottom: 8px;
    color: #333;
    font-size: 18px;
    margin-top: 40px;
}

.image-desc {
    color: #666;
    font-size: 14px;
}

.quote-btn {
    display: block;
    width: 200px;
    margin: 30px auto 0;
    padding: 15px;
    background: #ff6b00;
    color: white;
    text-align: center;
    border: none;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.quote-btn:hover {
    background: #e55d00;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 0, 0.3);
}

/* 案例画廊 start*/
.case-gallery-box{
    width: 100%;
    background-color: #3E4441;
    padding: 1.5rem 0;
}
.case-gallery-title{
    text-align: center;
    font-size: 2rem;
    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;
}

.product-advantages-btn{
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 30px;
    cursor: pointer;
}
/* 案例画廊 end */

/* 定制介绍-左文右图 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.5s ease;
}

.customize-image-content img:hover {
    transform: scale(1.05);
    transition: all 0.5s ease;
}

.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: 20px 0 0;
    font-size: 1.1rem;
    line-height: 1.6;
    padding-left: 30px;
    position: relative;
}

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

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

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

.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;
}

/* 博客 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;
  margin-bottom: 16px;
  text-align: center;
}

.footer-section-value {
  font-size: 16px;
  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) {
    .header-display-section {
        flex-direction: column-reverse;
        height: auto;
    }

    .header-image-container {
        flex: 0 0 300px;
        width: 100%;
    }

    .header-image-container::before {
        width: 100%;
        height: 60%;
        top: auto; 
        bottom: -2px;
        left: 0;
        background: linear-gradient(to top, #333, rgba(51, 51, 51, 0));
        z-index: 1;
    }

    .header-content {
        flex: 0 0 auto;
        width: 100%;
        padding: 20px 20px; 
    }

    .header-content-title {
        font-size: 1.5em; 
        width: 100%;
    }

    .header-content-val {
        text-align: left;
        display: block;
        margin: 0 auto 20px;
        width: fit-content;
        font-size: 0.35rem;
    }
    .header-content-val > li:before {
        content: "●";
        margin-right: 4px;
        flex-shrink: 0;
    }
    .header-content-logo{
        margin-bottom: 0;
    }
}

/* 滚动条 */
@media (max-width: 768px) {
    .advantage-content {
        width: 100%;
        flex-wrap: nowrap;
        justify-content: flex-start;
        padding: 0;
    }
    
    .advantage-content > div {
        width: auto;
        flex-direction: row;
        padding: 10px 20px;
        border-radius: 10px;
        flex-shrink: 0; 
    }
    
    .advantage-content.scroll {
        animation: scroll 20s linear infinite;
    }
    
    /* 悬停时暂停动画 */
    .advantage-content.scroll:hover {
        animation-play-state: paused;
    }
    
    /* 滚动关键帧 */
    @keyframes scroll {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(-100%);
        }
    }
}

/* 卡片布局 */
@media (max-width: 768px) {
    .product-container {
        padding: 0px;
        background-color: #f9f9fb;
        color: #333;
    }

    .product-header h1 {
        font-size: 0.65rem !important;
        font-weight: 600;
        margin: 0 0 10px 0;
        color: #222;
    }

    .product-header p {
        font-size: 0.4rem;
        color: #666;
        font-weight: 400;
    }

    .product-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        padding: 0;
        padding-bottom: 20px;
        width: 100%;
    }

    .product-card {
        background: #fff;
        border-radius: 12px;
        overflow: hidden;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        display: flex;
        flex-direction: column;
        border: 1px solid #eee;
    }

    .product-card__title {
        font-size: 0.4rem;
        min-height: 2.8em;
    }

    .product-card__label {
        font-size: 0.35rem;
    }

    .product-card__label > span {
        font-size: 0.4rem;
    }

    .product-card__actions {
        width: 100%;
        margin: 0 auto;
        padding: 10px 0;
        height: auto;
        display: flex;
        flex-direction: column;
        gap: 5px;
    }

    .btn-quote {
        font-size: 0.35rem;
    }

    .btn-info {
        font-size: 0.35rem;
    }
}

/* 3D轮播 */
@media (max-width: 768px) {
    .carousel-3D > h2 {
        font-size: 0.65rem !important;
        font-weight: 600;
    }

    .carousel-3D > p {
        font-size: 0.45rem !important;
        text-align: center;
    }

    .carousel-container {
        height: 200px;
        perspective: 1000px;
        transform: scale(0.85);
        margin-top: 90px;
    }

    .carousel-item {
        width: 280px;
        height: 180px; 
    }

    .nav-btn {
        width: 40px;
        height: 40px;
        font-size: 18px;
        background: rgba(255, 255, 255, 0.9);
    }

    .active{
        transform: translate3d(0, 0, 220px);
    }

    .prev {
        transform: translate3d(-50%, -60px, -100px) rotateY(20deg);
    }

    .next {
        transform: translate3d(50%, -60px, -100px) rotateY(-20deg);
    }
}

/* 2*n卡片 */
@media (max-width: 768px) {
    .section-highlight{
        padding: 15px 0;
    }
    .page-body{
        padding: 0;
    }

    .page-body > h1 {
        font-size: 0.65rem !important;
        margin: 0 !important;
        padding-top: 20px;
    }
    .page-body > h2 {
        font-size: 0.40rem !important;
    }
    .pin-type-new{
        background-color: #FBF2E8;
    }
    .goodslist-advantage {
        display: flex;
        overflow: hidden;
        position: relative;
        max-width: 100%;
        margin: 0 auto;
        height: auto;
       
    }
    .goodslist-advantage > li{
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        opacity: 0;
        transition: all 0.5s ease-in-out;
        flex: 0 0 90%;
        margin: 0 auto;
        height: auto;
    }
}

/* 材质 */
@media screen and (max-width: 750px) {
    .goodslist {
        --columns: 2;
        gap: 1em;
    }
    .backing dl {
        padding: .5em 1em;
        font-size: .8em;
        line-height: 1.5;
    }

    .backing dl dt {
        font-weight: 700;
        display: flex;
        align-items: center;
        gap: .2em;
    }

    .backing dl dt::before {
        content: "";
        flex-shrink: 0;
        width: .4em;
        height: .4em;
        border-radius: 50%;
        background-color: #000;
    }

    .container main > .page-body{
        padding: 20px 0;
    }
    .page-content{
        flex-direction: column-reverse;
    }
    .page-content .right{
        width: 100%;
    }
    .page-content .img figcaption{
        font-size: 12px;
    }
    .page-content .left{
        font-size: 0.35rem;
        text-align: center;
        padding: 10px 0 20px;
    }
}

/* 点击切换 */
@media (max-width: 768px) {
    .size-guide-container {
        padding: 20px 5px;
        border-radius: 0px;
    }
    
    .size-guide-container h1 {
        font-size: 0.65rem !important;
        margin-bottom: 10px;
    }

    .size-guide{
        padding: 0;
    }
    
    .tabs {
        flex-wrap: wrap;
        gap: 10px;
    }
    
    .tab-btn {
        margin: 0;
        padding: 10px 20px;
        font-size: 14px;
        flex: 1;
        min-width: 120px;
    }
    
    .image-gallery {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .image-item {
        padding: 0;
    }
    
    .image-container {
        min-height: 150px;
    }
    
    .image-title {
        font-size: 16px;
        margin-top: 12px;
    }
    
    .image-desc {
        font-size: 13px;
    }
    
    .quote-btn {
        width: 100%;
        max-width: 280px;
        padding: 12px;
    }
}

/* Case Gallery */
@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;
    }

    .product-advantages-btn{
        margin-top: 15px;
    }
    
    .product-advantages-btn a{
        font-size: 0.4rem;
    }
}


@media (max-width: 768px) {
    .customize-container {
        padding: 30px 15px;
    }
    
    .customize-hero {
        flex-direction: column;
        padding: 0;
        gap: 30px;
        margin-bottom: 0px;
    }
    
    .customize-text-content > h2 {
        font-size: 0.65rem;
        text-align: center;
    }
    
    .customize-text-content > ul > li {
        font-size: 0.35rem;
        margin: 15px 0;
    }
    
    .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;
    }
}

@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: 10px;
  }
  
  .footer-section-title {
    font-size: 0.65rem !important;
    margin: 12px 0;
  }
  
  .footer-section-value {
    font-size: 0.35rem;
    margin-bottom: 24px;
    padding: 0 15px;
  }
  
  .blog-post-item img {
    height: 160px;
  }

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

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

/* 博客 */
@media (max-width: 768px) {
  .footer-section {
    padding: 30px 0;
    background-color: #5D84B3;
  }
  .footer-section > h1 {
    font-weight: 600;
    font-size: 0.65rem !important;
    width: 100% !important;
    color: #fff;
  }
  
  .footer-section-content {
    grid-template-columns: 1fr;
    max-width: 500px;
  }
  
  .footer-section-title {
    font-size: 20px;
    margin-bottom: 12px;
  }
  
  .footer-section-value {
    font-size: 15px;
    margin-bottom: 24px;
    padding: 0 15px;
  }
  
  .blog-post-item img {
    height: 160px;
  }

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

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

/* 轮播指示器 */
.carousel-indicators {
    margin-top: 15px;
    display: flex !important;
    justify-content: center;
    gap: 12px;
}

.indicator {
    width: 10px;
    height: 10px;
    background: #ddd;
    border-radius: 50%;
    cursor: pointer;
    transition: 0.4s;
}

.indicator.active {
    background: #001F50;
    width: 30px;
    border-radius: 5px; 
}

.goodslist-advantage-item.active {
    opacity: 1;
    transform: translateX(0);
    position: relative;
}

.goodslist-advantage-item.next {
    transform: translateX(100%);
    opacity: 0;
}

.goodslist-advantage-item.prev {
    transform: translateX(-100%);
    opacity: 0;
}
@media (max-width: 768px) {
    .carousel-indicators,
    .comments-indicators {
        display: flex !important;
    }
}

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