/* 功能特点页面样式 */
.features-page {
    padding-top: 80px;
}

.features-hero {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color: white;
    text-align: center;
    padding: 4rem 2rem;
}

.features-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.features-hero p {
    font-size: 1.5rem;
    opacity: 0.9;
}

/* 功能模块样式 */
.feature-modules {
    padding: 4rem 2rem;
    background: white;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-module {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s;
}

.feature-module:hover {
    transform: translateY(-5px);
}

.feature-module .feature-icon {
    width: 48px;
    height: 48px;
    fill: var(--primary-color);
    margin-bottom: 1rem;
}

.feature-module h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.feature-module p {
    color: var(--light-text);
    line-height: 1.6;
}

/* 核心优势样式 */
.feature-highlights {
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #f5f7fa 0%, #e4e7eb 100%);
}

.feature-highlights h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--text-color);
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.highlight-item {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s;
}

.highlight-item:hover {
    transform: translateY(-5px);
}

.highlight-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.highlight-item p {
    color: var(--light-text);
}

/* 响应式调整 */
@media (max-width: 768px) {
    .features-hero h1 {
        font-size: 2rem;
    }

    .features-hero p {
        font-size: 1.2rem;
    }

    .feature-modules {
        grid-template-columns: 1fr;
        padding: 2rem 1rem;
    }

    .highlights-grid {
        grid-template-columns: 1fr;
    }
} 