@charset "utf-8";/* ========== Reset ========== */
body,
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
form,
fieldset,
input,
textarea,
p,
blockquote,
th,
td {
  margin: 0;
  padding: 0;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
address,
caption,
cite,
code,
dfn,
em,
strong,
th,
var {
  font-weight: normal;
  font-style: normal;
}
ol,
ul {
  list-style: none;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: normal;
  font-size: 100%;
}
q:before,
q:after {
  content: '';
}
fieldset,
img,
abbr,
acronym {
  border: 0;
}
body,
html {
  min-width: 12rem;
}

/* ========== Basic ========== */
.c:before,
.c:after {
  content: '';
  display: table;
}
.c:after {
  clear: both;
}
.c {
  zoom: 1;
}
a {
  text-decoration: none;
  overflow: hidden;
}
.wrap,
body {
  overflow-x: hidden;
  position: relative;
}
body {
  font: 12px/1.5 '\5FAE\8F6F\96C5\9ED1', tahoma, '\5b8b\4f53', '\9ED1\4F53',
    sans-serif;
  scrollbar-gutter: stable;
}
.wrap {
  padding-top: 9.9rem;
  opacity: 0;
  transition: opacity 1s ease-out;
}
.wrap.wrap-visible {
  opacity: 1;
}
/* 第二次进入：无过渡 */
.wrap.no-transition {
  transition: none;
}
.container {
  width: var(--game-page-content);
  margin: 0 auto;
  position: relative;
  z-index: 1;
  padding-bottom: 2.55rem;
}
.hide {
  display: block;
  width: 0;
  height: 0;
  overflow: hidden;
}
.pr {
  position: relative;
}
.pa {
  position: absolute;
}
.db {
  display: block;
  text-indent: -999em;
}
.fl {
  float: left;
}
.fr {
  float: right;
}
img.error {
  opacity: 0;
}

/* ========== Scrollbar ========== */
html ::-webkit-scrollbar {
  height: 0.06rem;
  width: 0.06rem;
  cursor: pointer;
  background: transparent !important;
}
html ::-webkit-scrollbar-thumb {
  background-color: var(--game-scrollbar-thumb) !important;
  border-radius: 0;
}

/* ========== Font Face ==========
 * @font-face 声明已移至 assets.css 统一管理
 */

/* ========== Responsive ========== */
html {
  font-size: calc(100 / 1920 * 100vw);
}
@media screen and (max-width: 1200px) {
  html {
    font-size: calc(100 / 1920 * 1200px);
  }
}

/* ========== Question Icon ========== */
.question-icon {
  width: 0.4rem;
  height: 0.4rem;
  position: relative;
  cursor: pointer;
  pointer-events: auto;
}
.question-icon::after,
.question-icon::before {
  position: absolute;
  inset: 0;
  content: '';
}
.question-icon::after {
  border-radius: 50%;
  background: var(--game-brand-bg-color);
  opacity: 0.8;
  backdrop-filter: blur(3px);
  transition: opacity 0.3s;
}
.question-icon:hover::after {
  opacity: 0.2;
}
.question-icon::before {
  z-index: 1;
  background: url(https://wegame.gtimg.com/tgp_act/release/wegame/wegame20260525/images/question-icon.png)
    no-repeat center center/cover;
}

/* ========== Evaluation Enter ========== */
.evaluation-enter {
  width: 1.8rem;
  height: 1.8rem;
  position: absolute;
  right: 2.1rem;
  bottom: 2.4rem;
  z-index: 2;
  cursor: pointer;
}
.evaluation-enter img {
  width: 100%;
  height: 100%;
}
.evaluation-enter:hover .evaluation-enter-text {
  color: var(--game-brand-font-color);
}
.evaluation-enter-text {
  transition: color 0.3s;
  color: var(--game-font-color);
  font-size: 0.22rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 1.1px;
  position: absolute;
  bottom: 0.1rem;
  padding-right: 0.2rem;
  width: 100%;
  text-align: center;
  text-shadow: 0.01rem 0.02rem 0.04rem rgba(0, 11, 61, 0.75);
}
.evaluation-enter-text::after {
  padding-right: 0.21rem;
  content: attr(data-text);
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-text-stroke: 0.04rem #000;
  color: #000;
  z-index: -1;
  pointer-events: none;
}

/* ========== 开场视频 ========== */
.intro-video-mask {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 1s ease;
  opacity: 1;
  overflow: hidden;
  overscroll-behavior: contain;
}
.intro-video-mask video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.intro-video-mask.hide-video {
  opacity: 0;
  pointer-events: none;
}
body.intro-playing {
  position: fixed;
  width: 100%;
  overflow-y: scroll;
}

/* ========== Background ========== */
.bg {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
  min-width: 1200px;
}
.bg-mask {
  content: '';
  position: absolute;
  top: 8.36rem;
  height: 8.08rem;
  width: 100%;
  z-index: 3;
}
.bg-1 {
  width: 19.2rem;
  height: 10.8rem;
  position: relative;
  overflow: hidden;
  pointer-events: auto;
  margin: 0 auto;
}
.bg-1 .bg-main,
.bg-1 .bg-title {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}
.bg-1 .bg-title {
  z-index: 1;
}
.bg-1 img {
  object-fit: cover;
}
.bg-1 .question-icon {
  position: absolute;
  z-index: 10;
  top: 7.78rem;
  right: 6.56rem;
}
.bg-2 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.bg-2 img,
.bg-mask img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center bottom;
  pointer-events: none;
}

/* ========== Parallax ========== */
.parallax-stage {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 2;
  pointer-events: none;
}
.parallax-inner {
  position: absolute;
  inset: 0;
  perspective: 1400px;
  transform-style: preserve-3d;
}
.parallax-layer {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 100%;
  height: 100%;
  transform: translate(-50%, -50%);
  object-fit: fill;
  object-position: center;
  pointer-events: none;
  user-select: none;
  /* will-change: transform; */
  transform-style: preserve-3d;
  backface-visibility: hidden;
  opacity: 0;
  animation: parallaxFadeIn 0.6s ease forwards;
  animation-delay: 0.1s;
}

@keyframes parallaxFadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* ========== Head ========== */
.head {
  height: 10.8rem;
  pointer-events: none;
}
.head-title {
  margin-left: -0.04rem;
  height: 1.4rem;
  display: flex;
  align-items: center;
  margin-bottom: 0.1rem;
}
.head-title img {
  width: 3.62rem;
  height: 1.45rem;
}

/* ========== Step ========== */
.step .box-title {
  margin-bottom: 0.32rem;
}
.step .question-icon {
  position: absolute;
  margin-left: 4rem;
  margin-top: 0.4rem;
}
.step.box {
  margin-bottom: 1.14rem;
}
.step-pic {
  position: relative;
  aspect-ratio: 1363 / 280;
}
.step-pic .step-pic-image {
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
}
.step-mask-list {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  gap: 0.8rem;
}
.step-mask-item {
  cursor: pointer;
  flex: 1;
  height: 80%;
  position: relative;
}
.step-mask-item.finish::after {
  opacity: 1;
}
.step-mask-item:hover .step-mask-wrapper {
  opacity: 1;
}
.step-mask-wrapper {
  padding: 0.1rem;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -2.5rem);
  z-index: 1;
  font-size: 0;
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
}
.step-mask-item:nth-child(3) .step-mask-wrapper {
  transform: translate(-50%, -1.62rem);
}
.step-mask-wrapper.shadow img {
  box-shadow: 0.02rem 0.04rem 0.04rem 0 rgba(0, 0, 0, 0.15);
}
.step-mask-wrapper img {
  max-height: 1.75rem;
  max-width: 3.5rem;
}
.step-mask-wrapper::after {
  position: absolute;
  inset: 0;
  content: '';
  border-radius: 0.04rem;
  background: var(--game-brand-bg-color);
  backdrop-filter: blur(0.02rem);
  opacity: 0.7;
  z-index: -1;
}
.step-mask-wrapper::before {
  content: '';
  position: absolute;
  width: 0.14rem;
  height: 0.11rem;
  background: var(--game-brand-bg-color);
  opacity: 0.7;
  clip-path: polygon(100% 0, 0 0, 50% 100%);
  left: 50%;
  bottom: 0;
  transform: translate(-50%, 100%);
  z-index: -1;
}
.step-list {
  display: flex;
  gap: 0.8rem;
}
.step-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}
/* .step-title-tips {
  margin-left: 0.12rem;
  font-size: 0.13rem;
  font-family: var(--font-family-base);
  font-weight: 400;
}
.step-title-tips i {
  opacity: 0.9;
  color: var(--game-brand-font-color);
  font-size: 0.16rem;
  font-family: var(--font-family-mfgeheinumber);
  font-weight: normal;
  padding: 0 0.02rem;
  position: relative;
  top: 0.01rem;
} */
.step-text {
  text-align: center;
  font-size: 0.16rem;
  font-weight: 700;
  line-height: 1.5;
}
.step-text span {
  color: var(--game-brand-font-color);
  text-align: center;
  font-size: 0.3rem;
  font-family: var(--font-family-mfgeheinumber);
  vertical-align: sub;
  padding: 0 0.1rem;
  line-height: 1;
  display: inline-block;
}

/* ========== Buttons (step-btn / free-btn / try-play-btn) ========== */
.step-btn,
.free-btn,
body .try-play-btn {
  width: 1.96rem;
  height: 0.54rem;
  color: var(--game-brand-bg-color);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 0.24rem;
  font-weight: 700;
  border-radius: 0;
  position: relative;
  background: none;
  z-index: 1;
}
:is(.step-btn, .free-btn, body .try-play-btn) .btn-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
  transition: opacity 0.3s;
}
:is(.step-btn, .free-btn, body .try-play-btn) .btn-img-hover {
  opacity: 0;
}
:is(.step-btn, .free-btn, body .try-play-btn):hover .btn-img-default {
  opacity: 0;
}
:is(.step-btn, .free-btn, body .try-play-btn):hover .btn-img-hover {
  opacity: 1;
}
:is(.step-btn, .free-btn, body .try-play-btn):hover {
  opacity: 1;
}
:is(.step-btn, .free-btn, body .try-play-btn).disabled {
  filter: grayscale(100%);
  pointer-events: none;
}
.step-btn.got {
  filter: grayscale(100%);
  pointer-events: none;
}
.step-btn {
  margin-top: 0.27rem;
}
body .try-play-btn {
  min-width: 1.54rem;
  margin-top: -0.06rem;
}
body .try-play-btn span {
  position: relative;
  z-index: 1;
  color: var(--game-brand-bg-color);
}

/* ========== Activity ========== */
.activity {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  position: relative;
  z-index: 1;
  margin-bottom: 0.2rem;
  height: 0.4rem;
}
.activity-info {
  position: relative;
}
.activity-info::after {
  content: '';
  z-index: -1;
  opacity: 0.2;
  background: var(--game-brand-bg-color);
  mix-blend-mode: darken;
  filter: blur(0.12rem);
  position: absolute;
  top: 0;
  left: 0;
  width: 4.96rem;
  height: 0.44rem;
}
.activity-time,
.activity-desc {
  font-size: 0.13rem;
  display: flex;
  align-items: center;
  gap: 0.08rem;
}
.activity-time {
  font-weight: 700;
}
.activity-time a {
  cursor: pointer;
  opacity: 0.75;
  width: 0.16rem;
  height: 0.16rem;
  background: url(https://wegame.gtimg.com/tgp_act/release/wegame/wegame20260525/images/rule-icon.png)
    no-repeat center center/cover;
  transition: opacity 0.3s;
  filter: var(--game-shadow-rule-icon);
}
.activity-time a:hover {
  opacity: 1;
}
.activity-desc {
  opacity: 0.9;
}
.activity-title {
  width: 1.72rem;
  margin-bottom: -0.1rem;
}
.activity-title img {
  width: 100%;
}

/* ========== Box & Title ========== */
.top-back {
  position: fixed;
  right: 0.1rem;
  bottom: 0.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  clip-path: polygon(0 0, 0.72rem 0, 0.72rem 100%, 0% 100%);
  transition: clip-path 0.3s, opacity 0.3s, visibility 0.3s;
  opacity: 0;
  visibility: hidden;
}
.top-back.show {
  opacity: 1;
  visibility: visible;
}
.top-back:hover {
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
}
.top-back:hover::after,
.top-back:hover .top-back-cont::after {
  opacity: 0.6;
}
.top-back::after {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0;
  background: var(--game-brand-bg-color);
  border-radius: 12px;
  z-index: -1;
  transition: opacity 0.3s;
}
.top-back-cont {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 0.72rem;
  height: 0.72rem;
  position: relative;
  z-index: 1;
  gap: 0.04rem;
}
.top-back-cont::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 12px;
  background: var(--game-brand-bg-color);
  z-index: -1;
  opacity: 0.3;
  transition: opacity 0.3s;
}
.top-back-cont i {
  opacity: 0.6;
  content: '';
  width: 0.12rem;
  height: 0.2rem;
  background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAZCAYAAAA4/K6pAAAACXBIWXMAABYlAAAWJQFJUiTwAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAOdEVYdFNvZnR3YXJlAEZpZ21hnrGWYwAAAHxJREFUeAHdjssNgCAQBRdjAXYgnUoJdiCdWIIlGDuwA9wDHoywHzUxMMk7kDADEK440BLuOI2fCugiIY8sgheHLyK+kghe6nBLPRGLW7lIQzT2uBw9MD+YidcnTva/yeMb2RUox8BzmQjI5ExALicCOhlpcfY8GGM2UHIAo0aNkVihEV0AAAAASUVORK5CYII=)
    no-repeat center center / cover;
  transform: rotate(-90deg);
}
.top-back-text,
.top-back-cont span {
  font-size: 0.2rem;
  font-weight: 700;
  line-height: 1.3;
  opacity: 0.6;
}
.top-back-text {
  padding-left: 0.1rem;
  padding-right: 0.2rem;
}
.box {
  margin-bottom: 0.6rem;
}
.box-title {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.title-img {
  height: 1.68rem;
  width: 100%;
  object-fit: cover;
}
.box-subhead {
  font-size: 0.24rem;
  font-weight: 700;
  opacity: 0.6;
  line-height: 1.33;
}
.box-change-wrapper {
  display: flex;
  justify-content: flex-end;
  width: 100%;
}
.box-change {
  gap: 0.08rem;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.box-change:hover {
  filter: brightness(1.1);
  transition: filter 0.3s;
  cursor: pointer;
}
.box-change:hover i {
  transform: rotate(180deg);
}
.box-change span {
  font-size: 0.28rem;
  font-weight: 700;
  line-height: 1.57;
  opacity: 0.6;
}
.box-change i {
  width: 0.5rem;
  height: 0.5rem;
  background: url(https://wegame.gtimg.com/tgp_act/release/wegame/wegame20260525/images/change-icon.png)
    no-repeat center center/cover;
  transition: transform 0.3s;
}
/* ========== Game ========== */
.game.box {
  aspect-ratio: 1400 / 774;
  position: relative;
  z-index: 1;
  margin-bottom: 1.42rem;
}
.game-bg {
  width: 16.47rem;
  aspect-ratio: 1647 / 1057;
  z-index: -1;
  position: absolute;
  bottom: -0.8rem;
  left: -1rem;
  pointer-events: none;
  object-fit: cover;
}
.we-panel-hd {
  display: none;
}

/* ========== Try Play (Game Detail) ========== */
body .try-play {
  height: auto;
  background: transparent;
  position: relative;
  padding: 0.2rem 0.08rem 0.18rem 0.2rem;
}
body .try-play-hd {
  width: 100%;
}
body .try-play-pic-box {
  width: 100%;
  flex: 1;
  aspect-ratio: 1085/610;
  position: relative;
  overflow: hidden;
  height: auto;
  border-radius: 90px 8px 8px 8px;
}
body .try-play-content {
  aspect-ratio: 955/503;
  height: auto;
  position: relative;
  padding-right: 2.9rem;
}
body .try-play-bd {
  width: 2.7rem;
  position: absolute;
  top: 0;
  right: 0.1rem;
  bottom: 0;
}
body .try-play-thumb-list {
  padding-left: 0.32rem;
  -webkit-mask: linear-gradient(
    0,
    rgba(25, 69, 128, 0) 0%,
    var(--game-brand-bg-color) 0.6rem
  );
}
body .try-play-thumb-item {
  width: 2.24rem;
  height: 1.26rem;
  margin-bottom: 0.24rem;
  border-radius: 4px;
}
body .try-play-thumb-item.cur::before,
body .try-play-thumb-item:hover::before {
  display: none;
}
body .try-play-thumb-item.cur:after,
body .try-play-thumb-item:hover:after {
  border-color: var(--game-font-color);
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  border-radius: 4px;
}
body .try-play-thumb::after {
  display: none;
}
body .try-play-info {
  margin-top: 0.4rem;
}
body .try-play-info-title {
  color: var(--game-text-color);
  font-size: 0.24rem;
  font-weight: 700;
  line-height: 1.4;
  margin-right: 0.12rem;
}
body .try-play-info-title-box {
  margin-bottom: 0.12rem;
  height: 0.32rem;
}
body .try-play-info-des {
  height: 0.3rem;
}
body .try-play-info-des-num {
  color: var(--game-text-color);
  font-size: 0.16rem;
  font-weight: 700;
  opacity: 0.8;
  margin-right: 0.12rem;
}
body .try-play-info-des .stars-score-base.stars-xs .star-icon,
body .evaluation-hd .stars-score-base.stars-xs .star-icon {
  height: 0.18rem;
  background-size: 0.18rem 0.18rem;
}
body .try-play-info-des-text {
  color: var(--game-text-color);
  font-size: 0.13rem;
  font-weight: 400;
}
body .try-play-btn-text,
body .try-play-btn-desc {
  font-size: 0.24rem;
}
body .try-play-info-taglist {
  height: 0.32rem;
  gap: 0.08rem;
}
body .try-play-tag {
  font-size: 0.16rem;
  color: var(--game-text-color);
  height: 0.32rem;
  line-height: 0.32rem;
  padding: 0 0.12rem;
  background: var(--game-tag-bg);
  border-radius: 0;
}

/* ========== Special Tabs ========== */
body .special-tabs-item-text {
  color: var(--game-font-color);
  font-size: 0.2rem;
  font-weight: 900;
  opacity: 1;
}
body .special-tabs-item.cur .special-tabs-item-text {
  opacity: 0.8;
}
body .special-tabs-item:after {
  -webkit-mask: url(https://wegame.gtimg.com/tgp_act/release/wegame/wegame20260525/images/gam-tab.png)
    no-repeat center center/100% 100%;
  border-radius: 10px 10px 0 0;
  backdrop-filter: blur(10px);
  background: rgba(0, 0, 0, 0.8);
}
body .special-tabs-item.cur::after {
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(10px);
}
body .special-tabs-item {
  padding: 0.02rem 0.34rem;
  height: auto;
  line-height: 0.31rem;
}
body .special-tabs-content {
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(0.08rem);
  padding: 0.16rem 0.61rem;
  font-size: 0;
  height: 1.36rem;
}

/* ========== Evaluation ========== */
body .evaluation-content,
body .evaluation {
  height: 100%;
}
body .evaluation-article {
  font-size: 0.18rem;
}
body .evaluation-pic {
  width: 0.28rem;
  height: 0.28rem;
  margin-right: 0.02rem;
}
body .evaluation-info {
  height: 0.22rem;
  margin-bottom: 0;
}
body .evaluation-name {
  font-size: 0.2rem;
  font-weight: 900;
}
body .evaluation-des {
  margin-top: 0;
  opacity: 0.8;
  font-size: 0.16rem;
}
body .evaluation-bd:after {
  background: rgba(255, 255, 255, 0.3);
  height: 0.84rem;
}
body .evaluation-hd {
  width: 2.16rem;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
}
body .evaluation-bd {
  padding-left: 0.26rem;
}
body .evaluation-recommend {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.16rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.08rem;
}
.evaluation-recommend::before {
  content: '';
  width: 0.18rem;
  height: 0.16rem;
  background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABoAAAAYCAYAAADkgu3FAAAACXBIWXMAABYlAAAWJQFJUiTwAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAOdEVYdFNvZnR3YXJlAEZpZ21hnrGWYwAAATdJREFUeAG9lF+RwjAQxjc393gI6Am4E4ABBADvIKAY4B0FGEAAvAMCKoAKIAJaAQgo35YNhE4CDdNmZz6S+fLnl26WEHUcVVX9QltoYPtf1H2k0J+091DUQcjph9AIGltDB+gI6SAQpwXNCuKNM6XURiB78XxRhIL4hIllbQTGqdp6ll2gees7kpMnDXvEP4BphnqWrjFehhRD8sYrPetqPwT07/Dse/mRllOV0QNcH+ab2kfq8C5Wn9O3QJpyYyDdE/HbgbAgJXfqtOnYAMs73Pv0GmDKeeiZwqDM5QPy5CtsNiOpHokdT+JnhG7/8E+jLn0bdGpMyDFh4fBDg+9vir3qe+zjrTMxMJC+QU/F0SdIxwJF+6JzDFDBD2kMkG4afYHyWKAoX1S4HlgGle9OEwKBlq6BK23GZtKxt3ZIAAAAAElFTkSuQmCC)
    no-repeat center center/cover;
}

/* ========== Free Trial ========== */
.free.box {
  margin-bottom: 0.72rem;
}
.free .box-title {
  margin-bottom: 0.16rem;
}
.free-list {
  display: flex;
  flex-direction: column;
  gap: 0.16rem;
}
.free-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.12rem;
  padding-right: 0.43rem;
  position: relative;
}
.free-item-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
  border-radius: 0.04rem;
  transition: opacity 0.3s;
}
.free-item-bg-hover {
  opacity: 0;
}
.free-item:hover .free-item-bg-default {
  opacity: 0;
}
.free-item:hover .free-item-bg-hover {
  opacity: 1;
}
.free-item:hover .free-discount,
.free-item:hover .free-scoring:not(.free-scoring--price) .free-price {
  display: none;
}
.free-item:hover .free-scoring:not(.free-scoring--price) {
  display: flex;
}
.free-discount,
.free-price {
  display: block;
}
.free-left {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 0.2rem;
}
.free-pic {
  width: 3.12rem;
  aspect-ratio: 312 / 178;
  overflow: hidden;
  cursor: pointer;
  border-radius: 0.08rem;
}
.free-pic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.free-ifo {
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  flex: 1;
}
.free-name {
  color: var(--game-text-color);
  font-size: 0.2rem;
  font-weight: 700;
  line-height: 1.67;
}
.free-name span {
  font-size: 0.12rem;
  color: var(--game-text-color);
  margin-left: 0.12rem;
  opacity: 0.8;
  font-weight: 400;
}
.free-label-list {
  display: flex;
  gap: 0.04rem;
  height: 0.28rem;
  flex-wrap: wrap;
  overflow: hidden;
}
.free-label {
  color: var(--game-text-color);
  font-size: 0.16rem;
  font-weight: 400;
  padding: 0 0.1rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.08rem;
  border-radius: 0.02rem;
  background: var(--game-label-bg);
}
.free-label.active::before {
  content: '';
  width: 0.14rem;
  height: 0.18rem;
  background: url(https://wegame.gtimg.com/tgp_act/release/wegame/wegame20260525/images/label-active.png)
    no-repeat center center/cover;
}
.free-others {
  display: flex;
  align-items: center;
  gap: 0.1rem;
  height: 0.46rem;
}
.free-scoring {
  display: none;
  align-items: baseline;
}
.free-scoring-num {
  color: var(--game-text-color);
  font-size: 0.4rem;
  display: flex;
  align-items: baseline;
  font-family: var(--font-family-mfgeheinumber);
  margin-right: 0.1rem;
}
.free-scoring-num i {
  font-size: 0.32rem;
}
.free-scoring-text {
  font-family: var(--font-family-base);
  font-size: 0.18rem;
  opacity: 0.6;
  align-items: flex-end;
}

/* ========== Free Rating ========== */
.free-rating {
  display: flex;
  align-items: center;
}
.free-rating-stars {
  display: flex;
  gap: 0.02rem;
}
.free-rating-stars .star {
  display: block;
  width: 0.16rem;
  height: 0.16rem;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.free-rating-stars .star-full {
  background-image: url(https://wegame.gtimg.com/tgp_act/release/wegame/wegame20260525/images/star.png);
}
.free-rating-stars .star-half {
  background-image: url(https://wegame.gtimg.com/tgp_act/release/wegame/wegame20260525/images/star-half.png);
}
.free-rating-stars .star-empty {
  background-image: url(https://wegame.gtimg.com/tgp_act/release/wegame/wegame20260525/images/star-no.png);
}
.free-rating-count {
  color: var(--game-text-color);
  font-size: 0.12rem;
  opacity: 0.6;
  line-height: 1.6;
}
.free-rating-empty,
.free-rating-num {
  color: var(--game-text-color);
  font-family: var(--font-family-mfgeheinumber);
  font-weight: 800;
  line-height: 1;
  margin-right: 0.07rem;
}
.free-rating-empty {
  font-size: 0.32rem;
}
.free-rating-num {
  font-size: 0.48rem;
}
.free-rating-detail {
  display: flex;
  flex-direction: column;
  gap: 0.04rem;
}
.free-discount {
  width: 0.46rem;
  height: 0.2rem;
  line-height: 0.21rem;
  background: var(--game-brand-font-color);
  color: #0b0b0b;
  text-align: center;
  font-size: 0.14rem;
  font-weight: 900;
  letter-spacing: 0.01rem;
}
.free-right {
  display: flex;
  flex-direction: column;
}
.free-price {
  color: var(--game-text-color);
  font-size: 0.24rem;
  font-weight: 700;
}
.free-time {
  margin-top: 0.2rem;
  color: var(--game-text-color);
  font-size: 0.18rem;
  font-weight: 400;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 0.3rem;
}
.free-time span {
  font-family: var(--font-family-mfgeheinumber);
  color: var(--game-text-color);
  font-size: 0.32rem;
  font-weight: 800;
  padding: 0.06rem;
  text-align: center;
  margin-top: -0.02rem;
}

/* ========== News ========== */
.news .box-title {
  margin-bottom: 0.32rem;
}
.news-viewport {
  width: 100%;
  overflow-x: clip;
  overflow-y: visible;
  position: relative;
}
.news-list {
  display: flex;
  gap: var(--game-card-gap);
  transition: transform 0.4s ease;
}
.news-item {
  position: relative;
  background: #1c1f22;
  cursor: pointer;
  transition: transform 0.3s;
  overflow: hidden;
  aspect-ratio: 332 / 321;
  min-width: calc(25% - var(--game-card-gap) * 3 / 4);
  max-width: calc(25% - var(--game-card-gap) * 3 / 4);
  flex-shrink: 0;
}
.news-list:has(.news-item:nth-child(2):last-child) .news-item {
  /* min-width: calc(50% - var(--game-card-gap) / 2);
  max-width: calc(50% - var(--game-card-gap) / 2); */
}
.news-list:has(.news-item:nth-child(3):last-child) .news-item {
  /* min-width: calc(33.3% - var(--game-card-gap) * 2 / 3);
  max-width: calc(33.3% - var(--game-card-gap) * 2 / 3); */
}
.news-item-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  object-fit: cover;
}
.news-item:hover .news-pic img {
  transform: scale(1.1);
}
.news-pic {
  aspect-ratio: 332 / 196;
}
.news-pic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.news-info {
  flex: 1;
  position: relative;
  padding: 0.14rem 0.16rem;
  box-sizing: border-box;
  z-index: 1;
}
.news-desc {
  color: var(--game-text-color);
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  font-size: 0.2rem;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 0.08rem;
}
.news-time {
  color: rgba(227, 227, 227, 0.6);
  font-size: 0.18rem;
  font-weight: 400;
  line-height: 1.55;
  opacity: 0.7;
}

/* ========== Popup ========== */
.pop {
  background: rgba(16, 18, 20, 0.8);
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  inset: 0;
  z-index: 555;
}
.pop-wrapper {
  position: relative;
  background: #070809;
  border: 0.01rem solid rgba(255, 255, 255, 0.1);
  filter: drop-shadow(0 0.08rem 0.2rem rgba(0, 0, 0, 0.4));
}
.pop-wrapper::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 0.02rem;
  top: 0;
  left: 0;
  background: var(--wgui-popbox-linear-bg);
  z-index: 2;
}

/* Popup - Rule */
.pop-rule .pop-wrapper {
  width: 5.8rem;
  height: 4.36rem;
  padding: 0.4rem;
  padding-bottom: 0;
}
.pop-rule .we-popbox-ft {
  margin: 0;
}
.pop-rule-cont {
  display: flex;
  gap: 0.12rem;
  height: 3.34rem;
}
.pop-rule-icon {
  width: 0.36rem;
  height: 0.36rem;
  background: url(https://wegame.gtimg.com/tgp_act/release/wegame/wegame20260525/images/rule-icon-1.png)
    no-repeat center center/cover;
}
.pop-rule-text {
  flex: 1;
  display: flex;
  gap: 0.1rem;
  flex-direction: column;
}
.pop-rule-title {
  height: 0.28rem;
  line-height: 0.28rem;
  color: var(--game-text-color);
  font-size: 0.2rem;
  font-weight: 700;
}
.pop-rule-desc {
  color: var(--game-text-muted);
  font-size: 0.14rem;
  font-weight: 400;
  line-height: 1.57;
  flex: 1;
  overflow-y: auto;
  margin-bottom: 0.1rem;
}

/* Popup - Get */
.pop-get .pop-wrapper {
  width: 3.9rem;
  height: 4.86rem;
  padding: 0.54rem 0.3rem 0;
}
.pop-get-cont {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.pop-get-icon {
  width: 0.72rem;
  aspect-ratio: 1;
  background: url(https://wegame.gtimg.com/tgp_act/release/wegame/wegame20260525/images/get-icon.png)
    no-repeat center center/cover;
  margin-bottom: 0.14rem;
}
.pop-get-title {
  color: var(--game-text-color);
  text-align: center;
  font-size: 0.2rem;
  font-weight: 700;
  line-height: 0.26rem;
  margin-bottom: 0.16rem;
}
.pop-get-pic {
  width: 100%;
  height: 1.38rem;
  padding: 0.08rem 0.18rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.04rem;
}
.pop-get-pic img {
  max-width: 100%;
  max-height: 100%;
}
.pop-get-text {
  color: var(--game-text-color);
  font-size: 0.13rem;
  font-weight: 700;
  line-height: 0.22rem;
  margin-bottom: 0.02rem;
}
.pop-get-desc {
  color: var(--game-text-muted);
  font-size: 0.14rem;
  font-weight: 400;
  line-height: 0.22rem;
}
body .pop-get-btn {
  position: absolute;
  bottom: 0.32rem;
  width: 1.4rem;
}

/* ========== Pagination ========== */
.pagination-wrapper {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  width: 100%;
  height: 0.42rem;
}
.pagination-wrapper .pagination {
  position: relative;
}
.pagination-num {
  display: flex;
  align-items: center;
  margin-right: 0.22rem;
}
.pagination-num span {
  width: 0.42rem;
  font-size: 0.24rem;
  font-weight: 700;
  opacity: 0.4;
  cursor: pointer;
  transition: opacity 0.3s;
  text-align: center;
}
.pagination-num span:hover {
  opacity: 0.6;
}
.pagination-num span.active {
  opacity: 0.8;
}
.pagination {
  display: flex;
  align-items: center;
  gap: 0.12rem;
  position: absolute;
  right: 0;
}
.news:has(.news-list > .news-item:nth-child(4):last-child) .pagination,
.news:has(.news-list > .news-item:nth-child(3):last-child) .pagination,
.news:has(.news-list > .news-item:nth-child(2):last-child) .pagination,
.news:has(.news-list > .news-item:only-child) .pagination {
  display: none;
}
.pagination-btn {
  width: 0.36rem;
  height: 0.36rem;
  position: relative;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
}
.pagination-btn::after {
  position: absolute;
  inset: 0;
  content: '';
  border-radius: 0.36rem;
  background: var(--game-brand-bg-color);
  opacity: 0.3;
  transition: opacity 0.3s;
}
.pagination-btn:hover::after {
  opacity: 0.5;
}
.pagination-btn.disabled {
  pointer-events: none;
  opacity: 0.5;
}
.pagination-btn::before {
  opacity: 0.6;
  content: '';
  width: 0.07rem;
  height: 0.12rem;
  background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAZCAYAAAA4/K6pAAAACXBIWXMAABYlAAAWJQFJUiTwAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAOdEVYdFNvZnR3YXJlAEZpZ21hnrGWYwAAAHxJREFUeAHdjssNgCAQBRdjAXYgnUoJdiCdWIIlGDuwA9wDHoywHzUxMMk7kDADEK440BLuOI2fCugiIY8sgheHLyK+kghe6nBLPRGLW7lIQzT2uBw9MD+YidcnTva/yeMb2RUox8BzmQjI5ExALicCOhlpcfY8GGM2UHIAo0aNkVihEV0AAAAASUVORK5CYII=)
    no-repeat center center/cover;
  transition: opacity 0.3s;
  z-index: 1;
}
.pagination-prev:before {
  transform: rotate(180deg);
}

/* ========== Misc ========== */
.icon-loading:before,
.icon-loading:after {
  display: none !important;
}


/* ============================================================
 * trial-new 组件样式
 * 整合自 store 仓库的以下样式文件：
 * - block-try-play.css
 * - widget-evaluation.css
 * - widget-screenshot.css
 * - widget-special-tabs.css
 * - widget-star.css
 * - widget-gamevideo.css
 * - newzone-test-skeleton.css (skeleton 部分)
 * ============================================================ */

/* ==================== 面板标题 ==================== */

.panel-tryplay .panel-hdinfos-title {
  color: #fff;
}

.panel-hdinfos {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}

.panel-hdinfos-title {
  font-size: 32px;
  color: #3c3c3c;
  color: var(--color-text-1, #3c3c3c);
  font-weight: bold;
  font-family: var(--font-family-sanscnheavy, inherit);
}

/* ==================== try-play 主布局 ==================== */

.try-play {
  margin-bottom: 40px;
  padding: 20px 2px 18px 20px;
  background-color: #fff;
  background-color: var(--color-fill-1, #fff);
  border-radius: 0px;
  border-radius: var(--wg-corner1, 0px);
  overflow: hidden;
  height: 552px;
}

.try-play-content {
  height: 528px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.try-play-hd {
  width: 772px;
}

.try-play-pic-box {
  width: 772px;
  height: 436px;
  position: relative;
  border-radius: 0px;
  border-radius: var(--wg-corner2, 0px);
  overflow: hidden;
}

.try-play-pic {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* 视频播放层 - 绝对定位覆盖封面图 */
.try-play-video {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  pointer-events: none;
}

.try-play-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 18px;
}

.try-play-info-hd {
  overflow: hidden;
}

.try-play-info-title-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 2px;
}

.try-play-info-title {
  color: #3c3c3c;
  color: var(--color-text-1, #3c3c3c);
  font-size: 20px;
  font-weight: bold;
  margin-right: 11px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  max-width: 2.4rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  cursor: pointer;
}

.try-play-info-title:hover {
  color: #ff8f00;
  color: var(--color-brand1, #ff8f00);
}

.try-play-info-taglist {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  height: 24px;
  overflow: hidden;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  gap: 6px;
}

.try-play-tag {
  display: inline-block;
  padding: 0 8px;
  height: 24px;
  line-height: 24px;
  font-size: 12px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  color: rgba(255, 255, 255, 0.6);
  cursor: default;
}

.try-play-tag--recommend {
  background: rgba(255, 143, 0, 0.08);
  border-color: rgba(255, 143, 0, 0.2);
  color: #FF7F1C;
}

.try-play-info-taglist .complete .we-tag {
  background: rgba(255, 143, 0, 0.08);
  border-color: rgba(255, 143, 0, 0.2);
  color: #FF7F1C;
  cursor: default;
}

.try-play-info-des {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.try-play-info-des-num {
  color: #000;
  color: var(--color-text-4, #000);
  font-size: 18px;
  font-weight: bold;
  margin-right: 7px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.try-play-info-des .stars-score-base {
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.try-play-info-des .stars-score-base.stars-xs {
  width: 90px;
}

.try-play-info-des .stars-score-base.stars-xs .star-icon {
  background-size: 18px 14px;
}

.try-play-info-des-text {
  color: #757575;
  color: var(--color-text-2, #757575);
  font-size: 12px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  margin-left: 7px;
}

.try-play-info-bd {
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.try-play-info-focus {
  display: flex;
  align-items: center;
}

.try-play-info-focus-person {
  font-size: 13px;
  font-size: var(--font-size-s, 13px);
  color: #757575;
  color: var(--color-text-2, #757575);
  padding-right: 8px;
  margin-right: 8px;
  border-right: 1px solid #e4e4e4;
  border-right: 1px solid var(--color-line-1, #e4e4e4);
}

.try-play-info-focus-person strong {
  font-size: 18px;
  font-size: var(--font-size-l, 18px);
  color: #000;
  color: var(--color-text-4, #000);
  margin-right: 4px;
}

.try-play-info-time {
  font-size: 13px;
  font-size: var(--font-size-s, 13px);
  color: #757575;
  color: var(--color-text-2, #757575);
}

/* ==================== 按钮 ==================== */

.try-play-btn {
  height: 42px;
  line-height: 42px;
  padding: 0 30px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background: var(--color-priamry-linear-bg, linear-gradient(135deg, #ffc107, #ff8f00));
  border: none;
  border-radius: 0px;
  border-radius: var(--wg-corner4, 21px);
  max-width: 330px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  -webkit-transition: all .2s ease;
  transition: all .2s ease;
  min-width: 201px;
  display: flex;
  justify-content: center;
  cursor: pointer;
  text-decoration: none;
}

.try-play-btn:hover {
  opacity: 0.8;
}

.try-play-btn-text {
  color: var(--wgui-priamry-button-color, #fff);
  font-size: 15px;
  font-weight: bold;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.try-play-btn-des,
.try-play-btn-desc {
  color: var(--wgui-priamry-button-color, #fff);
  font-size: 13px;
  margin-left: 7px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.try-play-btn.disabled {
  cursor: default;
  background-color: rgba(255, 255, 255, 0.3);
  opacity: .3;
}

/* ==================== 缩略图侧栏 ==================== */

.try-play-bd {
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.try-play-thumb {
  height: calc(100% + 3px);
  position: relative;
  margin-top: -3px;
}

.try-play-thumb:after {
  content: "";
  width: 100%;
  height: 48px;
  position: absolute;
  bottom: 0;
  left: 0;
  background-image: -webkit-gradient(linear, left bottom, left top, from(white), to(rgba(255, 255, 255, 0)));
  background-image: linear-gradient(to top, white, rgba(255, 255, 255, 0));
  background-image: var(--thumb-linear, linear-gradient(to top, white, rgba(255, 255, 255, 0)));
  pointer-events: none;
}

.try-play-thumb-list {
  padding: 3px 16px 0 24px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  height: 100%;
  overflow: hidden;
  overflow-y: auto;
  list-style: none;
  margin: 0;
}

.try-play-thumb-list::-webkit-scrollbar-thumb {
  border-radius: 6px;
  background-color: rgba(0, 0, 0, 0.15);
  background-color: var(--color-fill-scrollbar-thumb-default, rgba(0, 0, 0, 0.15));
}

.try-play-thumb-list::-webkit-scrollbar {
  width: 6px;
  height: 6px;
  background: transparent;
}

.try-play-thumb-item {
  position: relative;
  width: 160px;
  height: 92px;
  margin-bottom: 18px;
  cursor: pointer;
  border-radius: 0px;
  border-radius: var(--corner-2, 4px);
  -webkit-transition: all 0.15s ease-out;
  transition: all 0.15s ease-out;
  overflow: hidden;
}

.try-play-thumb-item.cur:after,
.try-play-thumb-item:hover:after {
  content: "";
  width: 162px;
  height: 94px;
  border: 2px solid #ffe082;
  position: absolute;
  top: -1px;
  left: -1px;
  border-radius: 0px;
  border-radius: var(--corner-2, 4px);
}

.try-play-thumb-item.cur::before,
.try-play-thumb-item:hover::before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 50%;
  left: -10px;
  margin-top: -5px;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-right: 10px solid #ffe082;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.try-play-thumb-pic {
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
  object-fit: cover;
}

.try-play-thumb-pic img {
  border-radius: 0px;
  border-radius: var(--corner-2, 4px);
}

.try-play .txp_info_icon {
  display: none;
}

/* ==================== 星星评分 ==================== */

.stars {
  font-size: 0;
}

.stars.hand .star-icon {
  cursor: pointer;
}

.stars .star-icon {
  display: inline-block;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  vertical-align: middle;
}

.stars-score-base {
  position: relative;
  display: inline-block;
  padding: 0;
  font-size: 0;
  line-height: initial;
}

.stars-score-base.stars-xs {
  width: 80px;
}

.stars-score-base.stars-xs .star-icon {
  width: 100%;
  height: 14px;
  padding: 0 2px;
  background-size: 16px 14px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  vertical-align: middle;
}

.stars-score-base.stars-small {
  width: 105px;
}

.stars-score-base.stars-small .star-icon {
  width: 100%;
  height: 16px;
  padding: 0 2px;
  background-size: 21px 16px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  vertical-align: middle;
}

.stars-score-top {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  overflow: hidden;
  white-space: nowrap;
}

.stars-score-top .star-icon {
  display: inline-block;
  background-repeat: repeat;
  /* 内联 SVG 星星（黄色填充） */
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 14'%3E%3Cpath fill='%23ffc107' d='M8 0l2.47 4.74L16 5.72l-4 3.7.94 5.22L8 12.07 3.06 14.64 4 9.42 0 5.72l5.53-.98z'/%3E%3C/svg%3E");
}

.stars-score-bottom {
  display: block;
  z-index: 0;
}

.stars-score-bottom .star-icon {
  display: inline-block;
  background-repeat: repeat;
  /* 内联 SVG 星星（灰色填充） */
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 14'%3E%3Cpath fill='%23e0e0e0' d='M8 0l2.47 4.74L16 5.72l-4 3.7.94 5.22L8 12.07 3.06 14.64 4 9.42 0 5.72l5.53-.98z'/%3E%3C/svg%3E");
}

/* ==================== 特殊选项卡 (special-tabs) ==================== */

.special-tabs {
  width: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 20;
}

.special-tabs-head {
  position: relative;
  z-index: 0;
}

.special-tabs-mask {
  width: 36px;
  height: 27px;
  position: absolute;
  top: 0;
  background-color: rgba(0, 0, 0, 0.3);
  -webkit-transition: all .4s ease;
  transition: all .4s ease;
  pointer-events: none;
}

.special-tabs-list {
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding-left: 10px;
  list-style: none;
  margin: 0;
}

.special-tabs-item {
  min-width: 78px;
  height: 26px;
  line-height: 28px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  font-weight: bold;
  padding: 0 15px;
  position: relative;
  z-index: 1;
  cursor: pointer;
  -webkit-transition: all .15s ease;
  transition: all .15s ease;
  overflow: hidden;
}

.special-tabs-item:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: -1;
    border-radius: 4px 4px 0 0;
    backdrop-filter: blur(7.949999809265137px);

}

.special-tabs-item.cur,
.special-tabs-item:hover {
  color: #fff;
  color: var(--color-white, #fff);
}

.special-tabs-item.cur .special-tabs-item-text,
.special-tabs-item:hover .special-tabs-item-text {
  opacity: 1;
}

.special-tabs-item.cur::after {
  background-color: rgba(0, 0, 0, 0.6); backdrop-filter: blur(0);
}

.special-tabs-content {
  height: 96px;
  padding: 12px 44px;
  background-color: rgba(0, 0, 0, 0.75);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  border-radius: 0 0 6px 6px;
  overflow: hidden;
}

.special-tabs-content-list {
  height: 100%;
  position: relative;
  list-style: none;
  margin: 0;
  padding: 0;
}

.special-tabs-content-item {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.special-tabs-item-text {
  color: #fff;
  position: relative;
  z-index: 3;
  opacity: 0.7;
}

/* ==================== 评测 (evaluation) ==================== */

.evaluation {
  position: relative;
}

.evaluation-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.evaluation-hd {
  width: 154px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  padding-right: 18px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  cursor: pointer;
}

.evaluation-hd .stars-score-base {
  margin-left: -2px;
}

.evaluation-hd .stars-score-base.stars-xs {
  width: 90px;
}

.evaluation-hd .stars-score-base.stars-xs .star-icon {
  background-size: 18px 14px;
}

.evaluation-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 6px;
}

.evaluation-pic {
  width: 20px;
  height: 20px;
  border-radius: 200px;
  border-radius: var(--corner-circle, 200px);
  overflow: hidden;
  margin-right: 6px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.evaluation-name {
  font-size: 14px;
  color: #fff;
  font-weight: bold;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.evaluation-des {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.8);
  margin-top: 8px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.evaluation-bd {
  padding-left: 24px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  position: relative;
  cursor: pointer;
}

.evaluation-bd:after {
  content: "";
  width: 1px;
  height: 60px;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  background-color: rgba(255, 255, 255, 0.1);
}

.evaluation-article {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.8;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  text-overflow: ellipsis;
}

.evaluation-article br {
  display: none;
}

.evaluation-article p {
  display: inline;
  color: rgba(255, 255, 255, 0.8) !important;
}

.evaluation-article div,
.evaluation-article p,
.evaluation-article ul,
.evaluation-article ol,
.evaluation-article li,
.evaluation-article dl,
.evaluation-article dt,
.evaluation-article dd {
  display: inline;
}

.evaluation-row {
  width: 11px;
  height: 18px;
  /* 内联 SVG 箭头 */
  background: url(https://wegame.gtimg.com/g.55555-r.c4663/store/testzone/assets/info-row-142df2e2.svg) no-repeat center top;
  background-size: contain;
  position: absolute;
  top: 50%;
  margin-top: -9px;
  cursor: pointer;
  opacity: .6;
  -webkit-transition: all .15s ease;
  transition: all .15s ease;
}

.evaluation-row:hover {
  opacity: 1;
}

.evaluation-row.left {
  left: -32px;
}

.evaluation-row.right {
  -webkit-transform: rotateY(180deg);
  transform: rotateY(180deg);
  right: -32px;
}

.evaluation-row.disabled {
  opacity: 0.4;
  cursor: default;
}

.evaluation-row.disabled:hover {
  opacity: 0.4;
}

/* ==================== KOL 推荐 ==================== */

.kol-user {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  cursor: pointer;
}

.kol-hd {
  width: 175px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  padding-right: 18px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.kol-user-pic {
  width: 52px;
  height: 52px;
  border-radius: 52px;
  margin-right: 8px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  overflow: hidden;
}

.kol-user-pic img {
  border-radius: 52px;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.kol-userinfo {
  min-width: 102px;
}

.kol-userinfo-name {
  display: inline-block;
  font-size: 14px;
  font-size: var(--font-size-base, 14px);
  color: #fff;
  color: var(--color-white, #fff);
  line-height: 18px;
  max-width: 102px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.kol-userinfo-tag {
  min-width: 102px;
  line-height: 20px;
  border-radius: var(--wg-corner4, 10px);
  background-color: #ffc107;
  background-color: var(--color-brand1-5, #ffc107);
  font-size: 11px;
  color: #3c3c3c;
  border: 1px solid transparent;
  font-weight: bold;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.kol-userinfo-tag:hover {
  background-color: #ffd54f;
  background-color: var(--color-brand1-4, #ffd54f);
}

.kol-userinfo-tag-icon {
  width: 4px;
  height: 6px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='11' height='18' viewBox='0 0 11 18'%3E%3Cpath fill='%23fff' d='M10 1L2 9l8 8' stroke='%23fff' stroke-width='1.5' fill='none'/%3E%3C/svg%3E") no-repeat center top;
  background-size: contain;
  -webkit-transform: rotateY(180deg);
  transform: rotateY(180deg);
  -webkit-filter: invert(1);
  filter: invert(1);
  margin-left: 4px;
}

.kol-userinfo-tag-text {
  display: inline-block;
  max-width: 84px;
  height: 20px;
  font-size: 11px;
  overflow: hidden;
}

.kol-userinfo-tag--normal {
  background-color: transparent;
  background: rgba(0, 0, 0, 0.16);
  border: 1px solid #FFC107;
  color: #FFC107;
  border-radius: 4px;
  text-align: center;
  min-width: 102px;
  line-height: 20px;
  font-size: 11px;
  font-weight: bold;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.kol-userinfo-tag--normal:hover {
  background-color: transparent;
}

.kol-userinfo-tag--normal .kol-userinfo-tag-icon {
  display: none;
}

/* ==================== 截图 (screenshot) ==================== */

.screenshot {
  height: 100%;
}

.screenshot-box {
  max-width: 100%;
  height: 100%;
  text-align: center;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
}

.screenshot-content {
  max-width: 100%;
  overflow: hidden;
}

.screenshot-list {
  max-width: 100%;
  overflow: hidden;
  font-size: 0;
  height: 54px;
  white-space: nowrap;
  list-style: none;
  margin: 0;
  padding: 0;
}

.screenshot-item {
  display: inline-block;
  width: 89px;
  height: 54px;
  border-radius: 0px;
  border-radius: var(--wg-corner1, 0px);
  overflow: hidden;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin-right: 10px;
  opacity: .4;
  -webkit-transition: all .15s ease;
  transition: all .15s ease;
  cursor: pointer;
}

.screenshot-item:last-child {
  margin-right: 0;
}

.screenshot-item.cur,
.screenshot-item:hover {
  border: 2px solid #fff;
  opacity: 1;
}

.screenshot-pic {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

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

.screenshot-pic.slide-video::before {
  cursor: pointer;
  content: "";
  display: block;
  width: 25px;
  height: 29px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='25' height='29' viewBox='0 0 25 29'%3E%3Cpath fill='%23fff' d='M23 14.5L2 28V1z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  left: 50%;
  top: 50%;
  margin: -15px 0 0 -13px;
  z-index: 20;
  opacity: 1;
}

.screenshot-row {
  width: 11px;
  height: 18px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='11' height='18' viewBox='0 0 11 18'%3E%3Cpath fill='%23fff' d='M10 1L2 9l8 8' stroke='%23fff' stroke-width='1.5' fill='none'/%3E%3C/svg%3E") no-repeat center top;
  background-size: contain;
  position: absolute;
  top: 50%;
  margin-top: -9px;
  cursor: pointer;
  opacity: .6;
  -webkit-transition: all .15s ease;
  transition: all .15s ease;
}

.screenshot-row:hover {
  opacity: 1;
}

.screenshot-row.left {
  left: -32px;
}

.screenshot-row.right {
  -webkit-transform: rotateY(180deg);
  transform: rotateY(180deg);
  right: -32px;
}

.screenshot-row.disabled {
  opacity: 0.4;
  cursor: default;
}

.screenshot-row.disabled:hover {
  opacity: 0.4;
}

/* ==================== 视频播放器 ==================== */

.gamevideo {
  width: 100%;
  height: 100%;
  -webkit-transition: opacity 0.15s linear;
  transition: opacity 0.15s linear;
  background-color: #000;
}

.gamevideo * {
  cursor: pointer !important;
}

.gamevideo .txp_bottom,
.gamevideo .plugin_ctrl_txp_bottom {
  display: none;
}

.gamevideo video,
.gamevideo > video {
  height: 100%;
  width: 100%;
  -o-object-fit: cover !important;
  object-fit: cover !important;
  overflow: hidden;
}

.gamevideo .txp_info_icon {
  display: none;
}

.gamevideo--position {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 8;
}

.gamevideo--readonly {
  pointer-events: none;
}

.gamevideo--readonly * {
  cursor: default !important;
  pointer-events: none !important;
}

.gamevideo-wrapper {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

/* 右键菜单隐藏 */
.txp_contextmenu {
  display: none !important;
}

/* ==================== 过渡动画 ==================== */

.fade-ani-enter-active,
.fade-ani-leave-active {
  -webkit-transition: opacity .45s ease;
  transition: opacity .45s ease;
}

.fade-ani-enter-from,
.fade-ani-leave-to {
  opacity: 0;
}

/* ==================== 骨架屏 (skeleton) ==================== */

.skeleton-panel {
  margin-bottom: 40px;
}

.skeleton-panel-hd {
  margin-bottom: 18px;
}

.skeleton-panel-title {
  width: 200px;
  height: 30px;
  background-color: rgba(0, 0, 0, 0.2);
  background-color: var(--skeleton-bg-color-fill-2, rgba(0, 0, 0, 0.2));
  border-radius: 4px;
}

.skeleton-tryplay {
  padding: 18px 2px 18px 20px;
  height: 590px;
  background-color: rgba(0, 0, 0, 0.1);
  background-color: var(--skeleton-bg-color-fill-1, rgba(0, 0, 0, 0.1));
  border-radius: 0px;
  border-radius: var(--corner-1, 0px);
  margin-bottom: 40px;
}

.skeleton-tryplay-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 514px;
}

.skeleton-tryplay-hd {
  width: 772px;
}

.skeleton-tryplay-pic {
  width: 100%;
  height: 436px;
  position: relative;
  border-radius: 0px;
  border-radius: var(--corner-1, 0px);
  background-color: rgba(0, 0, 0, 0.1);
  background-color: var(--skeleton-bg-color-fill-1, rgba(0, 0, 0, 0.1));
  overflow: hidden;
}

.skeleton-tryplay-pic-content {
  width: 100%;
  height: 96px;
  background-color: rgba(0, 0, 0, 0.1);
  background-color: var(--skeleton-bg-color-fill-1, rgba(0, 0, 0, 0.1));
  position: absolute;
  left: 0;
  bottom: 0;
}

.skeleton-tryplay-info {
  margin-top: 18px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}

.skeleton-tryplay-info-hd {
  width: 400px;
  height: 60px;
  background-color: rgba(0, 0, 0, 0.2);
  background-color: var(--skeleton-bg-color-fill-2, rgba(0, 0, 0, 0.2));
  border-radius: 4px;
}

.skeleton-tryplay-info-bd {
  width: 200px;
  height: 42px;
  background-color: rgba(0, 0, 0, 0.2);
  background-color: var(--skeleton-bg-color-fill-2, rgba(0, 0, 0, 0.2));
  border-radius: 21px;
}

.skeleton-tryplay-bd {
  width: 160px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin: 3px 16px 0 24px;
  background-color: rgba(0, 0, 0, 0.2);
  background-color: var(--skeleton-bg-color-fill-2, rgba(0, 0, 0, 0.2));
  border-radius: 0px;
  border-radius: var(--corner-1, 0px);
}

/* 骨架屏动画 */
@keyframes skeleton-loading {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
  100% {
    opacity: 1;
  }
}

.skeleton-tryplay,
.skeleton-panel {
  animation: skeleton-loading 1.5s ease-in-out infinite;
}

/* ==================== 暗黑主题适配 ==================== */

.theme-cn-dark .try-play-info-des-num,
body.theme-cn-dark .try-play-info-des-num {
  color: rgba(255, 255, 255, 0.6);
}

.theme-cn-dark .try-play-btn,
body.theme-cn-dark .try-play-btn {
  border: 1px solid rgba(255, 193, 7, 0.3);
  background-color: rgba(255, 193, 7, 0.05);
}

.theme-cn-dark .try-play-btn .try-play-btn-text,
.theme-cn-dark .try-play-btn .try-play-btn-des,
body.theme-cn-dark .try-play-btn .try-play-btn-text,
body.theme-cn-dark .try-play-btn .try-play-btn-des {
  color: var(--wgui-priamry-button-color, #fff);
}

.theme-cn-dark .stars-score-bottom,
body.theme-cn-dark .stars-score-bottom {
  opacity: .2;
}

.theme-cn-dark .kol-userinfo-tag-icon,
html.theme-cn-dark .kol-userinfo-tag-icon {
  -webkit-filter: invert(1);
  filter: invert(1);
}
