/* 全局极简重置 */
* { margin: 0; padding: 0; box-sizing: border-box; -webkit-text-size-adjust: 100%; }
body { font-family: -apple-system, sans-serif; line-height: 1.6; color: #333; background: #f8f9fa; max-width: 100vw; overflow-x: hidden; }
a { color: #1a6dcc; text-decoration: none; }
ul { list-style: none; }

/* 布局容器 */
.container { width: 100%; max-width: 800px; margin: 0 auto; padding: 0 16px; }

/* 顶部导航栏 */
.site-header { background: white; border-bottom: 1px solid #eee; padding: 15px 0; position: sticky; top: 0; z-index: 100; }
.header-content { display: flex; justify-content: space-between; align-items: center; }
.logo { font-size: 24px; font-weight: bold; color: #1a6dcc; }
.nav a { margin-left: 20px; font-size: 15px; }

/* 主内容区 */
.main-content { padding: 30px 0 50px; min-height: 70vh; }

/* 按钮 */
.btn { display: inline-block; background: #1a6dcc; color: white; padding: 12px 28px; border-radius: 50px; font-weight: bold; border: none; cursor: pointer; }
.btn-secondary { background: white; color: #1a6dcc; border: 2px solid #1a6dcc; }
.btn-block { width: 100%; text-align: center; }

/* 驾校卡片 */
.school-card { background: white; border-radius: 10px; padding: 20px; margin-bottom: 20px; box-shadow: 0 3px 10px rgba(0,0,0,0.05); }
.school-card h3 { color: #1a6dcc; margin-bottom: 10px; }
.school-tags { margin: 10px 0; }
.tag { display: inline-block; background: #e8f2ff; color: #1a6dcc; padding: 4px 12px; border-radius: 20px; font-size: 13px; margin-right: 8px; }
.school-price { font-size: 20px; color: #ff6b35; font-weight: bold; margin: 15px 0; }

/* 页脚 */
.site-footer { background: #2c3e50; color: #ecf0f1; text-align: center; padding: 30px 20px; margin-top: 50px; }
.footer-links { margin: 20px 0; }
.footer-links a { color: #bdc3c7; margin: 0 10px; }

/* 工具类 */
.text-center { text-align: center; }
.mt-20 { margin-top: 20px; }
.hidden { display: none; }