:root { --header-offset: 122px; --primary-color: #2F6BFF; --secondary-color: #6FA3FF; --button-gradient: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%); --card-bg: #FFFFFF; --page-bg: #F4F7FB; --text-main: #1F2D3D; --text-black: #000000; --border-color: #D6E2FF; --glow-color: #A5C4FF; }

html { scroll-behavior: smooth; }
body { margin: 0; padding-top: var(--header-offset); font-family: 'Arial', sans-serif; color: var(--text-main); line-height: 1.6; background-color: var(--page-bg); overflow-x: hidden; }
body.no-scroll { overflow: hidden; }

.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(--page-bg); }

.header-top { box-sizing: border-box; min-height: 68px; height: 68px; display: flex; align-items: center; overflow: hidden; background-color: var(--primary-color); width: 100%; }
.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-weight: bold; font-size: 24px; color: #FFFFFF; text-decoration: none; display: flex; align-items: center; }
.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: var(--secondary-color); width: 100%; }

.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; }
.nav-link { color: #FFFFFF; text-decoration: none; padding: 10px 15px; font-size: 15px; white-space: nowrap; transition: background-color 0.3s ease; }
.nav-link:hover { background-color: rgba(255, 255, 255, 0.1); border-radius: 4px; }

.btn { background: var(--button-gradient); color: #FFFFFF; padding: 10px 18px; border-radius: 5px; text-decoration: none; font-weight: bold; transition: all 0.3s ease; display: inline-flex; align-items: center; justify-content: center; border: none; cursor: pointer; }
.btn:hover { opacity: 0.9; transform: translateY(-1px); }

.hamburger-menu { display: none; flex-direction: column; justify-content: space-around; width: 30px; height: 20px; cursor: pointer; background: transparent; border: none; padding: 0; }
.hamburger-menu .bar { width: 100%; height: 2px; background-color: #FFFFFF; transition: all 0.3s ease; }
.hamburger-menu.active .bar:nth-child(1) { transform: translateY(9px) rotate(45deg); }
.hamburger-menu.active .bar:nth-child(2) { opacity: 0; }
.hamburger-menu.active .bar:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }

.overlay { display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%; background-color: rgba(0, 0, 0, 0.5); z-index: 999; }
.overlay.active { display: block; }

.site-footer { background-color: var(--primary-color); color: #FFFFFF; padding: 40px 0 20px; font-size: 14px; }
.footer-top-grid { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; padding: 0 20px; }
.footer-col h3 { font-size: 18px; margin-bottom: 15px; color: #FFFFFF; }
.footer-logo { font-weight: bold; font-size: 22px; color: #FFFFFF; text-decoration: none; display: block; margin-bottom: 15px; }
.footer-description { margin-bottom: 20px; line-height: 1.8; word-wrap: break-word; overflow-wrap: break-word; color: rgba(255, 255, 255, 0.8); }
.footer-nav ul { list-style: none; padding: 0; margin: 0; }
.footer-nav li { margin-bottom: 10px; }
.footer-nav a { color: rgba(255, 255, 255, 0.8); text-decoration: none; transition: color 0.3s ease; }
.footer-nav a:hover { color: #FFFFFF; }
.footer-bottom { text-align: center; padding: 20px; border-top: 1px solid rgba(255, 255, 255, 0.1); margin-top: 40px; color: rgba(255, 255, 255, 0.7); }
.footer-slot-anchor-inner { min-height: 1px; }

@media (max-width: 768px) {
  :root { --header-offset: 110px; }
  body { padding-top: var(--header-offset); overflow-x: hidden; }

  .page-content img { max-width: 100% !important; height: auto !important; display: block; }
  .page-content { overflow-x: hidden; max-width: 100%; }
  body { overflow-x: hidden; }

  .header-top { min-height: 60px !important; height: 60px !important; }
  .header-container { width: 100%; max-width: none; padding: 0 15px; justify-content: space-between; }
  
  .hamburger-menu { display: flex; z-index: 1001; }
  .logo { flex: 1 !important; display: flex !important; justify-content: center !important; align-items: center !important; }
  .logo img { max-height: 56px !important; }

  .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(--secondary-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; /* Default hidden */
    position: fixed; top: var(--header-offset); left: 0; 
    width: 280px; height: calc(100vh - var(--header-offset)); 
    background-color: var(--text-main); /* Darker background for mobile menu */
    flex-direction: column; padding: 20px; 
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.2); 
    transform: translateX(-100%); /* Slide out of view */
    transition: transform 0.3s ease;
    overflow-y: auto;
    z-index: 1000;
  }
  .main-nav.active {
    display: flex; /* Show when active */
    transform: translateX(0); /* Slide into view */
  }
  .nav-container { width: 100%; max-width: none; padding: 0; flex-direction: column; justify-content: flex-start; align-items: flex-start; height: auto; }
  .nav-link { width: 100%; padding: 12px 0; border-bottom: 1px solid rgba(255, 255, 255, 0.1); color: #FFFFFF; }
  .nav-link:last-child { border-bottom: none; }

  .site-footer { padding: 30px 0 15px; }
  .footer-top-grid { grid-template-columns: 1fr; padding: 0 15px; }
  .footer-col { margin-bottom: 20px; }
  .footer-col:last-child { margin-bottom: 0; }
  .footer-bottom { margin-top: 20px; padding: 15px; }
}
/* 移动端内容区防溢出（系统追加，请勿删除） */
@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;
  }
}
