html { scroll-behavior: smooth; } body { font-family: 'Arial', sans-serif; margin: 0; padding-top: var(--header-offset); color: #333; overflow-x: hidden; } :root { --primary-color: #26A9E0; --secondary-color: #FFFFFF; --login-button-color: #EA7C07; --header-offset: 122px; } .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); background-color: var(--primary-color); } .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%; 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; } .logo { color: var(--secondary-color); font-size: 28px; font-weight: bold; text-decoration: none; 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: #f0f0f0; width: 100%; padding: 0 20px; } .btn { padding: 10px 18px; border-radius: 25px; text-decoration: none; font-weight: bold; transition: background-color 0.3s ease, transform 0.2s ease; white-space: nowrap; cursor: pointer; border: none; font-size: 15px; text-align: center; } .btn-register { background-color: var(--primary-color); color: var(--secondary-color); border: 2px solid var(--secondary-color); } .btn-register:hover { background-color: #1A7FB0; transform: translateY(-1px); } .btn-login { background-color: var(--login-button-color); color: var(--secondary-color); border: 2px solid var(--login-button-color); } .btn-login:hover { background-color: #D66D06; transform: translateY(-1px); } .main-nav { box-sizing: border-box; min-height: 52px; height: 52px; display: flex; align-items: center; overflow: hidden; background-color: #1A7FB0; /* Slightly darker blue for contrast */ 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: var(--secondary-color); text-decoration: none; padding: 10px 15px; font-weight: bold; transition: background-color 0.3s ease, color 0.3s ease; white-space: nowrap; } .nav-link:hover { background-color: rgba(255, 255, 255, 0.2); border-radius: 5px; } .hamburger-menu { display: none; width: 30px; height: 24px; position: relative; cursor: pointer; flex-direction: column; justify-content: space-between; margin-right: 15px; } .hamburger-menu span { display: block; height: 4px; width: 100%; background-color: var(--secondary-color); border-radius: 2px; transition: all 0.3s ease-in-out; } .hamburger-menu.active span:nth-child(1) { transform: translateY(10px) rotate(45deg); } .hamburger-menu.active span:nth-child(2) { opacity: 0; } .hamburger-menu.active span:nth-child(3) { transform: translateY(-10px) 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; } .site-footer { background-color: #1A7FB0; color: var(--secondary-color); padding: 40px 20px 20px; font-size: 14px; } .footer-top-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; max-width: 1200px; margin: 0 auto 30px; } .footer-col h3 { color: var(--secondary-color); font-size: 18px; margin-bottom: 15px; } .footer-col p { line-height: 1.6; color: rgba(255, 255, 255, 0.8); overflow-wrap: break-word; } .footer-logo { color: var(--secondary-color); font-size: 24px; font-weight: bold; text-decoration: none; display: block; margin-bottom: 15px; } .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; transition: color 0.3s ease; } .footer-nav a:hover { color: var(--secondary-color); } .footer-bottom { border-top: 1px solid rgba(255, 255, 255, 0.2); margin-top: 30px; padding-top: 20px; text-align: center; color: rgba(255, 255, 255, 0.6); } .footer-bottom p { margin: 0; } .footer-slot-anchor-inner { min-height: 1px; } @media (max-width: 768px) { :root { --header-offset: 110px; } body { padding-top: var(--header-offset); overflow-x: hidden; } .header-top { min-height: 60px !important; height: 60px !important; padding: 0 15px; } .header-container { width: 100%; max-width: none; justify-content: space-between; padding: 0; } .logo { flex: 1 !important; display: flex !important; justify-content: center !important; align-items: center !important; margin: 0; } .logo img { max-height: 56px !important; max-width: calc(100% - 100px); /* Account for hamburger menu width */ } .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-left: 15px; padding-right: 15px; overflow: hidden; gap: 10px; flex-wrap: nowrap; background-color: #f8f8f8; /* Light background for mobile buttons */ } .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 { min-height: 48px !important; height: auto; /* Allow height to adjust for content */ position: fixed; top: var(--header-offset); left: 0; width: 100%; max-width: 300px; /* Max width for mobile menu */ height: calc(100vh - var(--header-offset)); overflow-y: auto; background-color: #2c3e50; /* Darker background for mobile menu */ transform: translateX(-100%); transition: transform 0.3s ease; z-index: 1001; display: none; /* Hidden by default */ } .main-nav.active { transform: translateX(0); display: flex; /* Show when active */ } .nav-container { flex-direction: column; align-items: flex-start; padding: 20px 15px; width: 100%; max-width: none; } .nav-link { width: 100%; padding: 12px 15px; text-align: left; border-bottom: 1px solid rgba(255, 255, 255, 0.1); } .nav-link:last-child { border-bottom: none; } .hamburger-menu { display: flex; z-index: 1002; } .overlay.active { display: block; } .footer-top-grid { grid-template-columns: 1fr; } .footer-col { margin-bottom: 25px; } .footer-col:last-child { margin-bottom: 0; } .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;
  }
}
