/* privacy/index.html - 样式表 */
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif; background: #f5f5f5; min-height: 100vh; padding-bottom: 20px; }
button { outline: none; -webkit-tap-highlight-color: transparent; -webkit-appearance: none; -moz-appearance: none; appearance: none; border: none; background: none; padding: 0; margin: 0; cursor: pointer; }
button:focus, button:focus-visible, button:active { outline: none; -webkit-tap-highlight-color: transparent; }
.header { background: linear-gradient(135deg, #006241 0%, #00704A 100%); color: white; padding: 15px 20px; display: flex; align-items: center; position: sticky; top: 0; z-index: 100; }
.back-btn { background: none; border: none; color: white; cursor: pointer; margin-right: 15px; padding: 0; width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; }
.back-btn svg { width: 24px; height: 24px; fill: white; }
.header-title { font-size: 18px; font-weight: 600; flex: 1; }
.content { padding: 20px; background: white; margin: 15px; border-radius: 12px; box-shadow: 0 2px 8px rgba(0,0,0,0.06); }
.content h1 { font-size: 24px; color: #006241; margin-bottom: 20px; text-align: center; }
.content h2 { font-size: 18px; color: #333; margin: 24px 0 12px; font-weight: 600; }
.content p { font-size: 14px; color: #666; line-height: 1.8; margin-bottom: 15px; }
.content ul { margin: 12px 0; padding-left: 24px; }
.content li { font-size: 14px; color: #666; line-height: 1.8; margin-bottom: 8px; }
.last-updated { font-size: 12px; color: #999; text-align: center; margin-top: 20px; }