/* 全局样式 */
:root {
    --primary-green: #2E7D32;
    --light-green: #4CAF50;
    --accent-green: #81C784;
    --dark-green: #1B5E20;
    --bg-light: #F5F5F5;
    --white: #FFFFFF;
    --text-dark: #333333;
    --text-light: #666666;
    --text-lighter: #999999;
    --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 5px 20px rgba(0, 0, 0, 0.15);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Microsoft YaHei', 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.text-center {
    text-align: center;
}

/* 按钮样式 */
.btn-primary {
    display: inline-block;
    padding: 12px 30px;
    background: linear-gradient(135deg, var(--primary-green), var(--light-green));
    color: var(--white);
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--dark-green), var(--primary-green));
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.btn-secondary {
    display: inline-block;
    padding: 12px 30px;
    background: transparent;
    color: var(--primary-green);
    border: 2px solid var(--primary-green);
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: var(--primary-green);
    color: var(--white);
    transform: translateY(-2px);
}

/* 板块标题 */
.section-title {
    text-align: center;
    font-size: 32px;
    margin-bottom: 40px;
    color: var(--text-dark);
    position: relative;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(135deg, var(--primary-green), var(--light-green));
}

/* 卡片链接 */
.card-link {
    display: inline-block;
    color: var(--primary-green);
    font-weight: 600;
    margin-top: 15px;
    transition: all 0.3s ease;
}

.card-link:hover {
    color: var(--dark-green);
    transform: translateX(5px);
}

.card-link i {
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.card-link:hover i {
    transform: translateX(5px);
}

/* ==================== 顶部导航栏 ==================== */
.header {
    background: var(--white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo h1 {
    font-size: 24px;
    color: var(--primary-green);
    margin-bottom: 5px;
}

.logo .tagline {
    font-size: 12px;
    color: var(--text-light);
}

.main-nav ul {
    display: flex;
    gap: 30px;
}

.main-nav a {
    font-size: 16px;
    color: var(--text-dark);
    padding: 5px 0;
    position: relative;
    transition: color 0.3s ease;
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-green);
    transition: width 0.3s ease;
}

.main-nav a:hover::after,
.main-nav a.active::after {
    width: 100%;
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--primary-green);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.lang-switch {
    background: transparent;
    border: 1px solid var(--primary-green);
    color: var(--primary-green);
    padding: 8px 15px;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
}

.lang-switch:hover {
    background: var(--primary-green);
    color: var(--white);
}

.btn-contact {
    background: var(--primary-green);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 5px;
    font-size: 14px;
    transition: all 0.3s ease;
}

.btn-contact:hover {
    background: var(--dark-green);
}

.mobile-menu-toggle {
    display: none;
    font-size: 24px;
    color: var(--primary-green);
    cursor: pointer;
}

/* ==================== 首屏Banner ==================== */
.hero-section {
    background: linear-gradient(135deg, #E8F5E9 0%, #C8E6C9 100%);
    padding: 80px 0;
    min-height: 600px;
    display: flex;
    align-items: center;
}

.hero-content {
    display: flex;
    align-items: center;
    gap: 60px;
}

.hero-text {
    flex: 1;
}

.hero-text h2 {
    font-size: 48px;
    color: var(--primary-green);
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-text h2 sup {
    font-size: 24px;
}

.hero-text > p {
    font-size: 20px;
    color: var(--text-light);
    margin-bottom: 30px;
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 40px;
}

.hero-features span {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-green);
    font-weight: 600;
}

.hero-features i {
    color: var(--light-green);
}

.hero-buttons {
    display: flex;
    gap: 20px;
}

.hero-image {
    flex: 1;
    text-align: center;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: var(--shadow-hover);
}

/* ==================== 视频展示板块 ==================== */
.video-showcase-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.video-showcase {
    display: flex;
    gap: 60px;
    align-items: center;
}

.video-container {
    flex: 1.2;
}

.video-container video {
    width: 100%;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.video-info {
    flex: 1;
}

.video-info h3 {
    font-size: 24px;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.video-info p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 20px;
}

.video-info ul {
    list-style: none;
    padding: 0;
}

.video-info ul li {
    padding: 8px 0;
    font-size: 16px;
    color: var(--text-dark);
}

.video-info ul li i {
    color: var(--primary-green);
    margin-right: 10px;
}

/* ==================== 疾病科普板块 ==================== */
.disease-section {
    padding: 80px 0;
    background: var(--white);
}

.disease-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.disease-card {
    background: var(--bg-light);
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.disease-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-color: var(--light-green);
}

.card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-green), var(--light-green));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.card-icon i {
    font-size: 36px;
    color: var(--white);
}

.disease-card h3 {
    font-size: 24px;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.disease-card p {
    color: var(--text-light);
    line-height: 1.8;
}

/* ==================== 产品核心优势板块 ==================== */
.advantages-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.advantage-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.advantage-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-color: var(--light-green);
}

.advantage-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-green), var(--light-green));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.advantage-icon i {
    font-size: 36px;
    color: var(--white);
}

.advantage-card h3 {
    font-size: 20px;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.advantage-card p {
    color: var(--text-light);
    line-height: 1.8;
}

/* ==================== 解决方案板块 ==================== */
.solutions-section {
    padding: 80px 0;
    background: var(--white);
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.solution-card {
    background: var(--bg-light);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid #e8e8e8;
    display: flex;
    flex-direction: column;
}

.solution-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-color: var(--light-green);
}

.solution-image {
    height: 220px;
    overflow: hidden;
}

.solution-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
}

.solution-card:hover .solution-image img {
    transform: scale(1.1);
}

.solution-content {
    padding: 28px 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.solution-content h3 {
    font-size: 20px;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.solution-content p {
    color: var(--text-light);
    line-height: 1.8;
}

/* ==================== 临床证据板块 ==================== */
.clinical-section {
    padding: 80px 0;
    background: var(--white);
}

.clinical-content {
    display: flex;
    gap: 60px;
    align-items: center;
    margin-bottom: 40px;
}

.clinical-text {
    flex: 1;
}

.clinical-text p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 20px;
}

.clinical-text ul {
    list-style: disc;
    padding-left: 20px;
}

.clinical-text li {
    font-size: 16px;
    line-height: 2;
    color: var(--text-dark);
}

.clinical-image {
    flex: 1;
    text-align: center;
}

.clinical-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

/* ==================== 产品展示与公司实力合并板块 ==================== */
.product-showcase-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.merge-grid {
    display: grid;
    grid-template-columns: 400px 1fr 240px;
    gap: 40px;
    align-items: start;
    margin-top: 52px;
}

/* 左列：产品图 */
.merge-left {
    text-align: center;
    position: sticky;
    top: 120px;
}

.merge-img-wrap {
    margin-bottom: 20px;
}

.merge-img-wrap:hover {
    transform: scale(1.02);
    transition: transform 0.3s ease;
}

.merge-img-wrap img {
    width: 700px;
    max-width: 100%;
    height: auto;
    border-radius: 12px;
}

.merge-badge {
    display: inline-block;
    background: var(--primary-green);
    color: var(--white);
    padding: 6px 18px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
}

/* 中列：产品特点 */
.merge-mid {
    padding-top: 8px;
    max-width: 320px;
}

.merge-feat {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    margin-bottom: 14px;
    font-size: 15px;
    background: var(--bg-light);
    border-radius: 12px;
    border-left: 4px solid var(--primary-green);
    font-size: 16px;
    color: var(--text-dark);
    transition: all 0.3s ease;
}

.merge-feat:hover {
    background: #e8f5e9;
    transform: translateX(4px);
}

.merge-feat i {
    color: var(--primary-green);
    font-size: 18px;
    flex-shrink: 0;
}

/* 右列：公司实力卡片 */
.merge-right {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.merge-card {
    background: var(--white);
    border: 2px solid #e0e0e0;
    border-radius: 14px;
    padding: 24px 16px 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.merge-card:hover {
    border-color: var(--light-green);
    box-shadow: var(--shadow-hover);
    transform: translateY(-4px);
}

.merge-card-icon {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, var(--primary-green), var(--light-green));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
}

.merge-card-icon i {
    font-size: 24px;
    color: var(--white);
}

.merge-card h3 {
    font-size: 15px;
    color: var(--text-dark);
    line-height: 1.5;
}

.merge-card p {
    font-size: 13px;
    color: var(--text-light);
    line-height: 1.5;
}

/* 底部按钮区 */
.merge-cta {
    text-align: center;
    margin-top: 52px;
}

.merge-cta .btn-primary {
    padding: 14px 44px;
    font-size: 16px;
}

/* ==================== 招商信息板块 ==================== */
.recruitment-banner-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-green), var(--light-green));
}

.recruitment-banner {
    text-align: center;
    color: var(--white);
}

.recruitment-text h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.recruitment-text p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.recruitment-text .btn-primary {
    background: var(--white);
    color: var(--primary-green);
}

.recruitment-text .btn-primary:hover {
    background: var(--bg-light);
}

/* ==================== 新闻动态板块 ==================== */
.news-section {
    padding: 80px 0;
    background: var(--white);
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.news-card {
    background: var(--bg-light);
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.news-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-color: var(--light-green);
}

.news-image {
    height: 200px;
    overflow: hidden;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.news-card:hover .news-image img {
    transform: scale(1.1);
}

.news-content {
    padding: 30px;
}

.news-date {
    font-size: 14px;
    color: var(--text-lighter);
    margin-bottom: 10px;
}

.news-content h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.news-content h3 a {
    color: var(--text-dark);
    transition: color 0.3s ease;
}

.news-content h3 a:hover {
    color: var(--primary-green);
}

.news-content p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.8;
}

.news-link {
    display: inline-block;
    margin-top: 15px;
    font-size: 14px;
    color: var(--primary-green);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
}

.news-link:hover {
    color: var(--light-green);
}

/* ==================== 页脚 ==================== */
.footer {
    background: #1A1A1A;
    color: #CCCCCC;
    padding: 60px 0 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1.5fr 1.2fr;
    gap: 25px;
    margin-bottom: 40px;
}

.footer-column h3 {
    font-size: 18px;
    color: var(--white);
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--light-green);
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column a {
    color: #CCCCCC;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: var(--light-green);
}

.contact-info li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 10px;
    line-height: 1.6;
}

.contact-info li i {
    color: var(--light-green);
    flex-shrink: 0;
    margin-top: 3px;
}

.contact-info .contact-line {
    flex: 1;
    min-width: 0;
}

.contact-info .contact-line.nowrap {
    white-space: nowrap;
}

.footer-bottom {
    border-top: 1px solid #333333;
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-links a {
    color: #CCCCCC;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--light-green);
}

.qrcode-container {
    text-align: center;
}

.qrcode-img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 10px;
    background: #FFFFFF;
    padding: 5px;
}

.qrcode-container p {
    font-size: 12px;
    color: #CCCCCC;
    margin-top: 5px;
}

/* ==================== 响应式设计 ==================== */
@media (max-width: 992px) {
    .hero-content {
        flex-direction: column;
        text-align: center;
    }

    .hero-text h2 {
        font-size: 36px;
    }

    .hero-features {
        justify-content: center;
    }

    .hero-buttons {
        justify-content: center;
    }

    .disease-cards,
    .advantages-grid,
    .solutions-grid,
    .news-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .merge-grid {
        grid-template-columns: 1fr 1fr;
        gap: 36px;
    }

    .merge-left {
        position: static;
        grid-column: 1 / -1;
        text-align: center;
    }

    .merge-right {
        flex-direction: row;
        grid-column: 1 / -1;
    }

    .clinical-content {
        flex-direction: column;
    }

    .footer-content {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .main-nav {
        display: none;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .header-actions {
        display: none;
    }

    .hero-text h2 {
        font-size: 28px;
    }

    .hero-text > p {
        font-size: 16px;
    }

    .hero-features {
        flex-direction: column;
        align-items: flex-start;
    }

    .disease-cards,
    .advantages-grid,
    .solutions-grid,
    .news-grid {
        grid-template-columns: 1fr;
    }

    .merge-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .merge-left {
        position: static;
    }

    .merge-right {
        flex-direction: column;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .section-title {
        font-size: 24px;
    }
}

/* ==================== 通用板块样式 ==================== */
.section {
    padding: 80px 0;
}

/* ==================== 页面标题 ==================== */
.page-header {
    background: linear-gradient(135deg, var(--primary-green), var(--light-green));
    color: var(--white);
    padding: 60px 0;
    text-align: center;
}

.page-header h1 {
    font-size: 36px;
    margin-bottom: 15px;
}

.page-header p {
    font-size: 18px;
    opacity: 0.9;
}

/* ==================== 关于我们页面 ==================== */
.about-content {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.about-text {
    flex: 1.2;
}

.about-image {
    flex: 1;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.company-intro h3 {
    font-size: 20px;
    color: var(--primary-green);
    margin-top: 25px;
    margin-bottom: 10px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--light-green);
}

.company-intro p {
    line-height: 1.8;
    margin-bottom: 15px;
}

.company-mission {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    padding: 25px;
    border-radius: 10px;
    margin-top: 30px;
    border-left: 4px solid var(--primary-green);
}

.company-mission h3 {
    font-size: 20px;
    color: var(--primary-green);
    margin-bottom: 10px;
}

.company-mission .highlight {
    color: var(--primary-green);
    font-weight: 600;
    font-size: 18px;
}

/* ==================== 产品详情页 ==================== */
.product-detail {
    margin-bottom: 60px;
}

.product-detail-content {
    display: flex;
    gap: 50px;
    align-items: flex-start;
}

.product-detail-images {
    width: 520px;
    min-width: 0;
    flex-shrink: 0;
}

.main-product-image {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: var(--shadow);
    margin-bottom: 16px;
}

.product-thumbnails {
    display: flex;
    gap: 12px;
    justify-content: flex-start;
}

.product-thumbnails img {
    width: 80px;
    height: auto;
    object-fit: contain;
    border-radius: 5px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: border-color 0.3s ease;
}

.product-thumbnails img:hover,
.product-thumbnails img.active {
    border-color: var(--primary-green);
}

.product-detail-info {
    flex: 1;
}

.product-detail-info h2 {
    font-size: 30px;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.product-tagline {
    font-size: 17px;
    color: var(--text-light);
    margin-bottom: 24px;
}

.product-features {
    margin-bottom: 28px;
}

.product-features h3 {
    font-size: 19px;
    color: var(--text-dark);
    margin-bottom: 14px;
}

.product-features ul {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px 20px;
}

.product-features li {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-dark);
}

.product-features li i {
    color: var(--light-green);
    margin-right: 10px;
}

.product-specs {
    margin-bottom: 30px;
}

.product-specs h3 {
    font-size: 20px;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.specs-table {
    width: 100%;
    border-collapse: collapse;
}

.specs-table td {
    padding: 12px 15px;
    border-bottom: 1px solid #E0E0E0;
}

.specs-table td:first-child {
    font-weight: 600;
    color: var(--text-dark);
    width: 30%;
}

.specs-table td:last-child {
    color: var(--text-light);
}

.product-actions {
    display: flex;
    gap: 20px;
}

/* 配套耗材 */
.accessories-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.accessory-card {
    background: var(--white);
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    box-shadow: var(--shadow);
}

.accessory-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-color: var(--light-green);
}

.accessory-image-wrapper {
    width: 100%;
    height: 320px;
    background: #f9f9f9;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border: 1px solid #eee;
}

.accessory-card img {
    max-width: 100%;
    max-height: 290px;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
}

.accessory-card h3 {
    font-size: 20px;
    color: var(--text-dark);
    margin-bottom: 12px;
    font-weight: 600;
}

.accessory-card p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.8;
}

.accessory-card p {
    font-size: 14px;
    color: var(--text-light);
}

/* ==================== 产品参数区（独立板块） ==================== */
.product-specs-section {
    background: #f8faf8;
    padding: 70px 0;
}

.product-specs-section .section-title {
    text-align: center;
    margin-bottom: 50px;
}

.specs-content {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 50px;
    align-items: start;
}

.product-specs {
    background: var(--white);
    border-radius: 10px;
    padding: 30px;
    box-shadow: var(--shadow);
}

.specs-table {
    width: 100%;
    border-collapse: collapse;
}

.specs-table tr {
    border-bottom: 1px solid #f0f0f0;
}

.specs-table tr:last-child {
    border-bottom: none;
}

.specs-table td {
    padding: 14px 16px;
    font-size: 15px;
}

.specs-table td:first-child {
    color: var(--text-light);
    width: 35%;
    font-weight: 500;
}

.specs-table td:last-child {
    color: var(--text-dark);
    font-weight: 600;
}

/* 右侧亮点卡片 */
.specs-highlight {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.spec-highlight-item {
    background: var(--white);
    border-radius: 10px;
    padding: 28px 24px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
}

.spec-highlight-item:hover {
    transform: translateX(5px);
    border-left-color: var(--primary-green);
}

.spec-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--primary-green), var(--light-green));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 24px;
}

.spec-highlight-item h4 {
    font-size: 17px;
    color: var(--text-dark);
    margin-bottom: 8px;
    font-weight: 600;
}

.spec-highlight-item p {
    font-size: 13px;
    color: var(--text-light);
}

/* =================== 禁忌症板块 =================== */
.contraindications-section {
    background: #f8f9fa;
    padding: 70px 0;
}

.contraindications-section .section-title {
    text-align: center;
    margin-bottom: 15px;
}

.contraindications-section .section-subtitle {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 40px;
    font-size: 15px;
}

.contraindications-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 30px;
}

.contraindications-group {
    background: var(--white);
    padding: 25px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    border-left: 4px solid #e67e22;
}

.contraindications-group h3 {
    font-size: 17px;
    color: #e67e22;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}

.contraindications-group ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contraindications-group li {
    padding: 8px 0;
    font-size: 14px;
    color: var(--text-dark);
    border-bottom: 1px dashed #eee;
    position: relative;
    padding-left: 20px;
}

.contraindications-group li:last-child {
    border-bottom: none;
}

.contraindications-group li::before {
    content: "✕";
    position: absolute;
    left: 0;
    color: #e67e22;
    font-weight: bold;
    font-size: 12px;
}

.contra-warning {
    background: #fff3cd;
    border: 1px solid #ffc107;
    border-radius: 8px;
    padding: 15px 20px;
    margin-top: 20px;
}

.contra-warning p {
    margin: 0;
    color: #856404;
    font-size: 14px;
    line-height: 1.6;
}

.contra-warning i {
    margin-right: 8px;
    color: #e67e22;
}

/* ==================== 配套耗材区（独立板块） ==================== */
.accessories-section-full {
    background: var(--white);
    padding: 70px 0;
}

.accessories-section-full .section-title {
    text-align: center;
    margin-bottom: 50px;
}

/* ==================== 招商合作页 ==================== */
.market-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

/* 市场前景板块标题去掉装饰线 */
.market-section .section-title::after {
    display: none;
}

.stat-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

.stat-number {
    font-size: 36px;
    font-weight: 700;
    color: #349054;
    margin-bottom: 10px;
}

.stat-desc {
    font-size: 15px;
    color: var(--text-secondary);
}

.recruitment-advantage-item {
    display: flex;
    gap: 30px;
    align-items: center;
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.recruitment-advantage-item:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-hover);
}

.recruitment-advantage-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-green), var(--light-green));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.recruitment-advantage-icon i {
    font-size: 36px;
    color: var(--white);
}

.recruitment-advantage-text h3 {
    font-size: 20px;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.recruitment-advantage-text p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.8;
}

.policy-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.policy-card {
    background: var(--bg-light);
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.policy-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-color: var(--light-green);
}

.policy-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-green), var(--light-green));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.policy-icon i {
    font-size: 36px;
    color: var(--white);
}

.policy-card h3 {
    font-size: 20px;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.policy-card p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.8;
}

/* 申请表单 */
.application-form {
    max-width: 800px;
    margin: 0 auto;
    background: var(--white);
    padding: 40px;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 16px;
    color: var(--text-dark);
    margin-bottom: 8px;
    font-weight: 600;
}

.required {
    color: #E53935;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #E0E0E0;
    border-radius: 5px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--light-green);
}

.form-group textarea {
    resize: vertical;
}

.form-submit {
    text-align: center;
    margin-top: 30px;
}

.recruitment-contact-section {
    background: linear-gradient(135deg, var(--primary-green), var(--light-green));
    color: var(--white);
}

.recruitment-contact {
    text-align: center;
}

.recruitment-contact h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.recruitment-contact > p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.contact-methods {
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
    max-width: 760px;
    margin: 0 auto;
}

.contact-method {
    flex: 1;
    min-width: 200px;
    max-width: 280px;
    background: rgba(255,255,255,0.15);
    border-radius: 10px;
    padding: 24px 20px;
    text-align: left;
}

.contact-method-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
}

.contact-icon-wrap {
    width: 38px;
    height: 38px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-icon-wrap i {
    font-size: 16px;
    color: var(--primary-green);
}

.contact-label {
    font-size: 15px;
    font-weight: 500;
    color: #fff;
}

.contact-detail {
    margin: 0 0 4px;
    font-size: 15px;
    color: #fff;
    line-height: 1.6;
}

.contact-detail:last-child {
    margin-bottom: 0;
}

/* ==================== 解决方案页 ==================== */
.solution-detail {
    display: flex;
    gap: 60px;
    align-items: center;
    margin-bottom: 60px;
}

.solution-detail:last-child {
    margin-bottom: 0;
}

.solution-detail-image {
    flex: 1;
}

.solution-detail-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.solution-detail-info {
    flex: 1;
}

.solution-detail-info h2 {
    font-size: 32px;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.solution-detail-info h3 {
    font-size: 20px;
    color: var(--text-dark);
    margin-top: 25px;
    margin-bottom: 15px;
}

.solution-detail-info p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 15px;
}

.solution-detail-info ul {
    list-style: disc;
    padding-left: 20px;
    margin-bottom: 20px;
}

.solution-detail-info li {
    font-size: 16px;
    color: var(--text-dark);
    line-height: 2;
}

/* 多场景应用 */
.scenario-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.scenario-card {
    background: var(--bg-light);
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.scenario-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-color: var(--light-green);
}

.scenario-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-green), var(--light-green));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.scenario-icon i {
    font-size: 36px;
    color: var(--white);
}

.scenario-card h3 {
    font-size: 20px;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.scenario-card p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.8;
}

/* ==================== 临床证据页 ==================== */
.clinical-trial {
    background: var(--bg-light);
    padding: 40px;
    border-radius: 10px;
    margin-top: 40px;
}

.trial-info {
    margin-bottom: 40px;
}

.trial-info h3 {
    font-size: 20px;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.trial-info p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.8;
}

.trial-results {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.trial-result-card {
    background: linear-gradient(135deg, var(--primary-green), var(--light-green));
    color: var(--white);
    padding: 30px 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: var(--shadow);
}

.result-number {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 10px;
}

.result-desc {
    font-size: 16px;
    opacity: 0.9;
}

.trial-details h3 {
    font-size: 20px;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.trial-details ul {
    list-style: disc;
    padding-left: 20px;
}

.trial-details li {
    font-size: 16px;
    color: var(--text-dark);
    line-height: 2;
}

/* 临床指南 */
.guidelines-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.guideline-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.guideline-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-color: var(--light-green);
}

.guideline-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-green), var(--light-green));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.guideline-icon i {
    font-size: 36px;
    color: var(--white);
}

.guideline-card h3 {
    font-size: 18px;
    color: var(--text-dark);
    margin-bottom: 15px;
    line-height: 1.6;
}

.guideline-card p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 15px;
}

/* 临床综述 */
.consensus-list {
    margin-top: 40px;
}

.consensus-item {
    display: flex;
    gap: 30px;
    background: var(--bg-light);
    padding: 30px;
    border-radius: 10px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.consensus-item:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-hover);
}

.consensus-date {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-green);
    flex-shrink: 0;
    width: 80px;
    text-align: center;
}

.consensus-content h3 {
    font-size: 20px;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.consensus-content p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 10px;
}

/* 学术研究 */
.research-list {
    margin-top: 40px;
}

.research-item {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.research-item:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-hover);
}

.research-journal {
    font-size: 14px;
    color: var(--light-green);
    font-weight: 600;
    margin-bottom: 10px;
}

.research-item h3 {
    font-size: 20px;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.research-item p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 10px;
}

/* ==================== 关于我们页 ==================== */
.about-content {
    display: flex;
    gap: 60px;
    align-items: center;
}

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 32px;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.about-text p {
	font-size: 16px;
	color: var(--text-light);
	line-height: 1.8;
	margin-bottom: 0;
}

.about-text p.spaced {
	margin-bottom: 15px;
}

.about-image {
    flex: 1;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

/* 创新资质 */
.qualifications-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

.qualification-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.qualification-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-color: var(--light-green);
}

.qualification-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-green), var(--light-green));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    flex-shrink: 0;
}

.qualification-icon i {
    font-size: 36px;
    color: var(--white);
}

.qualification-card h3 {
    font-size: 18px;
    color: var(--text-dark);
    margin-bottom: 15px;
    line-height: 1.5;
    min-height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.qualification-card p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.8;
    min-height: 50px;
}

/* 企业文化 */
.culture-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.culture-card {
    background: var(--bg-light);
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.culture-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-color: var(--light-green);
}

.culture-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-green), var(--light-green));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.culture-icon i {
    font-size: 36px;
    color: var(--white);
}

.culture-card h3 {
    font-size: 24px;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.culture-card p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.8;
}

/* ==================== 联系我们页 ==================== */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 40px;
}

/* 联系我们卡片 */
.contact-cards-section .contact-grid {
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.contact-info-card {
    background: var(--white);
    padding: 35px 24px;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.contact-info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.contact-info-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-green), var(--light-green));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.contact-info-icon i {
    font-size: 26px;
    color: var(--white);
}

.contact-info-card h3 {
    font-size: 17px;
    color: var(--text-dark);
    margin-bottom: 10px;
    font-weight: 600;
}

.contact-info-card p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.8;
}

.contact-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.contact-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-color: var(--light-green);
}

.contact-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-green), var(--light-green));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.contact-icon i {
    font-size: 36px;
    color: var(--white);
}

.contact-card h3 {
    font-size: 20px;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.contact-card p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.8;
}

/* 联系表单 */
.contact-form-container {
    max-width: 800px;
    margin: 0 auto;
    background: var(--white);
    padding: 40px;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

/* 地图 */
.map-container {
    margin-top: 40px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.map-container iframe {
    display: block;
    width: 100%;
    min-height: 450px;
}

.map-fallback {
    width: 100%;
    min-height: 400px;
    background: linear-gradient(135deg, #e8f5e9, #c8e6c9);
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--text-color);
    text-align: center;
    padding: 40px;
}

.map-fallback i {
    font-size: 48px;
    margin-bottom: 20px;
    color: var(--primary-green);
}

.map-fallback p {
    font-size: 18px;
    margin-bottom: 20px;
    max-width: 500px;
    line-height: 1.6;
}

.map-placeholder {
    width: 100%;
    height: 400px;
    background: var(--bg-light);
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
}

.map-placeholder i {
    font-size: 48px;
    margin-bottom: 20px;
    color: var(--light-green);
}

/* ==================== 响应式设计（补充） ==================== */
@media (max-width: 992px) {
    .product-detail-content {
        flex-direction: column;
    }

    .product-detail-images {
        width: 100%;
    }

    .product-features ul {
        grid-template-columns: 1fr;
    }

    .specs-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .specs-highlight {
        flex-direction: row;
    }

    .market-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .policy-cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-methods {
        flex-direction: column;
        gap: 16px;
        align-items: center;
    }

    .contact-method {
        max-width: 100%;
    }

    .accessories-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .trial-results {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .guidelines-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .qualifications-grid {
        grid-template-columns: 1fr;
    }
    
    .culture-cards {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .page-header h1 {
        font-size: 28px;
    }

    .market-stats {
        grid-template-columns: 1fr;
    }

    .policy-cards {
        grid-template-columns: 1fr;
    }

    .recruitment-advantage-item {
        flex-direction: column;
        text-align: center;
    }

    .accessories-grid {
        grid-template-columns: 1fr;
    }

    .specs-highlight {
        flex-direction: column;
    }

    .product-actions {
        flex-direction: column;
    }
    
    .solution-detail {
        flex-direction: column;
    }
    
    .scenario-cards {
        grid-template-columns: 1fr;
    }
    
    .trial-results {
        grid-template-columns: 1fr;
    }
    
    .guidelines-grid {
        grid-template-columns: 1fr;
    }

    .qualifications-grid {
        grid-template-columns: 1fr;
    }

    .consensus-item {
        flex-direction: column;
        text-align: center;
    }
    
    .qualifications-grid {
        grid-template-columns: 1fr;
    }
    
    .culture-cards {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .about-content {
        flex-direction: column;
    }
}


/* =================== 注意事项板块 =================== */
.precautions-section {
    background: #ffffff;
    padding: 70px 0;
}

.precautions-section .section-title {
    text-align: center;
    margin-bottom: 15px;
}

.precautions-section .section-subtitle {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 40px;
}

.precautions-content {
    max-width: 900px;
    margin: 0 auto;
    background: #f8f9fa;
    border-radius: 12px;
    padding: 30px 40px;
    border-left: 4px solid #e67e22;
}

.precautions-content ol {
    margin: 0;
    padding-left: 20px;
}

.precautions-content ol li {
    margin-bottom: 12px;
    line-height: 1.8;
    color: var(--text-color);
}

.precautions-content ol li:last-child {
    margin-bottom: 0;
}

.precautions-content ol ul {
    margin-top: 8px;
    padding-left: 20px;
}

.precautions-content ol ul li {
    margin-bottom: 6px;
    font-size: 14px;
    color: var(--text-light);
}
