@font-face {
  font-family: "DouYu";
  src: url("../../../assets/font/DouYu.woff2") format("truetype");
}

/* 全局颜色 */
:root {
  --primary-color: #6b8e8e;
  --primary-light: #8fbfbf;
  --primary-dark: #4f6f6f;
  --neon-color: #a2d5d5;
  --dark-bg: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0f0f0f 100%);
  --card-bg: rgba(39, 39, 42, 0.5);
  --text-light: #ffffff;
  --text-muted: #b0b0b0;
  --background-color: #ffffff;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #ffffff;
  --contrast-color: #ffffff;
}

/* 导航栏颜色 */
:root {
  --nav-color: rgba(255, 255, 255, 0.6);
  --nav-hover-color: var(--primary-light);
  --nav-mobile-background-color: #ffffff;
  --nav-dropdown-background-color: #ffffff;
  --nav-dropdown-color: #555555;
  --nav-dropdown-hover-color: var(--primary-light);
}

/* 颜色预设 */
.light-background {
  --background-color: #f5eeed;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: rgba(1, 1, 1, 0.8);
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #3e2c40;
  --contrast-color: #ffffff;
}

/* 平滑滚动 */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# 通用样式和共享类
--------------------------------------------------------------*/
body {
  font-family: "DouYu", "PingFang SC", "Hiragino Sans GB", "Heiti SC", "Microsoft YaHei", "WenQuanYi Micro Hei";
  color: var(--default-color);
  background-color: var(--background-color);
}

a {
  color: var(--primary-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--primary-color), transparent 25%);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
}

.TMP {
  width: 1.25rem;
  height: 1.25rem;
}

/*--------------------------------------------------------------
# 全局标题
--------------------------------------------------------------*/
.header {
  --background-color: rgba(0, 0, 0, 0);
  --default-color: #ffffff;
  --heading-color: #ffffff;
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 15px 0;
  transition: all 0.5s;
  z-index: 997;
}

.header .logo {
  line-height: 1;
}

.header .logo img {
  max-height: 100px;
  margin-right: 8px;
}

/* 滚动时全局标题 */
.scrolled .header {
  box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
  --background-color: rgba(21, 5, 23, 0.7);
}

/* 全局标题样式 */
.section-title {
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
  padding-bottom: 1.5rem;
}

.section-title h2 {
  font-size: 2.2rem !important;
  color: var(--text-light) !important;
  margin-bottom: 1rem;
  text-shadow: 0 0 15px var(--primary-light), 0 0 30px var(--neon-color),
    0 0 45px var(--primary-dark), 2px 2px 4px rgba(0, 0, 0, 0.8);
  background: linear-gradient(45deg,
      #ffffff 0%,
      var(--primary-color) 25%,
      var(--primary-light) 50%,
      var(--primary-color) 75%,
      #ffffff 100%);
  background-size: 300% 300%;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: titleGlow 4s ease-in-out infinite;
  position: relative;
  z-index: 2;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

@keyframes titleGlow {

  0%,
  100% {
    background-position: 0% 50%;
    text-shadow: 0 0 20px var(--primary-light),
      0 0 40px var(--neon-color), 0 0 60px var(--primary-dark);
  }

  50% {
    background-position: 100% 50%;
    text-shadow: 0 0 30px var(--primary-light), 0 0 60px var(--neon-color),
      0 0 90px var(--primary-dark);
  }
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 150px;
  height: 4px;
  background: linear-gradient(90deg,
      transparent 0%,
      var(--primary-light) 25%,
      var(--primary-color) 50%,
      var(--primary-light) 75%,
      transparent 100%);
  border-radius: 2px;
  box-shadow: 0 0 15px var(--primary-light);
  animation: lineGlow 2s ease-in-out infinite alternate;
}

@keyframes lineGlow {
  0% {
    box-shadow: 0 0 15px var(--primary-light);
    transform: translateX(-50%) scaleX(1);
  }

  100% {
    box-shadow: 0 0 25px var(--primary-light);
    transform: translateX(-50%) scaleX(1.1);
  }
}

.section-title h2::before {
  content: "";
  position: absolute;
  top: -10px;
  left: -20px;
  right: -20px;
  bottom: -10px;
  background: radial-gradient(ellipse at center,
      rgba(68, 222, 217, 0.2) 0%,
      rgba(68, 222, 217, 0.1) 30%,
      transparent 70%);
  border-radius: 20px;
  z-index: -1;
  animation: backgroundPulse 3s ease-in-out infinite;
}

@keyframes backgroundPulse {

  0%,
  100% {
    transform: scale(1);
    opacity: 0.3;
  }

  50% {
    transform: scale(1.1);
    opacity: 0.6;
  }
}

/* 通用部分样式 */
.section-container {
  padding: 100px 0;
  background: var(--dark-bg);
  position: relative;
  overflow: hidden;
}

.section-container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23222" stroke-width="0.3" opacity="0.2"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
  opacity: 0.08;
}

.section-container::after {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 55%;
  max-width: 550px;
  height: 2px;
  background: linear-gradient(90deg,
      transparent 0%,
      var(--primary-light) 25%,
      var(--primary-color) 50%,
      var(--primary-light) 75%,
      transparent 100%);
  border-radius: 1px;
}

.lumo {
  font-size: 28px;
}

.haul {
  font-size: 18px;
}

/*--------------------------------------------------------------
# 导航栏模块
--------------------------------------------------------------*/
/* 桌面端导航栏 */
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }

  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navmenu li {
    position: relative;
  }

  .navmenu>ul>li {
    white-space: nowrap;
    padding: 15px 14px;
  }

  .navmenu>ul>li:last-child {
    padding-right: 0;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-color);
    font-size: 13px;
    padding: 0 2px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
    position: relative;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 13px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }

  .navmenu>ul>li>a:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: -6px;
    left: 0;
    background-color: var(--primary-color);
    visibility: hidden;
    width: 0px;
    transition: all 0.3s ease-in-out 0s;
  }

  .navmenu a:hover:before,
  .navmenu li:hover>a:before,
  .navmenu .active:before {
    visibility: visible;
    width: 100%;
  }

  .navmenu li:hover>a,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-hover-color);
  }

  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu .dropdown ul li {
    min-width: 200px;
  }

  .navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 13px;
    text-transform: none;
    color: var(--nav-dropdown-color);
  }

  .navmenu .dropdown ul a i {
    font-size: 13px;
  }

  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover>a {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
  }

  .navmenu .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: -100%;
    visibility: visible;
  }

  .navmenu .btn-get-started {
    color: var(--default-color);
    font-size: 13px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 8px 14px;
    border-radius: 20px;
    border: 2px solid var(--primary-color);
    background: transparent;
    transition: all 0.3s ease;
  }

  .navmenu .btn-get-started:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    box-shadow: 0 0 15px var(--primary-light);
  }
}

/* 移动端导航栏 */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
  }

  .navmenu {
    padding: 0;
    z-index: 9997;
  }

  .navmenu ul {
    display: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: var(--nav-mobile-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    overflow-y: auto;
    transition: 0.3s;
    list-style: none;
    z-index: 9998;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-dropdown-color);
    padding: 10px 20px;
    font-size: 13px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 13px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: color-mix(in srgb, var(--primary-color), transparent 90%);
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: var(--primary-color);
    color: var(--contrast-color);
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: var(--primary-color);
    color: var(--contrast-color);
    transform: rotate(180deg);
  }

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    transition: all 0.5s ease-in-out;
  }

  .navmenu .dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }

  .navmenu .dropdown>.dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: absolute;
    font-size: 32px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(33, 37, 41, 0.8);
    transition: 0.3s;
  }

  .mobile-nav-active .navmenu>ul {
    display: block;
  }
}

/*--------------------------------------------------------------
# 全局页脚模块
--------------------------------------------------------------*/
.footer {
  color: var(--default-color);
  background-color: var(--background-color);
  font-size: 13px;
  text-align: center;
  padding: 30px 0;
  position: relative;
}

.footer h3 {
  font-size: 36px;
  position: relative;
  padding: 0;
  margin: 0 0 15px 0;
}

.footer p {
  font-size: 13px;
  font-style: italic;
  padding: 0;
  margin: 0 0 30px 0;
}

.footer .social-links {
  margin: 0 0 30px 0;
}

.footer .social-links a {
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary-color);
  color: var(--contrast-color);
  line-height: 1;
  margin: 0 4px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

.footer .social-links a:hover {
  background: var(--primary-light);
  text-decoration: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 15px var(--primary-light);
}

.footer .copyright {
  padding-top: 25px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.footer .copyright .cp {
  font-size: 12px;
}

.footer .copyright .lh {
  font-size: 18px;
}

/*--------------------------------------------------------------
# 预加载模块
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  overflow: hidden;
  background: var(--background-color);
  transition: all 0.6s ease-out;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #ffffff;
  border-color: var(--primary-color) transparent var(--primary-color) transparent;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1.5s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# 回到顶部按钮
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background-color: var(--primary-color);
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: var(--contrast-color);
  line-height: 0;
}

.scroll-top:hover {
  background-color: color-mix(in srgb, var(--primary-color), transparent 20%);
  color: var(--contrast-color);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# 在移动设备上禁用 aos 动画延迟
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# 主页模块
--------------------------------------------------------------*/
.hero {
  width: 100%;
  min-height: 100vh;
  position: relative;
  padding: 80px 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero:before {
  content: "";
  background: color-mix(in srgb, var(--background-color), transparent 30%);
  position: absolute;
  inset: 0;
  z-index: 2;
}

.hero .container {
  position: relative;
  z-index: 3;
}

.hero h2 {
  margin: 0;
  font-size: 68px;
  text-transform: uppercase;
}

.hero p {
  margin: 10px 0 0 0;
  font-size: 20px;
  color: var(--heading-color);
}

.hero .btn-get-started {
  color: var(--default-color);
  font-size: 13px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 40px 8px 40px;
  margin: 20px 10px 0 10px;
  border-radius: 4px;
  border: 2px solid var(--primary-color);
  background: transparent;
  transition: all 0.3s ease;
}

.hero .btn-get-started:hover {
  background: var(--primary-color);
  border-color: var(--primary-color);
  box-shadow: 0 0 15px var(--primary-light);
}

.logo-text {
  background-image: linear-gradient(120deg, #e0c3fc 0%, #8ec5fc 100%);
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.signal {
  background-image: linear-gradient(to right, #fa709a 0%, #fee140 100%);
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.badge-container {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

/* 徽章主体 */
.badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background-color: rgba(143, 191, 191, 0.4);
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  border-color: var(--primary-light);
  box-shadow: 0 0 20px rgba(107, 142, 142, 0.6);
}

/* 徽章图标 */
.badge-icon {
  width: 1.25rem;
  height: 1.25rem;
  color: rgb(0, 255, 255);
  flex-shrink: 0;
  border-color: var(--primary-light);
  box-shadow: 0 0 20px rgba(107, 142, 142, 0.4);
}

/* 徽章文本 */
.badge-text {
  font-size: 13px;
  line-height: 1.5;
}

@media (max-width: 768px) {
  .hero h2 {
    font-size: 52px;
  }

  .hero p {
    font-size: 16px;
  }
}

/*--------------------------------------------------------------
# 关于我们模块
--------------------------------------------------------------*/
.about-content {
  position: relative;
  z-index: 2;
}

.about-visual {
  position: relative;
  z-index: 2;
}

.about-image-container {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  margin-bottom: 30px;
  border: 1px solid rgba(222, 74, 68, 0.1);
}

.about-main-image {
  width: 100%;
  height: 600px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.about-image-container:hover .about-main-image {
  transform: scale(1.05);
}

.about-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.85));
  padding: 30px;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.about-image-container:hover .about-overlay {
  transform: translateY(0);
}

.overlay-content h4 {
  color: var(--primary-red);
  margin-bottom: 10px;
}

.overlay-content p {
  color: #e0e0e0;
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.6;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 30px;
}

.stat-item {
  text-align: center;
  padding: 20px;
  background: var(--primary-color);
  border-radius: 15px;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.stat-item:hover {
  background: var(--primary-light);
  transform: translateY(-5px);
  box-shadow: 0 0 15px var(--primary-light);
}

.stat-number {
  display: block;
  font-size: 1.8rem;
  color: var(--primary-red);
  margin-bottom: 5px;
}

.stat-text {
  display: block;
  font-size: 0.85rem;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.about-video {
  width: 100%;
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  margin-top: 30px;
  border: 1px solid rgba(222, 74, 68, 0.1);
}

/*--------------------------------------------------------------
# 特色模块
--------------------------------------------------------------*/
.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  max-width: 1000px;
  margin: 0 auto;
}

.feature-card {
  background: var(--card-bg);
  border-radius: 15px;
  padding: 1.8rem 1.2rem;
  text-align: center;
  border: 1px solid rgba(222, 74, 68, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.feature-card:hover {
  transform: translateY(-8px);
  border-color: var(--primary-light);
  box-shadow: 0 0 20px var(--primary-light);
}

.feature-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(45deg, var(--primary-color), var(--primary-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.2rem;
  color: white;
  box-shadow: 0 0 15px var(--primary-light);
  transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
  transform: scale(1.1);
  box-shadow: 0 0 25px var(--primary-light);
}

.feature-card h4 {
  color: var(--text-light);
  margin-bottom: 0.8rem;
  font-size: 1rem;
}

.feature-card p {
  color: var(--text-muted);
  line-height: 1.5;
  font-size: 0.85rem;
}

/*--------------------------------------------------------------
# 合作伙伴模块
--------------------------------------------------------------*/
.partners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 25px;
}

.partner-card {
  background: var(--card-bg);
  border-radius: 12px;
  padding: 25px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(222, 74, 68, 0.1);
  min-height: 180px;
}

.partner-card:hover {
  background: rgba(39, 39, 42, 0.7);
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.35);
}

.partner-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(to right, var(--primary-color), var(--primary-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.partner-card:hover::before {
  transform: scaleX(1);
}

.logo-container {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  border-radius: 50%;
  padding: 12px;
  transition: all 0.4s ease;
}

.partner-card:hover .logo-container {
  transform: scale(1.08);
  background: rgba(222, 74, 68, 0.15);
  box-shadow: 0 0 20px rgba(222, 74, 68, 0.2);
}

.partner-logo {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
}

.partner-name {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.9);
  text-align: center;
  transition: all 0.4s ease;
  line-height: 1.4;
}

.partner-card:hover .partner-name {
  color: #fff;
  text-shadow: 0 0 10px var(--primary-light);
}

/*--------------------------------------------------------------
# 画廊模块
--------------------------------------------------------------*/
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 25px;
}

.gallery-item {
  border-radius: 15px;
  overflow: hidden;
  position: relative;
  height: 280px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  transition: all 0.4s ease;
  display: block;
}

.gallery-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(107, 142, 142, 0.4);
}

.gallery-image-container {
  position: relative;
  width: 100%;
  height: 100%;
}

.gallery-image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover .gallery-image-container img {
  transform: scale(1.1);
}

.gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
  padding: 20px;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.gallery-item:hover .gallery-overlay {
  transform: translateY(0);
}

.gallery-overlay .overlay-content h4 {
  color: #fff;
  font-size: 1.3rem;
  margin-bottom: 8px;
}

.gallery-overlay .overlay-content p {
  color: #e0e0e0;
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.4;
}

.glightbox-container .gslide-description {
  background: rgba(79, 111, 111, 0.4) !important;
  color: #fff !important;
  padding: 20px !important;
  border-radius: 8px;
}

.glightbox-container .gslide-title {
  color: var(--primary-light) !important;
  font-size: 1.5rem !important;
  margin-bottom: 10px !important;
}

.glightbox-container .gslide-description p {
  font-size: 1rem !important;
  line-height: 1.6 !important;
  margin-bottom: 0 !important;
}

.glightbox-container .gclose {
  top: 20px !important;
  right: 20px !important;
  width: 40px !important;
  height: 40px !important;
  background: var(--primary-color) !important;
  border-radius: 50% !important;
}

.glightbox-container .gclose svg {
  stroke: #fff !important;
  width: 18px !important;
  height: 18px !important;
}

/* 响应式调整 */
@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
  }

  .gallery-item {
    height: 250px;
  }
}

@media (max-width: 576px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-item {
    height: 280px;
  }
}

/*--------------------------------------------------------------
# 留言板模块
--------------------------------------------------------------*/
.message-carousel {
  margin-bottom: 50px;
  pointer-events: auto !important;
  position: relative;
  z-index: 10;
}

.messageSwiper {
  padding: 20px 0 40px;
}

.message-card {
  background: linear-gradient(145deg,
      rgba(39, 39, 42, 0.7),
      rgba(30, 30, 35, 0.8));
  border: 1px solid rgba(107, 142, 142, 0.3);
  border-radius: 15px;
  padding: 25px;
  height: 280px;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
}

.message-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary-light);
  box-shadow: 0 0 20px rgba(107, 142, 142, 0.4);
}

.message-header {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 1px solid rgba(222, 74, 68, 0.1);
}

.message-header .avatar-placeholder {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(222, 74, 68, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
}

.message-header .avatar-placeholder i {
  font-size: 1.5rem;
  color: rgba(255, 255, 255, 0.7);
}

.message-info h4 {
  font-size: 1.2rem;
  color: #ffffff;
  margin: 0 0 5px 0;
}

.message-info span {
  font-size: 0.85rem;
  color: #de4a44;
  display: block;
}

.message-content p {
  color: #e0e0e0;
  font-size: 1rem;
  line-height: 1.6;
  flex-grow: 1;
  margin-bottom: 15px;
  font-style: italic;
}

.message-date {
  color: #b0b0b0;
  font-size: 0.8rem;
  text-align: right;
}

.message-form {
  background: rgba(39, 39, 42, 0.4);
  border-radius: 15px;
  padding: 30px;
  border: 1px solid rgba(222, 74, 68, 0.2);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.form-container {
  background: rgba(30, 30, 35, 0.7);
  border-radius: 15px;
  padding: 30px;
  border: 1px solid rgba(222, 74, 68, 0.2);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.form-container h3 {
  color: #ffffff;
  text-align: center;
  margin-bottom: 25px;
  font-size: 1.5rem;
  position: relative;
  padding-bottom: 15px;
}

.form-container h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(to right, var(--primary-color), var(--primary-light));
  border-radius: 2px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  color: #ffffff;
  margin-bottom: 8px;
}

.interactive-element {
  pointer-events: auto !important;
  position: relative;
  z-index: 100;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background-color: rgba(20, 20, 25, 0.6);
  color: #ffffff;
  font-size: 16px;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--primary-color) !important;
  box-shadow: 0 0 15px var(--primary-light) !important;
  outline: none !important;
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.submit-btn {
  display: block !important;
  width: 100% !important;
  padding: 12px !important;
  background: linear-gradient(to right, var(--primary-color), var(--primary-light)) !important;
  color: white !important;
  border: none !important;
  border-radius: 8px !important;
  font-size: 1rem !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
}

.submit-btn:hover {
  background: linear-gradient(to right, var(--primary-color), var(--primary-light)) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 0 15px var(--primary-light) !important;
}

.swiper-pagination-bullet {
  background: rgba(255, 255, 255, 0.5);
  width: 12px;
  height: 12px;
  opacity: 0.7;
}

.swiper-pagination-bullet-active {
  background: linear-gradient(to right, var(--primary-color), var(--primary-light));
  opacity: 1;
}

/* 无留言时 */
.no-messages {
  text-align: center;
  padding: 40px 20px;
  color: #b0b0b0;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.no-messages h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: #e0e0e0;
}

.no-messages p {
  font-size: 1.1rem;
  opacity: 0.8;
}

.no-messages i {
  font-size: 3rem;
  margin-bottom: 20px;
  opacity: 0.5;
}

/* 验证码容器样式 */
.captcha-container {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
}

.captcha-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

#captchaContainer {
  flex: 1;
  height: 46px;
  background: rgba(20, 20, 25, 0.6);
  border: 1px solid rgba(222, 74, 68, 0.2);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  overflow: hidden;
}

#captchaContainer:hover {
  border-color: rgba(222, 74, 68, 0.4);
  box-shadow: 0 0 10px rgba(222, 74, 68, 0.2);
}

#captchaContainer canvas {
  max-width: 100%;
  max-height: 100%;
}

#captchaInput {
  flex: 1;
  padding: 12px 15px;
  background: rgba(20, 20, 25, 0.6);
  border: 1px solid rgba(222, 74, 68, 0.2);
  color: #ffffff;
  border-radius: 8px;
  font-size: 1rem;
  transition: all 0.3s ease;
}

#captchaInput:focus {
  border-color: #de4a44;
  box-shadow: 0 0 0 3px rgba(222, 74, 68, 0.2);
  outline: none;
}

.captcha-note {
  font-size: 0.85rem;
  color: #b0b0b0;
  text-align: right;
  margin-top: 5px;
}

.captcha-note i {
  margin-right: 5px;
}



::placeholder {
  color: rgba(255, 255, 255, 0.4);
  font-style: italic;
}

/* 团队成员加载状态样式 */
.team-loading {
  text-align: center;
  padding: 30px;
  color: #b0b0b0;
}

.team-loading .spinner {
  display: inline-block;
  width: 50px;
  height: 50px;
  border: 5px solid rgba(222, 74, 68, 0.3);
  border-radius: 50%;
  border-top: 5px solid var(--primary-color);
  animation: spin 1s linear infinite;
  margin-bottom: 20px;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.team-loading h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.member-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.card-body {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.member-bio {
  flex-grow: 1;
}

.member-card {
  background: linear-gradient(145deg,
      rgba(20, 40, 70, 0.8),
      rgba(10, 25, 45, 0.9));
  border: 1px solid rgba(79, 195, 247, 0.2);
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  position: relative;
}

.member-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4), 0 0 20px rgba(79, 195, 247, 0.3);
  border-color: rgba(79, 195, 247, 0.5);
}

.card-header {
  padding: 20px;
  background: rgba(15, 35, 60, 0.7);
  border-bottom: 1px solid rgba(79, 195, 247, 0.2);
  display: flex;
  align-items: center;
}

.avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 2px solid #4fc3f7;
  margin-right: 20px;
  object-fit: cover;
}

.member-info {
  flex: 1;
}

.member-name {
  font-size: 1.4rem;
  color: #ffffff;
  margin-bottom: 5px;
}

.member-role {
  display: inline-block;
  background: rgba(79, 195, 247, 0.2);
  color: #4fc3f7;
  padding: 3px 10px;
  border-radius: 15px;
  font-size: 0.9rem;
}

.card-body {
  padding: 20px;
}

.truck-info {
  background: rgba(15, 35, 60, 0.5);
  padding: 15px;
  border-radius: 8px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
}

.truck-name {
  font-weight: bold;
  color: #4fc3f7;
  margin-bottom: 5px;
  font-size: 1.1rem;
}

.truck-image {
  width: 100%;
  height: 100px;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 10px;
  overflow: hidden;
}

.truck-icon {
  font-size: 3rem;
  color: rgba(79, 195, 247, 0.4);
}

.member-bio {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #cccccc;
  min-height: 80px;
}

.card-footer {
  padding: 15px 20px;
  background: rgba(15, 35, 60, 0.7);
  border-top: 1px solid rgba(79, 195, 247, 0.2);
  display: flex;
  justify-content: space-between;
}

.join-date {
  font-size: 0.9rem;
  color: #999999;
  align-self: center;
}

/* 响应式设计 */
@media (max-width: 1200px) {
  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 992px) {
  .feature-grid {
    grid-template-columns: 1fr;
  }

  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-main-image {
    height: 450px;
  }
}

@media (max-width: 768px) {
  .section-container::after {
    width: 75%;
  }

  .about-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-main-image {
    height: 350px;
  }
}

@media (max-width: 576px) {
  .about-stats {
    grid-template-columns: 1fr;
  }

  .team-grid {
    grid-template-columns: 1fr;
  }

  .about-main-image {
    height: 300px;
  }
}

.plus {
  font-family: "PingFang SC", "Hiragino Sans GB", "Heiti SC", "Microsoft YaHei", "WenQuanYi Micro Hei";
  margin: 0 2px;
}

.pagination-container {
  background: rgba(26, 26, 26, 0.6);
  backdrop-filter: blur(15px);
  border-radius: 15px;
  padding: 20px;
  border: 1px solid rgba(68, 186, 222, 0.1);
  margin-top: 40px;
}

.pagination {
  --bs-pagination-bg: rgba(26, 26, 26, 0.8);
  --bs-pagination-border-color: rgba(68, 196, 222, 0.2);
  --bs-pagination-color: var(--text-light);
  --bs-pagination-hover-color: #ffffff;
  --bs-pagination-hover-bg: rgba(68, 163, 222, 0.2);
  --bs-pagination-hover-border-color: rgba(68, 186, 222, 0.4);
  --bs-pagination-active-color: #ffffff;
  --bs-pagination-active-bg: linear-gradient(135deg,
      var(--primary-red),
      var(--dark-red));
  --bs-pagination-active-border-color: var(--primary-red);
  --bs-pagination-disabled-color: var(--text-muted);
  --bs-pagination-disabled-bg: rgba(26, 26, 26, 0.4);
  --bs-pagination-disabled-border-color: rgba(68, 186, 222, 0.1);
  margin: 0;
  gap: 8px;
}

.pagination .page-link {
  border-radius: 8px !important;
  padding: 10px 16px;
  font-weight: 500;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(68, 155, 222, 0.2);
  position: relative;
  overflow: hidden;
}

.pagination .page-link::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg,
      transparent,
      rgba(68, 196, 222, 0.1),
      transparent);
  transition: left 0.5s ease;
  z-index: -1;
}

.pagination .page-link:hover::before {
  left: 100%;
}

.pagination .page-item.active .page-link {
  background: linear-gradient(135deg,
      var(--primary-red),
      var(--dark-red)) !important;
  border-color: var(--primary-red) !important;
  box-shadow: 0 4px 15px rgba(68, 96, 222, 0.3);
  transform: translateY(-2px);
}

.pagination .page-item:hover .page-link {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(68, 199, 222, 0.2);
  border-color: rgba(68, 189, 222, 0.4);
}

.pagination .page-item.disabled .page-link {
  opacity: 0.5;
  cursor: not-allowed;
}

@media (max-width: 768px) {
  .pagination-container {
    padding: 15px;
    margin-top: 30px;
  }
}