* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "PingFang SC", "Microsoft YaHei", "微软雅黑", sans-serif;
  background: linear-gradient(180deg, #c8e2f8 0%, #d8eeff 40%, #e8f4ff 100%);
  background-attachment: fixed;
  color: #1a3050;
  -webkit-font-smoothing: antialiased;
}

body.list-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
body.list-page .footer { margin-top: auto; }

body.show-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
body.show-page .footer { margin-top: auto; }

/* ── 参考页栏目导航 ── */
.m-ref-nav {
  margin: 8px 10px 0;
  background: rgba(255,255,255,0.75);
  border: 1px solid rgba(0,140,220,0.25);
  overflow: hidden;
  padding: 0 8px;
  backdrop-filter: blur(4px);
}

.m-ref-nav__row {
  display: grid;
  grid-template-columns: repeat(4, 1fr) 28px;
  align-items: center;
}

.m-ref-nav__item {
  width: 100%;
  height: 40px;
  line-height: 40px;
  padding: 0;
  text-align: center;
  color: #1a6ab0;
  font-size: 13px;
  white-space: nowrap;
}

.m-ref-nav__toggle {
  flex: 0 0 auto;
  width: 28px; height: 40px;
  border: none;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.m-ref-nav__arrow {
  width: 8px; height: 8px;
  border-right: 1.5px solid #1a6ab0;
  border-bottom: 1.5px solid #1a6ab0;
  transform: rotate(45deg);
  margin-top: -4px;
  transition: transform 0.2s ease;
}

.m-ref-nav__toggle--up .m-ref-nav__arrow {
  transform: rotate(-135deg);
  margin-top: 4px;
}

.m-ref-nav__more {
  display: none;
  grid-template-columns: repeat(4, 1fr) 28px;
  align-items: center;
  border-top: 1px solid rgba(0,140,220,0.15);
}

.m-ref-nav--open .m-ref-nav__more { display: grid; }
.m-ref-nav__more .m-ref-nav__item { width: 100%; padding: 0; text-align: center; }
.m-ref-nav__item:active { background: rgba(0,140,220,0.1); color: #0a5a9a; }
.m-ref-nav__toggle--up { display: none; }
.m-ref-nav--open .m-ref-nav__toggle--down { display: none; }
.m-ref-nav--open .m-ref-nav__toggle--up { display: flex; }

.m-breadcrumb {
  background: rgba(255,255,255,0.7);
  border-bottom: 1px solid rgba(0,140,220,0.2);
  padding: 9px 12px;
  font-size: 12px;
  color: #6a8ab0;
  line-height: 1.5;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.m-breadcrumb a { color: #6a8ab0; }

a { text-decoration: none; color: inherit; }
a:active { opacity: 0.75; }
img { max-width: 100%; display: block; }
.container { padding: 0 12px; }

/* 顶部导航：布局与尺寸对齐 wuyou one（60px 栏高、整图 logo 放大）；背景保持 wy 浅蓝条，与下方白底导航衔接 */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  min-height: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0;
  padding: 0 env(safe-area-inset-right, 0px) 0 env(safe-area-inset-left, 0px);
  background: linear-gradient(180deg, #0a5aaa 0%, #1472c8 52%, #1a88dc 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: 0 2px 10px rgba(10, 90, 170, 0.28);
}

.header-logo {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex: 1 1 auto;
  min-width: 0;
  margin: 0;
  padding: 0;
}

.header-logo a {
  display: block;
  margin: 0;
  padding: 0;
  line-height: 0;
}

/* 与 wuyou 一致：顶栏 60px 内整图尽量大，左对齐避免龙标与标语挤在一起 */
.header-logo__img {
  width: auto;
  height: auto;
  max-height: 60px;
  max-width: min(86vw, 420px);
  object-fit: contain;
  object-position: left center;
  margin-left: -12px;
  margin-right: 0;
  border-radius: 0;
  box-shadow: none;
  display: block;
}

.header-logo__text {
  font-size: 19px;
  font-weight: 700;
  letter-spacing: 2px;
  color: #fff;
  text-shadow: 0 1px 4px rgba(0, 40, 100, 0.35);
}

.header-logo__sub {
  font-size: 11px;
  color: rgba(230, 244, 255, 0.88);
  letter-spacing: 1px;
}

/* 下载按钮尺寸、字重与 wuyou one 一致 */
.header-btn {
  flex-shrink: 0;
  margin-left: auto;
  margin-right: 8px;
  align-self: center;
  padding: 8px 14px;
  font-size: 13px;
  line-height: 1.25;
  border-radius: 999px;
  background: linear-gradient(180deg, #ffe8b8, #d28c22);
  color: #3b1f0e;
  box-shadow: 0 0 10px rgba(255, 217, 140, 0.45);
  font-weight: 600;
  white-space: nowrap;
  -webkit-tap-highlight-color: transparent;
}

.header-btn:active {
  transform: scale(0.97);
}

.header-placeholder {
  height: 60px;
}

/* ── 顶部轮播 ── */
.hero { position: relative; }

.hero-swiper {
  overflow: hidden;
  position: relative;
}

.hero-swiper .swiper-wrapper {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.hero-swiper .swiper-slide { flex-shrink: 0; width: 100%; }
.hero-swiper .swiper-slide a { display: block; width: 100%; }
.hero-swiper .swiper-slide img { display: block; width: 100%; height: auto; }

.hero-swiper .swiper-pagination {
  position: absolute;
  left: 0; right: 0; bottom: 8px;
  display: flex;
  justify-content: center;
  gap: 5px;
}

.hero-swiper .swiper-pagination-bullet {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
}

.hero-swiper .swiper-pagination-bullet-active {
  background: #1472c8;
  width: 18px;
  border-radius: 3px;
}

.hero-age-badge {
  position: absolute;
  right: 8px; bottom: 10px;
  width: 44px; height: auto;
  display: block;
  z-index: 3;
  pointer-events: none;
}

/* ── 最新新区条 ── */
.latest-zone {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 10px 10px 0;
  padding: 3px 12px;
  background: linear-gradient(180deg, #1a82d8 0%, #0f6abf 55%, #0a52a0 100%);
  color: #fff;
  text-decoration: none;
  border: none;
  border-bottom: 1px solid rgba(0,0,0,0.15);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.2);
}

.latest-zone__badge {
  flex: 0 0 auto;
  padding: 3px 10px;
  border-radius: 14px;
  background: linear-gradient(180deg, #ff7a6e 0%, #f04d42 45%, #d03028 100%);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: 0.5px;
  white-space: nowrap;
  box-shadow: 0 1px 4px rgba(0,0,0,0.25), inset 0 1px 0 rgba(255,255,255,0.3);
}

.latest-zone__title {
  flex: 1 1 auto;
  min-width: 0;
  font-size: 13px;
  color: #fff;
  font-weight: 600;
  line-height: 1.4;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

.latest-zone:active {
  background: linear-gradient(180deg, #0f6abf 0%, #0a52a0 55%, #083d7a 100%);
}

/* ── 功能导航 ── */
.nav-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: 8px 10px 0;
  background: rgba(255,255,255,0.55);
  border: 1px solid rgba(100,170,230,0.35);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(20,80,180,0.1);
}

.nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 16px 0 12px;
  background: transparent;
  transition: background 0.1s;
  position: relative;
}

.nav-item:nth-child(n+5) { border-top: 1px solid rgba(100,170,230,0.2); }
.nav-item:not(:nth-child(4n)) { border-right: 1px solid rgba(100,170,230,0.2); }


.nav-item__icon {
  width: 50px; height: 50px;
  margin-bottom: 7px;
  border-radius: 50%;
  background: linear-gradient(145deg, #2a9ae8 0%, #1472c8 50%, #0a52a0 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  box-shadow: 0 4px 10px rgba(20,114,200,0.4), inset 0 2px 0 rgba(255,255,255,0.35), inset 0 -2px 0 rgba(0,0,0,0.12);
}

.nav-item__icon-img {
  width: 26px; height: 26px;
  display: block;
  filter: brightness(0) invert(1);
}

.nav-item__text {
  font-size: 13px;
  color: #333;
  font-weight: 500;
  white-space: nowrap;
  letter-spacing: 0.5px;
}

.nav-item:active {
  background: rgba(20,114,200,0.08);
}

.nav-item:active .nav-item__icon {
  box-shadow: 0 2px 6px rgba(20,114,200,0.35);
  transform: scale(0.95);
}

/* ── 公共板块 ── */
.section { padding: 14px 10px 6px; }

.section__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.section__title {
  font-size: 15px;
  font-weight: 700;
  position: relative;
  padding-left: 10px;
  color: #1a5a9a;
  letter-spacing: 1px;
}

.section__title::before {
  content: "";
  position: absolute;
  left: 0; top: 50%;
  width: 3px; height: 75%;
  transform: translateY(-50%);
  background: #1472c8;
}

.section__more {
  font-size: 14px;
  color: #5a90c8;
  font-weight: 500;
}

/* 首页板块标题居中 */
body.home-page .section__header {
  position: relative;
  justify-content: center;
  margin-bottom: 14px;
}

body.home-page .section__title {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 700;
  color: #0a52a0;
  letter-spacing: 4px;
  padding: 4px 28px;
  text-align: center;
  border-top: 1px solid rgba(20,114,200,0.5);
  border-bottom: 1px solid rgba(20,114,200,0.5);
  position: relative;
}

body.home-page .section__title::before {
  left: -52px;
  width: 42px;
  height: 1px;
  border-radius: 0;
  background: linear-gradient(90deg, transparent, #1472c8);
  top: 50%;
  transform: translateY(-50%);
}

body.home-page .section__title::after {
  content: "";
  position: absolute;
  right: -52px; top: 50%;
  width: 42px; height: 1px;
  transform: translateY(-50%);
  background: linear-gradient(90deg, #1472c8, transparent);
}

body.home-page .section__more {
  position: absolute;
  right: 0; top: 50%;
  transform: translateY(-50%);
  color: #5a90c8;
}

/* 卡片 */
.card {
  border-radius: 0;
  background: rgba(255,255,255,0.6);
  padding: 10px 12px;
  border: 1px solid rgba(100,170,230,0.3);
}

/* ── 头条新闻 ── */
.news-headline {
  display: block;
  margin: 6px 0 10px;
  padding: 10px 12px;
  background: rgba(220,240,255,0.5);
  border: 1px solid rgba(100,170,230,0.3);
  text-decoration: none;
  overflow: hidden;
  text-align: center;
}

.news-headline__label {
  flex-shrink: 0;
  padding: 1px 6px;
  border-radius: 0;
  background: #1472c8;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 1px;
}

.news-headline__title {
  flex: 1;
  font-size: 13px;
  color: #cc0000;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.5;
  text-align: center;
}

.news-headline:active { background: rgba(0,140,220,0.08); }

/* ── 新闻板块 ── */
.news-tabs {
  display: flex;
  border-bottom: 1px solid rgba(0,140,220,0.25);
  margin-bottom: 4px;
}

.news-tab {
  flex: 1;
  min-height: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: #5a90c8;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  letter-spacing: 0.03em;
}

.news-tab--active {
  color: #063d78;
  font-weight: 700;
  border-bottom-color: #1472c8;
}

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

.news-item {
  display: flex;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid rgba(0,140,220,0.12);
  font-size: 14px;
  color: #2a3a5a;
  gap: 8px;
}

.news-item:last-child { border-bottom: none; }

.news-item__tag {
  flex-shrink: 0;
  min-width: 34px;
  padding: 2px 8px;
  text-align: center;
  font-size: 13px;
  color: #fff;
  border-radius: 0;
  background: #1472c8;
  line-height: 1.45;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.news-item__title {
  flex: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 13px;
  color: #2a3a5a;
  line-height: 1.4;
}

.news-item__date {
  flex-shrink: 0;
  color: #9ab0cc;
  font-size: 11px;
  white-space: nowrap;
}

.news-panel { display: none; }
.news-panel--active { display: block; }

/* 游戏资料列表页：子栏目入口（与整站浅蓝卡片风格统一） */
.game-subcats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin: 2px 0 6px;
  padding: 4px 2px 12px;
  border-bottom: 1px dashed rgba(0, 140, 220, 0.18);
}

.game-subcats__cell {
  min-width: 0;
  min-height: 36px;
}

.game-subcats__item {
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 36px;
  padding: 6px 8px;
  text-align: center;
  text-decoration: none;
  color: inherit;
  border-radius: 0;
  position: relative;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(100, 170, 230, 0.35);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    0 1px 0 rgba(0, 100, 180, 0.06),
    0 4px 12px rgba(20, 114, 200, 0.08);
  -webkit-tap-highlight-color: transparent;
  transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
}

.game-subcats__item::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(20, 114, 200, 0.35), transparent);
  opacity: 0.9;
  pointer-events: none;
}

.game-subcats__item::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.25);
  pointer-events: none;
}

.game-subcats__text {
  position: relative;
  z-index: 1;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: 0.03em;
  color: #0a52a0;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.6);
}

.game-subcats__cell:nth-child(1) .game-subcats__item { border-left: 3px solid #1472c8; }
.game-subcats__cell:nth-child(2) .game-subcats__item { border-left: 3px solid #1a8fd4; }
.game-subcats__cell:nth-child(3) .game-subcats__item { border-left: 3px solid #0d7a9e; }
.game-subcats__cell:nth-child(4) .game-subcats__item { border-left: 3px solid #2a9d8f; }
.game-subcats__cell:nth-child(5) .game-subcats__item { border-left: 3px solid #1565c0; }
.game-subcats__cell:nth-child(6) .game-subcats__item { border-left: 3px solid #5c6bc0; }
.game-subcats__cell:nth-child(7) .game-subcats__item { border-left: 3px solid #00838f; }
.game-subcats__cell:nth-child(8) .game-subcats__item { border-left: 3px solid #0277bd; }

.game-subcats__item:active {
  transform: scale(0.98);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.5),
    0 2px 8px rgba(20, 114, 200, 0.18);
  border-color: rgba(20, 114, 200, 0.45);
}

.game-subcats__item:active .game-subcats__text {
  color: #063d78;
}

@media (min-width: 380px) {
  .game-subcats { gap: 9px; }
  .game-subcats__item {
    min-height: 38px;
    padding: 7px 10px;
  }
  .game-subcats__text { font-size: 14px; }
}

/* ── 游戏资料 ── */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 6px;
}

.data-item {
  overflow: hidden;
  background: rgba(255,255,255,0.6);
  border: 1px solid rgba(100,170,230,0.3);
  min-width: 0;
}

.data-item__thumb {
  height: 160px;
  overflow: hidden;
  background: #c8dff0;
}

.data-item__thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.data-item__body {
  padding: 8px 10px;
  font-size: 14px;
  color: #1a5a9a;
  text-align: center;
  line-height: 1.45;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  border-top: 1px solid rgba(0,140,220,0.15);
  font-weight: 600;
}

/* ── 成长攻略 ── */
.guide-list { list-style: none; padding: 0; margin: 0; }

.guide-item {
  padding: 10px 0 10px 16px;
  border-bottom: 1px solid rgba(0,140,220,0.12);
  font-size: 13px;
  color: #2a3a5a;
  position: relative;
}

.guide-item::before {
  content: "";
  position: absolute;
  left: 0; top: 50%;
  transform: translateY(-50%) rotate(45deg);
  width: 5px; height: 5px;
  background: #1472c8;
}

.guide-item:last-child { border-bottom: none; }

/* ── 职业展示 ── */
.job-tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin: 0 10px 8px;
  border: 1px solid rgba(0,140,220,0.3);
  overflow: hidden;
}

.job-tab {
  height: 32px;
  border-radius: 0;
  border: none;
  border-right: 1px solid rgba(0,140,220,0.2);
  background: rgba(255,255,255,0.7);
  color: #7aaad0;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1px;
}

.job-tab:last-child { border-right: none; }

.job-tab--active {
  background: linear-gradient(180deg, #1a82d8, #0a5aaa);
  color: #fff;
  font-weight: 700;
}

.job-tab:active { opacity: 0.85; }

.job-swiper {
  overflow: hidden;
  position: relative;
  border: 1px solid rgba(0,140,220,0.25);
  margin: 0 10px;
}

.job-swiper .swiper-wrapper {
  display: flex;
  transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.job-swiper .swiper-slide { flex-shrink: 0; width: 100%; }

.job-slide { position: relative; background: #c8dff0; }
.job-slide__img { width: 100%; }

.job-slide__tag {
  position: absolute;
  left: 8px; bottom: 8px;
  padding: 3px 10px;
  font-size: 11px;
  border-radius: 0;
  background: rgba(10,90,170,0.88);
  color: #fff;
  display: none;
  letter-spacing: 1px;
}

.job-swiper .swiper-pagination {
  position: absolute;
  left: 0; right: 0; bottom: 8px;
  display: flex;
  justify-content: center;
  gap: 5px;
}

.job-swiper .swiper-pagination-bullet {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
}

.job-swiper .swiper-pagination-bullet-active {
  background: #1472c8;
  width: 16px;
  border-radius: 2px;
}

/* ── 游戏视频 ── */
.video-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 6px;
}

.video-item {
  overflow: hidden;
  background: rgba(255,255,255,0.6);
  color: #1a3050;
  border: 1px solid rgba(100,170,230,0.3);
}

.video-item__thumb {
  position: relative;
  height: 160px;
  overflow: hidden;
  background: #c8dff0;
}

.video-item__thumb::after { content: none; }

.video-item__play {
  position: absolute;
  left: 50%; top: 50%;
  width: 41px !important; height: 41px !important;
  transform: translate(-50%, -50%);
}

.video-item__thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}

.video-item__tag {
  position: absolute;
  left: 6px; bottom: 6px;
  padding: 1px 6px;
  border-radius: 0;
  background: rgba(10,90,170,0.88);
  font-size: 10px;
  color: #fff;
  display: none;
}

.video-item__body {
  padding: 8px 10px;
  font-size: 14px;
  color: #1a5a9a;
  line-height: 1.45;
  font-weight: 500;
  border-top: 1px solid rgba(0,140,220,0.15);
}

/* ── 版本回顾 ── */
.version-swiper {
  overflow: hidden;
  border: 1px solid rgba(0,140,220,0.25);
  position: relative;
}

.version-swiper .swiper-wrapper {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.version-swiper .swiper-slide {
  flex-shrink: 0;
  width: 170px;
}

.version-swiper .swiper-slide > a {
  display: block;
  width: 170px;
}

.version-slide {
  position: relative;
  width: 170px;
  height: 88px;
  margin: 0;
  overflow: hidden;
  background: #c8dff0;
}

.version-slide img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.version-swiper .swiper-pagination {
  position: absolute;
  left: 0; right: 0; bottom: 8px;
  display: flex;
  justify-content: center;
  gap: 5px;
}

.version-swiper .swiper-pagination-bullet {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
}

.version-swiper .swiper-pagination-bullet-active {
  background: #1472c8;
  width: 16px;
  border-radius: 2px;
}

/* ── 公众号 ── */
.qrcode-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px 10px 16px;
  background: rgba(255,255,255,0.6);
  border: 1px solid rgba(100,170,230,0.3);
}

.qrcode-img {
  width: max-content;
  max-width: none;
  margin: 0 auto 12px;
  padding: 0;
  border: none;
  background: transparent;
  overflow: visible;
}

/* 按图片文件原始像素显示，不受全局 img{max-width:100%} 拉伸 */
.qrcode-img img {
  width: auto;
  height: auto;
  max-width: none;
  max-height: none;
  display: block;
}

.qrcode-text {
  font-size: 12px;
  color: #6a8ab0;
  line-height: 1.8;
  max-width: 280px;
  text-align: left;
  letter-spacing: 0.5px;
}

/* ── 底部 ── */
.footer {
  margin-top: 20px;
  padding: 16px 16px 24px;
  font-size: 11px;
  color: rgba(255,255,255,0.65);
  background: linear-gradient(180deg, #1472c8 0%, #0a52a0 50%, #083a78 100%);
  border-top: 3px solid rgba(255,255,255,0.2);
  max-width: 100%;
  text-align: center;
  line-height: 1.9;
  letter-spacing: 0.5px;
}

.footer a { color: rgba(255,255,255,0.5); }

/* ── 返回顶部 ── */
.back-to-top {
  position: fixed;
  right: 14px; bottom: 70px;
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.7);
  outline: none;
  background: #1472c8;
  color: #fff;
  font-size: 16px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 10px rgba(20,114,200,0.5);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
  z-index: 1200;
}

.back-to-top--visible {
  opacity: 1;
  pointer-events: auto;
}

/* ── 新闻列表整行可点 ── */
a.news-item {
  display: flex;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid rgba(0,140,220,0.12);
  font-size: 14px;
  color: #2a3a5a;
  box-sizing: border-box;
  gap: 8px;
}

a.news-item:last-child { border-bottom: none; }
a.news-item .news-item__title { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

/* ── 列表页分页 ── */
.list-pagination {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 14px 4px 8px;
  font-size: 12px;
  color: #7aaad0;
}

.list-pagination__info { width: 100%; text-align: center; flex: 0 0 100%; }

.list-pagination__nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 5px;
  flex: 0 0 100%;
}

.list-pagination__link,
.list-pagination__page {
  padding: 4px 12px;
  border: 1px solid rgba(0,140,220,0.3);
  background: rgba(255,255,255,0.7);
  color: #1a5a9a;
  font-size: 12px;
}

.list-pagination__page--current {
  background: #1472c8;
  color: #fff;
  font-weight: 600;
  border-color: #1472c8;
}

.list-pagination ul {
  list-style: none;
  margin: 0; padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 5px;
}

.list-pagination li { margin: 0; color: #7aaad0; font-size: 13px; line-height: 1; }

.list-pagination li a,
.list-pagination li span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 16px;
  height: 28px;
  padding: 0 10px;
  border: 1px solid rgba(0,140,220,0.3);
  background: rgba(255,255,255,0.7);
  color: #1a5a9a;
  text-decoration: none;
  white-space: nowrap;
}

.list-pagination li a:active { color: #fff; background: #1472c8; border-color: #1472c8; }

.list-pagination li span,
.list-pagination li.active a,
.list-pagination li.active span {
  background: #1472c8;
  color: #fff;
  font-weight: 600;
  border-color: #1472c8;
}

/* ── 新闻详情 ── */
.article-card { padding: 14px 12px 18px; }

.article-back {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 12px;
  font-size: 12px;
  color: #7aaad0;
}

.article-title {
  margin: 0 0 10px;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
  color: #0a4a8a;
  letter-spacing: 0.5px;
}

.article-meta {
  display: flex;
  flex-wrap: nowrap;
  gap: 18px;
  justify-content: center;
  align-items: center;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(0,140,220,0.2);
  font-size: 12px;
  color: #9ab0cc;
  text-align: center;
}

.article-body {
  font-size: 14px;
  line-height: 1.85;
  color: #2a3a5a;
}

.article-body p { margin: 0 0 12px; }

.article-body img {
  display: block;
  max-width: 100%;
  height: auto !important;
  margin-left: auto;
  margin-right: auto;
  border: 1px solid rgba(0,140,220,0.2);
}

.article-body table { max-width: 100%; margin-left: auto; margin-right: auto; }
.article-body td img,
.article-body p img,
.article-body div img { margin-left: auto; margin-right: auto; }

.article-body h3 {
  margin: 18px 0 10px;
  font-size: 15px;
  font-weight: 700;
  color: #0a5aaa;
  line-height: 1.4;
  padding-left: 8px;
  border-left: 3px solid #1472c8;
}

.article-body h3:first-child { margin-top: 0; }
.article-body a { color: #1472c8; text-decoration: underline; text-underline-offset: 2px; }
.article-body ul { margin: 0 0 12px; padding-left: 1.2em; }
.article-body li { margin-bottom: 6px; }

.article-body .down_cont #wei_update_time,
.article-body .down_cont #wei_game_size,
.article-body .down_cont #all_update_time,
.article-body .down_cont #all_game_size { color: #2a3a5a !important; }

.article-end {
  margin-top: 20px;
  padding-top: 12px;
  border-top: 1px solid rgba(0,140,220,0.2);
  font-size: 12px;
  color: #9ab0cc;
}

.article-nav {
  display: grid;
  grid-template-columns: 1fr;
  gap: 6px;
  margin-top: 14px;
}

.article-nav__item {
  display: block;
  padding: 10px 12px;
  border: 1px solid rgba(0,140,220,0.2);
  background: rgba(255,255,255,0.7);
  color: #2a3a5a;
  text-decoration: none;
}

.article-nav__item:active { background: rgba(0,140,220,0.08); }

.article-nav__label {
  display: block;
  margin-bottom: 4px;
  font-size: 11px;
  color: #9ab0cc;
  letter-spacing: 0.5px;
}

.article-nav__title {
  display: block;
  font-size: 13px;
  line-height: 1.5;
  color: #1472c8;
  overflow-wrap: break-word;
  word-break: break-word;
}

.article-nav__title a { color: inherit; text-decoration: none; }

/* ── 下载页样式 ── */
.article-body .down_num,
.article-body #down_num {
  display: block;
  text-align: center;
  font-size: 40px;
  font-weight: 700;
  color: #1472c8;
  letter-spacing: 4px;
  line-height: 1.3;
  margin: 10px 0;
}

.article-body .down_num span,
.article-body #down_num span { display: inline-block; color: #1472c8; }

.article-body .down_title,
.article-body .down-title {
  text-align: center; font-size: 13px; color: #7aaad0; margin: 6px 0 12px;
}

.article-body .down_cont,
.article-body .down-cont {
  font-size: 13px; color: #7aaad0; text-align: center; margin: 10px 0 14px; line-height: 1.8;
}

.article-body .down_cont span,
.article-body .down-cont span { color: #2a3a5a; }

.article-body .xiazai a,
.article-body .down_btn a,
.article-body .down-btn a,
.article-body a.xiazai,
.article-body a.down_btn {
  display: block;
  width: 80%;
  max-width: 280px;
  margin: 10px auto;
  padding: 13px 0;
  border-radius: 20px;
  background: linear-gradient(135deg, #f5c842, #e8960a) !important;
  color: #3a1a00 !important;
  font-size: 15px;
  font-weight: 700;
  text-align: center;
  text-decoration: none !important;
  box-shadow: 0 4px 16px rgba(200,120,0,0.4);
  border: none !important;
  letter-spacing: 2px;
  position: relative;
}

.article-body .xiazai a:active,
.article-body .down_btn a:active,
.article-body a.xiazai:active,
.article-body a.down_btn:active { opacity: 0.85; transform: scale(0.98); }

.article-body .xiazai a em,
.article-body .down_btn a em,
.article-body a.xiazai em,
.article-body a.down_btn em {
  position: absolute; right: 8px; top: 4px;
  font-style: normal; font-size: 10px;
  background: #1472c8; color: #fff;
  padding: 1px 5px; border-radius: 0; font-weight: 700;
}

.article-body .xiazai a i,
.article-body .down_btn a i { margin-right: 6px; font-style: normal; }

/* ── 下载页手机端适配 ── */
.article-body .download { max-width: 100%; overflow: hidden; }
.article-body .down_t1 { width: 100% !important; height: auto !important; background: none !important; text-align: center; overflow: hidden; }
.article-body .down_t1 img { max-width: 100%; height: auto; display: block; margin: 0 auto; }
.article-body .down_t1 p { position: static !important; text-align: center; }

.article-body .odd1,
.article-body .odd2 {
  display: block !important; float: none !important; width: auto !important;
  height: auto !important; margin: 4px 0 !important; text-align: center;
  font-size: 13px; color: #7aaad0; overflow: visible !important;
}

.article-body #downcount { text-align: center; white-space: nowrap; overflow: hidden; line-height: 1; padding: 8px 0; }
.article-body #downcount span { display: inline !important; white-space: nowrap; }
.article-body #downcount img { display: inline !important; vertical-align: middle; max-width: none !important; width: auto !important; height: 22px !important; }

.article-body p.center { text-align: center; clear: both; }
.article-body p.center a { display: inline-block; margin: 6px 4px; }
.article-body p.center img { display: inline-block !important; max-width: 90% !important; height: auto !important; margin: 0 auto; }

.article-body .clr20 { clear: both; display: block !important; min-height: 8px; height: auto !important; overflow: visible !important; font-size: 13px; line-height: 1.6; }

.article-body .line { clear: both; display: block; height: 1px; background: rgba(0,140,220,0.2); margin: 12px 0; overflow: hidden; }
