/* 法律页面样式 - Legal Pages Styles */

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

.legal-page {
    padding: 80px 0 60px;
    background-color: #f8f9fa;
    min-height: calc(100vh - 160px);
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    line-height: 1.7;
}

.legal-content h1 {
    color: #2c3e50;
    font-size: 2.5rem;
    margin-bottom: 30px;
    text-align: center;
    border-bottom: 3px solid #3498db;
    padding-bottom: 15px;
    font-weight: 600;
}

.legal-content .intro {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 6px;
    margin-bottom: 30px;
    border-left: 4px solid #3498db;
}

.legal-content .intro p {
    margin: 0;
    font-size: 1.1rem;
    color: #555;
}

.legal-section {
    margin-bottom: 35px;
    padding-bottom: 25px;
    border-bottom: 1px solid #eee;
}

.legal-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.legal-section h2 {
    color: #2c3e50;
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: 600;
    position: relative;
    padding-left: 15px;
}

.legal-section h2:before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 20px;
    background: #3498db;
    border-radius: 2px;
}

.legal-section p {
    color: #555;
    margin-bottom: 15px;
    font-size: 1rem;
}

.legal-section ul {
    margin: 15px 0;
    padding-left: 0;
    list-style: none;
}

.legal-section ul li {
    position: relative;
    padding: 8px 0 8px 25px;
    color: #555;
    line-height: 1.6;
}

.legal-section ul li:before {
    content: '•';
    position: absolute;
    left: 0;
    top: 8px;
    color: #3498db;
    font-weight: bold;
    font-size: 1.2rem;
}

.legal-section ul li strong {
    color: #2c3e50;
    font-weight: 600;
}

.legal-section a {
    color: #3498db;
    text-decoration: none;
    transition: color 0.3s ease;
}

.legal-section a:hover {
    color: #2980b9;
    text-decoration: underline;
}

.note {
    background: #e8f4f8;
    padding: 15px;
    border-radius: 6px;
    border-left: 4px solid #3498db;
    margin: 15px 0;
    font-style: italic;
    color: #2c3e50;
}

.legal-contact-info {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 6px;
    margin-top: 15px;
}

.legal-contact-info p {
    margin: 8px 0;
    color: #555;
}

.legal-contact-info strong {
    color: #2c3e50;
    font-weight: 600;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .legal-page {
        padding: 60px 0 40px;
    }
    
    .legal-content {
        margin: 0 20px;
        padding: 30px 20px;
    }
    
    .legal-content h1 {
        font-size: 2rem;
        margin-bottom: 25px;
    }
    
    .legal-section h2 {
        font-size: 1.3rem;
    }
    
    .legal-section ul li {
        padding-left: 20px;
    }
}

@media (max-width: 480px) {
    .legal-content {
        margin: 0 15px;
        padding: 25px 15px;
    }
    
    .legal-content h1 {
        font-size: 1.8rem;
    }
    
    .legal-section h2 {
        font-size: 1.2rem;
    }
    
    .legal-content .intro,
    .legal-contact-info {
        padding: 15px;
    }
}