/* 用户协议页面样式 */
.agreement-section {
    padding: 60px 20px;
    background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
}

.agreement-container {
    max-width: 1200px;
    margin: 0 auto;
}

.agreement-card {
    background: #fff;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    position: relative;
}

.agreement-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #00d4ff, #7c3aed);
}

.agreement-header {
    text-align: center;
    padding: 40px 30px;
    border-bottom: 1px solid #e2e8f0;
}

.agreement-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #00d4ff 0%, #7c3aed 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 28px;
    box-shadow: 0 8px 25px rgba(0, 212, 255, 0.3);
}

.agreement-title {
    font-size: 28px;
    font-weight: 700;
    background: linear-gradient(135deg, #00d4ff 0%, #7c3aed 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0 0 10px;
}

.agreement-update {
    color: #94a3b8;
    font-size: 14px;
    margin: 0;
}

.agreement-content {
    padding: 40px 50px;
}

.agreement-intro {
    background: linear-gradient(135deg, #f0f9ff 0%, #f5f3ff 100%);
    border-left: 4px solid #00d4ff;
    padding: 20px 25px;
    border-radius: 0 12px 12px 0;
    margin-bottom: 35px;
}

.agreement-intro p {
    margin: 0;
    line-height: 1.8;
    color: #475569;
    font-size: 15px;
}

.agreement-intro strong {
    color: #0f172a;
}

.article-section {
    margin-bottom: 35px;
}

.article-section:last-child {
    margin-bottom: 0;
}

.article-title {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 0 0 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f1f5f9;
    position: relative;
}

.article-title::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, #00d4ff, #7c3aed);
    border-radius: 1px;
}

.article-number {
    width: 10%;
    height: 32px;
    background: linear-gradient(135deg, #00d4ff 0%, #7c3aed 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    flex-shrink: 0;
}

.article-text {
    font-size: 18px;
    font-weight: 600;
    color: #1e293b;
}

.article-content {
    padding-left: 44px;
}

.article-content p {
    margin: 0 0 15px;
    line-height: 1.8;
    color: #475569;
    font-size: 15px;
    text-align: justify;
}

.article-content p:last-child {
    margin-bottom: 0;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .agreement-section {
        padding: 40px 15px;
    }
    
    .agreement-header {
        padding: 30px 20px;
    }
    
    .agreement-icon {
        width: 50px;
        height: 50px;
        font-size: 22px;
    }
    
    .agreement-title {
        font-size: 22px;
    }
    
    .agreement-content {
        padding: 30px 20px;
    }
    
    .agreement-intro {
        padding: 15px 20px;
    }
    
    .agreement-intro p {
        font-size: 14px;
    }
    
    .article-text {
        font-size: 16px;
    }
    
    .article-content {
        padding-left: 0;
    }
    
    .article-content p {
        font-size: 14px;
    }
}