html, body { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; color: #1F2D3D; background-color: #F4F7FB; scroll-behavior: smooth; }
:root { --header-offset: 122px; }
body { padding-top: var(--header-offset); }
a { text-decoration: none; color: inherit; }

.site-header { position: fixed; top: 0; left: 0; right: 0; width: 100%; z-index: 1000; box-shadow: 0 2px 5px rgba(0,0,0,0.1); }
.header-top { box-sizing: border-box; height: 68px; display: flex; align-items: center; overflow: hidden; background-color: #2F6BFF; width: 100%; position: relative; }
.header-container { box-sizing: border-box; width: 100%; height: 100%; max-width: 1200px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; padding: 0 20px; }
.logo { font-size: 28px; font-weight: bold; color: #FFFFFF; text-transform: uppercase; letter-spacing: 1px; display: block; }
.logo img { display: block; max-height: 60px; height: auto; width: auto; max-width: 280px; object-fit: contain; }
.desktop-nav-buttons { display: flex; gap: 12px; align-items: center; }
.mobile-nav-buttons { box-sizing: border-box; display: none; min-height: 48px; background-color: #F4F7FB; width: 100%; padding: 0 15px; }
.btn { display: inline-flex; align-items: center; justify-content: center; padding: 10px 20px; border-radius: 5px; font-size: 16px; font-weight: bold; text-decoration: none; cursor: pointer; white-space: nowrap; background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%); color: #FFFFFF; border: none; transition: all 0.3s ease; min-width: 80px; }
.btn:hover { opacity: 0.9; transform: translateY(-1px); }
.main-nav { box-sizing: border-box; height: 52px; display: flex; align-items: center; overflow: hidden; background-color: #6FA3FF; width: 100%; }
.nav-container { box-sizing: border-box; height: 100%; max-width: 1200px; margin: 0 auto; display: flex; flex-direction: row; justify-content: center; align-items: center; padding: 0 20px; }
.nav-link { padding: 0 15px; color: #FFFFFF; font-size: 16px; font-weight: 500; height: 100%; display: flex; align-items: center; transition: background-color 0.3s ease; }
.nav-link:hover, .nav-link.active { background-color: rgba(255,255,255,0.2); }
.hamburger-menu { display: none; cursor: pointer; padding: 10px; z-index: 1001; position: absolute; left: 15px; top: 50%; transform: translateY(-50%); }
.hamburger-menu .bar { display: block; width: 25px; height: 3px; margin: 5px auto; background-color: #FFFFFF; transition: all 0.3s ease-in-out; }
.overlay { display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.5); z-index: 999; }

.site-footer { background-color: #1F2D3D; color: #D6E2FF; padding: 40px 20px 20px; font-size: 14px; line-height: 1.6; }
.footer-top-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; max-width: 1200px; margin: 0 auto 30px; }
.footer-col { display: flex; flex-direction: column; }
.footer-logo { font-size: 24px; font-weight: bold; color: #FFFFFF; text-transform: uppercase; margin-bottom: 15px; display: block; }
.footer-description { color: #D6E2FF; margin-bottom: 15px; word-wrap: break-word; overflow-wrap: break-word; }
.footer-col h6 { font-size: 18px; color: #FFFFFF; margin-bottom: 15px; }
.footer-nav { list-style: none; padding: 0; margin: 0; }
.footer-nav li { margin-bottom: 8px; }
.footer-nav a { color: #D6E2FF; transition: color 0.3s ease; }
.footer-nav a:hover { color: #4A8BFF; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 20px; text-align: center; color: #D6E2FF; max-width: 1200px; margin: 0 auto; }
.footer-slot-anchor-inner { min-height: 1px; }

@media (max-width: 768px) {
  :root { --header-offset: 110px; }
  body { overflow-x: hidden; }
  .page-content img { max-width: 100% !important; height: auto !important; display: block; }
  .page-content { overflow-x: hidden; max-width: 100%; }
  .site-header { box-shadow: 0 2px 5px rgba(0,0,0,0.15); }
  .header-top { height: 60px !important; }
  .header-container { width: 100%; max-width: none; padding: 0 15px; }
  .logo { flex: 1 !important; display: flex !important; justify-content: center !important; align-items: center !important; font-size: 24px; }
  .logo img { max-height: 56px !important; }
  .hamburger-menu { display: block; }
  .desktop-nav-buttons { display: none !important; }
  .mobile-nav-buttons { display: flex !important; min-height: 48px; align-items: center; justify-content: center; width: 100%; max-width: 100%; box-sizing: border-box; padding: 0 15px; overflow: hidden; gap: 10px; flex-wrap: nowrap; background-color: #F4F7FB; }
  .mobile-nav-buttons .btn { flex: 1; min-width: 0; max-width: calc(50% - 5px); box-sizing: border-box; padding: 8px 12px; font-size: 13px; white-space: normal; word-wrap: break-word; overflow-wrap: break-word; }
  .main-nav { display: none; flex-direction: column; position: fixed; top: var(--header-offset); left: 0; width: 250px; height: calc(100% - var(--header-offset)); background-color: #2F6BFF; transform: translateX(-100%); transition: transform 0.3s ease; justify-content: flex-start; align-items: flex-start; padding-top: 20px; overflow-y: auto; z-index: 1000; }
  .main-nav.active { display: flex; transform: translateX(0); }
  .nav-container { flex-direction: column; padding: 0; width: 100%; max-width: none; align-items: flex-start; }
  .nav-link { width: 100%; padding: 10px 20px; justify-content: flex-start; border-bottom: 1px solid rgba(255,255,255,0.1); }
  .hamburger-menu.active .bar:nth-child(1) { transform: translateY(8px) rotate(45deg); }
  .hamburger-menu.active .bar:nth-child(2) { opacity: 0; }
  .hamburger-menu.active .bar:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
  .overlay.active { display: block; }
  .footer-top-grid { grid-template-columns: 1fr; }
  .footer-col { margin-bottom: 20px; }
  .footer-col:last-child { margin-bottom: 0; }
}
/* 移动端内容区防溢出（系统追加，请勿删除） */
@media (max-width: 768px) {
  .page-content img {
    max-width: 100% !important;
    height: auto !important;
    display: block;
  }
  .page-content {
    overflow-x: hidden;
    max-width: 100%;
  }
  body {
    overflow-x: hidden;
  }
}
