/**
 * GZL 系统基础样式
 * 从主站样式中提取，仅包含 gzl 系统需要的部分
 */

/* ============================================
   CSS 变量
   ============================================ */
:root {
  --family: "Poppins", "PingFang SC", "Microsoft YaHei", "SourceHanSansCN", "Montserrat", "Tahoma", "Arial", "sans-serif";
  --primary: #070707;
  --secondary: #C9FF85;
}

/* ============================================
   基础重置
   ============================================ */
*,
*:before,
*:after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  margin: 0 auto;
  overflow-x: hidden;
  position: relative;
  padding: 0;
  width: 100%;
  font-size: 14px;
  line-height: 1.4;
  font-family: var(--family);
  background: #fff;
  color: #000;
}

html.act {
  overflow: hidden;
  width: 100%;
  height: 100vh;
}

.ul, .ul li, .ul td, .ul dd {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

a {
  display: inline-block;
  text-decoration: none;
  cursor: pointer;
  transition: all .5s;
  color: inherit;
  outline: none;
}

textarea, select, input {
  color: inherit;
  font-size: inherit;
  width: 100%;
  display: block;
  outline: none;
  font-family: var(--family);
  border: none;
  background: #fff;
}

textarea {
  resize: none;
}

img {
  border: none;
  display: block;
  max-width: 100%;
}

img[src=""] {
  opacity: 0;
}

video {
  display: block;
}

/* ============================================
   字体与文本工具类
   ============================================ */
.fbd { font-weight: bold; }
.fbd300 { font-weight: 300; }
.fbd500 { font-weight: 500; }
.fbd600 { font-weight: 600; }
.tac { text-align: center; }
.lh1 { line-height: 1; }
.lh15 { line-height: 1.5; }

[class*="txt-hide"] {
  display: -webkit-box;
  display: box;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
}
.txt-hide-1 { -webkit-line-clamp: 1; }
.txt-hide-2 { -webkit-line-clamp: 2; }
.txt-hide-3 { -webkit-line-clamp: 3; }

/* 响应式字体大小 */
.f_12 { font-size: 0.625vw; }
.f_14 { font-size: 0.729vw; }
.f_16 { font-size: 0.833vw; }
.f_18 { font-size: 0.938vw; }
.f_20 { font-size: 1.042vw; }
.f_22 { font-size: 1.146vw; }
.f_24 { font-size: 1.25vw; }
.f_30 { font-size: 1.563vw; }
.f_32 { font-size: 1.667vw; }
.f_40 { font-size: 2.083vw; }
.f_46 { font-size: 2.396vw; }
.f_80 { font-size: 4.167vw; }

/* ============================================
   图片/图标工具类
   ============================================ */
.pic img, .icon img, .icon svg {
  display: block;
  border: none;
  width: 100%;
  max-width: 100%;
}

.bg {
  width: 100%;
  height: 100%;
  isolation: isolate;
}

.bg img, .bg video {
  display: block;
  border: none;
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-width: 100%;
}

/* ============================================
   Flex 布局工具类
   ============================================ */
.flex {
  display: flex;
  flex-wrap: wrap;
}

.flex-xc {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.flex-xb {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.flex-xb-yc {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}

.flex-yc {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.flex-xc-yc {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}

.flex-column {
  display: flex;
  flex-direction: column;
}

.flex-column-yc {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: center;
}

/* ============================================
   Grid 布局工具类
   ============================================ */
.grid-x2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: flex-start;
}

/* ============================================
   定位工具类
   ============================================ */
.psr { position: relative; }
.psc {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.h-full { height: 100%; }

/* ============================================
   PC/Mobile 显示控制
   ============================================ */
.mob { display: none !important; }
.mob-flex { display: none !important; }

/* ============================================
   动画
   ============================================ */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* ============================================
   蒙版层
   ============================================ */
.mask1 {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 60;
  background: rgba(149, 149, 149, 0.15);
  backdrop-filter: blur(1.562vw);
  opacity: 0;
  pointer-events: none;
}

.mask1.on {
  transition: all ease .3s;
  opacity: 1;
  pointer-events: visible;
}

/* ============================================
   弹窗基础布局
   ============================================ */
.tc-layout {
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 61;
  display: none;
}

.tc-layout.on {
  display: block;
  animation: fadeIn 1s forwards;
}

/* ============================================
   登录弹窗
   ============================================ */
.tc-login {
  width: max-content;
  border-radius: 20px;
  border: 2px solid #FFF;
  background: rgba(254, 254, 254, 0.86);
  box-shadow: 0 0.104vw 0.625vw 0 rgba(116, 116, 116, 0.10);
  overflow: hidden;
}

.tc-login .sec1 {
  padding: 0 0 0 1.25vw;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 2;
}

.tc-login .tc-t1 {
  color: #696969;
}

.tc-login .tc-close {
  width: 3.645vw;
  height: 2.5vw;
}

.tc-login .tc-close .icon {
  width: 0.781vw;
}

.tc-login .sec2 .zuo {
  padding: 8.333vw 1.25vw;
  overflow: hidden;
}

.tc-login .sec2 .zuo .t3 {
  line-height: 1.2;
}

.tc-login .sec2 .zuo .t4 {
  color: #696969;
  margin-top: 0.729vw;
}

.tc-login .sec2 .you {
  width: 22.916vw;
  min-width: 260px;
  border: 2px solid #FFF;
  background: #FFF;
  box-shadow: 0 0.189vw 0.71vw 0 rgba(0, 0, 0, 0.10);
}

/* 毛玻璃装饰圆 */
.blur-radio {
  width: 30.312vw;
  height: 30.312vw;
  border-radius: 100%;
  background: url('/img/user/user-blur.svg') no-repeat center/contain;
  filter: blur(1.145vw);
  position: absolute;
  z-index: -1;
}

.tc-login .blur-radio1 {
  right: 0;
  top: 0;
  transform: translate(50%, -50%);
}

.tc-login .blur-radio2 {
  left: 0;
  bottom: 0;
  transform: translate(-50%, 50%);
}

/* ============================================
   表单样式
   ============================================ */
.Eform2 {
  width: 13.437vw;
  min-width: 200px;
}

.Eform2 .t5 {
  font-weight: 500;
}

.Eform2 .t6 {
  margin: 0.52vw 0 1.354vw;
  color: #696969;
}

.Eform2 .Eform-itme-input {
  display: block;
  margin-bottom: 0.52vw;
  position: relative;
  color: #727272;
}

.Eform2 .Eform-itme-input .name {
  margin-bottom: 0.3vw;
}

.Eform2 .Eform-itme-input input {
  width: 100%;
  height: 1.666vw;
  min-height: 32px;
  padding: 0 0.5em;
  border-radius: 8px;
  border: 1px solid #B8B8B8;
  background: #FFF;
}

.Eform2 .getcode {
  color: #B8B8B8;
  background: none;
  width: 5.208vw;
  min-width: 80px;
  height: 1.666vw;
  min-height: 32px;
  border-radius: 8px;
  position: absolute;
  bottom: 0;
  right: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  border: none;
  transition: all ease .3s;
}

.Eform2 .getcode:hover {
  color: var(--secondary);
  background: #000;
}

.Eform2 .getcode:disabled {
  background: #696969;
  color: #fff;
}

.Eform2 .C-btn3 {
  width: 100%;
  height: 1.666vw;
  min-height: 32px;
  margin-top: 1.666vw;
}

.Eform2 .t7 {
  margin: 1.25vw auto;
  position: relative;
  text-align: center;
}

.Eform2 .t7::before {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translate(0, -50%);
  width: 100%;
  height: 0.052vw;
  background: #D0D0D0;
  z-index: 1;
}

.Eform2 .t7 span {
  color: #B8B8B8;
  background: #fff;
  padding: 0 0.26vw;
  position: relative;
  z-index: 2;
}

/* 快速登录 */
.quick-login {
  gap: 0.937vw;
}

.quick-login .item {
  height: 1.8vw;
  min-height: 30px;
  padding: 0 10px;
  color: #696969;
  border-radius: 40px;
  background: #FFF;
  box-shadow: 0 0 0.208vw 0 rgba(0, 0, 0, 0.10);
}

.quick-login .item img {
  width: 1.041vw;
  min-width: 16px;
  margin-right: 0.52vw;
}

/* ============================================
   按钮样式
   ============================================ */
.C-btn3 {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  border: 2px solid #FFF;
  box-shadow: -0.104vw 0.104vw 0.208vw 0 rgba(0, 0, 0, 0.10);
  background: url('/img/user/btn-bg.png') no-repeat center/100% 100%;
  color: #2B2B2B;
  cursor: pointer;
}

.C-btn3.theme2 {
  border: 2px solid #C9FF85;
  background: #FFF;
  color: #88C46E;
}

/* ============================================
   登录按钮
   ============================================ */
.signup-btn {
  padding: 0.833vw 1.041vw;
  border-radius: 200px;
  border: 1px solid #000;
  cursor: pointer;
  position: relative;
  z-index: 1;
  overflow: hidden;
  transition: background 0.8s;
  display: flex;
  align-items: center;
  gap: 8px;
}

.signup-btn img {
  width: 16px;
  height: 16px;
}

/* ============================================
   已登录用户显示
   ============================================ */
.loggedbox {
  position: relative;
  display: none;
}

.loggedbox .tc-close {
  display: none;
}

.loggedbox .tc-close.on {
  display: block;
}

.logged-simple {
  padding: 0.312vw 1.041vw 0.312vw 0.416vw;
  border-radius: 50px;
  border: 1px solid #000;
  filter: drop-shadow(-0.104vw 0.104vw 0.208vw rgba(0, 0, 0, 0.10));
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  cursor: pointer;
  color: #000;
}

.logged-simple .icon {
  width: 1.875vw;
  min-width: 26px;
  aspect-ratio: 1/1;
  border-radius: 100%;
  overflow: hidden;
  margin-right: 0.52vw;
}

.logged-simple .icon img {
  height: 100%;
  object-fit: cover;
}

.logged-simple p {
  width: 4.166vw;
  max-width: 80px;
  display: -webkit-box;
  display: box;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
}

.user-pro .logged-simple {
  background: url('/img/user/ydl-bg.png') no-repeat center center/contain;
}

/* ============================================
   用户信息面板
   ============================================ */
.user-info {
  position: fixed;
  right: 5.208vw;
  top: 7.291vw;
  width: 16.666vw;
  min-width: 280px;
  z-index: 59;
  display: none;
  animation: fadeInRight 1s forwards;
}

.user-info.on {
  display: block;
}

.user-info .inner {
  border-radius: 20px;
  background: #FFF;
  padding: 0 0 0.885vw;
}

.user-info .user-sf .pro {
  height: 5.729vw;
  min-height: 90px;
  position: relative;
  background: url('/img/user/sf-pro.png') no-repeat center/100% 100%;
  display: none;
}

.user-pro .user-info .user-sf .pro {
  display: block;
}

.user-pro .user-info .user-sf .default {
  display: none;
}

.user-info .user-sf .psc {
  padding: 0.364vw 0.781vw;
}

.user-info .user-sf .ty2 {
  color: #696969;
}

.user-info .user-sf .ty3 {
  margin: auto 0 0 auto;
  text-align: right;
}

.user-info .user-sf .default {
  height: 5.729vw;
  min-height: 90px;
  position: relative;
  background: url('/img/user/sf-default.png') no-repeat center/100% 100%;
}

.user-info .avatar {
  width: 4.166vw;
  min-width: 60px;
  height: 4.166vw;
  min-height: 60px;
  border-radius: 100%;
  margin: 0 auto;
  overflow: hidden;
}

.user-info .avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.user-info .information {
  position: relative;
  z-index: 2;
  margin-top: -1.406vw;
  padding: 0 0.52vw 2.083vw;
  text-align: center;
}

.user-info .information .ktx1 {
  margin: 0.208vw 0 0.416vw;
}

.user-info .information .ktx2 span {
  color: #696969;
}

.user-info .control {
  gap: 0.416vw;
  padding: 0 0.208vw;
}

.user-info .C-btn3 {
  flex: 1;
  height: 2.083vw;
  min-height: 36px;
  margin-top: auto;
}

.user-info .C-btn3 .icon {
  width: 0.781vw;
  min-width: 12px;
  margin-right: 0.312vw;
}

.user-info .C-btn3.theme2 {
  color: #000;
}

.user-pro .user-info #joinPro {
  display: none;
}

/* ============================================
   补充手机号弹窗
   ============================================ */
.tc-supplement {
  width: max-content;
  border-radius: 20px;
  border: 2px solid #FFF;
  background: rgba(254, 254, 254, 0.86);
  box-shadow: 0 0.104vw 0.625vw 0 rgba(116, 116, 116, 0.10);
  overflow: hidden;
}

.tc-supplement .sec1 {
  padding: 0 0 0 1.25vw;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 2;
}

.tc-supplement .tc-t1 {
  color: #696969;
}

.tc-supplement .tc-close {
  width: 3.645vw;
  height: 2.5vw;
}

.tc-supplement .tc-close .icon {
  width: 0.781vw;
}

.tc-supplement .you {
  width: 22.916vw;
  min-width: 300px;
  padding: 7.291vw 0;
  border: 2px solid #FFF;
  box-shadow: 0 0.189vw 0.71vw 0 rgba(0, 0, 0, 0.10);
  position: relative;
}

.tc-supplement .blur-radio1 {
  right: 0;
  top: 0;
  transform: translate(50%, -50%);
}

.tc-supplement .blur-radio2 {
  left: 0;
  bottom: 0;
  transform: translate(-50%, 50%);
}

/* ============================================
   鼠标特效
   ============================================ */
.cursor {
  pointer-events: none;
}

.cursor__ball--big {
  opacity: 0;
}

.cursor__ball--small {
  opacity: 0;
}

.cursor__ball {
  position: fixed;
  top: 0;
  left: 0;
  mix-blend-mode: difference;
  z-index: 1000;
}

.cursor__ball circle {
  fill: #f7f8fa;
}

/* ============================================
   Alert 弹窗
   ============================================ */
.C-Alert {
  background: rgba(77, 77, 77, 0.39);
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 100;
  display: flex;
  justify-content: center;
  align-items: center;
}

.C-Alert .alertPop {
  position: relative;
  width: 530px;
  max-width: 90%;
  padding: 20px;
  border-radius: 30px;
  border: 2px solid #FFF;
  background: rgba(255, 255, 255, 0.11);
  box-shadow: 0 4px 15px 0 rgba(0, 0, 0, 0.10);
  color: #000;
}

.C-Alert .alertPop .alert-content {
  border-radius: 20px;
  border: 1px solid rgba(184, 221, 255, 0.08);
  background: #FFF;
  position: relative;
  padding: 72px 0 66px;
  overflow: hidden;
}

.C-Alert .alertPop .alert-content * {
  position: relative;
  z-index: 5;
}

.C-Alert .alertPop .close {
  width: 36px;
  height: 36px;
  background: url('/img/close.svg') no-repeat center center/contain;
  position: absolute;
  top: 12px;
  right: 12px;
  cursor: pointer;
}

.C-Alert .alertPop .tips {
  font-size: 38px;
  text-align: center;
}

.C-Alert .alertPop .desc {
  font-size: 20px;
  line-height: 2;
  margin-top: 12px;
  text-align: center;
}

.C-Alert .alertPop .btn {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  margin: 24px auto 0;
  text-align: center;
  background: #fff;
  cursor: pointer;
  user-select: none;
  font-size: 20px;
  border-radius: 100px;
  border: 1px solid #070707;
  width: 330px;
  height: 56px;
}

.C-Alert .alertPop .btn.hide {
  display: none;
}

.C-Alert .alert-content::before {
  content: '';
  display: block;
  width: 361px;
  height: 373px;
  border-radius: 373px;
  background: #D8FFA7;
  filter: blur(50px);
  position: absolute;
  top: -160px;
  right: -113px;
  z-index: 0;
  animation: float2 2s ease infinite;
}

.C-Alert .alert-content::after {
  content: '';
  display: block;
  width: 404px;
  height: 300px;
  border-radius: 373px;
  background: #CFFF93;
  filter: blur(50px);
  position: absolute;
  bottom: -50%;
  left: -50%;
  z-index: 0;
  animation: float 3s ease infinite;
}

@keyframes float2 {
  0% { transform: translate(0, 0); }
  40% { transform: translate(-100px, -50px); }
  80% { transform: translate(50px, 50px); }
  100% { transform: translate(0, 0); }
}

@keyframes float {
  0% { transform: translate(0, 0); }
  40% { transform: translate(-50px, -50px); }
  80% { transform: translate(50px, 50px); }
  100% { transform: translate(0, 0); }
}

/* ============================================
   移动端响应式
   ============================================ */
@media screen and (max-width: 768px) {
  /* 字体大小调整 */
  .f_12 { font-size: 12px; }
  .f_14 { font-size: 12px; }
  .f_16 { font-size: 14px; }
  .f_18 { font-size: 16px; }
  .f_20 { font-size: 16px; }
  .f_22 { font-size: 16px; }
  .f_24 { font-size: 16px; }
  .f_30 { font-size: 18px; }
  .f_32 { font-size: 20px; }
  .f_40 { font-size: 22px; }
  .f_46 { font-size: 24px; }
  .f_80 { font-size: 32px; }

  /* 显示控制 */
  .pc { display: none !important; }
  .mob { display: block !important; }
  .mob-flex { display: flex !important; }

  body { min-width: 200px; }

  /* Grid 调整 */
  .grid-x2 { grid-template-columns: repeat(1, 1fr); }

  /* 蒙版 */
  .mask1 {
    width: 100%;
    height: 100%;
    backdrop-filter: blur(30px);
  }

  /* 登录弹窗 */
  .tc-layout {
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
  }

  .tc-login {
    width: 95%;
    border-radius: 20px;
    border: 2px solid #FFF;
  }

  .tc-login .sec1 {
    padding: 0 0 0 20px;
    border-bottom: 2px solid #fff;
  }

  .tc-login .tc-close {
    width: 70px;
    height: 48px;
  }

  .tc-login .tc-close .icon {
    width: 15px;
  }

  .tc-login .sec2 {
    padding: 20px 20px;
  }

  .tc-login .sec2 .zuo {
    padding: 40px 20px;
    display: none;
  }

  .tc-login .sec2 .you {
    width: 100%;
    border: none;
    background: none;
    box-shadow: none;
  }

  .tc-login .Eform2 .t5,
  .tc-login .Eform2 .t6 {
    display: none;
  }

  /* 表单 */
  .Eform2 {
    width: 100%;
  }

  .Eform2 .t6 {
    margin: 10px 0 26px;
  }

  .Eform2 .Eform-itme-input {
    margin-bottom: 10px;
  }

  .Eform2 .Eform-itme-input input {
    width: 100%;
    height: 32px;
    border-radius: 8px;
  }

  .Eform2 .getcode {
    width: 100px;
    height: 32px;
    border-radius: 8px;
  }

  .Eform2 .C-btn3 {
    width: 100%;
    height: 32px;
    margin-top: 22px;
  }

  .Eform2 .t7 {
    margin: 24px auto;
  }

  .Eform2 .t7::before {
    top: 50%;
    transform: translate(0, -50%);
    width: 100%;
  }

  .Eform2 .t7 span {
    padding: 0 5px;
  }

  /* 按钮 */
  .C-btn3 {
    display: inline-flex;
    flex-wrap: wrap;
    border-radius: 50px;
    min-height: 32px;
  }

  /* 已登录显示 */
  .loggedbox {
    position: absolute;
    right: 5px;
    top: 10px;
  }

  .loggedbox .tc-close {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
  }

  .logged-simple {
    padding: 6px 6px;
    border-radius: 50px;
    border: 1px solid #000;
  }

  .logged-simple .icon {
    width: 26px;
    border-radius: 100%;
    margin-right: 0;
  }

  .logged-simple p {
    width: 80px;
    display: none;
  }

  .user-pro .logged-simple {
    background-size: cover;
  }

  /* 用户信息面板 */
  .user-info {
    right: 5px;
    top: 60px;
    width: 330px;
    max-width: 95%;
    min-width: auto;
  }

  .user-info .inner {
    border-radius: 20px;
    padding: 0 0 17px;
  }

  .user-info .user-sf .pro,
  .user-info .user-sf .default {
    height: 110px;
    min-height: auto;
  }

  .user-info .user-sf .psc {
    padding: 7px 15px;
  }

  .user-info .avatar {
    width: 80px;
    height: 80px;
    min-width: auto;
    min-height: auto;
    border-radius: 100%;
  }

  .user-info .information {
    margin-top: -27px;
    padding: 0 10px 40px;
  }

  .user-info .information .ktx1 {
    margin: 4px 0 8px;
  }

  .user-info .control {
    gap: 8px;
    padding: 0 4px;
  }

  .user-info .C-btn3 {
    flex: 1;
    height: 40px;
    min-height: auto;
  }

  .user-info .C-btn3 .icon {
    width: 15px;
    min-width: auto;
    margin-right: 6px;
  }

  /* Alert 弹窗 */
  .C-Alert .alertPop {
    width: 295px;
    max-width: 90%;
    padding: 10px;
    border-radius: 15px;
    border: 2px solid #FFF;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.10);
  }

  .C-Alert .alertPop .alert-content {
    border-radius: 10px;
    border: 1px solid rgba(184, 221, 255, 0.08);
    padding: 36px 0 33px;
  }

  .C-Alert .alertPop .close {
    width: 18px;
    height: 18px;
    top: 6px;
    right: 6px;
  }

  .C-Alert .alertPop .tips {
    font-size: 24px;
  }

  .C-Alert .alertPop .desc {
    font-size: 15px;
    margin-top: 6px;
  }

  .C-Alert .alertPop .btn {
    margin-top: 12px;
    font-size: 15px;
    border-radius: 50px;
    border: 1px solid #070707;
    width: 165px;
    height: 32px;
  }

  .C-Alert .alert-content::before {
    width: 181px;
    height: 187px;
    border-radius: 187px;
    filter: blur(25px);
    top: -80px;
    right: -57px;
  }

  .C-Alert .alert-content::after {
    width: 202px;
    height: 150px;
    border-radius: 187px;
    filter: blur(25px);
    bottom: -50%;
    left: -50%;
  }
}

/* ============================================
   用户下拉菜单
   ============================================ */
.user-dropdown {
  position: relative;
}

.user-dropdown-trigger {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.2s ease;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.user-dropdown-trigger:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
}

.user-dropdown .user-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  overflow: hidden;
}

.user-dropdown .user-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.user-dropdown .user-name {
  font-size: 14px;
  color: #fff;
  max-width: 100px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.user-dropdown .dropdown-arrow {
  width: 16px;
  height: 16px;
  color: rgba(255, 255, 255, 0.6);
  transition: transform 0.2s ease;
}

.user-dropdown.active .dropdown-arrow {
  transform: rotate(180deg);
}

.user-dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 180px;
  background: #1a1a1a;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.2s ease;
  z-index: 1000;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.user-dropdown.active .user-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.user-dropdown-menu .dropdown-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 14px;
  transition: all 0.15s ease;
}

.user-dropdown-menu .dropdown-item:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.user-dropdown-menu .dropdown-item svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.user-dropdown-menu .dropdown-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
  margin: 8px 0;
}

.user-dropdown-menu .dropdown-item.logout-btn {
  color: rgba(255, 100, 100, 0.8);
}

.user-dropdown-menu .dropdown-item.logout-btn:hover {
  color: #ff6b6b;
  background: rgba(255, 100, 100, 0.1);
}

/* 积分与用户下拉框间距 */
.right .user-credits {
  margin-right: 16px;
}
.header-right .user-credits {
  margin-right: 16px;
}

/* ============================================
   VIP 会员徽章
   ============================================ */
.user-dropdown .user-avatar {
  position: relative;
}

/* 导航栏独立VIP徽章 - 位于积分和头像之间 */
a.nav-vip-badge,
.nav-vip-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px 10px;
  background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
  color: #1a1a1a;
  font-size: 12px;
  font-weight: bold;
  border-radius: 4px;
  margin: 0 12px;
  box-shadow: 0 2px 8px rgba(255, 165, 0, 0.4);
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
}

a.nav-vip-badge:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(255, 165, 0, 0.5);
}

/* 未绑定VIP - 灰色样式 */
.nav-vip-badge.inactive {
  background: linear-gradient(135deg, #666 0%, #444 100%);
  color: rgba(255, 255, 255, 0.6);
  box-shadow: none;
  opacity: 0.7;
}

.nav-vip-badge.inactive:hover {
  opacity: 1;
  background: linear-gradient(135deg, #777 0%, #555 100%);
}

/* ============================================
   新版积分+会员+充值按钮组件
   ============================================ */
.nav-credits-vip-wrapper {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  margin-left: 16px;
  margin-right: 16px;
}

.nav-credits-vip-group {
  display: inline-flex;
  align-items: center;
  gap: 0;
  background: rgba(30, 30, 35, 0.8);
  border: 1px solid rgba(201, 255, 133, 0.3);
  border-radius: 24px;
  padding: 8px 16px;
  text-decoration: none;
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.nav-credits-vip-group:hover {
  border-color: rgba(201, 255, 133, 0.6);
  background: rgba(30, 30, 35, 0.95);
}

.nav-credits-vip-group .credits-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-right: 8px;
}

.nav-credits-vip-group .credits-num {
  color: #c9ff85;
  font-size: 14px;
  font-weight: 600;
  margin-right: 12px;
}

.nav-credits-vip-group .credits-divider {
  color: rgba(255, 255, 255, 0.3);
  font-size: 14px;
  margin-right: 12px;
}

.nav-credits-vip-group .vip-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #c9ff85;
  font-size: 13px;
  font-weight: 500;
}

.nav-credits-vip-group .vip-label .vip-icon {
  width: 16px;
  height: 16px;
}

.nav-credits-vip-wrapper .recharge-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 20px;
  background: linear-gradient(135deg, #c9ff85 0%, #7fff00 100%);
  color: #0a0a0f;
  font-size: 13px;
  font-weight: 600;
  border-radius: 20px;
  text-decoration: none;
  transition: all 0.2s ease;
}

.nav-credits-vip-wrapper .recharge-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(201, 255, 133, 0.4);
}

/* 非VIP会员样式 */
.nav-credits-vip-group .vip-label.inactive {
  color: #666;
}

.nav-credits-vip-group .vip-label.inactive .vip-icon {
  filter: grayscale(1);
}