/* 全局样式 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Plus Jakarta Sans', 'Noto Sans SC', 'Noto Sans JP', sans-serif;
    line-height: 1.6;
    color: #333333;
    background-color: #ffffff;
}

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

/* 主要内容 */
.main-content {
    padding: 40px 0;
    min-height: 100vh;
}

.privacy-policy {
    max-width: 800px;
    margin: 0 auto;
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.policy-header {
    background: linear-gradient(135deg, #1669d5, #1250a1);
    color: #ffffff;
    padding: 40px;
    text-align: center;
}

.policy-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1.2;
}

.policy-date {
    font-size: 16px;
    opacity: 0.9;
    font-weight: 400;
}

.policy-content {
    padding: 40px;
}

.policy-intro {
    margin-bottom: 40px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 12px;
    border-left: 4px solid #1669d5;
}

.policy-intro p {
    font-size: 18px;
    line-height: 1.6;
    color: #333333;
}

.policy-section {
    margin-bottom: 40px;
}

.section-title {
    font-size: 24px;
    font-weight: 600;
    color: #1669d5;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #e9ecef;
}

.section-intro {
    font-size: 16px;
    font-weight: 500;
    color: #333333;
    margin-bottom: 20px;
}

.subsection {
    margin-bottom: 25px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 3px solid #1669d5;
}

.subsection-title {
    font-size: 18px;
    font-weight: 600;
    color: #1669d5;
    margin-bottom: 10px;
}

.subsection p {
    font-size: 16px;
    line-height: 1.6;
    color: #333333;
}

.policy-section p {
    font-size: 16px;
    line-height: 1.6;
    color: #333333;
    margin-bottom: 15px;
}

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

.contact-link {
    color: #1669d5;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: #1250a1;
    text-decoration: underline;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .policy-title {
        font-size: 28px;
    }
    
    .policy-content {
        padding: 20px;
    }
    
    .policy-header {
        padding: 30px 20px;
    }
    
    .section-title {
        font-size: 20px;
    }
    
    .subsection-title {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .policy-title {
        font-size: 24px;
    }
    
    .section-title {
        font-size: 18px;
    }
    
    .policy-intro p {
        font-size: 16px;
    }
} 