﻿/* ============================================================
   诸侯服 H5 活动页样式
   技术栈：传统 CSS，兼容老 WebView
   ============================================================ */

/* @import url('https://fonts.googleapis.com/css2?family=Noto+Sans+SC:wght@400;500;700&display=swap'); */

/* ---- 变量 ---- */
:root {
  --font-main: "Noto Sans SC", "思源黑体 CN", "Source Han Sans CN", "PingFang SC", "Microsoft YaHei", sans-serif;
  --color-bg: #220606;
  --color-panel: #21100c;
  --color-gold: #d9a83a;
  --color-gold-light: #ffd980;
  --color-red: #d94a38;
  --color-green: #42b883;
  --text-main: #f6ead2;
  --text-sub: #bcae91;
  --radius-sm: 4px;
  --radius-md: 8px;
  --safe-bottom: env(safe-area-inset-bottom, 0px);
  --nav-height: 1.33rem;
}

/* ---- 基础重置 ---- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  width: 100%;
  min-height: 100vh;
  background: var(--color-bg);
  color: var(--text-main);
  font-family: var(--font-main);
  font-size: .28rem;
  line-height: 1.5;
  -webkit-tap-highlight-color: transparent;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
}

body.sheet-open {
  overflow: hidden;
}

a {
  color: var(--color-gold);
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.is-hidden {
  display: none !important;
}

/* ---- 页面容器 ---- */
.app-wrap {
  padding-bottom: calc(var(--nav-height) + var(--safe-bottom) + .1rem);
  min-height: 100vh;
}

/* ---- 左上角状态角标（Tab2专属） ---- */
#pageInvite,
#pageRank {
  position: relative;
}

.status-badge {
  position: absolute;
  left: 0.36rem;
  top: 0.24rem;
  z-index: 10;
  pointer-events: none;
}

.badge-sprite {
  display: block;
  background-image: url('../images/status-badge.png');
  background-repeat: no-repeat;
  background-size: 2.77rem 6.74rem;
}

.badge-guest {
  width: 2.47rem;
  height: 1.47rem;
  background-position: -.15rem 0;
}

.badge-pending {
  width: 2.57rem;
  height: 1.21rem;
  background-position: -.10rem -1.51rem;
}

.badge-member {
  width: 1.71rem;
  height: 0.38rem;
  background-position: -.48rem -2.76rem;
}

.member-info-county {
  display: block;
  font-size: .35rem;
  font-weight: bold;
  text-align: left;
  margin-top: .04rem;
  background: linear-gradient(to bottom, #FBDE82, #F5C170);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.member-info-region {
  display: block;
  font-size: .22rem;
  font-weight: normal;
  color: #ffd980;
  margin-top: .02rem;   
  text-align: left;
}

.badge-rejected {
  width: 2.77rem;
  height: 1.21rem;
  background-position: 0 -3.18rem;
}

.badge-36qun {
  width: 2.37rem;
  height: 1.21rem;
  background-position: -.20rem -4.43rem;
}

.badge-login {
  width: 1.34rem;
  height: 0.51rem;
  background-position: -.71rem -5.68rem;
}

.badge-logout {
  width: 1.34rem;
  height: 0.51rem;
  background-position: -.71rem -6.23rem;
}

.btn-auth-toggle {
  position: absolute;
  right: 0.20rem;
  top: 1.20rem;
  z-index: 20;
  cursor: pointer;
  display: block;
}

.page {
  display: none;
}

.page.active {
  display: block;
}

/* 首页专属背景 */
#pageHome {
    /* background: url('../images/bg-texture.png') no-repeat center / 100% 100%; */
  min-height: 100vh;
}

/* 邀请入驻 & 排行榜页背景 */
#pageInvite,
#pageRank {
  background: url('../images/page-bg.jpg') top center / 100% auto no-repeat;
  background-color: var(--color-bg);
  min-height: 100vh;
}

.page-scroll {
  /* padding: .24rem; */
}

.page-title {
  font-size: .36rem;
  color: var(--color-gold);
  text-align: center;
  margin-bottom: .32rem;
}

/* ---- 首页头部 Hero ---- */
.home-hero {
  font-size: 0; /* 消除内联元素基线间隙 */
}

.home-hero-sticky {
  position: sticky;
  top: 0;
  z-index: 10;
  font-size: 0;
  line-height: 0;
  height: 1.25rem;
}

.btn-enter-game {
  position: absolute;
  right: .2rem;
  top: 36%;
  transform: translateY(-50%);
  background-image: url('../images/btn-sprite.png');
  background-repeat: no-repeat;
  background-size: 12.14rem 3.63rem;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  text-decoration: none;
}

.sprite-enter-game {
  width: 1.83rem;
  height: .54rem;
  background-position: -8.73rem -2.96rem;
}

.home-hero-top {
  width: 100%;
  height: auto;
  display: block;
}

.home-hero-banner {
  width: 100%;
  font-size: 0;
  line-height: 0;
  margin-top: -0.40rem;
}

.home-hero-img {
  width: 100%;
  height: auto;
  display: block;
  min-height: 1.5rem;
}

/* ---- 36郡地图 ---- */
.map-wrap {
  position: relative;
  width: calc(100% - .56rem);
  margin-left: .28rem;
  margin-right: .28rem;
  aspect-ratio: 699 / 704;
  margin-top: .28rem;
  margin-bottom: .32rem;
}


.map-head-bar {
  position: absolute;
  left: 3.2%;
  right: 3.2%;
  top: 2.3%;
  z-index: 5;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  pointer-events: none;
}

.map-title-label {
  width: 2.00rem;
  height: .45rem;
  display: block;
}

.map-head-legend {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  align-items: center;
  gap: .12rem;
  color: #ffe1a0;
  font-size: .18rem;
  font-weight: 700;
  line-height: 1;
  text-shadow: 0 1px 2px rgba(0, 0, 0, .78);
}

.map-head-legend span {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  align-items: center;
  white-space: nowrap;
}

.map-head-legend img,
.legend-pin {
  width: .23rem;
  height: .23rem;
  display: inline-block;
  margin-right: .04rem;
  vertical-align: -.03rem;
}

.map-frame {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  display: block;
}

.map-terrain {
  position: absolute;
  top: 10%;
  width: 100%;
  height: auto;
  z-index: 1;
  display: block;
}

.map-pins {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 3;
  pointer-events: none;
}

.map-pin {
  position: absolute;
  transform: translate(-50%, -50%);
  pointer-events: auto;
  cursor: pointer;
}

.map-pin img {
  width: .20rem;
  height: .20rem;
  display: block;
}

.map-pin-label {
  position: absolute;
  left: 50%;
  bottom: 100%;
  transform: translateX(-50%);
  white-space: nowrap;
  font-size: .2rem;
  color: rgb(255, 224, 168);
  text-shadow: 0 1px 3px rgba(0,0,0,.8);
}

/* 左右布局：文字在圆点右侧 */
.map-pin-lr img {
  display: inline-block;
  vertical-align: middle;
}

.map-pin-lr .map-pin-label {
  position: static;
  display: inline-block;
  vertical-align: middle;
  transform: none;
  left: auto;
  bottom: auto;
  margin-bottom: 0;
  margin-left: .06rem;
}


.map-quota-bar {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0.24rem;
  z-index: 4;
  height: 0;
  padding-top: 11.862%;
  background: url('../images/map-quota-bar.png') center / 100% 100% no-repeat;
  pointer-events: none;
}

.map-quota-items {
  position: absolute;
  left: 3.8%;
  right: 3.8%;
  top: 7%;
  height: 42%;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  align-items: center;
}

.map-quota-item {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  flex: 1;
  min-width: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  align-items: center;
  text-align: center;
  line-height: 1;
}

.map-quota-item strong {
  display: block;
  min-width: 2.8em;
  color: #f7cb45;
  font-size: .32rem;
  font-weight: 700;
  letter-spacing: 0;
  text-align: center;
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
  text-shadow: 0 1px 1px rgba(0, 0, 0, .9), 0 0 .07rem rgba(255, 214, 86, .45);
}

.map-quota-item:nth-child(2) strong {
  color: #ff6542;
  text-shadow: 0 1px 1px rgba(0, 0, 0, .9), 0 0 .07rem rgba(255, 101, 58, .55);
}

.map-quota-item:nth-child(3) strong {
  color: rgb(232, 182, 90);
  text-transform: uppercase;
  line-height: 1.447;
  -webkit-transform: matrix(.97635646856113, 0, 0, .97648604263769, 0, 0);
  -ms-transform: matrix(.97635646856113, 0, 0, .97648604263769, 0, 0);
  transform: matrix(.97635646856113, 0, 0, .97648604263769, 0, 0);
}
/* ---- 玩法介绍 ---- */
.intro-card {
  position: relative;
  margin: 0 .28rem .32rem .28rem;
  background: url('../images/intro-bg.jpg') center / cover no-repeat;
  min-height: 3.4rem;
}

.intro-content {
  position: absolute;
  z-index: 1;
  left: .40rem;
  right: .40rem;
  top: 22%;
  bottom: .16rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.intro-title {
  font-size: .22rem;
  font-weight: 500;
  color: #ffc805;
  margin-bottom: .08rem;
  line-height: 1.4;
}

.intro-desc {
  font-size: .18rem;
  font-weight: 400;
  color: #cd9f5b;
  line-height: .28rem;
  margin-bottom: .08rem;
}

.intro-desc .hl {
  color: #f4c109;
  font-weight: 500;
}

.intro-sub {
  font-size: .18rem;
  font-weight: 400;
  color: #cd9f5b;
  line-height: .15rem;
}

/* ---- 玩法介绍内按钮 ---- */
.intro-btns {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .1rem;
  margin-top: .14rem;
  width: 100%;
}

.intro-btn-sprite {
  display: block;
  margin: 0 auto;
  background-image: url('../images/btn-sprite.png');
  background-repeat: no-repeat;
  background-size: 12.14rem 3.63rem;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

.sprite-buy {
  width: 5.94rem;
  height: .75rem;
  background-position: -5.98rem -2.13rem;
}

.sprite-buy-lord {
    margin-top: 0.1rem;
  width: 5.94rem;
  height: .75rem;
  background-position: 0 -2.13rem;
}

.sprite-join {
  width: 5.55rem;
  height: .63rem;
  background-position: 0 -2.96rem;
}

.sprite-reapply {
  width: 5.08rem;
  height: .98rem;
  background-position: -1.08rem 0;
}

.sprite-copy-code {
  width: 1.16rem;
  height: .47rem;
  background-position: -10.60rem -2.96rem;
}

.sprite-copy-link {
  width: 3.08rem;
  height: .62rem;
  background-position: -8.60rem -1.28rem;
}

.sprite-save-poster {
  width: 3.10rem;
  height: .62rem;
  background-position: -5.59rem -2.96rem;
}

/* ---- member 邀请码展示行 ---- */
.invite-code-row {
  display: flex;
  align-items: center;
  gap: .12rem;
  margin-bottom: .16rem;
}

.invite-code-display {
  flex: 1;
  display: flex;
  align-items: center;
  min-height: .62rem;
  padding: .10rem .20rem;
  background-image: url('../images/input-frame.png');
  background-size: 100% 100%;
  background-repeat: no-repeat;
}

.invite-code-display .code-value {
  font-size: .32rem;
  font-weight: bold;
  color: var(--color-gold-light);
  letter-spacing: .04rem;
}

.btn-sprite-sm {
  display: block;
  flex-shrink: 0;
  background-image: url('../images/btn-sprite.png');
  background-color: transparent;
  background-repeat: no-repeat;
  background-size: 12.14rem 3.63rem;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  border: none;
  outline: none;
  padding: 0;
  overflow: hidden;
  -webkit-appearance: none;
  appearance: none;
}

/* ---- member 底部双按钮 ---- */
.member-actions {
  display: flex;
  justify-content: center;
  gap: .16rem;
  margin-top: .08rem;
}

/* ---- 召回奖励区域 ---- */
.game-frame.recall-frame {
  padding: .34rem .20rem .20rem;
  background: url('../images/recall-reward-frame.png') no-repeat center / 100% 100%;
  aspect-ratio: 708 / 231;
}

.recall-frame .frame-title-gradient {
  font-size: .26rem;
  margin-bottom: .16rem;
}

.recall-reward-copy {
    position: absolute;
    left: 5.2%;
    right: 2.2%;
    bottom: 3%;
    height: 36%;
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    align-items: center;
    pointer-events: none;
    width: 88%;
}

.recall-reward-item {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 31.46%;
  flex: 0 0 31.46%;
  width: 31.46%;
  min-width: 0;
  margin: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  color: #d4a657;
  font-size: .18rem;
  font-weight: 700;
  line-height: 1.25;
  text-align: center;
  letter-spacing: 0;
}

.recall-reward-item + .recall-reward-item {
  margin-left: 2.8%;
}

.recall-reward-item em {
  display: block;
  max-width: 100%;
  font-style: normal;
  white-space: nowrap;
}
/* ---- 个人邀请奖励 ---- */
.personal-reward-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 708 / 261;
  background: url('../images/personal-reward-frame.png') no-repeat center / 100% 100%;
  margin-top: -.10rem;
}

.reward-progress {
  position: absolute;
  left: 11%;
  right: 11%;
  top: 34%;
  aspect-ratio: 547 / 30;
  background: url('../images/progress-sprite.png') no-repeat;
  background-size: 100% auto;
}

.reward-hint {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 7%;
  text-align: center;
  font-size: .22rem;
  color: #B28C5F;
}

.reward-hint span {
  color: #1adc10;
  font-weight: bold;
}

/* ---- 个人奖励：已达成徽章 ---- */
.reward-tier-badges {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  pointer-events: none; /* 不阻挡点击 */
}

/* 每个徽章绝对定位，默认隐藏 */
.tier-badge {
  position: absolute;
  top: 56%;  
  width: 12%;
  display: none; /* 默认隐藏，JS 添加 .is-achieved 后显示 */
  transform: translate(-50%, -50%);
  z-index: 2;
}

/* 5个徽章的水平位置（对应进度条 5 个节点） */
#tierBadge0 { left: 13%; }
#tierBadge1 { left: 32%; }
#tierBadge2 { left: 50%; }
#tierBadge3 { left: 68.5%; }
#tierBadge4 { left: 87%; }

/* 达成状态：显示徽章 */
.tier-badge.is-achieved {
  display: block;
}

/* ---- 区服成员 ---- */
.server-members-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 708 / 231;
  background: url('../images/server-members-frame.png') no-repeat center / 100% 100%;
  margin-top: .20rem;
}

.server-members-title {
  position: absolute;
  top: 14%;
  left: 0;
  right: 0;
  margin: 0;
  pointer-events: none;
}

.member-row {
  position: absolute;
  left: 14%;
  right: 6%;
  height: 18%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  padding-right: 0.26rem;
}

.member-row-pending {
  top: 35%;
}

.member-row-members {
  top: 63%;
}

.member-label {
  color: #fffbbc;
  font-size: .22rem;
  flex: 1;
}

.member-count-badge {
  background: #d94a38;
  color: #fff;
  font-size: .22rem;
  padding: .04rem .16rem;
  border-radius: .20rem;
  font-weight: bold;
}

.member-count {
  color: var(--text-main);
  font-size: .22rem;
}

/* ---- 成员列表弹窗 ---- */
.members-sheet-body {
  padding: .72rem .20rem .24rem;
}

.members-sheet-header {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: baseline;
  -webkit-align-items: baseline;
  align-items: baseline;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  padding: 0 .08rem .16rem;
  margin-bottom: .12rem;
  position: relative;
}

.members-sheet-header::after {
  content: '';
  position: absolute;
  left: 25%;
  right: 25%;
  bottom: 0;
  height: 1px;
  background: -webkit-linear-gradient(left, transparent, #6b3a1a, transparent);
  background: linear-gradient(left, transparent, #6b3a1a, transparent);
}

.members-sheet-title {
  font-size: .28rem;
  font-weight: 700;
  color: #D4A957;
  letter-spacing: .06rem;
}

.members-sheet-count {
  font-size: .22rem;
  color: #8c6b42;
  margin-left: .12rem;
}

/* 成员行 */
.member-list-row {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  align-items: center;
  padding: .14rem .16rem;
  margin-bottom: .04rem;
  background: #251107;
  border: 1px solid #3a1c0c;
  border-radius: .06rem;
}

.member-list-row:active {
  background: #2e1509;
}

/* 头像圆 */
.member-avatar {
  width: .48rem;
  height: .48rem;
  border-radius: 50%;
  background: #3d1209;
  border: 1px solid #6b3a1a;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  margin-right: .14rem;
}

.member-avatar-char {
  font-size: .22rem;
  font-weight: 700;
  color: #D4A957;
}

/* 昵称 */
.member-name {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  flex: 1;
  font-size: .24rem;
  color: #fff2a7;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  line-height: 1.3;
  font-weight: 500;
}

/* 积分 */
.member-score {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  font-size: .22rem;
  font-weight: 700;
  color: #f7be31;
  margin-left: .12rem;
}

/* 分页控件 */
.members-pager {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  gap: .12rem;
  padding: .24rem 0 .04rem;
}

.pager-btn {
  width: .44rem;
  height: .44rem;
  border-radius: 50%;
  border: none;
  background: #3d1209;
  color: #D4A957;
  font-size: .28rem;
  font-weight: 400;
  line-height: .44rem;
  text-align: center;
  cursor: pointer;
  -webkit-appearance: none;
  padding: 0;
}

.pager-btn:active {
  background: #4e1a0e;
}

.pager-btn.is-disabled {
  opacity: .25;
  pointer-events: none;
}

.pager-dots {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  align-items: center;
  gap: .08rem;
}

.pager-dot {
  width: .10rem;
  height: .10rem;
  border-radius: 50%;
  background: #4a2812;
  -webkit-transition: all .2s;
  transition: all .2s;
  font-size: 0;
  line-height: 0;
}

.pager-dot.is-active {
  width: .28rem;
  border-radius: .06rem;
  background: #D4A957;
}

/* ---- 按钮 ---- */
.btn {
  display: inline-block;
  padding: .2rem .4rem;
  font-size: .28rem;
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  text-align: center;
  line-height: 1.4;
  -webkit-appearance: none;
}

.btn-primary {
  background: linear-gradient(135deg, #d9a83a, #b8842a);
  color: #1a0c06;
  font-weight: bold;
}

.btn-secondary {
  background: rgba(217,168,58,.15);
  color: var(--color-gold);
  border: 1px solid var(--color-gold);
}

.btn-outline {
  background: transparent;
  color: var(--text-main);
  border: 1px solid rgba(255,255,255,.2);
}

.btn-sm {
  padding: .1rem .24rem;
  font-size: .24rem;
  background: var(--color-gold);
  color: #1a0c06;
  border-radius: var(--radius-sm);
}

.btn-block {
  display: block;
  width: 100%;
}

.btn:disabled, .btn.disabled {
  opacity: .5;
  pointer-events: none;
}

/* ---- 输入框 ---- */
.input-text {
  width: 100%;
  padding: .2rem .24rem;
  font-size: .28rem;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--radius-md);
  color: var(--text-main);
  outline: none;
  -webkit-appearance: none;
}

.input-text:focus {
  border-color: var(--color-gold);
}

/* ---- 邀请入驻页 ---- */
.invite-state {
  padding: 2.40rem 0.24rem .24rem;
}

.invite-input-wrap {
  display: flex;
  flex-direction: column;
  gap: .12rem;
  margin-bottom: .16rem;
}

.invite-alt {
  text-align: center;
  color: var(--text-sub);
  font-size: .22rem;
  color: #B28C5F;
}

.invite-alt a {
    color: #B28C5F;
    font-size: .22rem;
    font-weight: lighter;
}

/* ---- 游戏框架容器（可复用：完整边框图 + 内容撑开高度）---- */
/*
  frame-panel.png: 714 x 253
  完整边框图，包含顶部装饰条 + 深色内容区 + 底部封口
  背景图拉伸 100% 100% 跟随容器高度自适应
*/
.game-frame {
  position: relative;
  width: 100%;
  /* padding 将内容推入装饰边框内 */
  padding: .34rem .28rem .10rem;
  margin-bottom: .24rem;
  background: url('../images/frame-panel.png') no-repeat center / 100% 100%;
}

/* ---- 渐变标题（拉入 frame 红条区域）---- */
.frame-title-gradient {
  font-size: .28rem;
  font-weight: bold;
  text-align: center;
  background: linear-gradient(to bottom, #FBDE7F, #F3AD3F);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-top: -.24rem;  /* 负值拉入 frame-panel 红条区域 */
  margin-bottom: .08rem;
  line-height: 1.4;
}

.frame-subtitle {
  font-size: .22rem;
  color: #B28C5F;
  text-align: center;
  margin-bottom: .14rem;
}

/* ---- 自定义输入框（分享码框图）---- */
.input-framed {
  width: 100%;
  padding: .14rem .20rem;
  font-size: .26rem;
  color: var(--text-main);
  background-color: transparent;
  background-image: url('../images/input-frame.png');
  background-size: 100% 100%;
  background-repeat: no-repeat;
  border: none;
  outline: none;
  -webkit-appearance: none;
  text-align: left;

}

.input-framed::-webkit-input-placeholder {
  color: #CEBB9F;
}

.input-framed::placeholder {
  color: #CEBB9F;
}

/* ---- 确认入驻图片按钮 ---- */
.btn-confirm-img {
  display: block;
  width: 3.10rem;
  height: .62rem;
  margin: .04rem auto 0;
  background: url('../images/btn-sprite.png') -9.00rem 0 no-repeat;
  background-size: 12.14rem 3.63rem;
  border: none;
  cursor: pointer;
  text-indent: -9999px;
  -webkit-tap-highlight-color: transparent;
}

.btn-confirm-img:active {
  opacity: 0.82;
}

.status-card {
  text-align: center;
  padding: .6rem .32rem;
}

.status-icon {
  font-size: .8rem;
  margin-bottom: .24rem;
}

.status-card h3 {
  color: var(--color-gold);
  font-size: .34rem;
  margin-bottom: .16rem;
}

.status-card p {
  color: var(--text-sub);
  font-size: .26rem;
  margin-bottom: .08rem;
}

.text-sub {
  color: var(--text-sub);
  font-size: .24rem;
}

/* ---- 审核中状态 ---- */
.pending-review-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 707 / 551;
  background: url('../images/pending-review.png') center / 100% 100% no-repeat;
}

.pending-title-gradient {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: .40rem;
  font-weight: bold;
  text-align: center;
  background: linear-gradient(to bottom, #FBDE7F, #F3AD3F);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.4;
  z-index: 1;
  padding: 0 .20rem;
}

/* ---- 未通过状态 ---- */
.rejected-review-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 707 / 530;
  background: url('../images/rejected-review.png') center / 100% 100% no-repeat;
}

.rejected-reapply-wrap {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 8%;
  display: flex;
  justify-content: center;
  z-index: 1;
}

/* ---- 区服信息卡片 ---- */
.server-info {
  background: var(--color-panel);
  border-radius: var(--radius-md);
  padding: .32rem;
  margin-bottom: .24rem;
  text-align: center;
}

.server-info h3 {
  color: var(--color-gold);
  font-size: .28rem;
  margin-bottom: .16rem;
}

.server-name {
  font-size: .4rem;
  font-weight: bold;
  color: var(--color-gold-light);
  margin-bottom: .08rem;
}

.server-county {
  color: var(--text-sub);
  font-size: .26rem;
}

/* ---- 邀请码卡片 ---- */
.invite-code-card {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .16rem;
  background: var(--color-panel);
  border-radius: var(--radius-md);
  padding: .24rem;
  margin-bottom: .24rem;
}

.code-text {
  color: var(--color-gold-light);
  font-size: .36rem;
  font-weight: bold;
  letter-spacing: .04rem;
}

.badge {
  display: inline-block;
  min-width: .36rem;
  height: .36rem;
  line-height: .36rem;
  padding: 0 .1rem;
  font-size: .2rem;
  background: var(--color-red);
  color: #fff;
  border-radius: 10px;
  text-align: center;
  vertical-align: middle;
}

/* ---- 排行榜 ---- */
.rank-state {
  padding: 2.20rem 0.24rem .24rem;
}

.rank-board {
  width: 100%;
  aspect-ratio: 655 / 328;
  background: url('../images/rank-board.png') no-repeat center / 100% 100%;
  margin-bottom: .24rem;
}

/* ---- 我的区服进度 ---- */
.my-progress {
  position: relative;
  width: 100%;
  aspect-ratio: 682 / 161;
  background: url('../images/levelprogress.png') no-repeat center / 100% 100%;
  margin-bottom: .24rem;
}

.progress-server-name {
    position: absolute;
    left: 5%;
    top: 26%;
    font-size: .20rem;
    color: #f7be31;
    white-space: nowrap;
    font-weight: 400;
}

.progress-rank-tag {
  position: absolute;
  right: 3%;
  top: 26%;
  font-size: .18rem;
  font-weight: 400;
  color: #f7be31;
  padding: .03rem .14rem;
  white-space: nowrap;
}

.progress-stats {
    position: absolute;
    left: 4%;
    right: 2%;
    bottom: 28%;
    display: flex;
    gap: .10rem;
}

.progress-stat {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.progress-stat .stat-num {
  display: block;
  width: 100%;
  text-align: center;
  font-size: .30rem;
  font-weight: 700;
  color: #f7be31;
  line-height: 1;
}

/* ---- 区服全员奖励 ---- */
.reward-section {
  position: relative;
  width: 100%;
  aspect-ratio: 682 / 228;
  background: url('../images/server-reward-frame.png') no-repeat center / 100% 100%;
  margin-bottom: .24rem;
}

.server-reward-progress {
  position: absolute;
  left: 13%;
  right: 7%;
  top: 33%;
  aspect-ratio: 547 / 30;
  background: url('../images/progress-sprite.png') no-repeat;
  background-size: 100% auto;
}



/* ---- 排行列表 ---- */
.rank-list {
  display: flex;
  flex-direction: column;
  width: 100%;
}

/* 表头 */
.rank-header {
  display: flex;
  align-items: center;
  height: .50rem;
  padding: 0 .12rem;
  background: #3d1209;
  border: 1px solid #621a13;
  border-radius: .08rem .08rem 0 0;
  font-size: .22rem;
  color: #f0c040;
  font-weight: bold;
  margin-bottom: 0.06rem;
}

/* 数据行 */
.rank-list .rank-item {
  display: flex;
  align-items: center;
  height: .56rem;
  padding: 0 .12rem;
  font-size: .22rem;
  background: #251107;
  border: 1px solid #46210c;
  margin-bottom: .06rem;
}

.rank-item:nth-child(odd),
.rank-item:nth-child(even) {
  background: #251107;
}

.rank-item.mine {
  border: 1px solid var(--color-gold);
}

/* 排名列 */
.rank-num {
  width: .60rem;
  margin-right: .50rem;
  text-align: center;
  flex-shrink: 0;
  font-size: .28rem;
  font-weight: bold;
  color: #D4A957;
}

/* 雪碧图名次角标 */
.rank-badge {
  display: block;
  margin: 0 auto;
  background-image: url('../images/rank-badge-sprite.png');
  background-repeat: no-repeat;
  background-size: .53rem 1.44rem;
}

.rank-badge-1 {
  width: .53rem;
  height: .49rem;
  background-position: 0 0;
}

.rank-badge-2 {
  width: .48rem;
  height: .46rem;
  background-position: -.02rem -.51rem;
}

.rank-badge-3 {
  width: .44rem;
  height: .45rem;
  background-position: -.04rem -.99rem;
}

/* 郡名列 */
.rank-col-name {
  flex: 1.2;
  min-width: 0;
  color: #D4A957;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  text-align: center;
}

/* 郡主列 */
.rank-col-lord {
  flex: 1.2;
  min-width: 0;
  color: #D4A957;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  text-align: center;
}

/* 积分列 */
.rank-col-score {
  flex: 0.8;
  text-align: right;
  color: #D4A957;
  font-weight: bold;
  flex-shrink: 0;
  text-align: center;
}

/* 人数列 */
.rank-col-members {
  flex: 1;
  text-align: right;
  color: #D4A957;
    flex-shrink: 0;
  text-align: center;
}

.rank-item .rank-col-name {
    font-weight: bold;
    font-size: .23rem;
    color: #fff2a7;
}
.rank-item .rank-col-lord {
    font-size: .23rem;
    color: #fac57f;
}

.rank-item .rank-col-score {
    font-size: .23rem;
    color: #ffca4f;
}
.rank-item .rank-col-members {
    font-size: .23rem;
    color: #fff2a7;
}

/* ---- 我的奖励弹窗 ---- */
.reward-sheet-body {
  padding: .72rem .20rem .24rem;
}

/* 分区 */
.rw-section {
  margin-bottom: .24rem;
}

.rw-section-title {
  font-size: .24rem;
  font-weight: 700;
  color: #d9a83a;
  margin-bottom: .08rem;
}

.rw-section-desc {
  font-size: .20rem;
  color: #8c6b42;
  margin-bottom: .14rem;
  line-height: 1.5;
}

/* 档位列表 */
.rw-tiers {
  display: flex;
  flex-direction: column;
  gap: .08rem;
}

/* 档位行 */
.rw-tier-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .16rem .18rem;
  background: #251107;
  border: 1px solid #3a1c0c;
  border-radius: .06rem;
}

.rw-tier-reached {
  border-color: #6b4a1a;
  background: #2e1509;
}

.rw-tier-next {
  opacity: .65;
}

.rw-tier-name {
  font-size: .22rem;
  font-weight: 700;
  color: #fff2a7;
}

.rw-tier-next .rw-tier-name {
  color: #bcae91;
}

.rw-tier-desc {
  font-size: .18rem;
  color: #42b883;
  margin-top: .04rem;
}

.rw-tier-next .rw-tier-desc {
  color: #8c6b42;
}

/* 待领取徽章（基础） */
.rw-tier-badge {
  font-size: .20rem;
  font-weight: 700;
  padding: .04rem .16rem;
  border-radius: .20rem;
  white-space: nowrap;
}

/* 可领取状态：绿色可点击 */
.rw-tier-claimable {
  color: #42b883;
  background: rgba(66,184,131,.1);
  border: 1px solid rgba(66,184,131,.3);
  cursor: pointer;
}
.rw-tier-claimable:active {
  opacity: .7;
}

/* 已领取状态：灰色禁用 */
.rw-tier-claimed {
  color: #8c6b42;
  background: rgba(140,107,66,.1);
  border: 1px solid rgba(140,107,66,.2);
  cursor: default;
}

/* 预约期未开服：锁定状态 */
.rw-tier-locked {
  color: #8c6b42;
  background: rgba(140,107,66,.08);
  border: 1px dashed rgba(140,107,66,.3);
  cursor: default;
}

/* 还差N人 */
.rw-tier-gap {
  font-size: .20rem;
  color: #8c6b42;
  white-space: nowrap;
}

/* 空状态 */
.rw-empty {
  text-align: center;
  padding: .32rem .20rem;
  font-size: .22rem;
  color: #8c6b42;
  line-height: 1.8;
}

.rw-empty-hint {
  color: #42b883;
}

/* 区服全员奖励进度条 */
.rw-progress {
  position: relative;
  padding: .04rem 0 .08rem;
}

.rw-progress-track {
  position: absolute;
  left: 8%;
  right: 8%;
  top: 50%;
  transform: translateY(-50%);
  height: 3px;
  background: #3a1c0c;
  border-radius: 2px;
  z-index: 0;
  margin-top: .06rem;
}

.rw-progress-fill {
  height: 100%;
  border-radius: 2px;
  background: linear-gradient(90deg, #42b883, #d9a83a);
}

.rw-progress-nodes {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  position: relative;
  z-index: 1;
}

.rw-node {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  min-width: 0;
}

.rw-node-value {
  font-size: .18rem;
  font-weight: 400;
  color: #5a3d1e;
  margin-bottom: .06rem;
  text-align: center;
}

.rw-node.is-unlocked .rw-node-value {
  color: #42b883;
  font-weight: 700;
}

.rw-node-dot {
  width: .24rem;
  height: .24rem;
  border-radius: 50%;
  background: #3a1c0c;
  border: 2px solid #6b4a1a;
  display: flex;
  align-items: center;
  justify-content: center;
}

.rw-node.is-unlocked .rw-node-dot {
  background: #42b883;
  border-color: #d9a83a;
}

.rw-node-dot-inner {
  display: none;
}

.rw-node.is-unlocked .rw-node-dot-inner {
  display: block;
  width: .08rem;
  height: .08rem;
  border-radius: 50%;
  background: #1a0a04;
}

.rw-node-score {
  font-size: .16rem;
  color: #8c6b42;
  margin-top: .04rem;
  text-align: center;
  white-space: nowrap;
}

.rw-node.is-unlocked .rw-node-score {
  color: #d9a83a;
}

.rw-progress-summary {
  text-align: center;
  font-size: .18rem;
  color: #8c6b42;
  margin-top: .14rem;
}

.rw-progress-summary span {
  color: #d9a83a;
  font-weight: 700;
}

/* 底部领取说明 */
.rw-notice {
  background: rgba(200,150,10,.06);
  border: 1px solid #4a2a14;
  border-radius: .06rem;
  padding: .16rem .18rem;
  text-align: center;
  margin-top: .04rem;
}

.rw-notice-title {
  font-size: .20rem;
  font-weight: 700;
  color: #42b883;
  margin-bottom: .06rem;
}

.rw-notice-body {
  font-size: .18rem;
  color: #bcae91;
  line-height: 1.8;
}


/* ---- 空状态 ---- */
.empty {
  text-align: center;
  padding: .8rem .32rem;
  color: var(--text-sub);
  font-size: .28rem;
}

/* ---- 底部导航 ---- */
.bnav {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 200;
  display: flex;
  padding-bottom: var(--safe-bottom);
  /* 图片原始尺寸 750x133，比例约 5.64:1 */
  aspect-ratio: 750 / 133;
  max-height: calc(var(--nav-height) + var(--safe-bottom));
}

.bnav-bg,
.bnav-overlay {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

.bnav-bg {
  z-index: 0;
}

.bnav-overlay {
  z-index: 1;
  /* 默认首页激活：裁切左侧 1/3 */
  clip-path: inset(0 66.67% 0 0);
}

.bnav-hit {
  flex: 1;
  position: relative;
  z-index: 2;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

/* ---- 悬浮入口 ---- */
.float-actions {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 90;
  display: flex;
  flex-direction: column;
  gap: .05rem;
}

.float-btn-sprite {
  display: block;
  background-image: url('../images/btn-sprite.png');
  background-size: 12.14rem 3.63rem;
  background-repeat: no-repeat;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

.sprite-reward {
    width: .5rem;
        height: 1.2rem;
  background-position: 0 0;
}

.sprite-rules {
    width: .5rem;
        height: 1.2rem;
  background-position: -.54rem 0;
}

/* ---- 底部弹窗 ---- */
.sheet-mask {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 500;
  display: block;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  background: rgba(0, 0, 0, .42);
  -webkit-transition: opacity .26s ease, visibility 0s linear .42s;
  transition: opacity .26s ease, visibility 0s linear .42s;
}

.sheet-mask.show {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  -webkit-transition-delay: 0s;
  transition-delay: 0s;
}

.bottom-sheet {
  position: absolute;
  left: .18rem;
  right: .18rem;
  bottom: 0;
  height: auto;
  min-height: var(--sheet-min-height, 0);
  max-height: var(--sheet-max-height, 82vh);
  padding: .04rem .04rem 0;
  border-radius: .14rem .14rem 0 0;
  background: #f4c05b;
  background: -webkit-linear-gradient(top, #ffe58c 0%, #d88f2e 42%, #8a3a12 100%);
  background: linear-gradient(to bottom, #ffe58c 0%, #d88f2e 42%, #8a3a12 100%);
  box-shadow: 0 -.04rem .08rem rgba(0, 0, 0, .62), 0 0 .06rem rgba(255, 211, 99, .62);
  -webkit-transform: translate3d(0, calc(100% + .42rem), 0);
  transform: translate3d(0, calc(100% + .42rem), 0);
  -webkit-transition: -webkit-transform .38s cubic-bezier(.16, .92, .24, 1), opacity .26s ease;
  transition: transform .38s cubic-bezier(.16, .92, .24, 1), opacity .26s ease;
  opacity: 0;
  padding-bottom: var(--safe-bottom);
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-flex-direction: column;
  flex-direction: column;
}


/* 默认内容撑开高度；需要固定高度时，在 .sheet-mask 上加预设 class 或写 style="--sheet-height: 68vh" */
.sheet-mask[style*="--sheet-height"] .bottom-sheet { height: var(--sheet-height); }
.sheet-mask.sheet-h-sm .bottom-sheet { height: 48vh; }
.sheet-mask.sheet-h-md .bottom-sheet { height: 62vh; }
.sheet-mask.sheet-h-lg .bottom-sheet { height: 72vh; }
.sheet-mask.sheet-h-xl .bottom-sheet { height: 82vh; }
.sheet-mask.sheet-h-auto .bottom-sheet {
  height: auto;
  min-height: var(--sheet-min-height, 0);
}

.sheet-mask.show .bottom-sheet {
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.bottom-sheet::before,
.bottom-sheet::after {
  content: none;
}

.sheet-inner {
  position: relative;
  z-index: 1;
  padding: .04rem .04rem 0;
  border-radius: .10rem .10rem 0 0;
  background: #4a1209;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  flex: 1;
  min-height: 0;
}

.sheet-frame {
  position: relative;
  border: 1px solid #6b2a10;
  border-radius: .08rem .08rem 0 0;
  background: #290808;
  /* background: -webkit-linear-gradient(top, #4d0908 0%, #350504 42%, #210202 100%); */
  /* background: linear-gradient(to bottom, #4d0908 0%, #350504 42%, #210202 100%); */
  box-shadow: inset 0 0 .08rem rgba(0, 0, 0, .68), inset 0 .02rem 0 rgba(255, 204, 102, .16);
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  flex: 1;
  overflow: hidden;
  min-height: 0;
  border-bottom: none;
}

.sheet-frame::before {
  /* content: '';
  position: absolute;
  left: .04rem;
  right: .04rem;
  top: .04rem;
  bottom: 0;
  border-radius: .06rem .06rem 0 0;
  border: 1px solid rgba(249, 190, 80, .36);
  pointer-events: none;
  z-index: 2; */
}

.sheet-title {
  position: absolute;
  right: .12rem;
  top: .10rem;
  z-index: 4;
  width: .52rem;
  height: .52rem;
  padding: 0;
  border: 0;
  background: none;
  min-height: 0;
  display: block;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}

.sheet-title span {
  display: none;
}

.sheet-close {
  width: .47rem;
  height: .41rem;
  display: block;
  border: 0;
  border-radius: 0;
  padding: 0;
  font-size: 0;
  line-height: 1;
  color: transparent;
  background: url('../images/close.png') center / .47rem .41rem no-repeat;
  cursor: pointer;
  -webkit-appearance: none;
}

.sheet-close::before,
.sheet-close::after {
  content: none;
}

.sheet-close:active {
  -webkit-transform: scale(.9);
  transform: scale(.9);
}

.sheet-body {
  position: relative;
  z-index: 1;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  flex: 1;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding: .86rem .28rem .32rem;
}



.buy-sheet-body {
  padding: .72rem .20rem .24rem;
}

.buy-sheet-title {
  display: block;
  width: 86%;
  height: auto;
  margin: 0 auto .18rem;
}

.sprite-buy-next {
  width: 4.96rem;
  height: .77rem;
  background-position: 0 -1.28rem;
  margin-top: .20rem;
}

.buy-info-panel-wrap {
  position: relative;
  width: 100%;
  margin: 0 auto;
}

.buy-info-panel {
  display: block;
  width: 100%;
  height: auto;
  margin: 0 auto;
}

.buy-copy {
  position: absolute;
  z-index: 2;
  font-weight: 300;
  font-size: .16rem;
  color: #ffd67b;
  /* text-shadow: 0 1px 1px rgba(0, 0, 0, .85), 0 0 .04rem rgba(255, 210, 101, .45); */
  pointer-events: none;
}

.buy-date-copy {
  left: 25.2%;
  top: 15.6%;
  width: 22%;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-flex-direction: column;
  flex-direction: column;
  gap: .03rem;
  font-size: .15rem;
  font-weight: 700;
  line-height: 1.15;
  white-space: nowrap;
}

.buy-price-copy {
    right: 6.8%;
    top: 8.2%;
  font-size: .56rem;
  font-weight: bold;
  line-height: 1;
  letter-spacing: .01rem;
  color: #ffd66b;
  background: -webkit-linear-gradient(top, #fff1a4 0%, #ffc44c 48%, #b86717 100%);
  background: linear-gradient(to bottom, #fff1a4 0%, #ffc44c 48%, #b86717 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.buy-step-create {
  color: #e8b953;
  font-size: .24rem;
}

.buy-form-row {
  margin-bottom: .18rem;
}

.buy-field-label {
  display: block;
  margin-bottom: .10rem;
  font-size: .24rem;
  font-weight: 700;
  color: #f1bd4c;
  line-height: 1.2;
}

.buy-text-input {
  width: 100%;
  height: .70rem;
  padding: 0 .24rem;
  border: 1px solid #7b4a1d;
  border-radius: .12rem;
  background: rgba(24, 10, 4, .78);
  color: #ffe6a6;
  font-size: .24rem;
  outline: none;
  -webkit-appearance: none;
  box-shadow: inset 0 0 .10rem rgba(0, 0, 0, .55);
}

.buy-text-input::-webkit-input-placeholder {
  color: rgba(255, 225, 171, .66);
}

.buy-text-input::placeholder {
  color: rgba(255, 225, 171, .66);
}

.buy-map-head {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  margin-bottom: .10rem;
}

.buy-map-head .buy-field-label {
  margin-bottom: 0;
}

.buy-map-zoom {
  border: 0;
  padding: 0 0 0 .28rem;
  background: transparent;
  color: #f2b93d;
  font-size: .20rem;
  font-weight: 700;
  line-height: 1.2;
  -webkit-appearance: none;
  position: relative;
}

.buy-map-zoom::before {
  content: '';
  position: absolute;
  left: 0;
  top: .01rem;
  width: .22rem;
  height: .22rem;
  border-radius: 50%;
  background: #77d8ff;
  box-shadow: inset -.04rem -.04rem .05rem rgba(0,0,0,.35), 0 0 .06rem rgba(119,216,255,.62);
}

.buy-map-card {
  position: relative;
  overflow: hidden;
  border: 1px solid #65401b;
  border-radius: .10rem;
  background: #130b06;
  margin-bottom: .18rem;
}

.buy-map-title {
  position: absolute;
  left: .18rem;
  top: .07rem;
  z-index: 4;
  width: 2.00rem;
  height: .45rem;
  display: block;
}

.buy-map-legend {
  position: absolute;
  right: .14rem;
  top: .12rem;
  z-index: 4;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  gap: .12rem;
  color: #ffe6a6;
  font-size: .18rem;
  font-weight: 700;
  line-height: 1;
}


.buy-map-stage {
  position: relative;
  width: 100%;
  aspect-ratio: 724 / 612;
}

.buy-map-terrain {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.buy-map-pins {
  pointer-events: none;
}

.buy-map-pins .map-pin {
  pointer-events: auto;
}

.buy-map-pins .map-pin img {
  width: .16rem;
  height: .17rem;
}

.buy-map-pins .map-pin-label {
  font-size: .18rem;
  color: #ffe8a7;
}

.buy-map-pins .map-pin.is-taken .map-pin-label {
  color: #f4c38a;
}

.buy-map-pins .map-pin.is-selected img {
  width: .22rem;
  height: .23rem;
  filter: drop-shadow(0 0 .06rem rgba(255, 229, 93, .95));
}

.buy-map-pins .map-pin.is-selected .map-pin-label {
  color: #fff27a;
  font-weight: 700;
}

.buy-county-select {
  min-height: .66rem;
  margin-bottom: .16rem;
  padding: .17rem .24rem;
  border: 1px solid #74471b;
  border-radius: .12rem;
  background: rgba(26, 10, 4, .82);
  color: #e9d0a0;
  font-size: .24rem;
  line-height: 1.3;
}

/* ---- 郡县下拉选择器 ---- */
.buy-county-dropdown-wrap {
  margin-bottom: .16rem;
}

.buy-county-dropdown-wrap .buy-field-label {
  display: inline-block;
  margin-right: .12rem;
  margin-bottom: 0;
  vertical-align: middle;
}

.buy-county-dropdown {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 100%;
  height: .70rem;
  margin-top: .08rem;
  padding: 0 .56rem 0 .24rem;
  border: 1px solid #74471b;
  border-radius: .12rem;
  background: rgba(26, 10, 4, .82) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23c9a34d' stroke-width='2' fill='none'/%3E%3C/svg%3E") no-repeat right .20rem center;
  background-size: .20rem;
  color: #e9d0a0;
  font-size: .24rem;
  font-family: inherit;
  outline: none;
  cursor: pointer;
}

.buy-county-dropdown:focus {
  border-color: #c9a34d;
  box-shadow: 0 0 .06rem rgba(201, 163, 77, .5);
}

.buy-county-dropdown option {
  background: #1a0a04;
  color: #e9d0a0;
  padding: .08rem;
}

.buy-county-dropdown option:disabled {
  color: rgba(233, 208, 160, .4);
}

.buy-warning {
  margin-bottom: .22rem;
  padding: .14rem .18rem .14rem .48rem;
  border: 1px solid #9a6a18;
  border-radius: .10rem;
  background: rgba(70, 18, 8, .76);
  color: #f5c13f;
  font-size: .18rem;
  line-height: 1.5;
  position: relative;
}

.buy-warning::before {
  content: '!';
  position: absolute;
  left: .16rem;
  top: .16rem;
  width: .22rem;
  height: .22rem;
  border: 1px solid #ffc238;
  border-radius: 50%;
  color: #ffc238;
  text-align: center;
  line-height: .22rem;
  font-size: .16rem;
  font-weight: 700;
}

/* ---- 入驻审核开关 ---- */
.buy-review-section {
  margin-bottom: .22rem;
}

.buy-review-options {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  gap: .16rem;
  margin-top: .12rem;
}

.buy-review-option {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  flex: 1;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  align-items: center;
  padding: .18rem .12rem .16rem;
  border: 1px solid #6b3a10;
  border-radius: .10rem;
  background: rgba(60, 20, 8, .7);
  cursor: pointer;
  -webkit-transition: border-color .2s, background .2s;
  transition: border-color .2s, background .2s;
}

.buy-review-option input[type="radio"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.buy-review-option.is-active {
  border-color: #ffc238;
  background: rgba(120, 60, 10, .6);
  box-shadow: 0 0 .12rem rgba(255, 194, 56, .25);
}

.buy-review-radio {
  display: block;
  width: .28rem;
  height: .28rem;
  border: 2px solid #8a5a18;
  border-radius: 50%;
  margin-bottom: .08rem;
  position: relative;
  -webkit-transition: border-color .2s;
  transition: border-color .2s;
}

.buy-review-option.is-active .buy-review-radio {
  border-color: #ffc238;
}

.buy-review-option.is-active .buy-review-radio::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: .14rem;
  height: .14rem;
  border-radius: 50%;
  background: #ffc238;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.buy-review-label {
  font-size: .22rem;
  font-weight: 700;
  color: #f5c13f;
  margin-bottom: .04rem;
}

.buy-review-option.is-active .buy-review-label {
  color: #ffd970;
}

.buy-review-desc {
  font-size: .16rem;
  color: rgba(233, 208, 160, .55);
  text-align: center;
  line-height: 1.4;
}

.buy-review-option.is-active .buy-review-desc {
  color: rgba(255, 217, 112, .75);
}

.buy-step-actions {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  gap: .18rem;
}

.buy-step-btn {
  height: .76rem;
  border-radius: .08rem;
  font-size: .28rem;
  font-weight: 700;
  -webkit-appearance: none;
}

.buy-step-back {
  width: 39%;
  border: 1px solid #a35e1f;
  background: -webkit-linear-gradient(top, #661b10, #3a0b07);
  background: linear-gradient(to bottom, #661b10, #3a0b07);
  color: #f3c456;
}

.buy-step-submit {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  flex: 1;
  border: 1px solid #ffce63;
  background: -webkit-linear-gradient(top, #ffcf62, #dc8c25);
  background: linear-gradient(to bottom, #ffcf62, #dc8c25);
  color: #2a0703;
  box-shadow: inset 0 0 .06rem rgba(255,255,255,.35);
}
@-webkit-keyframes sheetGlow {
  0%, 100% { opacity: .48; }
  50% { opacity: 1; }
}

@keyframes sheetGlow {
  0%, 100% { opacity: .48; }
  50% { opacity: 1; }
}

/* ---- 审核列表弹窗 ---- */
.review-sheet-body {
  padding: .72rem .20rem .24rem;
}

.review-sheet-header {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  padding: 0 .08rem .12rem;
  margin-bottom: .04rem;
}

.review-header-left {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: baseline;
  -webkit-align-items: baseline;
  align-items: baseline;
  gap: .10rem;
}

.review-sheet-title {
  font-size: .28rem;
  font-weight: 700;
  color: #D4A957;
  letter-spacing: .04rem;
}

.review-sheet-count {
  font-size: .22rem;
  color: #8c6b42;
}

.review-approve-all-btn {
  border: 0;
  padding: .08rem .20rem;
  border-radius: .24rem;
  background: -webkit-linear-gradient(top, #ffcf62, #dc8c25);
  background: linear-gradient(to bottom, #ffcf62, #dc8c25);
  color: #2a0703;
  font-size: .22rem;
  font-weight: 700;
  cursor: pointer;
  -webkit-appearance: none;
  box-shadow: 0 .02rem .06rem rgba(255, 207, 98, .4);
  white-space: nowrap;
}

.review-approve-all-btn:active {
  opacity: .82;
}

.review-auto-hint {
  font-size: .18rem;
  color: #8c6b42;
  padding: 0 .08rem;
  margin-bottom: .14rem;
}

/* 审核列表行 */
.review-list-row {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  padding: .16rem .12rem;
  margin-bottom: .06rem;
  background: #251107;
  border: 1px solid #3a1c0c;
  border-radius: .06rem;
}

.review-list-row:active {
  background: #2e1509;
}

.review-row-left {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  flex: 1;
  min-width: 0;
}

/* 审核头像 */
.review-avatar {
  width: .52rem;
  height: .52rem;
  border-radius: 50%;
  background: #3d1209;
  border: 1px solid #6b3a1a;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  margin-right: .14rem;
}

.review-avatar-char {
  font-size: .24rem;
  font-weight: 700;
  color: #D4A957;
}

/* 审核信息区 */
.review-info {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  flex: 1;
  min-width: 0;
}

.review-name {
  font-size: .24rem;
  font-weight: 600;
  color: #fff2a7;
  line-height: 1.3;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  margin-bottom: .04rem;
}

.review-meta {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: .02rem;
  font-size: .18rem;
  line-height: 1.3;
}

.review-tag {
  font-size: .16rem;
  padding: .01rem .08rem;
  border-radius: .04rem;
  font-weight: 500;
}

.review-tag-return {
  color: #7ec8e3;
  background: rgba(126, 200, 227, .12);
}

.review-tag-active {
  color: #6be37a;
  background: rgba(107, 227, 122, .12);
}

.review-tag-new {
  color: #f0c040;
  background: rgba(240, 192, 64, .12);
}

.review-tag-normal {
  color: #bcae91;
  background: rgba(188, 174, 145, .12);
}

/* 用户标签（全新/流失/流失大R/活跃老玩家），复用于审核列表与成员列表 */
.user-tag {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  font-size: .16rem;
  padding: .01rem .08rem;
  border-radius: .04rem;
  font-weight: 500;
  white-space: nowrap;
}

/* 成员列表里标签位于昵称与积分之间，留点间距 */
.member-list-row .user-tag {
  margin: 0 .12rem;
}

.user-tag-new {
  color: #f0c040;
  background: rgba(240, 192, 64, .12);
}

.user-tag-lost {
  color: #7ec8e3;
  background: rgba(126, 200, 227, .12);
}

.user-tag-active {
  color: #6be37a;
  background: rgba(107, 227, 122, .12);
}

.user-tag-normal {
  color: #bcae91;
  background: rgba(188, 174, 145, .12);
}

.review-sep {
  color: #5a3d1e;
  font-size: .18rem;
}

.review-ago {
  color: #8c6b42;
  font-size: .18rem;
}

.review-urgent-text {
  color: #e53935;
  font-size: .16rem;
  font-weight: 700;
  margin-left: .06rem;
}

/* 审核按钮组 */
.review-row-right {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  align-items: center;
  gap: .10rem;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  margin-left: .12rem;
}

.review-btn {
  border: 0;
  padding: .10rem .22rem;
  border-radius: .20rem;
  font-size: .20rem;
  font-weight: 700;
  cursor: pointer;
  -webkit-appearance: none;
  white-space: nowrap;
  line-height: 1;
}

.review-btn:active {
  opacity: .78;
}

.review-btn-approve {
  background: -webkit-linear-gradient(top, #ffcf62, #dc8c25);
  background: linear-gradient(to bottom, #ffcf62, #dc8c25);
  color: #2a0703;
  box-shadow: 0 .02rem .04rem rgba(220, 140, 37, .45);
}

.review-btn-reject {
  background: #3d1c0c;
  color: #bcae91;
  border: 1px solid #5a3420;
}


/* ============================================================
   活动规则弹窗排版（简洁风格）
   ============================================================ */
.rules-sheet-body {
  padding: .72rem .28rem .40rem;
  font-size: .22rem;
  color: #bcae91;
  line-height: 2;
}

/* 分区标题 */
.rule-title {
  font-weight: 700;
  color: #f0c040;
  margin-bottom: .06rem;
  font-size: .24rem;
}

/* 正文块 */
.rule-body {
  margin-bottom: .22rem;
  color: #9e8a6a;
}

/* 单独行（不带底间距） */
.rule-body-line {
  margin-bottom: .06rem;
  color: #bcae91;
}

/* 子标题（①②③） */
.rule-body-line2 {
  margin-bottom: .08rem;
  color: #cdb88a;
  font-weight: 500;
}

/* 高亮文字 */
.hl {
  color: #f6ead2;
}

.hl-gold {
  color: #f0c040;
  font-weight: 700;
}

.hl-green {
  color: #42b883;
}

.hl-red {
  color: #e85a3a;
}

/* 数据表格 */
.rule-table-wrap {
  margin-bottom: .18rem;
  border-radius: .06rem;
  overflow: hidden;
  background: #1a0a04;
  border: 1px solid #3a1c0c;
}

.rule-table {
  width: 100%;
  border-collapse: collapse;
  font-size: .20rem;
  text-align: center;
  table-layout: fixed;
}

.rule-table thead th {
  padding: .08rem .04rem;
  background: #3a1c0c;
  color: #bcae91;
  font-weight: 600;
  border: none;
}

.rule-table tbody td {
  padding: .08rem .04rem;
  border-top: 1px solid #3a1c0c;
  color: #9e8a6a;
}

.rule-table tbody td.val {
  color: #f0c040;
  font-weight: 700;
}

.rule-table-2col {
  width: 100%;
}



























/* ---- 自定义地图图片预览 ---- */
.image-preview-mask {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 900;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  background: rgba(0, 0, 0, .86);
  -webkit-transition: opacity .24s ease, visibility 0s linear .24s;
  transition: opacity .24s ease, visibility 0s linear .24s;
}

.image-preview-mask.show {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  -webkit-transition-delay: 0s;
  transition-delay: 0s;
}

.image-preview-inner {
  position: absolute;
  left: .18rem;
  right: .18rem;
  top: 50%;
  -webkit-transform: translateY(-50%) scale(.96);
  transform: translateY(-50%) scale(.96);
  -webkit-transition: -webkit-transform .24s ease;
  transition: transform .24s ease;
}

.image-preview-mask.show .image-preview-inner {
  -webkit-transform: translateY(-50%) scale(1);
  transform: translateY(-50%) scale(1);
}

.image-preview-img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 82vh;
  object-fit: contain;
}

.buy-map-terrain {
  cursor: pointer;
}

.image-preview-pins {
  z-index: 2;
  pointer-events: none;
}

.image-preview-pins .map-pin img {
  width: .20rem;
  height: .21rem;
}

.image-preview-pins .map-pin-label {
  font-size: .22rem;
  color: #ffe8a7;
}

.image-preview-pins .map-pin.is-taken .map-pin-label {
  color: #f4c38a;
}

.image-preview-pins .map-pin.is-selected img {
  width: .26rem;
  height: .27rem;
  filter: drop-shadow(0 0 .08rem rgba(255, 229, 93, .95));
}

.image-preview-pins .map-pin.is-selected .map-pin-label {
  color: #fff27a;
  font-weight: 700;
}

/* ---- 统一地图坐标容器（可回退层） ----
   旧的 map-wrap / buy-map-stage / image-preview 样式保留在上方。
   这里仅追加统一坐标模型，确认视觉稳定后再按需清理旧代码。 */
.county-map-canvas {
  position: relative;
}

.county-map-canvas .county-map-terrain {
  position: absolute;
  left: 0;
  top: 10%;
  width: 100%;
  height: auto;
  object-fit: fill;
}

.county-map-canvas .map-pins {
  position: absolute;
  left: 0;
  top: 0.26rem;
  width: 100%;
  height: 100%;
}

.county-map-canvas-buy,
.county-map-canvas-preview {
  aspect-ratio: 699 / 704;
}

.county-map-canvas-buy .buy-map-terrain,
.county-map-canvas-preview .image-preview-img {
  max-height: none;
}

.county-map-canvas-preview .image-preview-pins {
  z-index: 2;
}


/* 登录后玩家信息条：banner 下方独立一行（账号ID-区服名-角色名） */
.user-info-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.12rem;
  padding: 0.14rem 0.28rem;
  background: rgba(0, 0, 0, 0.55);
  border-top: 1px solid rgba(217, 168, 58, 0.35);
  border-bottom: 1px solid rgba(217, 168, 58, 0.35);
}

.user-info-bar.is-hidden {
  display: none;
}

.user-info-dot {
  width: 0.10rem;
  height: 0.10rem;
  border-radius: 50%;
  background: var(--color-gold);
  flex-shrink: 0;
  opacity: 0.8;
}

.user-info-text {
  font-size: 0.26rem;
  font-weight: 500;
  color: #ffe1a0;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.9);
  letter-spacing: 0.02em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 5.20rem;
}

/* ---- 协议同意勾选 ---- */
.buy-agreement {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  align-items: center;
  margin-bottom: .22rem;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

.buy-agreement-checkbox {
  display: block;
  width: .32rem;
  height: .32rem;
  border: 2px solid #8a5a18;
  border-radius: .06rem;
  margin-right: .12rem;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  position: relative;
  -webkit-transition: border-color .2s, background .2s;
  transition: border-color .2s, background .2s;
}

.buy-agreement.is-checked .buy-agreement-checkbox {
  border-color: #ffc238;
  background: #ffc238;
}

.buy-agreement.is-checked .buy-agreement-checkbox::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 45%;
  width: .10rem;
  height: .18rem;
  border: solid #2a0703;
  border-width: 0 2px 2px 0;
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
  transform: translate(-50%, -50%) rotate(45deg);
}

.buy-agreement-text {
  font-size: .22rem;
  color: #bcae91;
  line-height: 1.4;
}

.buy-agreement-link {
  color: #f0c040;
  text-decoration: underline;
}

/* ============================================================
   开服邀请码模块（我的奖励弹窗顶部，仅已入驻 member 展示）
   ============================================================ */
.reward-server-code {
  margin: 0 0 .24rem;
  padding: .24rem .28rem .22rem;
  background: linear-gradient(180deg, rgba(40, 18, 10, .85) 0%, rgba(20, 8, 4, .9) 100%);
  border: 1px solid rgba(217, 168, 58, .45);
  border-radius: .12rem;
  box-shadow: 0 0 .12rem rgba(217, 168, 58, .15), inset 0 1px 0 rgba(255, 217, 128, .08);
  overflow: hidden;
}

.reward-server-code-row {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: .14rem;
}

.reward-server-code-btn-row {
  margin-top: .18rem;
  text-align: center;
}

.reward-server-code-value {
  min-width: 0;
  font-size: .34rem;
  font-weight: 700;
  color: var(--color-gold-light);
  letter-spacing: .04rem;
  text-shadow: 0 0 .08rem rgba(255, 217, 128, .4), 0 1px 3px rgba(0, 0, 0, .8);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* 实心金色按钮（复制态） */
.reward-server-code-btn {
  flex-shrink: 0;
  padding: .12rem .48rem;
  font-size: .24rem;
  font-weight: 700;
  color: #2a1200;
  background: linear-gradient(180deg, #ffe8a0 0%, #d9a83a 50%, #b8862a 100%);
  border: 1px solid rgba(255, 217, 128, .6);
  border-radius: .08rem;
  cursor: pointer;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  text-shadow: 0 1px 0 rgba(255, 255, 255, .25);
  box-shadow: 0 2px 4px rgba(0, 0, 0, .4), inset 0 1px 0 rgba(255, 255, 255, .3);
}

.reward-server-code-btn:active {
  background: linear-gradient(180deg, #d9a83a 0%, #b8862a 100%);
  box-shadow: 0 1px 2px rgba(0, 0, 0, .4);
}

/* 虚线按钮（获取态，未获取时的初始态） */
.reward-server-code-btn-fetch {
  background: linear-gradient(180deg, rgba(255, 217, 128, .15) 0%, rgba(217, 168, 58, .2) 100%);
  border: 1px dashed rgba(217, 168, 58, .5);
  color: var(--color-gold);
  text-shadow: none;
  box-shadow: none;
}

.reward-server-code-btn-fetch:active {
  background: linear-gradient(180deg, rgba(217, 168, 58, .25) 0%, rgba(217, 168, 58, .15) 100%);
  box-shadow: none;
}

/* 锁定态（未到开服时间，不可点击） */
.reward-server-code-btn-locked {
  color: #8c6b42;
  background: rgba(140, 107, 66, .08);
  border: 1px dashed rgba(140, 107, 66, .3);
  text-shadow: none;
  box-shadow: none;
  cursor: default;
}

.reward-server-code-btn-locked:active {
  background: rgba(140, 107, 66, .08);
  box-shadow: none;
}

.reward-server-code-hint {
  margin: .18rem 0 0;
  padding-top: .14rem;
  border-top: 1px solid rgba(217, 168, 58, .15);
  font-size: .22rem;
  color: var(--text-sub);
  line-height: 1.7;
}

/* ============================================================
   个人邀请奖励领取结果弹窗
   ============================================================ */
.claim-result-mask {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 900;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  padding: .32rem;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  background: rgba(0, 0, 0, .58);
  -webkit-transition: opacity .22s ease, visibility 0s linear .22s;
  transition: opacity .22s ease, visibility 0s linear .22s;
}

.claim-result-mask.show {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  -webkit-transition-delay: 0s;
  transition-delay: 0s;
}

.claim-result-dialog {
  position: relative;
  width: 6.20rem;
  max-width: 92vw;
  padding: .08rem;
  border-radius: .12rem;
  background: linear-gradient(180deg, #ffe58c 0%, #d88f2e 46%, #8a3a12 100%);
  box-shadow: 0 .12rem .34rem rgba(0, 0, 0, .68), 0 0 .14rem rgba(255, 211, 99, .38);
  -webkit-transform: scale(.94);
  transform: scale(.94);
  -webkit-transition: -webkit-transform .22s ease;
  transition: transform .22s ease;
}

.claim-result-mask.show .claim-result-dialog {
  -webkit-transform: scale(1);
  transform: scale(1);
}

.claim-result-dialog::before {
  content: '';
  position: absolute;
  left: .08rem;
  right: .08rem;
  top: .08rem;
  bottom: .08rem;
  border: 1px solid rgba(249, 190, 80, .36);
  border-radius: .08rem;
  pointer-events: none;
  z-index: 1;
}

.claim-result-title,
.claim-result-body,
.claim-result-close {
  position: relative;
  z-index: 2;
}

.claim-result-title {
  min-height: .72rem;
  padding: .17rem .74rem .12rem;
  border-radius: .08rem .08rem 0 0;
  background: #3a0b08;
  text-align: center;
  font-size: .30rem;
  font-weight: 700;
  line-height: 1.35;
  color: var(--color-gold-light);
  text-shadow: 0 .02rem .04rem rgba(0, 0, 0, .7);
}

.claim-result-body {
  min-height: 1.18rem;
  padding: .30rem .36rem .36rem;
  border-radius: 0 0 .08rem .08rem;
  background: linear-gradient(180deg, #2b0907 0%, #1b0504 100%);
  text-align: center;
  font-size: .28rem;
  font-weight: 500;
  line-height: 1.7;
  color: var(--text-main);
  word-break: break-word;
}

.claim-result-close {
  position: absolute;
  right: .20rem;
  top: .22rem;
  width: .47rem;
  height: .41rem;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: url('../images/close.png') center / .47rem .41rem no-repeat;
  font-size: 0;
  line-height: 1;
  color: transparent;
  cursor: pointer;
  -webkit-appearance: none;
  -webkit-tap-highlight-color: transparent;
}

.claim-result-close:active {
  -webkit-transform: scale(.9);
  transform: scale(.9);
}

/* 郡主资格争夺赛规则说明 */
.buy-qualify-rules {
  margin: .06rem 0 .22rem;
  padding: .18rem .22rem .18rem .34rem;
  background: rgba(60, 18, 4, .55);
  border-radius: .10rem;
  position: relative;
  overflow: hidden;
}

.buy-qualify-lead {
  margin: 0 0 .10rem;
  font-size: .22rem;
  font-weight: 400;
  color: #c9a75c;
  line-height: 1.6;
}

.buy-qualify-lead .hl-gold {
  color: #ffd45a;
  font-weight: 700;
}

.buy-qualify-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.buy-qualify-list li {
  position: relative;
  padding-left: .16rem;
  margin-bottom: .06rem;
  font-size: .20rem;
  color: #d9bf7e;
  line-height: 1.65;
  letter-spacing: .005rem;
}

.buy-qualify-list li::before {
  content: '';
  position: absolute;
  left: .02rem;
  top: .11rem;
  width: .06rem;
  height: .06rem;
  border-radius: 50%;
  background: #c9953a;
}

.buy-qualify-list li em {
  font-style: normal;
  color: #f5d26a;
  font-weight: 700;
}

/* 客服二维码 — 上下居中布局 */
.buy-qr-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-top: .18rem;
  padding-top: .16rem;
  border-top: 1px solid rgba(200, 150, 60, .15);
}

.buy-qr-img {
  width: 1.60rem;
  height: 1.60rem;
  border-radius: .08rem;
  object-fit: cover;
  background: #fff;
}

.buy-qr-label {
  margin: .10rem 0 .04rem;
  font-size: .22rem;
  font-weight: 700;
  color: #f0d272;
  line-height: 1.3;
}

.buy-qr-text {
  margin: .10rem 0;
  font-size: .19rem;
  color: #a68d52;
  line-height: 1.4;
}
