/* 
 * style.css - 基础样式文件
 * 注意：此文件与 tm-inspired.css 共存
 * 使用条件选择器，只对旧版页面（无公告栏）应用基础样式
 */
 
/* 主要内容区域 */
.main-content {
    padding: 4rem 0;
}

.section {
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    text-align: center;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-bottom: 3rem;
    text-align: center;
    opacity: 0.8;
}

/* 卡片网格 */
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.card {
    background-color: var(--bg-white);
    border-radius: 10px;
    padding: 2rem;
    box-shadow: var(--shadow);
    transition: all 0.3s;
}

.card:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-5px);
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.card h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.card p {
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.card a {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 500;
}

.card a:hover {
    text-decoration: underline;
}

/* 特色区域 - 仅背景色 */
.features {
    background-color: var(--bg-light);
    padding: 4rem 0;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 3rem;
}

.feature-item:nth-child(even) {
    flex-direction: row-reverse;
}

.feature-icon {
    font-size: 4rem;
    color: var(--secondary-color);
    flex-shrink: 0;
}

.feature-content h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

/* 产品页面 */
.product-header {
    background-color: var(--bg-light);
    padding: 3rem 0;
    text-align: center;
}

.product-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 2rem;
    align-items: stretch;
}

.product-info {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.product-info h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.product-info ul {
    list-style: none;
    margin: 1rem 0;
}

.product-info li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.product-info li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
}

/* 表单样式 */
.contact-form {
    max-width: 600px;
    margin: 2rem auto;
    background-color: var(--bg-light);
    padding: 2rem;
    border-radius: 10px;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    font-weight: 500;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: inherit;
    font-size: 1rem;
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.submit-btn {
    width: 100%;
    padding: 1rem;
    background-color: var(--primary-color);
    color: var(--text-light);
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s;
}

.submit-btn:hover {
    background-color: var(--secondary-color);
}
 
/* 时间线样式（用于产业链页面） */
.timeline {
    position: relative;
    max-width: 800px;
    margin: 3rem auto;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 100%;
    background-color: var(--secondary-color);
}

.timeline-item {
    margin-bottom: 3rem;
    position: relative;
}

.timeline-item:nth-child(odd) {
    padding-right: 50%;
    padding-left: 0;
    text-align: right;
}

.timeline-item:nth-child(even) {
    padding-left: 50%;
    padding-right: 0;
    text-align: left;
}

.timeline-content {
    background-color: var(--bg-white);
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
    position: relative;
}

.timeline-content h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.timeline-marker {
    position: absolute;
    top: 20px;
    width: 20px;
    height: 20px;
    background-color: var(--secondary-color);
    border: 4px solid var(--bg-white);
    border-radius: 50%;
    box-shadow: 0 0 0 3px var(--secondary-color);
    z-index: 2;
}

.timeline-item:nth-child(odd) .timeline-marker {
    right: -10px;
}

.timeline-item:nth-child(even) .timeline-marker {
    left: -10px;
}

.timeline-year {
    position: absolute;
    top: -10px;
    right: -60px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 4px 15px rgba(45, 80, 22, 0.3);
    opacity: 0.9;
}

.timeline-item:nth-child(even) .timeline-year {
    right: auto;
    left: -60px;
}

/* 服务特性列表样式 - 通用样式不影响其他页面 - 已移除以避免冲突 */

@media (max-width: 768px) {
    .timeline::before {
        left: 20px;
    }

    .timeline-item:nth-child(odd),
    .timeline-item:nth-child(even) {
        padding-left: 60px;
        padding-right: 0;
        text-align: left;
    }

    .timeline-item:nth-child(odd) .timeline-marker,
    .timeline-item:nth-child(even) .timeline-marker {
        left: 10px;
        right: auto;
    }

    .timeline-year {
        position: static;
        display: inline-block;
        margin-top: 1rem;
        transform: none;
    }

    .service-features li {
        font-size: 0.85rem;
        padding: 0.4rem 0;
        padding-left: 1.3rem;
    }

    .image-gallery {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.5rem;
    }

    .gallery-item {
        height: 250px;
    }
}

/* 表格样式 */
.quality-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
    background-color: var(--bg-white);
    box-shadow: var(--shadow);
    border-radius: 10px;
    overflow: hidden;
}

.quality-table th,
.quality-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

.quality-table th {
    background-color: var(--primary-color);
    color: var(--text-light);
    font-weight: bold;
}

.quality-table tr:hover {
    background-color: var(--bg-light);
}

/* ==================== 产品详情页面样式 ==================== */

/* 产品图片区域 */
.product-image-wrapper {
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.product-image-main {
    position: relative;
    width: 100%;
    flex: 1;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    margin-bottom: 1rem;
    min-height: 400px;
    max-height: 600px;
}

.main-product-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-image-main:hover .main-product-img {
    transform: scale(1.05);
}

.image-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #2d5016, #4a7c29);
    color: white;
    padding: 10px 20px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(45, 80, 22, 0.3);
    animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.product-thumbnail-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    flex-shrink: 0;
}

.thumbnail-img {
    width: 100%;
    height: 100px;
    object-fit: cover;
    border-radius: 10px;
    cursor: pointer;
    border: 3px solid transparent;
    transition: all 0.3s ease;
}

.thumbnail-img:hover,
.thumbnail-img.active {
    border-color: #4a7c29;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(74, 124, 41, 0.3);
}

/* 产品信息区域 */
.product-category {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #e8f5e0, #d4ecc8);
    color: #2d5016;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
    flex-shrink: 0;
}

.product-title {
    font-size: 2.8rem;
    color: #2d5016;
    margin-bottom: 1.5rem;
    font-weight: 700;
    line-height: 1.2;
    flex-shrink: 0;
}

.product-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 2rem;
    flex-shrink: 0;
}

.product-features {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-features h3 {
    font-size: 1.5rem;
    color: #2d5016;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.features-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    flex: 1;
}

.features-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 1rem;
    border-radius: 10px;
    border: 1px solid #e8f5e0;
    background: white;
    transition: all 0.3s ease;
    position: relative;
}

.features-list li:before {
    content: none !important;
}

.features-list li:hover {
    background: linear-gradient(135deg, #f8fdf5 0%, #e8f5e0 100%);
    border-color: #4a7c29;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(74, 124, 41, 0.15);
}

.features-list li i {
    color: #4a7c29;
    font-size: 1.3rem;
    margin-top: 3px;
    flex-shrink: 0;
}

.features-list li div {
    flex: 1;
}

.features-list li strong {
    display: block;
    font-size: 1.1rem;
    color: #2d5016;
    margin-bottom: 5px;
}

.features-list li span {
    display: block;
    font-size: 0.95rem;
    color: #666;
}

.product-actions {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    flex-shrink: 0;
}

.btn-large {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

/* 产品详情页面的次要按钮样式优化 */
.product-detail + .stats-section ~ * .btn-secondary,
.product-actions .btn-secondary {
    background-color: white;
    color: #2d5016;
    border: 2px solid #2d5016;
}

.product-detail + .stats-section ~ * .btn-secondary:hover,
.product-actions .btn-secondary:hover {
    background-color: #2d5016;
    color: white;
    border-color: #2d5016;
}

/* ==================== 数据统计区域 ==================== */
.stats-section {
    background: linear-gradient(135deg, #2d5016 0%, #4a7c29 100%);
    padding: 4rem 0;
    margin: 4rem 0;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(45, 80, 22, 0.2);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.stat-item {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
}

.stat-item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-10px);
}

.stat-icon {
    font-size: 3rem;
    color: white;
    margin-bottom: 1rem;
    animation: iconFloat 3s ease-in-out infinite;
}

@keyframes iconFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.stat-content {
    color: white;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1;
    display: inline-block;
}

.stat-unit {
    font-size: 2rem;
    font-weight: 600;
    margin-left: 5px;
}

.stat-label {
    font-size: 1.1rem;
    margin-top: 0.5rem;
    opacity: 0.9;
}

/* ==================== 现代化表格样式 ==================== */
.table-wrapper {
    overflow-x: auto;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.modern-table {
    margin: 0;
}

.modern-table th {
    background: linear-gradient(135deg, #2d5016, #4a7c29);
    padding: 1.5rem 1rem;
    font-size: 1.1rem;
}

.modern-table th i {
    margin-right: 8px;
}

.modern-table tbody tr {
    transition: all 0.3s ease;
}

.modern-table tbody tr:hover {
    background: linear-gradient(90deg, #f8fdf5 0%, #e8f5e0 100%);
    transform: scale(1.02);
}

.grade-badge {
    display: inline-block;
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 1rem;
}

.grade-badge.premium {
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    color: #8b6914;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.grade-badge.first {
    background: linear-gradient(135deg, #c0c0c0, #e8e8e8);
    color: #555;
    box-shadow: 0 4px 15px rgba(192, 192, 192, 0.3);
}

.grade-badge.second {
    background: linear-gradient(135deg, #cd7f32, #e69a5a);
    color: #fff;
    box-shadow: 0 4px 15px rgba(205, 127, 50, 0.3);
}

/* ==================== 处理流程时间线 ==================== */
.process-section {
    background: linear-gradient(135deg, #f8fdf5 0%, #e8f5e0 100%);
    padding: 4rem 2rem;
    border-radius: 20px;
    margin: 4rem 0;
}

.process-timeline {
    max-width: 1000px;
    margin: 0 auto;
    padding: 2rem 0;
}

.process-step {
    display: grid;
    grid-template-columns: 80px 80px 1fr;
    gap: 2rem;
    align-items: center;
    margin-bottom: 3rem;
    position: relative;
}

.process-step:last-child {
    margin-bottom: 0;
}

.process-step:last-child .step-line {
    display: none;
}

/* 通用步骤样式 - 已移除以避免与其他页面冲突 */

/* 通用步骤内容样式 - 已移除以避免与其他页面冲突 */

/* ==================== 图片画廊 ==================== */
.gallery-section {
    margin: 4rem 0;
}

.image-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.gallery-item {
    position: relative;
    height: 300px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 1;
    transform: translateY(0);
}

.gallery-item.animate-in {
    opacity: 1;
    transform: translateY(0);
    animation: fadeInUp 0.6s ease-out forwards;
}

.gallery-item:nth-child(1) { transition-delay: 0s; }
.gallery-item:nth-child(2) { transition-delay: 0.1s; }
.gallery-item:nth-child(3) { transition-delay: 0.2s; }
.gallery-item:nth-child(4) { transition-delay: 0.3s; }
.gallery-item:nth-child(5) { transition-delay: 0.4s; }
.gallery-item:nth-child(6) { transition-delay: 0.5s; }
.gallery-item:nth-child(7) { transition-delay: 0.6s; }
.gallery-item:nth-child(8) { transition-delay: 0.7s; }

.gallery-item:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 50px rgba(0,0,0,0.25);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(45, 80, 22, 0.95), transparent);
    color: white;
    padding: 2rem;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.gallery-overlay p {
    font-size: 0.95rem;
    opacity: 0.9;
    line-height: 1.6;
}

/* 图片画廊模态框 */
.gallery-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-modal.active {
    opacity: 1;
}

.gallery-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.gallery-modal-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
    transform: scale(0.9);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
}

.gallery-modal.active .gallery-modal-content {
    transform: scale(1);
}

.gallery-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.9);
    color: #333;
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.gallery-modal-close:hover {
    background: white;
    transform: rotate(90deg) scale(1.1);
}

.gallery-modal-image {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    background: #f8f9fa;
}

.gallery-modal-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.gallery-modal-info {
    padding: 2rem;
    background: white;
    border-top: 1px solid #e9ecef;
}

.gallery-modal-info h3 {
    font-size: 1.8rem;
    color: #2d5016;
    margin-bottom: 1rem;
    font-weight: 600;
}

.gallery-modal-info p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.7;
}

/* 模态框响应式 */
@media (max-width: 768px) {
    .gallery-modal-content {
        max-width: 95%;
        max-height: 95%;
        border-radius: 15px;
    }

    .gallery-modal-image {
        padding: 1.5rem;
    }

    .gallery-modal-info {
        padding: 1.5rem;
    }

    .gallery-modal-info h3 {
        font-size: 1.4rem;
    }

    .gallery-modal-info p {
        font-size: 1rem;
    }

    .gallery-modal-close {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
        top: 15px;
        right: 15px;
    }
}

/* ==================== 储存与运输卡片 ==================== */
.storage-section {
    margin: 4rem 0;
}

.storage-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 3rem;
    margin-top: 2rem;
}

.storage-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    transition: all 0.4s ease;
}

.storage-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.storage-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

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

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

.storage-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #4a7c29;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
}

.storage-content {
    padding: 2rem;
}

.storage-content h3 {
    font-size: 1.5rem;
    color: #2d5016;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.storage-content p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.storage-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.storage-features li {
    padding: 0.8rem 0;
    color: #555;
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid #e8f5e0;
}

.storage-features li:last-child {
    border-bottom: none;
}

.storage-features li i {
    color: #4a7c29;
    font-size: 1.1rem;
}

/* ==================== 技术支持卡片 ==================== */
.support-section {
    background: linear-gradient(135deg, #f8fdf5 0%, #e8f5e0 100%);
    padding: 4rem 2rem;
    border-radius: 20px;
    margin: 4rem 0;
}

.support-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.support-card {
    background: white;
    border-radius: 15px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    text-align: center;
}

.support-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.support-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #2d5016, #4a7c29);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    transition: all 0.4s ease;
}

.support-card:hover .support-icon {
    transform: rotateY(360deg);
}

.support-card h3 {
    font-size: 1.5rem;
    color: #2d5016;
    margin-bottom: 1rem;
}

.support-card > p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.support-list {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.support-list li {
    padding: 0.8rem 0;
    padding-left: 1.5rem;
    color: #555;
    position: relative;
    border-bottom: 1px solid #e8f5e0;
}

.support-list li:last-child {
    border-bottom: none;
}

.support-list li:before {
    content: "▸";
    position: absolute;
    left: 0;
    color: #4a7c29;
    font-weight: bold;
}

/* ==================== 收购服务横幅 ==================== */
.purchase-section {
    margin: 4rem 0;
}

.purchase-banner {
    background: linear-gradient(135deg, #2d5016 0%, #4a7c29 100%);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 15px 50px rgba(45, 80, 22, 0.3);
    position: relative;
    overflow: hidden;
}

.purchase-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.purchase-content {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 2rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.purchase-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: white;
    flex-shrink: 0;
}

.purchase-text {
    color: white;
}

.purchase-text h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.purchase-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    opacity: 0.95;
    margin-bottom: 1rem;
}

.purchase-features {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.purchase-features span {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
}

.purchase-features i {
    font-size: 1.2rem;
}

.btn-light {
    background: white;
    color: #2d5016;
    border: none;
}

.btn-light:hover {
    background: #f8fdf5;
    color: #4a7c29;
    transform: translateY(-3px);
}

/* ==================== 相关产品卡片 ==================== */
.related-products {
    margin: 4rem 0;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.related-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    transition: all 0.4s ease;
}

.related-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}

.related-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

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

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

.related-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #ff6b6b, #ff4757);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(255, 71, 87, 0.4);
}

.related-content {
    padding: 2rem;
}

.related-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.related-content h3 {
    font-size: 1.5rem;
    color: #2d5016;
    margin-bottom: 0.8rem;
}

.related-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.related-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #4a7c29;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.related-link:hover {
    gap: 15px;
    color: #2d5016;
}

.related-link i {
    transition: transform 0.3s ease;
}

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

/* ==================== 滚动动画效果 ==================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.fade-in-up {
    opacity: 1;
    animation: fadeInUp 0.8s ease forwards;
}

.fade-in-left {
    opacity: 1;
    animation: fadeInLeft 0.8s ease forwards;
}

.fade-in-right {
    opacity: 1;
    animation: fadeInRight 0.8s ease forwards;
}

/* 延迟动画 */
.fade-in-up:nth-child(1) { animation-delay: 0.1s; }
.fade-in-up:nth-child(2) { animation-delay: 0.2s; }
.fade-in-up:nth-child(3) { animation-delay: 0.3s; }
.fade-in-up:nth-child(4) { animation-delay: 0.4s; }
.fade-in-up:nth-child(5) { animation-delay: 0.5s; }
.fade-in-up:nth-child(6) { animation-delay: 0.6s; }

/* ==================== 响应式设计 ==================== */
@media (max-width: 992px) {
    .product-detail {
        grid-template-columns: 1fr;
        align-items: start;
    }

    .product-image-main {
        height: 400px;
    }

    .product-image-wrapper {
        height: auto;
    }

    .product-info {
        height: auto;
    }

    .product-features {
        flex: none;
    }

    .usage-section {
        padding: 3rem 1.5rem;
        margin: 3rem 0;
    }

    .quality-table-wrapper {
        margin: 1.5rem 0;
    }

    .quality-table th {
        padding: 1rem 0.8rem;
        font-size: 0.9rem;
    }

    .quality-table td {
        padding: 1rem 0.8rem;
        font-size: 0.85rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .process-step {
        grid-template-columns: 60px 60px 1fr;
        gap: 1rem;
    }
    
    .step-number {
        font-size: 2rem;
    }
    
    .step-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .step-line {
        left: 90px;
    }
    
    .storage-grid {
        grid-template-columns: 1fr;
    }
    
    .purchase-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .purchase-icon {
        margin: 0 auto;
    }
    
    .purchase-features {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .product-title {
        font-size: 2rem;
    }
    
    .product-thumbnail-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .features-list {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .process-step {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .step-line {
        display: none;
    }
    
    .step-icon {
        margin: 0 auto;
    }
    
    .image-gallery {
        grid-template-columns: 1fr;
    }
    
    .gallery-item {
        height: 250px;
    }
    
    .support-grid,
    .related-grid {
        grid-template-columns: 1fr;
    }
    
    .product-actions {
        flex-direction: column;
    }
    
    .btn-large {
        width: 100%;
        justify-content: center;
    }
}

/* ==================== 种植步骤画廊样式 ==================== */
.planting-step-gallery {
    margin-bottom: 4rem;
}

.gallery-step-title {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.step-badge {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 0.5rem 1.2rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
}

/* 专家建议样式 */
.comparison-note {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-left: 4px solid var(--secondary-color);
    border-radius: 8px;
    padding: 2rem;
    margin-top: 3rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.comparison-note h4 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.comparison-note h4 i {
    color: var(--secondary-color);
    font-size: 1.5rem;
}

.comparison-note p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin: 0;
}

.comparison-note strong {
    color: var(--secondary-color);
    font-weight: 600;
}

/* 存储注释样式 */
.storage-note {
    background-color: #f0f7f0;
    padding: 1rem 1.5rem;
    border-radius: 6px;
    margin: 1.5rem 0;
    border-left: 3px solid var(--secondary-color);
}

.storage-note strong {
    color: var(--secondary-color);
}

/* 响应式调整 */
@media (max-width: 768px) {
    .gallery-step-title {
        font-size: 1.4rem;
        flex-direction: column;
        align-items: flex-start;
    }
    
    .step-badge {
        font-size: 0.85rem;
        padding: 0.4rem 1rem;
    }
    
    .comparison-note {
        padding: 1.5rem;
    }
    
    .comparison-note h4 {
        font-size: 1.1rem;
    }
    
    .comparison-note p {
        font-size: 0.95rem;
    }
}

/* ==================== 叶子页面特定样式 ==================== */

/* 使用范围和作用部分 */
.usage-section {
    background: linear-gradient(135deg, #f8fdf5 0%, #e8f5e0 100%);
    padding: 4rem 2rem;
    border-radius: 20px;
    margin: 4rem 0;
}

.usage-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.usage-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.4s ease;
    position: relative;
}

.usage-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.usage-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

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

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

.usage-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #4a7c29, #2d5016);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(74, 124, 41, 0.3);
}

.usage-content {
    padding: 2rem;
}

.usage-content h3 {
    font-size: 1.5rem;
    color: #2d5016;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.usage-content h3 i {
    color: #4a7c29;
    font-size: 1.3rem;
}

.usage-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.usage-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.usage-list li {
    padding: 0.8rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #555;
    border-bottom: 1px solid #e8f5e0;
    line-height: 1.5;
}

.usage-list li:last-child {
    border-bottom: none;
}

.usage-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #4a7c29;
    font-weight: bold;
    font-size: 1.1rem;
}

/* 质量等级表格样式 */
.quality-section {
    margin: 4rem 0;
}

.quality-table-wrapper {
    overflow-x: auto;
    margin: 2rem 0;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.quality-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 15px;
    overflow: hidden;
}

.quality-table th {
    background: linear-gradient(135deg, #2d5016, #4a7c29);
    color: white;
    padding: 1.5rem 1rem;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
}

.quality-table th i {
    margin-right: 8px;
    opacity: 0.9;
}

.quality-table td {
    padding: 1.2rem 1rem;
    text-align: center;
    border-bottom: 1px solid #e8f5e0;
    font-size: 0.95rem;
}

.quality-table tbody tr:hover {
    background: linear-gradient(90deg, #f8fdf5 0%, #e8f5e0 100%);
}

.grade-badge {
    display: inline-block;
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    text-align: center;
    min-width: 80px;
}

.grade-badge.premium {
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    color: #8b6914;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.grade-badge.first {
    background: linear-gradient(135deg, #c0c0c0, #e8e8e8);
    color: #555;
    box-shadow: 0 4px 15px rgba(192, 192, 192, 0.3);
}

.grade-badge.second {
    background: linear-gradient(135deg, #cd7f32, #e69a5a);
    color: white;
    box-shadow: 0 4px 15px rgba(205, 127, 50, 0.3);
}

/* 产品展示区域 */
.product-showcase {
    margin-top: 3rem;
}

.showcase-title {
    font-size: 1.8rem;
    color: #2d5016;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    justify-content: center;
}

.showcase-title i {
    color: #4a7c29;
    font-size: 1.5rem;
}

.showcase-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.showcase-item {
    position: relative;
    height: 250px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    cursor: pointer;
    transition: all 0.4s ease;
}

.showcase-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.25);
}

.showcase-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.showcase-item:hover img {
    transform: scale(1.1);
}

.showcase-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(45, 80, 22, 0.95), transparent);
    color: white;
    padding: 1.5rem;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.showcase-item:hover .showcase-overlay {
    transform: translateY(0);
}

.showcase-overlay h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.showcase-overlay p {
    font-size: 0.9rem;
    opacity: 0.9;
    line-height: 1.5;
    margin: 0;
}

/* 叶子页面响应式设计 */
@media (max-width: 768px) {
    .usage-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .usage-card {
        margin-bottom: 1rem;
    }

    .usage-image {
        height: 180px;
    }

    .usage-content {
        padding: 1.5rem;
    }

    .usage-content h3 {
        font-size: 1.3rem;
    }

    .showcase-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .showcase-item {
        height: 200px;
    }

    .showcase-overlay {
        padding: 1rem;
    }

    .showcase-overlay h4 {
        font-size: 1rem;
    }

    .showcase-overlay p {
        font-size: 0.8rem;
    }

    .quality-table-wrapper {
        margin: 1rem 0;
        border-radius: 10px;
    }

    .quality-table th {
        padding: 0.8rem 0.5rem;
        font-size: 0.8rem;
    }

    .quality-table td {
        padding: 0.8rem 0.5rem;
        font-size: 0.8rem;
    }

    .grade-badge {
        padding: 6px 12px;
        font-size: 0.8rem;
        min-width: 60px;
    }
}

@media (max-width: 576px) {
    .showcase-grid {
        grid-template-columns: 1fr;
    }

    .showcase-item {
        height: 220px;
    }

    .usage-list li {
        font-size: 0.9rem;
        padding: 0.6rem 0;
        padding-left: 1.3rem;
    }

    .usage-section {
        padding: 2rem 1rem;
        margin: 2rem 0;
    }

    .quality-section {
        margin: 2rem 0;
    }

    .product-showcase {
        margin-top: 2rem;
    }
}

/* ==================== 联系我们页面样式 (中文和英文通用) ==================== */

/* 联系我们英雄区域 */
.contact-hero {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, rgba(45, 80, 22, 0.8), rgba(74, 124, 41, 0.7));
    margin-top: 0;
}

.contact-hero .hero-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.contact-hero .hero-bg-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contact-hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 2rem 0;
}

.contact-hero .hero-text {
    text-align: center;
    color: white;
    max-width: 600px;
    margin: 0 auto;
}

.contact-hero .hero-text h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.contact-hero .hero-text p {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    line-height: 1.6;
}

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

/* 联系方式区域 */
.contact-info-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8fdf5 0%, #e8f5e0 100%);
}

.contact-methods-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.contact-method-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.contact-method-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #2d5016, #4a7c29);
}

.contact-method-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.contact-method-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #2d5016, #4a7c29);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    transition: all 0.4s ease;
}

.contact-method-card:hover .contact-method-icon {
    transform: scale(1.1) rotate(360deg);
}

.contact-method-card h3 {
    font-size: 1.5rem;
    color: #2d5016;
    margin-bottom: 1rem;
    font-weight: 600;
}

.contact-detail {
    font-size: 1.1rem;
    color: #333;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.contact-time {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 1.5rem;
}

.contact-btn {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    background: linear-gradient(135deg, #4a7c29, #2d5016);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.contact-btn:hover {
    background: linear-gradient(135deg, #2d5016, #4a7c29);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(74, 124, 41, 0.3);
}

.qr-code-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.contact-qr {
    width: 100px;
    height: 100px;
    border: 3px solid #4a7c29;
    border-radius: 10px;
    padding: 5px;
    background: white;
}

/* 联系表单区域 */
.contact-form-section {
    padding: 5rem 0;
    background: white;
}

.contact-form-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: stretch;
}

.form-info {
    padding: 2rem;
    background: linear-gradient(135deg, #f8fdf5 0%, #e8f5e0 100%);
    border-radius: 15px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.form-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.form-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #4a7c29, #2d5016);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(74, 124, 41, 0.3);
}

.form-info h2 {
    font-size: 2rem;
    color: #2d5016;
    margin: 0;
}

.form-info p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.form-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    flex: 1;
    justify-content: center;
}

.form-feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.8rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.form-feature i {
    color: #4a7c29;
    font-size: 1.2rem;
    width: 20px;
}

.form-feature span {
    color: #333;
    font-weight: 500;
}

.contact-form {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    height: 100%;
    display: flex;
    flex-direction: column;
}

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

.form-group {
    margin-bottom: 1rem;
}

.form-content {
    flex: 1;
    overflow-y: auto;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #333;
    font-weight: 600;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e8f5e0;
    border-radius: 10px;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #f8fdf5;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #4a7c29;
    background: white;
    box-shadow: 0 0 0 3px rgba(74, 124, 41, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.checkbox-group {
    margin-bottom: 0;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    cursor: pointer;
    font-size: 0.9rem;
    color: #666;
}

.checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: #4a7c29;
}

.submit-btn {
    width: 100%;
    padding: 1rem;
    background: linear-gradient(135deg, #4a7c29, #2d5016);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    flex-shrink: 0;
    margin-top: 1rem;
}

.submit-btn:hover {
    background: linear-gradient(135deg, #2d5016, #4a7c29);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(74, 124, 41, 0.3);
}

.submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

/* 公司信息区域 */
.company-info-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.company-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.company-info-card {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    text-align: center;
    transition: all 0.4s ease;
}

.company-info-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.company-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #2d5016, #4a7c29);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    transition: all 0.4s ease;
}

.company-info-card:hover .company-icon {
    transform: rotateY(360deg);
}

.company-info-card h3 {
    font-size: 1.5rem;
    color: #2d5016;
    margin-bottom: 1rem;
}

.company-info-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.company-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.company-features li {
    padding: 0.5rem 0;
    color: #555;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.company-features li i {
    color: #4a7c29;
    font-size: 1rem;
    width: 16px;
}

/* 地理位置信息 */
.location-info {
    background: white;
    border-radius: 15px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.location-title {
    font-size: 1.8rem;
    color: #2d5016;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.location-title i {
    color: #4a7c29;
    font-size: 1.5rem;
}

.location-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.location-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.location-item {
    padding: 1rem;
    background: #f8fdf5;
    border-radius: 10px;
    border-left: 4px solid #4a7c29;
}

.location-item strong {
    color: #2d5016;
    display: block;
    margin-bottom: 0.3rem;
}

.location-item span {
    color: #666;
    line-height: 1.5;
}

.location-map {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.map-placeholder {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.map-overlay {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: rgba(45, 80, 22, 0.9);
    color: white;
    padding: 1rem;
    border-radius: 10px;
    text-align: center;
}

.map-overlay p {
    margin: 0 0 1rem 0;
    font-weight: 600;
}

.map-btn {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 2px solid white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.map-btn:hover {
    background: white;
    color: #2d5016;
}

/* 在线客服区域 */
.online-service {
    padding: 0 0 5rem 0;
}

.service-banner {
    background: linear-gradient(135deg, #2d5016 0%, #4a7c29 100%);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 15px 50px rgba(45, 80, 22, 0.3);
    position: relative;
    overflow: hidden;
}

.service-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.service-content {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 2rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.service-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: white;
    flex-shrink: 0;
}

.service-text {
    color: white;
}

.service-text h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.service-text p {
    font-size: 1.1rem;
    line-height: 1.6;
    opacity: 0.95;
    margin-bottom: 1.5rem;
}

.service-features {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.service-features span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    font-weight: 500;
}

.service-features i {
    font-size: 1rem;
}

.service-btn {
    background: rgba(255, 255, 255, 0.9);
    color: #2d5016;
    border: none;
    padding: 1rem 2rem;
    border-radius: 25px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-shrink: 0;
}

.service-btn:hover {
    background: white;
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

/* 联系页面响应式设计 */
@media (max-width: 992px) {
    .contact-form-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .form-info {
        padding: 1.5rem;
        height: auto;
    }

    .form-header {
        flex-direction: column;
        text-align: center;
        gap: 0.8rem;
    }

    .form-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    .contact-form {
        padding: 1.5rem;
        height: auto;
    }

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

    .form-features {
        flex: none;
        justify-content: flex-start;
    }

    .company-info-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .location-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .service-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1.5rem;
    }

    .service-icon {
        margin: 0 auto;
    }

    .contact-hero {
        min-height: 400px;
    }

    .contact-hero .hero-text h1 {
        font-size: 2.5rem;
    }

    .contact-hero .hero-text p {
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    .contact-hero .hero-text h1 {
        font-size: 2.5rem;
    }

    .contact-hero .hero-text p {
        font-size: 1.1rem;
    }

    .contact-methods-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .contact-method-card {
        padding: 2rem 1.5rem;
    }

    .form-info h2 {
        font-size: 1.6rem;
    }

    .contact-form {
        padding: 1.5rem;
    }

    .company-info-card {
        padding: 2rem 1.5rem;
    }

    .location-info {
        padding: 2rem 1.5rem;
    }

    .service-banner {
        padding: 2rem 1.5rem;
    }

    .service-text h2 {
        font-size: 1.6rem;
    }

    .service-features {
        gap: 1rem;
    }
}

@media (max-width: 576px) {
    .contact-hero {
        min-height: 400px;
    }

    .contact-hero .hero-text h1 {
        font-size: 2rem;
    }

    .contact-hero .hero-text p {
        font-size: 1rem;
    }

    .contact-method-card {
        padding: 1.5rem 1rem;
    }

    .contact-method-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .form-info {
        padding: 1rem;
    }

    .contact-form {
        padding: 1rem;
    }

    .form-icon {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }

    .form-info h2 {
        font-size: 1.6rem;
    }

    .service-features {
        flex-direction: column;
        gap: 0.8rem;
    }
    
    /* About页面小屏幕优化 */
    .about-page .intro-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

/* About页面增强样式 */

/* 公司简介统计数据 */
.company-intro {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
}

.intro-content {
    position: relative;
    z-index: 2;
}

.intro-background {
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    background: linear-gradient(135deg, rgba(74, 144, 226, 0.05), rgba(142, 45, 226, 0.05));
    border-radius: 20px;
    z-index: 1;
}

.intro-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 15px;
    color: white;
    box-shadow: var(--shadow);
    transition: transform 0.3s;
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.9;
    font-weight: 500;
}

/* 产业链流程图 */
.chain-process {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 3rem 0;
}

.process-item {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 2rem;
    background: var(--bg-white);
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: all 0.3s;
}

.process-item:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-3px);
}

.process-icon {
    font-size: 3rem;
    color: var(--secondary-color);
    background: var(--bg-light);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.process-content h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.process-features {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.feature-tag {
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.process-arrow {
    text-align: center;
    font-size: 2rem;
    color: var(--secondary-color);
    margin: 1rem 0;
}

.chain-advantages {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
    padding: 1rem;
}

.advantage-item {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(76, 175, 80, 0.1);
}

.advantage-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #4CAF50, #8BC34A);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.advantage-item::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(76, 175, 80, 0.03) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.advantage-item:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(76, 175, 80, 0.15);
    border-color: rgba(76, 175, 80, 0.3);
}

.advantage-item:hover::before {
    transform: scaleX(1);
}

.advantage-item:hover::after {
    opacity: 1;
}

.advantage-item:hover .advantage-icon {
    transform: scale(1.2) rotate(10deg);
}

.advantage-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    display: inline-block;
    width: 80px;
    height: 80px;
    line-height: 80px;
    text-align: center;
    background: linear-gradient(135deg, #4CAF50, #8BC34A);
    border-radius: 20px;
    box-shadow: 0 8px 20px rgba(76, 175, 80, 0.25);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1;
}

.advantage-item h4 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #2c3e50;
    margin: 1.5rem 0 1rem;
    position: relative;
    z-index: 1;
}

.advantage-item p {
    font-size: 1rem;
    color: #666;
    line-height: 1.7;
    margin: 0;
    position: relative;
    z-index: 1;
}

/* 为每个卡片添加不同的强调色 */
.advantage-item:nth-child(1) {
    border-left: 4px solid #4CAF50;
}

.advantage-item:nth-child(1) .advantage-icon {
    background: linear-gradient(135deg, #4CAF50, #66BB6A);
}

.advantage-item:nth-child(2) {
    border-left: 4px solid #2196F3;
}

.advantage-item:nth-child(2) .advantage-icon {
    background: linear-gradient(135deg, #2196F3, #42A5F5);
}

.advantage-item:nth-child(3) {
    border-left: 4px solid #FF9800;
}

.advantage-item:nth-child(3) .advantage-icon {
    background: linear-gradient(135deg, #FF9800, #FFA726);
}

/* 响应式设计 */
@media (max-width: 768px) {
    .chain-advantages {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0.5rem;
    }
    
    .advantage-item {
        padding: 2rem 1.5rem;
    }
    
    .advantage-icon {
        width: 70px;
        height: 70px;
        line-height: 70px;
        font-size: 3rem;
    }
    
    .advantage-item h4 {
        font-size: 1.3rem;
    }
}

/* 通用优势样式 - 已移除以避免与其他页面冲突 */

/* 使命愿景卡片 */
.mission-vision-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.mission-card {
    background: var(--bg-white);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: var(--shadow);
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.mission-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

.mission-card:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-8px);
}

.mission-icon {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    text-align: center;
}

.mission-title {
    font-size: 1.2rem;
    color: var(--secondary-color);
    font-weight: 600;
    margin: 1rem 0;
    text-align: center;
}

.mission-desc {
    color: var(--text-dark);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.mission-highlights {
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
    justify-content: center;
}

.mission-highlights span {
    background: var(--bg-light);
    color: var(--primary-color);
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
}

/* 企业文化 */
.company-culture {
    margin-top: 4rem;
    padding: 3rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 20px;
    border: 1px solid rgba(76, 175, 80, 0.1);
}

.company-culture h3 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #2c3e50;
    text-align: center;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
    width: 100%;
}

.company-culture h3::before {
    content: '✨';
    margin-right: 1rem;
    font-size: 1.8rem;
    vertical-align: middle;
}

.company-culture h3::after {
    content: '';
    display: block;
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #4CAF50, #8BC34A);
    margin: 1rem auto 0;
    border-radius: 2px;
    animation: growWidth 1s ease-out;
}

@keyframes growWidth {
    from {
        width: 0;
    }
    to {
        width: 100px;
    }
}

.culture-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.culture-item {
    text-align: center;
    padding: 2.5rem 2rem;
    background: linear-gradient(135deg, #ffffff 0%, #fafafa 100%);
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(76, 175, 80, 0.1);
}

.culture-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #4CAF50, #8BC34A);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.culture-item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 35px rgba(76, 175, 80, 0.15);
    border-color: rgba(76, 175, 80, 0.3);
}

.culture-item:hover::before {
    transform: scaleX(1);
}

.culture-item:hover .culture-number {
    transform: scale(1.1) rotate(360deg);
}

.culture-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #4CAF50, #66BB6A);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
    box-shadow: 0 6px 20px rgba(76, 175, 80, 0.25);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.culture-number::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid rgba(76, 175, 80, 0.3);
    animation: ripple 2s infinite;
}

@keyframes ripple {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

.culture-item h4 {
    font-size: 1.4rem;
    color: #2c3e50;
    margin-bottom: 1rem;
    font-weight: 600;
}

.culture-item p {
    color: #666;
    line-height: 1.8;
}

/* 核心优势卡片 */
.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.advantage-card {
    background: var(--bg-white);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: var(--shadow);
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.advantage-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

.advantage-card:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-8px);
}

.advantage-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.advantage-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--secondary-color);
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.advantage-desc {
    color: var(--text-dark);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.advantage-features {
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
}

.feature-badge {
    background: var(--bg-light);
    color: var(--primary-color);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid var(--border-color);
}

/* 团队介绍 */
.industry-chain-page .team-section {
    background: var(--bg-light);
    padding: 4rem 0;
}

.industry-chain-page .team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.industry-chain-page .team-member {
    background: var(--bg-white);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.3s;
}

.industry-chain-page .team-member:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-8px);
}

.industry-chain-page .member-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 3px solid var(--bg-white);
    background: var(--bg-light);
}

.industry-chain-page .member-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    transition: transform 0.3s;
}

.industry-chain-page .member-avatar:hover img {
    transform: scale(1.1);
}

.industry-chain-page .team-member:hover .member-avatar {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.industry-chain-page .member-name {
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.industry-chain-page .member-position {
    color: var(--secondary-color);
    font-weight: 500;
    margin-bottom: 1rem;
}

.industry-chain-page .member-desc {
    color: var(--text-dark);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.industry-chain-page .member-expertise {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.industry-chain-page .member-expertise span {
    background: var(--bg-light);
    color: var(--primary-color);
    padding: 0.3rem 0.6rem;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* 认证资质 */
.industry-chain-page .certification-section {
    padding: 4rem 0;
}

.industry-chain-page .cert-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

.industry-chain-page .cert-item {
    background: var(--bg-white);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.3s;
    border-left: 4px solid var(--secondary-color);
}

.industry-chain-page .cert-item:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-5px);
}

.industry-chain-page .cert-icon {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

.industry-chain-page .cert-item h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

.industry-chain-page .cert-item p {
    color: var(--text-dark);
    line-height: 1.6;
    font-size: 0.9rem;
}

/* CTA按钮组 */
.industry-chain-page .cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.industry-chain-page .btn-outline {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    padding: 0.8rem 2rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
    display: inline-block;
}

.industry-chain-page .btn-outline:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

/* 加入产业链区域 */
.industry-chain-page .join-section {
    background: linear-gradient(135deg, var(--bg-light), rgba(142, 45, 226, 0.05));
    padding: 4rem 0;
    margin: 4rem 0;
    border-radius: 20px;
}

.industry-chain-page .join-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.industry-chain-page .join-title {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 700;
}

.industry-chain-page .join-subtitle {
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-bottom: 2rem;
    opacity: 0.9;
}

.industry-chain-page .join-benefits {
    display: grid;
    gap: 1.5rem;
}

.industry-chain-page .benefit-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--bg-white);
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: all 0.3s;
}

.industry-chain-page .benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.industry-chain-page .benefit-icon {
    font-size: 2.5rem;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    color: white;
}

.industry-chain-page .benefit-content h4 {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.industry-chain-page .benefit-content p {
    color: var(--text-dark);
    font-size: 0.9rem;
    line-height: 1.5;
}

.industry-chain-page .join-visual {
    text-align: center;
}

.industry-chain-page .join-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.industry-chain-page .join-stat {
    padding: 1.5rem;
    background: var(--bg-white);
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: transform 0.3s;
}

.industry-chain-page .join-stat:hover {
    transform: translateY(-5px);
}

.industry-chain-page .join-stat .stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.industry-chain-page .join-stat .stat-label {
    font-size: 0.9rem;
    color: var(--text-dark);
    font-weight: 500;
}

.industry-chain-page .join-buttons {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    align-items: stretch;
    width: 100%;
}

.industry-chain-page .join-buttons .btn {
    width: 100%;
}

.industry-chain-page .join-buttons .btn-secondary {
    background-color: var(--secondary-color);
    color: white;
    border: 2px solid var(--secondary-color);
}

.industry-chain-page .join-buttons .btn-secondary:hover {
    background-color: transparent;
    color: var(--secondary-color);
}

.industry-chain-page .join-buttons .btn-outline {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.industry-chain-page .join-buttons .btn-outline:hover {
    background-color: var(--primary-color);
    color: white;
}

.industry-chain-page .btn-large {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 30px;
    min-width: 200px;
    text-align: center;
    transition: all 0.3s ease;
}

/* 加入区域响应式设计 */
@media (max-width: 768px) {
    .industry-chain-page .join-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .industry-chain-page .join-title {
        font-size: 2rem;
    }

    .industry-chain-page .join-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .industry-chain-page .join-buttons {
        max-width: 300px;
        margin: 0 auto;
    }
}

/* 按钮高亮效果 */
.industry-chain-page .btn-highlight {
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color)) !important;
    color: white !important;
    font-weight: 600 !important;
    box-shadow: 0 4px 15px rgba(142, 45, 226, 0.3) !important;
    border: none !important;
    animation: pulse 2s infinite !important;
}

.industry-chain-page .btn-highlight:hover {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color)) !important;
    box-shadow: 0 6px 20px rgba(142, 45, 226, 0.4) !important;
    transform: translateY(-3px) scale(1.05) !important;
    animation: none !important;
}

@keyframes pulse {
    0% {
        box-shadow: 0 4px 15px rgba(142, 45, 226, 0.3);
    }
    50% {
        box-shadow: 0 4px 25px rgba(142, 45, 226, 0.5);
    }
    100% {
        box-shadow: 0 4px 15px rgba(142, 45, 226, 0.3);
    }
}

/* FAQ增强样式 */
.industry-chain-page .faq-process {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.industry-chain-page .process-step {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.industry-chain-page .step-number {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.industry-chain-page .step-content h4 {
    font-size: 1.1rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.industry-chain-page .step-content p {
    font-size: 0.9rem;
    color: var(--text-dark);
    line-height: 1.5;
}

/* 质量体系 */
.industry-chain-page .quality-system {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.industry-chain-page .quality-level h4 {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

.industry-chain-page .quality-level ul {
    list-style: none;
    padding: 0;
}

.industry-chain-page .quality-level li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.industry-chain-page .quality-level li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: 600;
}

/* 价格因素 */
.industry-chain-page .price-factors {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.industry-chain-page .factor-category h4 {
    font-size: 1.1rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

.industry-chain-page .factor-category ul {
    list-style: none;
    padding: 0;
}

.industry-chain-page .factor-category li {
    padding: 0.4rem 0;
    font-size: 0.9rem;
    color: var(--text-dark);
    position: relative;
    padding-left: 1.2rem;
}

.industry-chain-page .factor-category li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
}

.industry-chain-page .discount-info {
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: 10px;
    margin-top: 2rem;
    border-left: 4px solid var(--secondary-color);
}

.industry-chain-page .discount-info ul {
    list-style: none;
    padding: 0;
}

.industry-chain-page .discount-info li {
    padding: 0.3rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.industry-chain-page .discount-info li::before {
    content: '💰';
    position: absolute;
    left: 0;
}

/* 交付时间表 */
.delivery-timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.product-delivery {
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: 10px;
}

.product-delivery h4 {
    font-size: 1.1rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

.product-delivery ul {
    list-style: none;
    padding: 0;
}

.product-delivery li {
    padding: 0.5rem 0;
    font-size: 0.9rem;
    color: var(--text-dark);
    position: relative;
    padding-left: 1.5rem;
}

.product-delivery li::before {
    content: '📦';
    position: absolute;
    left: 0;
}

/* 物流信息 */
.logistics-info,
.tracking-system {
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: 10px;
    margin: 1.5rem 0;
}

.logistics-info h4,
.tracking-system h4 {
    font-size: 1.1rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

.logistics-info ul,
.tracking-system ul {
    list-style: none;
    padding: 0;
}

.logistics-info li,
.tracking-system li {
    padding: 0.5rem 0;
    font-size: 0.9rem;
    color: var(--text-dark);
    position: relative;
    padding-left: 1.5rem;
}

.logistics-info li::before,
.tracking-system li::before {
    content: '🚛';
    position: absolute;
    left: 0;
}

.tracking-system li::before {
    content: '📱';
}

/* 通用服务分类样式 - 已移除以避免与其他页面冲突 */

/* 出口信息 */
.export-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.export-qualification,
.export-countries,
.export-process,
.export-documents {
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: 10px;
}

.export-qualification h4,
.export-countries h4,
.export-process h4,
.export-documents h4 {
    font-size: 1.1rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

.export-qualification ul,
.export-process ul,
.export-documents ul {
    list-style: none;
    padding: 0;
}

.export-qualification li,
.export-process li,
.export-documents li {
    padding: 0.4rem 0;
    font-size: 0.9rem;
    color: var(--text-dark);
    position: relative;
    padding-left: 1.5rem;
}

.export-qualification li::before,
.export-process li::before,
.export-documents li::before {
    content: '📋';
    position: absolute;
    left: 0;
}

.export-documents li::before {
    content: '📄';
}

/* 供应链策略 */
.supply-chain-strategy {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.strategy-item {
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: 10px;
}

.strategy-item h4 {
    font-size: 1.1rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

.strategy-item ul {
    list-style: none;
    padding: 0;
}

.strategy-item li {
    padding: 0.4rem 0;
    font-size: 0.9rem;
    color: var(--text-dark);
    position: relative;
    padding-left: 1.5rem;
}

.strategy-item li::before {
    content: '🔗';
    position: absolute;
    left: 0;
}

/* 售后服务 */
.after-sales-service {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.service-type {
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: 10px;
}

.service-type h4 {
    font-size: 1.1rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

.service-type ul {
    list-style: none;
    padding: 0;
}

.service-type li {
    padding: 0.4rem 0;
    font-size: 0.9rem;
    color: var(--text-dark);
    position: relative;
    padding-left: 1.5rem;
}

.service-type li::before {
    content: '🔧';
    position: absolute;
    left: 0;
}

.service-type:nth-child(2) li::before {
    content: '📞';
}

.service-type:nth-child(3) li::before {
    content: '🔄';
}

.service-type:nth-child(4) li::before {
    content: '💼';
}

/* 高亮文本 */
.industry-chain-page .highlight {
    color: var(--secondary-color);
    font-weight: 600;
    text-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

/* About页面团队样式 - 确保不与industry-chain冲突 */
.about-page .team-section {
    background: var(--bg-light);
    padding: 4rem 0;
}

.about-page .team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.about-page .team-member {
    background: var(--bg-white);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.3s;
}

.about-page .team-member:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-8px);
}

.about-page .member-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 3px solid var(--bg-white);
    background: var(--bg-light);
}

.about-page .member-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    transition: transform 0.3s;
}

.about-page .member-avatar:hover img {
    transform: scale(1.1);
}

.about-page .team-member:hover .member-avatar {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.about-page .member-name {
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.about-page .member-position {
    color: var(--secondary-color);
    font-weight: 500;
    margin-bottom: 1rem;
}

.about-page .member-desc {
    color: var(--text-dark);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.about-page .member-expertise {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.about-page .member-expertise span {
    background: var(--bg-light);
    color: var(--primary-color);
    padding: 0.3rem 0.6rem;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* About页面认证样式 */
.about-page .certification-section {
    padding: 4rem 0;
}

.about-page .cert-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.about-page .cert-item {
    background: var(--bg-white);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.3s;
    border-left: 4px solid var(--secondary-color);
}

.about-page .cert-item:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-5px);
}

.about-page .cert-icon {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

.about-page .cert-item h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

.about-page .cert-item p {
    color: var(--text-dark);
    line-height: 1.6;
    font-size: 0.9rem;
}

/* About页面 - 开始合作区域样式 */
.about-page .cta-section {
    background: linear-gradient(135deg, #f8fdf9 0%, #ffffff 50%, #f0f9f4 100%);
    border-radius: 30px;
    padding: 4rem 3rem;
    margin: 4rem 0;
    box-shadow: 0 15px 40px rgba(76, 175, 80, 0.1);
    border: 2px solid rgba(76, 175, 80, 0.15);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.about-page .cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(76, 175, 80, 0.05) 0%, transparent 70%);
    animation: rotateBackground 20s linear infinite;
}

.about-page .cta-section::after {
    content: '🤝';
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 3rem;
    opacity: 0.1;
    animation: float 3s ease-in-out infinite;
}

@keyframes rotateBackground {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

.about-page .cta-section .section-title {
    position: relative;
    z-index: 1;
    font-size: 2.5rem;
    background: linear-gradient(135deg, #2d5016, #4CAF50);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    text-shadow: 0 2px 10px rgba(76, 175, 80, 0.1);
}

.about-page .cta-section .section-subtitle {
    position: relative;
    z-index: 1;
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 3rem;
    font-weight: 400;
}

.about-page .cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
    margin-top: 2rem;
}

.about-page .cta-buttons .btn {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    min-width: 200px;
    text-align: center;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.about-page .cta-buttons .btn i {
    transition: all 0.3s ease;
    font-size: 1rem;
}

.about-page .cta-buttons .btn:hover i {
    transform: scale(1.2);
}

.about-page .cta-buttons .btn-primary {
    background: linear-gradient(135deg, #2d5016, #4a7c29);
    color: white;
    border: none;
    box-shadow: 0 8px 25px rgba(45, 80, 22, 0.3);
}

.about-page .cta-buttons .btn-primary:hover {
    background: linear-gradient(135deg, #4a7c29, #2d5016);
    box-shadow: 0 12px 35px rgba(45, 80, 22, 0.4);
    transform: translateY(-5px) scale(1.05);
}

.about-page .cta-buttons .btn-primary:hover i {
    animation: shake 0.5s ease;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    75% { transform: translateX(5px); }
}

/* About页面按钮高亮效果 */
.about-page .btn-highlight {
    background: linear-gradient(135deg, #4CAF50, #8BC34A) !important;
    color: white !important;
    font-weight: 600 !important;
    box-shadow: 0 8px 30px rgba(76, 175, 80, 0.4) !important;
    border: none !important;
    animation: pulseGreen 2s infinite !important;
    position: relative !important;
    overflow: hidden !important;
}

.about-page .btn-highlight::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
    transform: translate(-50%, -50%) scale(0);
    transition: transform 0.5s ease;
}

.about-page .btn-highlight:hover::after {
    transform: translate(-50%, -50%) scale(2);
}

.about-page .btn-highlight:hover {
    background: linear-gradient(135deg, #66BB6A, #4CAF50) !important;
    box-shadow: 0 12px 40px rgba(76, 175, 80, 0.5) !important;
    transform: translateY(-5px) scale(1.08) !important;
    animation: none !important;
}

.about-page .btn-highlight:hover i {
    animation: bounce 0.6s ease;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0) scale(1.2); }
    50% { transform: translateY(-8px) scale(1.2); }
}

@keyframes pulseGreen {
    0% {
        box-shadow: 0 8px 30px rgba(76, 175, 80, 0.4);
    }
    50% {
        box-shadow: 0 8px 35px rgba(76, 175, 80, 0.6), 0 0 40px rgba(76, 175, 80, 0.3);
    }
    100% {
        box-shadow: 0 8px 30px rgba(76, 175, 80, 0.4);
    }
}

.about-page .cta-buttons .btn-outline {
    background: white;
    color: #4CAF50;
    border: 2px solid #4CAF50;
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.15);
    position: relative;
}

.about-page .cta-buttons .btn-outline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #4CAF50, #66BB6A);
    border-radius: 30px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.about-page .cta-buttons .btn-outline:hover {
    color: white;
    border-color: #4CAF50;
    box-shadow: 0 8px 25px rgba(76, 175, 80, 0.3);
    transform: translateY(-5px) scale(1.05);
}

.about-page .cta-buttons .btn-outline:hover::before {
    opacity: 1;
}

.about-page .cta-buttons .btn-outline:hover i {
    animation: rotate 0.6s ease;
}

@keyframes rotate {
    0%, 100% { transform: rotate(0deg) scale(1.2); }
    50% { transform: rotate(180deg) scale(1.2); }
}

/* 响应式设计 */
@media (max-width: 768px) {
    .about-page .cta-section {
        padding: 3rem 2rem;
        margin: 3rem 0;
    }
    
    .about-page .cta-section::after {
        font-size: 2rem;
        top: 10px;
        right: 15px;
    }
    
    .about-page .cta-section .section-title {
        font-size: 2rem;
    }
    
    .about-page .cta-section .section-subtitle {
        font-size: 1rem;
    }
    
    .about-page .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .about-page .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
}

/* About页面和Industry Chain页面响应式设计 */
@media (max-width: 768px) {
    /* About页面样式 */
    .about-page .company-intro {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-page .intro-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .about-page .stat-item {
        padding: 1rem;
    }
    
    .about-page .stat-number {
        font-size: 2rem;
    }
    
    .about-page .team-grid,
    .about-page .cert-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .about-page .member-expertise {
        justify-content: center;
    }

    /* Industry Chain页面样式 */
    .industry-chain-page .page-header-content {
        gap: 1.5rem;
    }

    .industry-chain-page .page-header-text {
        padding-right: 0;
        width: 100%;
    }

    .industry-chain-page .page-title {
        font-size: 2.2rem;
    }

    .industry-chain-page .page-subtitle {
        font-size: 1.1rem;
    }

    .industry-chain-page .page-header-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .industry-chain-page .page-header-buttons {
        justify-content: center;
        margin-bottom: 1.5rem;
        width: 100%;
    }

    .industry-chain-page .chain-diagram {
        flex-wrap: wrap;
        gap: 1rem;
        padding: 2rem 1rem;
        justify-content: center;
        align-items: center;
    }

    .industry-chain-page .chain-node {
        min-width: 100px;
        min-height: 100px;
        width: 100px;
        height: 100px;
        padding: 1rem;
        gap: 0.6rem;
        flex-shrink: 0;
    }
    
    .industry-chain-page .node-icon {
        font-size: 2.2rem;
        line-height: 1;
    }

    .industry-chain-page .node-label {
        font-size: 0.8rem;
        white-space: nowrap;
    }

    .industry-chain-page .chain-connector {
        width: 30px;
        height: 3px;
        flex-shrink: 0;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .industry-chain-page .chain-connector::before {
        font-size: 1rem;
    }

    .industry-chain-page .company-intro {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .industry-chain-page .intro-background {
        top: -15px;
        left: -15px;
        right: -15px;
        bottom: -15px;
    }

    .industry-chain-page .intro-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .industry-chain-page .stat-item {
        padding: 1rem;
    }

    .industry-chain-page .stat-number {
        font-size: 2rem;
    }

    .industry-chain-page .chain-process {
        gap: 1rem;
    }

    .industry-chain-page .process-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
        padding: 1.5rem;
    }

    .industry-chain-page .process-arrow {
        transform: rotate(90deg);
        margin: 0.5rem 0;
    }

    .industry-chain-page .mission-vision-grid,
    .industry-chain-page .advantages-grid,
    .industry-chain-page .team-grid,
    .industry-chain-page .cert-grid,
    .industry-chain-page .chain-process-grid,
    .industry-chain-page .chain-advantages {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    /* 移动端专业服务体系特殊处理 - 一个卡片一行 */
    .industry-chain-page .service-grid {
        grid-template-columns: 1fr !important;
        gap: 2rem;
    }

    .industry-chain-page .service-card {
        padding: 1.5rem;
        width: 100%;
        max-width: 100%;
    }

    .industry-chain-page .service-header {
        margin-bottom: 1.2rem;
    }

    .industry-chain-page .service-icon {
        width: 55px;
        height: 55px;
        font-size: 2rem;
    }

    .industry-chain-page .service-badge {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }

    .industry-chain-page .service-content h3 {
        font-size: 1.3rem;
    }

    .industry-chain-page .service-features {
        grid-template-columns: 1fr;
        gap: 0.6rem;
        padding: 0.8rem;
    }

    .industry-chain-page .feature-item {
        padding: 0.2rem 0;
    }

    .industry-chain-page .service-stats {
        gap: 0.8rem;
    }

    .industry-chain-page .service-stat {
        padding: 0.8rem;
    }

    .industry-chain-page .service-stat .stat-value {
        font-size: 1.5rem;
    }

    /* 移动端认证与资质特殊处理 */
    .industry-chain-page .cert-grid {
        grid-template-columns: 1fr;
    }

    .industry-chain-page .process-features,
    .industry-chain-page .mission-highlights,
    .industry-chain-page .advantage-features,
    .industry-chain-page .member-expertise,
    .industry-chain-page .step-features {
        justify-content: center;
    }

    .industry-chain-page .faq-process {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .industry-chain-page .quality-system,
    .industry-chain-page .price-factors,
    .industry-chain-page .delivery-timeline,
    .industry-chain-page .service-categories,
    .industry-chain-page .export-info,
    .industry-chain-page .supply-chain-strategy,
    .industry-chain-page .after-sales-service,
    .industry-chain-page .innovation-support,
    .industry-chain-page .cooperation-modes,
    .industry-chain-page .sustainability-commitment {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .industry-chain-page .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .industry-chain-page .btn-outline {
        width: 100%;
        max-width: 200px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .about-page .member-expertise {
        flex-direction: column;
        gap: 0.5rem;
    }
}

/* Industry Chain页面样式 - 限定范围避免冲突 */
.industry-chain-page .page-header {
    background: linear-gradient(135deg, var(--bg-light), #f8f9fa);
    padding: 4rem 0 2rem;
    border-bottom: 1px solid var(--border-color);
}

.industry-chain-page .page-header-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
    text-align: center;
}

.industry-chain-page .page-header-text {
    width: 100%;
    max-width: 1200px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.industry-chain-page .page-title {
    font-size: 2.8rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 700;
    line-height: 1.2;
}

.industry-chain-page .page-subtitle {
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    opacity: 0.9;
    max-width: 800px;
}

.industry-chain-page .page-header-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin: 2rem 0;
    width: 100%;
    max-width: 900px;
}

.industry-chain-page .header-stat {
    text-align: center;
    padding: 1.5rem 1rem;
    background: var(--bg-white);
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: transform 0.3s;
}

.industry-chain-page .header-stat:hover {
    transform: translateY(-5px);
}

.industry-chain-page .stat-value {
    font-size: 2rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
    text-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

.industry-chain-page .stat-label {
    font-size: 0.9rem;
    color: var(--text-dark);
    font-weight: 500;
}

.industry-chain-page .page-header-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 2rem;
}

.industry-chain-page .page-header-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 1200px;
}

.industry-chain-page .chain-diagram {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    padding: 2.5rem 2rem;
    background: linear-gradient(135deg, rgba(247, 246, 241, 0.5), rgba(255, 255, 255, 0.8));
    border-radius: 30px;
    box-shadow: 0 10px 40px rgba(31, 72, 52, 0.08);
    max-width: 100%;
    width: 100%;
    margin: 0 auto;
    position: relative;
    overflow: visible;
}

/* 中等屏幕及以上：强制横向不换行 */
@media (min-width: 769px) {
    .industry-chain-page .chain-diagram {
        flex-wrap: nowrap;
        padding: 2.5rem 2rem;
    }
}

/* 平板横向及小桌面优化 */
@media (min-width: 1024px) {
    .industry-chain-page .chain-diagram {
        padding: 2.5rem 3rem;
        gap: 1.8rem;
    }
}

/* 大屏幕优化 */
@media (min-width: 1200px) {
    .industry-chain-page .chain-diagram {
        padding: 3rem 4rem;
        gap: 2rem;
    }
    
    .industry-chain-page .chain-node {
        min-width: 150px;
        min-height: 150px;
    }
    
    .industry-chain-page .chain-connector {
        width: 50px;
    }
}

.industry-chain-page .chain-diagram::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color), var(--secondary-color));
    border-radius: 30px;
    opacity: 0;
    z-index: -1;
    transition: opacity 0.4s ease;
}

.industry-chain-page .chain-diagram:hover::before {
    opacity: 0.15;
}

.industry-chain-page .chain-node {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 2rem 2.5rem;
    background: linear-gradient(135deg, #ffffff, #f9f9f9);
    border-radius: 20px;
    border: 3px solid transparent;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    min-width: 140px;
    min-height: 140px;
    aspect-ratio: 1 / 1;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.industry-chain-page .chain-node::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(233, 185, 73, 0.3), transparent);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.5s ease;
    z-index: 0;
}

.industry-chain-page .chain-node.active {
    background: linear-gradient(135deg, #1f4834 0%, #2d6a4f 50%, #52b788 100%);
    color: white;
    border-color: var(--accent-color);
    box-shadow: 0 8px 30px rgba(31, 72, 52, 0.3), 
                0 0 0 1px rgba(233, 185, 73, 0.5);
    transform: translateY(-5px) scale(1.05);
}

.industry-chain-page .chain-node.active::before {
    width: 200%;
    height: 200%;
}

.industry-chain-page .chain-node:hover {
    transform: translateY(-8px) scale(1.08);
    box-shadow: 0 12px 35px rgba(31, 72, 52, 0.25);
    border-color: var(--accent-color);
}

.industry-chain-page .chain-node.active:hover {
    transform: translateY(-10px) scale(1.1);
    box-shadow: 0 15px 45px rgba(31, 72, 52, 0.4),
                0 0 0 2px var(--accent-color);
}

.industry-chain-page .node-icon {
    font-size: 3rem;
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
    transition: all 0.3s ease;
    animation: float 3s ease-in-out infinite;
    line-height: 1;
}

.industry-chain-page .chain-node:hover .node-icon {
    transform: scale(1.15) rotate(5deg);
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
}

.industry-chain-page .chain-node.active .node-icon {
    filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.3));
}

/* 为每个图标添加不同延迟的动画 */
.industry-chain-page .chain-node:nth-child(1) .node-icon {
    animation-delay: 0s;
}
.industry-chain-page .chain-node:nth-child(3) .node-icon {
    animation-delay: 0.3s;
}
.industry-chain-page .chain-node:nth-child(5) .node-icon {
    animation-delay: 0.6s;
}
.industry-chain-page .chain-node:nth-child(7) .node-icon {
    animation-delay: 0.9s;
}
.industry-chain-page .chain-node:nth-child(9) .node-icon {
    animation-delay: 1.2s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-5px);
    }
}

.industry-chain-page .node-label {
    font-size: 1rem;
    font-weight: 700;
    text-align: center;
    letter-spacing: 0.5px;
    position: relative;
    z-index: 1;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    line-height: 1.2;
}

.industry-chain-page .chain-node:hover .node-label {
    transform: scale(1.05);
    font-weight: 800;
}

.industry-chain-page .chain-node.active .node-label {
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.industry-chain-page .chain-connector {
    width: 45px;
    height: 4px;
    background: linear-gradient(90deg, 
                var(--secondary-color) 0%, 
                var(--accent-color) 50%, 
                var(--secondary-color) 100%);
    position: relative;
    margin: 0 0.5rem;
    border-radius: 2px;
    box-shadow: 0 2px 6px rgba(90, 140, 90, 0.3);
    transition: all 0.4s ease;
    overflow: visible;
    flex-shrink: 0;
}

.industry-chain-page .chain-connector::before {
    content: '→';
    position: absolute;
    right: -15px;
    top: -10px;
    color: var(--accent-color);
    font-size: 1.2rem;
    font-weight: bold;
    transition: all 0.3s ease;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
    animation: arrowPulse 2s ease-in-out infinite;
}

@keyframes arrowPulse {
    0%, 100% {
        transform: translateX(0);
        opacity: 1;
    }
    50% {
        transform: translateX(3px);
        opacity: 0.7;
    }
}

.industry-chain-page .chain-connector::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
                transparent 0%, 
                rgba(233, 185, 73, 0.6) 50%, 
                transparent 100%);
    transform: translateY(-50%) scaleX(0);
    transform-origin: left;
    transition: transform 0.6s ease;
    border-radius: 2px;
}

.industry-chain-page .chain-diagram:hover .chain-connector::after {
    transform: translateY(-50%) scaleX(1);
    animation: flowAnimation 2s ease-in-out infinite;
}

@keyframes flowAnimation {
    0% {
        transform: translateY(-50%) translateX(-100%) scaleX(0.3);
    }
    100% {
        transform: translateY(-50%) translateX(100%) scaleX(0.3);
    }
}

/* 产业链流程 - 垂直时间线布局 */
.industry-chain-page .chain-process-grid {
    position: relative;
    max-width: 1000px;
    margin: 4rem auto;
    padding: 2rem 0;
}

/* 中央时间线 */
.industry-chain-page .chain-process-grid::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, 
        var(--primary-color) 0%,
        var(--secondary-color) 50%,
        var(--accent-color) 100%);
    transform: translateX(-50%);
    box-shadow: 0 0 20px rgba(31, 72, 52, 0.3);
    border-radius: 2px;
}

.industry-chain-page .process-step {
    background: var(--bg-white);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    width: 45%;
    margin-bottom: 3rem;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease-out forwards;
}

/* 为每个步骤添加不同的动画延迟 */
.industry-chain-page .process-step:nth-child(2) { animation-delay: 0.1s; }
.industry-chain-page .process-step:nth-child(4) { animation-delay: 0.2s; }
.industry-chain-page .process-step:nth-child(6) { animation-delay: 0.3s; }
.industry-chain-page .process-step:nth-child(8) { animation-delay: 0.4s; }
.industry-chain-page .process-step:nth-child(10) { animation-delay: 0.5s; }
.industry-chain-page .process-step:nth-child(12) { animation-delay: 0.6s; }
.industry-chain-page .process-step:nth-child(14) { animation-delay: 0.7s; }

/* 左侧步骤 (奇数) */
.industry-chain-page .process-step:nth-child(4n+1) {
    margin-left: 0;
    margin-right: auto;
}

/* 右侧步骤 (偶数) */
.industry-chain-page .process-step:nth-child(4n+3) {
    margin-left: auto;
    margin-right: 0;
}

/* 顶部彩色条 */
.industry-chain-page .process-step::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    border-radius: 20px 20px 0 0;
}

/* 连接到时间线的圆点和线 */
.industry-chain-page .process-step::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border: 4px solid var(--bg-white);
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(31, 72, 52, 0.2),
                0 4px 12px rgba(0, 0, 0, 0.2);
    transform: translateY(-50%);
    z-index: 2;
}

/* 左侧步骤的圆点位置 */
.industry-chain-page .process-step:nth-child(4n+1)::after {
    right: -58px;
}

/* 右侧步骤的圆点位置 */
.industry-chain-page .process-step:nth-child(4n+3)::after {
    left: -58px;
}

.industry-chain-page .process-step:hover {
    box-shadow: 0 15px 50px rgba(31, 72, 52, 0.2);
    transform: translateY(-10px) scale(1.02);
}

.industry-chain-page .process-step:hover::after {
    background: linear-gradient(135deg, var(--accent-color), var(--secondary-color));
    transform: translateY(-50%) scale(1.3);
}

.industry-chain-page .step-header {
    display: flex;
    align-items: center;
    gap: 0;
    margin-bottom: 1.5rem;
}

.industry-chain-page .step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(31, 72, 52, 0.3);
    flex-shrink: 0;
}

.industry-chain-page .step-icon {
    display: none; /* 隐藏图标，只显示数字 */
}

.industry-chain-page .step-content h3 {
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

.industry-chain-page .step-description {
    color: var(--text-dark);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.industry-chain-page .step-features {
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.industry-chain-page .feature-badge {
    background: var(--bg-light);
    color: var(--primary-color);
    padding: 0.4rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid var(--border-color);
}

.industry-chain-page .step-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.industry-chain-page .step-stat {
    text-align: center;
    padding: 1rem;
    background: linear-gradient(135deg, rgba(74, 144, 226, 0.1), rgba(142, 45, 226, 0.1));
    border-radius: 10px;
}

.industry-chain-page .step-stat .stat-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 0.3rem;
}

.industry-chain-page .step-stat .stat-desc {
    font-size: 0.8rem;
    color: var(--text-dark);
    font-weight: 500;
}

.industry-chain-page .process-arrow {
    display: none; /* 在时间线布局中隐藏箭头 */
}

/* 产业链优势卡片 */
.industry-chain-page .chain-advantages {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.industry-chain-page .advantage-card {
    background: var(--bg-white);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: var(--shadow);
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.industry-chain-page .advantage-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

.industry-chain-page .advantage-card:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-8px);
}

.industry-chain-page .advantage-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.industry-chain-page .advantage-icon {
    font-size: 2.5rem;
    color: var(--secondary-color);
}

.industry-chain-page .advantage-badge {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
}

.industry-chain-page .advantage-card h3 {
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

.industry-chain-page .advantage-desc {
    color: var(--text-dark);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.industry-chain-page .advantage-features {
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.industry-chain-page .advantage-features span {
    background: var(--bg-light);
    color: var(--primary-color);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid var(--border-color);
}

.industry-chain-page .advantage-stats {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

.industry-chain-page .advantage-stat {
    text-align: center;
    padding: 1rem;
    background: linear-gradient(135deg, rgba(74, 144, 226, 0.1), rgba(142, 45, 226, 0.1));
    border-radius: 10px;
}

.industry-chain-page .advantage-stat .stat-number {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 0.3rem;
}

.industry-chain-page .advantage-stat .stat-label {
    font-size: 0.9rem;
    color: var(--text-dark);
    font-weight: 500;
}

/* 服务网格 */
.industry-chain-page .service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin: 3rem 0;
}

@media (min-width: 768px) and (max-width: 1199px) {
    .industry-chain-page .service-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (min-width: 1200px) {
    .industry-chain-page .service-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }
}

@media (max-width: 767px) {
    .industry-chain-page .service-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

.industry-chain-page .service-card {
    background: var(--bg-white);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.industry-chain-page .service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color), var(--secondary-color));
    border-radius: 20px 20px 0 0;
}

.industry-chain-page .service-card:hover {
    box-shadow: 0 12px 40px rgba(31, 72, 52, 0.15);
    transform: translateY(-10px);
}

.industry-chain-page .service-card:hover::before {
    height: 6px;
}

.industry-chain-page .service-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.industry-chain-page .service-icon {
    font-size: 2.5rem;
    color: var(--secondary-color);
    background: var(--bg-light);
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.industry-chain-page .service-badge {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
}

.industry-chain-page .service-content {
    display: flex;
    flex-direction: column;
}

.industry-chain-page .service-content h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 700;
}

.industry-chain-page .service-desc {
    color: var(--text-medium);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.industry-chain-page .service-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.8rem 1rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: var(--bg-light);
    border-radius: 10px;
}

.industry-chain-page .feature-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.3rem 0;
}

.industry-chain-page .feature-item i {
    color: var(--secondary-color);
    font-size: 0.85rem;
    flex-shrink: 0;
}

.industry-chain-page .feature-item span {
    font-size: 0.9rem;
    color: var(--text-dark);
    font-weight: 500;
    line-height: 1.4;
}

.industry-chain-page .service-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.industry-chain-page .service-stat {
    text-align: center;
    padding: 1.2rem 1rem;
    background: linear-gradient(135deg, rgba(31, 72, 52, 0.08), rgba(90, 140, 90, 0.08));
    border-radius: 12px;
    border: 1px solid rgba(31, 72, 52, 0.1);
    transition: all 0.3s ease;
}

.industry-chain-page .service-stat:hover {
    background: linear-gradient(135deg, rgba(31, 72, 52, 0.12), rgba(90, 140, 90, 0.12));
    transform: translateY(-2px);
}

.industry-chain-page .service-stat .stat-value {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.3rem;
    display: block;
}

.industry-chain-page .service-stat .stat-label {
    font-size: 0.85rem;
    color: var(--text-medium);
    font-weight: 500;
}

.industry-chain-page .service-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    padding: 0.8rem 1.5rem;
    background: linear-gradient(135deg, rgba(31, 72, 52, 0.05), rgba(90, 140, 90, 0.05));
    border: 2px solid var(--primary-color);
    border-radius: 30px;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    gap: 0.5rem;
}

.industry-chain-page .service-link::after {
    content: '→';
    transition: transform 0.3s ease;
}

.industry-chain-page .service-link:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(31, 72, 52, 0.25);
}

.industry-chain-page .service-link:hover::after {
    transform: translateX(5px);
}

/* FAQ扩展样式 */
.industry-chain-page .faq-process {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.industry-chain-page .faq-process .process-step {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.industry-chain-page .faq-process .step-number {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.industry-chain-page .faq-process .step-content h4 {
    font-size: 1.1rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.industry-chain-page .faq-process .step-content p {
    font-size: 0.9rem;
    color: var(--text-dark);
    line-height: 1.5;
}

/* 通用服务分类样式 - 已移除以避免与其他页面冲突 */

/* 价格因素 */
.price-factors {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.factor-category h4 {
    font-size: 1.1rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

.factor-category ul {
    list-style: none;
    padding: 0;
}

.factor-category li {
    padding: 0.4rem 0;
    font-size: 0.9rem;
    color: var(--text-dark);
    position: relative;
    padding-left: 1.2rem;
}

.factor-category li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
}

/* 供应链策略 */
.supply-chain-strategy {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.strategy-item {
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: 10px;
}

.strategy-item h4 {
    font-size: 1.1rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

.strategy-item ul {
    list-style: none;
    padding: 0;
}

.strategy-item li {
    padding: 0.4rem 0;
    font-size: 0.9rem;
    color: var(--text-dark);
    position: relative;
    padding-left: 1.5rem;
}

.strategy-item li::before {
    content: '🔗';
    position: absolute;
    left: 0;
}

/* 创新支持 */
.innovation-support {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.support-item {
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: 10px;
}

.support-item h4 {
    font-size: 1.1rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

.support-item ul {
    list-style: none;
    padding: 0;
}

.support-item li {
    padding: 0.4rem 0;
    font-size: 0.9rem;
    color: var(--text-dark);
    position: relative;
    padding-left: 1.5rem;
}

.support-item li::before {
    content: '🔬';
    position: absolute;
    left: 0;
}

.support-item:nth-child(2) li::before {
    content: '⚗️';
}

.support-item:nth-child(3) li::before {
    content: '📊';
}

/* 合作模式 */
.cooperation-modes {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.mode-item {
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: 10px;
}

.mode-item h4 {
    font-size: 1.1rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

.mode-item ul {
    list-style: none;
    padding: 0;
}

.mode-item li {
    padding: 0.5rem 0;
    font-size: 0.9rem;
    color: var(--text-dark);
    position: relative;
    padding-left: 1.5rem;
}

.mode-item li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
}

.mode-item li strong {
    color: var(--primary-color);
    font-weight: 600;
}

/* 可持续发展承诺 */
.sustainability-commitment {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.commitment-item {
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: 10px;
}

.commitment-item h4 {
    font-size: 1.1rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

.commitment-item ul {
    list-style: none;
    padding: 0;
}

.commitment-item li {
    padding: 0.4rem 0;
    font-size: 0.9rem;
    color: var(--text-dark);
    position: relative;
    padding-left: 1.5rem;
}

.commitment-item li::before {
    content: '🌱';
    position: absolute;
    left: 0;
}

.commitment-item:nth-child(2) li::before {
    content: '👥';
}

.commitment-item:nth-child(3) li::before {
    content: '📈';
}

/* 认证信息 */
.cert-info {
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: 10px;
    margin-top: 2rem;
    border-left: 4px solid var(--secondary-color);
}

.cert-info p {
    margin-bottom: 0.8rem;
    font-size: 0.9rem;
    color: var(--text-dark);
}

.cert-info p:last-child {
    margin-bottom: 0;
}

.cert-info strong {
    color: var(--primary-color);
    font-weight: 600;
}

/* 合作信息 */
.cooperation-info {
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: 10px;
    margin-top: 2rem;
    border-left: 4px solid var(--secondary-color);
}

.cooperation-info p {
    margin-bottom: 0.8rem;
    font-size: 0.9rem;
    color: var(--text-dark);
}

.cooperation-info p:last-child {
    margin-bottom: 0;
}

.cooperation-info strong {
    color: var(--primary-color);
    font-weight: 600;
}

@media (max-width: 480px) {
    .industry-chain-page .intro-stats,
    .industry-chain-page .page-header-stats {
        grid-template-columns: 1fr;
    }

    /* 超小屏幕产业链卡片优化 */
    .industry-chain-page .chain-diagram {
        gap: 0.8rem;
        padding: 1.5rem 0.5rem;
    }

    .industry-chain-page .chain-node {
        min-width: 85px;
        min-height: 85px;
        width: 85px;
        height: 85px;
        padding: 0.8rem;
        gap: 0.5rem;
    }

    .industry-chain-page .node-icon {
        font-size: 2rem;
    }

    .industry-chain-page .node-label {
        font-size: 0.7rem;
    }

    .industry-chain-page .chain-connector {
        width: 20px;
        min-width: 20px;
    }

    .industry-chain-page .chain-connector::before {
        font-size: 0.9rem;
    }

    .industry-chain-page .process-features,
    .industry-chain-page .mission-highlights,
    .industry-chain-page .advantage-features,
    .industry-chain-page .member-expertise,
    .industry-chain-page .step-features {
        flex-direction: column;
        gap: 0.5rem;
    }

    .industry-chain-page .feature-tag,
    .industry-chain-page .feature-badge,
    .industry-chain-page .advantage-features span {
        font-size: 0.75rem;
        padding: 0.2rem 0.6rem;
    }

    .industry-chain-page .step-stats,
    .industry-chain-page .service-stats {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }

    /* 移动端时间线布局调整 */
    .industry-chain-page .chain-process-grid {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .industry-chain-page .chain-process-grid::before {
        left: 30px;
        transform: none;
        width: 3px;
    }

    .industry-chain-page .process-step {
        width: calc(100% - 70px);
        margin-left: 70px !important;
        margin-right: 0 !important;
        padding: 1.8rem;
        margin-bottom: 2rem;
    }

    .industry-chain-page .process-step::after {
        left: -58px !important;
        right: auto !important;
        width: 16px;
        height: 16px;
    }

    .industry-chain-page .step-header {
        flex-direction: row;
        align-items: center;
        gap: 0;
    }

    .industry-chain-page .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }

    .industry-chain-page .step-icon {
        display: none; /* 移动端也隐藏图标 */
    }
}

@media (max-width: 480px) {
    .industry-chain-page .intro-stats {
        grid-template-columns: 1fr;
    }

    .industry-chain-page .process-features,
    .industry-chain-page .mission-highlights,
    .industry-chain-page .advantage-features,
    .industry-chain-page .member-expertise {
        flex-direction: column;
        gap: 0.5rem;
    }

    .industry-chain-page .feature-tag,
    .industry-chain-page .feature-badge {
        font-size: 0.75rem;
        padding: 0.2rem 0.6rem;
    }
}

/* ==================== 质量控制页面专属样式 ==================== */

/* 产品头部 */
.quality-control-page .product-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    padding: 3rem 0;
    margin-top: 0;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.quality-control-page .product-header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.quality-control-page .product-header::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.quality-control-page .product-header .container {
    position: relative;
    z-index: 1;
}

.quality-control-page .product-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.quality-control-page .product-header p {
    font-size: 1.3rem;
    opacity: 0.95;
    max-width: 600px;
    margin: 0 auto;
}

/* 卡片网格 */
.quality-control-page .card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.quality-control-page .card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.quality-control-page .card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.quality-control-page .card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.quality-control-page .card:hover::before {
    transform: scaleX(1);
}

.quality-control-page .card-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
    filter: grayscale(20%);
}

.quality-control-page .card h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.quality-control-page .card p {
    color: var(--text-medium);
    line-height: 1.8;
    margin: 0;
}

/* 质量表格 */
.quality-control-page .quality-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.quality-control-page .quality-table thead {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
}

.quality-control-page .quality-table th {
    padding: 1.2rem 1.5rem;
    text-align: left;
    font-weight: 600;
    font-size: 1rem;
}

.quality-control-page .quality-table tbody tr {
    border-bottom: 1px solid #e0e0e0;
    transition: background-color 0.2s ease;
}

.quality-control-page .quality-table tbody tr:last-child {
    border-bottom: none;
}

.quality-control-page .quality-table tbody tr:hover {
    background-color: rgba(76, 175, 80, 0.05);
}

.quality-control-page .quality-table td {
    padding: 1.2rem 1.5rem;
    color: var(--text-dark);
}

.quality-control-page .quality-table td:first-child {
    font-weight: 600;
    color: var(--primary-color);
}

/* 质量控制网格 - 2x2布局 */
.quality-control-page .quality-control-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

/* 特色项目样式增强 */
.quality-control-page .feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 2rem;
    background: white;
    border-radius: 15px;
    margin-bottom: 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.quality-control-page .feature-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 5px;
    background: linear-gradient(180deg, var(--primary-color), var(--accent-color));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.quality-control-page .feature-item:hover {
    transform: translateX(8px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.quality-control-page .feature-item:hover::before {
    opacity: 1;
}

.quality-control-page .feature-icon {
    font-size: 3.5rem;
    flex-shrink: 0;
    filter: grayscale(20%);
}

.quality-control-page .feature-content h3 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.quality-control-page .feature-content p {
    color: var(--text-medium);
    line-height: 2;
    font-size: 1.05rem;
}

.quality-control-page .feature-content strong {
    color: var(--primary-color);
    font-weight: 600;
}

/* CTA区域增强 */
/* quality-control-page 的 CTA 使用默认样式，无需特殊定义 */

/* 响应式设计 - 平板 */
@media (max-width: 768px) {
    .quality-control-page .product-header h1 {
        font-size: 2.2rem;
    }
    
    .quality-control-page .product-header p {
        font-size: 1.1rem;
    }
    
    .quality-control-page .card-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .quality-control-page .quality-control-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .quality-control-page .feature-item {
        flex-direction: column;
        gap: 1.5rem;
        padding: 2rem 1.5rem;
        text-align: center;
    }
    
    .quality-control-page .feature-icon {
        font-size: 3rem;
    }
    
    .quality-control-page .quality-table {
        font-size: 0.9rem;
    }
    
    .quality-control-page .quality-table th,
    .quality-control-page .quality-table td {
        padding: 0.8rem 1rem;
    }
}

/* 响应式设计 - 手机 */
@media (max-width: 576px) {
    .quality-control-page .product-header {
        padding: 2rem 0;
    }
    
    .quality-control-page .product-header h1 {
        font-size: 1.8rem;
    }
    
    .quality-control-page .product-header p {
        font-size: 1rem;
    }
    
    .quality-control-page .card {
        padding: 1.8rem 1.5rem;
    }
    
    .quality-control-page .card-icon {
        font-size: 2.5rem;
    }
    
    .quality-control-page .card h3 {
        font-size: 1.3rem;
    }
    
    .quality-control-page .feature-item {
        padding: 1.5rem 1rem;
    }
    
    .quality-control-page .feature-content h3 {
        font-size: 1.4rem;
    }
    
    .quality-control-page .feature-content p {
        font-size: 0.95rem;
    }
    
    /* quality-control-page CTA 响应式使用默认样式 */
    
    /* 表格横向滚动 */
    .quality-control-page .quality-table {
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .quality-control-page .quality-table thead,
    .quality-control-page .quality-table tbody,
    .quality-control-page .quality-table tr {
        display: table;
        width: 100%;
        table-layout: fixed;
    }
    
    .quality-control-page .quality-table th,
    .quality-control-page .quality-table td {
        padding: 0.8rem 0.6rem;
        font-size: 0.85rem;
    }
}

/* ==================== 淫羊藿叶子页面专属样式 ==================== */
.leaf-page .product-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    padding: 3rem 0;
    margin-top: 0;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.leaf-page .product-header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.leaf-page .product-header::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.leaf-page .product-header .container {
    position: relative;
    z-index: 1;
}

.leaf-page .product-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.leaf-page .product-header p {
    font-size: 1.3rem;
    opacity: 0.95;
    max-width: 600px;
    margin: 0 auto;
}

/* ==================== 淫羊藿种子页面专属样式 ==================== */
.seed-page .product-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    padding: 3rem 0;
    margin-top: 0;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.seed-page .product-header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.seed-page .product-header::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.seed-page .product-header .container {
    position: relative;
    z-index: 1;
}

.seed-page .product-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.seed-page .product-header p {
    font-size: 1.3rem;
    opacity: 0.95;
    max-width: 600px;
    margin: 0 auto;
}

/* ==================== 淫羊藿种苗页面专属样式 ==================== */
.seedling-page .product-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    padding: 3rem 0;
    margin-top: 0;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.seedling-page .product-header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.seedling-page .product-header::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.seedling-page .product-header .container {
    position: relative;
    z-index: 1;
}

.seedling-page .product-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.seedling-page .product-header p {
    font-size: 1.3rem;
    opacity: 0.95;
    max-width: 600px;
    margin: 0 auto;
}

/* ==================== 淫羊藿种植页面专属样式 ==================== */
.planting-page .product-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    padding: 3rem 0;
    margin-top: 0;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.planting-page .product-header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.planting-page .product-header::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.planting-page .product-header .container {
    position: relative;
    z-index: 1;
}

.planting-page .product-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.planting-page .product-header p {
    font-size: 1.3rem;
    opacity: 0.95;
    max-width: 600px;
    margin: 0 auto;
}

/* 种植五步法专属样式 */
.planting-page .process-section {
    padding: 5rem 0;
    background: linear-gradient(180deg, #f8fdf9 0%, #ffffff 100%);
}

.planting-page .process-timeline {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-top: 3rem;
    position: relative;
}

.planting-page .process-step {
    display: grid;
    grid-template-columns: 100px 80px 1fr;
    gap: 2rem;
    align-items: start;
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    overflow: hidden;
}

.planting-page .process-step::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.planting-page .process-step:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(72, 159, 88, 0.2);
    border-color: var(--primary-color);
}

.planting-page .process-step:hover::before {
    transform: scaleX(1);
}

.planting-page .step-number {
    font-size: 4rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    font-family: 'Arial Black', sans-serif;
    text-align: center;
    position: relative;
}

.planting-page .step-number::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
}

.planting-page .step-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    box-shadow: 0 8px 25px rgba(72, 159, 88, 0.3);
    transition: all 0.4s ease;
    position: relative;
}

.planting-page .step-icon::before {
    content: '';
    position: absolute;
    inset: -5px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
    filter: blur(10px);
}

.planting-page .process-step:hover .step-icon {
    transform: scale(1.1) rotate(5deg);
}

.planting-page .process-step:hover .step-icon::before {
    opacity: 0.6;
}

.planting-page .step-content {
    padding-top: 0.5rem;
}

.planting-page .step-content h3 {
    font-size: 1.8rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-weight: 700;
    position: relative;
    display: inline-block;
}

.planting-page .step-content h3::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transition: width 0.4s ease;
}

.planting-page .process-step:hover .step-content h3::after {
    width: 100%;
}

.planting-page .step-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-color);
    margin: 0;
}

.planting-page .step-line {
    display: none;
}

/* 步骤间连接装饰 */
.planting-page .process-step:not(:last-child)::after {
    content: '↓';
    position: absolute;
    bottom: -2.5rem;
    left: 50%;
    transform: translateX(-50%);
    font-size: 2rem;
    color: var(--primary-color);
    font-weight: bold;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(5px);
    }
}

/* 平板适配 */
@media (max-width: 992px) {
    .planting-page .process-step {
        grid-template-columns: 80px 70px 1fr;
        gap: 1.5rem;
        padding: 2rem;
    }

    .planting-page .step-number {
        font-size: 3rem;
    }

    .planting-page .step-icon {
        width: 70px;
        height: 70px;
        font-size: 1.7rem;
    }

    .planting-page .step-content h3 {
        font-size: 1.5rem;
    }

    .planting-page .step-content p {
        font-size: 1rem;
    }
}

/* 手机适配 */
@media (max-width: 768px) {
    .planting-page .process-section {
        padding: 3rem 0;
    }

    .planting-page .process-timeline {
        gap: 2.5rem;
    }

    .planting-page .process-step {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 2rem 1.5rem;
        text-align: center;
    }

    .planting-page .step-number {
        font-size: 3.5rem;
        margin: 0 auto;
    }

    .planting-page .step-icon {
        width: 70px;
        height: 70px;
        font-size: 1.7rem;
        margin: 0 auto;
    }

    .planting-page .step-content {
        padding-top: 0;
    }

    .planting-page .step-content h3 {
        font-size: 1.4rem;
        margin-bottom: 0.8rem;
    }

    .planting-page .step-content h3::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .planting-page .step-content p {
        font-size: 0.95rem;
        line-height: 1.7;
    }

    .planting-page .process-step:not(:last-child)::after {
        bottom: -2rem;
        font-size: 1.5rem;
    }
}

/* 小屏手机适配 */
@media (max-width: 576px) {
    .planting-page .process-step {
        padding: 1.5rem 1rem;
    }

    .planting-page .step-number {
        font-size: 2.8rem;
    }

    .planting-page .step-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .planting-page .step-content h3 {
        font-size: 1.2rem;
    }

    .planting-page .step-content p {
        font-size: 0.9rem;
    }
}

/* ==================== 种子页面专属样式 ==================== */
/* 种子处理流程样式 */
.seed-page .process-section {
    padding: 5rem 0;
    background: linear-gradient(180deg, #f8fdf9 0%, #ffffff 100%);
}

.seed-page .process-timeline {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-top: 3rem;
    position: relative;
}

.seed-page .process-step {
    display: grid;
    grid-template-columns: 100px 80px 1fr;
    gap: 2rem;
    align-items: start;
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    overflow: hidden;
}

.seed-page .process-step::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.seed-page .process-step:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(72, 159, 88, 0.2);
    border-color: var(--primary-color);
}

.seed-page .process-step:hover::before {
    transform: scaleX(1);
}

.seed-page .step-number {
    font-size: 4rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    font-family: 'Arial Black', sans-serif;
    text-align: center;
    position: relative;
}

.seed-page .step-number::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
}

.seed-page .step-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    box-shadow: 0 8px 25px rgba(72, 159, 88, 0.3);
    transition: all 0.4s ease;
    position: relative;
}

.seed-page .step-icon::before {
    content: '';
    position: absolute;
    inset: -5px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
    filter: blur(10px);
}

.seed-page .process-step:hover .step-icon {
    transform: scale(1.1) rotate(5deg);
}

.seed-page .process-step:hover .step-icon::before {
    opacity: 0.6;
}

.seed-page .step-content {
    padding-top: 0.5rem;
}

.seed-page .step-content h3 {
    font-size: 1.8rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-weight: 700;
    position: relative;
    display: inline-block;
}

.seed-page .step-content h3::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transition: width 0.4s ease;
}

.seed-page .process-step:hover .step-content h3::after {
    width: 100%;
}

.seed-page .step-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-color);
    margin: 0;
}

.seed-page .step-line {
    display: none;
}

/* 步骤间连接装饰 */
.seed-page .process-step:not(:last-child)::after {
    content: '↓';
    position: absolute;
    bottom: -2.5rem;
    left: 50%;
    transform: translateX(-50%);
    font-size: 2rem;
    color: var(--primary-color);
    font-weight: bold;
    animation: bounce 2s infinite;
}

/* 平板适配 */
@media (max-width: 992px) {
    .seed-page .process-step {
        grid-template-columns: 80px 70px 1fr;
        gap: 1.5rem;
        padding: 2rem;
    }

    .seed-page .step-number {
        font-size: 3rem;
    }

    .seed-page .step-icon {
        width: 70px;
        height: 70px;
        font-size: 1.7rem;
    }

    .seed-page .step-content h3 {
        font-size: 1.5rem;
    }

    .seed-page .step-content p {
        font-size: 1rem;
    }
}

/* 手机适配 */
@media (max-width: 768px) {
    .seed-page .process-section {
        padding: 3rem 0;
    }

    .seed-page .process-timeline {
        gap: 2.5rem;
    }

    .seed-page .process-step {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 2rem 1.5rem;
        text-align: center;
    }

    .seed-page .step-number {
        font-size: 3.5rem;
        margin: 0 auto;
    }

    .seed-page .step-icon {
        width: 70px;
        height: 70px;
        font-size: 1.7rem;
        margin: 0 auto;
    }

    .seed-page .step-content {
        padding-top: 0;
    }

    .seed-page .step-content h3 {
        font-size: 1.4rem;
        margin-bottom: 0.8rem;
    }

    .seed-page .step-content h3::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .seed-page .step-content p {
        font-size: 0.95rem;
        line-height: 1.7;
    }

    .seed-page .process-step:not(:last-child)::after {
        bottom: -2rem;
        font-size: 1.5rem;
    }
}

/* 小屏手机适配 */
@media (max-width: 576px) {
    .seed-page .process-step {
        padding: 1.5rem 1rem;
    }

    .seed-page .step-number {
        font-size: 2.8rem;
    }

    .seed-page .step-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .seed-page .step-content h3 {
        font-size: 1.2rem;
    }

    .seed-page .step-content p {
        font-size: 0.9rem;
    }
}

/* ==================== 种苗页面专属样式 ==================== */
/* 育苗流程样式 */
.seedling-page .process-section {
    padding: 5rem 0;
    background: linear-gradient(180deg, #f8fdf9 0%, #ffffff 100%);
}

.seedling-page .process-timeline {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-top: 3rem;
    position: relative;
}

.seedling-page .process-step {
    display: grid;
    grid-template-columns: 100px 80px 1fr;
    gap: 2rem;
    align-items: start;
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    overflow: hidden;
}

.seedling-page .process-step::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.seedling-page .process-step:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(72, 159, 88, 0.2);
    border-color: var(--primary-color);
}

.seedling-page .process-step:hover::before {
    transform: scaleX(1);
}

.seedling-page .step-number {
    font-size: 4rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    font-family: 'Arial Black', sans-serif;
    text-align: center;
    position: relative;
}

.seedling-page .step-number::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
}

.seedling-page .step-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    box-shadow: 0 8px 25px rgba(72, 159, 88, 0.3);
    transition: all 0.4s ease;
    position: relative;
}

.seedling-page .step-icon::before {
    content: '';
    position: absolute;
    inset: -5px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
    filter: blur(10px);
}

.seedling-page .process-step:hover .step-icon {
    transform: scale(1.1) rotate(5deg);
}

.seedling-page .process-step:hover .step-icon::before {
    opacity: 0.6;
}

.seedling-page .step-content {
    padding-top: 0.5rem;
}

.seedling-page .step-content h3 {
    font-size: 1.8rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-weight: 700;
    position: relative;
    display: inline-block;
}

.seedling-page .step-content h3::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transition: width 0.4s ease;
}

.seedling-page .process-step:hover .step-content h3::after {
    width: 100%;
}

.seedling-page .step-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-color);
    margin: 0;
}

.seedling-page .step-line {
    display: none;
}

/* 步骤间连接装饰 */
.seedling-page .process-step:not(:last-child)::after {
    content: '↓';
    position: absolute;
    bottom: -2.5rem;
    left: 50%;
    transform: translateX(-50%);
    font-size: 2rem;
    color: var(--primary-color);
    font-weight: bold;
    animation: bounce 2s infinite;
}

/* 平板适配 */
@media (max-width: 992px) {
    .seedling-page .process-step {
        grid-template-columns: 80px 70px 1fr;
        gap: 1.5rem;
        padding: 2rem;
    }

    .seedling-page .step-number {
        font-size: 3rem;
    }

    .seedling-page .step-icon {
        width: 70px;
        height: 70px;
        font-size: 1.7rem;
    }

    .seedling-page .step-content h3 {
        font-size: 1.5rem;
    }

    .seedling-page .step-content p {
        font-size: 1rem;
    }
}

/* 手机适配 */
@media (max-width: 768px) {
    .seedling-page .process-section {
        padding: 3rem 0;
    }

    .seedling-page .process-timeline {
        gap: 2.5rem;
    }

    .seedling-page .process-step {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 2rem 1.5rem;
        text-align: center;
    }

    .seedling-page .step-number {
        font-size: 3.5rem;
        margin: 0 auto;
    }

    .seedling-page .step-icon {
        width: 70px;
        height: 70px;
        font-size: 1.7rem;
        margin: 0 auto;
    }

    .seedling-page .step-content {
        padding-top: 0;
    }

    .seedling-page .step-content h3 {
        font-size: 1.4rem;
        margin-bottom: 0.8rem;
    }

    .seedling-page .step-content h3::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .seedling-page .step-content p {
        font-size: 0.95rem;
        line-height: 1.7;
    }

    .seedling-page .process-step:not(:last-child)::after {
        bottom: -2rem;
        font-size: 1.5rem;
    }
}

/* 小屏手机适配 */
@media (max-width: 576px) {
    .seedling-page .process-step {
        padding: 1.5rem 1rem;
    }

    .seedling-page .step-number {
        font-size: 2.8rem;
    }

    .seedling-page .step-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .seedling-page .step-content h3 {
        font-size: 1.2rem;
    }

    .seedling-page .step-content p {
        font-size: 0.9rem;
    }
}

/* ==================== 提取物页面专属样式 ==================== */
.extract-page .product-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    padding: 3rem 0;
    margin-top: 0;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.extract-page .product-header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.extract-page .product-header::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.extract-page .product-header .container {
    position: relative;
    z-index: 1;
}

.extract-page .product-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.extract-page .product-header p {
    font-size: 1.3rem;
    opacity: 0.95;
    max-width: 600px;
    margin: 0 auto;
}

/* ==================== 提取物页面专属样式 ==================== */

/* 产品详情区域 */
.extract-page .product-detail {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    align-items: start;
    margin: 3rem 0;
    padding: 3rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.extract-page .product-image {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 8rem;
    padding: 3rem;
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.05), rgba(255, 193, 7, 0.05));
    border-radius: 15px;
    aspect-ratio: 1;
}

.extract-page .product-info h3 {
    color: var(--primary-color);
    font-size: 1.6rem;
    margin: 2rem 0 1rem 0;
    font-weight: 600;
    position: relative;
    padding-left: 1rem;
}

.extract-page .product-info h3::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 70%;
    background: linear-gradient(180deg, var(--primary-color), var(--accent-color));
    border-radius: 2px;
}

.extract-page .product-info h3:first-of-type {
    margin-top: 0;
}

.extract-page .product-info p {
    color: var(--text-medium);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.extract-page .product-info ul {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.8rem;
}

.extract-page .product-info ul li {
    position: relative;
    padding-left: 1.5rem;
    color: var(--text-medium);
    line-height: 1.6;
}

.extract-page .product-info ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
    font-size: 1.1rem;
}

/* 产品规格表格增强 */
.extract-page .quality-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.extract-page .quality-table thead {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
}

.extract-page .quality-table th {
    padding: 1.2rem 1.5rem;
    text-align: left;
    font-weight: 600;
    font-size: 1rem;
}

.extract-page .quality-table tbody tr {
    border-bottom: 1px solid #e0e0e0;
    transition: all 0.2s ease;
}

.extract-page .quality-table tbody tr:last-child {
    border-bottom: none;
}

.extract-page .quality-table tbody tr:hover {
    background-color: rgba(76, 175, 80, 0.05);
    transform: scale(1.01);
}

.extract-page .quality-table td {
    padding: 1.2rem 1.5rem;
    color: var(--text-dark);
}

.extract-page .quality-table td:first-child {
    font-weight: 600;
    color: var(--primary-color);
}

/* 卡片网格优化 */
.extract-page .card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.extract-page .card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.extract-page .card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.extract-page .card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.extract-page .card:hover::before {
    transform: scaleX(1);
}

.extract-page .card-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
}

.extract-page .card h3 {
    color: var(--primary-color);
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.extract-page .card p {
    color: var(--text-medium);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.extract-page .card a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s;
}

.extract-page .card a:hover {
    color: var(--accent-color);
    transform: translateX(5px);
}

/* 应用领域卡片 - 2x2布局 */
.extract-page .application-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

.extract-page .application-grid .feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.extract-page .application-grid .feature-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 5px;
    background: linear-gradient(180deg, var(--primary-color), var(--accent-color));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.extract-page .application-grid .feature-item:hover {
    transform: translateX(8px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.extract-page .application-grid .feature-item:hover::before {
    opacity: 1;
}

.extract-page .feature-icon {
    font-size: 3.5rem;
    flex-shrink: 0;
}

.extract-page .feature-content h3 {
    color: var(--primary-color);
    font-size: 1.6rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.extract-page .feature-content p {
    color: var(--text-medium);
    line-height: 1.8;
    font-size: 1.05rem;
}

/* 包装储存 - 横向布局 */
.extract-page .storage-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

/* CTA区域 */
/* ==================== CTA 默认样式（应用于大多数页面） ==================== */
/* 深绿色渐变版本，about-page 除外有特殊样式 */
.cta-section {
    background: linear-gradient(135deg, rgba(31, 72, 52, 0.95), rgba(90, 140, 90, 0.95));
    padding: 5rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.cta-title {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.cta-subtitle {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.cta-section .btn-primary {
    background-color: var(--accent-color);
    color: var(--text-dark);
    border-color: var(--accent-color);
    padding: 1.2rem 3rem;
    font-size: 1.1rem;
    box-shadow: 0 4px 15px rgba(233, 185, 73, 0.3);
}

.cta-section .btn-primary:hover {
    background-color: white;
    color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(233, 185, 73, 0.4);
}

/* 响应式设计 - 平板 */
@media (max-width: 768px) {
    .extract-page .product-detail {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem;
    }
    
    .extract-page .product-image {
        font-size: 6rem;
        padding: 2rem;
    }
    
    .extract-page .product-info ul {
        grid-template-columns: 1fr;
    }
    
    .extract-page .application-grid,
    .extract-page .storage-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .extract-page .card-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

/* 响应式设计 - 手机 */
@media (max-width: 576px) {
    .extract-page .product-detail {
        padding: 1.5rem;
    }
    
    .extract-page .product-image {
        font-size: 5rem;
        padding: 1.5rem;
    }
    
    .extract-page .product-info h3 {
        font-size: 1.3rem;
    }
    
    .extract-page .feature-icon {
        font-size: 3rem;
    }
    
    .extract-page .feature-content h3 {
        font-size: 1.3rem;
    }
    
    .extract-page .feature-content p {
        font-size: 0.95rem;
    }
    
    /* CTA 响应式样式 - 平板 */
    .cta-title {
        font-size: 1.8rem;
    }
    
    .cta-subtitle {
        font-size: 1rem;
    }
    
    /* 表格横向滚动 */
    .extract-page .quality-table {
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
}

/* 响应式设计 - 小屏手机 */
@media (max-width: 576px) {
    /* CTA 响应式样式 - 小屏 */
    .cta-section {
        padding: 3rem 0;
    }
    
    .cta-title {
        font-size: 1.5rem;
    }
    
    .cta-subtitle {
        font-size: 0.9rem;
    }
    
    .cta-section .btn-primary {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
}

/* ==================== 保健品研发页面专属样式 ==================== */

/* 产品头部样式 */
.healthproduct-page .product-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    padding: 3rem 0;
    margin-top: 0;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.healthproduct-page .product-header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.healthproduct-page .product-header::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.healthproduct-page .product-header .container {
    position: relative;
    z-index: 1;
}

.healthproduct-page .product-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.healthproduct-page .product-header p {
    font-size: 1.3rem;
    opacity: 0.95;
    max-width: 600px;
    margin: 0 auto 0 auto;
}

.healthproduct-page .product-header > .container > div {
    background: rgba(255, 255, 255, 0.2);
    padding: 1rem;
    border-radius: 8px;
    margin-top: 1rem;
    font-size: 0.95rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* 研发支持卡片网格 */
.healthproduct-page .support-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.healthproduct-page .support-card {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-top: 4px solid transparent;
}

.healthproduct-page .support-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    border-top-color: var(--primary-color);
}

.healthproduct-page .support-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    display: block;
}

.healthproduct-page .support-card h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.healthproduct-page .support-card p {
    color: var(--text-medium);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.healthproduct-page .support-card ul {
    list-style: none;
    padding: 0;
}

.healthproduct-page .support-card ul li {
    position: relative;
    padding-left: 1.5rem;
    color: var(--text-medium);
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

.healthproduct-page .support-card ul li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

/* 研发案例展示 */
.healthproduct-page .case-grid {
    display: grid;
    gap: 3rem;
    margin: 3rem 0;
}

.healthproduct-page .case-item {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.healthproduct-page .case-item:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.healthproduct-page .case-image {
    width: 100%;
    height: 400px;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.05), rgba(255, 193, 7, 0.05));
}

.healthproduct-page .case-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.healthproduct-page .case-item:hover .case-image img {
    transform: scale(1.05);
}

.healthproduct-page .case-content {
    padding: 2.5rem;
}

.healthproduct-page .case-tag {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 0.5rem 1.2rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.healthproduct-page .case-content h3 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.healthproduct-page .case-details {
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.03), rgba(255, 193, 7, 0.03));
    padding: 2rem;
    border-radius: 12px;
    margin-top: 1.5rem;
}

.healthproduct-page .case-details h4 {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin: 1.5rem 0 0.8rem 0;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.healthproduct-page .case-details h4:first-child {
    margin-top: 0;
}

.healthproduct-page .case-details h4::before {
    content: '●';
    color: var(--accent-color);
    font-size: 0.8rem;
}

.healthproduct-page .case-details p {
    color: var(--text-medium);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.healthproduct-page .case-details ul {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.healthproduct-page .case-details ul li {
    position: relative;
    padding-left: 1.5rem;
    color: var(--text-medium);
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

.healthproduct-page .case-details ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

/* 原料规格表格 */
.healthproduct-page .material-table-wrapper {
    overflow-x: auto;
    margin: 2rem 0;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.healthproduct-page .material-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
}

.healthproduct-page .material-table thead {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
}

.healthproduct-page .material-table th {
    padding: 1.2rem 1.5rem;
    text-align: left;
    font-weight: 600;
    font-size: 1rem;
}

.healthproduct-page .material-table tbody tr {
    border-bottom: 1px solid #e0e0e0;
    transition: all 0.2s ease;
}

.healthproduct-page .material-table tbody tr:last-child {
    border-bottom: none;
}

.healthproduct-page .material-table tbody tr:hover {
    background-color: rgba(76, 175, 80, 0.05);
}

.healthproduct-page .material-table td {
    padding: 1.2rem 1.5rem;
    color: var(--text-dark);
}

.healthproduct-page .status-available {
    display: inline-block;
    background: #e8f5e9;
    color: #2e7d32;
    padding: 0.4rem 1rem;
    border-radius: 15px;
    font-size: 0.9rem;
    font-weight: 600;
}

.healthproduct-page .status-custom {
    display: inline-block;
    background: #fff3e0;
    color: #f57c00;
    padding: 0.4rem 1rem;
    border-radius: 15px;
    font-size: 0.9rem;
    font-weight: 600;
}

.healthproduct-page .notice-box {
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.05), rgba(255, 193, 7, 0.05));
    padding: 2rem;
    border-radius: 12px;
    margin-top: 2rem;
    border-left: 5px solid var(--primary-color);
}

.healthproduct-page .notice-box h4 {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.healthproduct-page .notice-box ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.healthproduct-page .notice-box ul li {
    position: relative;
    padding-left: 1.8rem;
    color: var(--text-medium);
    line-height: 1.8;
    margin-bottom: 0.8rem;
}

.healthproduct-page .notice-box ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
    font-size: 1.2rem;
}

/* 技术支持卡片 */
.healthproduct-page .tech-support-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.healthproduct-page .tech-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.healthproduct-page .tech-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    border-color: var(--accent-color);
}

.healthproduct-page .tech-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.healthproduct-page .tech-icon {
    font-size: 2.5rem;
}

.healthproduct-page .tech-header h3 {
    color: var(--primary-color);
    font-size: 1.4rem;
    font-weight: 600;
    margin: 0;
}

.healthproduct-page .tech-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.healthproduct-page .tech-list li {
    position: relative;
    padding-left: 1.5rem;
    color: var(--text-medium);
    line-height: 1.8;
    margin-bottom: 0.8rem;
}

.healthproduct-page .tech-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

/* 研发流程 - 卡片式网格 */
.healthproduct-page .process-timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.healthproduct-page .process-step {
    position: relative;
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-top: 5px solid var(--primary-color);
    display: flex;
    flex-direction: column;
}

.healthproduct-page .process-step:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.healthproduct-page .step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3.5rem;
    height: 3.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border-radius: 50%;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
}

.healthproduct-page .process-step h3 {
    color: var(--primary-color);
    font-size: 1.4rem;
    margin: 0 0 1rem 0;
    font-weight: 600;
    word-wrap: break-word;
}

.healthproduct-page .process-step p {
    color: var(--text-medium);
    line-height: 1.8;
    margin: 0 0 1.5rem 0;
    word-wrap: break-word;
}

.healthproduct-page .step-details {
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.05), rgba(255, 193, 7, 0.05));
    padding: 1.2rem;
    border-radius: 10px;
    border-left: 4px solid var(--accent-color);
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-medium);
    word-wrap: break-word;
    white-space: normal;
}

.healthproduct-page .step-details strong {
    color: var(--primary-color);
    font-weight: 600;
    display: inline;
}

/* 研发联系区域 */
.healthproduct-page .contact-research-box {
    background: linear-gradient(135deg, rgba(31, 72, 52, 0.95), rgba(90, 140, 90, 0.95));
    padding: 4rem;
    border-radius: 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.healthproduct-page .contact-research-box::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.healthproduct-page .contact-research-content {
    position: relative;
    z-index: 1;
}

.healthproduct-page .contact-research-content h2 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.healthproduct-page .contact-research-content p {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.healthproduct-page .contact-research-info {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.healthproduct-page .contact-research-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: white;
    font-size: 1.1rem;
}

.healthproduct-page .contact-research-item i {
    font-size: 1.5rem;
    color: var(--accent-color);
}

.healthproduct-page .btn-research {
    display: inline-block;
    background-color: var(--accent-color);
    color: var(--text-dark);
    padding: 1.2rem 3rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(233, 185, 73, 0.3);
}

.healthproduct-page .btn-research:hover {
    background-color: white;
    color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(233, 185, 73, 0.4);
}

/* 响应式设计 - 平板 */
@media (max-width: 768px) {
    .healthproduct-page .product-header h1 {
        font-size: 2.2rem;
    }
    
    .healthproduct-page .product-header p {
        font-size: 1.1rem;
    }
    
    .healthproduct-page .support-grid,
    .healthproduct-page .tech-support-grid,
    .healthproduct-page .process-timeline {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .healthproduct-page .case-image {
        height: 300px;
    }
    
    .healthproduct-page .case-content {
        padding: 2rem;
    }
    
    .healthproduct-page .contact-research-info {
        flex-direction: column;
        gap: 1.5rem;
    }
}

/* 响应式设计 - 手机 */
@media (max-width: 576px) {
    .healthproduct-page .product-header {
        padding: 2rem 0;
    }
    
    .healthproduct-page .product-header h1 {
        font-size: 1.8rem;
    }
    
    .healthproduct-page .product-header p {
        font-size: 1rem;
    }
    
    .healthproduct-page .product-header > .container > div {
        font-size: 0.9rem;
    }
    
    .healthproduct-page .case-image {
        height: 250px;
    }
    
    .healthproduct-page .case-content,
    .healthproduct-page .case-details {
        padding: 1.5rem;
    }
    
    .healthproduct-page .case-content h3 {
        font-size: 1.5rem;
    }
    
    .healthproduct-page .process-step {
        padding: 1.5rem;
    }
    
    .healthproduct-page .step-number {
        width: 3rem;
        height: 3rem;
        font-size: 1.3rem;
    }
    
    .healthproduct-page .process-step h3 {
        font-size: 1.2rem;
    }
    
    .healthproduct-page .process-step p {
        font-size: 0.95rem;
    }
    
    .healthproduct-page .contact-research-box {
        padding: 2.5rem 1.5rem;
    }
    
    .healthproduct-page .contact-research-content h2 {
        font-size: 1.8rem;
    }
    
    .healthproduct-page .contact-research-content p {
        font-size: 1rem;
    }
    
    /* 表格横向滚动 */
    .healthproduct-page .material-table-wrapper {
        -webkit-overflow-scrolling: touch;
    }
    
    .healthproduct-page .material-table th,
    .healthproduct-page .material-table td {
        padding: 1rem;
        font-size: 0.9rem;
    }
}

/* ==================== 其他产品页面响应式样式 ==================== */

/* 平板 */
@media (max-width: 768px) {
    .leaf-page .product-header h1,
    .seed-page .product-header h1,
    .seedling-page .product-header h1,
    .planting-page .product-header h1,
    .extract-page .product-header h1 {
        font-size: 2.2rem;
    }
    
    .leaf-page .product-header p,
    .seed-page .product-header p,
    .seedling-page .product-header p,
    .planting-page .product-header p,
    .extract-page .product-header p {
        font-size: 1.1rem;
    }
}

/* 手机 */
@media (max-width: 576px) {
    .leaf-page .product-header,
    .seed-page .product-header,
    .seedling-page .product-header,
    .planting-page .product-header,
    .extract-page .product-header {
        padding: 2rem 0;
    }
    
    .leaf-page .product-header h1,
    .seed-page .product-header h1,
    .seedling-page .product-header h1,
    .planting-page .product-header h1,
    .extract-page .product-header h1 {
        font-size: 1.8rem;
    }
    
    .leaf-page .product-header p,
    .seed-page .product-header p,
    .seedling-page .product-header p,
    .planting-page .product-header p,
    .extract-page .product-header p {
        font-size: 1rem;
    }
}

/* ==================== 淫羊藿养生茶页面专属样式 ==================== */

/* 产品头部样式 */
.tea-page .product-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    padding: 3rem 0;
    margin-top: 0;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.tea-page .product-header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.tea-page .product-header h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 1;
}

.tea-page .product-header .subtitle {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    opacity: 0.95;
    position: relative;
    z-index: 1;
}

.tea-page .product-header .disclaimer {
    font-size: 1rem;
    background: rgba(255, 193, 7, 0.2);
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    display: inline-block;
    margin-top: 0.5rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    position: relative;
    z-index: 1;
}

/* 产品介绍区 */
.tea-page .tea-intro {
    padding: 4rem 0;
    background: #f8f9fa;
}

.tea-page .intro-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.tea-page .intro-text h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.tea-page .intro-text .lead {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 2rem;
}

.tea-page .feature-points {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.tea-page .point-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.tea-page .point-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-top: 0.25rem;
}

.tea-page .point-item h4 {
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.tea-page .point-item p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
}

.tea-page .important-notice {
    display: flex;
    gap: 1rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(31, 72, 52, 0.05), rgba(90, 140, 90, 0.05));
    border-left: 4px solid var(--primary-color);
    border-radius: 8px;
    margin-top: 2rem;
}

.tea-page .important-notice i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-top: 0.25rem;
}

.tea-page .important-notice h4 {
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.tea-page .important-notice p {
    color: #555;
    line-height: 1.7;
}

.tea-page .important-notice strong {
    color: var(--secondary-color);
}

.tea-page .intro-image {
    position: relative;
}

.tea-page .intro-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.tea-page .image-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(31, 72, 52, 0.95);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-size: 0.95rem;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* 养生茶系列 */
.tea-page .tea-series {
    padding: 4rem 0;
    background: white;
}

.tea-page .series-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.tea-page .series-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.tea-page .series-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.tea-page .series-card .card-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

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

.tea-page .series-card:hover .card-image img {
    transform: scale(1.1);
}

.tea-page .series-card .card-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--accent-color);
    color: var(--text-dark);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.tea-page .series-card .card-content {
    padding: 1.5rem;
}

.tea-page .series-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.tea-page .series-card .ingredients {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.tea-page .series-card .ingredient {
    background: rgba(31, 72, 52, 0.1);
    color: var(--primary-color);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 500;
}

.tea-page .series-card .description {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.tea-page .series-card .suitable-for {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding-top: 1rem;
    border-top: 1px solid #eee;
    color: #555;
    font-size: 0.9rem;
}

.tea-page .series-card .suitable-for i {
    color: var(--secondary-color);
}

/* 制作工艺 */
.tea-page .tea-process {
    padding: 4rem 0;
    background: linear-gradient(to bottom, #f8f9fa, white);
}

.tea-page .process-timeline {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.tea-page .process-item {
    text-align: center;
    padding: 2rem 1.5rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
}

.tea-page .process-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.tea-page .process-icon {
    position: relative;
    width: 100px;
    height: 100px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tea-page .process-icon i {
    font-size: 2.5rem;
    color: white;
}

.tea-page .process-icon .step-number {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 40px;
    height: 40px;
    background: var(--accent-color);
    color: var(--text-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.tea-page .process-content h3 {
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.tea-page .process-content p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.7;
}

/* 品尝邀请区 */
.tea-page .tasting-invitation {
    padding: 5rem 0;
    background: linear-gradient(135deg, rgba(31, 72, 52, 0.03), rgba(90, 140, 90, 0.03));
}

.tea-page .invitation-content {
    max-width: 1000px;
    margin: 0 auto;
}

.tea-page .invitation-header {
    text-align: center;
    margin-bottom: 3rem;
}

.tea-page .invitation-header i {
    font-size: 4rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.tea-page .invitation-header h2 {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.tea-page .invitation-header .lead {
    font-size: 1.2rem;
    color: #666;
}

.tea-page .invitation-text {
    margin-bottom: 3rem;
}

.tea-page .invitation-text h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.tea-page .invitation-text p {
    color: #555;
    line-height: 1.8;
    font-size: 1.05rem;
    margin-bottom: 1rem;
}

.tea-page .invitation-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.tea-page .invitation-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    margin-bottom: 0.75rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.tea-page .invitation-list i {
    color: var(--secondary-color);
    font-size: 1.2rem;
}

.tea-page .invitation-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.tea-page .option-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.tea-page .option-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tea-page .option-icon i {
    font-size: 2.5rem;
    color: white;
}

.tea-page .option-card h4 {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.tea-page .option-card p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.tea-page .qrcode-display {
    margin: 1.5rem 0;
}

.tea-page .qrcode-display img {
    width: 180px;
    height: 180px;
    border: 3px solid var(--primary-color);
    border-radius: 12px;
    padding: 0.5rem;
    background: white;
}

.tea-page .qrcode-display span {
    display: block;
    margin-top: 0.75rem;
    color: var(--primary-color);
    font-weight: 600;
}

.tea-page .contact-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
    padding: 0.75rem;
    background: rgba(31, 72, 52, 0.05);
    border-radius: 8px;
}

.tea-page .contact-info i {
    color: var(--secondary-color);
}

.tea-page .contact-info span {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
}

.tea-page .store-info {
    text-align: left;
    margin: 1.5rem 0;
}

.tea-page .store-info .info-item {
    display: flex;
    gap: 1rem;
    padding: 1rem;
    margin-bottom: 1rem;
    background: rgba(31, 72, 52, 0.03);
    border-radius: 8px;
}

.tea-page .store-info .info-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-top: 0.25rem;
}

.tea-page .store-info strong {
    display: block;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.tea-page .store-info p {
    color: #666;
    margin: 0;
    line-height: 1.6;
}

.tea-page .btn-outline {
    display: inline-block;
    padding: 0.75rem 2rem;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.tea-page .btn-outline:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

.tea-page .invitation-footer {
    text-align: center;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(31, 72, 52, 0.1), rgba(90, 140, 90, 0.1));
    border-radius: 12px;
}

.tea-page .invitation-footer p {
    margin: 0;
    color: var(--primary-color);
    font-size: 1.1rem;
    font-weight: 600;
}

.tea-page .invitation-footer i {
    color: var(--accent-color);
    margin-right: 0.5rem;
}

/* 饮用指南 */
.tea-page .brewing-guide {
    padding: 4rem 0;
    background: white;
}

.tea-page .guide-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

.tea-page .guide-card {
    text-align: center;
    padding: 2rem 1.5rem;
    background: #f8f9fa;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.tea-page .guide-card:hover {
    background: white;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.tea-page .guide-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tea-page .guide-icon i {
    font-size: 2rem;
    color: white;
}

.tea-page .guide-card h3 {
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.tea-page .guide-card p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.7;
}

.tea-page .caution-box {
    margin-top: 3rem;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.05), rgba(255, 152, 0, 0.05));
    border-left: 4px solid #ffc107;
    border-radius: 12px;
}

.tea-page .caution-box h3 {
    color: #856404;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.tea-page .caution-box h3 i {
    margin-right: 0.5rem;
}

.tea-page .caution-box ul {
    list-style: none;
    padding: 0;
}

.tea-page .caution-box li {
    padding: 0.75rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #555;
    line-height: 1.7;
}

.tea-page .caution-box li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #ffc107;
    font-weight: bold;
    font-size: 1.2rem;
}

/* 响应式设计 - 平板 */
@media (max-width: 768px) {
    .tea-page .product-header h1 {
        font-size: 2rem;
    }

    .tea-page .product-header .subtitle {
        font-size: 1rem;
    }

    .tea-page .intro-content {
        grid-template-columns: 1fr;
    }

    .tea-page .feature-points {
        grid-template-columns: 1fr;
    }

    .tea-page .series-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .tea-page .process-timeline {
        grid-template-columns: repeat(2, 1fr);
    }

    .tea-page .invitation-options {
        grid-template-columns: 1fr;
    }

    .tea-page .guide-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* 响应式设计 - 手机 */
@media (max-width: 576px) {
    .tea-page .product-header {
        padding: 2rem 0;
    }

    .tea-page .product-header h1 {
        font-size: 1.75rem;
    }

    .tea-page .product-header .subtitle {
        font-size: 0.95rem;
    }

    .tea-page .product-header .disclaimer {
        font-size: 0.9rem;
        padding: 0.6rem 1rem;
    }

    .tea-page .tea-intro,
    .tea-page .tea-series,
    .tea-page .tea-process,
    .tea-page .tasting-invitation,
    .tea-page .brewing-guide {
        padding: 3rem 0;
    }

    .tea-page .intro-text h2 {
        font-size: 1.5rem;
    }

    .tea-page .intro-text .lead {
        font-size: 1rem;
    }

    .tea-page .series-grid {
        grid-template-columns: 1fr;
    }

    .tea-page .series-card .card-image {
        height: 200px;
    }

    .tea-page .process-timeline {
        grid-template-columns: 1fr;
    }

    .tea-page .invitation-header h2 {
        font-size: 1.75rem;
    }

    .tea-page .invitation-header i {
        font-size: 3rem;
    }

    .tea-page .invitation-text h3 {
        font-size: 1.25rem;
    }

    .tea-page .guide-grid {
        grid-template-columns: 1fr;
    }

    .tea-page .qrcode-display img {
        width: 150px;
        height: 150px;
    }
}

/* ==================== 淫羊藿养生酒页面专属样式 ==================== */
/* wine-page 样式基本复用 tea-page 的结构，做了针对性调整 */

/* 产品头部样式 */
.wine-page .product-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    padding: 3rem 0;
    margin-top: 0;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.wine-page .product-header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.wine-page .product-header h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 1;
}

.wine-page .product-header .subtitle {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    opacity: 0.95;
    position: relative;
    z-index: 1;
}

.wine-page .product-header .disclaimer {
    font-size: 1rem;
    background: rgba(255, 193, 7, 0.2);
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    display: inline-block;
    margin-top: 0.5rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    position: relative;
    z-index: 1;
}

/* 产品介绍区 - 复用tea-page的样式 */
.wine-page .wine-intro {
    padding: 4rem 0;
    background: #f8f9fa;
}

.wine-page .intro-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.wine-page .intro-text h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.wine-page .intro-text .lead {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 2rem;
}

.wine-page .feature-points {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.wine-page .point-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.wine-page .point-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-top: 0.25rem;
}

.wine-page .point-item h4 {
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.wine-page .point-item p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
}

.wine-page .important-notice {
    display: flex;
    gap: 1rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(31, 72, 52, 0.05), rgba(90, 140, 90, 0.05));
    border-left: 4px solid var(--primary-color);
    border-radius: 8px;
    margin-top: 2rem;
}

.wine-page .important-notice i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-top: 0.25rem;
}

.wine-page .important-notice h4 {
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.wine-page .important-notice p {
    color: #555;
    line-height: 1.7;
}

.wine-page .important-notice strong {
    color: var(--secondary-color);
}

.wine-page .intro-image {
    position: relative;
}

.wine-page .intro-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.wine-page .image-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(31, 72, 52, 0.95);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-size: 0.95rem;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* 养生酒系列 - 复用tea-page的样式 */
.wine-page .wine-series {
    padding: 4rem 0;
    background: white;
}

.wine-page .series-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.wine-page .series-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.wine-page .series-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.wine-page .series-card .card-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

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

.wine-page .series-card:hover .card-image img {
    transform: scale(1.1);
}

.wine-page .series-card .card-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--accent-color);
    color: var(--text-dark);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.wine-page .series-card .card-content {
    padding: 1.5rem;
}

.wine-page .series-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.wine-page .series-card .ingredients {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.wine-page .series-card .ingredient {
    background: rgba(31, 72, 52, 0.1);
    color: var(--primary-color);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 500;
}

.wine-page .series-card .description {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.wine-page .series-card .suitable-for {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding-top: 1rem;
    border-top: 1px solid #eee;
    color: #555;
    font-size: 0.9rem;
}

.wine-page .series-card .suitable-for i {
    color: var(--secondary-color);
}

/* 制作工艺 - 2列布局 */
.wine-page .wine-process {
    padding: 4rem 0;
    background: linear-gradient(to bottom, #f8f9fa, white);
}

.wine-page .process-timeline {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.wine-page .process-item {
    text-align: center;
    padding: 2rem 1.5rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
}

.wine-page .process-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.wine-page .process-icon {
    position: relative;
    width: 100px;
    height: 100px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wine-page .process-icon i {
    font-size: 2.5rem;
    color: white;
}

.wine-page .process-icon .step-number {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 40px;
    height: 40px;
    background: var(--accent-color);
    color: var(--text-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.wine-page .process-content h3 {
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.wine-page .process-content p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.7;
}

/* 品尝邀请区 - 复用tea-page样式并调整 */
.wine-page .tasting-invitation {
    padding: 5rem 0;
    background: linear-gradient(135deg, rgba(31, 72, 52, 0.03), rgba(90, 140, 90, 0.03));
}

.wine-page .invitation-content {
    max-width: 1000px;
    margin: 0 auto;
}

.wine-page .invitation-header {
    text-align: center;
    margin-bottom: 3rem;
}

.wine-page .invitation-header i {
    font-size: 4rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.wine-page .invitation-header h2 {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.wine-page .invitation-header .lead {
    font-size: 1.2rem;
    color: #666;
}

.wine-page .invitation-text {
    margin-bottom: 3rem;
}

.wine-page .invitation-text h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.wine-page .invitation-text p {
    color: #555;
    line-height: 1.8;
    font-size: 1.05rem;
    margin-bottom: 1rem;
}

.wine-page .invitation-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.wine-page .invitation-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    margin-bottom: 0.75rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.wine-page .invitation-list i {
    color: var(--secondary-color);
    font-size: 1.2rem;
}

.wine-page .invitation-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.wine-page .option-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.wine-page .option-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wine-page .option-icon i {
    font-size: 2.5rem;
    color: white;
}

.wine-page .option-card h4 {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.wine-page .option-card p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.wine-page .qrcode-display {
    margin: 1.5rem 0;
}

.wine-page .qrcode-display img {
    width: 180px;
    height: 180px;
    border: 3px solid var(--primary-color);
    border-radius: 12px;
    padding: 0.5rem;
    background: white;
}

.wine-page .qrcode-display span {
    display: block;
    margin-top: 0.75rem;
    color: var(--primary-color);
    font-weight: 600;
}

.wine-page .contact-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
    padding: 0.75rem;
    background: rgba(31, 72, 52, 0.05);
    border-radius: 8px;
}

.wine-page .contact-info i {
    color: var(--secondary-color);
}

.wine-page .contact-info span {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
}

.wine-page .store-info {
    text-align: left;
    margin: 1.5rem 0;
}

.wine-page .store-info .info-item {
    display: flex;
    gap: 1rem;
    padding: 1rem;
    margin-bottom: 1rem;
    background: rgba(31, 72, 52, 0.03);
    border-radius: 8px;
}

.wine-page .store-info .info-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-top: 0.25rem;
}

.wine-page .store-info strong {
    display: block;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.wine-page .store-info p {
    color: #666;
    margin: 0;
    line-height: 1.6;
}

.wine-page .btn-outline {
    display: inline-block;
    padding: 0.75rem 2rem;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.wine-page .btn-outline:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

.wine-page .invitation-footer {
    text-align: center;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(31, 72, 52, 0.1), rgba(90, 140, 90, 0.1));
    border-radius: 12px;
}

.wine-page .invitation-footer p {
    margin: 0;
    color: var(--primary-color);
    font-size: 1.1rem;
    font-weight: 600;
}

.wine-page .invitation-footer i {
    color: var(--accent-color);
    margin-right: 0.5rem;
}

/* 饮用指南 */
.wine-page .drinking-guide {
    padding: 4rem 0;
    background: white;
}

.wine-page .guide-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

.wine-page .guide-card {
    text-align: center;
    padding: 2rem 1.5rem;
    background: #f8f9fa;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.wine-page .guide-card:hover {
    background: white;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.wine-page .guide-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wine-page .guide-icon i {
    font-size: 2rem;
    color: white;
}

.wine-page .guide-card h3 {
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.wine-page .guide-card p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.7;
}

.wine-page .caution-box {
    margin-top: 3rem;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(220, 53, 69, 0.05), rgba(255, 0, 0, 0.05));
    border-left: 4px solid #dc3545;
    border-radius: 12px;
}

.wine-page .caution-box h3 {
    color: #721c24;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.wine-page .caution-box h3 i {
    margin-right: 0.5rem;
}

.wine-page .caution-box ul {
    list-style: none;
    padding: 0;
}

.wine-page .caution-box li {
    padding: 0.75rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #555;
    line-height: 1.7;
}

.wine-page .caution-box li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: #dc3545;
    font-weight: bold;
    font-size: 1.2rem;
}

/* 响应式设计 - 平板 */
@media (max-width: 768px) {
    .wine-page .product-header h1 {
        font-size: 2rem;
    }

    .wine-page .product-header .subtitle {
        font-size: 1rem;
    }

    .wine-page .intro-content {
        grid-template-columns: 1fr;
    }

    .wine-page .feature-points {
        grid-template-columns: 1fr;
    }

    .wine-page .series-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .wine-page .process-timeline {
        grid-template-columns: repeat(2, 1fr);
    }

    .wine-page .invitation-options {
        grid-template-columns: 1fr;
    }

    .wine-page .guide-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* 响应式设计 - 手机 */
@media (max-width: 576px) {
    .wine-page .product-header {
        padding: 2rem 0;
    }

    .wine-page .product-header h1 {
        font-size: 1.75rem;
    }

    .wine-page .product-header .subtitle {
        font-size: 0.95rem;
    }

    .wine-page .product-header .disclaimer {
        font-size: 0.9rem;
        padding: 0.6rem 1rem;
    }

    .wine-page .wine-intro,
    .wine-page .wine-series,
    .wine-page .wine-process,
    .wine-page .tasting-invitation,
    .wine-page .drinking-guide {
        padding: 3rem 0;
    }

    .wine-page .intro-text h2 {
        font-size: 1.5rem;
    }

    .wine-page .intro-text .lead {
        font-size: 1rem;
    }

    .wine-page .series-grid {
        grid-template-columns: 1fr;
    }

    .wine-page .series-card .card-image {
        height: 200px;
    }

    .wine-page .process-timeline {
        grid-template-columns: 1fr;
    }

    .wine-page .invitation-header h2 {
        font-size: 1.75rem;
    }

    .wine-page .invitation-header i {
        font-size: 3rem;
    }

    .wine-page .invitation-text h3 {
        font-size: 1.25rem;
    }

    .wine-page .guide-grid {
        grid-template-columns: 1fr;
    }

    .wine-page .qrcode-display img {
        width: 150px;
        height: 150px;
    }
}
 