/* 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%;
}
/* 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;
}
i svg {
  display: block;
  width: 100%;
  height: 100%;
}
svg {
  display: inline-block;
  width: 100%;
  height: 100%;
  fill: currentColor;
  font-family: inherit;
  line-height: 0;
}
/* 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;
}

body,
html {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  background-color: #6c2017;
  overflow: hidden;
}
body > div {
  font-size: 0;
}
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;
}
.bg {
  width: 100%;
  height: 100%;
  background-size: cover;
}
.button.disabled {
  filter: grayscale(1);
}
.button.disabled:hover {
  filter: grayscale(1);
}
.show {
  display: block !important;
}
.hide {
  display: none !important;
}
.app-container {
  position: relative;
  width: 100%;
  height: 100%;
  margin: 0 auto;
  background-size: cover;
  font-size: 0.12rem;
  overflow-x: hidden;
}
.ui-1 {
  position: absolute;
  background-image: url(//game.gtimg.cn/images/xycq/act/a20250616qy/slice_1.jpg);
  background-size: cover;
  width: 100%;
  height: 3.5rem;
  top: 0rem;
  left: 0;
}
.ui-2 {
  position: absolute;
  background-image: url(//game.gtimg.cn/images/xycq/act/a20250616qy/slice_2.jpg);
  background-size: cover;
  width: 100%;
  height: 3.5rem;
  top: 3.5rem;
  left: 0;
}
.ui-3 {
  position: absolute;
  background-image: url(//game.gtimg.cn/images/xycq/act/a20250616qy/slice_3.jpg);
  background-size: cover;
  width: 100%;
  height: 3.5rem;
  top: 7rem;
  left: 0;
}
.ui-4 {
  position: absolute;
  background-image: url(//game.gtimg.cn/images/xycq/act/a20250616qy/slice_4.jpg);
  background-size: cover;
  width: 100%;
  height: 3.5rem;
  top: 10.5rem;
  left: 0;
}
.ui-5 {
  position: absolute;
  background-image: url(//game.gtimg.cn/images/xycq/act/a20250616qy/slice_5.jpg);
  background-size: cover;
  width: 100%;
  height: 3.5rem;
  top: 14rem;
  left: 0;
}
.ui-6 {
  position: absolute;
  background-image: url(//game.gtimg.cn/images/xycq/act/a20250616qy/slice_6.jpg);
  background-size: cover;
  width: 100%;
  height: 3.5rem;
  top: 17.5rem;
  left: 0;
}
.ui-7 {
  position: absolute;
  background-image: url(//game.gtimg.cn/images/xycq/act/a20250616qy/slice_7.jpg);
  background-size: cover;
  width: 100%;
  height: 3.5rem;
  top: 21rem;
  left: 0;
}
.ui-8 {
  position: absolute;
  background-image: url(//game.gtimg.cn/images/xycq/act/a20250616qy/slice_8.jpg);
  background-size: cover;
  width: 100%;
  height: 3.5rem;
  top: 24.5rem;
  left: 0;
}
.ui-9 {
  position: absolute;
  background-image: url(//game.gtimg.cn/images/xycq/act/a20250616qy/slice_9.jpg);
  background-size: cover;
  width: 100%;
  height: 3.5rem;
  top: 28rem;
  left: 0;
}
.ui-10 {
  position: absolute;
  background-image: url(//game.gtimg.cn/images/xycq/act/a20250616qy/slice_10.jpg);
  background-size: cover;
  width: 100%;
  height: 3.5rem;
  top: 31.5rem;
  left: 0;
}
.ui-11 {
  position: absolute;
  background-image: url(//game.gtimg.cn/images/xycq/act/a20250616qy/slice_11.jpg);
  background-size: cover;
  width: 100%;
  height: 3.5rem;
  top: 35rem;
  left: 0;
}
.ui-12 {
  position: absolute;
  background-image: url(//game.gtimg.cn/images/xycq/act/a20250616qy/slice_12.jpg);
  background-size: cover;
  width: 100%;
  height: 3.5rem;
  top: 38.5rem;
  left: 0;
}
.ui-13 {
  position: absolute;
  background-image: url(//game.gtimg.cn/images/xycq/act/a20250616qy/slice_13.jpg);
  background-size: cover;
  width: 100%;
  height: 2.505rem;
  top: 42rem;
  left: 0;
}
.slogan {
  position: absolute;
  top: 2.58rem;
  width: 3.75rem;
  height: 1.8rem;
  background-image: url(//game.gtimg.cn/images/xycq/act/a20250616qy/unit_top_slogan.png);
}
.box-login {
  position: absolute;
  width: 90%;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  justify-content: space-around;
  top: 3.88rem;
}
.box-login .loginbtn {
  width: 1.625rem;
  height: 0.735rem;
}
.box-login .box-m-login-btn {
  background-image: url(//game.gtimg.cn/images/xycq/act/a20250616qy/unit_top_loginm.png);
}
.box-login .box-pc-login-btn {
  background-image: url(//game.gtimg.cn/images/xycq/act/a20250616qy/unit_top_loginpc.png);
}
.box-login1 {
  position: absolute;
  top: 4.3rem;
  width: 100%;
  color: #ffef83;
  font-size: 0.12rem;
  line-height: 0.18rem;
  display: flex;
  justify-content: center;
}
.box-login1 div {
  display: flex;
  margin-right: 0.1rem;
}
.c1 {
  position: absolute;
  width: 3.75rem;
  height: 5.245rem;
  top: 4.65rem;
  background-image: url(//game.gtimg.cn/images/xycq/act/a20250616qy/unit_top_c1.png);
}
.c2 {
  position: absolute;
  width: 3.75rem;
  height: 12.09rem;
  top: 10.8rem;
  background-image: url(//game.gtimg.cn/images/xycq/act/a20250616qy/unit_top_c2.png);
}
.c3 {
  position: absolute;
  width: 3.75rem;
  height: 9.25rem;
  top: 23.85rem;
  background-image: url(//game.gtimg.cn/images/xycq/act/a20250616qy/unit_top_c3.png);
}
.c4 {
  position: absolute;
  width: 3.75rem;
  height: 3.85rem;
  top: 34.45rem;
  background-image: url(//game.gtimg.cn/images/xycq/act/a20250616qy/unit_top_c4.png);
}
.c4 .join {
  position: absolute;
  top: 2.08rem;
  left: 50%;
  transform: translateX(-50%);
  width: 1.625rem;
  height: 0.385rem;
  background-image: url(//game.gtimg.cn/images/xycq/act/a20250616qy/unit_top_qrcodebtn.png);
}
.c4 .join a {
  display: inline-block;
  width: 100%;
  height: 100%;
}
.c4 .box-yqh {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 3.33rem;
  height: 2.5rem;
  top: 3.6rem;
}
.c4 .box-yqh .yqh-l {
  position: absolute;
  transform: scale(0.7);
  opacity: 0;
  width: 0.825rem;
  height: 2.445rem;
  background-image: url(//game.gtimg.cn/images/xycq/act/a20250616qy/yqh-l.png);
  transition: all 0.5s linear;
}
.c4 .box-yqh .yqh-l.active {
  transform: scale(1);
  opacity: 1;
}
.c4 .box-yqh .yqh-r {
  top: 0.17rem;
  right: 0.12rem;
  position: absolute;
  width: 2.91rem;
  height: 1.97rem;
  color: #ffdf9d;
  font-size: 0.14rem;
  background-image: url(//game.gtimg.cn/images/xycq/act/a20250616qy/yqh.png);
  transition: all 0.5s linear;
}
.c4 .box-yqh .yqh-r .tip {
  position: absolute;
  width: 1.46rem;
  height: 0.13rem;
  top: 1rem;
  left: 0.83rem;
  background-image: url(//game.gtimg.cn/images/xycq/act/a20250616qy/txt1.png);
}
.c4 .box-yqh .yqh-r .tip1 {
  position: absolute;
  width: 1.46rem;
  height: 0.13rem;
  top: 0.8rem;
  left: 0.7rem;
  width: 1.755rem;
  height: 0.935rem;
  background-image: url(//game.gtimg.cn/images/xycq/act/a20250616qy/txt2.png);
}
.c4 .box-yqh .yqh-r.active {
  right: 0;
}
.c4 .headbg {
  position: absolute;
  left: 0.1rem;
  top: 0.23rem;
  width: 0.615rem;
  height: 0.615rem;
  background-image: url(//game.gtimg.cn/images/xycq/act/a20250616qy/unit_top_headbg.png);
  display: flex;
  justify-content: center;
  align-items: center;
}
.c4 .headbg img {
  width: 90%;
  height: auto;
  border-radius: 50%;
}
.c4 .box-role {
  position: absolute;
  top: 0.7rem;
  left: 0.26rem;
  font-size: 0.14rem;
  color: #fff8e1;
  line-height: 0.14rem;
  transform: scale(0.75);
}
.c4 .box-role div {
  width: 0.05rem;
}
.c4 .box-role .areae {
  margin-right: 0.1rem;
  word-break: break-all;
}
.c4 .box-role .role {
  position: absolute;
  width: 0.12rem;
  top: 0;
  left: 0.2rem;
  line-height: 0.14rem;
  word-break: break-all;
}
.c4 .box-role span {
  font-size: 0.12rem;
  color: #fffba6;
}
.c4 .box-num {
  position: absolute;
  width: 2.45rem;
  top: 1rem;
  left: 0.4rem;
  display: flex;
  font-size: 0.18rem;
  justify-content: center;
}
.c4 .box-num img {
  margin: 0 1px;
}
.c4 .box-bind {
  position: absolute;
  top: 5.9rem;
  width: 90%;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  justify-content: space-around;
}
.c4 .box-bind .bindpc {
  width: 1.625rem;
  height: 0.425rem;
  background-image: url(//game.gtimg.cn/images/xycq/act/a20250616qy/unit_top_bindpc.png);
  line-height: 1rem;
  text-align: center;
  color: #582717;
  font-size: 0.1rem;
}
.c4 .box-bind .bindm {
  width: 1.625rem;
  height: 0.425rem;
  background-image: url(//game.gtimg.cn/images/xycq/act/a20250616qy/unit_top_bindm.png);
  line-height: 1rem;
  text-align: center;
  color: #582717;
  font-size: 0.1rem;
}
.c4 .saveimg {
  position: absolute;
  top: 6.1rem;
  left: 50%;
  transform: translateX(-50%);
  width: 0.385rem;
  height: 0.095rem;
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAE0AAAATBAMAAAAno50EAAAAMFBMVEUAAAByUUtyUUtyUUtyUUtyUUtyUUtyUUtyUUtyUUtyUUtyUUtyUUtyUUtyUUtyUUvPMEw5AAAAD3RSTlMAekK7Ee4zmcxVqiHdZoiGAETjAAABnUlEQVQoz43Qv0/UYBjA8W+1VOup9M15mGhMoYM/B0ueYEgcPEyMaFwYzsnExk0T4yUOjpyDiw6akBg3Ijg6NPwFJMDGAAM7DMxw/AgMQOnzXkmPjc/Wp9+8z5sX9ZlC5QfKCyKFGqT05GR6bgt1aSxTTZ5G9470X73odBp4UTTQjqLbcPnvLHAhZjzraBadydV7iyF8Wo4BJ87Pm5zqPg9Vnjc+UnRQe5dnD9BPkbciEpT3q2TOUb6gFoPXDjsroPe75IbisjufVaalIdIPr1rAh7btAuwSNyvsTP4EBMD9lsDEXtrdsWzM9b1839KLcMSYRWNuMboN3kFK2V2N8Zt27xSEEyKZiNCYBmpJp/tqOpd2Nm3XhhCcbBXoq/Zk6rU+vljB6S58MwZQvWIvcw3wk9+8p49T3ctDWfmnHeAeonqC/4TpUNLd+QtL4jUC2+lE1eoPfz1rjs53dxuPEJ7vJtrZob44F2Nnx53D2ZbhfRnW7iMI3E/zrrq23gLwV/Fb7mPu4hrrJvwBvqBucEcG6wAz0VmkDJiz6D8Gp6ad7wjIJMQAAAAASUVORK5CYII=);
}
.c5 {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 1.795rem;
  height: 2.12rem;
  top: 41.75rem;
  background-image: url(//game.gtimg.cn/images/xycq/act/a20250616qy/unit_top_c5.png);
}
.opct-anim {
  opacity: 0;
  transition: all 0.5s ease-out;
}
.opct-anim.active {
  opacity: 1;
}

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

.share-container[data-v-7ff54853] {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100vh;
  display: flex;
  background-color: rgba(0, 0, 0, 0.8);
  align-items: center;
  z-index: 9999;
}
.share-container .image-container[data-v-7ff54853] {
  position: relative;
  top: 0;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  overflow: hidden;
}
.share-container img[data-v-7ff54853] {
  width: 100%;
  height: auto;
  -webkit-user-select: auto;
     -moz-user-select: auto;
          user-select: auto;
  -webkit-touch-callout: default;
}

body,
html {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  overflow: hidden;
}
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;
}

