
/* ========= 全站紫色主题变量（本页内） ========= */
.level[data-v-77947a75]{
  --app-bg: #0a144b;
  --app-bg-2:#080e37;

  --panel: rgba(10,20,75,.92);
  --panel2: rgba(10,20,75,.62);

  --border: rgba(67,67,178,.65);
  --border2: rgba(67,67,178,.45);

  --text:#ffffff;
  --sub:#c7c9cc;

  --accent:#a7e8ff;
  --radius: 6px;

  min-height: 100vh;
  background:
    radial-gradient(120% 140% at 0% 0%, rgba(88, 53, 199, 0.35) 0%, transparent 55%),
    -webkit-gradient(linear, left top, left bottom, from(var(--app-bg)), to(var(--app-bg-2)));
  background:
    radial-gradient(120% 140% at 0% 0%, rgba(88, 53, 199, 0.35) 0%, transparent 55%),
    linear-gradient(180deg, var(--app-bg) 0%, var(--app-bg-2) 100%);
}

/* ========= 顶部：沉浸玻璃导航 ========= */
.jiangli_top[data-v-77947a75]{
  width: 100%;
  height: 52px;
  position: fixed;
  top: 0; left: 0;
  z-index: 10;

  display:-webkit-box;

  display:-ms-flexbox;

  display:flex;
  -webkit-box-align:center;
      -ms-flex-align:center;
          align-items:center;
  -webkit-box-pack:center;
      -ms-flex-pack:center;
          justify-content:center;

  background: rgba(10,20,75,.72) !important;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);

  border-bottom: 1px solid rgba(255,255,255,.06);
  -webkit-box-shadow: none;
          box-shadow: none;
}
.jiangli_top p[data-v-77947a75]{
  margin: 0;
  color: #fff !important;
  font-weight: 900;
  letter-spacing: .4px;
}
.jiangli_top .van-icon[data-v-77947a75]{
  color: var(--accent) !important;
  position: absolute;
  left: 14px;
  top: 14px;
  font-size: 22px;
  opacity: .95;
}

/* ========= 内容卡 ========= */
.level_con[data-v-77947a75]{
  width: 100%;
  overflow-x: auto;
  margin-top: 52px;
  padding: 12px 12px 18px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;

  border-radius: var(--radius);
  background:
    radial-gradient(260px 160px at 18% 0%, rgba(167,232,255,.16), transparent 62%),
    -webkit-gradient(linear, left top, left bottom, from(rgba(10,20,75,.92)), to(rgba(10,20,75,.62)));
  background:
    radial-gradient(260px 160px at 18% 0%, rgba(167,232,255,.16), transparent 62%),
    linear-gradient(180deg, rgba(10,20,75,.92), rgba(10,20,75,.62));
  border: 1px solid var(--border2);
  -webkit-box-shadow:
    0 18px 40px rgba(0,0,0,.28),
    inset 0 1px 0 rgba(255,255,255,.06);
          box-shadow:
    0 18px 40px rgba(0,0,0,.28),
    inset 0 1px 0 rgba(255,255,255,.06);
}

/* 标题区 */
.headBox[data-v-77947a75]{
  display:-webkit-box;
  display:-ms-flexbox;
  display:flex;
  -webkit-box-align:center;
      -ms-flex-align:center;
          align-items:center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column;
          flex-flow: column;
}
.title[data-v-77947a75]{
  font-size: 0.36rem;
  margin-bottom: 10px;
  text-align:center;
  width: 100%;
  color:#fff;
  font-weight: 900;
  letter-spacing: .2px;
}
.metaRow[data-v-77947a75]{
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 5px 0 15px 0;
  font-size: 12px;
  color: rgba(199,201,204,.82);
}

/* ========= 封面图：圆角6 + “固定不可点” ========= */
.detailImage[data-v-77947a75]{
  max-width: 100%;
  border-radius: var(--radius);
  display: block;
  height: auto;

  background: #fff;
  padding: 6px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: 1px solid rgba(255,255,255,.10);

  -webkit-user-drag: none;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;

  /* ✅ 即使没加事件也不会触发点击 */
  pointer-events: none;
}

/* ========= 正文图片：自适应 + 圆角6 ========= */
.content[data-v-77947a75] img{
  max-width: 100% !important;
  height: auto !important;
  display: block !important;
  border-radius: var(--radius) !important;

  /* ✅ 核心：禁止图片接收点击，避免触发 double() */
  pointer-events: none !important;

  -webkit-user-drag: none;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

/* ========= 你原来的放大模式（保留） ========= */
.level_con1[data-v-77947a75] img{
  max-width: 200% !important;
}
.level_con1[data-v-77947a75] .content img{
  max-width: 250% !important;
}


/* ========= 正文统一白底黑字（保留你原规则，按紫色UI更精致） ========= */
/* ✅ 正文容器：紫色玻璃卡（不再白底） */
.level .level_con .content{
  margin-top: 12px;
  padding: 12px 12px 14px;

  border-radius: 6px;
  border: 1px solid rgba(67,67,178,.45);
  background:
    radial-gradient(420px 220px at 18% 0%, rgba(167,232,255,.10), transparent 62%),
    rgba(10,20,75,.62);

  -webkit-box-shadow: 0 12px 26px rgba(0,0,0,.20);

          box-shadow: 0 12px 26px rgba(0,0,0,.20);
  color: rgba(255,255,255,.92);
  line-height: 1.7;
}

/* ✅ 强制正文文字变白（避免后端内容内联写黑色） */
.level .level_con .content,
.level .level_con .content *{
  color: rgba(255,255,255,.92) !important;
  background-color: transparent !important;
  background-image: none !important;
}

/* 链接颜色 */
.level .level_con .content a{
  color: #a7e8ff !important;
  text-decoration: underline;
}
.level .level_con .content [style*="background"],
.level .level_con .content [style*="background-color"],
.level .level_con .content [style*="background:#"],
.level .level_con .content [style*="background: #"],
.level .level_con .content [style*="background:rgb"],
.level .level_con .content [style*="background: rgb"],
.level .level_con .content [style*="background-color:rgb"],
.level .level_con .content [style*="background-color: rgb"]{
  background-color: #fff !important;
  background-image: none !important;
}
.level .level_con .content img{
  background: transparent !important;
  max-width: 100% !important;
  height: auto !important;
  display: block !important;
  border-radius: 6px !important;

  /* ✅ 再加一道保险：正文图片完全不可点 */
  pointer-events: none !important;
}
.level .level_con .content a{
  color: #1677ff !important; /* 你想更贴紫色主题也可换成 #a7e8ff */
  text-decoration: underline;
}


/*# sourceMappingURL=chunk-6d5140fa.05e30bd8.css.map*/