/* 法律页面样式 */

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

.legal-section .container {
    display: flex;
    gap: 40px;
}

.legal-content {
    flex: 3;
    min-width: 0;
}

.legal-sidebar {
    flex: 1;
    min-width: 250px;
}

/* 内容样式 */
.legal-content h2 {
    color: #2c3e50;
    font-size: 1.8rem;
    margin-top: 2em;
    margin-bottom: 1em;
    padding-bottom: 0.5em;
    border-bottom: 2px solid #3498db;
}

.legal-content h2:first-child {
    margin-top: 0;
}

.legal-content h3 {
    color: #34495e;
    font-size: 1.4rem;
    margin-top: 1.5em;
    margin-bottom: 0.8em;
}

.legal-content p {
    margin-bottom: 1.2em;
    line-height: 1.7;
}

.legal-content ul {
    margin-bottom: 1.5em;
    padding-left: 1.5em;
}

.legal-content ul li {
    margin-bottom: 0.5em;
    line-height: 1.6;
}

.legal-content a {
    color: #3498db;
    text-decoration: none;
    border-bottom: 1px dotted #3498db;
    transition: all 0.2s;
}

.legal-content a:hover {
    color: #2980b9;
    border-bottom-color: #2980b9;
}

/* 侧边栏样式 */
.sidebar-section {
    background-color: #f8f9fa;
    border-radius: 6px;
    padding: 20px;
    margin-bottom: 25px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.sidebar-section h3 {
    color: #2c3e50;
    font-size: 1.2rem;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid #e9ecef;
}

.sidebar-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-section ul li {
    margin-bottom: 10px;
}

.sidebar-section ul li:last-child {
    margin-bottom: 0;
}

.sidebar-section a {
    color: #3498db;
    text-decoration: none;
    display: block;
    padding: 5px 0;
    transition: color 0.2s;
}

.sidebar-section a:hover {
    color: #2980b9;
}

.important-notice {
    background-color: #fff8dc;
    border-left: 4px solid #f1c40f;
    padding: 15px;
    border-radius: 0 4px 4px 0;
}

.important-notice p {
    margin-bottom: 10px;
    line-height: 1.5;
    font-size: 0.95rem;
}

.important-notice p:last-child {
    margin-bottom: 0;
}

/* 响应式布局 */
@media (max-width: 900px) {
    .legal-section .container {
        flex-direction: column;
    }
    
    .legal-content, .legal-sidebar {
        width: 100%;
    }
    
    .legal-sidebar {
        margin-top: 40px;
        order: 1;
    }
    
    .legal-content {
        order: 0;
    }
} 