/* 网站134 - 左侧边栏布局 */
:root { --primary: #B91C1C; --secondary: #EF4444; --accent: #F87171; --text: #1e293b; --bg: #fef2f2; --white: #ffffff; --radius: 12px; }
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: "PingFang SC", sans-serif; background: var(--bg); color: var(--text); }
.container { max-width: 1100px; margin: 0 auto; padding: 0 25px; }

/* 头部带左侧导航 */
.header { background: var(--white); box-shadow: 0 4px 15px rgba(185,28,28,0.1); }
.navbar { padding: 15px 0; display: flex; align-items: center; gap: 30px; }
.logo { font-size: 24px; font-weight: 800; color: var(--primary); }

/* 左侧导航 */
.nav-menu { display: flex; gap: 5px; list-style: none; margin-left: auto; }
.nav-menu a { padding: 10px 18px; color: var(--text); text-decoration: none; border-radius: 8px; transition: all 0.3s; font-size: 14px; font-weight: 500; }
.nav-menu a:hover { background: rgba(185,28,28,0.08); color: var(--primary); }
.nav-menu a.active { background: var(--primary); color: var(--white); }

/* 顶部条 */
.top-bar { background: var(--primary); color: var(--white); padding: 8px 0; font-size: 13px; }
.top-bar .container { display: flex; justify-content: space-between; }
.top-bar a { color: var(--white); text-decoration: none; opacity: 0.9; }

/* 英雄区 */
.hero { background: linear-gradient(135deg, var(--primary), var(--secondary)); padding: 70px 0; color: var(--white); position: relative; overflow: hidden; }
.hero::after { content: ''; position: absolute; right: -50px; top: -50px; width: 300px; height: 300px; background: rgba(255,255,255,0.1); border-radius: 50%; }
.hero h1 { font-size: 35px; margin-bottom: 12px; position: relative; z-index: 1; }
.hero p { font-size: 16px; opacity: 0.9; position: relative; z-index: 1; }

/* 功能区 - 大卡片 */
.features { padding: 60px 0; }
.section-title { text-align: center; font-size: 26px; margin-bottom: 40px; color: var(--text); }
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 25px; }
.feature-card { background: var(--white); padding: 30px; border-radius: var(--radius); box-shadow: 0 4px 15px rgba(185,28,28,0.08); text-align: center; border-top: 4px solid var(--primary); transition: all 0.3s; }
.feature-card:hover { transform: translateY(-8px); box-shadow: 0 12px 30px rgba(185,28,28,0.15); }
.feature-icon { width: 60px; height: 60px; background: var(--primary); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 18px; color: var(--white); font-size: 26px; }
.feature-card h3 { font-size: 18px; margin-bottom: 10px; }
.feature-card p { font-size: 14px; color: #666; line-height: 1.6; }

/* 内容区 */
.content-area { padding: 50px 0; background: var(--white); }
.content-section { padding: 30px; border-left: 4px solid var(--primary); margin-bottom: 20px; background: var(--bg); border-radius: 0 var(--radius) var(--radius) 0; }
.content-section h2 { font-size: 20px; color: var(--primary); margin-bottom: 10px; }
.content-section p { font-size: 14px; color: #666; line-height: 1.7; }

/* CTA */
.cta { background: var(--primary); padding: 55px 0; text-align: center; color: var(--white); }
.cta h2 { font-size: 26px; }
.cta .btn { display: inline-block; padding: 12px 35px; background: var(--white); color: var(--primary); border-radius: 8px; font-weight: 600; text-decoration: none; margin-top: 15px; }

/* 底部 */
.footer { background: #450a0a; color: var(--white); padding: 45px 0 20px; }
.footer-content { display: grid; grid-template-columns: 2fr 1fr; gap: 50px; }
.footer-section h4 { font-size: 16px; margin-bottom: 15px; color: var(--accent); }
.footer-section p { color: #fca5a5; font-size: 14px; margin-bottom: 8px; }
.footer-bottom { text-align: center; padding-top: 25px; border-top: 1px solid #7f1d1d; color: #f87171; font-size: 12px; }

.mobile-toggle { display: none; flex-direction: column: gap: 4px; background: none; border: none; cursor: pointer; margin-left: auto; }
.mobile-toggle span { width: 22px; height: 2px; background: var(--primary); }

@media (max-width: 992px) { .feature-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 768px) {
    .navbar { flex-wrap: wrap; }
    .nav-menu { display: none; width: 100%; flex-direction: column; margin-top: 15px; }
    .nav-menu.active { display: flex; }
    .mobile-toggle { display: flex; }
    .footer-content { grid-template-columns: 1fr; }
    .hero h1 { font-size: 24px; }
}
