@charset "utf-8";

html,
body,
h1,
h2,
h3,
h4,
h5,
h6,
div,
dl,
dt,
dd,
ul,
ol,
li,
p,
blockquote,
pre,
hr,
figure,
table,
caption,
th,
td,
form,
fieldset,
legend,
input,
button,
textarea,
menu {
  margin: 0;
  padding: 0;
}

* {
  outline: 0;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  -webkit-focus-ring-color: rgba(0, 0, 0, 0);
  /* touch-action: pan-y; */
  /* -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
    backface-visibility: hidden; */
}

body {
  padding: 0;
  margin: 0;
  background: #fff;
  overflow-x: hidden;
  /*font: 16px/1.8 "Microsoft Yahei", Verdana, Arial, Helvetica, sans-serif;*/
  font: 16px/1.8 "黑体";

  /*IOS禁止调整字体大小*/
  -webkit-text-size-adjust: 100% !important;
}

html,
body,
fieldset,
img,
iframe,
abbr {
  border: 0;
}

body {
  background-color: #000;
  background: url(../image/pc-bg.jpg) no-repeat;
  background-size: 100%;
  background-attachment: fixed;
}

li {
  list-style: none;
}

input,
button,
textarea,
select {
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  padding: 1px;
}

textarea {
  overflow: auto;
  resize: none;
}

h1,
h2,
h3,
h4,
h5,
h6,
em,
strong,
b {
  font-weight: 700;
}

a {
  border: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-tap-highlight-color: transparent;
  outline: none;
  text-decoration: none;
  cursor: pointer;
}

a:hover {
  text-decoration: none;
}

img {
  vertical-align: middle;
}

input,
select {
  outline: none;
  appearance: none;
  -webkit-appearance: none;
}

/*清除ie的默认选择框样式清除，隐藏下拉箭头*/
select::-ms-expand {
  display: none;
}

textarea {
  overflow: auto;
  resize: none;
}

.hide {
  display: none;
}

.fl {
  float: left;
}

.fr {
  float: right;
}

.text-center {
  text-align: center;
}

.show {
  display: block;
}

@-webkit-keyframes bouncedelay {

  0%,
  80%,
  100% {
    -webkit-transform: scale(0);
  }

  40% {
    -webkit-transform: scale(1);
  }
}

@keyframes bouncedelay {

  0%,
  80%,
  100% {
    transform: scale(0);
    -webkit-transform: scale(0);
  }

  40% {
    transform: scale(1);
    -webkit-transform: scale(1);
  }
}

@keyframes rotate {
  100% {
    -o-transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes rotate-reserve {
  100% {
    -o-transform: rotate(-360deg);
    -webkit-transform: rotate(-360deg);
    -moz-transform: rotate(-360deg);
    -ms-transform: rotate(-360deg);
    transform: rotate(-360deg);
  }
}

@keyframes bubble {
  0% {
    -o-transform: translateY(0);
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }

  50% {
    -o-transform: translateY(-24px);
    -webkit-transform: translateY(-24px);
    -moz-transform: translateY(-24px);
    -ms-transform: translateY(-24px);
    transform: translateY(-24px);
  }

  100% {
    -o-transform: translateY(0px);
    -webkit-transform: translateY(0px);
    -moz-transform: translateY(0px);
    -ms-transform: translateY(0px);
    transform: translateY(0px);
  }
}

@keyframes swing {
  20% {
    -webkit-transform: rotate3d(0, 0, 1, 20deg);
    transform: rotate3d(0, 0, 1, 20deg);
  }

  40% {
    -webkit-transform: rotate3d(0, 0, 1, -20deg);
    transform: rotate3d(0, 0, 1, -20deg);
  }

  60% {
    -webkit-transform: rotate3d(0, 0, 1, 15deg);
    transform: rotate3d(0, 0, 1, 15deg);
  }

  80% {
    -webkit-transform: rotate3d(0, 0, 1, -15deg);
    transform: rotate3d(0, 0, 1, -15deg);
  }

  to {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg);
  }
}

@keyframes tinyScale {
  0% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

  50% {
    -webkit-transform: scale3d(1.01, 1.01, 1.01);
    transform: scale3d(1.01, 1.01, 1.01);
  }

  100% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

@keyframes cyberpunk {
  0% {
    clip-path: inset(20% -5px 60% 0);
    transform: translate(-6px, 5px);
    visibility: visible;
  }

  10% {
    clip-path: inset(50% -5px 30% 0);
    transform: translate(6px, -5px);
  }

  20% {
    clip-path: inset(20% -5px 60% 0);
    transform: translate(5px, 0px);
  }

  30% {
    clip-path: inset(80% -5px 5% 0);
    transform: translate(-8px, 5px);
  }

  40% {
    clip-path: inset(0 -5px 80% 0);
    transform: translate(3px, 6px);
  }

  50% {
    clip-path: inset(50% -5px 30% 0);
    transform: translate(-6px, -5px);
  }

  60% {
    clip-path: inset(80% -5px 5% 0);
    transform: translate(-7px, 5px);
  }

  70% {
    clip-path: inset(0 -5px 80% 0);
    transform: translate(3px, 6px);
  }

  80% {
    clip-path: inset(0 -5px 80% 0);
    transform: translate(3px, 6px);
  }

  90% {
    clip-path: inset(0 -5px 80% 0);
    transform: translate(3px, 6px);
  }

  100% {
    clip-path: inset(0 -5px 80% 0);
    transform: translate(3px, 6px);
  }
}

@keyframes pulse-reverse {
  0% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05);
  }

  50% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

  100% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05);
  }
}

@keyframes fadeMoveLeft {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }

  100% {
    -webkit-transform: translate3d(-50px, 0, 0);
    transform: translate3d(-50px, 0, 0);
    opacity: 0.2;
  }
}

@keyframes fadeMoveRight {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }

  100% {
    -webkit-transform: translate3d(50px, 0, 0);
    transform: translate3d(50px, 0, 0);
    opacity: 0.2;
  }
}

.red-hand::before {
  content: "";
  display: inline-block;
  width: 32px;
  height: 32px;
  background: url("../image/like-red.png") no-repeat;
  background-size: 100%;
  cursor: pointer;
  position: absolute;
  top: -10px;
  left: 138px;
  z-index: 1;
}

/* .order-info .step .order-btn .btn-login.no-after-before::after {
      content: none;
    } */
/* .red-hand::after {
  content: "";
  display: inline-block;
  width: 136px;
  height: 97px;
  background: url("../image/like-hand.png") no-repeat;
  background-size: 100%;
  cursor: pointer;
  position: absolute;
  top: 112px;
  right: 97px;
  -webkit-animation: fblike 1s ease-in-out infinite;
  animation: fblike 1s ease-in-out infinite;
} */

.container {
  width: 720px;
  height: 100%;
  margin: auto;
  position: relative;
  /*left: 50%;*/
  /*-webkit-transform: translateX(-50%);*/
  /*-moz-transform: translateX(-50%);*/
  /*-ms-transform: translateX(-50%);*/
  /*-o-transform: translateX(-50%);*/
  /*transform: translateX(-50%);*/
  overflow: hidden;
}

.wrap {
  width: 100%;
  background: url("../image/bg.jpg") no-repeat;
  background-size: 100%;
  height: 8535px;
  /* position: fixed;
  transform: translateZ(0); */
}

.wrap_pr1 {
  width: 100%;
  position: relative;
  background: url("../image/bg-pre1.jpg") no-repeat center top;
  background-size: 100%;
}

.wrap::before {
  content: " ";
  position: fixed;
  z-index: -1;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  /* background: url("../image/bg.png") no-repeat center top;
  background-attachment: fixed; */
}

/* .back {
  width: 720px;
  height: 1600px;
  position: fixed;
  left: 50%;
  top: 0;
  z-index: -1;
  transform: translateX(-50%);
} */

#leaf_particle {
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 2;
}

/* 二级页面背景 */
.role-page-bg {
  background-image: url("../images/role-page-bg.jpg");
}

/*菜单栏*/
.header {
  width: 720px;
  height: 138px;
  position: fixed;
  top: 0;
  left: 50%;
  margin-left: -360px;
  background: url("../image/section1/header-bg.png") no-repeat;
  background-size: 100%;
  /* overflow: hidden; */
  z-index: 99;
  pointer-events: none;
}

.header nav {
  font-size: 0;
  text-align: center;
  padding-left: 275px;
  margin-top: 30px;
}

.header nav a {
  width: 212px;
  height: 59px;
  z-index: 100;
  pointer-events: initial;
}


.header nav a:nth-child(2) {
  position: relative;
  float: left;
}

.header nav a.step-fb.fb-page-btn.header-pop-login {
  width: 212px;
  height: 65px;
  background: url("../image/section1/header-fuli.png") no-repeat;
  background-size: 100%;
  position: absolute;
  top: 15px;
  left: 265px;
}

.header nav .header-pop-login-overtime {
  background: url("../images/warp-img/bottom/header-order-overtime.png") no-repeat;
  background-size: 100%;
}

.header nav a:nth-of-type(2) {
  background: url(../image/section1/header-query.png) no-repeat;
  background-size: 100%;
  width: 212px;
  height: 65px;
  position: absolute;
  right: 15px;
  top: 15px;
}

.header nav a.step-fb.fb-page-btn {
  background: url(../image/section1/nav-fb.png) no-repeat;
  background-size: 100%;
  width: 67px;
  height: 68px;
  position: absolute;
  right: 20px;
  top: 105px;
}
.header nav a.step-fb.fb-page-btn::before {
  display: none;
}

.header nav a.go-home {
  background: url(../image/section1/nav-home.png) no-repeat;
  background-size: 100%;
  width: 67px;
  height: 68px;
  position: absolute;
  right: 105px;
  top: 105px;
}

/* .header nav a:nth-of-type(3) {
    width: 228px;
} */
.header nav a.header-total-download {
  width: 336px;
}

/* .header nav a:before{
    content: "";
    width: 2px;
    height: 62px;
    position: absolute;
    right: 0;
    top: 16px;
    background: linear-gradient(to bottom, #7d94b8, #3b558a);
}
.header nav a:last-child:before{
    content: "";
    width: 0px;
    height: 0px;
} */
.header nav a img {
  /* width: 48px; */
  display: inline-block;
}

.title {
  overflow: hidden;
}

.poker .title,
.lottery .title,
.role .title,
.task .title,
.invite .title,
.team .title {
  text-align: center;
}

/* AI确定生成弹窗 */
.pop-ai .pop-ai-bg {
  width: 633px;
  height: 404px;
  background: url("../image/pop/pop-ai.png") no-repeat;
  background-size: 100%;
}

.pop-ai .pop-ai-bg .btn {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  width: 322px;
  height: 125px;
  background: url("../image/pop/btn-pop.png") no-repeat;
  background-size: 100%;
  cursor: pointer;
}

/* AI生成后弹窗 */
.island-bg {
  width: 720px;
  height: 1221px;
  position: absolute;
}

.island-bg .ai-img {
  width: 150%;
  height: 100%;
  position: absolute;
  left: -177px;
  top: -120px;
}

.island-bg .ai-btn {
  cursor: pointer;
  width: 422px;
  height: 120px;
  position: absolute;
  bottom: 321px;
  left: 50%;
  margin-left: -211px;
}

/* 欢迎回来弹窗 */
.welcomepp-box {
  position: relative;
  width: 720px;
  height: 412px;
  background: url(../image/pop/pop-upwelcomepp-box.png) no-repeat;
  background-size: 100%;
  margin: auto;
}

.store-btns .store-ios {
  width: 234px;
  height: 72px;
  background: url(../image/pop/welcome-ios.png) no-repeat;
  background-size: 100%;
  position: absolute;
  top: 450px;
  left: 245px;
}

.store-btns .store-gp {
  width: 234px;
  height: 72px;
  background: url(../image/pop/welcome-gp.png) no-repeat;
  background-size: 100%;
  position: absolute;
  top: 450px;
  left: 250px;
}

.store-btns .welcome-text {
  position: absolute;
  /* color: #FFEDBE; */
  line-height: 50px;
  /* border-bottom: 1px solid; */
  top: 550px;
  left: 230px;;
  font-size: 24px;
  background: url(../image/pop/pop-text.png) no-repeat;
  background-size: 100%;
  width: 281px;
  height: 34px;
}

.welcome-close {
  width: 44px;
  height: 39px;
  background: url(../image/pop/pop-close.png) no-repeat;
  background-size: 100%;
  position: absolute;
  right: 90px;
  top: -14px;
}

/* 限量礼包码 */
.pack-code {
  width: 100%;
  height: 1200px;
  position: relative;
  top: 250px;
  left: 0;
}

.pack-code-title {
  text-align: center;
}

/* 上线前的限量礼包码 */
.internet-celebrity {
  background: url("../images/warp-img/pager5/internet-celebrity-img.png") no-repeat;
  width: 695px;
  height: 298px;
  background-size: 100%;
  margin: auto;
}

.role-lipin {
  position: absolute;
}

.role-lipin .role-title {
  width: 720px;
  height: 141px;
  margin: 0 auto;
}

.role-lipin .lipin-img {
  width: 718px;
  height: 486px;
  background: url("../image/introduce/img-lipoin.png") no-repeat;
  background-size: 100%;
}

.role-lipin .btn {
  display: block;
  width: 416px;
  height: 102px;
  background: url("../image/introduce/btn-ling.png") no-repeat;
  background-size: 100%;
  cursor: pointer;
  margin: -115px auto 0;
}

.internet-video {
  position: absolute;
  width: 719px;
  height: 409px;
  background: url("../images/warp-img/pager5/bg-mp4.png") no-repeat;
  background-size: 100%;
  top: 485px;
  left: 50%;
  transform: translateX(-50%);
}

.internet-video>a>img {
  width: 672px;
  height: 375px;
  position: absolute;
  left: 25px;
  top: 20px;
  z-index: -1;
}

.subscript-img {
  position: absolute;
  right: 0;
}

.internet-video-bottom {
  display: flex;
  position: absolute;
  top: 9.2rem;
  left: 50%;
  transform: translateX(-50%);
}

.video-img-btn {
  width: 127px;
  height: 131px;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -63.5px;
  margin-left: -65.5px;
}

.internet-video-bottom {
  display: flex;
  position: absolute;
  top: 920px;
  left: 50%;
  transform: translateX(-50%);
}

.exchange {
  width: 462px;
  height: 138px;
  cursor: pointer;
}

:root {
  --animate-duration: 0.8s;
  --animate-delay: 0.8s;
  --animate-repeat: 0.8;
}

.animate__animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-duration: var(--animate-duration);
  animation-duration: var(--animate-duration);
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.animate__animated.animate__infinite {
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}

@-webkit-keyframes fadeInDown {
  from {
    opacity: 0.7;
    -webkit-transform: translate3d(0, -10%, 0);
    transform: translate3d(0, -10%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0.7;
    -webkit-transform: translate3d(0, -10%, 0);
    transform: translate3d(0, -20%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.animate__fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
}

@keyframes pokerstar1 {
  0% {
    transform: scale(1) translate(100px, 250px);
    opacity: 1;
  }

  100% {
    transform: scale(0.1) translate(0, 0);
    opacity: 0.5;
  }
}

@keyframes pokerstar2 {
  0% {
    transform: scale(1) translate(30px, 250px);
    opacity: 1;
  }

  100% {
    transform: scale(0.1) translate(0, 0);
    opacity: 0.5;
  }
}

@keyframes pokerstar3 {
  0% {
    transform: scale(1) translate(-15px, 300px);
    opacity: 1;
  }

  100% {
    transform: scale(0.1) translate(0, 0);
    opacity: 0.5;
  }
}

@keyframes pokerstar4 {
  0% {
    transform: scale(1) translate(-50px, 160px);
    opacity: 1;
  }

  100% {
    transform: scale(0.1) translate(0, 0);
    opacity: 0.5;
  }
}

@keyframes pokerstar5 {
  0% {
    transform: scale(1) translate(-100px, 250px);
    opacity: 1;
  }

  100% {
    transform: scale(0.1) translate(0, 0);
    opacity: 0.5;
  }
}

@keyframes pokerstar6 {
  0% {
    transform: scale(1) translate(-20px, 250px);
    opacity: 1;
  }

  100% {
    transform: scale(0.1) translate(0, 0);
    opacity: 0.5;
  }
}

.poker .poker-top-swiper>.swiper-slide {
  position: absolute;
}

.poker-Draw .poker-yuang {
  width: 37px;
  height: 35px;
  position: absolute;
  bottom: 34px;
  left: 50%;
  transform: translate(-50%);
}

/*视频*/
.video {
  padding-bottom: 205px;
  overflow: hidden;
  font-size: 0;
}

.video-info {
  width: 651px;
  height: 386px;
  margin: 30px auto 160px;
  position: relative;
  background: url("../images/video-bg.png") no-repeat;
  background-size: 100%;
}

.video-swiper {
  width: 633px;
  height: 369px;
  padding-top: 8px;
  margin-left: 9px;
}

.video-swiper .swiper-slide h2 {
  position: absolute;
  right: 20px;
  top: 0;
  font-size: 35px;
  color: #f7f8f9;
  z-index: 2;
}

.video-swiper .swiper-slide .play {
  width: 100%;
  height: 100%;
  z-index: 1;
}

.video-swiper .swiper-slide .play img {
  width: 100%;
}

.video-swiper .swiper-slide .youtube {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  display: none;
  z-index: 3;
}

.video-swiper-pagination {
  width: 591px;
  height: 168px;
  margin: auto;
  position: relative;
  bottom: 0;
}

.video-swiper-pagination .swiper-slide {
  margin-top: 50px;
}

.video-swiper-pagination .swiper-slide span {
  width: 187px;
  height: 114px;
  position: relative;
  opacity: 1;
  display: block;
  border-radius: 0;
}

.video-swiper-pagination .swiper-slide.swiper-slide-active span:after {
  content: "";
  width: 197px;
  height: 134px;
  position: relative;
  left: -5px;
  top: -16px;
  background: url("../images/video-s-active.png") no-repeat;
  background-size: 100%;
  display: block;
  z-index: -1;
}

.video-swiper-pagination .swiper-slide .swiper-slide-1 {
  background: url("../images/video-s-1.png") no-repeat;
  background-size: 100%;
}

.video-swiper-pagination .swiper-slide .swiper-slide-2 {
  background: url("../images/video-s-2.png") no-repeat;
  background-size: 100%;
}

.video-swiper-pagination .swiper-slide .swiper-slide-3 {
  background: url("../images/video-s-3.png") no-repeat;
  background-size: 100%;
}

.video-swiper-button-prev {
  width: 22px;
  height: 45px;
  position: absolute;
  top: 460px;
  left: -5px;
  background: url("../images/video-btn.png") no-repeat;
}

.video-swiper-button-next {
  width: 22px;
  height: 45px;
  position: absolute;
  top: 460px;
  right: -5px;
  background: url("../images/video-btn.png") no-repeat;
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  transform: rotate(180deg);
}

@keyframes pokerstar1 {
  0% {
    transform: scale(1) translate(100px, 250px);
    opacity: 1;
  }

  100% {
    transform: scale(0.1) translate(0, 0);
    opacity: 0.5;
  }
}

@keyframes pokerstar2 {
  0% {
    transform: scale(1) translate(30px, 250px);
    opacity: 1;
  }

  100% {
    transform: scale(0.1) translate(0, 0);
    opacity: 0.5;
  }
}

@keyframes pokerstar3 {
  0% {
    transform: scale(1) translate(-15px, 300px);
    opacity: 1;
  }

  100% {
    transform: scale(0.1) translate(0, 0);
    opacity: 0.5;
  }
}

@keyframes pokerstar4 {
  0% {
    transform: scale(1) translate(-50px, 160px);
    opacity: 1;
  }

  100% {
    transform: scale(0.1) translate(0, 0);
    opacity: 0.5;
  }
}

@keyframes pokerstar5 {
  0% {
    transform: scale(1) translate(-100px, 250px);
    opacity: 1;
  }

  100% {
    transform: scale(0.1) translate(0, 0);
    opacity: 0.5;
  }
}

@keyframes pokerstar6 {
  0% {
    transform: scale(1) translate(-20px, 250px);
    opacity: 1;
  }

  100% {
    transform: scale(0.1) translate(0, 0);
    opacity: 0.5;
  }
}

select::-ms-expand {
  display: none;
}

/*游戏特色*/
.intro {
  position: relative;
  padding-bottom: 198px;
  overflow: hidden;
  font-size: 0;
  top: 250px;
}

.intro .title {
  text-align: center;
}

.intro-info {
  width: 575px;
  height: 335px;
  margin: 0 auto;
  position: relative;
  /* background: url("../image/double/world-intro-pic.png") no-repeat; */
}

/* .intro-info::after {
    content: '';
    position: absolute;
    width: 92px;
    height: 108px;
    background: url(../images/intro-decoration.png) no-repeat;
    background-size: 100%;
    top: -2px;
    right: 25px;
    z-index: 1;
} */
.intro-info .intro-swiper {
  height: 333px;
  margin: auto;
}

.intro-swiper .swiper-slide img {
  width: 100%;
}

.intro-swiper .swiper-slide .intro-pic {
  width: 570px;
  z-index: 1;
  margin: 16px auto 0;
  /* margin-left: 0px; */
}

.intro-swiper .swiper-slide-next .intro-pic {
  opacity: 0.3;
}

.intro-swiper .swiper-slide-prev .intro-pic {
  opacity: 0.3;
}

.intro-swiper .swiper-slide .intro-screen {
  position: absolute;
  top: 0px;
  left: 0px;
  z-index: 2;
}

/* .intro-swiper-button-prev {
  width: 97px;
  height: 112px;
  position: absolute;
  top: 50%;
  left: -80px;
  background: url("../image/double/intro-swiper-button-prev.png") no-repeat;
  background-size: 100%;
  z-index: 1;
  margin-top: -39px;
}

.intro-swiper-button-next {
  width: 97px;
  height: 112px;
  position: absolute;
  right: -80px;
  background: url("../image/double/intro-swiper-button-next.png") no-repeat;
  background-size: 100%;
  z-index: 1;
  margin-top: -39px;
  top: 50%;
} */

.intro-swiper-pagination {
  position: absolute;
  width: 427px;
  top: 370px;
  display: flex;
  justify-content: space-between;
  left: 50%;
  margin-left: -218.5px;
  align-items: center;
}



.intro-swiper .swiper-wrapper {
  /* margin-top: 16px; */
}

.intro-swiper-pagination .swiper-pagination-bullet {
  /* position: absolute; */
  width: 52px;
  height: 51px;
  opacity: 1;
  background: url("../image/double/pagination-bullet.png") no-repeat;
  background-size: 100%;
  /* left: 123px; */
  border-radius: 0% !important;
}

.fans {
  position: relative;
}

.fans-img {
  background: url("../images/warp-img/pager7/btn-zhui.png") no-repeat;
  background-size: 100%;
  position: absolute;
  width: 567px;
  height: 164px;
  left: 50%;
  top: 150px;
  /* transform: translateX(-50%); */
  cursor: pointer;
  margin-left: -283.5px;
}

.role .role-info .back-btn {
  text-align: center;
  margin-top: 50px;
}

/*任务完成度*/
.task {
  overflow: hidden;
  font-size: 0;
  position: relative;
  height: 1410px;
  top: 700px;
  height: 1925px;
}

.task .order-count {
  width: 296px;
  height: 47px;
  /* margin: 0 auto; */
  margin-left: 112px;
  margin-top: 65px;
  position: relative;
  background: url("../images/order-slogan.png") no-repeat;
  background-size: 100%;
}

.task .order-count {
  width: 273px;
  height: 40px;
  position: absolute;
  top: 165px;
  left: 6px;
  background: url(../images/order-slogan.png) no-repeat;
  background-size: 100%;
}

.task .count span {
  text-align: center;
  position: absolute;
  top: -9px;
  left: 283px;
  line-height: 60px;
  font-size: 44px;
  -webkit-text-size-adjust: none;
  font-weight: 700;
  background-image: -webkit-linear-gradient(top, #fdefc8, #ffd08a);
  letter-spacing: 7px;
  /* text-decoration: underline; */
  /* background: linear-gradient(to bottom, #8439ff 0%, #fffeff 49%, #9d88fe 50%, #6d26e5 100%); */
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.task .task-progress {
  position: relative;
  margin-top: 105px;
  margin-left: 23px;
}

.task-person li {
  position: absolute;
  width: 73px;
  height: 56px;
}

.task-person .task_1 {
  width: 126px;
  height: 104px;
  left: 69px;
  top: 285px;
  background: url(../images/task-1.png) no-repeat;
  background-size: 100%;
}

.task-person .task_1.active {
  background: url(../images/task-1-finish.png) no-repeat;
  background-size: 100%;
  width: 126px;
  height: 104px;
  left: 69px;
  top: 285px;
}

.task-person .task_2 {
  background: url(../images/task-1.png) no-repeat;
  background-size: 100%;
  width: 126px;
  height: 104px;
  left: 299px;
  top: 285px;
}

.task-person .task_2.active {
  background: url(../images/task-1-finish.png) no-repeat;
  background-size: 100%;
  width: 126px;
  height: 104px;
  left: 299px;
  top: 285px;
}

.task-person .task_3 {
  background: url(../images/task-1.png) no-repeat;
  background-size: 100%;
  width: 126px;
  height: 104px;
  left: 531px;
  top: 285px;
}

.task-person .task_3.active {
  background: url(../images/task-1-finish.png) no-repeat;
  background-size: 100%;
  width: 126px;
  height: 104px;
  left: 531px;
  top: 285px;
}

.task-person .task_4 {
  background: url(../images/task-1.png) no-repeat;
  background-size: 100%;
  width: 126px;
  height: 104px;
  left: 157px;
  top: 860px;
}

.task-person .task_4.active {
  background: url(../images/task-1-finish.png) no-repeat;
  background-size: 100%;
  width: 126px;
  height: 104px;
  left: 157px;
  top: 860px;
}

.task-person .task_5 {
  background: url(../images/task-1.png) no-repeat;
  background-size: 100%;
  width: 126px;
  height: 104px;
  left: 429px;
  top: 860px;
}

.task-person .task_5.active {
  background: url(../images/task-5-finish.png) no-repeat;
  background-size: 87%;
  width: 142px;
  height: 140px;
  left: 430px;
  top: 840px;
}

.task .task-progress .task-progress-bar {
  width: 551px;
  height: 92px;
  background: url(../images/task-info-progress-bar.png) no-repeat;
  background-size: 100%;
  margin: 0 auto;
}

.task .task-progress .task-active-dots {
  position: absolute;
  top: -6px;
  left: 142px;
}

/* .task-progress .task-active-dots .task-active-dot {
    position: absolute;
    width: 65px;
    height: 70px;
    background: url(../images/task-active-dot.png) no-repeat;
    background-size: 100%;
    display: none;
}
.task-progress .task-active-dots .task-active-dot-2 {
    left: 94px;
}
.task-progress .task-active-dots .task-active-dot-3 {
    left: 187px;
}
.task-progress .task-active-dots .task-active-dot-4 {
    left: 281px;
}
.task-progress .task-active-dots .task-active-dot-5 {
    left: 374px;
} */
.task-progress .task-active-dots.task-active-1 .task-active-dot-1 {
  /* 5W */
  display: block;
}

.task-progress .task-active-dots.task-active-2 .task-active-dot-1,
/* 10W */
.task-progress .task-active-dots.task-active-2 .task-active-dot-2 {
  display: block;
}

.task-progress .task-active-dots.task-active-3 .task-active-dot-1,
/* 20W */
.task-progress .task-active-dots.task-active-3 .task-active-dot-2,
.task-progress .task-active-dots.task-active-3 .task-active-dot-3 {
  display: block;
}

.task-progress .task-active-dots.task-active-4 .task-active-dot-1,
/* 30W */
.task-progress .task-active-dots.task-active-4 .task-active-dot-2,
.task-progress .task-active-dots.task-active-4 .task-active-dot-3,
.task-progress .task-active-dots.task-active-4 .task-active-dot-4 {
  display: block;
}

.task-progress .task-active-dots.task-active-5 .task-active-dot-1,
/* 50W */
.task-progress .task-active-dots.task-active-5 .task-active-dot-2,
.task-progress .task-active-dots.task-active-5 .task-active-dot-3,
.task-progress .task-active-dots.task-active-5 .task-active-dot-4,
.task-progress .task-active-dots.task-active-5 .task-active-dot-5 {
  display: block;
}

.task-progress .task-active-dots .task-progress-dot {
  position: absolute;
  z-index: -1;
  top: -43px;
  display: none;
}

.task-progress .task-active-dots.task-active-1 .task-progress-dot {
  /* 5W */
  display: block;
  left: -34px;
}

.task-progress .task-active-dots.task-active-2 .task-progress-dot {
  /* 10W */
  display: block;
  left: 102px;
}

.task-progress .task-active-dots.task-active-3 .task-progress-dot {
  /* 20W */
  display: block;
  left: 238px;
}

.task-progress .task-active-dots.task-active-4 .task-progress-dot {
  /* 30W */
  display: block;
  left: 376px;
}

.task-progress .task-active-dots.task-active-5 .task-progress-dot {
  /* 50W */
  display: block;
  left: 512px;
}

.task-info {
  width: 720px;
  height: 1380px;
  background: url(../images/task-info-bg.png) no-repeat;
  background-size: 100%;
  position: relative;
  top: -240px;
}

.task-prize {
  width: 720px;
  height: 946px;
  position: absolute;
  top: 416px;
}

.task-prize ul {
  position: absolute;
  width: 215px;
}

.task-prize .task_1 {
  transition: 0.6s;
  transform-style: preserve-3d;
  -webkit-transform-style: preserve-3d;
  -ms-transform-style: preserve-3d;
  -moz-transform-style: preserve-3d;
  position: relative;
  transform-origin: center center;
  -webkit-transform-origin: center center;
  -webkit-transform-origin: center center;
  backface-visibility: visible;
  -webkit-backface-visibility: visible;
  top: 5px;
  left: 20px;
}

.task-prize .task_2 {
  transition: 0.6s;
  transform-style: preserve-3d;
  -webkit-transform-style: preserve-3d;
  -ms-transform-style: preserve-3d;
  -moz-transform-style: preserve-3d;
  position: relative;
  transform-origin: center center;
  -webkit-transform-origin: center center;
  backface-visibility: visible;
  -webkit-backface-visibility: visible;
  top: 5px;
  left: 253px;
}

.task-prize .task_3 {
  transition: 0.6s;
  transform-style: preserve-3d;
  -webkit-transform-style: preserve-3d;
  -ms-transform-style: preserve-3d;
  -moz-transform-style: preserve-3d;
  position: relative;
  transform-origin: center center;
  -webkit-transform-origin: center center;
  backface-visibility: visible;
  -webkit-backface-visibility: visible;
  top: 5px;
  left: 485px;
}

.task-prize .task_4 {
  transition: 0.6s;
  transform-style: preserve-3d;
  -webkit-transform-style: preserve-3d;
  -ms-transform-style: preserve-3d;
  -moz-transform-style: preserve-3d;
  position: relative;
  transform-origin: center center;
  -webkit-transform-origin: center center;
  backface-visibility: visible;
  -webkit-backface-visibility: visible;
  top: 586px;
  left: 112px;
}

.task-prize .task_5 {
  transition: 0.6s;
  transform-style: preserve-3d;
  -webkit-transform-style: preserve-3d;
  -ms-transform-style: preserve-3d;
  -moz-transform-style: preserve-3d;
  position: relative;
  transform-origin: center center;
  -webkit-transform-origin: center center;
  backface-visibility: visible;
  -webkit-backface-visibility: visible;
  top: 586px;
  left: 385px;
}

.task-prize li.turn {
  transform: rotateY(180deg);
  -webkit-transform: rotateY(180deg);
  -ms-transform: rotateY(180deg);
  animation: turn1 0.5s;
  -webkit-animation: turn1 0.5s;
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
}

@keyframes turn1 {
  0% {
    transform: rotateY(0deg);
    -ms-transform: rotateY(0deg);
    -webkit-transform: rotateY(0deg);
  }

  100% {
    transform: rotateY(180deg);
    -ms-transform: rotateY(180deg);
    -webkit-transform: rotateY(180deg);
  }
}

.task-prize .task_1 .poker-back {
  position: absolute;
  width: 214px;
  height: 321px;
  background: url(../images/poker-back-1.png) no-repeat;
  background-size: 100%;
  top: 0;
  left: 0;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  transform: rotateY(180deg);
  -ms-transform: rotateY(180deg);
  -webkit-transform: rotateY(180deg);
}

.task-prize .task_1 .poker-front {
  position: absolute;
  width: 214px;
  height: 321px;
  background: url(../images/poker-1.png) no-repeat;
  background-size: 100%;
  top: 0;
  left: 0;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  z-index: 2;
}

.task-prize .poker-status-1 {
  position: absolute;
  width: 225px;
  height: 124px;
  background: url(../images/massing.png) no-repeat;
  background-size: 100%;
  top: 310px;
  left: 15px;
  z-index: 99;
}

.task-prize .poker-status-1.active {
  background: url(../images/massed.png) no-repeat;
  background-size: 100%;
}

.task-prize .task_2 .poker-back {
  position: absolute;
  width: 214px;
  height: 321px;
  background: url(../images/poker-back-2.png) no-repeat;
  background-size: 100%;
  top: 0;
  left: 0;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  transform: rotateY(180deg);
  -ms-transform: rotateY(180deg);
  -webkit-transform: rotateY(180deg);
}

.task-prize .task_2 .poker-front {
  position: absolute;
  width: 214px;
  height: 321px;
  background: url(../images/poker-2.png) no-repeat;
  background-size: 100%;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  z-index: 2;
}

.task-prize .poker-status-2 {
  position: absolute;
  width: 225px;
  height: 124px;
  background: url(../images/massing.png) no-repeat;
  background-size: 100%;
  top: 310px;
  left: 247px;
  z-index: 99;
}

.task-prize .poker-status-2.active {
  background: url(../images/massed.png) no-repeat;
  background-size: 100%;
}

.task-prize .task_3 .poker-back {
  position: absolute;
  width: 214px;
  height: 321px;
  background: url(../images/poker-back-3.png) no-repeat;
  background-size: 100%;
  top: 0;
  left: 0;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  transform: rotateY(180deg);
  -ms-transform: rotateY(180deg);
  -webkit-transform: rotateY(180deg);
}

.task-prize .task_3 .poker-front {
  position: absolute;
  width: 214px;
  height: 321px;
  background: url(../images/poker-3.png) no-repeat;
  background-size: 100%;
  top: 0;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  z-index: 2;
}

.task-prize .poker-status-3 {
  position: absolute;
  width: 225px;
  height: 124px;
  background: url(../images/massing.png) no-repeat;
  background-size: 100%;
  top: 310px;
  left: 480px;
  z-index: 99;
}

.task-prize .poker-status-3.active {
  background: url(../images/massed.png) no-repeat;
  background-size: 100%;
}

.task-prize .task_4 .poker-back {
  position: absolute;
  width: 214px;
  height: 321px;
  background: url(../images/poker-back-4.png) no-repeat;
  background-size: 100%;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  transform: rotateY(180deg);
  -ms-transform: rotateY(180deg);
  -webkit-transform: rotateY(180deg);
}

.task-prize .task_4 .poker-front {
  position: absolute;
  width: 214px;
  height: 321px;
  background: url(../images/poker-4.png) no-repeat;
  background-size: 100%;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  z-index: 2;
}

.task-prize .poker-status-4 {
  position: absolute;
  width: 225px;
  height: 124px;
  background: url(../images/massing.png) no-repeat;
  background-size: 100%;
  top: 891px;
  left: 107px;
  z-index: 99;
}

.task-prize .poker-status-4.active {
  background: url(../images/massed.png) no-repeat;
  background-size: 100%;
}

.task-prize .task_5 .poker-back {
  position: absolute;
  width: 214px;
  height: 321px;
  background: url(../images/poker-back-5.png) no-repeat;
  background-size: 100%;
  top: 0;
  left: 0;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  transform: rotateY(180deg);
  -ms-transform: rotateY(180deg);
  -webkit-transform: rotateY(180deg);
}

.task-prize .task_5 .poker-front {
  position: absolute;
  width: 214px;
  height: 321px;
  background: url(../images/poker-5.png) no-repeat;
  background-size: 100%;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  z-index: 2;
}

.task-prize .poker-status-5 {
  position: absolute;
  width: 225px;
  height: 124px;
  background: url(../images/massing.png) no-repeat;
  background-size: 100%;
  top: 891px;
  left: 380px;
  z-index: 99;
}

.task-prize .poker-status-5.active {
  background: url(../images/massed.png) no-repeat;
  background-size: 100%;
}

.task-progress .task-active-dots .task-active-dot {
  position: absolute;
  width: 239px;
  height: 194px;
  left: 65px;
}

.task-progress .task-active-dots .task-active-dot.active {}

.task-progress .task-active-dots .task-active-dot-2 {
  position: absolute;
  width: 239px;
  height: 194px;
  background: url(../images/task-active-dot-2.png) no-repeat;
  background-size: 100%;
  top: 230px;
}

.task-progress .task-active-dots .task-active-dot-2.active {
  background: url(../images/task-active-dot-2-finish.png) no-repeat;
  background-size: 100%;
}

.task-progress .task-active-dots .task-active-dot-3 {
  background: url(../images/task-active-dot-3.png) no-repeat;
  background-size: 100%;
  top: 440px;
  left: 135px;
}

.task-progress .task-active-dots .task-active-dot-3.active {
  background: url(../images/task-active-dot-3-finish.png) no-repeat;
  background-size: 100%;
}

.task-progress .task-active-dots .task-active-dot-4 {
  background: url(../images/task-active-dot-4.png) no-repeat;
  background-size: 100%;
  top: 675px;
}

.task-progress .task-active-dots .task-active-dot-4.active {
  background: url(../images/task-active-dot-4-finish.png) no-repeat;
  background-size: 100%;
}

.task-progress .task-active-dots .task-active-dot-5 {
  background: url(../images/task-active-dot-5.png) no-repeat;
  background-size: 100%;
  top: 900px;
  left: 135px;
}

.task-progress .task-active-dots .task-active-dot-5.active {
  background: url(../images/task-active-dot-5-finish.png) no-repeat;
  background-size: 100%;
}

.task-progress .task-active-dots .task-active-dot-6 {
  background: url(../images/task-active-dot-6.png) no-repeat;
  background-size: 100%;
  top: 1090px;
}

.task-progress .task-active-dots .task-active-dot-6.active {
  background: url(../images/task-active-dot-6-finish.png) no-repeat;
  background-size: 100%;
}

.task-progress .task-active-dots .task-active-dot-7 {
  background: url(../images/task-active-dot-7.png) no-repeat;
  background-size: 100%;
  left: 128px;
  top: 1277px;
}

.task-progress .task-active-dots .task-active-dot-7.active {
  background: url(../images/task-active-dot-7-finish.png) no-repeat;
  background-size: 100%;
}

.task-star {
  position: absolute;
  /* top: 9.4rem; */
  /* left: -200px; */
  z-index: 10;
  pointer-events: none;
}

.task-star ul {
  display: flex;
  flex-direction: row;
  list-style: none;
}

.task-star .task-star1 {
  position: absolute;
  width: 300px;
  height: 300px;
  top: 492px;
  animation: star1 2s ease-in-out infinite;
}

.task-star .task-star2 {
  position: absolute;
  width: 300px;
  height: 300px;
  top: 287px;
  left: 250px;
  animation: star1 2s 1s ease-in-out infinite;
}

.task-star .task-star3 {
  position: absolute;
  width: 300px;
  height: 300px;
  top: 452px;
  left: 403px;
  animation: star1 3s ease-in-out infinite;
}

.task-star .task-star4 {
  position: absolute;
  width: 300px;
  height: 300px;
  top: 414px;
  left: 207px;
  animation: star1 2s ease-in-out infinite;
}

.task-star .task-star5 {
  position: absolute;
  width: 300px;
  height: 300px;
  top: 668px;
  left: 243px;
  animation: star1 2s 2s ease-in-out infinite;
}

.task-hint {
  width: 506px;
  height: 64px;
  position: absolute;
  top: 1130px;
  left: 50%;
  transform: translateX(-50%);
  background: url("../images/task-hint.png") no-repeat;
  background-size: 100%;
}

/*活动规则*/
.rule {
  overflow: hidden;
  font-size: 0;
  margin-top: 68px;
  padding-bottom: 215px;
  position: relative;
  top: 211px;
}

.rule .title {
  text-align: left;
  margin-left: 45px;
}

.rule-info {
  width: 664px;
  height: 688px;
  margin: 0 auto;
  background: url(../images/rule-info.png) no-repeat;
  background-size: 100%;
  margin-top: 52px;
  margin-bottom: 5px;
}

/* .rule .rule-info p{
    width: 630px;
    margin: auto;
    padding-top: 30px;
} */
/*footer*/
.footer {
  width: 720px;
  height: 117px;
  background: url(../image/bg-footer.png) no-repeat;
  background-size: 100%;
  /* padding: 20px 0; */
  /* background: #100506; */
  /* padding-bottom: 90px; */
}

.footer .cont {
  width: 720px;
  margin: 0 auto;
  overflow: hidden;
  display: flex;
  /* text-align: center; */
}

.copyright,
.logo-game,
.copyright img,
.copyright p {
  display: inline-block;
  vertical-align: top;
}

.logo-game .logo-game_company {
  position: absolute;
  color: #979798;
  /* top: 62px; */
  right: 0px;
  font-size: 16px;
  bottom: 13px;
}

.copyright {
  position: relative;
}

.copyright p {
  margin-left: 15px;
  line-height: 18px;
  font-size: 12px;
  color: #cccccc;
  text-align: left;
  white-space: pre-line;
  width: 400px;
}

.logo-game {
  width: 329px;
  height: 100px;
  background: url(../images/logo-game.png) no-repeat;
  -moz-background-size: contain;
  -o-background-size: contain;
  background-size: contain;
  background-size: 100%;
  position: relative;
}

.copyright {
  position: relative;
}

.copyright p {
  line-height: 18px;
  font-size: 12px;
  color: #979798;
  text-align: left;
}

/* 固定底欄 */
.fixed-footer {
  position: fixed;
  bottom: -1px;
  left: 50%;
  margin-left: -360px;
  z-index: 99;
}

.fixed-footer .fixed-footer-wrapper {
  width: 720px;
  height: 162px;
  background: url("../image/fixed-footer-bg0.png") no-repeat;
  background-size: 100%;
  transition: all 0.2s;
}

.fixed-footer .fixed-footer-down {
  width: 720px;
  height: 1862x;
  background: url("../image/fixed-footer-bg-down0.png") no-repeat;
  background-size: 100%;
  transition: all 0.2s;
}

.fixed-footer .fixed-footer-wrapper.over {
  background: url("../image/fixed-footer-bg0.png") no-repeat;
  background-size: 100%;
}

.fixed-footer .fixed-footer-wrapper .btn-query {
  position: absolute;
  top: 80px;
  left: 22px;
  font-size: 0;
}

.fixed-footer .fixed-footer-wrapper .gp-order,
.fixed-footer .fixed-footer-wrapper .ios-order,
.fixed-footer .fixed-footer-wrapper .hw-order {
  font-size: 0;
  position: absolute;
  left: 460px;
  top: 80px;
  width: 232px;
  height: 69px;
  /* overflow: hidden; */
}
.fixed-footer .fixed-footer-wrapper .btn_downs {
  top: 75px;
}

.fixed-footer .fixed-footer-wrapper .gp-order span,
.fixed-footer .fixed-footer-wrapper .ios-order span {
  font-size: 0;
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 5%;
  isolation: isolate;
  /* 处理safari下overflow失效问题 */
}

.gp-order-light,.ios-order-light {
  position: absolute;
  top: 0px;
  left: -100%;
  z-index: 2;
  width: 100%;
  height: 100%;
  background: url(../image/order-store-light.png) no-repeat;
  background-size: 100%;
  content: "";
  transition: all 650ms;
  -webkit-animation: sg 2s linear infinite;
  -moz-animation: sg 2s linear infinite;
  -ms-animation: sg 2s linear infinite;
  animation: sg 2s linear infinite;
}

.fixed-footer .fixed-footer-wrapper .ios-order::before {
  content: "";
  display: inline-block;
  width: 28px;
  height: 27px;
  background: url("../image/fb-like-red.png") no-repeat;
  background-size: 100%;
  cursor: pointer;
  position: absolute;
  top: -10px;
  left: -10px;
  z-index: 10;
}

.fixed-footer .fixed-footer-wrapper .ios-order::after {
  content: "";
  display: inline-block;
  width: 55px;
  height: 54px;
  background: url(../image/fb-like-hand.png) no-repeat;
  background-size: 70%;
  cursor: pointer;
  position: absolute;
  top: 43px;
  left: 205px;
  -webkit-animation: fblike 1s ease-in-out infinite;
  animation: fblike 1s ease-in-out infinite;
}

.fixed-footer .fixed-footer-wrapper .gp-order::before {
  content: "";
  display: inline-block;
  width: 25px;
  height: 25px;
  background: url("../image/fb-like-red.png") no-repeat;
  background-size: 100%;
  cursor: pointer;
  position: absolute;
  top: -10px;
  left: -10px;
  z-index: 10;
}

.fixed-footer .fixed-footer-wrapper .gp-order::after {
  content: "";
  display: inline-block;
  width: 71px;
  height: 72px;
  background: url(../image/fb-like-hand.png) no-repeat;
  background-size: 60%;
  cursor: pointer;
  position: absolute;
  top: 43px;
  left: 205px;
  -webkit-animation: fblike 1s ease-in-out infinite;
  animation: fblike 1s ease-in-out infinite;
}

.pop-ai .dia-close {
  top: 1000px;
  left: 335px;
}

.ai-island .dia-close {
  left: 600px;
  top: 225px;
  z-index: 102;
}

.fixed-footer .fixed-footer-wrapper .fb-btn {
  position: absolute;
  background: url("../images/warp-img/bottom/fb-btn.png") no-repeat;
  background-size: 100%;
  top: 88px;
  left: 270px;
  width: 218px;
  height: 88px;
}

.fixed-info {
  position: absolute;
  top: 25px;
  left: 284px;
  display: flex;
}

.fixed-select-bg {
  width: 130px;
  height: 58px;
  background: url("../images/warp-img/bottom/fixed-select-bg.png");
  background-size: 100%;
}

.fixed-info .fixed-select-bg .order-select {
  width: 130px;
  height: 58px;
  padding-left: 2%;
  display: inline-block;
  background: url(../images/warp-img/pager2/order-select.png) no-repeat 100%;
  background-position-x: 100px;
  font-size: 18px;
  font-weight: 700;
  color: #ffff;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  -webkit-border-radius: 0;
  box-sizing: border-box;
  border: 0;
}

.fixed-input {
  display: flex;
  align-items: center;
  position: relative;
}

.fixed-input {
  width: 259px;
  height: 58px;
  /* background: #E7E3D7; */
  /* border: 1px solid #9B7842; */
  display: inline-block;
  /* margin: 0px -58px; */
  color: #ffff;
  /* text-align: center;
    text-align-last: center; */
  border-radius: 0;
  box-sizing: border-box;
  /* margin-left: 4px; */
  text-size-adjust: none;
  position: absolute;
  border: 0;
  background: url("../images/warp-img/bottom/fixed-input.png") no-repeat;
  left: 10px;
  text-indent: 20px;
  position: relative;
  display: flex;

  /* padding-left: 40px; */
}

.fixed-input input {
  width: 160px;
  height: 58px;
  border: none;
  text-align: center;
  outline: none;
  text-decoration: none;
  /* opacity: .5;
     */
  color: #ffff;
  text-indent: 4px;
  background: transparent;
  border-radius: 0;
  font-size: 18px;
}

.fixed-input>input::-ms-input-placeholder {
  text-align: center;
}

.fixed-input>input::-webkit-input-placeholder {
  text-align: center;
}


/*弹出视频*/
.shade {
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
}


.videos {
  width: 720px;
  height: 500px;
  position: absolute;
  left: 50%;
  margin-left: -360px;
  top: 50%;
  margin-top: -250px;
}

.close {
  width: 22px;
  height: 22px;
  position: absolute;
  top: 520px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
  background: url(../image/pop-close.png) no-repeat;
  cursor: pointer;
  z-index: 101;
}

/*弹层*/
.dialog {
  position: fixed;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  display: block;
  z-index: 101;
}

/* 弹窗关闭 */
.dia-close {
  width: 45px;
  height: 42px;
  position: absolute;
  top: 62px;
  right: 60px;
  background: url("../image/pop/pop-close.png") no-repeat;
  background-size: 100%;
}

.dia-close-2 {
  width: 45px;
  height: 42px;
  position: absolute;
  top: 62px;
  right: 60px;
  background: url("../image/pop/pop-close.png") no-repeat;
  background-size: 100%;
}

.login .dia-close {
  background: url("../image/pop/pop-close3.png") no-repeat;
  background-size: 100%;

}

.dia-pic-close {
  width: 55px;
  height: 58px;
  position: absolute;
  background: url(../images/pop-close.png) no-repeat;
  background-size: 100%;
  z-index: 300;
}

.pop-gift-k {
  perspective: 1000;
  width: 720px;
  /* height: 600px; */
  position: relative;
  margin-top: -100px;
  margin-left: -15px;
}

.pop-gift-share-first {
  position: absolute;
  top: 490px;
  left: 155px;
  z-index: 20;
}

.pop-gift-share {
  position: absolute;
  top: 565px;
  left: 145px;
  z-index: 20;
}

.pop-gift-header {
  width: 720px;
  /* height: 160px; */
  top: -92px;
  position: absolute;
}

.pop-gift-header img:nth-child(1) {
  width: 324px;
  height: 54px;
  display: block;
  margin: 0 auto;
}

.pop-gift-header .pop-gift-header-hint {
  width: auto;
  height: 29px;
  display: block;
  margin: 30px auto 50px;
}

/* 卡牌 */
.pop-gift-flipper {
  transition: 0.6s;
  transform-style: preserve-3d;
  position: relative;
  /* 元素变形的原点 */
  transform-origin: center center;
  /* 背部可见 翻转更立体 */
  backface-visibility: visible;
  -webkit-backface-visibility: visible;
  width: 609px;
  height: 781px;
  margin: 0 auto;
}

.pop-gift-front,
.pop-gift-back {
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  position: absolute;
  top: 0px;
  left: 0;
}

/* 卡片前面内容 */
.pop-gift-front {
  transform: rotateY(180deg);
  width: 609px;
  height: 781px;
}

.pop-gift-front-btn {
  width: 251px;
  height: 87px;
  position: absolute;
  left: 50%;
  z-index: 11;
  bottom: -75px;
  transform: translateX(-50%);
}

.pop-gift-front-btn1 {
  width: 251px;
  height: 87px;
  position: absolute;
  left: 50%;
  z-index: 11;
  transform: translateX(-50%);
  bottom: -75px;
}

.pop-gift-front .pop-gift-front-card {
  width: 609px;
  height: 781px;
}

/* 卡片后面内容 */
.pop-gift-back {
  z-index: 2;
  width: 320px;
  height: 548px;
}

.pop-gift-back-btn {
  width: 469px;
  height: 173px;
  position: absolute;
  top: 530px;
  left: 50%;
  transform: translateX(-50%);
}

.pop-gift-back .pop-gift-back-cardOne {
  width: 320px;
  height: 548px;
}

.pop-gift-back .pop-gift-back-cardTwo {
  width: 320px;
  height: 548px;
}

/* 翻转180度 */
.pop-gift-k .pop-gift-flipper.active {
  /* transform: rotateY(180deg); */
  animation: animal 0.5s ease-out;
  -webkit-animation: animal 0.5s ease-out;
}

@keyframes animal {
  0% {
    transform: rotateY(0deg);
    -ms-transform: rotateY(0deg);
    -webkit-transform: rotateY(0deg);
  }

  100% {
    transform: rotateY(900deg);
    -ms-transform: rotateY(900deg);
    -webkit-transform: rotateY(900deg);
  }
}

@-webkit-keyframes animal {
  0% {
    transform: rotateY(0deg);
    -ms-transform: rotateY(0deg);
    -webkit-transform: rotateY(0deg);
  }

  100% {
    transform: rotateY(900deg);
    -ms-transform: rotateY(900deg);
    -webkit-transform: rotateY(900deg);
  }
}

.pop-gift-k .pop-gift-flipper.active.front {
  transform: rotateY(0deg);
  -ms-transform: rotateY(0deg);
  /* IE 9 */
  -moz-transform: rotateY(0deg);
  /* Firefox */
  -webkit-transform: rotateY(0deg);
  /* Safari 和 Chrome */
  -o-transform: rotateY(0deg);
  /* Opera */
}

.pop-gift-k .pop-gift-flipper.active.back {
  transform: rotateY(180deg);
  -ms-transform: rotateY(180deg);
  /* IE 9 */
  -moz-transform: rotateY(180deg);
  /* Firefox */
  -webkit-transform: rotateY(180deg);
  /* Safari 和 Chrome */
  -o-transform: rotateY(180deg);
  /* Opera */
}

/* .pop-gift-light{
    width: 400px;
    height: 640px;
    background: url("../images/pop-gift-light.png") no-repeat;
    background-size: 100%;
    animation: myfirst 3s infinite;
    position: absolute;
    top: -47px;
    left: -40px;
    pointer-events: none;
    z-index: -1;
} */
@keyframes myfirst {
  0% {
    transform: scale(0.95);
  }

  50% {
    transform: scale(1);
  }

  100% {
    transform: scale(0.95);
  }
}

.pop-star {
  position: absolute;
  top: 100px;
  z-index: 10;
  /* 不影响层级下面的组件鼠标事件 */
  /* pointer-events:none; */
  /* background-color: brown; */
}

.pop-star ul {
  display: flex;
  flex-direction: row;
  list-style: none;
  left: 162px;
  position: absolute;
}

.pop-star .pop-star1 {
  position: absolute;
  width: 300px;
  height: 300px;
  top: -4px;
  left: -166px;
  animation: star1 2s infinite ease-out;
}

.pop-star .pop-star2 {
  position: absolute;
  width: 300px;
  height: 300px;
  top: 260px;
  left: 300px;
  animation: star1 2s infinite ease-out;
}

.pop-star .pop-star3 {
  position: absolute;
  width: 300px;
  height: 300px;
  top: 200px;
  left: -184px;
  animation: star1 1s 0.5s infinite ease-out;
}

.pop-star .pop-star4 {
  position: absolute;
  width: 300px;
  height: 300px;
  top: 290px;
  animation: star1 2s infinite ease-out;
}

.pop-star .pop-star5 {
  position: absolute;
  width: 300px;
  height: 300px;
  top: 133px;
  left: 119px;
  animation: star1 2s 0.5s infinite ease-out;
}

@keyframes star1 {
  0% {
    opacity: 1;
  }

  50% {
    opacity: 0.3;
  }

  100% {
    opacity: 1;
  }
}

.pop-gift-unlock {
  position: absolute;
  top: 774px;
  left: 50%;
  margin-left: -234.5px;
}

.pop-gift .lottery-share {
  position: absolute;
  top: 410px;
  left: 346px;
  z-index: 2;
}

.pop-gift .lottery-invite {
  position: absolute;
  top: 779px;
  left: 148px;
  z-index: 2;
}

.pop-gift .dia-close {
  top: -205px;
  left: 565px;
}

.pop-gift-nei {
  width: 580px;
  height: 260px;
  top: 65px;
  left: -40px;
  position: relative;
}

.pop-gift-nei h2 {
  padding-top: 40px;
  padding-bottom: 0px;
  line-height: 1;
  font-size: 46px;
  color: #763fa2;
  text-align: center;
}

.pop-gift-nei .pop-bag {
  /* position: absolute;
    top: 164px;
    left: 230px; */
  text-align: center;
}

.pop-gift-nei .pop-bag img {
  /* width: 100%; */
  position: absolute;
  top: 0px;
  left: 48px;
}

.pop-gift-nei .lottery-pop-btn a {
  display: block;
  width: 358px;
  margin: 0 auto;
  margin-top: 10px;
}

.pop-gift-nei .lottery-share {
  position: absolute;
  top: -85px;
  right: -25px;
}

.pop-gift .pop-gift-cyberpunk-title,
.pop-gift .pop-gift-cyberpunk-title::after {
  width: 569px;
  height: 141px;
  position: absolute;
  left: 5px;
  top: 540px;
  background: url("../images/pop-gift-cyberpunk-title.png") no-repeat;
  background-size: 100%;
}

.pop-gift .pop-gift-cyberpunk-title::after {
  content: "";
  top: 0;
  left: 0;
  visibility: hidden;
  animation: cyberpunk 1s infinite;
  animation-timing-function: steps(1, end);
}

@keyframes bounce-down {
  25% {
    transform: translateY(-4px);
  }

  50%,
  100% {
    transform: translateY(0);
  }

  75% {
    transform: translateY(4px);
  }
}

.pop-exchange-info .pop-exchange-content li {
  line-height: 65px;
  height: 61px;
  display: flex;
}

.pop-exchange-content li .num {
  width: 200px;
  overflow: hidden;
  text-overflow: ellipsis;
  background-color: rgba(167, 133, 89, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 25px;
  padding: 0 2%;
  border: 1px solid #8c704b;
  border-top: transparent;
  border-right: transparent;
  font-size: 15px;
}

.pop-exchange-content li .gift {
  width: 268px;
  overflow: hidden;
  text-overflow: ellipsis;
  background-color: rgba(167, 133, 89, 0.4);
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 25px;
  padding: 0 2%;
  border: 1px solid #8c704b;
  border-top: transparent;
  border-right: transparent;
  font-size: 16px;
}

.pop-exchange-content li .status {
  width: 91px;
  overflow: hidden;
  text-overflow: ellipsis;
  background-color: rgba(167, 133, 89, 0.4);
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 25px;
  padding: 0 2%;
  border: 1px solid #8c704b;
  border-right: transparent;
  border-top: transparent;
  font-size: 16px;
}

.pop-exchange-content li span {
  color: #ffedd6;
}

.pop-exchange .dia-close {
  top: 5px;
  left: 670px;
}

/* 卡池弹窗 */
.pop-poker-container .pop-pool-bg {
  position: relative;
  background: url(../images/pop-pool-bg.png) no-repeat;
  background-size: 100%;
  width: 697px;
  height: 907px;
  top: 0;
  left: 0;
}

/* .pop-poker-container .pop-pool-bg .pop-pool-sum {
    position: absolute;
    background: url(../images/pop-pool-sum.png) no-repeat;
    background-size: 100%;
    width: 225px;
    height: 37px;
    top: 805px;
    left: 223px;
} */
.pop-poker-container .pop-pool-num span {
  position: absolute;
  font-weight: 700;
  font-size: 35px;
  left: 438px;
  top: 782px;
  background-image: -webkit-linear-gradient(top, #faf4e4, #fbf0d1);
  -webkit-text-size-adjust: none;
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  cursor: default;
  text-shadow: 0px 0px 31px #e04303;
}

.pop-poker-container .pop-pool-total span {
  position: absolute;
  font-weight: 700;
  font-size: 35px;
  left: 438px;
  top: 823px;
  background-image: -webkit-linear-gradient(top, #f8d49f, #fee6a7);
  -webkit-text-size-adjust: none;
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  cursor: default;
}

.pop-poker-container .pop-pool-bg .pop-pool-container {
  position: relative;
  width: 655px;
  height: 625px;
  top: 161px;
  left: 23px;
  overflow: hidden;
}

.pop-poker-container .pop-pool-bg .pop-pool-heros {
  position: absolute;
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  width: 672px;
  height: 611px;
  overflow: scroll;
  overflow-x: hidden;
}

/* 孙尚香边框特效 */
.star-hero-light {
  position: relative;
  background: url(../images/star-hero-light.png) no-repeat;
  background-size: 100%;
  width: 2.15rem;
  height: 2.58rem;
  top: -2.35rem;
  left: -0.42rem;
}

/* 初始武将颜色 */
.pop-poker-container .pop-pool-bg .pop-pool-hero {
  position: relative;
  width: 137px;
  height: 213px;
  margin: 10px 10px;
  left: 12px;
  filter: grayscale(100%);
}

/* 拥有普通武将颜色 */
.pop-poker-container .pop-pool-bg .pop-pool-hero.active1 {
  position: relative;
  width: 137px;
  height: 213px;
  margin: 10px 10px;
  left: 12px;
  filter: grayscale(0);
}

/* 拥有五星武将颜色 */
.pop-poker-container .pop-pool-bg .pop-pool-hero.active2 {
  position: relative;
  width: 137px;
  height: 213px;
  margin: 10px 10px;
  left: 12px;
  filter: grayscale(0);
}

.pop-poker-container .pop-pool-bg .pop-pool-hero.active2::after {
  content: "";
  position: absolute;
  background: url(../images/star-hero-light.png) no-repeat;
  background-size: 100%;
  width: 150px;
  height: 235px;
  top: -10px;
  left: -6px;
}

/* 拥有孙尚香颜色 */
.pop-poker-container .pop-pool-bg .pop-pool-hero.active4 {
  position: relative;
  width: 137px;
  height: 213px;
  margin: 10px 10px;
  left: 12px;
  filter: grayscale(0);
}

.pop-poker-container .pop-pool-bg .pop-pool-hero.active4::after {
  content: "";
  position: absolute;
  background: url(../images/sun-hero-light.png) no-repeat;
  background-size: 100%;
  width: 160px;
  height: 240px;
  top: -15px;
  left: -11px;
}

.pop-pool-hero .pop-pool-hero-num.active {
  position: absolute;
  width: 25px;
  height: 25px;
  top: -10px;
  left: 118px;
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0.6);
  border: 2px solid #a27b49;
  z-index: 1;
}

.pop-pool-hero-num span {
  position: absolute;
  color: #fdedcd;
  font-size: 15px;
  text-align: center;
  line-height: 20px;
  width: 25px;
  height: 25px;
  font-weight: 600;
  left: 0.5px;
  top: 2.5px;
}

.pop-poker-pool .dia-close {
  left: 660px;
  top: 0px;
}

/* 卡片放大弹窗 */
.pop-poker-boost .big-poker-bg {
  width: 896px;
  height: 1059px;
}

.pop-big-poker .dia-pic-close {
  left: 700px;
  top: 75px;
}

/* 抽奖弹窗 */
.pop-poker-lottery .pop-poker-lottery-bg {
  position: relative;
  background: url(../images/pop-poker-lottery-bg.png) no-repeat;
  background-size: 100%;
  width: 705px;
  height: 964px;
}

.pop-lottery-container .pop-lottery-heros {
  position: absolute;
  width: 619px;
  height: 665px;
  top: 100px;
  left: 43px;
}

.pop-lottery-container .pop-lottery-hero {
  position: relative;
  width: 137px;
  height: 213px;
  margin: 10px 10px;
  transform-origin: center center;
  -webkit-transform-style: preserve-3d;
  -moz-transform-style: preserve-3d;
  -o-transform-style: preserve-3d;
  -ms-transform-style: preserve-3d;
  transform-style: preserve-3d;
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -o-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  backface-visibility: hidden;
}

.pop-lottery-hero:nth-child(2) {
  position: absolute;
  top: -17px;
  left: 80px;
}

.pop-lottery-hero:nth-child(3) {
  position: absolute;
  top: -17px;
  left: 232px;
}

.pop-lottery-hero:nth-child(4) {
  position: absolute;
  top: -17px;
  left: 385px;
}

.pop-lottery-hero:nth-child(5) {
  position: absolute;
  top: 214px;
}

.pop-lottery-hero:nth-child(6) {
  position: absolute;
  top: 214px;
  left: 154px;
}

.pop-lottery-hero:nth-child(7) {
  position: absolute;
  top: 214px;
  left: 309px;
}

.pop-lottery-hero:nth-child(8) {
  position: absolute;
  top: 214px;
  left: 463px;
}

.pop-lottery-hero:nth-child(9) {
  position: absolute;
  top: 445px;
  left: 80px;
}

.pop-lottery-hero:nth-child(10) {
  position: absolute;
  top: 445px;
  left: 232px;
}

.pop-lottery-hero:nth-child(11) {
  position: absolute;
  top: 445px;
  left: 385px;
}

.hero-front {
  position: absolute;
  -ms-backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -o-backface-visibility: hidden;
  backface-visibility: hidden;
  -ms-transform: rotateY(180deg);
  -webkit-transform: rotateY(180deg);
  -moz-transform: rotateY(180deg);
  -o-transform: rotateY(180deg);
  transform: rotateY(180deg);
}

.hero-front .pop-lottery-hero-img {
  width: 100%;
  height: 100%;
}

.hero-front.active2::after {
  position: absolute;
  content: "";
  background: url(../images/star-hero-light.png) no-repeat;
  background-size: 100%;
  width: 108%;
  height: 108%;
  top: -9px;
  left: -6px;
}

.hero-front.active4::after {
  position: absolute;
  content: "";
  background: url(../images/sun-hero-light.png) no-repeat;
  background-size: 100%;
  width: 115%;
  height: 109%;
  top: -12px;
  left: -10px;
}

.hero-back {
  position: absolute;
  -ms-backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -o-backface-visibility: hidden;
  backface-visibility: hidden;
  /* z-index: 2; */
}

.pop-lottery-container .pop-lottery-hero.turn {
  -ms-transform: rotateY(180deg);
  -webkit-transform: rotateY(180deg);
  -moz-transform: rotateY(180deg);
  transform: rotateY(180deg);
  -o-transform: rotateY(180deg);
  animation: turn1 0.5s;
  -webkit-animation: turn1 0.5s;
  -moz-animation: turn1 0.5s;
  -ms-animation: turn1 0.5s;
  -o-animation: turn1 0.5s;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.pop-lottery-container .pop-lottery-share-btn {
  position: absolute;
  background: url(../images/pop-lottery-share-btn.png) no-repeat;
  background-size: 100%;
  width: 289px;
  height: 73px;
  top: 800px;
  left: 58px;
}

.plus-btn {
  position: absolute;
  background-size: 100%;
  width: 130px;
  height: 136px;
  left: -53px;
  top: -67px;
}

.pop-lottery-container .pop-lottery-ten-btn {
  position: absolute;
  background: url(../images/pop-lottery-ten-btn.png) no-repeat;
  background-size: 100%;
  width: 288px;
  height: 73px;
  top: 800px;
  left: 360px;
}

.pop-poker-lottery .dia-close {
  left: 660px;
  top: 0;
}

@keyframes turn1 {
  0% {
    -ms-transform: rotateY(0deg);
    -webkit-transform: rotateY(0deg);
    -moz-transform: rotateY(0deg);
    transform: rotateY(0deg);
    -o-transform: rotateY(0deg);
  }

  100% {
    -ms-transform: rotateY(180deg);
    -webkit-transform: rotateY(180deg);
    -moz-transform: rotateY(180deg);
    transform: rotateY(180deg);
    -o-transform: rotateY(180deg);
    z-index: 99;
  }
}

/* 抽奖动画弹窗 */
.pop-lottery-animate-bg {
  width: 720px;
  height: 1280px;
  animation: lotteryAnimate 1500ms infinite steps(1, end);
  animation-fill-mode: forwards;
}

.pic-pre {
  width: 0;
  height: 0;
  /* 图片预加载 */
  background: url(../images/lottery-animate-1.png),
    url(../images/lottery-animate-2.png), url(../images/lottery-animate-3.png),
    url(../images/lottery-animate-4.png), url(../images/lottery-animate-5.png),
    url(../images/lottery-animate-6.png), url(../images/lottery-animate-7.png),
    url(../images/lottery-animate-8.png), url(../images/lottery-animate-9.png),
    url(../images/lottery-animate-10.png), url(../images/lottery-animate-11.png),
    url(../images/lottery-animate-12.png), url(../images/lottery-animate-13.png),
    url(../images/shenluxun.png), url(../images/mocaocao.png),
    url(../images/moguanyu.png), url(../images/shenzhugeliang.png),
    url(../images/zhangfei.png), url(../images/mosimayi.png),
    url(../images/modongzhuo.png), url(../images/modiaochan.png),
    url(../images/huohuangsunshangxiang.png), url(../images/mozhangchunhua.png),
    url(../images/mozhaoyun.png), url(../images/shencaiwenji.png),
    url(../images/daqiao.png), url(../images/xiahouyuan.png),
    url(../images/liufeng.png), url(../images/menghuo.png),
    url(../images/chengpu.png), url(../images/liaohua.png),
    url(../images/xuhuang.png), url(../images/zhoucang.png),
    url(../images/yangxiu.png), url(../images/guanping.png),
    url(../images/star-hero-light.png), url(../images/sun-hero-light.png),
    url(../images/caoang.png);
}

@keyframes lotteryAnimate {
  0% {
    background: url(../images/lottery-animate-1.png);
  }

  7% {
    background: url(../images/lottery-animate-2.png);
  }

  15% {
    background: url(../images/lottery-animate-3.png);
  }

  23% {
    background: url(../images/lottery-animate-4.png);
  }

  31% {
    background: url(../images/lottery-animate-5.png);
  }

  46% {
    background: url(../images/lottery-animate-6.png);
  }

  54% {
    background: url(../images/lottery-animate-7.png);
  }

  62% {
    background: url(../images/lottery-animate-8.png);
  }

  70% {
    background: url(../images/lottery-animate-9.png);
  }

  77% {
    background: url(../images/lottery-animate-10.png);
  }

  85% {
    background: url(../images/lottery-animate-11.png);
  }

  92% {
    background: url(../images/lottery-animate-12.png);
  }

  100% {
    background: url(../images/lottery-animate-13.png);
  }
}

/* 抽奖五星武将弹窗 */
.pop-lottery-big-heros .pop-big-poker {
  position: relative;
  width: 720px;
  height: 100%;
}

.pop-big-poker .pop-pool-hero-img {
  width: 100%;
  height: 100%;
  animation-name: growBig;
  /*关键帧名称*/
  animation-timing-function: cubic-bezier(1, 0.8, 0.2);
  /*动画的速度曲线*/
  animation-iteration-count: infinite;
  /*动画播放的次数*/
  animation-duration: 1.85s;
  /*动画所花费的时间*/
}

@keyframes growBig {
  0% {
    transform: scale(0);
  }

  50% {
    transform: scale(1);
  }

  100% {
    transform: scale(1);
  }
}

/* 獎勵兌換自動觸發彈窗 */
/* .pop-award-auto .pop-award-content {
    position: relative;
    width: 610px;
    height: 721px;
    background: url(../images/pop-award-bg.png) no-repeat;
    background-size: 100%;
}
.pop-award-content .pop-award-type {
    position: absolute;
    width: 473px;
    height: 441px;
    top: 131px;
    left: -47px;
}
.pop-award-content .award-confirm-btn {
    position: absolute;
    background: url(../images/award-confirm-btn.png) no-repeat;
    background-size: 100%;
    width: 262px;
    height: 74px;
    top: 610px;
    left: 175px;
}
.pop-award-auto .dia-close {
    left: 600px;
    top: 0;
} */

.auto-download-bg {
  background: url(../image/pop/autoDownPop.png) no-repeat;
  background-size: 100%;
  width: 672px;
  height: 867px;
  position: relative;
}

.auto-download-pop .dia-close{
  top: -35px;
  right: -5px;
}

/* 抽卡说明弹窗 */
.pop-draw-description .pop-draw-description-k {
  width: 696px;
  height: 985px;
  margin: 0 auto;
  background: url(../images/warp-img/pager9/pop-draw-description-bg.png) no-repeat;
  background-size: 100%;
  overflow: hidden;
}

.pop-draw-description-nei {
  width: 100%;
  margin-left: 60px;
  position: relative;
  overflow-y: scroll;
  top: 183px;
}

.pop-draw-description-k img {
  width: 599px;
}

.pop-draw-description .dia-close {
  top: -11px;
  left: 650px;
}

/* 老玩家回歸獎勵彈窗 */
.return-gift .pop-return-gift {
  width: 720px;
  height: 787px;
  margin: 0 auto;
  background: url("../images/pop-return-gift-bg.png") no-repeat;
  background-size: 100%;
}

.pop-return-gift .dia-close {
  top: 800px;
  left: 310px;
}

/* FB分享彈窗 */
.pop-fb-share .fb-share-pop {
  width: 720px;
  height: 426px;
  margin: 0 auto;
  background: url("../images/pop-fb-share-bg.png") no-repeat;
  background-size: 100%;
}

.pop-fb-share .fb-share-pop .lottery-share {
  position: absolute;
  top: 245px;
  left: 217px;
}

.pop-fb-share .dia-close {
  top: 460px;
  left: 310px;
}

/* 查询弹窗 */
.pop-query-k {
  width: 720px;
  height: 637px;
  background: url("../image/pop/pop-uppop-query-bg.png") no-repeat;
  background-size: 100%;
  /* overflow: hidden; */
  margin-top: 20px;
}

.pop-query-diamond {
  text-align: center;
  position: absolute;
  top: 94px;
  left: 530px;
}

.pop-query-diamond span {
  font-size: 55px;
  -webkit-text-size-adjust: none;
  font-weight: 700;
  margin-left: 10px;
  background-image: -webkit-linear-gradient(top, #fff2ee, #fadc6d);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.pop-query-nei {
  width: 580px;
  position: relative;
  overflow-y: scroll;
  height: 440px;
  left: 80px;
  top: 175px;
  overflow-x: hidden;
}



.query-info li {
  position: relative;
  line-height: 65px;
  margin-bottom: 5px;
  height: 58px;
  display: flex;
  align-items: center;
}

.query-info li .name {
  width: 276px;
  height: 51px;
  overflow: hidden;
  text-overflow: ellipsis;
  /* background-color: #321617; */
  margin-right: 10px;
  display: flex;
  background: url("../image/pop/query-name.png");
  background-size: 100%;
  justify-content: center;
  align-items: center;
  line-height: 56px;
  color: #fff;
}

.query-info li .code {
  width: 130px;
  height: 51px;
  overflow: hidden;
  background-color: #321617;
  text-overflow: ellipsis;
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 17px;
  text-align: center;
  background: url("../image/pop/query-code.png");
  background-size: 100%;
  color: #fff;
}

.query-info li .btn-copy {
  position: relative;
  margin-left: 13px;
  top: -2px;
}

.query-info li .btn-copy a {
  width: 127px;
  height: 41px;
  margin: auto;
  background: url("../image/pop/pop-query-copy.png") no-repeat;
  background-size: 100%;
  display: block;
  margin-top: 6px;
}

.query-info li .btn-get a {
  width: 127px;
  height: 41px;
  margin: auto;
  background: url(../image/pop/pop-query-get.png) no-repeat;
  background-size: 100%;
  display: block;
  margin-left: 15px;
}

.query-info li .go-share {
  position: relative;
  margin-left: 10px;
  top: 3px;
}

.query-info li .go-share a {
  width: 157px;
  height: 63px;
  margin: auto;
  background: url(../images/go-award.png) no-repeat;
  background-size: 100%;
  display: block;
}

.query-info li .go-lottery {
  position: relative;
  margin-left: 10px;
  top: 3px;
}

.query-info li .go-lottery a {
  width: 157px;
  height: 63px;
  margin: auto;
  background: url(../images/go-award.png) no-repeat;
  background-size: 100%;
  display: block;
}

.pop-query .dia-close {
  top: -70px;
  left: 625px;
}

/* .login .order-info .step .order-btn .btn-query{
    margin-left: 265px;
    margin-top: 18px;
    display: inline-block;
}
.login .order-info .step .order-hint{
    width: 504px;
    margin: auto;
} */
/* SDK登入彈窗 */
.pop-sdk-login .dialog {
  top: 34%;
}

.pop-sdk-login .pop-sdk-login-content {
  width: 720px;
  height: 1427px;
  background: url("../images/pop-sdk-login-bg.png") no-repeat;
  background-size: 100%;
}

.pop-sdk-login-content .pop-sdk-login-form {
  position: absolute;
  top: 842px;
  left: 72px;
}

.pop-sdk-login-content .pop-sdk-login-form input {
  width: 570px;
  height: 70px;
  background: #fff;
  border: 0 solid #ffffff;
  display: inline-block;
  margin: 0 auto;
  font-size: 30px;
  font-weight: 700;
  color: #454545;
  text-align: center;
  text-align-last: center;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 0;
  box-sizing: border-box;
  margin-left: 4px;
}

.pop-sdk-login-content .pop-sdk-login-form input.sdk-login-password {
  margin-top: 26px;
}

.pop-sdk-login-content .pop-sdk-login-form .pop-sdk-login-form-item {
  position: relative;
}

.pop-sdk-login-form .pop-sdk-login-form-item .sdk-login-error-info {
  position: absolute;
  width: 100%;
  color: #f56c6c;
  text-align: center;
  font-size: 14px;
}

.pop-sdk-login .pop-sdk-login-content .sdk-login-btn {
  position: absolute;
  top: 1027px;
  left: 116px;
}

.pop-sdk-login .pop-sdk-login-content .sdk-fb-login-btn {
  position: absolute;
  top: 1227px;
  left: 68px;
}

.pop-sdk-login .dia-close {
  top: 1396px;
  left: 308px;
}

/* 第一次注册分享facebook */
.fb-like-container .fb-like-inner {
  position: relative;
  width: 707px;
  height: 283px;
  background: url(../images/order-success.png);
  background-size: 100%;
}

.fb-like-container .dia-close {
  width: 144px;
  height: 124px;
  position: absolute;
  top: 282px;
  left: 278px;
  background: url("../images/pop-close.png") no-repeat;
  background-size: 100%;
}

.fb-like-container .fb-like-inner {
  display: flex;
  justify-content: center;
}

.fb-like-container .pop-fb-like-btn {
  margin-top: 200px;
  display: block;
  transform: scale(1.5);
}

/* 分享邀请链接 */
.share-code .pop-share-code-nei {
  width: 596px;
  height: 455px;
  background: url("../images/pop-share-bg.png") no-repeat;
  background-size: 100%;
  /* padding: 20px 0; */
  /* text-align: center; */
}

.pop-share-code-nei p {
  width: 300px;
  margin: auto;
  line-height: 50px;
  /* font-size: 28px; */
  color: #000;
  text-align: center;
  font-size: 0;
}

.share-code .code-btns {
  position: relative;
  display: flex;
  flex-direction: row;
  top: 100px;
  left: 156px;
}

.code-btns .line-btn {
  /* width: 2px; */
  display: inline-block;
  margin: 0 30px;
}

.code-btns .fb-btn {
  margin-left: 30px;
}

.code-btns .fb-btn a {
  /* display: block;
    width: 79px;
    height: 79px;
    margin-top: 215px;
    margin-left: -125px; */
}

.code-btns img {
  /* width: 117px; */
}

.pop-share-code .dia-close {
  top: -13px;
  left: 560px;
}

/* 弹窗活动结束 */
.over .over-content {
  font-size: 0;
  width: 720px;
  height: 701px;
  background: url("../image/pop/pop-uppop-over-bg.png") no-repeat;
  background-size: 100%;
  position: relative;
}

.over .over-content p {
  font-size: 0;
}

.over-content .over-btngp {
  position: absolute;
  width: 177px;
  top: 744px;
  left: 271px;
}

.over-content .over-btns a {
  /* margin: 0 133px; */
}

.over-content .over-query {
  position: absolute;
  top: 640px;
  left: 50%;
  transform: translateX(-50%);
}

.over-content .over-query::after {
  content: "";
  display: inline-block;
  width: 81px;
  height: 59px;
  background: url("../image/pop/over-hand.png") no-repeat;
  background-size: 100%;
  cursor: pointer;
  position: absolute;
  top: 44px;
  right: -34px;
  -webkit-animation: fblike 1s ease-in-out infinite;
  animation: fblike 1s ease-in-out infinite;
}

.over-content .over-query a::before {
  content: "";
  display: inline-block;
  width: 33px;
  height: 33px;
  background: url("../image/pop/over-red.png") no-repeat;
  background-size: 100%;
  cursor: pointer;
  position: absolute;
  top: -5px;
  left: 0px;
  -webkit-animation: fblike 1s ease-in-out infinite;
  animation: fblike 1s ease-in-out infinite;
}

.over .dia-close {
  top: 125px;
  left: 580px;
}

/* 预下载弹窗 */
.down-content {
  width: 720px;
  height: 610px;
  left: 50%;
  background: url(../image/pop/down-bg.png) no-repeat;
  background-size: 100%;
  top: 45%;
}

.down-content.over {
  width: 720px;
  height: 610px;
  background: url("../image/pop/down-bg-over.png") no-repeat;
  background-size: 100%;
  top: 46%;
  left: 50%;
}

.down-content .btn {
  width: 465px;
  height: 164px;
  background: url("../image/pop/btn-down.png") no-repeat;
  background-size: 100%;
  position: absolute;
  left: 50%;
  bottom: -85px;
  margin-left: -232.5px;
  cursor: pointer;
}

.over .btn {
  width: 465px;
  height: 164px;
  background: url("../image/pop/btn-down.png") no-repeat;
  background-size: 100%;
  position: absolute;
  left: 50%;
  bottom: -85px;
  margin-left: -232.5px;
  cursor: pointer;
}

.down-content .btn::after {
  content: "";
  display: inline-block;
  width: 56px;
  height: 49px;
  background: url(../image/pop/over-hand.png) no-repeat;
  background-size: 100%;
  cursor: pointer;
  position: absolute;
  top: 90px;
  left: 376px;
  -webkit-animation: fblike 1s ease-in-out infinite;
  animation: fblike 1s ease-in-out infinite;
}

.down-content .btn::before {
  content: "";
  display: inline-block;
  width: 43px;
  height: 43px;
  background: url(../image/section1/icon-red1.png) no-repeat;
  background-size: 100%;
  cursor: pointer;
  position: absolute;
  top: 12px;
  left: 65px;
  z-index: 1;
}

.down-content .close {
  width: 38px;
  height: 38px;
  background: url("../image/pop/down-close.png") no-repeat;
  background-size: 100%;
  position: absolute;
  left: 470px;
  top: 30px;
  cursor: pointer;
}

/* 選角失敗提示彈窗 */
.pop-weapons-fail .pop-weapons-fail-bg {
  width: 592px;
  height: 463px;
  background: url(../images/pop-weapons-fail-bg.png) no-repeat;
  background-size: 100%;
  position: relative;
}

.pop-weapons-fail-bg .weapons-fail-btn {
  position: absolute;
  width: 272px;
  height: 52px;
  background: url(../images/weapons-fail-btn.png) no-repeat;
  background-size: 100%;
  top: 325px;
  left: 164px;
}

.pop-weapons-fail-bg .dia-close {
  top: -10px;
  left: 554px;
}

.pop-line-2 .pop-line-bg {
  width: 613px;
  height: 301px;
  background: url("../images/pop-line-bg-2.png") no-repeat;
  background-size: 100%;
}

.pop-line-2 .pop-line-2-share {
  position: absolute;
  top: 176px;
  left: 258px;
}

.pop-line-2 .dia-close {
  top: 340px;
  left: 270px;
}

/* 授权彈窗 */
.pop-authorize-fail .pop-authorize-fail-bg {
  position: relative;
  width: 633px;
  height: 704px;
  background: url(../image/pop/pop-authorize-fail-bg.png) no-repeat;
  background-size: 100%;
}

.pop-authorize-fail-bg .authorize-confirm-btn {
  position: absolute;
  width: 197px;
  height: 55px;
  background: url(../images/authorize-confirm-btn.png) no-repeat;
  background-size: 100%;
  top: 260px;
  left: 80px;
}

.pop-authorize-fail-bg .authorize-cancel-btn {
  position: absolute;
  width: 197px;
  height: 55px;
  background: url(../images/authorize-cancel-btn.png) no-repeat;
  background-size: 100%;
  top: 260px;
  left: 300px;
}

/* 活动规则弹窗 */
.pop-activity-rules .pop-rule-content {
  position: relative;
  width: 633px;
  height: 667px;
  background: url(../image/pop/pop-activity-rules-bg.png) no-repeat;
  background-size: 100%;
}

.pop-rule-content .pop-rule-detail {
  position: absolute;
  overflow: hidden;
  width: 600px;
  left: 54px;
  top: 155px;
  height: 590px;
}

.pop-rule-content .pop-rule-nei {
  position: absolute;
  width: 620px;
  height: 590px;
  overflow: scroll;
  overflow-x: hidden;
}

.pop-rule-content .pop-btn {
  width: 322px;
  height: 125px;
  background: url(../image/pop/btn-pop.png) no-repeat;
  background-size: 100%;
  position: absolute;
  left: 110px;
  bottom: 107px;
}

.pop-activity-rules .dia-close {
  bottom: -10px !important;
  left: 50%;
  transform: translateX(-50%);
}

/* 創建同盟彈窗 */
.pop-create-team-bg {
  position: relative;
  width: 604px;
  height: 605px;
  background: url(../images/pop-create-team-bg.png) no-repeat;
  background-size: 100%;
}

/* WebKit browsers */
.pop-team-create-form input::-webkit-input-placeholder {
  color: #494949;
}

/* Mozilla Firefox 4 to 18 */
.pop-team-create-form input:-moz-placeholder {
  color: #494949;
}

/* Mozilla Firefox 19+ */
.pop-team-create-form input::-moz-placeholder {
  color: #494949;
}

/* Internet Explorer 10+ */
.pop-team-create-form input:-ms-input-placeholder {
  color: #494949;
}

.pop-team-create-form .pop-team-create-input.pop-team-create-name {
  position: absolute;
  width: 420px;
  height: 45px;
  border: 1px solid #7c6145;
  font-size: 20px;
  color: #604e3b;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 0;
  top: 153px;
  left: 140px;
  text-align: center;
  background-color: #ad9677;
}

.pop-team-create-form .pop-team-create-input.pop-team-create-tenet {
  position: absolute;
  width: 389px;
  height: 45px;
  border: 1px solid #7c6145;
  font-size: 20px;
  color: #604e3b;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 0;
  top: 215px;
  left: 171px;
  text-align: center;
  background-color: #ad9677;
}

.pop-team-create-form .pop-team-create-input.pop-team-create-line {
  position: absolute;
  width: 356px;
  height: 45px;
  border: 1px solid #7c6145;
  font-size: 20px;
  color: #604e3b;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 0;
  top: 278px;
  left: 205px;
  text-align: center;
  background-color: #ad9677;
}

.pop-create-team-bg .pop-team-create-flag {
  position: relative;
  top: 350px;
  left: 140px;
}

.pop-create-team-bg .pop-team-create-flag li:nth-child(1) {
  width: 105px;
  height: 130px;
  background: url(../images/flag-1.png) no-repeat;
  background-size: 100%;
  position: absolute;
}

.pop-create-team-bg .pop-team-create-flag li:nth-child(1).active {
  width: 114px;
  height: 139px;
  background: url(../images/flag-1-active.png) no-repeat;
  background-size: 100%;
  position: absolute;
  left: -5px;
}

.pop-create-team-bg .pop-team-create-flag li:nth-child(2) {
  width: 105px;
  height: 130px;
  background: url(../images/flag-2.png) no-repeat;
  background-size: 100%;
  position: absolute;
  left: 80px;
}

.pop-create-team-bg .pop-team-create-flag li:nth-child(2).active {
  width: 114px;
  height: 139px;
  background: url(../images/flag-2-active.png) no-repeat;
  background-size: 100%;
  position: absolute;
  left: 76px;
}

.pop-create-team-bg .pop-team-create-flag li:nth-child(3) {
  width: 105px;
  height: 130px;
  background: url(../images/flag-3.png) no-repeat;
  background-size: 100%;
  position: absolute;
  left: 160px;
}

.pop-create-team-bg .pop-team-create-flag li:nth-child(3).active {
  width: 114px;
  height: 139px;
  background: url(../images/flag-3-active.png) no-repeat;
  background-size: 100%;
  position: absolute;
  left: 156px;
}

.pop-create-team-bg .pop-team-create-flag li:nth-child(4) {
  width: 105px;
  height: 130px;
  background: url(../images/flag-4.png) no-repeat;
  background-size: 100%;
  position: absolute;
  left: 240px;
}

.pop-create-team-bg .pop-team-create-flag li:nth-child(4).active {
  width: 114px;
  height: 139px;
  background: url(../images/flag-4-active.png) no-repeat;
  background-size: 100%;
  position: absolute;
  left: 236px;
}

.pop-create-team-bg .pop-team-create-flag li:nth-child(5) {
  width: 105px;
  height: 130px;
  background: url(../images/flag-5.png) no-repeat;
  background-size: 100%;
  position: absolute;
  left: 320px;
}

.pop-create-team-bg .pop-team-create-flag li:nth-child(5).active {
  width: 114px;
  height: 139px;
  background: url(../images/flag-5-active.png) no-repeat;
  background-size: 100%;
  position: absolute;
  left: 316px;
}

.pop-team-create-btn {
  position: absolute;
  width: 231px;
  height: 59px;
  top: 510px;
  left: 188px;
  background: url(../images/pop-team-create-btn.png) no-repeat;
  background-size: 100%;
}

.pop-create-team .dia-close {
  top: -10px;
  left: 600px;
}

/* 更换同盟弹窗 */
.pop-change-team .pop-change-team-bg {
  position: relative;
  width: 614px;
  height: 429px;
  background: url(../images/pop-change-team-bg.png) no-repeat;
  background-size: 100%;
}

.pop-team-confirm {
  position: absolute;
  width: 219px;
  height: 74px;
  background: url(../images/pop-team-confirm.png) no-repeat;
  top: 310px;
  left: 71px;
  background-size: 100%;
}

.pop-team-cancel {
  position: absolute;
  width: 219px;
  height: 74px;
  background: url(../images/pop-team-cancel.png) no-repeat;
  background-size: 100%;
  left: 320px;
  top: 310px;
}

.pop-change-team .dia-close {
  left: 600px;
  top: 0;
}

/* 加入同盟弹窗 */
.pop-join-team .pop-join-team-bg {
  position: relative;
  width: 611px;
  height: 412px;
  background: url(../images/pop-join-team-bg.png) no-repeat;
  background-size: 100%;
}

.pop-join-team .dia-close {
  left: 600px;
  top: 0;
}

/* 推薦彈窗 */
.pop-recommend .pop-recommend-content {
  width: 563px;
  height: 360px;
  background: url(../images/pop-recommend-bg.png) no-repeat;
  background-size: 100%;
  position: relative;
}

.pop-recommend-content .pop-recommend-text {
  position: absolute;
  color: #f83333;
  font-size: 38px;
  top: 80px;
  left: 214px;
}

.pop-recommend-content .pop-recommend-btn {
  position: absolute;
  top: 224px;
  left: 130px;
}

/* 弹窗注销 */
.logout-container .pop-logout {
  width: 656px;
  height: 262px;
  background: url(../images/logout-bg.png) no-repeat;
  background-size: 100%;
}

.pop-logout .logout-inner #logout {
  display: block;
  width: 337px;
  margin: auto;
  margin-top: 138px;
}

.logout-container .pop-logout .dia-close {
  top: 300px;
  left: 282px;
}

/* 缩放特效 */
.zoom {
  -webkit-animation: pulse 1s infinite;
  -o-animation: pulse 1s infinite;
  animation: pulse 1s infinite;
}

.zoom-reverse {
  -webkit-animation: pulse-reverse 1s infinite;
  -o-animation: pulse-reverse 1s infinite;
  animation: pulse-reverse 1s infinite;
}

/*  陣營展示彈窗  */

.pop-camp-recommend .dia-close {
  left: 632px;
  top: 169px;
}

/* fb点赞弹窗 */
.pop-fb-like-bg {
  position: relative;
  background: url("../images/warp-img/pop-up/pop-fb-bg.png") no-repeat;
  background-size: 100%;
  width: 708px;
  height: 725px;
  left: 6px;
}

.pop-fb-like .step-fb {
  position: absolute;
  top: 415px;
  left: 10px;
}

#icon-button::after {
  content: "";
  display: inline-block;
  width: 79px;
  height: 82px;
  background: url("../images/warp-img/pager2/fb-like-hand.png") no-repeat;
  background-size: 100%;
  cursor: pointer;
  position: absolute;
  top: 2px;
  /* left: 154px; */
  right: 8px;
  -webkit-animation: fblike 1s ease-in-out infinite;
  animation: fblike 1s ease-in-out infinite;
}

#icon-button::before {
  content: "";
  display: inline-block;
  width: 25px;
  height: 25px;
  background: url(../images/fb-like-red.png) no-repeat;
  background-size: 100%;
  cursor: pointer;
  position: absolute;
  top: -24px;
  left: 190px;
  z-index: 1;
}

.order-info .step .step-fb.no-after-before::after {
  content: none;
}

/* .pop-fb-like .step-fb::after {
  content: "";
  display: inline-block;
  width: 79px;
  height: 82px;
  background: url("../images/warp-img/pager2/fb-like-hand.png") no-repeat;
  background-size: 100%;
  cursor: pointer;
  position: absolute;
  top: 2px;
  right: 8px;
  -webkit-animation: fblike 1s ease-in-out infinite;
  animation: fblike 1s ease-in-out infinite;
} */
.order-info .step .step-fb.no-after-before::before {
  content: none;
}

/* .pop-fb-like .step-fb::before {
  content: "";
  display: inline-block;
  width: 25px;
  height: 25px;
  background: url(../images/fb-like-red.png) no-repeat;
  background-size: 100%;
  cursor: pointer;
  position: absolute;
  top: -24px;
  left: 190px;
  z-index: 1;
} */
.pop-fb-like .discuss-fb {
  position: relative;
  background: url("../images/warp-img/pop-up/discuss-img-fb.png") no-repeat;
  background-size: 100%;
  width: 299px;
  height: 83px;
  top: 585px;
  left: 80px;
}

.pop-fb-like .discuss-fb a {
  position: absolute;
  width: 281px;
  height: 76px;
}

.pop-fb-like .step-fb a .fb-like {
  margin: 0 90px;
  display: block;
  -webkit-transform: scale(2.143);
  -moz-transform: scale(2.143);
  -ms-transform: scale(2.143);
  -o-transform: scale(2.143);
  transform: scale(2.143);
  -webkit-transform-origin: 50% 50%;
  -moz-transform-origin: 50% 50%;
  -ms-transform-origin: 50% 50%;
  -o-transform-origin: 50% 50%;
  transform-origin: 50% 50%;
}

.pop-fb-like .dia-close {
  left: 650px;
  top: -33px;
}

/* .btn-login.zoom,
.order-storeH5 a.zoom {
  transform: none !important;
} */