:root { --primary-color: #E53935; --secondary-color: #FF5A4F; --button-gradient: linear-gradient(180deg, #FF5A4F 0%, #E53935 100%); --card-bg: #FFFFFF; --background-color: #F5F7FA; --text-main: #333333; --border-color: #E0E0E0; --header-top-bg: #8B0000; /* Dark Red for contrast */ --main-nav-bg: #A52A2A; /* Brownish Red for contrast */ --button-text-color: #1A1A1A; /* Very dark gray for contrast */ --header-offset: 122px; /* Desktop: 68px (header-top) + 52px (main-nav) + 2px buffer */ } body { font-family: Arial, sans-serif; margin: 0; padding-top: var(--header-offset); color: var(--text-main); background-color: var(--background-color); overflow-x: hidden; } body.no-scroll { overflow: hidden; } a { text-decoration: none; color: inherit; } .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(--header-top-bg); } .header-top { box-sizing: border-box; min-height: 68px; height: 68px; display: flex; align-items: center; overflow: hidden; background-color: var(--header-top-bg); 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-size: 28px; font-weight: bold; color: #FFFFFF; display: flex; align-items: center; line-height: 1; } .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%; justify-content: center; align-items: center; padding: 0 15px; } .main-nav { box-sizing: border-box; min-height: 52px; height: 52px; display: flex; align-items: center; overflow: hidden; background-color: var(--main-nav-bg); 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; padding: 10px 15px; font-size: 16px; font-weight: bold; white-space: nowrap; transition: background-color 0.3s ease; } .nav-link:hover { background-color: rgba(255, 255, 255, 0.1); border-radius: 4px; } .hamburger-menu { display: none; flex-direction: column; justify-content: space-around; width: 30px; height: 24px; cursor: pointer; padding: 5px; z-index: 1001; } .hamburger-menu span { display: block; width: 100%; height: 3px; background-color: #FFFFFF; border-radius: 2px; transition: all 0.3s ease; } .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; transition: opacity 0.3s ease; opacity: 0; } .overlay.active { display: block; opacity: 1; } .btn { display: inline-flex; align-items: center; justify-content: center; padding: 10px 20px; border-radius: 25px; font-size: 16px; font-weight: bold; color: var(--button-text-color); /* Dark text for contrast */ background: var(--button-gradient); border: none; cursor: pointer; transition: all 0.3s ease; box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2); white-space: nowrap; text-decoration: none; } .btn:hover { filter: brightness(1.1); box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3); } .site-footer { background-color: var(--primary-color); color: #FFFFFF; padding: 40px 20px 20px; font-size: 14px; } .site-footer h3 { color: #FFFFFF; font-size: 18px; margin-bottom: 20px; } .footer-top-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; max-width: 1200px; margin: 0 auto 30px; } .footer-col { padding: 10px 0; } .footer-logo { font-size: 24px; font-weight: bold; color: #FFFFFF; margin-bottom: 15px; display: block; line-height: 1; } .footer-description { line-height: 1.6; margin-bottom: 15px; word-wrap: break-word; overflow-wrap: break-word; } .footer-nav { list-style: none; padding: 0; margin: 0; } .footer-nav li { margin-bottom: 10px; } .footer-nav a { color: #FFFFFF; opacity: 0.8; transition: opacity 0.3s ease; } .footer-nav a:hover { opacity: 1; } .footer-bottom { max-width: 1200px; margin: 0 auto; text-align: center; padding-top: 20px; border-top: 1px solid rgba(255, 255, 255, 0.2); color: rgba(255, 255, 255, 0.8); } .footer-slot-anchor-inner { min-height: 1px; } @media (max-width: 768px) { :root { --header-offset: 110px; /* Mobile: 60px (header-top) + 48px (mobile-nav-buttons) + 2px buffer */ } 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%; } .header-top { min-height: 60px !important; height: 60px !important; } .header-container { padding: 0 15px; max-width: none; position: relative; } .hamburger-menu { display: flex; } .logo { position: absolute !important; left: 50% !important; transform: translateX(-50%) !important; display: flex !important; align-items: center !important; justify-content: center !important; max-width: calc(100% - 100px); } .logo img { max-height: 56px !important; } .desktop-nav-buttons { display: none !important; } .mobile-nav-buttons { display: flex !important; min-height: 48px; align-items: 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; position: fixed; top: var(--header-offset); left: 0; width: 70%; max-width: 300px; height: calc(100% - var(--header-offset)); flex-direction: column; justify-content: flex-start; align-items: flex-start; padding: 20px 0; box-shadow: 2px 0 10px rgba(0, 0, 0, 0.2); transform: translateX(-100%); transition: transform 0.3s ease; z-index: 1002; background-color: var(--main-nav-bg); overflow-y: auto; } .main-nav.active { display: flex; transform: translateX(0); } .nav-container { flex-direction: column; align-items: flex-start; padding: 0 15px; width: 100%; max-width: none; } .nav-link { width: 100%; padding: 12px 15px; border-bottom: 1px solid rgba(255, 255, 255, 0.1); font-size: 15px; } .nav-link:last-child { border-bottom: none; } .site-footer { padding: 30px 15px 15px; } .footer-top-grid { grid-template-columns: 1fr; gap: 30px; margin-bottom: 20px; } .footer-col h3 { margin-bottom: 15px; } .footer-nav li { margin-bottom: 8px; } .footer-bottom { padding-top: 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;
  }
}
/* 内容保护（系统追加，请勿删除） */
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;
}
