/* 特定商取引法页面样式 */

.sct-hero {
    background-color: #f5f7fa;
    padding: 80px 0;
    text-align: center;
}

.sct-hero-content h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1a237e;
}

.sct-hero-content .subtitle {
    font-size: 1.2rem;
    color: #546e7a;
    max-width: 800px;
    margin: 0 auto;
}

.sct-content {
    padding: 60px 0;
    background-color: #fff;
}

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

.sct-intro {
    margin-bottom: 40px;
    line-height: 1.6;
    color: #37474f;
}

.sct-table-container {
    margin-bottom: 50px;
    overflow-x: auto;
}

.sct-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 30px;
}

.sct-table th,
.sct-table td {
    padding: 15px;
    border: 1px solid #e0e0e0;
    vertical-align: top;
}

.sct-table th {
    background-color: #f5f7fa;
    font-weight: 600;
    color: #1a237e;
    width: 30%;
    text-align: left;
}

.sct-table td {
    color: #37474f;
    line-height: 1.6;
}

.sct-table td a {
    color: #1565c0;
    text-decoration: none;
}

.sct-table td a:hover {
    text-decoration: underline;
}

.sct-table td ul,
.sct-table td ol {
    margin: 10px 0;
    padding-left: 20px;
}

.sct-table td li {
    margin-bottom: 5px;
}

.sct-table .note {
    font-size: 0.9rem;
    color: #616161;
    display: block;
    margin-top: 5px;
}

.sct-additional {
    margin-top: 50px;
    margin-bottom: 40px;
}

.sct-additional h2 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #1a237e;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #e0e0e0;
}

.sct-additional p {
    margin-bottom: 20px;
    line-height: 1.6;
    color: #37474f;
}

.sct-cta {
    background-color: #f5f7fa;
    padding: 60px 0;
    text-align: center;
}

.cta-content h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #1a237e;
    margin-bottom: 20px;
}

.cta-content p {
    color: #546e7a;
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto 30px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.btn-primary, .btn-secondary {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 4px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: #1a237e;
    color: #fff;
}

.btn-primary:hover {
    background-color: #0d1b69;
}

.btn-secondary {
    background-color: transparent;
    color: #1a237e;
    border: 1px solid #1a237e;
}

.btn-secondary:hover {
    background-color: rgba(26, 35, 126, 0.1);
}

/* 响应式设计 */
@media (max-width: 768px) {
    .sct-hero {
        padding: 60px 0;
    }
    
    .sct-hero-content h1 {
        font-size: 2rem;
    }
    
    .sct-table th {
        width: 35%;
    }
    
    .cta-content h2 {
        font-size: 1.8rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .sct-hero {
        padding: 40px 0;
    }
    
    .sct-hero-content h1 {
        font-size: 1.8rem;
    }
    
    .sct-hero-content .subtitle {
        font-size: 1rem;
    }
    
    .sct-table {
        display: block;
    }
    
    .sct-table th,
    .sct-table td {
        display: block;
        width: 100%;
    }
    
    .sct-table th {
        border-bottom: none;
    }
    
    .sct-additional h2 {
        font-size: 1.5rem;
    }
}
