:root { --primary-color: #2F6BFF; --secondary-color: #6FA3FF; --text-main-color: #1F2D3D; --card-bg-color: #FFFFFF; --background-color: #F4F7FB; --border-color: #D6E2FF; --glow-color: #A5C4FF; --header-offset: 122px; }
body { margin: 0; font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; line-height: 1.6; color: var(--text-main-color); background-color: var(--background-color); padding-top: var(--header-offset); }
.site-header { position: fixed; top: 0; left: 0; right: 0; width: 100%; z-index: 1000; box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); background-color: var(--card-bg-color); }
.header-top { box-sizing: border-box; min-height: 68px; height: 68px; display: flex; align-items: center; overflow: hidden; background-color: var(--primary-color); padding: 0 20px; }
.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: var(--card-bg-color); text-decoration: none; display: block; }
.logo:hover { color: #e0e0e0; }
.desktop-nav-buttons { display: flex; gap: 12px; align-items: center; }
.btn { padding: 10px 20px; border-radius: 8px; text-decoration: none; font-weight: bold; text-align: center; white-space: nowrap; transition: all 0.3s ease; border: none; cursor: pointer; }
.btn-primary { background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%); color: #FFFFFF; box-shadow: 0 4px 10px rgba(47, 107, 255, 0.3); }
.btn-primary:hover { opacity: 0.9; box-shadow: 0 6px 15px rgba(47, 107, 255, 0.4); }
.btn-secondary { background-color: #FFFFFF; color: var(--primary-color); border: 1px solid var(--primary-color); }
.btn-secondary:hover { background-color: var(--primary-color); color: #FFFFFF; }
.hamburger-menu { display: none; width: 30px; height: 24px; position: relative; cursor: pointer; z-index: 1001; }
.hamburger-menu .bar { display: block; width: 100%; height: 3px; background-color: var(--card-bg-color); margin: 5px 0; transition: all 0.3s ease; border-radius: 2px; }
.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); }
.mobile-nav-buttons { box-sizing: border-box; display: none; min-height: 48px; background-color: var(--background-color); padding: 0 20px; }
.main-nav { box-sizing: border-box; min-height: 52px; height: 52px; display: flex; align-items: center; overflow: hidden; background-color: var(--secondary-color); 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; gap: 20px; }
.nav-link { color: var(--card-bg-color); text-decoration: none; font-weight: bold; padding: 5px 0; transition: color 0.3s ease; white-space: nowrap; }
.nav-link:hover { color: #e0e0e0; }
.overlay { display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%; background-color: rgba(0, 0, 0, 0.5); z-index: 998; }
.site-footer { background-color: #1F2D3D; color: #FFFFFF; padding: 40px 0 20px; }
.footer-top-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; max-width: 1200px; margin: 0 auto; padding: 0 20px 30px; border-bottom: 1px solid rgba(255, 255, 255, 0.1); }
.footer-col h3 { color: var(--secondary-color); font-size: 18px; margin-bottom: 15px; }
.footer-logo { font-size: 24px; font-weight: bold; color: var(--card-bg-color); text-decoration: none; display: block; margin-bottom: 15px; }
.footer-description { font-size: 14px; line-height: 1.8; color: rgba(255, 255, 255, 0.8); word-wrap: break-word; overflow-wrap: break-word; }
.footer-nav { list-style: none; padding: 0; margin: 0; }
.footer-nav li { margin-bottom: 8px; }
.footer-nav a { color: rgba(255, 255, 255, 0.8); text-decoration: none; font-size: 14px; transition: color 0.3s ease; }
.footer-nav a:hover { color: var(--secondary-color); }
.footer-bottom { text-align: center; font-size: 13px; color: rgba(255, 255, 255, 0.6); margin-top: 20px; padding: 0 20px; }
.page-content img { max-width: 100%; height: auto; display: block; }

@media (max-width: 768px) {
  :root { --header-offset: 110px; }
  .header-top { min-height: 60px; height: 60px; padding: 0 15px; }
  .header-container { padding: 0; position: relative; }
  .logo { flex: 1 !important; display: flex !important; justify-content: center !important; align-items: center !important; font-size: 24px; max-width: calc(100% - 100px); /* Account for hamburger menu width */ }
  .hamburger-menu { display: block; position: absolute; left: 15px; top: 50%; transform: translateY(-50%); }
  .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: var(--background-color); border-bottom: 1px solid var(--border-color); }
  .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: 80%; max-width: 300px; height: calc(100% - var(--header-offset)); background-color: var(--primary-color); padding: 20px 0; box-shadow: 2px 0 10px rgba(0, 0, 0, 0.2); transform: translateX(-100%); transition: transform 0.3s ease; overflow-y: auto; align-items: flex-start; min-height: unset; height: unset; }
  .main-nav.active { display: flex; transform: translateX(0); }
  .nav-container { flex-direction: column; align-items: flex-start; width: 100%; max-width: none; padding: 0 20px; gap: 15px; }
  .nav-link { width: 100%; padding: 10px 0; border-bottom: 1px solid rgba(255, 255, 255, 0.1); }
  .nav-link:last-child { border-bottom: none; }
  .footer-top-grid { grid-template-columns: 1fr; padding: 0 15px 20px; }
  .footer-col { margin-bottom: 20px; }
  .footer-col:last-child { margin-bottom: 0; }
  .footer-bottom { padding: 0 15px; }
  .page-content img { max-width: 100% !important; height: auto !important; display: block; }
  .page-content { overflow-x: hidden; max-width: 100%; }
  body { overflow-x: hidden; }
}
/* 移动端内容区防溢出（系统追加，请勿删除） */
@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;
  }
}
