
/* sCMOS系列特点介绍区域样式 - 优化版 */
.scmos-features-section {
    position: relative;
    overflow: hidden;
}

.scmos-features-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: var(--gradient-primary);
    opacity: 0.05;
    z-index: 1;
}

.scmos-features-section .container {
    position: relative;
    z-index: 2;
}

/* 特点表格样式 */
.features-table-wrapper {
    background: var(--bg-card);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    border: 1px solid var(--border-light);
}

.features-table {
    margin-bottom: 0;
    border: none;
}

.features-table thead th {
    background: var(--gradient-primary);
    color: var(--text-white);
    font-weight: 600;
    padding: 1.2rem 1rem;
    border: none;
    text-align: center;
    font-size: 16px;
}

.features-table tbody td {
    padding: 1.2rem 1rem;
    vertical-align: middle;
    border-bottom: 1px solid var(--border-light);
    line-height: 1.6;
}

.features-table tbody tr:last-child td {
    border-bottom: none;
}

.features-table tbody tr:hover {
    background-color: var(--primary-alpha-10);
    transform: translateY(-1px);
    transition: var(--transition-normal);
}

.feature-name {
    font-weight: 600;
    color: var(--primary-color);
    font-size: 14px;
    text-align: center;
    background: var(--primary-alpha-10);
    border-radius: var(--radius-sm);
}

.feature-desc {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.7;
}

.feature-desc strong {
    color: var(--primary-color);
    font-weight: 600;
}

.feature-source {
    font-size: 13px;
    color: var(--text-secondary);
    text-align: center;
    background: var(--bg-hover);
    border-radius: var(--radius-sm);
}

.resolution-list, .dimension-list {
    font-size: 14px;
}

.resolution-list strong, .dimension-list strong {
    color: var(--primary-color);
}

/* 应用领域样式 */
.applications-section {
    background: linear-gradient(135deg, var(--bg-section) 0%, var(--bg-white) 100%);
    padding: 3rem 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-md);
}

.applications-title {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 24px;
    text-align: center;
    margin-bottom: 2rem;
}

.application-card {
    background: var(--bg-card);
    border-radius: var(--radius-md);
    padding: 2rem 1.5rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-light);
    transition: var(--transition-normal);
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

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

.application-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    font-size: 24px;
    box-shadow: var(--shadow-md);
}

.application-content {
    flex: 1;
}

.application-name {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 0.8rem;
    line-height: 1.4;
}

.application-desc {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 0;
}

/* 总结区域样式 */
.summary-section {
    margin-top: 3rem;
}

.summary-card {
    background: var(--gradient-primary);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

.summary-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 200px;
    height: 200px;
    background: var(--primary-alpha-10);
    border-radius: var(--radius-full);
    transform: rotate(45deg);
}

.summary-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.summary-text {
    color: var(--text-white);
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 0;
    font-weight: 400;
}

.summary-text strong {
    color: var(--text-white)!important;
    font-weight: 700;
    text-shadow: 0 2px 4px var(--primary-alpha-20);
}

/* 响应式设计 */
@media (max-width: 1199.98px) {
    .summary-card{
        text-align: center;
    }
    .features-table thead th {
        font-size: 14px;
        padding: 1rem 0.8rem;
    }

    .features-table tbody td {
        padding: 1rem 0.8rem;
    }

    .feature-desc, .feature-name, .feature-source {
        font-size: 13px;
    }

    .applications-section {
        padding: 2rem 1.5rem;
    }

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

    .application-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
}

@media (max-width: 991.98px) {
    .application-card {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .application-icon {
        margin-bottom: 1rem;
    }

    .summary-text {
        font-size: 16px;
    }
}

@media (max-width: 767.98px) {
    .features-table-wrapper {
        border-radius: var(--radius-md);
    }

    .features-table thead th {
        font-size: 12px;
        padding: 0.8rem 0.5rem;
    }

    .features-table tbody td {
        padding: 0.8rem 0.5rem;
        font-size: 12px;
    }

    .feature-name {
        font-size: 12px;
    }

    .applications-section {
        padding: 1.5rem 1rem;
        border-radius: var(--radius-md);
    }

    .applications-title {
        font-size: 20px;
    }

    .application-card {
        padding: 1.2rem 1rem;
    }

    .application-name {
        font-size: 14px;
    }

    .application-desc {
        font-size: 13px;
    }

    .summary-card {
        padding: 2rem 1.5rem;
        border-radius: var(--radius-md);
    }

    .summary-text {
        font-size: 15px;
    }
}

@media (max-width: 575.98px) {
    .table-responsive {
        font-size: 11px;
    }

    .features-table thead th {
        padding: 0.6rem 0.3rem;
    }

    .features-table tbody td {
        padding: 0.6rem 0.3rem;
    }

    .application-icon {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }

    .summary-card {
        padding: 1.5rem 1rem;
    }
}
