/*
Theme Name: domogo
Author: joke
Version: 1.0
*/
body{
    /*font-family: "Roboto", Helvetica, Arial, sans-serif;*/
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #555;
    background-color: white;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}
:root{
    --primary:#d31818;
    --yellow:#d8a72d;
}
a{color:#232323;}
a:hover{
    color:#b45b2a;
}
.mainlcolor{
    color: #b45b2a;
}
.nav-item.dropdown:hover .dropdown-menu {
    display: block;
}

/* 防止点击后菜单“粘住”不消失 */
.nav-item.dropdown .dropdown-toggle:active {
    pointer-events: none;
}

/* ===== 桌面端优化 (≥992px) ===== */
@media (min-width: 992px) {

    /* 1. 基础菜单样式 */
    .dropdown-menu {
        border-radius: 12px;
        box-shadow: 0 12px 48px rgba(0, 0, 0, 0.10), 0 4px 12px rgba(0, 0, 0, 0.06);
        border: none;
        padding: 8px 0;
        min-width: 220px;
        margin-top: 4px;                     /* 与导航项保持轻微距离 */
        background: #ffffff;
        /* 初始隐藏（用于动画） */
        display: block;                      /* 覆盖Bootstrap的display:none */
        opacity: 0;
        visibility: hidden;
        transform: translateY(-8px);
        transition: opacity 0.25s ease, transform 0.25s ease, visibility 0s linear 0.25s;
        /* 延迟隐藏，避免快速移出时闪烁 */
    }

    /* 2. 悬停时显示 */
    .nav-item.dropdown:hover .dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        transition: opacity 0.25s ease, transform 0.25s ease, visibility 0s linear 0s;
    }

    /* 3. 菜单项样式 */
    .dropdown-item {
        padding: 10px 24px;
        font-size: 0.95rem;
        font-weight: 400;
        color: #2d2d2d;
        transition: all 0.2s ease;
        border-left: 3px solid transparent;  /* 预留左边界装饰 */
    }

    .dropdown-item:hover,
    .dropdown-item:focus {
        background-color: #f5ede8;           /* 极浅陶土色，与主色呼应 */
        color: #b45b2a;
        padding-left: 32px;                  /* 向右滑动效果 */
        border-left-color: #b45b2a;          /* 主色竖条装饰 */
    }

    /* 4. 箭头旋转（可选） */
    .dropdown-toggle::after {
        transition: transform 0.25s ease;
    }
    .nav-item.dropdown:hover .dropdown-toggle::after {
        transform: rotate(180deg);
    }

    /* 5. 阻止点击时菜单“粘住” */
    .nav-item.dropdown .dropdown-toggle:active {
        pointer-events: none;
    }
}

/* ===== 移动端 (<992px) 保持原生点击行为 ===== */
@media (max-width: 991.98px) {
    .dropdown-menu {
        /* 恢复Bootstrap默认的display控制，不使用动画 */
        display: none;
        transition: none;
    }
    .dropdown-menu.show {
        display: block;
    }
    /* 取消桌面端的悬停效果，避免误触 */
    .nav-item.dropdown:hover .dropdown-menu {
        display: none;        /* 移动端不悬停显示 */
    }
    .nav-item.dropdown.show .dropdown-menu {
        display: block;       /* 点击.show时显示 */
    }
}

.price{

font-size:26px;

}



.price del{

color:#999;

margin-left:10px;

font-size:20px;

}

.btn-customer{
    --bs-btn-color: #fff;
    --bs-btn-bg: #b45b2a;
    --bs-btn-border-color: #b45b2a;
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: #b45b2a;
    --bs-btn-hover-border-color: #b45b2a;
    --bs-btn-focus-shadow-rgb: 49, 132, 253;
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: #b45b2a;
    --bs-btn-active-border-color: #b45b2a;
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: #fff;
    --bs-btn-disabled-bg: #b45b2a;
    --bs-btn-disabled-border-color: #b45b2a;
}
#mainNav .navbar-nav .nav-item .nav-link{
    text-transform: uppercase;
    font-weight: 600;
}
.carousel-caption{
    position: absolute;
    right: unset;
    bottom: 1.25rem;
    left: 15%;
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
    color: var(--bs-carousel-caption-color);
    text-align: center;
    top: 30%;
}
.squer-title{
    color:#232323;
}
/*services*/
/* 服务卡片样式 */
.service-card {
    background-color: #ffffff;
    border-radius: 28px;
    padding: 1.8rem 1rem;
    text-align: center;
    transition: all 0.2s ease;
    height: 100%;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.02), 0 2px 6px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0,0,0,0.03);
}
.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 30px -12px rgba(0, 0, 0, 0.08);
    border-color: #e9ecef;
}
.service-icon {
    font-size: 2.6rem;
    color: #2c7da0;
    margin-bottom: 1rem;
    display: inline-block;
}
.service-title {
    font-weight: 600;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #1e2a3e;
}
.service-desc {
    font-size: 0.9rem;
    color: #4a5b6e;
    line-height: 1.4;
}
/* 手风琴FAQ样式 — 干净现代，与图片风格一致 */
.accordion-faq {
    border-radius: 10px;
    overflow: hidden;
    border: none;
}
.accordion-faq .accordion-item {
    background: #ffffff;
    border: 1px solid #eef2f6;
    border-radius: 24px !important;
    margin-bottom: 1.25rem;
    overflow: hidden;
    transition: all 0.2s;
}
.accordion-faq .accordion-item:last-child {
    margin-bottom: 0;
}
.accordion-faq .accordion-header {
    background: #ffffff;
}
.accordion-faq .accordion-button {
    font-weight: 700;
    font-size: 1.2rem;
    color: #0b2b38;
    background-color: #ffffff;
    padding: 1.2rem 1.5rem;
    border: none;
    box-shadow: none;
    border-radius: 24px !important;
    transition: background 0.2s;
}
.accordion-faq .accordion-button:not(.collapsed) {
    background-color: #f9fbfd;
    color: #1a5d7a;
    box-shadow: inset 0 -1px 0 #e9ecef;
}
.accordion-faq .accordion-button:focus {
    box-shadow: none;
    border-color: transparent;
}
.accordion-faq .accordion-button::after {
    background-size: 1rem;
    filter: brightness(0.4);
}
.accordion-faq .accordion-body {
    padding: 0 1.5rem 1.5rem 1.5rem;
    color: #2c3e4e;
    font-size: 0.96rem;
    line-height: 1.55;
    border-top: none;
    background: #ffffff;
}
.accordion-faq .accordion-body ul {
    padding-left: 1.2rem;
    margin-top: 0.5rem;
}
.accordion-faq .accordion-body li {
    margin-bottom: 0.5rem;
}
.accordion-faq .accordion-body p {
    margin-bottom: 0.75rem;
}
.badge-helper {
    background: #eef2fc;
    color: #2c7da0;
    font-size: 0.75rem;
    padding: 0.2rem 0.6rem;
    border-radius: 50px;
    margin-left: 0.75rem;
    vertical-align: middle;
}
.section-title {
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: -0.01em;
    color: #0f2b35;
    position: relative;
    text-align: center;
}
.line {
    width: 50px;
    height: 3px;
    background: #b45b2a;
    margin: 15px auto;
}
@media (max-width: 768px) {
    .service-card {
        padding: 1.3rem 0.8rem;
    }
    .accordion-faq .accordion-button {
        font-size: 1rem;
        padding: 1rem 1.2rem;
    }
    .accordion-faq .accordion-body {
        padding: 0 1.2rem 1.2rem 1.2rem;
    }
    .section-padding {
        padding-top: 2rem;
        padding-bottom: 1.5rem;
    }
}
.text-muted-light {
    color: #5d6f83;
}
.footer-note {
    border-top: 1px solid #e2e8f0;
}
.icon-check {
    color: #2c7da0;
    margin-right: 0.5rem;
}
/* Company Profile 左图右文 */
.profile-img {
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
    height: 100%;
    min-height: 280px;
    background: #eef2f7;
    display: flex;
    align-items: center;
    justify-content: center;
}
.profile-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.profile-text-box {
    background: #ffffff;
    border-radius: 28px;
    padding: 1.8rem;
    height: 100%;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.02);
    border: 1px solid #ecf3f8;
}
.profile-text-box h3 {
    color: #0c4e6e;
    font-weight: 700;
    margin-bottom: 1rem;
}
/* Who We Are 卡片 (上图下文) */
.who-card {
    background: #ffffff;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid #eef2f8;
}
.who-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 30px -12px rgba(0, 0, 0, 0.12);
}
.who-img {
    height: 200px;
    background-color: #e4edf3;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}
.who-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}
.who-card:hover .who-img img {
    transform: scale(1.03);
}
.who-body {
    padding: 1.5rem;
    text-align: center;
}
.who-body h4 {
    font-weight: 700;
    color: #1a5d7a;
    margin-bottom: 0.5rem;
}
/* 展示板块: 左边长图 + 右边两行两列图片 (grid 2x2) */
.showcase-left {
    overflow: hidden;
    height: 100%;
    min-height: 380px;
    background: #eef2f7;
    box-shadow: 0 8px 16px rgba(0,0,0,0.03);
}
.showcase-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.right-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem;
    height: 100%;
}
.right-grid-item {
    overflow: hidden;
    background: #f4f9fe;
    aspect-ratio: 1 / 0.9;
    box-shadow: 0 4px 12px rgba(0,0,0,0.03);
    transition: all 0.2s;
}
.right-grid-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}
.right-grid-item:hover img {
    transform: scale(1.02);
}
/* 工厂 & 证书：一行四张图片，悬浮放大效果 (scale + 阴影) */
.img-gallery-row {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: space-between;
}
.gallery-card {
    flex: 1;
    min-width: 180px;
    background: #fafcfd;
    overflow: hidden;
    transition: all 0.25s ease;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.03);
    border: 1px solid #eef2f8;
    cursor: pointer;
}
.gallery-card-inner {
    position: relative;
    width: 100%;
    padding-top: 75%; /* 4:3比例，美观 */
    overflow: hidden;
    background: #eef2f7;
}
.gallery-card-inner img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s cubic-bezier(0.2, 0, 0, 1);
}
/* 鼠标悬浮放大图片 */
.gallery-card:hover .gallery-card-inner img {
    transform: scale(1.12);
}
.gallery-card:hover {
    box-shadow: 0 20px 28px -10px rgba(0, 0, 0, 0.2);
    border-color: #cde1ec;
}
.gallery-caption {
    padding: 0.8rem 0.5rem;
    text-align: center;
    font-weight: 500;
    font-size: 0.85rem;
    color: #1e5a7c;
    background: white;
}
@media (max-width: 992px) {
    .img-gallery-row {
        gap: 1rem;
    }
    .gallery-card {
        min-width: calc(50% - 1rem);
        flex: 0 0 calc(50% - 1rem);
    }
}
@media (max-width: 768px) {
    .gallery-card {
        min-width: 100%;
    }
    .right-grid {
        gap: 0.8rem;
    }
    .section-padding {
        padding: 2rem 0;
    }
}
.news-card {
    border: 1px solid #e0e0e0;
    background: #fff;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
}

.news-card:hover {
    /*transform: translateY(-6px);*/
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

/* 卡片图片 */
.news-card-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    background-color: #f0f0f0;
}

/* 卡片主体（内边距） */
.news-card-body {
    padding: 1.25rem;
    flex: 1 1 auto;
}

/* 卡片标题 */
.news-card-title {
    font-size: 1.1rem;
    color: #1a1a2e;
    margin-bottom: 0.6rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.news-card-title a {
    color: #1a1a2e;
    text-decoration: none;
}

.news-card-title a:hover {
    color: #2d2d44;
}

/* 卡片描述 */
.news-card-text {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #666;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    min-height: 4.5em;
    margin-bottom: 1rem;
}

/* "更多" 按钮 */
.news-card-btn {
    display: inline-block;
    padding: 6px 20px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #1a1a2e;
    background: transparent;
    border: 2px solid #1a1a2e;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.news-card-btn:hover {
    background-color: #1a1a2e;
    border-color: #1a1a2e;
    color: #fff;
    transform: translateX(4px);
}
/* ===== 文章内容样式 ===== */
.news-content {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #333;
}

.news-content h2,
.news-content h3,
.news-content h4 {
    margin-top: 2rem;
    margin-bottom: 0.8rem;
    font-weight: 700;
}

.news-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

.news-content p {
    margin-bottom: 1.2rem;
}

.news-content ul,
.news-content ol {
    padding-left: 1.5rem;
    margin-bottom: 1.2rem;
}

/* ===== 文章目录（TOC）样式 ===== */
.toc-list {
    font-size: 0.9rem;
}

.toc-list li {
    padding: 4px 0;
    border-bottom: 1px dashed #f0f0f0;
}

.toc-list li a {
    color: #1a1a2e;
    text-decoration: none;
    transition: color 0.2s;
}

.toc-list li a:hover {
    color: #0073aa;
}

.toc-list .toc-level-2 {
    padding-left: 20px;
    font-size: 0.85rem;
}

.toc-list .toc-level-3 {
    padding-left: 40px;
    font-size: 0.8rem;
    color: #666;
}

/* ===== 最近更新 ===== */
.recent-item:last-child,
.related-product:last-child {
    border-bottom: none !important;
}

.recent-item:hover,
.related-product:hover {
    background: #f8f9fa;
    border-radius: 6px;
}

/* ===== 相关产品 Sale 标签 ===== */
.badge.bg-danger {
    font-weight: 700;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 6px rgba(220, 53, 69, 0.3);
}

/* ===== 响应式适配 ===== */
@media (max-width: 991.98px) {
    .col-lg-4 {
        margin-top: 2rem;
    }
}

@media (max-width: 576px) {
    .news-content {
        font-size: 0.95rem;
    }

    .recent-item img,
    .related-product img {
        width: 50px !important;
        height: 50px !important;
    }
}
/* ===== 左侧分类导航样式 ===== */
.categories-sidebar {
    background: #ffffff;
    border-radius: 28px;
    padding: 1.5rem 1rem;
    position: sticky;
    top: 20px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.02);
    border: 1px solid #eef2f8;
    max-height: calc(100vh - 40px);
    overflow-y: auto;
}

.categories-sidebar h5 {
    font-weight: 800;
    color: #1a5d7a;
    margin-bottom: 1.2rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #2c7da0;
    display: inline-block;
}

/* ===== 分类列表 ===== */
.category-list {
    list-style: none;
    padding-left: 0;
    margin-top: 0.5rem;
}

.category-list > li {
    margin-bottom: 0.25rem;
}

/* ===== 一级分类样式 ===== */
.parent-cat {
    display: block;
    text-decoration: none;
    color: #1a2a3f;
    font-weight: 700;
    font-size: 0.95rem;
    padding: 0.55rem 0.75rem;
    border-radius: 12px;
    transition: all 0.2s ease;
    background: transparent;
}

.parent-cat:hover,
.parent-cat.active-cat {
    background: #eef5fc;
    color: #1a5d7a;
}

/* ===== 二级分类（子分类）样式 ===== */
.child-category-list {
    list-style: none;
    padding-left: 0;
    margin: 0 0 0.4rem 0;
}

.child-category-list li {
    margin-bottom: 0.1rem;
}

.child-cat {
    display: block;
    text-decoration: none;
    color: #4a6a8a;
    font-weight: 400;
    font-size: 0.85rem;
    padding: 0.35rem 0.75rem 0.35rem 1.8rem;
    border-radius: 10px;
    transition: all 0.2s ease;
    position: relative;
}

/* 二级分类前面的小横线（视觉层次） */
.child-cat::before {
    content: "—";
    position: absolute;
    left: 0.6rem;
    color: #b0c8d8;
    font-weight: 300;
}

.child-cat:hover,
.child-cat.active-child {
    background: #f0f5fa;
    color: #1a5d7a;
    font-weight: 500;
}

/* 三级分类（如果有，继续缩进） */
.child-category-list .child-category-list {
    padding-left: 0.5rem;
}

.child-category-list .child-category-list .child-cat {
    padding-left: 2.6rem;
    font-size: 0.8rem;
    color: #6a8aaa;
}

.child-category-list .child-category-list .child-cat::before {
    content: "··";
    left: 1.2rem;
    color: #c0d0e0;
}

/* ===== 当前高亮 ===== */
.active-cat {
    background: #eef5fc !important;
    color: #1a5d7a !important;
    font-weight: 700 !important;
}

.active-child {
    background: #f0f5fa !important;
    color: #1a5d7a !important;
    font-weight: 600 !important;
}

/* ===== 滚动条美化 ===== */
.categories-sidebar::-webkit-scrollbar {
    width: 4px;
}

.categories-sidebar::-webkit-scrollbar-track {
    background: #f0f4f8;
    border-radius: 10px;
}

.categories-sidebar::-webkit-scrollbar-thumb {
    background: #c0d0e0;
    border-radius: 10px;
}
.product-main-grid {
    background: #ffffff;
    border: 1px solid #eef2f8;
    overflow: hidden;
    padding: .8rem;
    margin-bottom: 2rem;
}
/* 主图区域样式 */
.gallery-area {
    text-align: center;
}
.main-image-box {
    background: #fbfdff;
    padding: 1rem;
    border: 1px solid #eef2f8;
    margin-bottom: 1.2rem;
}
.main-image {
    width: 100%;
    max-height: 380px;
    object-fit: contain;
}
/* 缩略图网格: 每行4个，自动换行多排 */
.thumb-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-top: 0.5rem;
}
.thumb-item {
    cursor: pointer;
    overflow: hidden;
    border: 2px solid transparent;
    transition: all 0.2s ease;
    background: #f8fafd;
    aspect-ratio: 1 / 1;
}
.thumb-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.thumb-item.active-thumb {
    border-color: #2c7da0;
    box-shadow: 0 4px 12px rgba(44,125,160,0.25);
}
.thumb-item:hover {
    border-color: #9cc9da;
}
/* 右侧产品详情区块 */
.product-details {
    padding-left: 1rem;
}
.product-title {
    font-size: 1.7rem;
    font-weight: 800;
    color: #144d66;
    margin-bottom: 1rem;
    line-height: 1.3;
}
.tech-badge {
    background: #eef2fc;
    padding: 0.3rem 0.9rem;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 600;
    color: #2c7da0;
    display: inline-block;
    margin-right: 0.6rem;
    margin-bottom: 0.6rem;
}
.price-tag {
    font-size: 1.9rem;
    font-weight: 800;
    color: #1c6e8f;
    margin: 0.75rem 0 0.5rem;
}
.shipping-info {
    background: #e9f4ef;
    display: inline-block;
    padding: 0.3rem 1rem;
    border-radius: 40px;
    font-size: 0.8rem;
    font-weight: 500;
    color: #2c6e4a;
}
.btn-inquiry {
    background: #2c7da0;
    border: none;
    color: white;
    font-weight: 700;
    padding: 0.7rem 1.8rem;
    border-radius: 40px;
    transition: 0.2s;
    font-size: 1rem;
}
.btn-inquiry:hover {
    background: #1f5e7a;
    color: white;
}
.btn-whatsapp {
    background-color: #25d366;
    border: none;
    color: white;
    font-weight: 600;
    padding: 0.7rem 1.4rem;
    border-radius: 40px;
}
.btn-whatsapp:hover {
    background-color: #20b859;
}
/* ===== 产品卡片样式 ===== */
.product-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #eef2f8;
    background: #ffffff;
    border-radius: 16px !important;
    overflow: hidden;
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.product-card-img-wrap {
    overflow: hidden;
    background: #f8fafc;
}

.product-card-img {
    transition: transform 0.4s ease;
}

.product-card:hover .product-card-img {
    transform: scale(1.03);
}

.product-card-title {
    line-height: 1.4;
}

.product-card-title a:hover {
    color: #2c7da0 !important;
}

.product-price {
    font-size: 1.1rem;
    color: #1a5d7a;
}

.product-card-actions .btn {
    font-size: 0.8rem;
    padding: 0.35rem 0.5rem;
}

.product-card-actions .btn-outline-primary {
    border-color: #2c7da0;
    color: #2c7da0;
}

.product-card-actions .btn-outline-primary:hover {
    background: #2c7da0;
    color: #fff;
}

.product-card-actions .btn-primary {
    background: #2c7da0;
    border-color: #2c7da0;
}

.product-card-actions .btn-primary:hover {
    background: #1f5e7a;
    border-color: #1f5e7a;
}
@media (max-width: 575.98px) {

    .product-card-img {
        height: 180px !important;
    }
}
/* ===== 推荐产品样式 ===== */

.featured-item {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid #f0f0f0;
}

.featured-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(17, 113, 58, 0.10);
    border-color: #b45b2a;
}

/* 图片 */
.featured-img {
    overflow: hidden;
    background: #f8fafc;
}

.featured-img img {
    width: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.featured-item:hover .featured-img img {
    transform: scale(1.04);
}

/* 主体：flex 左右对齐 */
.featured-body {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    padding: 12px 16px 14px 16px;
    flex: 1;
    gap: 10px;
}

/* 左侧标题 */
.featured-title {
    flex: 1;
    display: flex;
    align-items: center;
    min-width: 0;
}

.featured-title a {
    font-weight: 600;
    font-size: 0.95rem;
    color: #1a2a3f;
    text-decoration: none;
    transition: color 0.2s;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.4;
}

.featured-title a:hover {
    color: #b45b2a;
}

/* 右侧：价格 + 按钮（上下排列） */
.featured-right {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-end;
    flex-shrink: 0;
    min-width: 70px;
}

.featured-price {
    font-weight: 700;
    font-size: 1rem;
    color: #b45b2a;
    white-space: nowrap;
    line-height: 1.4;
}

.featured-right .btn {
    border-color: #b45b2a;
    color: #b45b2a;
    font-size: 0.7rem;
    font-weight: 600;
    padding: 4px 14px;
    transition: all 0.3s ease;
    line-height: 1.5;
    margin-top: 4px;
}

.featured-right .btn:hover {
    background: #b45b2a;
    color: #ffffff;
    border-color: #b45b2a;
}

/* ===== 5列布局 ===== */
.col-lg-2-4 {
    flex: 0 0 auto;
    width: 20%;
}

@media (max-width: 991.98px) {
    .col-lg-2-4 {
        flex: 0 0 50%;
        max-width: 50%;
    }
    .col-lg-3 {
        flex: 0 0 50%;
        max-width: 50%;
    }
}

@media (max-width: 575.98px) {
    .featured-img img {
        height: 180px;
    }
}
/* ===== 对比版块样式 ===== */

/* 卡片容器 */
.comparison-card {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid #f0f0f0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.comparison-card:hover {
    box-shadow: 0 12px 35px rgba(17, 113, 58, 0.10);
    border-color: #b45b2a;
}

/* ===== 双图区域 ===== */
.comparison-images {
    display: flex;
    align-items: center;
    gap: 0;
    padding: 12px 12px 0 12px;
}

.comparison-item {
    flex: 1;
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}

.comparison-item img {
    width: 100%;
    object-fit: cover;
    display: block;
}

/* Before / After 标签 */
.badge-label {
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    padding: 3px 16px;
    border-radius: 20px;
    text-transform: uppercase;
    color: #ffffff;
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(4px);
}

/* ===== 底部：图标 + 标题 ===== */
.comparison-footer {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 16px 16px 16px;
    flex: 1;
}

.comparison-icon {
    flex-shrink: 0;
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(17, 113, 58, 0.10);
    border-radius: 5px;
    color: #b45b2a;
    font-size: 1.1rem;
    transition: background 0.3s ease;
}
.comparison-icon img{
    width: 100px;
    height: 100px;
}

.comparison-title {
    flex: 1;
    min-width: 0;
}

.comparison-title h6 {
    font-weight: 700;
    font-size: 0.95rem;
    color: #1a2a3f;
    margin-bottom: 1px;
}

.comparison-title p {
    font-size: 0.75rem;
    color: #8a9aa8;
}

/* ===== Swiper 样式 ===== */
.comparisonSwiper {
    padding-bottom: 50px;
}

.swiper-slide {
    height: auto;
}

/* 分页点 */
.swiper-pagination-bullet {
    background: #b45b2a;
    opacity: 0.3;
}

.swiper-pagination-bullet-active {
    opacity: 1;
    background: #b45b2a;
}

/* 导航按钮 */
.swiper-button-next,
.swiper-button-prev {
    color: #b45b2a;
    background: #ffffff;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: #b45b2a;
    color: #ffffff;
    box-shadow: 0 6px 20px rgba(17, 113, 58, 0.25);
}

.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 1.2rem;
    font-weight: 700;
}

/* ===== 响应式 ===== */
@media (max-width: 991.98px) {
    .swiper-slide {
        width: 50% !important;
    }
}

@media (max-width: 575.98px) {
    .swiper-slide {
        width: 100% !important;
    }
    .badge-label {
        font-size: 0.55rem;
        padding: 2px 12px;
        bottom: 6px;
    }
}
/* ===== 新闻推荐版块样式 ===== */

/* ===== 左侧主新闻 ===== */
.news-main {
    background: #ffffff;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
    border: 1px solid #f0f0f0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.news-main:hover {
    box-shadow: 0 12px 30px rgba(17, 113, 58, 0.08);
    border-color: #b45b2a;
}

.news-main-img {
    position: relative;
    overflow: hidden;
    background: #f8fafc;
}

.news-main-img img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: transform 0.5s ease;
}



.news-main-body {
    padding: 18px 20px 20px 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.news-main-title {
    font-weight: 700;
    font-size: 1.25rem;
    color: #1a2a3f;
    line-height: 1.4;
    margin-bottom: 6px;
    transition: color 0.2s;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-main:hover .news-main-title {
    color: #b45b2a;
}

.news-main-excerpt {
    margin-top: 6px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    color: #6a7a8a;
}

/* ===== 右侧新闻列表 ===== */
.news-side-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    height: 100%;
}

.news-side-item {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
    border: 1px solid #f0f0f0;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    padding: 10px;
    flex: 1;
}

.news-side-item:hover {
    transform: translateX(4px);
    box-shadow: 0 6px 20px rgba(17, 113, 58, 0.06);
    border-color: #b45b2a;
}

.news-side-item .d-flex {
    height: 100%;
}

.news-side-img {
    flex-shrink: 0;
    overflow: hidden;
    background: #f8fafc;
}

.news-side-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.news-side-item:hover .news-side-img img {
    transform: scale(1.05);
}

.news-side-title {
    font-weight: 600;
    font-size: 0.9rem;
    color: #1a2a3f;
    line-height: 1.4;
    margin-bottom: 2px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.2s;
}

.news-side-item:hover .news-side-title {
    color: #b45b2a;
}

/* ===== 元信息统一样式 ===== */
.news-meta {
    font-size: 0.75rem;
    color: #9aaab8;
}

.news-meta i {
    width: 16px;
    text-align: center;
}

/* ===== 响应式 ===== */
@media (max-width: 991.98px) {
    .news-main-img img {
        height: 220px;
    }

    .news-side-list {
        gap: 12px;
    }

    .news-side-item {
        padding: 8px;
    }

    .news-side-img {
        width: 100px;
        height: 70px;
    }
}

@media (max-width: 575.98px) {
    .news-main-img img {
        height: 180px;
    }

    .news-main-title {
        font-size: 1.05rem;
    }

    .news-main-body {
        padding: 14px 16px 16px 16px;
    }

    .news-side-item {
        padding: 8px;
    }

    .news-side-img {
        width: 80px;
        height: 60px;
    }

    .news-side-title {
        font-size: 0.8rem;
    }

    .news-side-content .news-meta {
        font-size: 0.65rem;
    }
}
/* ===== 公司介绍板块样式 ===== */

/* ===== 第一排：图片区域 ===== */
.about-image-wrap {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
}

.about-image-wrap img {
    width: 100%;
    height: 380px;
    object-fit: cover;
}

.about-image-badge {
    position: absolute;
    bottom: 24px;
    left: 24px;
}

.about-image-badge .badge {
    background: #b45b2a !important;
    font-size: 0.85rem;
    font-weight: 600;
    padding: 10px 24px;
    box-shadow: 0 4px 16px rgba(17, 113, 58, 0.30);
}

/* 右侧内容 */
.about-content h2 {
    font-size: 2rem;
    line-height: 1.2;
}

.about-content .btn-primary {
    background: #b45b2a;
    border-color: #b45b2a;
    transition: all 0.3s ease;
}

.about-content .btn-primary:hover {
    background: #232323;
    border-color: #232323;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(17, 113, 58, 0.25);
}

/* ===== 第二排：统计数字（左图标 + 右文字） ===== */
.stats-item {
    background: #ffffff;
    border-radius: 16px;
    padding: 20px 24px;
    border: 1px solid #f0f0f0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    align-items: center;
    gap: 18px;
}

.stats-item:hover {
    box-shadow: 0 12px 30px rgba(17, 113, 58, 0.06);
    border-color: #b45b2a;
}

/* 左侧图标 */
.stats-icon {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(17, 113, 58, 0.08);
    border-radius: 50%;
    font-size: 1.5rem;
    color: #232323;
    transition: background 0.3s ease;
}

.stats-item:hover .stats-icon {
    background: rgba(17, 113, 58, 0.16);
}

/* 右侧信息 */
.stats-info {
    flex: 1;
    min-width: 0;
}

.stats-number {
    font-size: 2rem;
    font-weight: 800;
    color: #232323;
    line-height: 1.2;
}

.stats-number span {
    color: #232323;
    font-size: 1.6rem;
}

.stats-label {
    font-size: 0.85rem;
    color: #6a7a8a;
    font-weight: 500;
    margin-top: -2px;
}

/* ===== 响应式 ===== */
@media (max-width: 575.98px) {
    .stats-item {
        padding: 16px 18px;
        gap: 14px;
    }

    .stats-icon {
        width: 44px;
        height: 44px;
        font-size: 1.2rem;
    }

    .stats-number {
        font-size: 1.5rem;
    }

    .stats-number span {
        font-size: 1.2rem;
    }

    .stats-label {
        font-size: 0.75rem;
    }
}



/* ===== 第三排：服务图标 ===== */
.service-item {
    padding: 18px 10px 14px 10px;
    background: #ffffff;
    border-radius: 14px;
    border: 1px solid #f0f0f0;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.service-item:hover {
    box-shadow: 0 8px 24px rgba(17, 113, 58, 0.06);
    border-color: #b45b2a;
}

.service-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 10px auto;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(17, 113, 58, 0.15);
    border-radius: 50%;
    font-size: 1.4rem;
    transition: all 0.3s ease;
}

.service-item:hover .service-icon {
    background: #b45b2a;
    border-color: #b45b2a;
    color: #ffffff;
}

.service-label {
    font-size: 0.8rem;
    font-weight: 600;
    color: #1a2a3f;
    letter-spacing: 0.3px;
}

/* ===== 响应式 ===== */
@media (max-width: 991.98px) {
    .about-image-wrap img {
        height: 280px;
    }

    .about-content h2 {
        font-size: 1.6rem;
    }

    .stats-number {
        font-size: 2rem;
    }
}

@media (max-width: 575.98px) {
    .about-image-wrap img {
        height: 200px;
    }

    .about-image-badge .badge {
        font-size: 0.7rem;
        padding: 6px 16px;
    }

    .about-content h2 {
        font-size: 1.3rem;
    }

    .stats-item {
        padding: 20px 14px;
    }

    .stats-number {
        font-size: 1.6rem;
    }

    .stats-icon {
        width: 44px;
        height: 44px;
        font-size: 1.2rem;
    }

    .service-icon {
        width: 52px;
        height: 52px;
        font-size: 1.1rem;
    }

    .service-label {
        font-size: 0.7rem;
    }
}
/* ===== 板块一：Quality & System Certification ===== */
.certification-section {
    background: #f8fafc;
}

.cert-content {
    padding-right: 20px;
}

/* 认证图标 */
.cert-badges {
    margin-top: 8px;
}

.cert-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    background: #ffffff;
    padding: 10px 18px;
    border-radius: 12px;
    border: 1px solid #f0f0f0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    min-width: 70px;
}

.cert-badge:hover {
    box-shadow: 0 8px 24px rgba(17, 113, 58, 0.08);
    border-color: #b45b2a;
}

.cert-badge img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.cert-badge span {
    font-size: 0.7rem;
    font-weight: 600;
    color: #1a2a3f;
}

/* 右侧大图 */
.cert-image-wrap {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
}

.cert-image-wrap img {
    width: 100%;
    height: 380px;
    object-fit: cover;
}

.cert-image-badge {
    position: absolute;
    bottom: 24px;
    right: 24px;
}

.cert-image-badge .badge {
    background: #b45b2a !important;
    font-size: 0.85rem;
    font-weight: 600;
    padding: 10px 24px;
    box-shadow: 0 4px 16px rgba(17, 113, 58, 0.30);
}


/* ===== 板块二：Production Workshop ===== */
.workshop-section {
    background: #ffffff;
}

/* Swiper 容器 */
.workshopSwiper {
    padding: 10px 0 50px 0;
}

.swiper-slide {
    height: auto;
}

/* 车间卡片 */
.workshop-item {
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.workshop-item:hover {
    transform: scale(1.02);
    box-shadow: 0 12px 32px rgba(17, 113, 58, 0.10);
}

.workshop-item img {
    width: 100%;
    object-fit: cover;
    display: block;
}

/* 图片遮罩文字 */
.workshop-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 16px 20px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.65));
    color: #ffffff;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
}

.workshop-overlay span {
    display: block;
}

/* ===== Swiper 导航样式 ===== */
.workshopSwiper .swiper-pagination-bullet {
    background: #b45b2a;
    opacity: 0.3;
}

.workshopSwiper .swiper-pagination-bullet-active {
    opacity: 1;
    background: #b45b2a;
}

.workshopSwiper .swiper-button-next,
.workshopSwiper .swiper-button-prev {
    color: #b45b2a;
    background: #ffffff;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.workshopSwiper .swiper-button-next:hover,
.workshopSwiper .swiper-button-prev:hover {
    background: #b45b2a;
    color: #ffffff;
    box-shadow: 0 6px 20px rgba(17, 113, 58, 0.25);
}

.workshopSwiper .swiper-button-next::after,
.workshopSwiper .swiper-button-prev::after {
    font-size: 1.1rem;
    font-weight: 700;
}


/* ===== 响应式 ===== */
@media (max-width: 991.98px) {
    .cert-content {
        padding-right: 0;
    }

    .cert-image-wrap img {
        height: 280px;
    }

    .workshop-item img {
        height: 200px;
    }
}

@media (max-width: 575.98px) {
    .cert-image-wrap img {
        height: 200px;
    }

    .cert-image-badge {
        bottom: 14px;
        right: 14px;
    }

    .cert-image-badge .badge {
        font-size: 0.7rem;
        padding: 6px 14px;
    }

    .cert-badge {
        padding: 8px 12px;
        min-width: 56px;
    }

    .cert-badge img {
        width: 32px;
        height: 32px;
    }

    .cert-badge span {
        font-size: 0.6rem;
    }

    .workshop-item img {
        height: 160px;
    }

    .workshop-overlay {
        font-size: 0.8rem;
        padding: 12px 16px;
    }
}
/* ===== 客户评价板块样式 ===== */
/* ===== 客户评价板块样式 ===== */

.testimonials-section {
    background: #f8fafc;
    padding: 60px 0;
}

/* ===== Swiper 容器 ===== */
.testimonialsSwiper {
    padding: 10px 0 60px 0;
}

.swiper-slide {
    height: auto;
}

/* ===== 评价卡片 ===== */
.testimonial-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 28px 24px 22px 24px;
    border: 1px solid #f0f0f0;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.03);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.testimonial-card:hover {
    box-shadow: 0 12px 32px rgba(17, 113, 58, 0.06);
    border-color: #b45b2a;
}

/* ===== 头像 ===== */
.testimonial-avatar {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    margin-bottom: 12px;
    box-shadow: 0 4px 12px rgba(17, 113, 58, 0.12);
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ===== 名字 ===== */
.testimonial-name {
    font-weight: 700;
    font-size: 1rem;
    color: #1a2a3f;
    margin-bottom: 2px;
}

/* ===== 时间 ===== */
.testimonial-date {
    font-size: 0.75rem;
    color: #9aaab8;
    margin-bottom: 8px;
}

/* ===== 星级 + 认证 ===== */
.testimonial-rating {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    flex-wrap: wrap;
    justify-content: center;
}

.testimonial-rating .stars {
    display: flex;
    gap: 2px;
}

.testimonial-rating .stars i {
    color: #f5a623;
    font-size: 0.85rem;
}

.verified-badge {
    font-size: 0.7rem;
    font-weight: 600;
    color: #b45b2a;
    background: rgba(17, 113, 58, 0.08);
    padding: 2px 12px;
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.verified-badge i {
    font-size: 0.7rem;
}

/* ===== 评价内容 ===== */
.testimonial-text-wrapper {
    flex: 1;
    width: 100%;
    overflow: hidden;
    margin-bottom: 6px;
}

.testimonial-text {
    font-size: 0.85rem;
    color: #4a5a6a;
    line-height: 1.7;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin: 0;
    transition: all 0.3s ease;
}

/* ===== 展开状态 ===== */
.testimonial-text.expanded {
    -webkit-line-clamp: unset;
    display: block;
}

/* ===== Read More 按钮 ===== */
.read-more-btn {
    font-size: 0.8rem;
    font-weight: 600;
    color: #b45b2a;
    text-decoration: none;
    display: inline-block;
    margin-top: 4px;
    transition: color 0.2s;
}

.read-more-btn:hover {
    color: #0d5a2e;
    text-decoration: underline;
}

/* ===== Swiper 导航样式 ===== */
.testimonialsSwiper .swiper-pagination-bullet {
    background: #b45b2a;
    opacity: 0.3;
}

.testimonialsSwiper .swiper-pagination-bullet-active {
    opacity: 1;
    background: #b45b2a;
}

.testimonialsSwiper .swiper-button-next,
.testimonialsSwiper .swiper-button-prev {
    color: #b45b2a;
    background: #ffffff;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.testimonialsSwiper .swiper-button-next:hover,
.testimonialsSwiper .swiper-button-prev:hover {
    background: #b45b2a;
    color: #ffffff;
    box-shadow: 0 6px 20px rgba(17, 113, 58, 0.25);
}

.testimonialsSwiper .swiper-button-next::after,
.testimonialsSwiper .swiper-button-prev::after {
    font-size: 1.1rem;
    font-weight: 700;
}

/* ===== 响应式 ===== */
@media (max-width: 575.98px) {
    .testimonial-card {
        padding: 20px 16px 18px 16px;
    }

    .testimonial-avatar {
        width: 60px;
        height: 60px;
    }

    .testimonial-name {
        font-size: 0.9rem;
    }

    .testimonial-text {
        font-size: 0.8rem;
        -webkit-line-clamp: 3;
    }

    .testimonialsSwiper .swiper-button-next,
    .testimonialsSwiper .swiper-button-prev {
        display: none;
    }
}











/* ================= FOOTER ================= */

.footer{
    background:rgba(48, 48, 48, 1);;
    padding-top:80px;
    color:#ffffff;
}
.footer ul{
    list-style:none;
    padding:0;
}

.footer li{
    margin-bottom:10px;
}
.footer li a{
    color:#fff;
}
.footer a{
    color:#fff;
    text-decoration: none;
}
.footer-bottom{
    background:#444;
    color:#fff;
    padding:15px;
    margin-top:60px;
    font-size:14px;
}

.carousel-indicators .active{
    background-color: #b45b2a;
}
.global-title {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    position: relative;
    display: inline-block;
}
.global-title:after {
    content: '';
    display: block;
    width: 70px;
    height: 4px;
    background: #b45b2a;
    border-radius: 4px;
    margin-top: 8px;
}
/* 交替卡片样式 (精致柔和卡片) */
.alternate-card {
    background: #ffffff;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 12px 28px -8px rgba(0, 0, 0, 0.04);
    margin-bottom: 2.5rem;
}
.alternate-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 36px -12px rgba(0, 0, 0, 0.12);
    border-color: #dfe9f0;
}
.img-col {
    padding: 0;
    overflow: hidden;
    min-height: 300px;
}
.img-col img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.alternate-card:hover .img-col img {
    transform: scale(1.02);
}
.content-col {
    padding: 2rem 2.2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #fff;
    height: 100%;
}
.content-title {
    font-size: 1.9rem;
    font-weight: 800;
    margin-bottom: 1rem;
}
.content-desc {
    color: #2c4c6e;
    line-height: 1.55;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}
.btn-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    border: 2px solid #b45b2a;
    padding: 0.6rem 1.5rem;
    border-radius: 40px;
    font-weight: 700;
    color: #232323;
    text-decoration: none;
    transition: 0.25s;
    width: fit-content;
    font-size: 0.9rem;
}
.btn-more i {
    transition: transform 0.2s;
}
.btn-more:hover {
    background: #b45b2a;
    color: white;
    border-color: #b45b2a;
}
.btn-more:hover i {
    transform: translateX(4px);
    color: white;
}
/* 头部简介区域 */
.hero-brand {
    background: #f8fbfe;
    border-radius: 32px;
    padding: 1.5rem 2rem;
    margin-bottom: 2rem;
}
/* 页脚样式 */
.footer-custom {
    background-color: #f7fafc;
    border-radius: 32px;
    margin-top: 2rem;
}
@media (max-width: 768px) {
    .content-title {
        font-size: 1.5rem;
    }
    .content-col {
        padding: 1.5rem;
    }
    .alternate-card {
        margin-bottom: 1.5rem;
    }
    .global-title {
        font-size: 1.8rem;
    }
}
.badge-feature {
    background: #eef2fc;
    color: #2c7da0;
    border-radius: 50px;
    padding: 0.2rem 1rem;
    font-size: 0.7rem;
    display: inline-block;
    margin-bottom: 0.8rem;
}
#alternating-sections .alternate-card:nth-child(even) {
    flex-direction: row-reverse;
}
.breadcrumb {
    background: #ffffff;
    padding: 10px 24px;
    border-radius: 8px;
    border: 1px solid #e9ecf0;
    box-shadow: 0 1px 4px rgba(0,0,0,0.04);
    font-size: 14px;
    color: #3d5166;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px 12px;
}
.breadcrumb a {
    color: #0073aa;
    text-decoration: none;
}
.breadcrumb a:hover {
    text-decoration: underline;
    color: #005a87;
}
.breadcrumb .current-item {
    font-weight: 500;
    color: #1d2b3a;
}
.breadcrumb .sep {
    color: #bcc9d6;
    font-weight: 300;
}
/* 底部询盘区域背景（微渐变，医美常用蓝灰调） */
.inquiry-section {
    background: linear-gradient(135deg, #f8faff 0%, #eef2f7 100%);
    border-top: 1px solid rgba(0,0,0,0.05);
}

/* 联系方式图标颜色可微调 */
.contact-info i {
    font-size: 1.1rem;
}

/* 卡片内文字链接悬停 */
.contact-info a:hover,
.inquiry-form a:hover {
    color: #0d6efd !important;
}

/* 表单输入框焦点样式 */
.inquiry-form .form-control:focus {
    border-color: #0d6efd;
    box-shadow: 0 0 0 0.25rem rgba(13,110,253,0.15);
}

/* 提交按钮悬停 */
.inquiry-form .btn-primary {
    background: #0d6efd;
    border: none;
    transition: all 0.3s;
}
.inquiry-form .btn-primary:hover {
    background: #0b5ed7;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(13,110,253,0.25);
}

/* 移动端调整 */
@media (max-width: 767.98px) {
    .inquiry-section .row > div {
        margin-bottom: 1.5rem;
    }
    .contact-info, .inquiry-form {
        padding: 1.5rem !important;
    }
}