/* 重置和基础样式 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #333333;
    --secondary-color: #666666;
    --accent-color: #0066cc;
    --accent-hover: #0052a3;
    --accent-light: #3399ff;
    --text-primary: #333333;
    --text-secondary: #666666;
    --text-light: #999999;
    --bg-primary: #ffffff;
    --bg-secondary: #f5f5f5;
    --bg-tertiary: #fafafa;
    --border-color: #e0e0e0;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 2px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 4px 12px rgba(0, 0, 0, 0.15);
    --border-radius: 8px;
    --transition: all 0.3s ease;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--bg-secondary);
    min-height: 100vh;
}

.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 1;
}

/* 头部样式 */
.header {
    background-color: var(--bg-primary);
    box-shadow: var(--shadow-sm);
    padding: 2rem 0;
    text-align: center;
    margin-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
}

.logo {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.subtitle {
    font-size: 1.125rem;
    color: var(--text-secondary);
    font-weight: 400;
}

/* 主要内容区域 */
.main {
    padding-bottom: 2rem;
}

.privacy-content {
    background-color: var(--bg-primary);
    border-radius: var(--border-radius);
    padding: 2.5rem;
    box-shadow: var(--shadow-md);
    margin-bottom: 2rem;
    border: 1px solid var(--border-color);
}

/* 章节样式 */
section {
    margin-bottom: 2.5rem;
}

section:last-child {
    margin-bottom: 0;
}

.intro {
    text-align: center;
    margin-bottom: 2.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border-color);
}

h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--accent-color);
}

h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
}

p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.6;
}

.last-updated {
    text-align: center;
    color: var(--text-light);
    font-style: italic;
    font-size: 0.875rem;
    margin-bottom: 0;
}

/* 高亮框 */
.highlight-box {
    background-color: var(--accent-color);
    color: white;
    padding: 1.5rem;
    border-radius: var(--border-radius);
    margin: 1.5rem 0;
    box-shadow: var(--shadow-md);
}

.highlight-box p {
    color: white;
    font-weight: 500;
    margin-bottom: 0;
    font-size: 1rem;
}

/* 列表样式 */
ul {
    margin-left: 1.5rem;
    margin-bottom: 1.5rem;
    list-style: disc;
}

li {
    margin-bottom: 0.5rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* 链接样式 */
a {
    color: var(--accent-color);
    text-decoration: underline;
    transition: var(--transition);
}

a:hover {
    color: var(--accent-hover);
}

/* 公司信息特殊样式 */
.company-info {
    background-color: var(--bg-tertiary);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    border-left: 4px solid var(--accent-color);
    box-shadow: var(--shadow-sm);
}

.company-info p {
    margin-bottom: 0.75rem;
}

.company-info strong {
    color: var(--text-primary);
    font-weight: 600;
}

/* 页脚样式 */
.footer {
    background-color: var(--text-primary);
    padding: 1.5rem 0;
    text-align: center;
    color: var(--text-light);
    font-size: 0.875rem;
    border-top: 1px solid var(--border-color);
}

.footer p {
    color: var(--text-light);
    margin: 0;
}

/* FAQ样式 */
.faq-item {
    background-color: var(--bg-tertiary);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    margin-bottom: 1rem;
    border-left: 4px solid var(--accent-color);
    box-shadow: var(--shadow-sm);
}

.faq-item h4 {
    color: var(--text-primary);
    font-weight: 600;
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.faq-item p {
    color: var(--text-secondary);
    margin-bottom: 0;
}

/* 故障排除样式 */
.troubleshooting-item {
    background-color: #fff5f5;
    padding: 1.5rem;
    border-radius: var(--border-radius);
    margin-bottom: 1rem;
    border-left: 4px solid #dc3545;
    box-shadow: var(--shadow-sm);
}

.troubleshooting-item h4 {
    color: var(--text-primary);
    font-weight: 600;
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.troubleshooting-item ul {
    margin-left: 1.5rem;
}

.troubleshooting-item li {
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

/* 系统要求网格 */
.requirements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.requirement-item {
    background-color: #f0f9f4;
    padding: 1.5rem;
    border-radius: var(--border-radius);
    border-left: 4px solid #28a745;
    box-shadow: var(--shadow-sm);
}

.requirement-item h4 {
    color: var(--text-primary);
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.requirement-item ul {
    margin-left: 1.5rem;
}

.requirement-item li {
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

/* 联系支持样式 */
.contact-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 1.5rem 0;
}

.contact-method {
    background-color: #f0f7ff;
    padding: 1.5rem;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid #e0f0ff;
}

.contact-method h4 {
    color: var(--text-primary);
    font-weight: 600;
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.contact-method p {
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.support-tips {
    background-color: #fffbf0;
    padding: 1.5rem;
    border-radius: var(--border-radius);
    margin-top: 1.5rem;
    border-left: 4px solid #ffc107;
    box-shadow: var(--shadow-sm);
}

.support-tips h4 {
    color: var(--text-primary);
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.support-tips ul {
    margin-left: 1.5rem;
}

.support-tips li {
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }
    
    .privacy-content {
        padding: 1.5rem;
        margin: 0 0.5rem 1.5rem 0.5rem;
    }
    
    .logo {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.75rem;
    }
    
    h3 {
        font-size: 1.375rem;
    }
    
    .header {
        padding: 1.5rem 0;
    }

    .requirements-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-methods {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .privacy-content {
        padding: 1.25rem;
        margin: 0 0.5rem 1.5rem 0.5rem;
    }
    
    .logo {
        font-size: 1.75rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    h3 {
        font-size: 1.25rem;
    }
    
    .highlight-box {
        padding: 1.25rem;
    }
}

/* 滚动条样式 */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-secondary);
}

::-webkit-scrollbar-thumb {
    background: var(--text-light);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--text-secondary);
}

/* 选中文本样式 */
::selection {
    background-color: var(--accent-color);
    color: white;
}

::-moz-selection {
    background-color: var(--accent-color);
    color: white;
}
