/* 显微一体机专用样式 - 优化版 */
.microscope-intro-section {
    background: linear-gradient(135deg, var(--bg-section) 0%, var(--bg-white) 100%);
    position: relative;
    overflow: hidden;
}

.microscope-intro-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('/assets/images/bg-pattern.svg') no-repeat center;
    opacity: 0.03;
    z-index: 0;
}

.microscope-content {
    position: relative;
    z-index: 1;
}

.section-title-microscope {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title-microscope h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-title-microscope h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--primary-color);
    border-radius: var(--radius-sm);
}

.section-title-microscope p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

/* 产品描述卡片 */
.product-desc-card {
    background: var(--bg-card);
    border-radius: var(--radius-md);
    padding: 2.5rem;
    box-shadow: var(--shadow-lg);
    margin-bottom: 3rem;
    border: 1px solid var(--primary-alpha-10);
    transition: var(--transition-normal);
}

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

.product-desc-card h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
}

.product-desc-card h3::before {
    content: '📱';
    margin-right: 0.5rem;
    font-size: 1.2rem;
}

.product-desc-card p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin: 0;
}

/* 核心特点表格 */
.features-table-wrapper {
    background: var(--bg-card);
    border-radius: var(--radius-md);
    padding: 2rem;
    box-shadow: var(--shadow-lg);
    margin-bottom: 3rem;
    overflow: hidden;
}

.features-table-wrapper h3 {
    color: var(--primary-color);
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 2rem;
    text-align: center;
    position: relative;
}

.features-table-wrapper h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: var(--primary-color);
}

.features-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 1rem;
}

.features-table th,
.features-table td {
    padding: 1rem 1.5rem;
    text-align: left;
    border-bottom: 1px solid var(--border-light);
}

.features-table th {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: var(--text-white);
    font-weight: 600;
    font-size: 1rem;
    text-align: center;
}

.features-table th:first-child {
    border-top-left-radius: var(--radius-sm);
}

.features-table th:last-child {
    border-top-right-radius: var(--radius-sm);
}

.features-table td {
    background: var(--bg-white);
    transition: var(--transition-normal);
}

.features-table tr:hover td {
    background: var(--bg-section);
}

.features-table td:first-child {
    font-weight: 600;
    color: var(--primary-color);
    background: linear-gradient(135deg, var(--bg-section), var(--bg-white));
}

/* 应用场景卡片 */
.applications-section {
    margin-top: 3rem;
}

.applications-section h3 {
    color: var(--primary-color);
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 2rem;
    text-align: center;
    position: relative;
}

.applications-section h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: var(--primary-color);
}

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

.application-card {
    background: var(--bg-card);
    border-radius: var(--radius-md);
    padding: 1.8rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
    border: 1px solid var(--primary-alpha-10);
    position: relative;
    overflow: hidden;
}

.application-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
}

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

.application-card h4 {
    color: var(--primary-color);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
}

.application-card h4::before {
    content: '🔬';
    margin-right: 0.5rem;
    font-size: 1.1rem;
}

.application-card .app-examples {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.application-card .app-highlights {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-style: italic;
    border-left: 3px solid var(--primary-color);
    padding-left: 1rem;
    background: var(--bg-section);
    padding: 0.8rem 1rem;
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .section-title-microscope h2 {
        font-size: 2rem;
    }

    .product-desc-card,
    .features-table-wrapper {
        padding: 1.5rem;
    }

    .features-table th,
    .features-table td {
        padding: 0.8rem;
        font-size: 0.9rem;
    }

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

    .application-card {
        padding: 1.5rem;
    }
}

@media (max-width: 576px) {
    .section-title-microscope h2 {
        font-size: 1.8rem;
    }

    .product-desc-card,
    .features-table-wrapper {
        padding: 1.2rem;
    }

    .features-table {
        font-size: 0.85rem;
    }

    .features-table th,
    .features-table td {
        padding: 0.6rem 0.8rem;
    }
}