/* 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;
  }
}

.fade-enter-active[data-v-957db4b6],
.fade-leave-active[data-v-957db4b6] {
  transition: opacity 0.5s;
}
.fade-enter[data-v-957db4b6],
.fade-leave-to[data-v-957db4b6] {
  opacity: 0;
}
.container[data-v-957db4b6] {
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border-radius: 1em;
  text-align: center;
  border: 1px #999999;
  box-sizing: border-box;
  z-index: 1000;
}
.btn-container[data-v-957db4b6] {
  margin: 5% auto 0;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.btn-container a[data-v-957db4b6] {
  display: block;
  font-weight: bold;
  text-decoration: none;
  margin-left: 5%;
  cursor: pointer;
}


/*
	PC端登录相关样式
	less使用方式：
	lessc login.css login-min.css -x
*/


/*qq登录*/
.milo-qqLogin{
    position: fixed;
    width: 100%;
    height: 100%;
    left: 0px;
    top: 0px;
    display: none;
}
.milo-qqLogin .qqLoginCover{
    position: fixed;
    width: 100%;
    height: 100%;
    left: 0px;
    top: 0px;
    z-index: 999;
    background-color: white;
    opacity: 0.7;
    filter: alpha(opacity=70);
}
.milo-qqLogin .qqLoginContent{
    width: 650px;
    height: 400px;
    background-color: #fff;
    overflow: hidden;
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 10000;
    margin-left: -375px;
    margin-top: -225px;
    border: 1px solid #bfbfbf;
    box-shadow: 0 0 10px rgba(0, 0, 0, .3)
}
.milo-qqLogin .qqLoginFrame{
	width: 100%;
    height: 400px;
    overflow: hidden;
    border: 0px solid white
}

/*微信登录*/
.milo-wxLogin{
    position: fixed;
    width: 100%;
    height: 100%;
    left: 0px;
    top: 0px;
    display: none;
}
.milo-wxLogin .wxLoginCover{
	position: fixed;
    width: 100%;
    height: 100%;
    left: 0px;
    top: 0px;
    z-index: 999;
    background-color: white;
    opacity: 0.7;
    filter: alpha(opacity=70);
}
.milo-wxLogin .wxLoginContent{
    box-sizing: content-box;
	width: 300px;
    height: 460px;
    background-color: #fff;
    overflow: hidden;
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 10000;
    margin-left: -150px;
    margin-top: -230px;
    border: 1px solid #bfbfbf;
    box-shadow: 0 0 10px rgba(0, 0, 0, .3);
    padding:0px 20px;
}
.milo-wxLogin .wxLoginContent .wxLoginClose{
    height: 40px;
    width: 100%;  
}
.milo-wxLogin .wxLoginContent .wxLoginClose a{
	line-height: 36px;
    text-align: center;
	float: right;
	margin-right: -20px;
    height: 40px;
    width: 40px;
    display:inline-block;
	color: rgb(102, 102, 102);
    font-family: Verdana, sans-serif;
    font-size: 30px;
    text-decoration:none;
    cursor: pointer;
}
.milo-wxLogin .wxLoginContent .wxLoginClose a:hover{
	color: rgb(240, 115, 115);
    font-family: Verdana, sans-serif;
}
.milo-wxLogin .wxLoginContent .wxLoginBox{
	width:100%;
	height:100%;
	overflow:hidden;
}


/*qq微信登录*/

.milo-qqwx-login {
    position: fixed;
    z-index: 10000;
    width: 100%;
    height: 100%;
    left: 0px;
    top: 0px;
    display: none
}

.qqwx-login-cover {
    position: fixed;
    width: 100%;
    height: 100%;
    left: 0px;
    top: 0px;
    z-index: 9999;
    background-color: white;
    opacity: 0.7;
    filter: alpha(opacity=70)
}

.qqwx-login-frame {
    width: 750px;
    height: 470px;
    background-color: white;
    overflow: hidden;
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 10000;
    margin-left: -375px;
    margin-top: -240px;
    border: 1px solid #bfbfbf;
    box-shadow: 0 0 10px rgba(0, 0, 0, .3);
    border-radius: 5px 5px 0px 0px;
}

.qqwx-tabs {
    line-height: 40px;
    /* position: absolute; */
    z-index: 100001;
    width: 100%;
    height: 40px;
}

.qqwx-tabs .qq-tab,
.qqwx-tabs .wx-tab {
    cursor: pointer;
    display: inline-block;
    width: 50%;
    float: left;
    text-align: center;
    font-size: 18px;
    background-color: #f1f1f1;
    color: #b1b1b1;
    text-decoration: none
}

.qqwx-active-qq a.qq-tab {
    color: #fff;
    background-color: #51b7ec
}

.qqwx-active-wx a.wx-tab {
    color: #fff;
    background-color: #4ab218
}

.qqwx-tabs .qqwxtab-close {
    position: absolute;
    right: 0px;
    top: 0px;
    text-decoration: none;
    color: grey;
    font-size: 25px;
    line-height: 25px;
    display: inline-block;
    padding: 0px 5px;
    border-width: 0px 0px 1px 1px;
    border-style: solid
}

.qqwx-active-qq .qqwx-tabs .qqwxtab-close {
    border-color: #e0dcdc
}

.qqwx-active-wx .qqwx-tabs .qqwxtab-close {
    border-color: #8BC34A;
    color: #d4d2d2
}

.qqwx-tabs .qqwxtab-close:hover {
    font-weight: bold
}

.qqwx-tips {
    line-height: 30px;
    font-size: 14px;
    text-align: center;
    color: #a2a2a2;
    position: absolute;
    height: 32px;
    width: 100%;
    top: 40px;
    z-index: 10001;
    background-color: #fff;
    border: none;
}

.qqwx-frame {
    width: 100%;
    height: 400px;
    position: absolute;
    overflow: hidden;
    border: none;
    top: 70px;
}

.qqwx-frame div {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0px;
    top: 0px;
    text-align: center;
    display: none;
    border: none;
}

.qqwx-frame div iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.qqwx-active-qq div.qqwx-frame-qq-div {
    display: block
}

.qqwx-active-wx div.qqwx-frame-wx-div {
    display: block
}

i.ico-qq-logo,
i.ico-wx-logo {
    display: inline-block;
    height: 23px;
    vertical-align: middle;
    margin: 0px 5px;
    margin-top: -4px;
    background: url(https://vm.gtimg.cn/tencentvideo/vstyle/web/common/style/img/login/sprite_login.png?d=0210&max_age=31104000) no-repeat
}

i.ico-qq-logo {
    width: 20px
}

i.ico-wx-logo {
    width: 24px
}

.qqwx-active-wx i.ico-qq-logo {
    background-position: -180px -90px
}

.qqwx-active-wx i.ico-wx-logo {
    background-position: -250px -90px
}

.qqwx-active-qq i.ico-qq-logo {
    background-position: -200px -90px
}

.qqwx-active-qq i.ico-wx-logo {
    background-position: -220px -90px
}

div#qqwx-frame-wx-div {
    top: 20px
}


/*qc登录*/

.loginframe {
    width: 100%;
    height: 400px;
    overflow: hidden;
    border: 0px solid white
}

.milo-qConnectLogin {
    position: fixed;
    width: 100%;
    height: 100%;
    left: 0px;
    top: 0px
}

.qConnectLoginCover {
    position: fixed;
    width: 100%;
    height: 100%;
    left: 0px;
    top: 0px;
    z-index: 9999;
    background-color: white;
    opacity: 0.7;
    filter: alpha(opacity=70)
}

.qConnectLoginContent {
    width: 752px;
    height: 400px;
    background-color: #fff;
    overflow: hidden;
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 10000;
    margin-left: -375px;
    margin-top: -220px;
    border: 1px solid #bfbfbf;
    box-shadow: 0 0 10px rgba(0, 0, 0, .3)
}

.qConnectLoginContent>div {
    height: 30px;
    width: 100%;
    /* background-color: #4fb7ec; */
    background-color: #fff;
    font-size: 18px
}

.qConnectLoginContent>div span {
    color: white;
    display: inline-block;
    line-height: 30px;
    padding: 0px 5px
}

.qConnectLoginContent>div a {
    float: right;
    line-height: 30px;
    text-decoration: none;
    color: #009aff;
    font-weight: bold;
    font-size: 25px;
    width: 30px;
    text-align: center;
    cursor: pointer
}

.qConnectLoginContent>div a:hover {
    color: #f57272
}

.qConnectLoginContent>div {
    position: absolute;
    z-index: 100001;
    right: 0px;
    width: 30px;
    top: 0px;
    height: 48px;
    text-align: center
}

.qConnectLoginContent>div a {
    line-height: 40px;
    display: inline-block
}


/*qc微信登录*/

.milo-qcwx-login {
    position: fixed;
    z-index: 10000;
    width: 100%;
    height: 100%;
    left: 0px;
    top: 0px;
    display: none
}

.qcwx-login-cover {
    position: fixed;
    width: 100%;
    height: 100%;
    left: 0px;
    top: 0px;
    z-index: 9999;
    background-color: white;
    opacity: 0.7;
    filter: alpha(opacity=70)
}

.qcwx-login-frame {
    width: 750px;
    height: 470px;
    background-color: white;
    overflow: hidden;
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 10000;
    margin-left: -375px;
    margin-top: -240px;
    border: 1px solid #bfbfbf;
    box-shadow: 0 0 10px rgba(0, 0, 0, .3);
    border-radius: 5px 5px 0px 0px;
}

.qcwx-tabs {
    line-height: 40px;
    position: absolute;
    z-index: 100001;
    width: 100%
}

.qcwx-tabs .qc-tab,
.qcwx-tabs .wx-tab {
    cursor: pointer;
    display: inline-block;
    width: 50%;
    float: left;
    text-align: center;
    font-size: 18px;
    background-color: #f1f1f1;
    color: #b1b1b1;
    text-decoration: none
}

.qcwx-active-qc a.qc-tab {
    color: #fff;
    background-color: #51b7ec
}

.qcwx-active-wx a.wx-tab {
    color: #fff;
    background-color: #4ab218
}

.qcwx-tabs .qcwxtab-close {
    position: absolute;
    right: 0px;
    top: 0px;
    text-decoration: none;
    color: grey;
    font-size: 25px;
    line-height: 25px;
    display: inline-block;
    padding: 0px 5px;
    border-width: 0px 0px 1px 1px;
    border-style: solid
}

.qcwx-active-qc .qcwx-tabs .qcwxtab-close {
    border-color: #e0dcdc
}

.qcwx-active-wx .qcwx-tabs .qcwxtab-close {
    border-color: #8BC34A;
    color: #d4d2d2
}

.qcwx-tabs .qcwxtab-close:hover {
    font-weight: bold
}

.qcwx-tips {
    line-height: 30px;
    font-size: 14px;
    text-align: center;
    color: #a2a2a2;
    position: absolute;
    width: 100%;
    top: 40px;
    z-index: 10001;
    background-color: #fff;
}

.qcwx-frame {
    width: 750px;
    height: 470px;
    position: absolute;
    overflow: hidden;
}

.qcwx-frame div {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0px;
    top: 0px;
    text-align: center;
    display: none
}

.qcwx-frame div iframe {
    width: 100%;
    height: 100%
}

.qcwx-active-qc div.qcwx-frame-qc-div {
    display: block
}

.qcwx-active-wx div.qcwx-frame-wx-div {
    display: block;
    top: 70px;
    height: 400px;
}

i.ico-qc-logo,
i.ico-wx-logo {
    display: inline-block;
    height: 23px;
    vertical-align: middle;
    margin: 0px 5px;
    margin-top: -4px;
    background: url(https://vm.gtimg.cn/tencentvideo/vstyle/web/common/style/img/login/sprite_login.png?d=0210&max_age=31104000) no-repeat
}

i.ico-qc-logo {
    width: 20px
}

i.ico-wx-logo {
    width: 24px
}

.qcwx-active-wx i.ico-qc-logo {
    background-position: -180px -90px
}

.qcwx-active-wx i.ico-wx-logo {
    background-position: -250px -90px
}

.qcwx-active-qc i.ico-qc-logo {
    background-position: -200px -90px
}

.qcwx-active-qc i.ico-wx-logo {
    background-position: -220px -90px
}

div#qcwx-frame-wx-div {
    top: 20px
}


/*wegame登录*/

.wegameloginframe {
    width: 100%;
    height: 600px;
    overflow: hidden;
    border: 0px solid white
}

.milo-wegameLogin {
    position: fixed;
    width: 100%;
    height: 100%;
    left: 0px;
    top: 0px
}

.wegameLoginCover {
    position: fixed;
    width: 100%;
    height: 100%;
    left: 0px;
    top: 0px;
    z-index: 9999;
    background-color: white;
    opacity: 0.7;
    filter: alpha(opacity=70)
}

.wegameLoginContent {
    width: 800px;
    height: 600px;
    background-color: #fff;
    overflow: hidden;
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 10000;
    margin-left: -400px;
    margin-top: -300px;
    border: 1px solid #bfbfbf;
    box-shadow: 0 0 10px rgba(0, 0, 0, .3)
}

.wegameLoginContent>div {
    height: 30px;
    width: 100%;
    background-color: none;
    font-size: 18px
}

.wegameLoginContent>div.wegameLoginTitle {
    width: 100%;
    background-color: #0e0e0e
}

div.wegameLoginIcon {
    display: none
}

.wegameLoginTitle>div.wegameLoginIcon {
    display: block;
    float: left;
    width: 239px;
    height: 60px;
    background: url(https://api.rail.tgp.qq.com/web/oauth2.0/login/images/wegame-logo-m.png) no-repeat center;
    margin-left: 10px
}

.wegameLoginContent>div span {
    color: white;
    display: inline-block;
    line-height: 30px;
    padding: 0px 5px
}

.wegameLoginContent>div a {
    float: right;
    line-height: 30px;
    text-decoration: none;
    color: white;
    font-weight: bold;
    font-size: 25px;
    width: 30px;
    text-align: center;
    cursor: pointer
}

.wegameLoginContent>div a:hover {
    color: #f57272
}

.wegameLoginContent>div {
    position: absolute;
    z-index: 100001;
    right: 0px;
    width: 30px;
    top: 0px;
    height: 60px;
    text-align: center
}

.wegameLoginContent>div a {
    line-height: 55px;
    display: inline-block
}


.role-selector {
  transition: opacity 0.5s ease;
  opacity: 0;
  z-index: 1000;
  display: none;
  position: fixed;
}
.r-container {
  width: 296px;
  /* height: 422px; */
  background-color: #fff;
  padding: 20px;
  box-sizing: border-box;
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  /* justify-content: space-between; */
  font-size: 20px;
  z-index: 1000;
}
.r-container > div {
  margin: 8px 0;
}
.pip {
  font-size: 0.7em;
}
.pip input {
  width: 14px;
  height: 14px;
  margin: 0 2px;
  cursor: pointer;
}
.r-container select,
.r-container option {
  width: 100%;
  height: 40px;
  box-sizing: border-box;
  border: 1px solid #797b7c;
  padding: 5px;
  font-size: 0.8em;
}
.error {
  margin: 0 0 -4px;
  font-size: 0.7em;
  color: red;
}
.btns {
  margin-top: 5px;
  line-height: 40px;
  font-size: 0.8em;
  display: flex;
  justify-content: flex-end;
  width: 100%;
}
.btns div {
  width: 75px;
  height: 40px;
  text-align: center;
  letter-spacing: 0.5em;
  text-indent: 0.7em;
  border-radius: 5px;
  cursor: pointer;
}
.cancel-btn {
  border: 1px solid #e0e3e9;
  margin-right: 15px;
}
.confirm-btn {
  background-color: #66b1ff;
  color: #fff;
}
.r-block {
  width: 100%;
  height: 70%;
  position: absolute;
  bottom: 0;
  left: 0;
}
.r-close {
  position: absolute;
  right: 30px;
  top: 20px;
  color: #abadb4;
  cursor: pointer;
}
.r-mask {
  background-color: #000;
  opacity: 0.7;
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.modal-container[data-v-2dafd78f] {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 999;
}
.mask[data-v-2dafd78f] {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 99;
  background: rgba(0, 0, 0, 0.8);
}
.modal-body[data-v-2dafd78f] {
  position: relative;
  z-index: 100;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  opacity: 0;
  animation: mbody-2dafd78f 0.3s ease-out forwards;
}
@keyframes mbody-2dafd78f {
100% {
    opacity: 1;
}
}
.fade-enter-active[data-v-2dafd78f],
.fade-leave-active[data-v-2dafd78f] {
  transition: opacity 0.5s;
}
.fade-enter[data-v-2dafd78f],
.fade-leave-to[data-v-2dafd78f] {
  opacity: 0;
}
.unit-close[data-v-2dafd78f] {
  position: absolute;
  width: 0.57rem;
  height: 0.57rem;
  background-image: url(//game.gtimg.cn/images/xycq/act/a20250707yyz/modal/close.png);
  background-size: cover;
}
.modalBtn[data-v-2dafd78f] {
  width: 1.195rem;
  height: 0.415rem;
  top: 0.65rem;
}

.au-fa-modal,
.au-fa-modal .au-fa-mask {
  position: fixed;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
}
.au-fa-modal {
  transition: opacity 0.5s ease;
  opacity: 0;
  display: none;
  z-index: 5000;
}
.au-fa-mask {
  background: rgba(0, 0, 0, 0.7);
}
.au-fa-display {
  display: block;
}
.au-fa-opacity {
  opacity: 1;
}
.au-fa-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.au-fa-close-icon {
  position: absolute;
  top: 3.6vw;
  right: 4.8vw;
  width: 6.4vw;
  height: 5.6vw;
  /* background: url("//glfagame.com/act/a20230320feres/images/au-fa-ui/icon-close.png") no-repeat top/contain; */
}
.au-fa-container {
  position: absolute;
  width: 100%;
  height: 100%;
}
.au-fa-point {
  pointer-events: none;
}

.au-fa-addr {
  z-index: 5001;
}
.au-fa-close-icon {
  position: absolute;
  top: 20px;
  font-size: 20px;
  right: 20px;
  width: 24px;
  height: 21px;
  /* background: url("//glfagame.com/act/a20230320feres/images/au-fa-ui/icon-close.png") no-repeat top/contain; */
}
.au-fa-addr .au-fa-bg {
  width: 290px;
  background-color: #fff;
  padding: 20px;
  box-sizing: border-box;
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  font-size: 20px;
  z-index: 5001;
}
.au-fa-addr-container {
  display: flex;
  flex-direction: column;
}
.au-fa-addr-container label {
  font-size: 18px;
  margin: 8px 0 5px;
  text-indent: 10px;
  position: relative;
}
.au-fa-addr-container label::before {
  display: block;
  content: '*';
  position: absolute;
  top: 0;
  left: -10px;
  color: red;
}
.au-fa-addr-area select,
.au-fa-addr-area option {
  width: 100%;
  margin: 5px 0;
  height: 30px;
  box-sizing: border-box;
  border: 1px solid #797b7c;
  border-radius: 2px;
  padding: 3px;
  font-size: 15px;
}
.au-fa-addr-area.mobile {
  width: 238px;
  margin-bottom: 8px;
  font-size: 15px;
  border: 1px solid #797b7c;
  border-radius: 2px;
  padding: 3px 5px;
  margin-right: 5px;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  position: relative;
}
.au-fa-addr-area.mobile::after {
  display: block;
  content: '';
  position: absolute;
  right: 5px;
  top: 11px;
  border: 5px solid transparent;
  border-top: 5px solid #000;
}
.au-fa-addr input,
.au-fa-addr textarea {
  outline: none;
  border: 1px solid #797b7c;
  border-radius: 2px;
  width: 250px;
  height: 30px;
  line-height: 30px;
  font-size: 18px;
  box-sizing: border-box;
  padding-left: 10px;
  margin-bottom: 8px;
  -webkit-user-select: auto !important;
     -moz-user-select: auto !important;
          user-select: auto !important;
}
.au-fa-addr textarea {
  height: 70px;
}
.au-fa-addr-confirm {
  background-color: #66b1ff;
  color: #fff;
  width: 75px;
  height: 35px;
  line-height: 35px;
  margin: 15px auto 0;
  text-align: center;
  letter-spacing: 0.5em;
  text-indent: 0.7em;
  border-radius: 5px;
  cursor: pointer;
}

#cover {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  visibility: hidden;
  opacity: 0;
  transition: 0.5s;
  z-index: 5005;
}
#cover.show {
  visibility: visible;
  opacity: 0.5;
}
#cover.show,
#picker {
  transition: 0.5s;
}
#picker {
  background-color: #fff;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  transform: translateY(100%);
  z-index: 5005;
}
#picker.show {
  transform: translateY(0);
  z-index: 5005;
}
.picker-header {
  position: relative;
  background-color: #f2f2f4;
  height: 40px;
  line-height: 40px;
  z-index: 3;
  color: #007af0;
  font-size: 17px;
}
.picker-header .cancel {
  position: absolute;
  top: 0;
  left: 15px;
}
.picker-header .confirm {
  position: absolute;
  top: 0;
  right: 15px;
}
.picker-items {
  position: relative;
  height: 216px;
  overflow: hidden;
}
.picker-items-col {
  float: left;
  width: 33%;
  height: 100%;
  position: relative;
  z-index: 10;
}
.picker-item {
  height: 36px;
  line-height: 36px;
  font-size: 16px;
  box-sizing: border-box;
  left: 0;
  color: #000;
  width: 100%;
  text-align: center;
  z-index: 1;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
.picker-line {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 90px;
  z-index: 10;
  /*!* autoprefixer: off *!*/
  background: -webkit-linear-gradient(top, #fff, hsla(0, 0%, 100%, 0.7));
  background: linear-gradient(top, #fff, hsla(0, 0%, 100%, 0.7));
  border-bottom: 1px solid #ddd;
  pointer-events: none;
}
.picker-line-bottom {
  top: auto;
  bottom: 0;
  border-top: 1px solid #ddd;
  border-bottom: none;
  /*!* autoprefixer: off *!*/
  background: -webkit-linear-gradient(bottom, #fff, hsla(0, 0%, 100%, 0.7));
  background: linear-gradient(bottom, #fff, hsla(0, 0%, 100%, 0.7));
}

body,
html {
  background-color: #94c1fe;
}
div,
p,
span,
img {
  margin: 0;
  padding: 0;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  -webkit-tap-highlight-color: #000000;
  -webkit-tap-highlight-color: transparent;
}
/* Footer */
#afooter {
  width: 100%;
  text-align: center;
  font-size: 12px;
  line-height: 20px;
  color: #9f9e9e;
  background: #000;
  padding: 15px 0;
  overflow: hidden;
}
#afooter .wrap_ied {
  margin: 0 auto;
  width: 1200px;
}
#afooter a {
  color: #9f9e9e;
  text-decoration: none;
}
#afooter a:hover {
  text-decoration: underline;
}
/* Footer END */
.app-container {
  position: relative;
  width: 100%;
  margin: 0 auto;
  background-size: cover;
  min-width: 12rem;
  overflow: hidden;
}
.web-bg {
  /* 页面背景切片 */
  position: relative;
  background-size: 1920px 100%;
  background-position: top center;
  width: 100%;
  height: 10.8rem;
  background-size: cover;
  background-repeat: no-repeat;
}
.button {
  /* 按钮 */
  cursor: pointer;
  transition: all 0.3s;
}
.button:hover {
  filter: brightness(1.1);
}
.button.disabled {
  filter: grayscale(1);
}
.button.disabled:hover {
  filter: grayscale(1);
}
.bg {
  width: 100%;
  height: 100%;
  background-size: cover;
}
.ui-1 {
  background-image: url(//game.gtimg.cn/images/xycq/act/a20250707yyz/slice_1.jpg);
}
.ui-2 {
  background-image: url(//game.gtimg.cn/images/xycq/act/a20250707yyz/slice_2.jpg);
}
.ui-3 {
  background-image: url(//game.gtimg.cn/images/xycq/act/a20250707yyz/slice_3.jpg);
}
.ui-4 {
  background-image: url(//game.gtimg.cn/images/xycq/act/a20250707yyz/slice_4.jpg);
}
.ui-5 {
  background-image: url(//game.gtimg.cn/images/xycq/act/a20250707yyz/slice_5.jpg);
}
.ui-6 {
  background-image: url(//game.gtimg.cn/images/xycq/act/a20250707yyz/slice_6.jpg);
}
.ui-7 {
  background-image: url(//game.gtimg.cn/images/xycq/act/a20250707yyz/slice_7.jpg);
}
.ui-8 {
  background-image: url(//game.gtimg.cn/images/xycq/act/a20250707yyz/slice_8.jpg);
}
.ui-9 {
  background-image: url(//game.gtimg.cn/images/xycq/act/a20250707yyz/slice_9.jpg);
  height: 9.75rem;
}
.app-container__inner {
  position: absolute;
  width: 12rem;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}
.logo {
  position: absolute;
  width: 2.43rem;
  height: 1.4rem;
  left: -3.06rem;
  top: 0.4rem;
  background-image: url(//game.gtimg.cn/images/xycq/act/a20250707yyz/logo.png);
}
.go-index {
  position: absolute;
  width: 3.6rem;
  height: 0.85rem;
  right: -3.25rem;
  top: 0.5rem;
  background-image: url(//game.gtimg.cn/images/xycq/act/a20250707yyz/goindex.png);
}
.box-login {
  position: absolute;
  text-align: center;
  width: 100%;
  font-size: 0.24rem;
  top: 10rem;
  color: #fff;
  display: flex;
  justify-content: center;
}
.box-login div {
  margin: 0 0.05rem;
}
.act-opt {
  opacity: 0;
  transform: translateY(100px);
}
.act-opt.active {
  opacity: 1;
  transform: translateY(0);
  transition: all 0.5s ease-out;
}
.slogan {
  position: absolute;
  width: 12.75rem;
  height: 8.48rem;
  top: 1.25rem;
  left: -0.35rem;
  background-image: url(//game.gtimg.cn/images/xycq/act/a20250707yyz/slogan.png);
  transform: scale(1.2);
  opacity: 0;
}
.slogan.active {
  transform: scale(1);
  transition: all 0.5s ease-out;
  opacity: 1;
}
.c1 {
  position: absolute;
  top: 11.15rem;
  left: 1.61rem;
  width: 8.77rem;
  height: 7.69rem;
  background-image: url(//game.gtimg.cn/images/xycq/act/a20250707yyz/c1.png);
}
.c1 .c1_btn {
  position: absolute;
  top: 5.2rem;
  left: 0.35rem;
  width: 8rem;
  display: flex;
  justify-content: space-between;
}
.c1 .yy {
  width: 3.84rem;
  height: 1.02rem;
  background-image: url(//game.gtimg.cn/images/xycq/act/a20250707yyz/yy.png);
}
.c1 .yy.active {
  filter: grayscale(1);
  background-image: url(//game.gtimg.cn/images/xycq/act/a20250707yyz/yya.png);
}
.c1 .lq {
  width: 3.84rem;
  height: 1.02rem;
  background-image: url(//game.gtimg.cn/images/xycq/act/a20250707yyz/lq.png);
}
.c1 .lq.active {
  filter: grayscale(1);
  background-image: url(//game.gtimg.cn/images/xycq/act/a20250707yyz/lqa.png);
}
.c1 .yy-num {
  position: absolute;
  top: 8rem;
  font-size: 0.24rem;
  color: #2f55a3;
  width: 100%;
  text-align: center;
}
.c2 {
  position: absolute;
  top: 21rem;
  left: -0.54rem;
  width: 12.45rem;
  height: 8.78rem;
  background-image: url(//game.gtimg.cn/images/xycq/act/a20250707yyz/c2.png);
}
.c2 .go {
  position: absolute;
  top: 8.7rem;
  left: 4.5rem;
  width: 3.84rem;
  height: 1.02rem;
  background-image: url(//game.gtimg.cn/images/xycq/act/a20250707yyz/go.png);
}
.c2 .go a {
  display: inline-block;
  width: 100%;
  height: 100%;
}
.c3 {
  position: absolute;
  top: 30.4rem;
  left: 1.58rem;
  width: 8.99rem;
  height: 13.04rem;
  background-image: url(//game.gtimg.cn/images/xycq/act/a20250707yyz/c3.png);
}
.c3 .c3_btn {
  position: absolute;
  top: 4.3rem;
  left: 3.46rem;
  height: 8.2rem;
  display: flex;
  flex-wrap: wrap;
  align-content: space-between;
}
.c3 .lq {
  width: 3.84rem;
  height: 1.02rem;
  background-image: url(//game.gtimg.cn/images/xycq/act/a20250707yyz/lq.png);
}
.c3 .lq.active {
  filter: grayscale(1);
  background-image: url(//game.gtimg.cn/images/xycq/act/a20250707yyz/lqa.png);
}
.c4 {
  position: absolute;
  top: 45rem;
  left: 0.25rem;
  width: 11.43rem;
  height: 8.6rem;
  background-image: url(//game.gtimg.cn/images/xycq/act/a20250707yyz/c4.png);
}
.c4 .c4_btn {
  position: absolute;
  top: 2.45rem;
  left: 6.46rem;
  height: 6rem;
  display: flex;
  flex-wrap: wrap;
  align-content: space-between;
}
.c4 .btn1 {
  width: 4.18rem;
  height: 0.94rem;
  background-image: url(//game.gtimg.cn/images/xycq/act/a20250707yyz/share.png);
}
.c4 .btn2 {
  width: 4.18rem;
  height: 0.94rem;
  background-image: url(//game.gtimg.cn/images/xycq/act/a20250707yyz/follow.png);
}
.c4 .btn3 {
  width: 4.18rem;
  height: 0.94rem;
  background-image: url(//game.gtimg.cn/images/xycq/act/a20250707yyz/lq1.png);
}
.c4 .btn3.active {
  filter: grayscale(1);
  background-image: url(//game.gtimg.cn/images/xycq/act/a20250707yyz/lq1a.png);
}
.c4 .btn4 {
  width: 4.18rem;
  height: 0.94rem;
  background-image: url(//game.gtimg.cn/images/xycq/act/a20250707yyz/lq1.png);
}
.c4 .btn4.active {
  filter: grayscale(1);
  background-image: url(//game.gtimg.cn/images/xycq/act/a20250707yyz/lq1a.png);
}
.c4 .btn5 {
  width: 4.18rem;
  height: 0.94rem;
  background-image: url(//game.gtimg.cn/images/xycq/act/a20250707yyz/lq1.png);
}
.c4 .btn5.active {
  filter: grayscale(1);
  background-image: url(//game.gtimg.cn/images/xycq/act/a20250707yyz/lq1a.png);
}
.c5 {
  position: absolute;
  top: 53.9rem;
  left: 0;
  width: 12.51rem;
  height: 13.52rem;
  background-image: url(//game.gtimg.cn/images/xycq/act/a20250707yyz/c5.png);
}
.c5 .drawNum {
  position: absolute;
  top: 13.1rem;
  font-size: 0.24rem;
  left: 7rem;
  color: #2f55a3;
}
.c5 .jt {
  position: absolute;
  top: 5.25rem;
  left: 4.1rem;
  width: 4.07rem;
  height: 4.07rem;
  background-image: url(//game.gtimg.cn/images/xycq/act/a20250707yyz/zz.png);
}
.c5 .jt.active {
  animation: turnactive 0.5s linear infinite;
}
.c5 .jt.stop1 {
  animation: turnstop1 1s linear;
  animation-fill-mode: forwards;
}
.c5 .jt.stop2 {
  animation: turnstop2 1s linear;
  animation-fill-mode: forwards;
}
.c5 .jt.stop3 {
  animation: turnstop3 1s linear;
  animation-fill-mode: forwards;
}
.c5 .jt.stop4 {
  animation: turnstop4 1s linear;
  animation-fill-mode: forwards;
}
.c5 .jt.stop5 {
  animation: turnstop5 1s linear;
  animation-fill-mode: forwards;
}
.c5 .jt.stop6 {
  animation: turnstop6 1s linear;
  animation-fill-mode: forwards;
}
.c5 .jt.stop7 {
  animation: turnstop7 1s linear;
  animation-fill-mode: forwards;
}
.c5 .jt.stop8 {
  animation: turnstop8 1s linear;
  animation-fill-mode: forwards;
}
.c5 .c5_btn {
  position: absolute;
  display: flex;
  top: 12rem;
  width: 100%;
  justify-content: center;
  align-items: center;
}
.c5 .gl {
  margin: 0 0.1rem;
  width: 3.01rem;
  height: 0.49rem;
  background-image: url(//game.gtimg.cn/images/xycq/act/a20250707yyz/probability.png);
}
.c5 .draw {
  margin: 0 0.1rem;
  width: 3.84rem;
  height: 1.02rem;
  background-image: url(//game.gtimg.cn/images/xycq/act/a20250707yyz/draw.png);
}
.c5 .address {
  margin: 0 0.1rem;
  width: 3.01rem;
  height: 0.49rem;
  background-image: url(//game.gtimg.cn/images/xycq/act/a20250707yyz/address1.png);
}
.c5 .record {
  position: absolute;
  top: 13.6rem;
  left: 50%;
  transform: translateX(-50%);
  width: 3.84rem;
  font-size: 0.24rem;
  color: #2f55a3;
  text-align: center;
  text-decoration: underline;
}
.c6 {
  position: absolute;
  top: 67.9rem;
  left: -0.54rem;
  width: 12.47rem;
  height: 22.37rem;
  background-image: url(//game.gtimg.cn/images/xycq/act/a20250707yyz/c6.png);
}
.c6 .address {
  position: absolute;
  top: 10rem;
  left: 4.53rem;
  width: 3.84rem;
  height: 1.02rem;
  background-image: url(//game.gtimg.cn/images/xycq/act/a20250707yyz/address.png);
}
@keyframes turnactive {
0% {
    opacity: 1;
    transform: rotate(0);
    transform-origin: center;
}
100% {
    opacity: 1;
    transform: rotate(360deg);
    transform-origin: center;
}
}
@keyframes turnstop1 {
100% {
    opacity: 1;
    transform: rotate(360deg);
}
}
@keyframes turnstop2 {
100% {
    opacity: 1;
    transform: rotate(405deg);
}
}
@keyframes turnstop3 {
100% {
    opacity: 1;
    transform: rotate(450deg);
}
}
@keyframes turnstop4 {
100% {
    opacity: 1;
    transform: rotate(495deg);
}
}
@keyframes turnstop5 {
100% {
    opacity: 1;
    transform: rotate(540deg);
}
}
@keyframes turnstop6 {
100% {
    opacity: 1;
    transform: rotate(585deg);
}
}
@keyframes turnstop7 {
100% {
    opacity: 1;
    transform: rotate(630deg);
}
}
@keyframes turnstop8 {
100% {
    opacity: 1;
    transform: rotate(675deg);
}
}
.share-bg {
  width: 6.87rem;
  height: 3.86rem;
  background-image: url(//game.gtimg.cn/images/xycq/act/a20250707yyz/modal/sharebg.png);
}
.share-bg .unit-close {
  right: -0.15rem;
  top: -0.4rem;
}
.share-bg .share-container {
  position: absolute;
  font-size: 0.2rem;
  color: #2f55a3;
  top: 1.3rem;
  left: 50%;
  transform: translateX(-50%);
  width: 70%;
  text-align: center;
  line-height: 0.4rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.gl-bg {
  width: 6.87rem;
  height: 5.98rem;
  background-image: url(//game.gtimg.cn/images/xycq/act/a20250707yyz/modal/modalbg.png);
}
.gl-bg .gl-container {
  position: absolute;
  top: 2rem;
  left: 0.79rem;
  width: 5.55rem;
  height: auto;
}
.gl-bg .title {
  position: absolute;
  top: 0.45rem;
  left: 1.85rem;
  width: 3.24rem;
  height: 0.99rem;
  background-image: url(//game.gtimg.cn/images/xycq/act/a20250707yyz/modal/title1.png);
}
.gl-bg .tr {
  position: absolute;
  top: 1.6rem;
  left: 0.79rem;
  width: 5.55rem;
  font-size: 0.2rem;
  line-height: 0.4rem;
  background-color: #bdf4ff;
  border-bottom: 1px solid #d3f0f9;
  text-align: center;
  color: #153068;
  display: flex;
}
.gl-bg .tr span {
  width: 20%;
}
.gl-bg .tr .gl-item-name {
  flex: 1;
}
.gl-bg .gl-item {
  top: 0.89rem;
  left: 0.7rem;
  width: 5.55rem;
  font-size: 0.2rem;
  line-height: 0.4rem;
  text-align: center;
  display: flex;
}
.gl-bg .gl-item span {
  color: #2f55a3;
  width: 20%;
  text-overflow: ellipsis;
  overflow: hidden;
  text-wrap: nowrap;
  border-right: 1px solid #d3f0f9;
}
.gl-bg .gl-item .gl-item-name {
  flex: 1;
}
.gl-bg .unit-close {
  right: -0.15rem;
  top: -0.4rem;
}
.follow-bg {
  width: 6.87rem;
  height: 5.98rem;
  background-image: url(//game.gtimg.cn/images/xycq/act/a20250707yyz/modal/modalbg.png);
}
.follow-bg .follow-container {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -55%);
  width: 2.4rem;
  height: 2.4rem;
  background-image: url(//game.gtimg.cn/images/xycq/act/a20250707yyz/code.jpg);
}
.follow-bg .follow-container p {
  position: absolute;
  bottom: -0.7rem;
  width: 100%;
  font-size: 0.35rem;
  text-align: center;
  color: #aa5f2b;
}
.follow-bg .unit-close {
  right: -0.15rem;
  top: -0.4rem;
}
.gift-bg {
  width: 6.87rem;
  height: 5.98rem;
  background-image: url(//game.gtimg.cn/images/xycq/act/a20250707yyz/modal/modalbg.png);
}
.gift-bg .title {
  position: absolute;
  top: 0.45rem;
  left: 1.85rem;
  width: 3.24rem;
  height: 0.99rem;
  background-image: url(//game.gtimg.cn/images/xycq/act/a20250707yyz/modal/title.png);
}
.gift-bg .tip {
  position: absolute;
  width: 5.15rem;
  height: 0.59rem;
  top: 4.3rem;
  left: 1rem;
  background-image: url(//game.gtimg.cn/images/xycq/act/a20250707yyz/modal/tip.png);
}
.gift-bg .address {
  position: absolute;
  width: 3.84rem;
  height: 1.02rem;
  top: 4.2rem;
  left: 1.5rem;
  background-image: url(//game.gtimg.cn/images/xycq/act/a20250707yyz/address.png);
}
.gift-bg .imgbg {
  position: absolute;
  top: 1.56rem;
  left: 2.31rem;
  width: 2.61rem;
  height: 2.46rem;
  background-image: url(//game.gtimg.cn/images/xycq/act/a20250707yyz/modal/giftbg.png);
  display: flex;
  align-items: center;
}
.gift-bg .imgbg img {
  position: absolute;
  left: 0.6rem;
  width: 1.2rem;
  height: auto;
}
.gift-bg .unit-close {
  right: -0.15rem;
  top: -0.4rem;
}
.history-bg {
  width: 6.87rem;
  height: 5.98rem;
  background-image: url(//game.gtimg.cn/images/xycq/act/a20250707yyz/modal/modalbg.png);
}
.history-bg .unit-close {
  right: -0.15rem;
  top: -0.4rem;
}
.history-bg .title {
  position: absolute;
  top: 0.45rem;
  left: 1.85rem;
  width: 3.24rem;
  height: 0.99rem;
  background-image: url(//game.gtimg.cn/images/xycq/act/a20250707yyz/modal/title.png);
}
.history-bg .tip {
  position: absolute;
  width: 5.15rem;
  height: 0.59rem;
  top: 4.3rem;
  left: 1rem;
  background-image: url(//game.gtimg.cn/images/xycq/act/a20250707yyz/modal/tip.png);
}
.history-bg .tr {
  position: absolute;
  top: 1.6rem;
  left: 1.1rem;
  width: 5rem;
  font-size: 0.2rem;
  line-height: 0.4rem;
  display: flex;
  justify-content: space-between;
  background-color: #bdf4ff;
  border-bottom: 1px solid #d3f0f9;
  text-align: center;
  color: #153068;
}
.history-bg .tr span {
  width: 50%;
  text-overflow: ellipsis;
  overflow: hidden;
  text-wrap: nowrap;
}
.history-bg .history-container {
  position: absolute;
  top: 2rem;
  left: 1.1rem;
  width: 5rem;
  height: 2.1rem;
  font-size: 0.2rem;
  line-height: 0.4rem;
  overflow-y: auto;
  text-align: center;
}
.history-bg .history-container .default {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.history-bg .history-container span {
  color: #2f55a3;
  text-align: center;
  width: 50%;
  text-overflow: ellipsis;
  overflow: hidden;
  text-wrap: nowrap;
  border-right: 1px solid #d3f0f9;
}
.history-bg .history-container .history-item {
  width: 100%;
  display: flex;
  justify-content: space-between;
  background-color: #fff;
}

