/* index.html - 首页样式 */

/* 顶部联系方式栏 */
.top-contact-bar { background: #1a1a2e; padding: 8px 0; color: #fff; font-size: 14px; }
.top-contact-bar a { color: #e94560; text-decoration: none; font-weight: bold; }
.top-contact-bar .contact-info { display: flex; align-items: center; justify-content: space-between; }
.top-contact-bar .contact-left { display: flex; align-items: center; gap: 20px; }
.top-contact-bar .contact-right { display: flex; align-items: center; gap: 15px; }

/* Logo */
.logo-text { font-size: 16px; font-weight: bold; color: #1a1a2e; text-decoration: none; display: block; line-height: 1.3; max-width: 300px; }
.logo-text:hover { color: #e94560; }

/* 主视觉区域 */
.hero-section { background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%); padding: 80px 0; color: #fff; }
.hero-section h1 { font-size: 42px; margin-bottom: 20px; }
.hero-section h1 span { color: #e94560; }
.hero-section p { font-size: 18px; line-height: 1.8; margin-bottom: 30px; opacity: 0.9; }
.hero-btn { display: inline-block; padding: 12px 35px; background: #e94560; color: #fff; text-decoration: none; border-radius: 4px; font-weight: bold; transition: all 0.3s; }
.hero-btn:hover { background: #c73e54; color: #fff; }

/* 服务卡片 */
.service-card { background: #fff; border-radius: 8px; padding: 30px; box-shadow: 0 5px 20px rgba(0,0,0,0.08); transition: all 0.3s; height: 100%; }
.service-card:hover { transform: translateY(-5px); box-shadow: 0 10px 30px rgba(0,0,0,0.15); }
.service-card .icon { width: 60px; height: 60px; background: linear-gradient(135deg, #e94560, #c73e54); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-bottom: 20px; color: #fff; font-size: 24px; }
.service-card h4 { font-size: 20px; margin-bottom: 15px; color: #1a1a2e; }
.service-card p { color: #666; line-height: 1.7; }
.service-card a { color: #e94560; text-decoration: none; font-weight: bold; }

/* 联系卡片 */
.service-card.card-dark { background: linear-gradient(135deg, #1a1a2e, #16213e); color: #fff; }
.service-card.card-dark h4 { color: #fff; }
.service-card.card-dark p { color: rgba(255,255,255,0.8); }
.service-card.card-dark .icon { background: #e94560; }
.service-card.card-dark a { color: #e94560; font-size: 20px; }

/* 数据统计 */
.stats-section { background: #1a1a2e; padding: 60px 0; color: #fff; }
.stat-item { text-align: center; }
.stat-item .number { font-size: 48px; font-weight: bold; color: #e94560; }
.stat-item .label { font-size: 16px; opacity: 0.8; margin-top: 10px; }

/* 关于我们 */
.about-section { padding: 80px 0; background: #f8f9fa; }
.about-section h2 { font-size: 32px; margin-bottom: 20px; color: #1a1a2e; }
.about-section p { line-height: 1.8; color: #555; }

/* 时间线 */
.timeline-item { padding: 20px; border-left: 3px solid #e94560; margin-left: 20px; position: relative; }
.timeline-item::before { content: ''; position: absolute; left: -9px; top: 25px; width: 15px; height: 15px; background: #e94560; border-radius: 50%; }
.timeline-item h5 { color: #1a1a2e; margin-bottom: 10px; }
.timeline-item p { color: #666; font-size: 14px; }

/* 底部联系方式 */
.footer-contact { background: #16213e; padding: 40px 0; color: #fff; }
.footer-contact h4 { color: #e94560; margin-bottom: 20px; }
.footer-contact p { line-height: 1.8; opacity: 0.8; }
.footer-contact a { color: #e94560; text-decoration: none; }

/* 通用区块样式 */
.section-white { padding: 80px 0; background: #fff; }
.section-title { font-size: 32px; color: #1a1a2e; margin-bottom: 15px; }
.section-subtitle { color: #666; max-width: 700px; margin: 0 auto; }
.section-desc { color: #666; max-width: 800px; margin: 20px auto 0; }

/* 特色图标 */
.feature-icon-wrap { width: 80px; height: 80px; background: #e94560; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; color: #fff; font-size: 32px; }
.feature-icon-wrap i { font-size: 32px; }
.feature-title { color: #1a1a2e; }
.feature-desc { color: #666; }

/* 通用间距 */
.mb-30 { margin-bottom: 30px; }
.mb-50 { margin-bottom: 50px; }
.mt-20 { margin-top: 20px; }
.mb-15 { margin-bottom: 15px; }

/* 文本颜色 */
.text-primary { color: #1a1a2e; }
.text-muted { color: #666; }
.text-white { color: #fff; }
.text-accent { color: #e94560; }

/* 背景色 */
.bg-white { background: #fff; }
.bg-light { background: #f8f9fa; }

/* 内联样式替代类 */
.inline-center { text-align: center; }
.inline-padding-30 { padding: 30px; }
.inline-opacity-9 { opacity: 0.9; }
.inline-opacity-6 { opacity: 0.6; }
.inline-max-width-100 { max-width: 100%; }
.inline-border-top { margin-top: 30px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.1); }
.inline-strong { font-weight: bold; }
.inline-font-20 { font-size: 20px; }
.inline-font-32 { font-size: 32px; }
.inline-color-rgba { color: rgba(255,255,255,0.8); }
