/* 用户协议页面样式 */
.breadcrumb-section {
    background-color: #f8f9fa;
    padding: 15px 0;
    border-bottom: 1px solid #e9ecef;
}

.breadcrumb {
    display: flex;
    align-items: center;
    font-size: 14px;
    color: #6c757d;
}

.breadcrumb a {
    color: #6c757d;
    text-decoration: none;
    margin-right: 5px;
}

.breadcrumb a:hover {
    color: #0056b3;
}

.breadcrumb span {
    color: #495057;
    font-weight: 500;
    margin-left: 5px;
}

.agreement-section {
    padding: 60px 0;
    background-color: #fff;
}

.agreement-container {
    max-width: 800px;
    margin: 0 auto;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    padding: 40px;
}

.agreement-title {
    font-size: 28px;
    font-weight: 700;
    color: #212529;
    margin: 0 0 10px 0;
    text-align: center;
}

.agreement-date {
    font-size: 14px;
    color: #6c757d;
    margin-bottom: 30px;
    text-align: center;
}

.agreement-content {
    color: #495057;
    line-height: 1.6;
}

.agreement-intro {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e9ecef;
}

.agreement-intro p {
    margin-bottom: 15px;
}

.agreement-section {
    margin-bottom: 30px;
}

.agreement-section h2 {
    font-size: 20px;
    font-weight: 600;
    color: #212529;
    margin: 0 0 15px 0;
}

.agreement-section p {
    margin-bottom: 10px;
}

.agreement-section ul {
    padding-left: 20px;
    margin-bottom: 15px;
}

.agreement-section li {
    margin-bottom: 8px;
}

.agreement-section strong {
    font-weight: 600;
    color: #dc3545;
}

.agreement-footer {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #e9ecef;
    color: #6c757d;
    font-size: 14px;
}

.agreement-footer p {
    margin-bottom: 5px;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .agreement-container {
        padding: 30px 20px;
        margin: 0 15px;
    }
    
    .agreement-title {
        font-size: 24px;
    }
    
    .agreement-section h2 {
        font-size: 18px;
    }
} 