@charset "UTF-8";

:root {
  --primary: #26A9E0;
  --secondary: #FFFFFF;
  --login-color: #EA7C07;
  --text-dark: #000000;
  --header-offset: 122px;
}

* { box-sizing: border-box; }

html, body { margin: 0; padding: 0; width: 100%; overflow-x: hidden; }

body {
  padding-top: var(--header-offset);
  font-family: 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  color: var(--text-dark);
  background-color: var(--secondary);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 1000;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.18);
  background-color: var(--secondary);
}

.header-top-bar {
  box-sizing: border-box;
  width: 100%;
  height: 68px;
  min-height: 68px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-color: var(--primary);
}

.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-left: 30px;
  padding-right: 30px;
}

.logo {
  display: inline-flex;
  align-items: center;
  font-size: 30px;
  font-weight: 800;
  letter-spacing: 1px;
  text-decoration: none;
  color: var(--secondary);
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.25);
  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;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  padding: 10px 22px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
  cursor: pointer;
}

.btn-login {
  background-color: var(--login-color);
  color: var(--secondary);
  box-shadow: 0 4px 12px rgba(234, 124, 7, 0.4);
}

.btn-register {
  background-color: var(--secondary);
  color: var(--primary);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.18);
}

.btn:hover {
  transform: translateY(-2px);
  opacity: 0.94;
}

.mobile-nav-buttons {
  box-sizing: border-box;
  display: none;
  min-height: 48px;
}

.main-nav {
  box-sizing: border-box;
  width: 100%;
  height: 52px;
  min-height: 52px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-color: var(--secondary);
  border-top: 1px solid rgba(38, 169, 224, 0.25);
}

.nav-container {
  box-sizing: border-box;
  width: 100%;
  height: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 0 20px;
}

.hamburger-menu {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
}

.hamburger-menu span {
  display: block;
  width: 24px;
  height: 3px;
  border-radius: 2px;
  background-color: var(--primary);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.hamburger-menu.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.hamburger-menu.active span:nth-child(2) { opacity: 0; }
.hamburger-menu.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

.nav-links {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 4px;
  width: 100%;
}

.nav-link {
  display: inline-block;
  padding: 8px 12px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  color: var(--text-dark);
  border-radius: 6px;
  white-space: nowrap;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
  background-color: var(--primary);
  color: var(--secondary);
}

.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; }

/* Footer */
.site-footer {
  background-color: #0B2C3D;
  color: #E8F4FB;
  padding: 0;
  margin-top: 40px;
}

.footer-top { padding: 50px 20px 20px; }

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.footer-top-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 30px;
}

.footer-col { min-width: 0; }

.footer-about .footer-logo {
  display: inline-block;
  font-size: 28px;
  font-weight: 800;
  letter-spacing: 1px;
  color: #FFFFFF;
  text-decoration: none;
  margin-bottom: 14px;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
}

.footer-description {
  font-size: 14px;
  line-height: 1.7;
  color: #C6DCE8;
  margin: 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.footer-col-title {
  font-size: 17px;
  font-weight: 700;
  color: #FFFFFF;
  margin: 0 0 16px;
  padding-bottom: 8px;
  border-bottom: 2px solid #26A9E0;
  display: inline-block;
}

.footer-nav {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-nav li { margin-bottom: 10px; }

.footer-nav a {
  color: #C6DCE8;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s ease, padding-left 0.2s ease;
}

.footer-nav a:hover {
  color: #26A9E0;
  padding-left: 4px;
}

.footer-mid { margin-top: 10px; }

.footer-bottom {
  border-top: 1px solid rgba(198, 220, 232, 0.25);
  padding: 20px 0;
  text-align: center;
  font-size: 14px;
  color: #C6DCE8;
}

.footer-bottom p { margin: 0; }

.footer-slot-anchor-inner { width: 100%; }

@media (max-width: 768px) {
  :root { --header-offset: 110px; }

  .header-top-bar {
    height: 60px !important;
    min-height: 60px !important;
  }

  .header-container {
    width: 100%;
    max-width: none;
    padding-left: 15px;
    padding-right: 15px;
    position: relative;
  }

  .logo {
    flex: 1 !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    font-size: 24px;
  }

  .logo img {
    display: block !important;
    max-width: 100%;
    height: auto;
    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-left: 15px;
    padding-right: 15px;
    overflow: hidden;
    gap: 10px;
    flex-wrap: nowrap;
    background-color: var(--secondary);
  }

  .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 {
    height: 48px !important;
    min-height: 48px !important;
    display: none;
    position: fixed;
    top: 108px;
    left: 0;
    width: 100%;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    z-index: 1000;
    background-color: var(--secondary);
    overflow-y: auto;
  }

  .main-nav.active {
    display: block;
    transform: translateX(0);
  }

  .nav-container {
    width: 100%;
    max-width: none;
    padding: 0;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    height: auto;
  }

  .hamburger-menu {
    display: flex;
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1001;
  }

  .nav-links {
    flex-direction: column;
    width: 100%;
    gap: 0;
    padding: 10px 0;
  }

  .nav-link {
    display: block;
    width: 100%;
    padding: 14px 20px;
    border-radius: 0;
    border-bottom: 1px solid rgba(38, 169, 224, 0.18);
  }

  .footer-top-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-top { padding: 36px 16px 16px; }

  .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;
  }
}
/* 内容保护（系统追加，请勿删除） */
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;
}
