/* ===== TMGM 天蓝色主题 ===== */
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Microsoft YaHei', sans-serif; background: #f5f8fa; color: #333; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
a { text-decoration: none; color: #00A6E0; }
.btn { display: inline-block; padding: 10px 25px; border-radius: 4px; border: none; cursor: pointer; }
.btn-primary { background: #00A6E0; color: #fff; }
.btn-primary:hover { background: #0088b8; }
.btn-secondary { background: #e8f4fd; color: #00A6E0; border: 1px solid #00A6E0; }
.btn-secondary:hover { background: #d0e9fa; }
.btn-light { background: #fff; color: #00A6E0; }

/* ===== 顶部导航 ===== */
.site-header { background: #fff; box-shadow: 0 2px 4px rgba(0,0,0,0.08); padding: 15px 0; position: sticky; top: 0; z-index: 100; }
.header-container { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; }
.logo img { height: 40px; }
.main-nav ul { display: flex; list-style: none; gap: 30px; }
.main-nav ul li a { color: #333; font-weight: 500; }
.main-nav ul li a:hover { color: #00A6E0; }
.header-actions { display: flex; align-items: center; gap: 15px; flex-wrap: wrap; }
.customer-service { font-size: 14px; color: #00A6E0; }

/* ===== Hero横幅 ===== */
.hero-section { background: linear-gradient(135deg, #00A6E0 0%, #0088b8 100%); color: #fff; padding: 80px 0; text-align: center; }

/* ===== 产品网格 ===== */
.product-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 30px; max-width: 900px; margin: 0 auto; }
.product-card { background: #fff; padding: 30px 20px; border-radius: 8px; text-align: center; box-shadow: 0 2px 8px rgba(0,0,0,0.06); border-top: 4px solid #00A6E0; }
.product-card h3 { color: #1a2332; margin-bottom: 10px; }
.product-card p { color: #666; font-size: 14px; margin: 0; }

/* ===== 新闻网格 ===== */
.news-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 30px; max-width: 960px; margin: 0 auto; }
.news-item { background: #f8f9fa; padding: 25px 20px; border-radius: 8px; border-left: 4px solid #00A6E0; }
.news-item h3 a { color: #1a2332; }
.news-item h3 a:hover { color: #00A6E0; }
.news-item p { color: #666; font-size: 14px; line-height: 1.7; margin-bottom: 10px; }
.news-item small { color: #999; font-size: 12px; }

/* ===== 底部 ===== */
.site-footer { background: #1a2332; color: #ccc; padding: 40px 0 20px; margin-top: 40px; }
.footer-container { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.footer-col h4 { color: #fff; margin-bottom: 15px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a { color: #ccc; }
.footer-col ul li a:hover { color: #00A6E0; }
.footer-bottom { border-top: 1px solid #333; padding-top: 20px; margin-top: 30px; display: flex; justify-content: space-between; flex-wrap: wrap; }
.footer-links a { color: #ccc; margin: 0 10px; }
.footer-links a:hover { color: #00A6E0; }

/* ===== 手机端固定按钮 ===== */
.mobile-fixed-buttons { display: none; position: fixed; bottom: 0; left: 0; right: 0; background: #fff; padding: 10px; box-shadow: 0 -2px 10px rgba(0,0,0,0.1); justify-content: space-around; z-index: 999; }
.mobile-fixed-buttons .btn { flex: 1; text-align: center; margin: 0 5px; }

/* ===== 响应式 ===== */
@media (max-width: 768px) {
    .header-container { flex-direction: column; gap: 15px; }
    .main-nav ul { gap: 15px; flex-wrap: wrap; justify-content: center; }
    .header-actions .btn { display: none; }
    .footer-container { grid-template-columns: 1fr; gap: 20px; }
    .footer-bottom { flex-direction: column; align-items: center; gap: 10px; }
    .mobile-fixed-buttons { display: flex; }
    .main-content { padding-bottom: 80px; }
    .hero-section { padding: 40px 0; }
    .hero-section h1 { font-size: 24px; }
}