body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', sans-serif;
    background: #f5f7fa;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}
.page {
    max-width: 1320px;
    margin: 0 auto;
    padding: 60px 48px 80px;
}
.page-header {
    margin-bottom: 56px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
}
.page-header-left {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.page-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    color: #2f6bff;
    background: #eef3ff;
    padding: 5px 18px;
    border-radius: 20px;
    width: fit-content;
    letter-spacing: 1px;
}
.page-title {
    font-size: 36px;
    font-weight: 800;
    color: #152033;
    letter-spacing: -0.5px;
    line-height: 1.3;
}
.page-title .gradient-text {
    background: linear-gradient(135deg, #2f6bff, #6c5ce7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.page-subtitle {
    font-size: 15px;
    color: #5a6a80;
    max-width: 520px;
    line-height: 1.8;
}
.cap-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.cap-card {
    background: #ffffff;
    border-radius: 8px;
    padding: 36px 32px;
    border: 1px solid #e4e8ef;
    position: relative;
    overflow: hidden;
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
}
.cap-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #2f6bff, #6c5ce7);
    opacity: 0;
    transition: opacity 0.3s;
}
.cap-card-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}
.cap-icon.blue {
    background: #eef3ff;
    color: #2F6BFF;
}

.cap-icon {
    width: 52px;
    height: 52px;
    border-radius: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.cap-icon svg {
    width: 26px;
    height: 26px;
}
.cap-title {
    font-size: 18px;
    font-weight: 700;
    color: #152033;
}
.cap-desc {
    font-size: 14px;
    color: #5a6a80;
    line-height: 1.9;
    flex: 1;
}
.cap-tag {
    display: inline-block;
    margin-top: 18px;
    font-size: 12px;
    padding: 4px 14px;
    border-radius: 16px;
    background: #eef3ff;
    color: #2f6bff;
    font-weight: 500;
}
.cap-icon.purple {
    background: #f0ecff;
    color: #6c5ce7;
}
.cap-icon.green {
    background: #e8faf0;
    color: #2d9c62;
}
.cap-icon.orange {
    background: #fff4e6;
    color: #e8890c;
}
.cap-icon.red {
    background: #fff0f0;
    color: #e04a59;
}
.cap-icon.cyan {
    background: #e6f7ff;
    color: #0088cc;
}
.cap-card:nth-child(1) .cap-icon { color: #4A90D9; }
.cap-card:nth-child(2) .cap-icon { color: #9B59B6; }
.cap-card:nth-child(3) .cap-icon { color: #2ECC71; }
.cap-card:nth-child(4) .cap-icon { color: #E67E22; }
.cap-card:nth-child(5) .cap-icon { color: #E74C3C; }
.cap-card:nth-child(6) .cap-icon { color: #1ABC9C; }