html { scroll-behavior: smooth; } body { font-family: 'Arial', sans-serif; margin: 0; padding: 0; background-color: #0A0A0A; color: #FFF6D6; overflow-x: hidden; } :root { --header-offset: 122px; } body { 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.5); } .header-top { box-sizing: border-box; min-height: 68px; height: 68px; display: flex; align-items: center; overflow: hidden; background-color: #111111; 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 { display: block; font-size: 24px; font-weight: bold; text-decoration: none; color: #F2C14E; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: 200px; } .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; } .btn { display: inline-flex; justify-content: center; align-items: center; padding: 10px 20px; border-radius: 8px; text-decoration: none; font-weight: bold; cursor: pointer; transition: all 0.3s ease; white-space: nowrap; border: none; } .btn-primary { background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%); color: #111111; } .btn-primary:hover { filter: brightness(1.1); box-shadow: 0 0 10px rgba(255, 211, 107, 0.6); } .btn-secondary { background-color: #3A2A12; color: #FFF6D6; border: 1px solid #F2C14E; } .btn-secondary:hover { background-color: #F2C14E; color: #111111; } .mobile-nav-buttons { box-sizing: border-box; display: none; min-height: 48px; background-color: #0A0A0A; width: 100%; padding: 0 20px; } .main-nav { box-sizing: border-box; min-height: 52px; height: 52px; display: flex; align-items: center; overflow: hidden; background-color: #F2C14E; 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 { display: block; padding: 8px 15px; text-decoration: none; color: #111111; font-weight: bold; white-space: nowrap; transition: color 0.3s ease, background-color 0.3s ease; } .nav-link:hover { color: #FFF6D6; background-color: rgba(0, 0, 0, 0.2); border-radius: 4px; } .hamburger-menu { display: none; background: none; border: none; cursor: pointer; padding: 10px; z-index: 1001; } .hamburger-icon { display: block; width: 25px; height: 3px; background-color: #F2C14E; position: relative; transition: background-color 0.3s ease; } .hamburger-icon::before, .hamburger-icon::after { content: ''; display: block; width: 100%; height: 3px; background-color: #F2C14E; position: absolute; transition: transform 0.3s ease; } .hamburger-icon::before { top: -8px; } .hamburger-icon::after { top: 8px; } .hamburger-menu.active .hamburger-icon { background-color: transparent; } .hamburger-menu.active .hamburger-icon::before { transform: translateY(8px) rotate(45deg); } .hamburger-menu.active .hamburger-icon::after { transform: translateY(-8px) rotate(-45deg); } .overlay { display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%; background-color: rgba(0, 0, 0, 0.7); z-index: 998; } .site-footer { background-color: #111111; padding: 40px 20px 20px; color: #FFF6D6; 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 { font-size: 16px; color: #F2C14E; margin-bottom: 15px; } .footer-logo { display: block; font-size: 20px; font-weight: bold; text-decoration: none; color: #F2C14E; margin-bottom: 15px; } .footer-description { line-height: 1.6; color: #FFF6D6; 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: #FFF6D6; text-decoration: none; transition: color 0.3s ease; } .footer-nav a:hover { color: #F2C14E; } .footer-bottom { border-top: 1px solid #3A2A12; padding-top: 20px; text-align: center; margin-top: 30px; } .footer-bottom p { margin: 0; color: #FFF6D6; } .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%; } .header-top { min-height: 60px !important; height: 60px !important; } .header-container { width: 100%; max-width: none; padding: 0 15px; position: relative; } .hamburger-menu { display: block; } .logo { flex: 1 !important; display: flex !important; justify-content: center !important; align-items: center !important; max-width: calc(100% - 100px); /* Adjust max-width to account for hamburger */ } .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: #0A0A0A; } .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; position: fixed; top: var(--header-offset); left: 0; height: calc(100% - var(--header-offset)); width: 280px; background-color: #111111; flex-direction: column; padding: 20px 0; box-shadow: 2px 0 10px rgba(0, 0, 0, 0.5); transform: translateX(-100%); transition: transform 0.3s ease; z-index: 999; overflow-y: auto; } .main-nav.active { display: flex; transform: translateX(0); } .nav-container { flex-direction: column; align-items: flex-start; padding: 0; width: 100%; max-width: none; } .nav-link { width: 100%; padding: 12px 20px; color: #FFF6D6; } .nav-link:hover { background-color: rgba(242, 193, 78, 0.2); } .footer-top-grid { grid-template-columns: 1fr; gap: 20px; } .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;
  }
}
