/* 高级公司介绍页面专用样式 */
:root {
    --primary-color: #1a4d2e;
    --secondary-color: #4a9c6d;
    --accent-color: #8bc34a;
    --dark-color: #0d2c1a;
    --light-color: #f8fdf9;
    --gradient-1: linear-gradient(135deg, #1a4d2e 0%, #2e7d57 100%);
    --gradient-2: linear-gradient(135deg, #4a9c6d 0%, #6abf8a 100%);
    --shadow-1: 0 10px 30px rgba(26, 77, 46, 0.1);
    --shadow-2: 0 20px 50px rgba(26, 77, 46, 0.15);
    --transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: #ffffff;
    color: #333333;
    line-height: 1.6;
    overflow-x: hidden;
}

/* 主容器 */
.tech-container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
}

/* 导航栏 */
.tech-navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 20px 40px;
    box-shadow: 0 5px 20px rgba(26, 77, 46, 0.1);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 28px;
    font-weight: 900;
    color: var(--primary-color);
    text-decoration: none;
    line-height: 1.3;
}

.logo span {
    color: var(--accent-color);
}

.nav-links {
    display: flex;
    gap: 40px;
}

.nav-links a {
    font-size: 18px;
    font-weight: 600;
    color: var(--dark-color);
    text-decoration: none;
    transition: var(--transition);
    position: relative;
    line-height: 1.8;
}

.nav-links a:hover, .nav-links a.active {
    color: var(--primary-color);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
}

.nav-links a:hover::after, .nav-links a.active::after {
    width: 100%;
}

.nav-cta {
    padding: 12px 30px;
    background: var(--primary-color);
    color: white;
    border-radius: 50px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    transition: var(--transition);
    line-height: 1.8;
}

.nav-cta:hover {
    background: var(--secondary-color);
    transform: translateY(-3px);
}

/* 英雄区域 */
.tech-hero {
    min-height: 100vh;
    background: var(--gradient-1);
    display: flex;
    align-items: center;
    padding: 120px 40px 80px;
    position: relative;
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-content {
    color: white;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 25px;
    line-height: 1.8;
    backdrop-filter: blur(5px);
}

.hero-title {
    font-size: 64px;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 25px;
}

.hero-title span {
    color: var(--accent-color);
}

.hero-description {
    font-size: 22px;
    font-weight: 300;
    margin-bottom: 40px;
    opacity: 0.95;
    line-height: 1.5;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 50px;
}

.stat-item {
    text-align: center;
    padding: 25px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(5px);
}

.stat-number {
    font-size: 36px;
    font-weight: 800;
    color: white;
    margin-bottom: 10px;
    line-height: 1.2;
}

.stat-label {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    line-height: 1.8;
}

/* 重新设计后的 hero-visual 部分 */
.hero-visual {
    position: relative;
    padding: 30px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 50px rgba(26, 77, 46, 0.2);
    overflow: visible;
}

.visual-container {
    display: flex;
    flex-direction: column;
    gap: 40px;
    height: 100%;
}

/* 优势卡片 */
.advantages-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.advantage-card {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 15px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.advantage-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
    border-color: var(--accent-color);
}

.advantage-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-color);
    font-size: 20px;
    flex-shrink: 0;
}

.advantage-content h4 {
    color: white;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 5px;
    line-height: 1.4;
}

.advantage-content p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    margin: 0;
    line-height: 1.5;
}

/* 对比图表部分 */
.comparison-section {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 15px;
    padding: 25px;
    position: relative;
}

.comparison-title {
    color: white;
    font-size: 20px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 30px;
    line-height: 1.4;
}

.comparison-chart {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 40px;
    position: relative;
}

.chart-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.chart-label {
    color: white;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 15px;
    text-align: center;
    line-height: 1.4;
}

.chart-bar-container {
    width: 100%;
    max-width: 100px;
    height: 200px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    position: relative;
    overflow: hidden;
    margin-bottom: 15px;
}

.chart-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    border-radius: 10px;
    transition: height 2s cubic-bezier(0.34, 1.56, 0.64, 1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.conventional .chart-bar {
    background: linear-gradient(to top, #4a9c6d, #6abf8a);
}

.cocrystal .chart-bar {
    background: linear-gradient(to top, #8bc34a, #aed581);
}

.bar-value {
    color: white;
    font-size: 18px;
    font-weight: 700;
    position: absolute;
    top: -30px;
    width: 100%;
    text-align: center;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.chart-description {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    text-align: center;
    line-height: 1.5;
}

.improvement-badge {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--accent-color);
    color: var(--dark-color);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 5px 15px rgba(139, 195, 74, 0.3);
    z-index: 2;
}

/* 应用领域部分 */
.applications-section {
    text-align: center;
}

.applications-title {
    color: rgba(255, 255, 255, 0.9);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    line-height: 1.4;
}

.applications-tags {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
}

.app-tag {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.2);
    line-height: 1.5;
}

.app-tag:hover {
    background: var(--accent-color);
    color: var(--dark-color);
    transform: translateY(-3px);
}

/* 公司介绍区域 */
.company-section {
    padding: 120px 40px;
    background: white;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-subtitle {
    font-size: 18px;
    font-weight: 600;
    color: var(--secondary-color);
    letter-spacing: 2px;
    margin-bottom: 15px;
    text-transform: uppercase;
    line-height: 1.8;
}

.section-title {
    font-size: 48px;
    font-weight: 800;
    color: var(--dark-color);
    line-height: 1.2;
    margin-bottom: 20px;
}

.section-title span {
    color: var(--primary-color);
}

.section-desc {
    font-size: 20px;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.company-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-top: 60px;
}

.company-text p {
    font-size: 18px;
    color: #555;
    margin-bottom: 25px;
    line-height: 1.8;
}

.highlight-box {
    background: var(--light-color);
    border-left: 5px solid var(--secondary-color);
    padding: 30px;
    border-radius: 10px;
    margin: 40px 0;
    box-shadow: var(--shadow-1);
}

.highlight-box p {
    font-size: 20px;
    font-weight: 600;
    color: var(--dark-color);
    margin: 0;
    line-height: 1.6;
}

.tech-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-top: 40px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    background: white;
    border-radius: 10px;
    box-shadow: var(--shadow-1);
    transition: var(--transition);
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-2);
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: var(--light-color);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 22px;
    flex-shrink: 0;
}

.feature-content h4 {
    font-size: 20px;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 10px;
    line-height: 1.6;
}

.feature-content p {
    font-size: 16px;
    color: #666;
    margin: 0;
    line-height: 1.8;
}

.company-visual {
    position: relative;
    height: 500px;
    background: var(--gradient-2);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-2);
}

.visual-content {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 40px;
    color: white;
    text-align: center;
}

.visual-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.visual-stat {
    text-align: center;
}

.visual-number {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 10px;
    line-height: 1.2;
}

.visual-label {
    font-size: 16px;
    opacity: 0.9;
    line-height: 1.8;
}

/* 产品分类区域 */
.products-section {
    padding: 100px 40px;
    background: var(--light-color);
}

.category-nav {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.category-btn {
    padding: 18px 35px;
    background: white;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 600;
    color: #666;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
    display: flex;
    align-items: center;
    gap: 10px;
    line-height: 1.8;
}

.category-btn.active, .category-btn:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-5px);
    box-shadow: var(--shadow-1);
}

.category-content {
    display: none;
}

.category-content.active {
    display: block;
    animation: fadeIn 0.5s ease-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.category-header {
    text-align: center;
    margin-bottom: 50px;
}

.category-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 15px;
    line-height: 1.3;
}

.category-desc {
    font-size: 20px;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

.product-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-1);
    transition: var(--transition);
    position: relative;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-2);
}

.product-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--accent-color);
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    z-index: 2;
    line-height: 2;
}

.product-header {
    height: 180px;
    background: var(--gradient-1);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.product-header::before {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(0.8); opacity: 0.5; }
    50% { transform: scale(1.2); opacity: 0.8; }
}

.product-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: 32px;
    color: white;
    position: relative;
    z-index: 1;
}

.product-body {
    padding: 30px;
}

.product-name {
    font-size: 24px;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 15px;
    line-height: 1.4;
}

.product-desc {
    font-size: 16px;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.8;
}

.product-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 25px;
}

.product-tag {
    background: var(--light-color);
    color: var(--primary-color);
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    line-height: 2;
}

.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.product-grade {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1.5;
}

.btn-outline {
    padding: 12px 25px;
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    line-height: 1.8;
}

.btn-outline:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-3px);
}

/* 技术优势区域 */
.technology-section {
    padding: 120px 40px;
    background: white;
}

.tech-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.tech-card {
    background: white;
    border-radius: 15px;
    padding: 40px 30px;
    box-shadow: var(--shadow-1);
    transition: var(--transition);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.tech-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--gradient-1);
}

.tech-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-2);
}

.tech-icon {
    width: 80px;
    height: 80px;
    background: var(--light-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 32px;
    color: var(--primary-color);
}

.tech-card h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 20px;
    line-height: 1.4;
}

.tech-card p {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
}

/* 页脚 */
.tech-footer {
    padding: 80px 40px 40px;
    background: var(--dark-color);
    color: white;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 50px;
    margin-bottom: 60px;
}

.footer-brand h3 {
    font-size: 28px;
    font-weight: 900;
    margin-bottom: 20px;
    line-height: 1.3;
}

.footer-brand h3 span {
    color: var(--accent-color);
}

.footer-brand p {
    font-size: 16px;
    opacity: 0.8;
    margin-bottom: 30px;
    line-height: 1.8;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: var(--transition);
}

.social-link:hover {
    background: var(--accent-color);
    transform: translateY(-3px);
}

.footer-col h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 25px;
    line-height: 1.6;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 15px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
    font-size: 16px;
    line-height: 1.8;
}

.footer-links a:hover {
    color: var(--accent-color);
    padding-left: 10px;
}

.footer-contact li {
    list-style: none;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 16px;
    line-height: 1.8;
}

.footer-contact i {
    color: var(--accent-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 16px;
    opacity: 0.7;
    line-height: 1.8;
}

/* 响应式设计 */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 52px;
        line-height: 1.2;
    }
    
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .company-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .nav-links {
        display: none;
    }
    
    .hero-visual {
        height: auto;
        min-height: 500px;
    }
    
    .comparison-chart {
        gap: 20px;
    }
    
    .chart-bar-container {
        max-width: 80px;
        height: 180px;
    }
}

@media (max-width: 768px) {
    .tech-hero, .company-section, .products-section, .technology-section, .tech-footer {
        padding: 60px 20px;
    }
    
    .tech-navbar {
        padding: 15px 20px;
    }
    
    .hero-title {
        font-size: 42px;
        line-height: 1.2;
    }
    
    .hero-description {
        font-size: 18px;
        line-height: 1.8;
    }
    
    .section-title {
        font-size: 36px;
        line-height: 1.3;
    }
    
    .section-desc {
        font-size: 18px;
        line-height: 1.8;
    }
    
    .hero-stats, .visual-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .category-btn {
        padding: 15px 25px;
        font-size: 16px;
    }
    
    .tech-features {
        grid-template-columns: 1fr;
    }
    
    .company-visual {
        height: 400px;
    }
    
    /* 响应式 hero-visual 调整 */
    .hero-visual {
        padding: 20px;
        min-height: auto;
    }
    
    .advantages-grid {
        grid-template-columns: 1fr;
    }
    
    .comparison-chart {
        flex-direction: column;
        align-items: center;
        gap: 40px;
    }
    
    .chart-item {
        width: 100%;
        max-width: 200px;
    }
    
    .chart-bar-container {
        max-width: 80px;
        height: 150px;
    }
    
    .improvement-badge {
        position: relative;
        top: auto;
        left: auto;
        transform: none;
        margin: 20px auto;
        width: fit-content;
    }
    
    .applications-tags {
        gap: 8px;
    }
    
    .app-tag {
        padding: 8px 16px;
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 32px;
        line-height: 1.3;
    }
    
    .section-title {
        font-size: 28px;
        line-height: 1.4;
    }
    
    .hero-stats, .visual-stats {
        grid-template-columns: 1fr;
    }
    
    .tech-showcase {
        grid-template-columns: 1fr;
    }
    
    .category-nav {
        flex-direction: column;
        align-items: center;
    }
    
    .nav-cta {
        padding: 10px 20px;
        font-size: 14px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    /* 小屏幕 hero-visual 调整 */
    .advantage-card {
        padding: 15px;
    }
    
    .advantage-icon {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
    
    .advantage-content h4 {
        font-size: 14px;
    }
    
    .advantage-content p {
        font-size: 12px;
    }
    
    .comparison-section {
        padding: 20px 15px;
    }
    
    .comparison-title {
        font-size: 18px;
    }
    
    .chart-bar-container {
        height: 120px;
    }
    
    .bar-value {
        font-size: 16px;
    }
}
















/* ===== 产品详情板块样式 ===== */

.innovatebio-product-details {
    padding: 120px 40px;
    background: var(--light-color);
}

.innovatebio-details-content {
    max-width: 1200px;
    margin: 0 auto;
}

/* 详情区块通用样式 */
.innovatebio-detail-section {
    background: white;
    border-radius: 15px;
    box-shadow: var(--shadow-1);
    margin-bottom: 30px;
    overflow: hidden;
    transition: var(--transition);
}

.innovatebio-detail-section:hover {
    box-shadow: var(--shadow-2);
}

.innovatebio-content-wrapper {
    padding: 40px;
}

/* 内容内部的样式（针对PHP插入的内容） */
.chanpinyenr {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
}

.chanpinyenr h3 {
    font-size: 28px;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--light-color);
    line-height: 1.3;
}

.chanpinyenr h4 {
    font-size: 22px;
    font-weight: 600;
    color: var(--primary-color);
    margin: 25px 0 15px 0;
    line-height: 1.4;
}

.chanpinyenr p {
    margin-bottom: 20px;
    line-height: 1.8;
}

.chanpinyenr ul,
.chanpinyenr ol {
    margin: 20px 0;
    padding-left: 25px;
}

.chanpinyenr li {
    margin-bottom: 12px;
    line-height: 1.7;
}

.chanpinyenr ul li {
    position: relative;
    padding-left: 20px;
}

.chanpinyenr ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 8px;
    height: 8px;
    background: var(--accent-color);
    border-radius: 50%;
}

.chanpinyenr ol {
    counter-reset: list-counter;
}

.chanpinyenr ol li {
    counter-increment: list-counter;
    position: relative;
    padding-left: 30px;
}

.chanpinyenr ol li::before {
    content: counter(list-counter) '.';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 16px;
}

/* 特殊内容样式增强 */
.chanpinyenr strong {
    color: var(--dark-color);
    font-weight: 700;
}

.chanpinyenr em {
    color: var(--secondary-color);
    font-style: italic;
}

.chanpinyenr a {
    color: var(--primary-color);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: var(--transition);
}

.chanpinyenr a:hover {
    color: var(--secondary-color);
    border-bottom-color: var(--secondary-color);
}

/* 并排布局 */
.innovatebio-combined-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 30px;
}

.innovatebio-combined-col .innovatebio-detail-section {
    height: 100%;
    margin-bottom: 0;
}

/* 第一个区块特殊样式 */
.innovatebio-detail-section:first-child {
    background: var(--gradient-1);
    color: white;
}

.innovatebio-detail-section:first-child .chanpinyenr {
    color: rgba(255, 255, 255, 0.95);
}

.innovatebio-detail-section:first-child .chanpinyenr h3,
.innovatebio-detail-section:first-child .chanpinyenr h4 {
    color: white;
}

.innovatebio-detail-section:first-child .chanpinyenr ul li::before {
    background: var(--accent-color);
}

.innovatebio-detail-section:first-child .chanpinyenr ol li::before {
    color: white;
}

/* det4规格区块特殊样式 */
.innovatebio-detail-section:nth-child(4) {
    border-left: 4px solid var(--secondary-color);
}

/* det5优势区块特殊样式 */
.innovatebio-detail-section:nth-child(5) {
    border-left: 4px solid var(--accent-color);
}

/* det6支付区块特殊样式 */
.innovatebio-detail-section:nth-child(6) {
    background: #f9f9f9;
}

/* det7 FAQ区块特殊样式 */
.innovatebio-detail-section:nth-child(7) {
    border: 1px solid rgba(26, 77, 46, 0.1);
}

/* 表格样式（如果det中有表格） */


/* 更简洁的表格样式 */
.chanpinyenr table {
    width: 100%;
    border-collapse: collapse;
    margin: 25px 0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.chanpinyenr th {
    background: var(--primary-color);
    color: white;
    font-weight: 600;
    padding: 15px;
    text-align: left;
}

.chanpinyenr td {
    padding: 15px;
    border-bottom: 1px solid #eee;
}

.innovatebio-product-details .chanpinyenr tr:nth-child(even) {
    background: transparent !important;
}

/* 引用块样式 */
.chanpinyenr blockquote {
    border-left: 4px solid var(--secondary-color);
    padding: 20px 30px;
    margin: 25px 0;
    background: var(--light-color);
    font-style: italic;
    border-radius: 0 8px 8px 0;
}

/* 响应式设计 */
@media (max-width: 992px) {
    .innovatebio-combined-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .innovatebio-content-wrapper {
        padding: 30px;
    }
}

@media (max-width: 768px) {
    .innovatebio-product-details {
        padding: 60px 20px;
    }
    
    .innovatebio-content-wrapper {
        padding: 25px;
    }
    
    .chanpinyenr h3 {
        font-size: 24px;
    }
    
    .chanpinyenr h4 {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .innovatebio-content-wrapper {
        padding: 20px;
    }
    
    .chanpinyenr {
        font-size: 15px;
    }
    
    .chanpinyenr h3 {
        font-size: 22px;
    }
    
    .chanpinyenr h4 {
        font-size: 18px;
    }
    
    .chanpinyenr ul,
    .chanpinyenr ol {
        padding-left: 20px;
    }
}















/* ===== 推荐内容板块样式 ===== */

.innovatebio-recommendations {
    padding: 100px 40px;
    background: linear-gradient(135deg, #f8fdf9 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.innovatebio-recommendations::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: var(--gradient-1);
    opacity: 0.05;
    border-radius: 50%;
    transform: translate(30%, -30%);
}

.innovatebio-recommendations::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 200px;
    height: 200px;
    background: var(--gradient-2);
    opacity: 0.05;
    border-radius: 50%;
    transform: translate(-30%, 30%);
}

.innovatebio-recommendations-content {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* 头部样式 */
.innovatebio-recommendations-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 2px solid rgba(26, 77, 46, 0.1);
}

.recommendations-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--dark-color);
    line-height: 1.3;
}

.recommendations-badge {
    background: var(--accent-color);
    color: var(--dark-color);
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 12px rgba(139, 195, 74, 0.2);
}

/* 推荐内容网格 */
.innovatebio-recommendations-grid {
    margin: 40px 0;
}

.innovatebio-more-info {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
}

.recommendation-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px;
    background: white;
    border-radius: 15px;
    text-decoration: none;
    box-shadow: var(--shadow-1);
    transition: var(--transition);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.recommendation-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--primary-color);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.recommendation-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-2);
    border-color: rgba(26, 77, 46, 0.1);
}

.recommendation-item:hover::before {
    transform: scaleY(1);
}

.recommendation-item:hover .recommendation-icon {
    background: var(--gradient-1);
    transform: scale(1.1) rotate(5deg);
}

.recommendation-item:hover .recommendation-link {
    color: var(--primary-color);
}

.recommendation-item:hover .recommendation-link i {
    transform: translateX(5px);
}

/* 图标样式 */
.recommendation-icon {
    width: 60px;
    height: 60px;
    background: var(--light-color);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 24px;
    transition: var(--transition);
    flex-shrink: 0;
}

/* 内容样式 */
.recommendation-content {
    flex: 1;
}

.recommendation-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 8px;
    line-height: 1.4;
    transition: var(--transition);
}

.recommendation-item:hover .recommendation-title {
    color: var(--primary-color);
}

.recommendation-link {
    font-size: 14px;
    color: #666;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: var(--transition;
}

.recommendation-link i {
    font-size: 12px;
    transition: transform 0.3s ease;
}

/* 底部样式 */
.innovatebio-recommendations-footer {
    margin-top: 50px;
    padding: 30px;
    background: white;
    border-radius: 15px;
    box-shadow: var(--shadow-1);
    text-align: center;
}

.recommendations-note {
    font-size: 16px;
    color: #666;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin: 0;
}

.recommendations-note i {
    color: var(--accent-color);
    font-size: 20px;
}

.contact-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    border-bottom: 2px solid transparent;
    transition: var(--transition);
}

.contact-link:hover {
    color: var(--secondary-color);
    border-bottom-color: var(--secondary-color);
}

/* 空状态样式 */
.recommendations-empty {
    text-align: center;
    padding: 60px 20px;
    background: white;
    border-radius: 15px;
    box-shadow: var(--shadow-1);
}

.recommendations-empty i {
    font-size: 48px;
    color: var(--accent-color);
    margin-bottom: 20px;
}

.recommendations-empty h4 {
    font-size: 20px;
    color: var(--dark-color);
    margin-bottom: 10px;
}

.recommendations-empty p {
    color: #666;
    margin-bottom: 20px;
}

/* 响应式设计 */
@media (max-width: 1024px) {
    .innovatebio-more-info {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
}

@media (max-width: 768px) {
    .innovatebio-recommendations {
        padding: 60px 20px;
    }
    
    .innovatebio-recommendations-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .recommendations-title {
        font-size: 28px;
    }
    
    .innovatebio-more-info {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .recommendation-item {
        padding: 20px;
    }
    
    .recommendations-note {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .recommendation-item {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .recommendation-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    .recommendation-title {
        font-size: 16px;
    }
    
    .recommendations-badge {
        padding: 8px 15px;
        font-size: 13px;
    }
}