:root { --primary: #26A9E0; --secondary: #FFFFFF; --color-login: #EA7C07; --text-dark: #000000; --bg-light: #FFFFFF; --header-offset: 122px; } * { box-sizing: border-box; } body { padding-top: var(--header-offset); margin: 0; font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; } .site-header { position: fixed; top: 0; left: 0; right: 0; width: 100%; z-index: 1000; box-shadow: 0 4px 12px rgba(0,0,0,0.15); background-color: #FFFFFF; } .header-top { width: 100%; height: 68px; min-height: 68px; display: flex; align-items: center; overflow: hidden; background-color: #FFFFFF; border-bottom: 1px solid #e5e5e5; } .header-container { width: 100%; height: 100%; max-width: 1200px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; padding-left: 30px; padding-right: 30px; } .logo { display: inline-block; font-size: 32px; font-weight: 800; color: #26A9E0; text-decoration: none; letter-spacing: 1px; text-transform: lowercase; } .logo:hover { color: #1a8ab8; } .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 { display: none; min-height: 48px; } .btn { display: inline-block; padding: 10px 22px; border-radius: 6px; font-size: 14px; font-weight: 600; text-decoration: none; text-align: center; cursor: pointer; border: none; transition: all 0.3s ease; white-space: nowrap; } .btn-login { background-color: #EA7C07; color: #FFFFFF; box-shadow: 0 2px 8px rgba(234,124,7,0.35); } .btn-login:hover { background-color: #c96a05; transform: translateY(-2px); box-shadow: 0 4px 12px rgba(234,124,7,0.45); } .btn-register { background-color: #26A9E0; color: #FFFFFF; box-shadow: 0 2px 8px rgba(38,169,224,0.35); } .btn-register:hover { background-color: #1a8ab8; transform: translateY(-2px); box-shadow: 0 4px 12px rgba(38,169,224,0.45); } .main-nav { width: 100%; height: 52px; min-height: 52px; display: flex; align-items: center; overflow: hidden; background-color: #26A9E0; } .nav-container { width: 100%; height: 100%; max-width: 1200px; margin: 0 auto; display: flex; flex-direction: row; justify-content: center; align-items: center; padding: 0 20px; gap: 4px; } .nav-link { display: inline-block; padding: 8px 14px; color: #FFFFFF; text-decoration: none; font-size: 14px; font-weight: 500; border-radius: 4px; transition: all 0.25s ease; white-space: nowrap; } .nav-link:hover { background-color: rgba(255,255,255,0.22); color: #FFFFFF; } .nav-link.active { background-color: #FFFFFF; color: #26A9E0; } .hamburger-menu { display: none; position: absolute; left: 15px; top: 50%; transform: translateY(-50%); width: 42px; height: 42px; background: transparent; border: none; cursor: pointer; padding: 8px; z-index: 1001; flex-direction: column; justify-content: space-around; align-items: center; } .hamburger-menu span { display: block; width: 26px; height: 3px; background-color: #26A9E0; border-radius: 2px; transition: all 0.3s ease; } .hamburger-menu.active span:nth-child(1) { transform: rotate(45deg) translate(6px, 6px); } .hamburger-menu.active span:nth-child(2) { opacity: 0; } .hamburger-menu.active span:nth-child(3) { transform: rotate(-45deg) translate(6px, -6px); } .nav-overlay { display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%; background-color: rgba(0,0,0,0.5); z-index: 999; opacity: 0; transition: opacity 0.3s ease; } .nav-overlay.active { display: block; opacity: 1; } body.no-scroll { overflow: hidden; } .site-footer { background-color: #000000; color: #FFFFFF; } .footer-top { padding: 48px 0 32px; border-bottom: 1px solid rgba(255,255,255,0.12); } .footer-container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 30px; } .footer-top-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; } .footer-col { min-width: 0; } .footer-logo { display: inline-block; font-size: 28px; font-weight: 800; color: #26A9E0; text-decoration: none; letter-spacing: 1px; margin-bottom: 14px; text-transform: lowercase; } .footer-logo:hover { color: #4dc0f0; } .footer-description { font-size: 14px; line-height: 1.7; color: #d0d0d0; margin: 0; word-wrap: break-word; overflow-wrap: break-word; } .footer-title { font-size: 16px; font-weight: 700; color: #26A9E0; margin: 0 0 16px; padding-bottom: 10px; position: relative; } .footer-title::after { content: ''; position: absolute; left: 0; bottom: 0; width: 36px; height: 2px; background-color: #EA7C07; } .footer-nav { list-style: none; margin: 0; padding: 0; } .footer-nav li { margin-bottom: 10px; } .footer-nav a { color: #d0d0d0; text-decoration: none; font-size: 14px; transition: color 0.25s ease; word-wrap: break-word; overflow-wrap: break-word; } .footer-nav a:hover { color: #26A9E0; } .footer-mid { padding: 24px 0; border-bottom: 1px solid rgba(255,255,255,0.12); } .footer-slot-anchor-inner { min-height: 0; } .footer-bottom { padding: 20px 0; background-color: #000000; } .footer-copyright { margin: 0; text-align: center; font-size: 13px; color: #b0b0b0; } .footer-copyright span { color: #26A9E0; font-weight: 600; } @media (max-width: 768px) { :root { --header-offset: 110px; } .header-top { height: 60px !important; min-height: 60px !important; } .header-container { width: 100%; max-width: none; padding-left: 15px; padding-right: 15px; position: relative; height: 100%; } .logo { position: absolute !important; left: 50% !important; transform: translateX(-50%) !important; display: flex !important; align-items: center !important; justify-content: center !important; font-size: 26px; max-width: calc(100% - 100px); } .logo img { display: block !important; max-width: 100%; height: auto; max-height: 56px; } .desktop-nav-buttons { display: none !important; } .mobile-nav-buttons { display: flex !important; 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; min-height: 48px; background-color: #FFFFFF; border-bottom: 1px solid #e5e5e5; } .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; } .hamburger-menu { display: flex; } .main-nav { height: 48px !important; min-height: 48px !important; } .nav-container { width: 100%; max-width: none; padding-left: 15px; padding-right: 15px; justify-content: center; } .nav-link { padding: 6px 10px; font-size: 13px; } .main-nav { display: none; position: fixed; top: 0; left: 0; width: 80%; max-width: 300px; height: 100vh !important; min-height: 100vh !important; background-color: #26A9E0; flex-direction: column; justify-content: flex-start; align-items: stretch; padding-top: 90px; transform: translateX(-100%); transition: transform 0.3s ease; z-index: 1000; overflow-y: auto; } .main-nav.active { display: block; transform: translateX(0); } .main-nav .nav-container { display: flex; flex-direction: column; width: 100%; height: auto; padding: 0 15px 30px; align-items: stretch; justify-content: flex-start; } .main-nav .nav-link { display: block; width: 100%; padding: 14px 16px; font-size: 16px; border-bottom: 1px solid rgba(255,255,255,0.15); border-radius: 0; } .main-nav .nav-link.active { background-color: #FFFFFF; color: #26A9E0; } .footer-top { padding: 36px 0 24px; } .footer-container { width: 100%; max-width: none; padding-left: 15px; padding-right: 15px; } .footer-top-grid { grid-template-columns: 1fr 1fr; gap: 24px; } .footer-about { grid-column: 1 / -1; } .footer-dynamic-col { grid-column: 1 / -1; } .footer-mid { padding: 18px 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: 480px) { .footer-top-grid { grid-template-columns: 1fr; } .desktop-nav-buttons { display: none !important; } }
/* 移动端内容区防溢出（系统追加，请勿删除） */
@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;
  }
}
/* 内容保护（系统追加，请勿删除） */
body {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
input, textarea, select, [contenteditable="true"] {
  -webkit-user-select: text;
  -moz-user-select: text;
  user-select: text;
}
