/* ===== 最终版V3 - 清爽移动端 · 无边框图标 · 更多留白 ===== */
:root {
    /* 品牌三色 */
    --primary: #008e4f;
    --primary-dark: #006f3d;
    --primary-light: #e8f5e9;
    --primary-soft: rgba(0, 142, 79, 0.05);
    --secondary: #075199;
    --accent: #be0600;

    /* 中性色 */
    --bg-white: #ffffff;
    --bg-light: #f8fafc;
    --bg-gray: #f1f5f9;
    --text-dark: #1e293b;
    --text-gray: #475569;
    --text-light: #64748b;
    --border-light: #e2e8f0;
    --border-medium: #cbd5e1;

    /* 阴影 */
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 10px 25px -5px rgba(0, 0, 0, 0.08);
    --shadow-green: 0 8px 20px rgba(0, 142, 79, 0.2);

    /* 圆角 */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --radius-full: 9999px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: var(--bg-light);
    color: var(--text-dark);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

/* ===== 头部包装 ===== */
.header-wrapper {
    background-color: var(--bg-white);
    width: 100%;
    border-bottom: 1px solid var(--border-light);
}

.header {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}

.header__container {
    display: flex;
    flex-direction: column;
    width: 100%;
}

/* ===== Logo栏 - 上下间距加大 ===== */
.header__top {
    width: 100%;
    background-color: var(--bg-white);
}

.header__top-inner {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.5rem 2rem;
    gap: 2rem;
}

/* Logo - 缩小版 */
.logo {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 180px;
    height: 80px;
    flex-shrink: 0;
    transition: opacity 0.2s;
    border-radius: var(--radius-md);
    padding: 0.3rem;
}

.logo:hover {
    opacity: 0.9;
}

.logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* 右侧区域 - 修复垂直居中对齐 */
.header__right {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex: 1;
    justify-content: flex-end;
}

/* 联系信息 */
.header__contact {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    height: fit-content;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.5rem 1rem;
    background-color: var(--bg-light);
    border-radius: var(--radius-full);
    color: var(--text-gray);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 400;
    transition: all 0.2s;
    border: 1px solid transparent;
    line-height: 1.2;
}

.contact-item:hover {
    background-color: white;
    border-color: var(--border-light);
    box-shadow: var(--shadow-sm);
    transform: translateY(-1px);
}

.contact-item.email:hover {
    color: var(--accent);
}

.contact-item.whatsapp:hover {
    color: var(--primary);
}

.contact-item .icon {
    font-size: 1rem;
}

/* ===== 修复头部搜索样式 ===== */
.search-wrapper {
    display: flex;
    align-items: center;
    background-color: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-full);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    min-width: 400px;
    height: 42px;
}

.search-wrapper form {
    display: flex;
    width: 100%;
    height: 100%;
}

/* 分类下拉框 - 修复 */
.category-select {
    position: relative;
    min-width: 140px;
    background-color: var(--bg-light);
    border-right: 1px solid var(--border-light);
    height: 100%;
}

.category-select select {
    appearance: none;
    -webkit-appearance: none;
    width: 100%;
    height: 100%;
    padding: 0 1.5rem 0 1rem;
    border: none;
    background: transparent;
    font-family: 'Poppins', sans-serif;
    font-size: 0.85rem;
    color: var(--text-dark);
    cursor: pointer;
    outline: none;
    font-weight: 400;
}

.select-arrow {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-light);
    font-size: 0.8rem;
    pointer-events: none;
}

/* 搜索框 - 修复 */
.search-box {
    display: flex;
    align-items: center;
    flex: 1;
    background-color: var(--bg-white);
    height: 100%;
}

.search-box input {
    flex: 1;
    background: transparent;
    border: none;
    padding: 0 1rem;
    font-family: 'Poppins', sans-serif;
    font-size: 0.85rem;
    color: var(--text-dark);
    outline: none;
    height: 100%;
}

.search-box input::placeholder {
    color: var(--text-light);
    font-weight: 300;
}

.search-box button {
    background: transparent;
    border: none;
    width: 42px;
    height: 42px;
    color: var(--primary);
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.search-box button:hover {
    color: var(--primary-dark);
    transform: scale(1.1);
}

.search-box button i {
    font-size: 1rem;
}

/* 移动端按钮 - 无边框，加粗三横线 */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    cursor: pointer;
    gap: 6px;
    padding: 0;
}

.mobile-menu-toggle .bar {
    display: block;
    width: 26px;
    height: 3px;
    background-color: var(--text-dark);
    transition: all 0.2s;
    border-radius: 3px;
}

.mobile-menu-toggle:hover .bar {
    background-color: var(--primary);
}

/* ===== 导航菜单区域 - PC端显示 ===== */
.nav-wrapper {
    background-color: var(--primary);
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    box-shadow: var(--shadow-green);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.nav {
    display: flex;
    align-items: center;
    height: 48px;
    gap: 0.15rem;
}

.nav__item {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
}

.nav__link {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 0 1.3rem;
    height: 100%;
    color: white;
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 0.9rem;
    letter-spacing: 0.3px;
    transition: all 0.2s;
    border-bottom: 3px solid transparent;
    white-space: nowrap;
}

.nav__link i.nav__arrow {
    font-size: 0.7rem;
    opacity: 0.8;
    transition: transform 0.2s;
}

.nav__item:hover .nav__link {
    background-color: rgba(255, 255, 255, 0.1);
    border-bottom-color: white;
}

.nav__item:hover .nav__arrow {
    transform: rotate(180deg);
}

/* 下拉菜单 */
.nav__dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    border-radius: var(--radius-md);
    padding: 0.4rem 0;
    min-width: 220px;
    display: none;
    list-style: none;
    box-shadow: var(--shadow-lg);
    z-index: 1000;
    border: 1px solid var(--border-light);
}

.nav__dropdown--wide {
    min-width: 280px;
}

.nav__item:hover .nav__dropdown {
    display: block;
    animation: fadeIn 0.2s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-5px); }
    to { opacity: 1; transform: translateY(0); }
}

.nav__dropdown li a {
    display: block;
    padding: 0.5rem 1.5rem;
    color: var(--text-gray);
    text-decoration: none;
    font-size: 0.85rem;
    transition: all 0.2s;
}

.nav__dropdown li a:hover {
    background-color: var(--primary-light);
    color: var(--primary);
    padding-left: 2rem;
}

.nav__dropdown-highlight a {
    background-color: var(--primary-soft);
    border-left: 3px solid var(--primary);
}

/* ===== 主内容区域 ===== */
.main-content {
    max-width: 1400px;
    margin: 2rem auto;
    padding: 0 2rem;
}

/* 横幅区域 */
.hero {
    margin-bottom: 2.5rem;
    padding: 1.5rem 0;
}

.hero__badge {
    display: inline-block;
    padding: 0.2rem 1rem;
    background-color: var(--primary-soft);
    color: var(--primary);
    font-size: 0.8rem;
    font-weight: 500;
    border-radius: var(--radius-full);
    margin-bottom: 1rem;
    border: 1px solid rgba(0, 142, 79, 0.2);
}

.hero h1 {
    font-size: 3rem;
    font-weight: 600;
    line-height: 1.1;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.hero h1 span {
    color: var(--primary);
    font-weight: 300;
}

.hero p {
    font-size: 1rem;
    color: var(--text-light);
    max-width: 600px;
    margin-bottom: 1.5rem;
}

.hero__stats {
    display: flex;
    gap: 2rem;
}

.stat-number {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary);
    line-height: 1.2;
}

.stat-label {
    font-size: 0.8rem;
    color: var(--text-light);
}

/* 快捷工具栏 */
.toolbar {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.toolbar-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.2rem;
    background-color: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-full);
    color: var(--text-gray);
    text-decoration: none;
    font-size: 0.85rem;
    transition: all 0.2s;
}

.toolbar-item i {
    color: var(--primary);
}

.toolbar-item:hover, .toolbar-item.active {
    background-color: var(--primary);
    border-color: var(--primary);
    color: white;
}

.toolbar-item:hover i, .toolbar-item.active i {
    color: white;
}

/* 章节标题 */
.section-title {
    text-align: center;
    margin-bottom: 2rem;
}

.section-title h2 {
    font-size: 2rem;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 0.3rem;
}

.section-title .green-text {
    color: var(--primary);
    font-weight: 600;
}

.section-title p {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* 产品卡片网格 */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.feature-card {
    background: var(--bg-white);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-light);
    transition: all 0.3s;
    position: relative;
}

.feature-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
    border-color: var(--primary);
}

.feature-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background-color: var(--accent);
    color: white;
    font-size: 0.7rem;
    padding: 0.2rem 0.6rem;
    border-radius: var(--radius-full);
}

.feature-icon {
    width: 48px;
    height: 48px;
    background-color: var(--primary-soft);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.feature-icon i {
    font-size: 1.5rem;
    color: var(--primary);
}

.feature-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.2rem;
}

.feature-spec {
    font-size: 0.8rem;
    color: var(--primary);
    font-weight: 500;
    margin-bottom: 0.3rem;
}

.feature-desc {
    font-size: 0.8rem;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.feature-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}

.feature-price {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
}

.feature-link {
    color: var(--primary);
    text-decoration: none;
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.feature-link i {
    transition: transform 0.2s;
}

.feature-link:hover i {
    transform: translateX(3px);
}

/* ===== 移动端左侧菜单 ===== */
.menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1999;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.menu-overlay.active {
    display: block;
    opacity: 1;
}

.mobile-menu {
    position: fixed;
    top: 0;
    left: -320px;
    width: 300px;
    height: 100%;
    background-color: var(--bg-white);
    z-index: 2000;
    overflow-y: auto;
    transition: left 0.3s ease;
    box-shadow: var(--shadow-lg);
}

.mobile-menu.open {
    left: 0;
}

.mobile-menu__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    border-bottom: 1px solid var(--border-light);
}

.mobile-menu__logo img {
    width: 140px;
    height: auto;
}

.mobile-menu__close {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: none;
    background-color: var(--bg-light);
    color: var(--text-dark);
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-menu__close:hover {
    background-color: var(--primary);
    color: white;
}

.mobile-menu__search {
    padding: 1rem;
    border-bottom: 1px solid var(--border-light);
}

.mobile-category-select {
    margin-bottom: 0.5rem;
}

.mobile-category-select select {
    width: 100%;
    padding: 0.6rem;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    font-family: 'Poppins', sans-serif;
}

.mobile-search-box {
    display: flex;
    gap: 0.5rem;
}

.mobile-search-box input {
    flex: 1;
    padding: 0.6rem;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    font-family: 'Poppins', sans-serif;
}

.mobile-search-box button {
    width: 40px;
    background-color: var(--primary);
    border: none;
    border-radius: var(--radius-md);
    color: white;
    cursor: pointer;
}

.mobile-menu__nav {
    padding: 1rem;
}

.mobile-nav__item {
    border-bottom: 1px solid var(--border-light);
}

.mobile-nav__link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 0;
    color: var(--text-dark);
    text-decoration: none;
    font-size: 0.95rem;
    cursor: pointer;
}

.mobile-nav__arrow {
    transition: transform 0.2s;
}

.mobile-nav__item.active .mobile-nav__arrow {
    transform: rotate(180deg);
}

.mobile-nav__dropdown {
    display: none;
    list-style: none;
    padding-left: 1rem;
    padding-bottom: 0.5rem;
}

.mobile-nav__item.active .mobile-nav__dropdown {
    display: block;
}

.mobile-nav__dropdown li a {
    display: block;
    padding: 0.5rem 0;
    color: var(--text-light);
    text-decoration: none;
    font-size: 0.85rem;
}

.mobile-menu__contact {
    padding: 1rem;
    border-top: 1px solid var(--border-light);
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.mobile-menu__contact a {
    color: var(--text-gray);
    text-decoration: none;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.mobile-menu__contact i {
    width: 20px;
    color: var(--primary);
}

/* ===== 响应式 ===== */
@media screen and (max-width: 1200px) {
    .feature-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .search-wrapper {
        min-width: 350px;
    }
}

@media screen and (max-width: 1024px) {
    /* 移动端隐藏PC导航 */
    .nav-wrapper {
        display: none;
    }

    .header__top-inner {
        padding: 1.2rem 1.5rem;
    }

    .header__right {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    /* Logo移动端进一步缩小 */
    .logo {
        width: 140px;
        height: 60px;
    }

    .toolbar {
        justify-content: center;
    }

    .search-wrapper {
        min-width: 280px;
    }
}

@media screen and (max-width: 768px) {
    .search-wrapper {
        min-width: 240px;
    }

    .category-select {
        min-width: 100px;
    }
}

@media screen and (max-width: 640px) {
    .header__top-inner {
        padding: 1rem 1rem;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero h1 span {
        display: block;
        margin-left: 0;
    }

    .hero__stats {
        gap: 1rem;
    }

    .feature-grid {
        grid-template-columns: 1fr;
    }

    .section-title h2 {
        font-size: 1.5rem;
    }

    .search-wrapper {
        min-width: 200px;
    }

    .category-select {
        min-width: 80px;
    }

    .category-select select {
        padding: 0 1.2rem 0 0.6rem;
        font-size: 0.8rem;
    }
}

/* ===== 底部Footer - 方案一：经典四栏式 ===== */
.footer {
    background-color: #1e293b;
    color: #cbd5e1;
    margin-top: 3rem;
    padding: 3rem 0 1.5rem;
    font-family: 'Poppins', sans-serif;
}

.footer__container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* 主底部 - 四栏网格 */
.footer__main {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2.5rem;
    margin-bottom: 2.5rem;
}

/* 每列样式 */
.footer__col {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

/* Logo */
.footer__logo {
    margin-bottom: 0.5rem;
}

.footer__logo img {
    width: 100px;
    height: auto;
    border-radius: 8px;
    padding: 0.3rem;
}

/* 公司描述 */
.footer__desc {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #94a3b8;
    margin-bottom: 0.5rem;
}

/* 社交媒体 */
.footer__social {
    display: flex;
    gap: 0.8rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    color: #cbd5e1;
    text-decoration: none;
    transition: all 0.2s;
}

.social-link:hover {
    background-color: #008e4f;
    color: white;
    transform: translateY(-2px);
}

/* 栏目标题 */
.footer__title {
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer__title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background-color: #008e4f;
}

/* 列表样式 */
.footer__list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer__list li {
    margin-bottom: 0.6rem;
}

.footer__list a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
}

.footer__list a i {
    font-size: 0.7rem;
    color: #008e4f;
    transition: transform 0.2s;
}

.footer__list a:hover {
    color: white;
    transform: translateX(3px);
}

.footer__list a:hover i {
    transform: translateX(3px);
}

/* 联系信息列表 */
.footer__contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer__contact li {
    display: flex;
    gap: 0.8rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: #94a3b8;
    line-height: 1.5;
}

.footer__contact li i {
    color: #008e4f;
    font-size: 1rem;
    margin-top: 0.2rem;
    min-width: 20px;
}

/* 底部版权栏 */
.footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.85rem;
    color: #64748b;
}

.footer__copyright {
    color: #94a3b8;
}

.footer__links {
    display: flex;
    gap: 0.8rem;
    align-items: center;
}

.footer__links a {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.2s;
}

.footer__links a:hover {
    color: #008e4f;
}

.footer__links .separator {
    color: #475569;
}

/* 响应式 */
@media screen and (max-width: 1024px) {
    .footer__main {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media screen and (max-width: 640px) {
    .footer__main {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer__bottom {
        flex-direction: column;
        text-align: center;
    }

    .footer__links {
        justify-content: center;
    }

    .footer__container {
        padding: 0 1.5rem;
    }
}

/* ===== 返回顶部按钮 ===== */
.back-to-top {
    position: fixed;
    bottom: 40px;
    right: 40px;
    width: 50px;
    height: 50px;
    background-color: #008e4f;
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 4px 15px rgba(0, 142, 79, 0.3);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    border: 2px solid transparent;
}

.back-to-top:hover {
    background-color: #006f3d;
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 142, 79, 0.5);
    border-color: rgba(255, 255, 255, 0.3);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top i {
    transition: transform 0.3s;
}

.back-to-top:hover i {
    transform: translateY(-3px);
}

/* 移动端适配 */
@media screen and (max-width: 768px) {
    .back-to-top {
        bottom: 30px;
        right: 30px;
        width: 44px;
        height: 44px;
        font-size: 1.1rem;
    }
}

@media screen and (max-width: 480px) {
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}

/* 静态 Banner */
.page-banner {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    height: 250px;
    background-image: url('/assets/home/images/about-banner.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
}

.page-banner::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(0, 142, 79, 0.8) 0%, rgba(0, 142, 79, 0.4) 100%);
}

.page-banner .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    height: 100%;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 2;
}

.page-banner h1 {
    color: white;
    font-size: 2.8rem;
    font-weight: 600;
    margin: 0;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.page-banner h1 span {
    font-weight: 300;
    color: rgba(255, 255, 255, 0.9);
}

/* 面包屑导航 */
.breadcrumb-wrapper {
    max-width: 1400px;
    margin: 1.5rem auto 0;
    padding: 0 2rem;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: #64748b;
    background: #f8fafc;
    padding: 0.8rem 1.5rem;
    border-radius: 40px;
    border: 1px solid #e2e8f0;
}

.breadcrumb a {
    color: #475569;
    text-decoration: none;
    transition: color 0.2s;
}

.breadcrumb a:hover {
    color: #008e4f;
}

.breadcrumb i {
    font-size: 0.7rem;
    color: #94a3b8;
}

.breadcrumb .current {
    color: #008e4f;
    font-weight: 500;
}

/* 主体内容区域 - 左右布局 */
.page-content {
    max-width: 1400px;
    margin: 3rem auto 5rem;
    padding: 0 2rem;
    display: flex;
    gap: 3rem;
}

/* 左侧分类导航 */
.page-sidebar {
    width: 280px;
    flex-shrink: 0;
}

.sidebar-menu {
    background: white;
    border-radius: 20px;
    border: 1px solid #e2e8f0;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
    position: sticky;
    top: 100px;
}

.sidebar-title {
    background: #008e4f;
    color: white;
    padding: 1.2rem 1.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
}

.sidebar-title i {
    margin-right: 0.5rem;
}

.sidebar-menu ul {
    list-style: none;
    padding: 0.5rem 0;
    margin: 0;
}

.sidebar-menu li {
    margin: 0;
    padding: 0;
}

.sidebar-menu li a {
    display: flex;
    align-items: center;
    padding: 1rem 1.5rem;
    color: #475569;
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.2s;
    border-left: 3px solid transparent;
    gap: 0.5rem;
}

.sidebar-menu li a i {
    color: #94a3b8;
    font-size: 0.8rem;
    transition: all 0.2s;
}

.sidebar-menu li a:hover {
    background-color: #f8fafc;
    color: #008e4f;
    border-left-color: #008e4f;
}

.sidebar-menu li a:hover i {
    color: #008e4f;
    transform: translateX(3px);
}

.sidebar-menu li.active a {
    background-color: rgba(0, 142, 79, 0.05);
    color: #008e4f;
    border-left-color: #008e4f;
    font-weight: 500;
}

.sidebar-menu li.active a i {
    color: #008e4f;
}

/* 联系方式卡片 */
.contact-card {
    background: white;
    border-radius: 20px;
    border: 1px solid #e2e8f0;
    padding: 1.5rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
}

.contact-card__title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 1.2rem;
    padding-bottom: 0.8rem;
    border-bottom: 2px solid #008e4f;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.contact-card__title i {
    color: #008e4f;
    font-size: 1.2rem;
}

.contact-card__item {
    display: flex;
    gap: 0.8rem;
    margin-bottom: 1.2rem;
    align-items: flex-start;
}

.contact-card__item i {
    color: #008e4f;
    font-size: 1rem;
    width: 20px;
    margin-top: 3px;
}

.contact-card__item-content {
    flex: 1;
}

.contact-card__item-label {
    font-size: 0.75rem;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 2px;
}

.contact-card__item-value {
    color: #334155;
    font-size: 0.9rem;
    line-height: 1.5;
}

.contact-card__item-value a {
    color: #334155;
    text-decoration: none;
    transition: color 0.2s;
}

.no-products {
    grid-column: 1 / -1;
    text-align: center;
    padding: 40px;
    color: #94a3b8;
    font-size: 1rem;
    background: #f8fafc;
    border-radius: 12px;
}

.product-link {
    text-decoration: none !important;
}
.product-link:hover {
    text-decoration: none !important;
}
.product-link * {
    text-decoration: none !important;
}

/* 联系方式卡片按钮 - 统一样式 */
.contact-card__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: #008e4f;
    color: white;
    text-decoration: none;
    padding: 0.8rem 1rem;
    border-radius: 12px;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s;
    margin-top: 1rem;
    width: 100%;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0, 142, 79, 0.2); /* 添加阴影效果 */
}

.contact-card__btn:hover {
    background: #006f3d;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 142, 79, 0.3);
}

.contact-card__btn i {
    font-size: 1rem;
    transition: transform 0.3s;
}

.contact-card__btn:hover i {
    transform: translateX(3px);
}

/* 分页容器 */
.pagination-container {
    clear: both;
    margin: 40px 0 20px;
    text-align: center;
    font-size: 14px;
    font-family: 'Poppins', sans-serif;
}

/* 分页项目（链接或按钮） */
.page-item {
    display: inline-block;
    padding: 8px 10px;
    margin: 0 2px;
    color: #333;
    background-color: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.2s ease;
    cursor: pointer;
    font-weight: 500;
}

/* 页码链接 hover */
.page-item:not(.disabled):not(.active):hover {
    background-color: #f5f5f5;
    border-color: #008e4f;
    color: #008e4f;
}

/* 当前激活页码 */
.page-item.active {
    background-color: #008e4f;
    border-color: #008e4f;
    color: #fff;
    cursor: default;
    pointer-events: none;
}

/* 禁用状态（上一页/下一页不可点击） */
.page-item.disabled {
    color: #bbb;
    background-color: #f9f9f9;
    border-color: #e0e0e0;
    cursor: not-allowed;
    pointer-events: none;
}

/* 省略号 */
.page-dots {
    display: inline-block;
    padding: 8px 4px;
    margin: 0 2px;
    color: #999;
}

/* 上一页/下一页 图标与文字间距 */
.page-item i.fa {
    margin-right: 4px;
}
.page-item i.fa-chevron-right {
    margin-left: 4px;
    margin-right: 0;
}

/* 可选：响应式（小屏幕缩小内边距） */
@media (max-width: 768px) {
    .page-item {
        padding: 6px 10px;
        font-size: 12px;
    }
}
.pagination-container {
    clear: both;
    margin: 40px 0;
    text-align: center;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.pagination-container .page-item {
    display: inline-block;
    width: auto;
    padding: 8px 14px;
    margin: 0 2px;
    color: #333;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.2s;
    cursor: pointer;
    box-sizing: content-box; /* 防止 padding 增加宽度 */
}

.pagination-container .page-item.active {
    background: #008e4f;
    border-color: #008e4f;
    color: #fff;
    cursor: default;
}

.pagination-container .page-item.disabled {
    color: #bbb;
    background: #f9f9f9;
    cursor: not-allowed;
    pointer-events: none;
}

.pagination-container .page-item:not(.disabled):not(.active):hover {
    background: #f5f5f5;
    border-color: #008e4f;
    color: #008e4f;
}