/* Function */
.ac-dn {
  display: none !important;
}
.ac-cb:after {
  display: block;
  visibility: hidden;
  clear: both;
  height: 0;
  overflow: hidden;
  content: ".";
}
.ac-ib {
  display: inline-block;
}
.ac-blk {
  display: block;
}
.ac-blkfull {
  display: block;
  width: 100%;
  height: 100%;
}
.ac-img {
  display: block;
  width: 100%;
}
.ac-dis {
  pointer-events: none;
}
.ac-hide {
  display: none !important;
}
.ac-vhide {
  visibility: hidden;
}
/* 适配iphoneX */
.ac-iphonexfull {
  padding: constant(safe-area-inset-top) constant(safe-area-inset-right)
    constant(safe-area-inset-bottom) constant(safe-area-inset-left);
  padding: env(safe-area-inset-top) env(safe-area-inset-right)
    env(safe-area-inset-bottom) env(safe-area-inset-left);
}
.ac-iphonexlr {
  padding-left: constant(safe-area-inset-left);
  padding-right: constant(safe-area-inset-right);
  padding-left: env(safe-area-inset-left);
  padding-right: env(safe-area-inset-right);
}
.ac-iphonexbm {
  padding-bottom: constant(safe-area-inset-bottom);
  padding-bottom: env(safe-area-inset-bottom);
}
.ac-iphonexmgfull {
  margin: constant(safe-area-inset-top) constant(safe-area-inset-right)
    constant(safe-area-inset-bottom) constant(safe-area-inset-left);
  margin: env(safe-area-inset-top) env(safe-area-inset-right)
    env(safe-area-inset-bottom) env(safe-area-inset-left);
}
.ac-iphonexmglf {
  margin-left: constant(safe-area-inset-left);
  margin-right: constant(safe-area-inset-right);
  margin-left: env(safe-area-inset-left);
  margin-right: env(safe-area-inset-right);
}
.ac-iphonexmgbm {
  margin-bottom: constant(safe-area-inset-bottom);
  margin-bottom: env(safe-area-inset-bottom);
}
/* 1px解决文案：优点，可画圆角，重置可变色；缺点，安卓低端机边框可能会糊，会丢线；*/
.ac-bd {
  position: relative;
}
.ac-bd *,
.ac-txt * {
  position: relative;
  z-index: 1;
}
.ac-bd:after,
.ac-txt:after {
  position: absolute;
  z-index: 2;
  content: "";
  top: 0;
  left: 0;
  box-sizing: border-box;
  width: 100%;
  height: 100%;
  transform-origin: top left;
  border-style: solid;
  border-color: rgba(0, 0, 0, 0.1);
  border-width: 0;
  pointer-events: none;
}
/* @Media & for UI fix */
/*-----------------------------------------------------*/
/* 1px解决方案 2倍屏 */
@media screen and (-webkit-min-device-pixel-ratio: 2) {
  .ac-bd:after,
  .ac-txt:after {
    width: 200%;
    height: 200%;
    transform: scale(0.5);
    border-color: rgba(0, 0, 0, 0.1);
  }
}
/* 1px解决方案 3倍屏 */
@media screen and (-webkit-min-device-pixel-ratio: 3) {
  .ac-bd:after,
  .ac-txt:after {
    width: 300%;
    height: 300%;
    transform: scale(0.333333);
    border-color: rgba(0, 0, 0, 0.13);
  }
}
/* Position */
.ac-fl {
  float: left;
}
.ac-fr {
  float: right;
}
.ac-pr {
  position: relative;
}
.ac-pa {
  position: absolute;
}
.ac-prafll {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
}
.ac-fix {
  position: fixed;
}
.ac-fixfll {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
}
.ac-bgfll {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-position: center;
  background-size: 100% 100%;
  background-repeat: no-repeat;
}
/* Align */
/* absolute 自身 左右居中 */
.ac-hc {
  position: absolute !important;
  left: 50%;
  transform: translateX(-50%);
}
/* absolute 自身 上下居中 */
.ac-vc {
  position: absolute !important;
  top: 50%;
  transform: translateY(-50%);
}
/* absolute 自身 绝对居中 */
.ac-cc {
  position: absolute !important;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
/* flex 内容多行居中排版，需要定高 */
.ac-fvc {
  display: flex;
  justify-content: center;
  flex-direction: column;
  -webkit-box-pack: center;
}
.ac-flvc {
  display: flex;
  align-content: center;
  align-items: center;
}
.ac-fcc {
  display: flex;
  justify-content: center;
  align-items: center;
}
.ac-fbvc {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.ac-flex11 {
  flex: 1 1 auto;
}
.ac-flex01 {
  flex: 0 1 auto;
}
.ac-flex00 {
  flex: 0 0 auto;
}
.ac-mgt5 {
  margin-top: 5px;
}
.ac-mgt10 {
  margin-top: 10px;
}
.ac-mgt15 {
  margin-top: 15px;
}
.ac-mgt20 {
  margin-top: 20px;
}
html,
body {
  width: 100%;
  height: 100%;
  font-family:
    "HanHei SC", "PingFang SC", "Helvetica Neue", "Helvetica", sans-serif;
  font-size: 12px;
  line-height: 1.4;
  color: #333;
  -moz-text-size-adjust: none;
  text-size-adjust: none;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-touch-callout: none;
  touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  word-wrap: break-word;
  word-break: break-word;
  white-space: normal;
}
body {
  box-sizing: border-box;
}
html,
body,
img,
iframe,
button,
input {
  border: 0;
}
body,
html,
h1,
h2,
h3,
h4,
h5,
h6,
ul,
ol,
li,
dl,
dt,
dd,
p,
input,
header,
menu,
section,
figure,
figcaption,
article,
blockquote {
  padding: 0;
  margin: 0;
}
textarea,
select,
input,
button {
  font-size: inherit;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 100%;
  font-weight: normal;
}
em,
i {
  font-style: normal;
  text-align: left;
}
li,
i {
  list-style: none;
}
textarea {
  resize: none;
  overflow: auto;
}
input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
}
/* Text */
.ac-thide {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  word-break: normal;
}
.ac-thide2,
.ac-thide3,
.ac-thide4 {
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
}
.ac-thide3 {
  -webkit-line-clamp: 3;
}
.ac-thide4 {
  -webkit-line-clamp: 4;
}
.ac-pre {
  word-wrap: break-word;
  word-break: break-all;
}
.ac-nw {
  white-space: nowrap;
}
.ac-tid {
  text-indent: -9999px;
}
.ac-tc {
  text-align: center;
}
.ac-tl {
  text-align: left;
}
.ac-tr {
  text-align: right;
}
/* Grid for Web */
@media screen and (min-width: 600px) {
  .ac-g-web {
    width: 600px;
    margin: 0 auto;
  }
  .ac-g-web-sep {
    width: 100%;
  }
  .ac-g-web-sep .ac-g-main {
    width: 600px;
    margin: 0 auto;
  }
  .ac-g-main-cnt {
    height: auto;
  }
}

.wrap {
  position: relative;
  width: 7.5rem;
  margin: auto;
  overflow: hidden;
}
body {
  overflow-x: hidden;
  padding-bottom: 0.5rem;
}
body,
html {
  height: auto;
}
/* @font-face {
  font-family: "fzssksjt";
  src: url("ossweb-img/font/fzssksjt.eot");
  src:
    url("ossweb-img/font/fzssksjt.eot?#font-spider") format("embedded-opentype"),
    url("ossweb-img/font/fzssksjt.woff") format("woff"),
    url("ossweb-img/font/fzssksjt.ttf") format("truetype"),
    url("ossweb-img/font/fzssksjt.svg") format("svg");
  font-weight: normal;
  font-style: normal;
} */
.wrap-cont {
  background: #5e7f88
    url(https://game.gtimg.cn/images/ty/act/a20260508czzj/wrap-bg.jpg) repeat-y
    center 0.88rem / 7.5rem 0.88rem;
  position: relative;
}
.kv-box {
  position: relative;
  width: 7.5rem;
  height: 12.8rem;
  margin-bottom: -1.2rem;
}
.bilibili .tab-hd a,
.xhs .tab-hd a {
  margin: 0 0.18rem;
  width: 1.73rem;
  height: 0.48rem;
  font-size: 0.22rem;
  background: url(https://game.gtimg.cn/images/ty/act/a20260508czzj/tab-hd-item.png)
    no-repeat center / contain;
  line-height: 0.48rem;
}
.bilibili .tab-hd a.active,
.xhs .tab-hd a.active {
  background: url(https://game.gtimg.cn/images/ty/act/a20260508czzj/tab-hd-item-active.png)
    no-repeat center / contain;
}
.bilibili .kv-box,
.xhs .kv-box {
  background: url(https://game.gtimg.cn/images/ty/act/a20260508czzj/kv-box-1.jpg)
    no-repeat center / cover;
}
.bilibili .main-cont-tit > p > span,
.xhs .main-cont-tit > p > span {
  font-size: 0.56rem;
}
.bilibili .enter-act-step-box .enter-act-step-img-3 p {
  line-height: 0.2rem;
}
.bilibili .act-time-item,
.xhs .act-time-item {
  margin: 0.1rem 0.1rem;
}
.bilibili .act-time-item > p,
.xhs .act-time-item > p {
  width: 2.64rem;
  height: 1.76rem;
}
.weibo .kv-box {
  background: url(https://game.gtimg.cn/images/ty/act/a20260508czzj/kv-box-1.jpg)
    no-repeat center / cover;
}
.area-1 {
  position: relative;
}
.area-2 .area-box-wrap-ico-2 {
  transform: skew(-1.8deg) rotate(-2.15deg);
}
.logo {
  background: url(https://game.gtimg.cn/images/ty/act/a20260508czzj/logo.png)
    no-repeat center / contain;
  width: 1.44rem;
  height: 0.61rem;
  position: absolute;
  left: 0.24rem;
  top: 0.2rem;
}
.logo a {
  display: block;
  width: 100%;
  height: 100%;
  text-indent: -99.99rem;
  overflow: hidden;
}
.slogan-box {
  position: absolute;
  left: 0;
  top: 4.44rem;
  width: 7.5rem;
  height: 1.99rem;
  background: url(https://game.gtimg.cn/images/ty/act/a20260508czzj/slogan-txt.png)
    no-repeat 50% 0/6.98rem 1.99rem;
}
.sub-tit,
.act-info {
  text-indent: -999rem;
  overflow: hidden;
  display: block;
}
.main-cont-tit {
  padding-bottom: 0.16rem;
  padding-top: 0.35rem;
  position: relative;
  width: 7.5rem;
  height: 2.17rem;
  background: url("https://game.gtimg.cn/images/ty/act/a20260508czzj/title-bg.png")
    no-repeat 50% 0/8.78rem 2.17rem;
  box-sizing: border-box;
  margin-bottom: -0.45rem;
}
.main-cont-tit > p {
  position: relative;
  font-family: "FZYaSongS-B-GB";
  display: flex;
  justify-content: center;
  align-items: center;
}
.main-cont-tit > p > span {
  font-size: 0.55rem;
  color: #434343;
  text-align: center;
  line-height: 0.8rem;
  position: relative;
  z-index: 10;
}
.main-cont-tit > p > span > i {
  display: block;
  font-size: 0.38rem;
  text-align: center;
  padding-top: 0.5rem;
}
.tab-hd {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 0.15rem;
  margin-bottom: 0.1rem;
}
.tab-hd a {
  width: 1.73rem;
  height: 0.48rem;
  background: url(https://game.gtimg.cn/images/ty/act/a20260508czzj/tab-hd-item.png)
    no-repeat center / contain;
  margin: 0 0.04rem;
  line-height: 0.48rem;
  text-align: center;
  font-family: "FZBeiWeiKaiShu-S19S";
  font-size: 0.24rem;
  color: #fff;
  text-decoration: none;
}
.tab-hd a.active {
  background: url(https://game.gtimg.cn/images/ty/act/a20260508czzj/tab-hd-item-active.png)
    no-repeat center / contain;
  color: #0a1b1e;
}
.s-tit {
  position: relative;
  z-index: 2;
  width: 6.94rem;
  height: 1.58rem;
  background: url("https://game.gtimg.cn/images/ty/act/a20260508czzj/s-tit.png")
    no-repeat 50% 0/6.94rem 1.58rem;
  line-height: 1.58rem;
  font-size: 0.5rem;
  text-align: center;
  font-family: "FZBeiWeiKaiShu-S19S";
  margin: 0 auto;
  color: #593b0d;
}
.s-tit span {
  font-size: 1.2rem;
  position: absolute;
  left: 50%;
  top: -0.6rem;
  transform: translateX(-50%);
  background-image: linear-gradient(to bottom, #405181, transparent 56%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  clip-path: inset(0 0 50% 0);
  line-height: 1.2rem;
}
.area-box-wrap {
  position: relative;
  margin: 0 auto;
  padding-bottom: 0.4rem;
  width: 6.95rem;
}
.area-box-cont {
  position: relative;
  width: 100%;
  box-sizing: border-box;
  z-index: 1;
  font-size: 0.24rem;
  padding: 0.1rem 0.2rem;
  line-height: 0.4rem;
  color: #593b0d;
  box-sizing: border-box;
}
.area-box-cont p {
  line-height: 0.28rem;
  margin-bottom: 0.15rem;
}
.area-box-cont > * {
  position: relative;
  z-index: 1;
}
.zy_bg {
  width: 7.1rem;
  margin: 0rem -0.275rem 0;
  box-sizing: border-box;
  padding-top: 0.3rem;
  padding-bottom: 0.3rem;
  border-image-source: url("https://game.gtimg.cn/images/ty/act/a20260508czzj/zy_bg.png");
  border-image-slice: 160 160 160 160 fill;
  border-image-width: 1.6rem 1.6rem 1.6rem 1.6rem;
  border-image-repeat: repeat;
}
.zy_bg p {
  padding: 0rem 0.5rem;
}
.area-box-cont .sub-area-title {
  width: 5.79rem;
  height: 0.43rem;
  background: url("https://game.gtimg.cn/images/ty/act/a20260508czzj/sub-area-title.png")
    no-repeat 0 0/5.79rem 0.43rem;
  line-height: 0.43rem;
  margin: 0.25rem auto 0.25rem;
  color: #593b0d;
  font-size: 0.34rem;
  font-family: "FZShengShiKaiShuS-DB-GB";
  text-align: center;
}
.enter-act-step-box {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin: 0 -0.4rem;
}
.enter-act-step-box .enter-act-step-item {
  border-radius: 0.1rem;
  width: 2.89rem;
  height: 2.11rem;
  margin: 0.06rem;
  position: relative;
  box-sizing: border-box;
}
.enter-act-step-box .enter-act-step-item span {
  color: #fff;
  font-family: "FZBeiWeiKaiShu-S19S";
  font-size: 0.24rem;
  line-height: 0.3rem;
  position: absolute;
  top: 0.06rem;
  left: 0;
  height: 0.28rem;
  width: 0.9rem;
  text-align: center;
  z-index: 2;
}
.enter-act-step-box .enter-act-step-item p {
  position: absolute;
  bottom: 0.03rem;
  height: 0.4rem;
  line-height: 0.4rem;
  font-size: 0.2rem;
  width: 100%;
  left: 0;
  text-align: center;
  color: #593b0d;
  padding: 0;
}
.enter-act-step-box .enter-act-step-item {
  position: relative;
  width: 2.95rem;
  height: 2.19rem;
}
.enter-act-step-box .enter-act-step-item i {
  color: #df4a4a;
}
.enter-act-step-box .enter-act-step-img-1 {
  background: url("https://game.gtimg.cn/images/ty/act/a20260508czzj/step-img-1.png")
    no-repeat 0 0/2.95rem 2.19rem;
}
.enter-act-step-box .enter-act-step-img-2 {
  background: url("https://game.gtimg.cn/images/ty/act/a20260508czzj/step-img-2.png")
    no-repeat 0 0/2.95rem 2.19rem;
}
.enter-act-step-box .enter-act-step-img-3 {
  background: url("https://game.gtimg.cn/images/ty/act/a20260508czzj/step-img-3.png")
    no-repeat 0 0/2.95rem 2.19rem;
}
.enter-act-step-box .enter-act-step-img-4 {
  background: url("https://game.gtimg.cn/images/ty/act/a20260508czzj/step-img-4.png")
    no-repeat 0 0/2.95rem 2.19rem;
}
.act-time-detail {
  display: flex;
  justify-content: center;
}
.act-time-item {
  display: flex;
  flex-direction: column;
  width: 2.1rem;
  align-items: center;
  text-align: center;
  margin: 0rem 0 0.1rem 0;
  color: white;
}
.act-time-item > p {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  flex-shrink: 0;
  width: 1.94rem;
  padding: 0;
  font-size: 0.2rem;
  line-height: 1.3;
  color: #593b0d;
}
.act-time-item-ico {
  width: 1.77rem;
  height: 1.96rem;
  background: url("https://game.gtimg.cn/images/ty/act/a20260508czzj/act-time-item-ico.png")
    no-repeat 0 0/1.77rem 1.96rem;
  font-family: "FZShengShiKaiShuS-DB-GB";
  font-size: 0.36rem;
  line-height: 0.54rem;
  color: #644d28;
  position: relative;
  padding-top: 0.75rem;
  box-sizing: border-box;
}
.award-list-box {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  flex-wrap: wrap;
  margin: 0.3rem 0.2rem;
}
.award-list-box .award-item {
  position: relative;
  width: 1.77rem;
  height: 2.56rem;
  background: url("https://game.gtimg.cn/images/ty/act/a20260508czzj/act-time-item-ico.png")
    no-repeat 0 top/1.77rem 1.96rem;
}
.award-list-box .award-item p {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 0.2rem;
  padding: 0;
  line-height: 1.2;
  position: absolute;
  bottom: 0.02rem;
  height: 0.5rem;
  left: 0;
  width: 100%;
  text-align: center;
  color: #593b0d;
}
/* .award-list-box .award-item span {
  position: absolute;
  top: 42%;
  left: 50%;
  transform: translate(-50%, -50%);
} */
.award-list-box .award-item img {
  position: absolute;
  width: 80%;
  height: auto;
  top: 39%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.award-list-box-s .award-item {
  width: 1.87rem;
  height: 2.48rem;
  background-size: 1.87rem 2rem;
  margin: 0 0.14rem;
}
.award-list-box-s .award-item img {
  width: 90%;
  height: auto;
}
.award-list-box-s .award-item p {
  bottom: 0rem;
}
.award-list-box-s-2 .award-item {
  margin: 0 0.25rem;
}
.award-list-box-t {
  margin: 0 0.25rem;
}
.award-list-box-t .award-item {
  width: 1.49rem;
  height: 2.26rem;
  background-size: 1.49rem 1.56rem;
  margin: 0 0.02rem;
}
.award-list-box-t .award-item img {
  width: 90%;
  height: auto;
  top: 36%;
}
.award-list-box-t .award-item p {
  bottom: 0.01rem;
  height: 0.64rem;
}

.font-18 {
  font-size: 0.18rem;
}
.award-step-tit {
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 0.35rem;
  text-align: center;
  font-family: "FZShengShiKaiShuS-DB-GB";
  color: #774b0a;
  font-size: 0.28rem;
  width: 4.56rem;
  height: 0.35rem;
  background: url("https://game.gtimg.cn/images/ty/act/a20260508czzj/step_bg.png")
    no-repeat 0 0/4.56rem 0.35rem;
  margin: 0.15rem auto;
}
.rule-list {
  color: #593b0d;
  font-size: 0.22rem;
  margin: 0.3rem 0.55rem 0.3rem 0.75rem;
}
.rule-list li {
  list-style: decimal;
  line-height: 0.36rem;
  letter-spacing: 0.01rem;
}
.go-detail-rule-btn {
  background: #df4a4a;
  height: 0.38rem;
  padding: 0 0.15rem;
  border-radius: 0.18rem;
  color: #fff;
  line-height: 0.38rem;
  float: right;
  margin-top: -0.52rem;
  margin-right: 0.7rem;
}
#ruleArea {
  display: none;
  padding-bottom: 0.25rem;
}
.tab-bd-cont {
  display: none;
}
.tab-bd-cont.active {
  display: block;
}
/* .tab-bd-cont .area-box-wrap {
  margin-bottom: 1rem;
} */
.bottom-link-box {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  right: 0;
  background-color: #e3cd9e;
  width: 7.5rem;
  z-index: 100;
  border-radius: 0.2rem 0.2rem 0 0;
  display: none;
  justify-content: center;
  align-items: center;
  padding: 0.1rem 0;
}
.bottom-link-box.active {
  display: flex;
}
.bottom-link-box a {
  font-family: "Microsoft Yahei";
  text-align: center;
  font-size: 0.2rem;
  text-decoration: none;
  margin: 0 0.3rem;
  position: relative;
  color: #593b0d;
}
.bottom-link-box a i {
  width: 1.2rem;
  height: 1.2rem;
  display: block;
  margin: 0 auto;
}
.bottom-link-box .b-btn-1 i {
  background: url("https://game.gtimg.cn/images/ty/act/a20260508czzj/bilibili_btn.png")
    no-repeat 0 0/1.2rem 1.2rem;
}
.bottom-link-box .b-btn-2 i {
  background: url("https://game.gtimg.cn/images/ty/act/a20260508czzj/weibo_btn.png")
    no-repeat 0 0/1.2rem 1.2rem;
}
.bottom-link-box .b-btn-3 i {
  background: url("https://game.gtimg.cn/images/ty/act/a20260508czzj/xhs_btn.png")
    no-repeat 0 0/1.2rem 1.2rem;
}
.bottom-link-box .b-btn-4 i {
  background: url("https://game.gtimg.cn/images/ty/act/a20260508czzj/douyin_btn.png")
    no-repeat 0 0/1.2rem 1.2rem;
}
.task-list-wrap {
  font-family: "FZBeiWeiKaiShu-S19S";
}
.task-list-item {
  position: relative;
  /* height: 1.2rem; */
  display: flex;
  width: 86%;
  align-content: center;
  flex-wrap: wrap;
  margin: 0 auto;
  padding: 0.2rem 0;
}
.task-list-item:after {
  content: "";
  position: absolute;
  bottom: 0;
  height: 0.02rem;
  background: #efcb39;
  opacity: 0.25;
  width: 6.2rem;
  left: 50%;
  transform: translate(-50%, 0) scaleY(0.5);
}
.task-name {
  color: #593b0d;
  font-size: 0.3rem;
}
.task-info {
  font-size: 0.26rem;
  color: #db1010;
  width: 60%;
  margin-right: 40%;
}
.task-finish-num {
  position: absolute;
  right: 1.85rem;
  top: 50%;
  transform: translate(0, -50%);
  font-size: 0.22rem;
  color: #db1010;
}
.task-btn {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translate(0, -50%);
  background: url(https://game.gtimg.cn/images/ty/act/a20260508czzj/task-btn.png)
    no-repeat center / contain;
  width: 1.73rem;
  height: 0.48rem;
  line-height: 0.48rem;
  font-family: "FZBeiWeiKaiShu-S19S";
  text-align: center;
  font-size: 0.26rem;
  color: #fff;
}
.task-btn.got {
  pointer-events: none;
  filter: grayscale(100%);
  font-size: 0;
}
.task-btn.got:after {
  content: "已领取";
  font-size: 0.26rem;
}
.task-tool-btn-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 0.4rem;
  margin-bottom: 0.4rem;
}
.task-tool-btn-wrap > div {
  width: 2.74rem;
  height: 0.73rem;
  line-height: 0.73rem;
  text-align: center;
  font-family: "FZBeiWeiKaiShu-S19S";
  font-size: 0.26rem;
  margin: 0 0.08rem;
}
.task-tool-btn-1 {
  background: url("https://game.gtimg.cn/images/ty/act/a20260508czzj/zs-tool-btn-1.png")
    no-repeat 0 0/2.74rem 0.73rem;
  color: #fff;
}
.task-tool-btn-2 {
  background: url("https://game.gtimg.cn/images/ty/act/a20260508czzj/zs-tool-btn-2.png")
    no-repeat 0 0/2.74rem 0.73rem;
  color: #000;
}
.works-filter {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  margin-top: 0.15rem;
  font-family: "FZBeiWeiKaiShu-S19S";
}
.works-filter-item {
  margin: 0 0.1rem;
}
.works-filter-item label {
  display: flex;
  align-items: center;
}
.works-filter-item label::before {
  content: "";
  border-radius: 50%;
  width: 0.16rem;
  height: 0.16rem;
  background: #7d7d7d;
  margin-right: 0.05rem;
  transition: all 0.3s;
}
.works-filter input[type="radio"] {
  opacity: 0;
  visibility: hidden;
  position: absolute;
}
.works-filter input[type="radio"]:checked + label::before {
  background: #db1010;
}
.works-search-box {
  display: flex;
  justify-content: center;
  font-family: "FZShengShiKaiShuS-DB-GB";
  font-size: 0.2rem;
  align-items: center;
  margin-bottom: 0.5rem;
  margin-top: 0.1rem;
}
.works-search-box > span {
  letter-spacing: 0.01rem;
}
.works-search-box input {
  outline: none;
  background: #e3d7d4;
  border: 0;
  text-align: center;
  border-radius: 0.05rem;
  height: 0.38rem;
  line-height: 0.38rem;
  width: 3.2rem;
  margin: 0 0.05rem;
}
.works-search-btn {
  position: relative;
  top: -0.02rem;
  width: 1.73rem;
  height: 0.48rem;
  background: url("https://game.gtimg.cn/images/ty/act/a20260508czzj/tab-hd-item.png")
    no-repeat 0 0/1.73rem 0.48rem;
  line-height: 0.48rem;
  text-align: center;
  font-family: "FZBeiWeiKaiShu-S19S";
  color: #f7e6b3;
  font-size: 0.24rem;
  cursor: pointer;
}
.works-list-box {
  width: 86%;
  margin: 0 auto;
}
.works-list-item {
  font-family: "FZShengShiKaiShuS-DB-GB";
  font-size: 0.22rem;
  overflow: hidden;
  position: relative;
  height: 1.67rem;
  margin-bottom: 0.4rem;
}
.works-list-item-img {
  float: left;
  width: 2.81rem;
  height: 1.54rem;
  background: url("https://game.gtimg.cn/images/ty/act/a20260508czzj/work_bg.png")
    no-repeat 0 0/2.81rem 1.54rem;
  overflow: hidden;
  position: relative;
  overflow: hidden;
}
.works-list-item-img img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 2.59rem;
  object-fit: cover;
  height: 1.42rem;
  z-index: 1;
}
.works-list-item-info {
  overflow: hidden;
  margin-left: 3.1rem;
  margin-top: 0.2rem;
  margin-right: 0.35rem;
}
.works-list-item-info > p {
  color: #db1010;
  padding: 0;
}
.works-list-item-btn {
  width: 1.73rem;
  height: 0.48rem;
  background: url("https://game.gtimg.cn/images/ty/act/a20260508czzj/tab-hd-item.png")
    no-repeat 0 0/1.73rem 0.48rem;
  line-height: 0.48rem;
  text-align: center;
  font-family: "FZBeiWeiKaiShu-S19S";
  color: #f7e6b3;
  font-size: 0.24rem;
  position: absolute;
  right: 0;
  bottom: 0.16rem;
  cursor: pointer;
}
.works-list-item-copy-btn {
  position: absolute;
  right: 0;
  top: 0.2rem;
  background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABoAAAAaCAYAAACpSkzOAAADEElEQVRIia2Wv09TURTHP/e1fS3U4oUEAko0MUEIJAwmMgALONQYxL+AxMHgwoILA4zI6FI2w1QIiwz+GEhowsKGLMQE4SkOWopgFGhBW17fdXivpJX2tSrfqT3nvvO55557z73CkBJH94FR4DZwif9TClgFngFvADTHMQm8AvouAIITow947cRGGFIOOIayuraygt7RURkqm+XX2hpfwmGAQS/wpNJpptfXweMpP9Cy0NvbCXR15SyjwpDyCAhVCqtUTfPzBO/e5UNtLUDS6wap6u0lcOsWaNrZTFU2W3ywUpxub3O8uAiA8PnyvSFvKUj1nTtcefHi79IAvj56RHJhAYQosBcFBe/do2luDgDr4IDd4WE4PXUFeJubaYhEqOrrs0FKuYNyEJVOY8bjeOrrOVlaKpuJ8PtpiERQmUxRv5b/JxgO0zQ3x+mnT3xsbOTnygpaKIQIBMqCfNev2z9K1PAso+DAAE3RKABH0Sh6eztVPT2207LwNjait7WhLMteFiEQHg9mPE5ma+vcUp2TIaUypFSllE2llCGlSr9/X3KMIaXavnlTKaXUwfPnypBSHcdiZz5DSlVQIzOR4PvUFELXz7Zn+t07AL5NTKC3tp7bTebODgBaMOiaUAEou7fH0exs0YEnsRgnsVjJQOXqWAASfr9tvHqVqu5uhM9X+oAKgdA0zESCk+VlVDpdOSinmqEh6sbGXD/M14faWqxU6u9BhzMzZDY27AbqtpuEwPz8GQCtpqbQ5ayOKyi7v0/q5UvXGZ5j5npbbrP80eWLt6BwmMvDw4UfFpNSmIkEeyMjWMmkbXMa8P7oKL4bN9xBvpYWqvv7y2YBYCWT7I2MgGkW2DObm2Q2N0uAnHocTE9zFI0iNA3lUiMhBNkfP+xEQu5XmhdI4txJKq9DW4eH5dPJkxmP23BdL+ZOeYG32A8J/J2d9h3kVpdisiw05zVV4jytCkPK+8Ar+fgxdePjZZfATZmtLXYfPrSPRqEGhfOumwTG/5ngrqfARO4+mgAeAMvA8QUEP3ZiDTqx+Q1EJUgFCbUVnAAAAABJRU5ErkJggg==)
    no-repeat center / contain;
  width: 0.26rem;
  height: 0.26rem;
  text-indent: -999em;
  overflow: hidden;
  cursor: pointer;
}
.works-list-pager {
  display: flex;
  justify-content: center;
  align-items: center;
}
.works-list-pager-btn {
  background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABUAAAAVCAYAAACpF6WWAAADV0lEQVQ4jYWUXWibZRTHf++TN+/bfJg0dfnoR7pqkirNVpxeNENdHco+EHJjZYrghVIE77yxF+7WC/FqN4JKbwWZMIgKk4FtdTAdzLnZjrY2JNkalyx2TZM0n80bL5J2bfJmHvjfPOecH+c853CkRqOBrmlhL3Ac8AMOwAoUgE1gDbiGiNzTS5U6oFrYCUwBz3/6rX8imjK7c0XZWqoaVJNSr9jMOwWfp5j+5Nza78BN4CIikukO1cJB4IPPLvpfuXqn72i3JgAkCV4ae/jXzJtrC8CXiMhiJ1QLPwd8+PHs2KnVpOVwVxjgdZa4mzEBEBjcvvv5+3d+Ar5ARP4EEC2gG5iemQ2ejacshxUD6MmsNHj3tXWyBXXvLZGyDM/MBs8C0y1OCwpvXbjkO5HMmIYUQwM99Zp3OP/2CrH7FrS6dMCXzJiGLlzynQDeAJDRwt6lhG3yVtRxRJH1W3ZYq3w09TflqoHFWC96cbejjiPAMbTwsABC1xYP+VUD6OkpV4nz7ywzdKjE3B9u3Ri19RVf/+gLASEZCKQfmj2q3Dlq/2Ce916PYlbrVKoGlhN29OJ2Lb1h8gCjMtBXq8kWta2lcd8m516NIRuakFjKiiwkZNHB2rNyxWgDXDJgQxOmnn0VHD/6gNMT60jSo4RsTqXnMVU2TVIAswyULYpWre0IdddlFBwAAkhIqIbHI42yVgWKMpDpe6Ka38qre9Bby07KZZkzLyYwtNq3W6r/W6ndWssDGQGsDDlLKVWG/YqvO/h+3k+l2izP6ynQHtOuQWfxPrAqgOtjvo2oKjdo178bFn6YC7BdMmIx1Rjpz3fE7FfQvxEFfhOISNzbn1sIDGeX9PavWOjh8two2VwP489kuu5pYDi75O3PXUFEErsL8s1kKL7gerK0rsjQrp2akZ+vBlCUOgPu7Q6/q6/0z2Qo/gvwHehcqflfA2c2t8xevUEI0eDZQJqVNRf1erOeXnvp3smXVy/TPH83DkKb4HFg+sbNkZOplD3YbcpWS4XCtorHs7X0wrH4PPAVInJ71693+d3AVCZjO5VMOp7O5Uz9lYrRpmmSUYhGTVVrOZutlBoY2Iy6XLkrNC9/ej+iE/oIPgJMAKOAB1CBCvAAWAauIyIxvdT/ABnuUfD2XD55AAAAAElFTkSuQmCC)
    no-repeat center / contain;
  width: 0.21rem;
  height: 0.21rem;
  margin: 0 0.12rem;
}
.works-list-pager-btn-next {
  transform: scaleX(-1);
}
.zs-tool-btn-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0.2rem 0 0.4rem;
}
.zs-tool-btn-wrap .zs-tool-btn {
  background: url(https://game.gtimg.cn/images/ty/act/a20260508czzj/zs-tool-btn-1.png)
    no-repeat center / contain;
  width: 2.74rem;
  height: 0.73rem;
  font-size: 0.26rem;
  font-family: "FZBeiWeiKaiShu-S19S";
  color: #fff;
  line-height: 0.73rem;
  text-align: center;
  margin: 0 0.11rem;
}
.zs-tool-btn-wrap.zs-tool-btn-lg .zs-tool-btn {
  width: 2.74rem;
}
.zs-tool-btn-wrap .zs-tool-btn-1 {
  background: url(https://game.gtimg.cn/images/ty/act/a20260508czzj/zs-tool-btn-1.png)
    no-repeat center / contain;
}
.zs-tool-btn-wrap.zs-tool-btn-lg .zs-tool-btn-1 {
  background: url(https://game.gtimg.cn/images/ty/act/a20260508czzj/zs-tool-btn-1.png)
    no-repeat center / contain;
}
.zs-tool-btn-wrap .zs-tool-btn-2 {
  background: url(https://game.gtimg.cn/images/ty/act/a20260508czzj/zs-tool-btn-2.png)
    no-repeat center / contain;
  color: #000;
}
.zs-tool-btn-wrap.zs-tool-btn-lg .zs-tool-btn-2 {
  background: url(https://game.gtimg.cn/images/ty/act/a20260508czzj/zs-tool-btn-2.png)
    no-repeat center / contain;
}
.zs-work-list-box {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin: 0.3rem -0.4rem;
}
/* .zs-work-list-box-2 .zs-work-list-item:first-child {
  width: 100%;
} */
.zs-work-list-item {
  position: relative;
  width: 2.94rem;
  margin: 0 0.15rem 0.05rem;
}
.zs-work-list-item[data-type="video"] .zs-work-list-item-img:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: url(https://game.gtimg.cn/images/ty/act/a20260508czzj/video-ico.png)
    no-repeat center / contain;
  height: 0.42rem;
  width: 0.43rem;
  z-index: 2;
}
.zs-work-list-item-img {
  position: relative;
  width: 2.81rem;
  height: 1.54rem;
  background: url("https://game.gtimg.cn/images/ty/act/a20260508czzj/work_bg.png")
    no-repeat 0 0/2.81rem 1.54rem;
  margin: 0 auto;
  overflow: hidden;
}
.zs-work-list-item-img img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 2.59rem;
  object-fit: cover;
  height: 1.42rem;
  z-index: 1;
  opacity: 0.5;
}

.zs-work-list-item p {
  line-height: 0.4rem;
  font-size: 0.2rem;
  text-align: center;
}
.zs-work-list-item .like-p {
  font-family: "FZBeiWeiKaiShu-S19S";
  font-size: 0.2rem;
  color: #db1010;
  text-align: center;
  line-height: 1;
}
.bind-wb-btn {
  background: url(https://game.gtimg.cn/images/ty/act/a20260508czzj/bind-zz-btn.png)
    no-repeat center / contain;
  width: 4.04rem;
  height: 0.61rem;
  line-height: 0.64rem;
  text-align: center;
  font-family: "FZShengShiKaiShuS-DB-GB";
  margin: 0.2rem auto;
  color: #fff;
  font-size: 0.26rem;
}
.mb-0 {
  margin-bottom: 0;
}
.txt-img-box {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0.2rem auto 0.2rem;
  width: 88%;
}
.txt-img-box img {
  width: 100%;
  height: auto;
}

.dialog-wrap {
  display: none;
  position: absolute;
  z-index: 900;
}
.dialog-wrap.active {
  display: flex;
}
.dialog-wrap .dialog-cont {
  position: relative;
  width: 6.4rem;
  z-index: 10;
}
.dialog-wrap .dialog-cont .area-box-wrap {
  margin: 0;
  box-sizing: border-box;
  width: 100%;
  padding-bottom: 0;
}
.dialog-wrap .dialog-cont .area-box-cont {
  position: relative;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  border-image-source: url("https://game.gtimg.cn/images/ty/act/a20260508czzj/zy_bg.png");
  border-image-slice: 160 160 160 160 fill;
  border-image-width: 1.6rem 1.6rem 1.6rem 1.6rem;
  border-image-repeat: repeat;
  background: url(https://game.gtimg.cn/images/ty/act/a20260508czzj/zy_bg.png)
    no-repeat 50% 50% / 99% 99%;
}
.dialog-wrap .dialog-cont .area-box-cont .area-box-cont-inner {
  padding-bottom: 1rem;
  font-size: 0.22rem;
  width: 88%;
  margin: 0 auto;
}
.dialog-wrap .dialog-cont .dialog-close {
  position: absolute;
  top: -0.13rem;
  right: -0.13rem;
  background: url(https://game.gtimg.cn/images/ty/act/a20260508czzj/dialog-close.png)
    no-repeat center / contain;
  width: 0.77rem;
  height: 0.84rem;
  z-index: 10;
  text-indent: -999rem;
  overflow: hidden;
}
.dialog-wrap .dialog-cont .msg-box {
  min-height: 1.2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 0.24rem;
  flex-wrap: wrap;
}

.dialog-wrap .dialog-cont .msg-box > * {
  width: 100%;
}
.dialog-wrap .dialog-tit {
  display: flex;
  justify-content: center;
  width: 3.83rem;
  height: 0.63rem;
  background: url("https://game.gtimg.cn/images/ty/act/a20260508czzj/dialog-title-s.png")
    no-repeat 0 0/3.83rem 0.63rem;
  align-items: center;
  line-height: 0.63rem;
  font-family: "FZBeiWeiKaiShu-S19S";
  margin: 0 auto 0.22rem;
}
.dialog-wrap .dialog-tit.dialog-tit-lg {
  width: 5.03rem;
  height: 0.63rem;
  background: url("https://game.gtimg.cn/images/ty/act/a20260508czzj/dialog-title-l.png")
    no-repeat 0 0/5.03rem 0.63rem;
}

.dialog-wrap .dialog-tit span {
  text-align: center;
  position: relative;
  font-size: 0.48rem;
  display: block;
  color: #593b0d;
}
.dialog-wrap .dialog-btn-box {
  position: absolute;
  bottom: 0.2rem;
  width: 100%;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 0.2rem;
}
.dialog-wrap .dialog-btn-box2 {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 0.2rem;
  padding-bottom: 0.2rem;
}
.dialog-wrap .dialog-btn-box > div,
.dialog-wrap .dialog-btn-box2 > div {
  width: 2.17rem;
  height: 0.62rem;
  line-height: 0.62rem;
  text-align: center;
  font-family: "FZBeiWeiKaiShu-S19S";
  font-size: 0.32rem;
  margin: 0 0.22rem;
}
.dialog-wrap .dialog-btn-box .dialog-btn-1 {
  color: #000;
  background: url("https://game.gtimg.cn/images/ty/act/a20260508czzj/dialog-btn-1.png")
    no-repeat 0 0/2.17rem 0.62rem;
}
.dialog-wrap .dialog-btn-box .dialog-btn-2 {
  color: #fff3b5;
  background: url(https://game.gtimg.cn/images/ty/act/a20260508czzj/dialog-btn-2.png)
    no-repeat center / contain;
}
.dialog-wrap .dialog-btn-box .dialog-btn-3 {
  color: #fff3b5;
  background: url(https://game.gtimg.cn/images/ty/act/a20260508czzj/dialog-btn-3.png)
    no-repeat center / contain;
}
.dialog-wrap .dialog-btn-box2 .dialog-btn-4 {
  color: #fff3b5;
  background: url(https://game.gtimg.cn/images/ty/act/a20260508czzj/dialog-btn-3.png)
    no-repeat center / contain;
}
.share-info-txt {
  font-size: 0.24rem;
  padding: 0.2rem 0.2rem;
  margin: 0.15rem auto;
  background-color: #f2deb3;
  border-radius: 0.1rem;
  border: 0.01rem solid #806331;
  color: #593b0d;
  line-height: 0.36rem;
  width: 80%;
}
.input-box {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0.25rem 0 0;
}
.input-box-2 {
  margin: 0;
}
.input-txt-p {
  width: 88%;
  margin: 0 auto;
}

.input-box-2 .input-box-item {
  width: 88%;
  margin: 0.25rem 0;
  background-color: #f3deb3;
  border: 0.01rem solid #593b0d;
  border-radius: 0.38rem;
  font-size: 0.22rem;
}
.input-box-item {
  width: 4.1rem;
  height: 0.58rem;
  background-color: #f3deb3;
  border: 0.01rem solid #593b0d;
  border-radius: 0.38rem;
  font-size: 0.22rem;
}
.input-box-item-xhs {
  width: 5.2rem;
  height: 0.58rem;
  background-color: #f3deb3;
  border: 0.01rem solid #593b0d;
  border-radius: 0.38rem;
  font-size: 0.22rem;
  margin-bottom: 0.15rem;
}
.input-box-item input,
.input-box-item-xhs input {
  width: 100%;
  background: transparent;
  text-align: center;
  height: 0.58rem;
  color: #593b0d;
  line-height: 0.58rem;
}
.input-box-item input:focus,
.input-box-item-xhs input:focus {
  outline: none;
}
.bind-tip {
  width: 88%;
  margin: 0.2rem auto;
}
.bind-tip span {
  color: #db1010;
}
.bd_input li {
  position: relative;
  width: 88%;
  margin: 0 auto;
  box-sizing: border-box;
  height: 0.6rem;
  margin-bottom: 0.23rem;
  line-height: 0.6rem;
  border-width: 0.02rem;
  border-color: #806331;
  border-style: solid;
  background-color: #e3d7d4;
  border-radius: 0.3rem;
  color: #806331;
  padding: 0 0.2rem;
}
.bd_input li:after {
  content: "";
  position: absolute;
  right: 0.2rem;
  top: 50%;
  transform: translate(0, -50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0.2rem 0.14rem 0;
  border-color: #806331 transparent transparent;
}
.tg-works-list {
  margin-left: -0.15rem;
  margin-right: -0.15rem;
  margin-top: 0.15rem;
}
.tg-works-list-wrap {
  padding: 0 0.15rem;
  font-family: "FZShengShiKaiShuS-DB-GB";
}
.tg-works-item {
  display: flex;
  justify-content: start;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 0.2rem;
  position: relative;
  width: 100%;
}
.tg-works-img {
  width: 2.81rem;
  height: 1.54rem;
  background: url("https://game.gtimg.cn/images/ty/act/a20260508czzj/work_bg.png")
    no-repeat 0 0/2.81rem 1.54rem;
  position: relative;
  overflow: hidden;
}
.tg-works-img:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(https://game.gtimg.cn/images/ty/act/a20260508czzj/video-ico.png)
    no-repeat 50% 50%/0.98rem 0.98rem;
  cursor: pointer;
  z-index: 999;
}
.tg-works-img img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 2.59rem;
  object-fit: cover;
  height: 1.42rem;
  opacity: 0.6;
  z-index: 1;
}
.tg-works-name {
  width: 1.8rem;
  margin-left: 0.15rem;
  font-family: "FZShengShiKaiShuS-DB-GB";
  font-size: 0.22rem;
  color: #593b0d;
}
.tg-works-select {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translate(0, -50%);
  background: url(https://game.gtimg.cn/images/ty/act/a20260508czzj/select-ico.png)
    no-repeat center / contain;
  width: 0.57rem;
  height: 0.57rem;
}
.tg-works-select.active {
  background: url(https://game.gtimg.cn/images/ty/act/a20260508czzj/select-ico-active.png)
    no-repeat center / contain;
}
.tg-works-info-tip {
  font-family: "FZShengShiKaiShuS-DB-GB";
  font-size: 0.22rem;
  color: #593b0d;
}
.my-works-list {
  max-height: 5.5rem;
  overflow-y: auto;
}

.my-works-list::-webkit-scrollbar {
  width: 6px;
}

.my-works-list::-webkit-scrollbar-track {
  background-color: #fff;
  border-radius: 15px;
}

.my-works-list::-webkit-scrollbar-thumb {
  background: #714a1c;
  border-radius: 15px;
}
.my-works-item {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 0.35rem;
}
.my-works-img {
  position: relative;
  width: 2.81rem;
  height: 1.54rem;
  background: url(https://game.gtimg.cn/images/ty/act/a20260508czzj/work_bg.png)
    no-repeat 0 0 / 2.81rem 1.54rem;
  margin: 0 auto;
  overflow: hidden;
}
.my-works-img img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 2.59rem;
  object-fit: cover;
  height: 1.42rem;
  z-index: 1;
  opacity: 0.5;
}
.my-works-info {
  margin-top: 0.06rem;
  margin-left: 0.35rem;
}
.my-works-info p {
  font-family: "FZShengShiKaiShuS-DB-GB";
  font-size: 0.22rem;
  color: #593b0d;
}
.my-works-bottom {
  width: 100%;
  display: flex;
  justify-content: space-between;
  box-sizing: border-box;
  padding: 0 0.15rem;
}
.my-works-status {
  font-family: "FZShengShiKaiShuS-DB-GB";
  font-size: 0.2rem;
}
.review-ing {
  color: #db1010;
  text-decoration: underline;
}
.my-works-tools {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  /* top: -0.28rem; */
}
.my-works-btn {
  background: url(https://game.gtimg.cn/images/ty/act/a20260508czzj/dialog-btn-2.png)
    no-repeat center / 1.28rem 0.34rem;
  width: 1.28rem;
  height: 0.34rem;
  line-height: 0.38rem;
  font-family: "FZBeiWeiKaiShu-S19S";
  font-size: 0.18rem;
  color: #fff;
  letter-spacing: -0.02rem;
  text-align: center;
  margin: 0 0.05rem;
}
/* .my-works-btn.delet {
  filter: grayscale(100%);
} */
.record-list {
  padding: 0;
  max-height: 7.5rem;
  overflow-y: auto;
}
.record-list::-webkit-scrollbar {
  width: 0.03rem;
}

.record-list::-webkit-scrollbar-track {
  background-color: #fff;
  border-radius: 0.015rem;
}

.record-list::-webkit-scrollbar-thumb {
  background: #714a1c;
  border-radius: 0.015rem;
}
.record-list-item {
  display: flex;
  justify-content: start;
  align-items: center;
  flex-wrap: wrap;
  width: 100%;
}
.record-list-item-img {
  width: 1.4rem;
  height: 1.56rem;
  background: url("https://game.gtimg.cn/images/ty/act/a20260508czzj/rec_bg.png")
    no-repeat 0 0/1.4rem 1.56rem;
  position: relative;
}
.record-list-item-img img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 1.2rem;
  background-size: contain;
}
.record-list-item-info {
  margin-left: 0.2rem;
  font-size: 0.18rem;
  color: #e25235;
  flex: 1;
}
.record-list-item-info > div {
  font-family: "FZShengShiKaiShuS-DB-GB";
  color: #593b0d;
  font-size: 0.22rem;
}
.record-list-item-info p:nth-child(2) {
  border-bottom: 0.01rem solid #c5b59a;
}
.record-list-item-info p:nth-child(3) {
  color: #e25235;
}
.record-list-pager {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 0.15rem;
}
.record-list-pager-btn {
  background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABUAAAAVCAYAAACpF6WWAAADgElEQVQ4jYWVXUxTZxjHf+ftB19CJ5QC6XB0lQlkZgteYIdkC/OOrQYUMlkCCVPjNl3ihaOGZc4Rsm4Zy+LdNEMh2zJB1DXLEhfct0pdxDgiiFCqMFZsCw6LfPd0F1LWdaf4XL3nPP//L8978r7/I4VCIRRLtmYDRcB6IA1IAh4AE8AQ0I1w/Klklf4Hla3pwHZgU/dZf99Ad2BytH9mdmJsfiHNGKfNzk9M2LA5OXVzub4AuAp0Ihy+2FDZWgjUXT7jd7Xa3C45GGsbIFSSVGs3mS0VejPwOcJxbaUXAXwW2Pv1kTs9Jw4OD8nBUOj5V3c8IVRCUvw6wVDoxMHhoVONI9eA15f9EVDZmgHsbm8acf7QdndlK7ecV32HzrbVJq3VqWNNfOHkuLe9acQJ7F7mrExafbHDN9jVMu6NNHiG3DN3evv7jpw//V7WelNiLHBXy7j3YodvEKh+CJWtOZOeBWOrze1SMnzR0HRFUglNfedJe0GJJTUWuNXmdk16FozI1hwBFPX/NqV4NML1R9cv3ySmJOe88VnzRyWvVGTH0i1zigSQd/3C3/7VoB1NnzjlYHBGmxBvqG602a0H9hYo6Xp/mvIDGwRgcPVMT68GnbkfCE75/H0AKrU6uWzfrvdr7O9aonWunsADwCCAuMDEYnA1KEBg4p4nvJaE0BZXbavf33K0LFIz5V1cAuIFMJ+cplE9ChpcWpqPfJYkSVKpVZrIdzqDRg3MCcBrLlyz5lHQJF2KPrwOyfJS97nvPv605s1zkRpzYXIS4BXAzWdefEwfDYmutZkZTy9PPHP+WNvhlgPv/Bqt2fiCTg8MCOBK/hadcTXgS2/tydPEx+kX5+Yn2hubbWc+PNqrpMvfonsccAqEw52apfXU2k3mWNDiSmv5bGB69Nh+29s/tp26raSptZvMqVnaMYTjdviafllcmZ67tS7TEC0u27crTxMfl9K8c0/99a6ffdF9gK11mYbiyvRc4CsI333huAscr2pYV1Rak5EeFusMeu3G0pJNjWU7D4/cuKl4lktrMtKrGtYVAceXOYp5+tqlTv9g2yH3sKXiZePv337/18LsnBwNEypJqvnA9ORz2/W5PMzTnnAvVvLvAAovdfpvDFy+f2/s1uxK8hufSkjIK05Js5Tr84Ee4PTqyf9feDZgAcxAKv/+oyaBQcCJcIwqWf8BX4dbyZ3FBSkAAAAASUVORK5CYII=)
    no-repeat center / contain;
  width: 0.21rem;
  height: 0.21rem;
  margin: 0 0.1rem;
}
.record-list-pager-btn-prev {
  transform: scaleX(-1);
}
.record-list-pager span {
  font-size: 0.2rem;
}
.pb-0 {
  padding-bottom: 0 !important;
}
#afooter {
  color: #fff;
  background-color: #000;
  padding: 0.2rem 0;
  font-size: 0.2rem;
  text-align: center;
}
#afooter a {
  color: #fff;
  text-decoration: none;
}
.login-box {
  position: absolute;
  top: 9.35rem;
  width: 100%;
  left: 0;
  font-family: "FZBeiWeiKaiShu-S19S";
  font-size: 0.24rem;
  color: #dce2d9;
  line-height: 0.3rem;
  text-align: center;
  z-index: 22;
}
.login-box a {
  color: #c54844;
  text-decoration: underline;
}
.mb-10 {
  margin-bottom: 0.1rem;
}
.mb-20 {
  margin-bottom: 0.2rem;
}
.mb-30 {
  margin-bottom: 0.3rem;
}
.mb-40 {
  margin-bottom: 0.4rem;
}
.mb-90 {
  margin-bottom: 0.9rem !important;
}
.font-20 {
  font-size: 0.2rem;
}
.swiper {
  width: 88%;
  padding: 0.2rem 0 0.2rem 0;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  margin-bottom: 0.3rem;
}
.swiper .swiper-pagination {
  z-index: 111;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  justify-content: center;
  align-content: center;
  height: 0.12rem;
}
.swiper .swiper-pagination .swiper-pagination-bullet {
  width: 0.1rem;
  height: 0.1rem;
  margin: 0 0.08rem;
  transform: rotate(45deg);
  border-radius: 0;
}
.swiper .swiper-pagination .swiper-pagination-bullet {
  background: #aaa7a5;
}
.swiper .swiper-pagination .swiper-pagination-bullet-active {
  background: #a34b44;
}
.swiper-slide {
  width: 6.43rem;
  position: relative;
}
.swiper-slide img {
  display: block;
  width: 100%;
  margin: 0 auto;
  height: auto;
  border-radius: 0.1rem;
}
.swiper-button-next,
.swiper-button-prev {
  position: absolute;
  left: 0; /* 向左移动 0.2rem */
  background: url(https://game.gtimg.cn/images/ty/act/a20260508czzj/slide-page-btn.png)
    no-repeat center / contain;
  width: 0.22rem;
  height: 0.22rem;
  transform: translateY(-50%);
  z-index: 10;
  top: 63%;
  overflow: visible;
}
.swiper-button-next {
  transform: translateY(-50%) scaleX(-1);
  left: auto;
  right: 0; /* 向右移动 0.2rem */
}
.js-btn {
  position: relative;
  z-index: 999; /* 保持较高的 z-index 确保可点击 */
  cursor: pointer;
}
.js-btn:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: url(https://game.gtimg.cn/images/ty/act/a20260508czzj/video-ico.png)
    no-repeat center / contain;
  width: 0.98rem;
  height: 0.98rem;
  z-index: 2;
  pointer-events: none;
}
.dialog-wrap .dialog-cont-vid {
  width: 6.4rem;
  height: 4rem;
  position: relative;
  z-index: 10;
}
#iframeDialog .dialog-cont-vid {
  height: auto;
}
.dialog-cont-vid .dialog-close {
  top: -0.35rem !important;
  right: -0.35rem !important;
}
.dialog-cont-vid #pop_videos1 {
  width: 100%;
  height: 100%;
}
.dialog-cont-vid #iframeVideo {
  width: 100%;
  height: 100%;
}
.dialog-cont-vid #iframeVideo iframe {
  display: block;
  width: 100%;
  height: 5.5rem;
}
.rule-detail-txt ol {
  margin: 0.1rem 0.4rem;
}
.rule-detail-txt ol li {
  overflow: hidden;
}
.rule-detail-txt ol li span {
  float: left;
}
.rule-detail-txt ol li p {
  overflow: hidden;
  margin: 0;
  padding: 0;
}
.rule-detail-txt ol li ol {
  margin-left: 0.25rem;
  margin-right: 0;
}
.rule-detail-txt table {
  background-color: #b28e84;
  font-size: 0.18rem;
  text-align: center;
  border-radius: 0.08rem;
  overflow: hidden;
  margin: 0 0.4rem;
}
.rule-detail-txt table th {
  background: #db1010;
  color: #fffee9;
  border-bottom-color: transparent;
  border-right-color: transparent;
}
.rule-detail-txt table td {
  line-height: 1.3;
  padding: 0.05rem;
  background-color: #fff;
}
.font-db1010 {
  color: #db1010;
}
.mt-15 {
  margin-top: 0.2rem;
}

.ico-1 {
  background: url(https://game.gtimg.cn/images/ty/act/a20260508czzj/icon/ico-1.png)
    no-repeat center / contain;
  width: 1.49rem;
  height: 1.46rem;
}
.ico-2 {
  background: url(https://game.gtimg.cn/images/ty/act/a20260508czzj/icon/ico-2.png)
    no-repeat center / contain;
  width: 1.37rem;
  height: 1.37rem;
}
.ico-3 {
  background: url(https://game.gtimg.cn/images/ty/act/a20260508czzj/icon/ico-3.png)
    no-repeat center / contain;
  width: 1.13rem;
  height: 1.44rem;
}
.ico-4 {
  background: url(https://game.gtimg.cn/images/ty/act/a20260508czzj/icon/ico-4.png)
    no-repeat center / contain;
  width: 1.52rem;
  height: 1.39rem;
}
.ico-5 {
  background: url(https://game.gtimg.cn/images/ty/act/a20260508czzj/icon/ico-5.png)
    no-repeat center / contain;
  width: 2.18rem;
  height: 1.49rem;
}
.ico-6 {
  background: url(https://game.gtimg.cn/images/ty/act/a20260508czzj/icon/ico-6.png)
    no-repeat center 90% / contain;
  width: 1.32rem;
  height: 1.32rem;
}
.ico-7 {
  background: url(https://game.gtimg.cn/images/ty/act/a20260508czzj/icon/ico-7.png)
    no-repeat center / contain;
  width: 1.08rem;
  height: 1.11rem;
}
.ico-8 {
  background: url(https://game.gtimg.cn/images/ty/act/a20260508czzj/icon/ico-8.png)
    no-repeat center / contain;
  width: 1.58rem;
  height: 0.85rem;
}
.ico-9 {
  background: url(https://game.gtimg.cn/images/ty/act/a20260508czzj/icon/ico-9.png)
    no-repeat center / contain;
  width: 1.16rem;
  height: 1.16rem;
}
.ico-10 {
  background: url(https://game.gtimg.cn/images/ty/act/a20260508czzj/icon/ico-10.png)
    no-repeat center / contain;
  width: 1.63rem;
  height: 1.25rem;
}
.ico-11 {
  background: url(https://game.gtimg.cn/images/ty/act/a20260508czzj/icon/ico-11.png)
    no-repeat center / contain;
  width: 1.16rem;
  height: 1.16rem;
}
.ico-12 {
  background: url(https://game.gtimg.cn/images/ty/act/a20260508czzj/icon/ico-12.png)
    no-repeat center / contain;
  width: 1.16rem;
  height: 1.16rem;
}
.ico-13 {
  background: url(https://game.gtimg.cn/images/ty/act/a20260508czzj/icon/ico-13.png)
    no-repeat center / contain;
  width: 1.62rem;
  height: 1.44rem;
  left: 43% !important;
}

.ico-6635384 {
  background: url(https://game.gtimg.cn/images/ty/act/a20260508czzj/ico/6635384.png)
    no-repeat center / contain;
  width: 2rem;
  height: 2rem;
}
.ico-6635385 {
  background: url(https://game.gtimg.cn/images/ty/act/a20260508czzj/ico/6635385.png)
    no-repeat center / contain;
  width: 2rem;
  height: 2rem;
}
.ico-6635386 {
  background: url(https://game.gtimg.cn/images/ty/act/a20260508czzj/ico/6635386.png)
    no-repeat center / contain;
  width: 2rem;
  height: 2rem;
}
.ico-6635387 {
  background: url(https://game.gtimg.cn/images/ty/act/a20260508czzj/ico/6635387.png)
    no-repeat center / contain;
  width: 2rem;
  height: 2rem;
}
.ico-6635388 {
  background: url(https://game.gtimg.cn/images/ty/act/a20260508czzj/ico/6635388.png)
    no-repeat center / contain;
  width: 2rem;
  height: 2rem;
}
.ico-6635389 {
  background: url(https://game.gtimg.cn/images/ty/act/a20260508czzj/ico/6635389.png)
    no-repeat center / contain;
  width: 2rem;
  height: 2rem;
}
.ico-6635390 {
  background: url(https://game.gtimg.cn/images/ty/act/a20260508czzj/ico/6635390.png)
    no-repeat center / contain;
  width: 2rem;
  height: 2rem;
}
.ico-6635391 {
  background: url(https://game.gtimg.cn/images/ty/act/a20260508czzj/ico/6635391.png)
    no-repeat center / contain;
  width: 2rem;
  height: 2rem;
}
.ico-6635392 {
  background: url(https://game.gtimg.cn/images/ty/act/a20260508czzj/ico/6635392.png)
    no-repeat center / contain;
  width: 2rem;
  height: 2rem;
}
.ico-6635393 {
  background: url(https://game.gtimg.cn/images/ty/act/a20260508czzj/ico/6635393.png)
    no-repeat center / contain;
  width: 2rem;
  height: 2rem;
}
.ico-6635394 {
  background: url(https://game.gtimg.cn/images/ty/act/a20260508czzj/ico/6635394.png)
    no-repeat center / contain;
  width: 2rem;
  height: 2rem;
}
.ico-6635395 {
  background: url(https://game.gtimg.cn/images/ty/act/a20260508czzj/ico/6635395.png)
    no-repeat center / contain;
  width: 2rem;
  height: 2rem;
}
.ico-6635562 {
  background: url(https://game.gtimg.cn/images/ty/act/a20260508czzj/ico/6635562.png)
    no-repeat center / contain;
  width: 2rem;
  height: 2rem;
}
.ico-6635572 {
  background: url(https://game.gtimg.cn/images/ty/act/a20260508czzj/ico/6635572.png)
    no-repeat center / contain;
  width: 2rem;
  height: 2rem;
}
.ico-6635576 {
  background: url(https://game.gtimg.cn/images/ty/act/a20260508czzj/ico/6635576.png)
    no-repeat center / contain;
  width: 2rem;
  height: 2rem;
}
.ico-6635581 {
  background: url(https://game.gtimg.cn/images/ty/act/a20260508czzj/ico/6635581.png)
    no-repeat center / contain;
  width: 2rem;
  height: 2rem;
}
.ico-6635590 {
  background: url(https://game.gtimg.cn/images/ty/act/a20260508czzj/ico/6635590.png)
    no-repeat center / contain;
  width: 2rem;
  height: 2rem;
}
.ico-6635598 {
  background: url(https://game.gtimg.cn/images/ty/act/a20260508czzj/ico/6635598.png)
    no-repeat center / contain;
  width: 2rem;
  height: 2rem;
}
.ico-6635599 {
  background: url(https://game.gtimg.cn/images/ty/act/a20260508czzj/ico/6635599.png)
    no-repeat center / contain;
  width: 2rem;
  height: 2rem;
}
.ico-6635600 {
  background: url(https://game.gtimg.cn/images/ty/act/a20260508czzj/ico/6635600.png)
    no-repeat center / contain;
  width: 2rem;
  height: 2rem;
}
.ico-6635601 {
  background: url(https://game.gtimg.cn/images/ty/act/a20260508czzj/ico/6635601.png)
    no-repeat center / contain;
  width: 2rem;
  height: 2rem;
}
.ico-6635639 {
  background: url(https://game.gtimg.cn/images/ty/act/a20260508czzj/ico/6635639.png)
    no-repeat center / contain;
  width: 2rem;
  height: 2rem;
}
.ico-6635640 {
  background: url(https://game.gtimg.cn/images/ty/act/a20260508czzj/ico/6635640.png)
    no-repeat center / contain;
  width: 2rem;
  height: 2rem;
}
.ico-6635641 {
  background: url(https://game.gtimg.cn/images/ty/act/a20260508czzj/ico/6635641.png)
    no-repeat center / contain;
  width: 2rem;
  height: 2rem;
}
.ico-6635642 {
  background: url(https://game.gtimg.cn/images/ty/act/a20260508czzj/ico/6635642.png)
    no-repeat center / contain;
  width: 2rem;
  height: 2rem;
}
.ico-6635690 {
  background: url(https://game.gtimg.cn/images/ty/act/a20260508czzj/ico/6635690.png)
    no-repeat center / contain;
  width: 2rem;
  height: 2rem;
}
.ico-6635691 {
  background: url(https://game.gtimg.cn/images/ty/act/a20260508czzj/ico/6635691.png)
    no-repeat center / contain;
  width: 2rem;
  height: 2rem;
}
.ico-6635693 {
  background: url(https://game.gtimg.cn/images/ty/act/a20260508czzj/ico/6635693.png)
    no-repeat center / contain;
  width: 2rem;
  height: 2rem;
}
.ico-6635694 {
  background: url(https://game.gtimg.cn/images/ty/act/a20260508czzj/ico/6635694.png)
    no-repeat center / contain;
  width: 2rem;
  height: 2rem;
}
.qqnum {
  width: 3.98rem;
  height: 0.46rem;
  margin: 0 auto 0.2rem;
  background-color: #f2deb3;
  font-size: 0.24rem;
  color: #593b0d;
  border: 0.01rem solid #593b0d;
  text-align: center;
  border-radius: 0.23rem;
  line-height: 0.46rem;
}
.screen-bar {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
}
.screen-bar #imageUpload {
  cursor: pointer;
  flex-shrink: 0;
  color: transparent;
}
.screen-bar #imageUpload::-webkit-file-upload-button {
  visibility: hidden;
  width: 0;
  height: 0;
}
.screen-bar #imageUpload::file-selector-button {
  visibility: hidden;
  width: 0;
  height: 0;
}
.screen-bar .xhs-img {
  text-align: center;
  font-size: 0.2rem;
  color: #593b0d;
}
.screen-bar .xhs-img img {
  width: 100%;
  height: auto;
  border-radius: 0.1rem;
}
.screen-bar .xhs-img i {
  display: block;
  margin-top: 0.08rem;
  font-size: 0.2rem;
  color: #806331;
}
.screen-bar input {
  width: 2.06rem;
  height: 1.85rem;
  background: #f3deb3
    url("https://game.gtimg.cn/images/ty/act/a20260508czzj/add-icon.png")
    no-repeat 50% 50%/0.54rem 0.55rem;
  border: 0.01rem solid #593b0d;
  border-radius: 0.3rem;
}
.xhs-img {
  width: 2.93rem;
}
.xhs-img img {
  width: 2.93rem;
  border-radius: 0.3rem;
}
.xhs-img i {
  display: block;
  text-align: center;
}
.vid_box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin-bottom: 0.2rem;
}
.vid_box_lf {
  font-size: 0.28rem;
  text-align: left;
  width: 2rem;
  margin-right: 0.1rem;
}
.vid_box_lf p {
  font-size: 0.2rem;
}
.vid_box_rt {
  width: 4.4rem;
  padding: 0.02rem 0.15rem;
  height: 0.94rem;
  background-color: #f3deb3;
  border: 0.01rem solid #593b0d;
  border-radius: 0.2rem;
  box-sizing: border-box;
}
.vid_box_rt textarea {
  width: 100%;
  height: 100%;
  border: none;
  background: transparent;
  color: #593b0d;
  outline: none;
  font-size: 0.22rem;
  line-height: 0.42rem;
  font-family: "Microsoft YaHei";
  padding: 0;
  margin: 0;
}
.vid_box_rt textarea::placeholder {
  color: #593b0d;
}
.vid_box_rt textarea::-webkit-input-placeholder {
  color: #593b0d;
}
.vid_box_tag {
  width: 4.4rem;
  padding: 0.02rem 0;
  box-sizing: border-box;
}
.vid_box_tag ul {
  display: block;
}
.vid_box_tag ul li {
  padding: 0.15rem 0.2rem;
  display: block;
  background-color: #009fd6;
  background-image: url("https://game.gtimg.cn/images/ty/act/a20260508czzj/bili-ico.jpg");
  background-repeat: no-repeat;
  background-position: 0.15rem 50%;
  background-size: 0.35rem 0.28rem;
  color: #fff;
  font-size: 0.24rem;
  line-height: 0.26rem;
  padding-left: 0.55rem;
  float: left;
  margin: 0 0.1rem 0.1rem 0;
  border-radius: 0.2rem;
}
.vid_box_tag ul li i {
  display: block;
  font-size: 0.28rem;
  padding: 0 0 0 0.15rem;
  display: inline-block;
}
.vid_box_rt2 {
  width: 4.4rem;
  padding: 0.02rem 0.05rem;
  box-sizing: border-box;
}
.vid_box_rt2 span i {
  width: 0.16rem;
  height: 0.16rem;
  display: inline-block;
  background-color: #dc1011;
  border-radius: 50%;
  margin-right: 0.05rem;
}
.vid_box_rt3 {
  width: 4.4rem;
  padding: 0.08rem 0.15rem;
  background-color: #f3deb3;
  border: 0.01rem solid #593b0d;
  border-radius: 0.2rem;
  box-sizing: border-box;
}

.sc_bar_lf {
  font-size: 0.28rem;
}
.sc_bar,
.sc_bar2 {
  margin-bottom: 0.4rem;
}
.sc_input {
  width: 5.19rem;
  height: 3.06rem;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}
.width2 {
  width: 1.9rem;
  height: 3.06rem;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  margin: 0 auto;
}
.sc_input input {
  cursor: pointer;
  flex-shrink: 0;
  color: transparent;
}
.sc_input input::-webkit-file-upload-button {
  visibility: hidden;
  width: 0;
  height: 0;
}
.sc_input input::file-selector-button {
  visibility: hidden;
  width: 0;
  height: 0;
}
.sc_input input {
  width: 100%;
  height: 3.04rem;
  background: #f3deb3
    url("https://game.gtimg.cn/images/ty/act/a20260508czzj/add-icon.png")
    no-repeat 50% 40%/0.54rem 0.55rem;
  border: 0.01rem solid #593b0d;
  border-radius: 0.3rem;
}
.sc_bar .sc_input::after {
  content: "添加视频";
  display: block;
  width: 100%;
  position: absolute;
  text-align: center;
  left: 0;
  top: 50%;
  transform: translateY(20%);
  font-size: 0.24rem;
  color: #593b0d;
  text-align: center;
  pointer-events: none;
}
.sc_bar2 .sc_input::after {
  content: "选择封面";
  display: block;
  width: 100%;
  position: absolute;
  text-align: center;
  left: 0;
  top: 50%;
  transform: translateY(20%);
  font-size: 0.24rem;
  color: #593b0d;
  text-align: center;
  pointer-events: none;
}
.sc_bar2 textarea {
  width: 100%;
  height: 3.04rem;
  background: #f3deb3;
  border: 0.01rem solid #593b0d;
  border-radius: 0.3rem;
  box-sizing: border-box;
  padding: 0.15rem;
  color: #593b0d;
}
.sc_bar2 textarea::placeholder {
  color: #593b0d;
}
.up_success {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 999;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(0, 0, 0, 0.85);
}
.up_success p {
  background: linear-gradient(
    to right,
    transparent,
    rgba(0, 0, 0, 0.7) 30%,
    rgba(0, 0, 0, 0.7) 70%,
    transparent
  );
  color: #fff;
  text-align: center;
  padding: 0.15rem 0;
  font-size: 0.52rem;
  font-family: "FZBeiWeiKaiShu-S19S";
  line-height: 0.6rem;
  width: 100%;
}
.color-db1010 {
  color: #bd2910;
}

.ico-7152125 {
  background: url(https://game.gtimg.cn/images/ty/act/a20260508czzj/ico/7152125.png)
    no-repeat center / contain;
  width: 2rem;
  height: 2rem;
}

.ico-7152126 {
  background: url(https://game.gtimg.cn/images/ty/act/a20260508czzj/ico/7152126.png)
    no-repeat center / contain;
  width: 2rem;
  height: 2rem;
}

.ico-7152127 {
  background: url(https://game.gtimg.cn/images/ty/act/a20260508czzj/ico/7152127.png)
    no-repeat center / contain;
  width: 2rem;
  height: 2rem;
}

.ico-7152128 {
  background: url(https://game.gtimg.cn/images/ty/act/a20260508czzj/ico/7152128.png)
    no-repeat center / contain;
  width: 2rem;
  height: 2rem;
}

.ico-7152129 {
  background: url(https://game.gtimg.cn/images/ty/act/a20260508czzj/ico/7152129.png)
    no-repeat center / contain;
  width: 2rem;
  height: 2rem;
}

.ico-7152130 {
  background: url(https://game.gtimg.cn/images/ty/act/a20260508czzj/ico/7152130.png)
    no-repeat center / contain;
  width: 2rem;
  height: 2rem;
}

.ico-7152131 {
  background: url(https://game.gtimg.cn/images/ty/act/a20260508czzj/ico/7152131.png)
    no-repeat center / contain;
  width: 2rem;
  height: 2rem;
}

.ico-7152132 {
  background: url(https://game.gtimg.cn/images/ty/act/a20260508czzj/ico/7152132.png)
    no-repeat center / contain;
  width: 2rem;
  height: 2rem;
}

.ico-7152133 {
  background: url(https://game.gtimg.cn/images/ty/act/a20260508czzj/ico/7152133.png)
    no-repeat center / contain;
  width: 2rem;
  height: 2rem;
}

.ico-7152134 {
  background: url(https://game.gtimg.cn/images/ty/act/a20260508czzj/ico/7152134.png)
    no-repeat center / contain;
  width: 2rem;
  height: 2rem;
}

.ico-7152135 {
  background: url(https://game.gtimg.cn/images/ty/act/a20260508czzj/ico/7152135.png)
    no-repeat center / contain;
  width: 2rem;
  height: 2rem;
}

.ico-7152136 {
  background: url(https://game.gtimg.cn/images/ty/act/a20260508czzj/ico/7152136.png)
    no-repeat center / contain;
  width: 2rem;
  height: 2rem;
}

.ico-7152137 {
  background: url(https://game.gtimg.cn/images/ty/act/a20260508czzj/ico/7152137.png)
    no-repeat center / contain;
  width: 2rem;
  height: 2rem;
}

.ico-7152138 {
  background: url(https://game.gtimg.cn/images/ty/act/a20260508czzj/ico/7152138.png)
    no-repeat center / contain;
  width: 2rem;
  height: 2rem;
}

.ico-7152139 {
  background: url(https://game.gtimg.cn/images/ty/act/a20260508czzj/ico/7152139.png)
    no-repeat center / contain;
  width: 2rem;
  height: 2rem;
}
.ico-7152140 {
  background: url(https://game.gtimg.cn/images/ty/act/a20260508czzj/ico/7152140.png)
    no-repeat center / contain;
  width: 2rem;
  height: 2rem;
}

.ico-7152141 {
  background: url(https://game.gtimg.cn/images/ty/act/a20260508czzj/ico/7152141.png)
    no-repeat center / contain;
  width: 2rem;
  height: 2rem;
}

.ico-7152142 {
  background: url(https://game.gtimg.cn/images/ty/act/a20260508czzj/ico/7152142.png)
    no-repeat center / contain;
  width: 2rem;
  height: 2rem;
}

.ico-7152143 {
  background: url(https://game.gtimg.cn/images/ty/act/a20260508czzj/ico/7152143.png)
    no-repeat center / contain;
  width: 2rem;
  height: 2rem;
}

.ico-7152144 {
  background: url(https://game.gtimg.cn/images/ty/act/a20260508czzj/ico/7152144.png)
    no-repeat center / contain;
  width: 2rem;
  height: 2rem;
}
.ico-7152145 {
  background: url(https://game.gtimg.cn/images/ty/act/a20260508czzj/ico/7152145.png)
    no-repeat center / contain;
  width: 2rem;
  height: 2rem;
}

.ico-7152146 {
  background: url(https://game.gtimg.cn/images/ty/act/a20260508czzj/ico/7152146.png)
    no-repeat center / contain;
  width: 2rem;
  height: 2rem;
}

.ico-7152147 {
  background: url(https://game.gtimg.cn/images/ty/act/a20260508czzj/ico/7152147.png)
    no-repeat center / contain;
  width: 2rem;
  height: 2rem;
}

.ico-7152148 {
  background: url(https://game.gtimg.cn/images/ty/act/a20260508czzj/ico/7152148.png)
    no-repeat center / contain;
  width: 2rem;
  height: 2rem;
}
.ico-7152149 {
  background: url(https://game.gtimg.cn/images/ty/act/a20260508czzj/ico/7152149.png)
    no-repeat center / contain;
  width: 2rem;
  height: 2rem;
}

.ico-7152150 {
  background: url(https://game.gtimg.cn/images/ty/act/a20260508czzj/ico/7152150.png)
    no-repeat center / contain;
  width: 2rem;
  height: 2rem;
}

.ico-7152151 {
  background: url(https://game.gtimg.cn/images/ty/act/a20260508czzj/ico/7152151.png)
    no-repeat center / contain;
  width: 2rem;
  height: 2rem;
}

.ico-7152152 {
  background: url(https://game.gtimg.cn/images/ty/act/a20260508czzj/ico/7152152.png)
    no-repeat center / contain;
  width: 2rem;
  height: 2rem;
}

.ico-7152153 {
  background: url(https://game.gtimg.cn/images/ty/act/a20260508czzj/ico/7152153.png)
    no-repeat center / contain;
  width: 2rem;
  height: 2rem;
}

/* =========================
   小红书认证截图上传区重构
   目标：
   1. 隐藏原生“浏览/未选择文件”
   2. 预览图占据原上传位
   ========================= */

#authDialog .xhs-auth-shot-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
}

#authDialog .xhs-auth-upload-slot {
  position: relative;
  width: 2.06rem;
  height: 1.85rem;
  flex-shrink: 0;
}

#authDialog #xhsAuthImageUpload {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  z-index: 3;
  cursor: pointer;
}

#authDialog #xhsAuthImageUpload::-webkit-file-upload-button {
  visibility: hidden;
  width: 0;
  height: 0;
}

#authDialog #xhsAuthImageUpload::file-selector-button {
  visibility: hidden;
  width: 0;
  height: 0;
}

#authDialog .xhs-auth-upload-slot::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #f3deb3
    url("https://game.gtimg.cn/images/ty/act/a20260508czzj/add-icon.png")
    no-repeat 50% 50% / 0.54rem 0.55rem;
  border: 0.01rem solid #593b0d;
  border-radius: 0.3rem;
  z-index: 1;
  pointer-events: none;
}

#authDialog .xhs-auth-upload-slot.has-preview::before {
  display: none;
}

#authDialog #xhsAuthShotPreviewBox {
  position: absolute;
  inset: 0;
  display: none;
  z-index: 2;
  border: 0.01rem solid #593b0d;
  border-radius: 0.3rem;
  overflow: hidden;
  background: #f3deb3;
}

#authDialog .xhs-auth-upload-slot.has-preview #xhsAuthShotPreviewBox {
  display: block;
}

#authDialog #xhsAuthShotPreview {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#authDialog #xhsAuthShotPreviewBox .preview-name,
#authDialog #xhsAuthShotPreviewBox .preview-actions {
  position: absolute;
  left: 0;
  right: 0;
  z-index: 3;
}

#authDialog #xhsAuthShotPreviewBox .preview-name {
  bottom: 0.42rem;
  margin: 0;
  padding: 0.06rem 0.08rem;
  font-size: 0.16rem;
  line-height: 1.25;
  color: #fff;
  background: rgba(0, 0, 0, 0.48);
  text-align: center;
}

#authDialog #xhsAuthShotPreviewBox .preview-actions {
  bottom: 0;
}

#authDialog #xhsAuthShotPreviewBox .preview-btn {
  width: 100%;
  height: 0.42rem;
  border: 0;
  background: rgba(89, 59, 13, 0.92);
  color: #fff3b5;
  font-size: 0.18rem;
  line-height: 0.42rem;
  text-align: center;
  padding: 0;
  margin: 0;
  cursor: pointer;
}

#authDialog .xhs-auth-upload-slot.has-preview #xhsAuthImageUpload {
  pointer-events: none;
}

#authDialog .screen-bar .xhs-img {
  width: 2.93rem;
  text-align: center;
  font-size: 0.2rem;
  color: #593b0d;
}

#authDialog .screen-bar .xhs-img img {
  width: 2.93rem;
  height: auto;
  border-radius: 0.3rem;
}

#authDialog .screen-bar .xhs-img i {
  display: block;
  margin-top: 0.08rem;
  font-size: 0.2rem;
  color: #806331;
}
