/* terms.css - 服务条款页面专用样式 */

.terms-section {
    background: #101522;
    padding: 60px 0 40px 0;
    min-height: 60vh;
}
.terms-section .container {
    max-width: 900px;
    margin: 0 auto;
    background: rgba(255,255,255,0.02);
    border-radius: 12px;
    box-shadow: 0 2px 16px 0 rgba(0,0,0,0.08);
    padding: 40px 32px 32px 32px;
}
.terms-section h1 {
    font-size: 2.2rem;
    color: #00eaff;
    margin-bottom: 32px;
    text-align: center;
    font-weight: 700;
}
.terms-content h2 {
    font-size: 1.25rem;
    color: #e8f4fd;
    margin-top: 32px;
    margin-bottom: 12px;
    font-weight: 600;
}
.terms-content p, .terms-content li {
    color: #b0c4de;
    font-size: 1rem;
    line-height: 1.8;
}
.terms-content ul {
    margin-left: 1.5em;
    margin-bottom: 1em;
}
.terms-content a {
    color: #00eaff;
    text-decoration: underline;
}
@media (max-width: 600px) {
    .terms-section .container {
        padding: 20px 8px 16px 8px;
    }
    .terms-section h1 {
        font-size: 1.3rem;
    }
    .terms-content h2 {
        font-size: 1.05rem;
    }
    .terms-content p, .terms-content li {
        font-size: 0.95rem;
    }
}

/* 服务条款头部科技感样式 */
.terms-hero {
    background: linear-gradient(135deg, #0a0e1a 0%, #1a1f2e 60%, #0f1419 100%);
    padding: 120px 0 60px 0;
    position: relative;
    border-bottom: 1px solid rgba(0, 234, 255, 0.1);
    overflow: hidden;
}
.terms-hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: radial-gradient(ellipse at 50% 20%, rgba(0, 234, 255, 0.08) 0%, transparent 70%);
    z-index: 0;
}
.terms-hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    position: relative;
    z-index: 1;
}
.hero-text {
    flex: 1;
}
.hero-icon {
    font-size: 54px;
    color: #00eaff;
    margin-bottom: 18px;
}
.hero-title {
    font-size: 2.6rem;
    font-weight: 700;
    color: #e8f4fd;
    margin-bottom: 18px;
}
.hero-subtitle {
    font-size: 1.15rem;
    color: #b0c4de;
    margin-bottom: 28px;
    line-height: 1.7;
}
.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    margin-bottom: 0;
    list-style: none;
    padding: 0;
}
.hero-features li {
    background: rgba(0, 234, 255, 0.08);
    border: 1px solid rgba(0, 234, 255, 0.18);
    border-radius: 18px;
    color: #00eaff;
    padding: 8px 18px;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
}
.hero-visual {
    display: flex;
    flex-direction: column;
    gap: 18px;
    align-items: flex-end;
}
.terms-visual-card {
    background: linear-gradient(135deg, #101522 60%, #00eaff11 100%);
    border: 1px solid rgba(0, 234, 255, 0.13);
    border-radius: 18px;
    padding: 24px 32px;
    color: #e8f4fd;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 16px;
    box-shadow: 0 4px 24px rgba(0,234,255,0.06);
    font-weight: 500;
    min-width: 180px;
}
.terms-visual-card i {
    font-size: 2rem;
    color: #00eaff;
}
@media (max-width: 900px) {
    .terms-hero-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 32px;
    }
    .hero-visual {
        flex-direction: row;
        gap: 12px;
        align-items: center;
    }
}
@media (max-width: 600px) {
    .terms-hero {
        padding: 70px 0 30px 0;
    }
    .hero-title {
        font-size: 1.5rem;
    }
    .hero-subtitle {
        font-size: 0.98rem;
    }
    .terms-visual-card {
        padding: 14px 12px;
        font-size: 0.95rem;
        min-width: 120px;
    }
} 