/**
 * 文件：assets/css/index.css
 * 作用：misc-api 前台首页样式
 * @version 1.0.0
 */

.vs-home-page {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.vs-main {
    flex: 1;
    padding: 48px 0;
}

.vs-hero {
    text-align: center;
    padding: 48px 20px;
    background: var(--vs-white);
    border-radius: var(--vs-radius);
    box-shadow: var(--vs-shadow);
    margin-bottom: 32px;
}

.vs-hero-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 12px;
}

.vs-hero-desc {
    color: var(--vs-text-secondary);
    font-size: 16px;
    max-width: 560px;
    margin: 0 auto 28px;
    line-height: 1.8;
}

.vs-hero-actions {
    display: flex;
    justify-content: center;
    gap: 12px;
}

.vs-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.vs-feature-card {
    background: var(--vs-white);
    border-radius: var(--vs-radius);
    box-shadow: var(--vs-shadow);
    padding: 28px 24px;
    text-align: center;
}

.vs-feature-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(17, 17, 17, 0.06);
    color: var(--vs-primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 16px;
}

.vs-feature-card h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
}

.vs-feature-card p {
    font-size: 13px;
    color: var(--vs-text-secondary);
    line-height: 1.6;
}

@media (max-width: 768px) {
    .vs-main {
        padding: 24px 0;
    }

    .vs-hero {
        padding: 32px 16px;
    }

    .vs-hero-title {
        font-size: 24px;
    }

    .vs-hero-desc {
        font-size: 14px;
    }

    .vs-features {
        grid-template-columns: 1fr;
    }
}
