.textEellipsis {
  display: block;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}
.clearF:after {
  display: block;
  content: '';
  width: 0;
  height: 0;
  clear: both;
}
.userSelect {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.totalIconCss {
  font-family: "iconfont" !important;
  font-size: 12px;
  font-style: normal;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.floatL {
  float: left;
}
.floatR {
  float: right;
}
.version-tips {
  width: 100%;
  min-width: 1024px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 99999;
}
.version-tips .version-mask {
  display: block;
  content: '';
  width: 100%;
  height: 100%;
  position: fixed;
  z-index: 9999;
  background: #000;
  filter: opacity(30);
  opacity: 0.3;
  -ms-opacity: 0.3;
  -moz-opacity: 0.3;
  -o-opacity: 0.3;
}
.version-tips .version-box {
  width: 100%;
  min-width: 1024px;
  max-width: 1440px;
  height: 700px;
  position: absolute;
  color: #fff;
  top: 0;
  right: 0;
  left: 0;
  margin: auto;
  bottom: 0;
  z-index: 99990;
}
.version-tips .tips-label {
  background: #b2201f;
  min-width: 1024px;
  max-width: 1440px;
  padding: 130px 0;
  font-size: 24px;
  line-height: 48px;
  text-align: center;
  z-index: 99991;
}
.version-tips .browser {
  height: 360px;
  background: #fff;
  position: relative;
  z-index: 99992;
  text-align: center;
}
.version-tips .browser:before {
  display: block;
  content: '';
  height: 0;
  width: 100%;
  box-shadow: 0 0 20px 4px #c4c4c4;
  position: relative;
  top: 10px;
}
.version-tips .browser .down-browser {
  display: inline-block;
  font-size: 14px;
  margin-top: -60px;
}
.version-tips .browser a {
  color: #595757;
  margin-left: 227px;
  float: left;
}
.version-tips .browser a:first-child {
  margin-left: 0;
}
.version-tips .browser a span {
  line-height: 24px;
  margin-left: 5px;
}
.version-tips .browser a:hover span {
  text-decoration: underline;
}
.version-tips .browser .ignore {
  line-height: 48px;
  color: #b2201f;
  text-align: center;
  margin: 130px auto 0;
  cursor: pointer;
  text-decoration: underline;
}
/* 定义旋转动画 */
@keyframes rotateInfinitely {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/* 创建箭头动画 */
@keyframes downrush {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
    /* 向上移动，模拟冲撞的上升阶段 */
  }
  75% {
    transform: translateY(-5px);
    /* 向上移动，模拟冲撞的最高点 */
  }
  100% {
    transform: translateY(0);
    /* 回到初始位置，完成一次循环 */
  }
}
/* 定义浮动动画 */
@keyframes float {
  0%,
  100% {
    transform: translateY(0);
    /* 初始和结束位置，不偏移 */
  }
  50% {
    transform: translateY(-20px);
    /* 中间位置，向上偏移20px */
  }
}
@keyframes touchEl {
  0% {
    transform: scale(1);
    margin-top: 0px;
  }
  50% {
    transform: scale(0.99);
    margin-top: 3px;
  }
  100% {
    transform: scale(1);
    margin-top: 3px;
  }
}
@keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fade-out {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes fadeOutUp {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}
@keyframes slide-in {
  0% {
    transform: translateY(-100%);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes driveInLeft {
  0% {
    opacity: 0;
    -webkit-animation-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);
    animation-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);
    -webkit-transform: translate3d(-400px, 0, 0);
    transform: translate3d(-400px, 0, 0);
  }
  30% {
    opacity: 1;
  }
  60% {
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    -webkit-transform: translate3d(30px, 0, 0);
    transform: translate3d(30px, 0, 0);
  }
  100% {
    -webkit-animation-timing-function: cubic-bezier(0.645, 0.045, 0.355, 1);
    animation-timing-function: cubic-bezier(0.645, 0.045, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes driveInRight {
  0% {
    opacity: 0;
    -webkit-animation-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);
    animation-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);
    -webkit-transform: translate3d(400px, 0, 0);
    transform: translate3d(400px, 0, 0);
  }
  30% {
    opacity: 1;
  }
  60% {
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    -webkit-transform: translate3d(-30px, 0, 0);
    transform: translate3d(-30px, 0, 0);
  }
  100% {
    -webkit-animation-timing-function: cubic-bezier(0.645, 0.045, 0.355, 1);
    animation-timing-function: cubic-bezier(0.645, 0.045, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes zoomIn {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}
@keyframes pulse {
  0% {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }
  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05);
  }
  to {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }
}
@keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
@keyframes slideInLeft {
  0% {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
@keyframes heartBeat {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  14% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
  }
  28% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  42% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
  }
  70% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes slideInRight {
  0% {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
@keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
@keyframes fadeOutLeft {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
@keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
@keyframes fadeOutRight {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}
@keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
@keyframes zoomOut {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  to {
    opacity: 0;
  }
}
body {
  font-size: 62.5%;
  overflow: hidden;
  font-family: Roboto;
}
body .panel {
  height: 100vh !important;
}
.flay-nav-el {
  height: 60px;
  background: #373D41;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 8;
  right: 0;
  margin: auto;
  display: none;
}
.flay-nav-el .flay-nav-wrap {
  width: 1316px;
  margin: 0 auto;
  height: inherit;
  display: flex;
  align-items: center;
}
.flay-nav-el .flay-nav-wrap .anchor {
  display: flex;
  height: inherit;
  align-items: center;
  font-size: 16px;
  color: #fff;
  width: 214px;
  justify-content: center;
  transition: all 0.3s ease-in;
}
.flay-nav-el .flay-nav-wrap .anchor:hover,
.flay-nav-el .flay-nav-wrap .anchor:focus {
  background: #1D1D1D;
  text-decoration: none;
}
.flay-nav-el .flay-nav-wrap .anchor.active {
  font-weight: 600;
  background: #1D1D1D;
}
#vfx-main .el-arrow {
  display: block;
  animation: downrush 1s linear infinite;
  background: url("../images/anniversary10vfx/arrow.png") no-repeat center;
  width: 16px;
  height: 45px;
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  transition: all 0.2s;
  cursor: pointer;
  z-index: 5;
}
.panel {
  background: url("../images/anniversary10vfx/panel-bg.png") no-repeat center;
  position: relative;
  background-size: 100% 100%;
  width: 100% !important;
}
.panel.home {
  background: linear-gradient(180deg, #0e9859 0%, #4ac6a2 50%, #c9ecef 100%);
  position: relative;
  height: 100vh !important;
  overflow: hidden;
}
.panel.home .header {
  position: absolute;
  right: 0;
  margin: auto;
  z-index: 9;
}
.panel.home .xgplayer-skin-default {
  width: 100% !important;
  height: 100% !important;
  padding-top: 128px;
  box-sizing: border-box;
}
.panel.home .xgplayer-skin-default video {
  object-fit: fill;
}
.panel.home #m-after {
  display: none;
}
.panel.home #m-after.v-show {
  z-index: 2;
  display: block;
}
@keyframes zoomAnimation {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}
.panel.home .jump-btn {
  display: none;
  position: absolute;
  left: 0;
  bottom: 74px;
  z-index: 7;
  right: 0;
  margin: auto;
  background: url('../images/anniversary10vfx/game-button.png') no-repeat center;
  width: 294px;
  height: 112px;
  animation: zoomAnimation 2s infinite linear;
}
.panel.home .time-box {
  display: flex;
  justify-content: center;
  position: absolute;
  top: 360px;
  left: -10px;
  right: 0;
  margin: auto;
  z-index: 6;
}
.panel.home .time-box .time-item {
  width: 66px;
  text-align: center;
  filter: blur(0px);
}
.panel.home .time-box .time-row-t {
  height: 42px;
  width: 44px;
  margin: auto;
  line-height: 42px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.8);
}
.panel.home .time-box span {
  font-size: 22px;
  font-weight: 700;
  color: #036638;
}
.panel.home .time-box .time-des {
  padding-top: 10px;
  font-size: 12px;
  color: #036638;
}
.panel.home .time-box .time-symbol {
  width: 10px;
  height: 42px;
  line-height: 42px;
  text-align: center;
  font-size: 22px;
  font-weight: 700;
  color: #036638;
}
.panel.second {
  display: flex;
  justify-content: center;
  align-items: center;
}
.panel.second .story-box-parent {
  width: 1308px;
  margin: 80px auto 0;
  position: relative;
}
.panel.second .story-box {
  background: url("../images/anniversary10vfx/story-bg.png") no-repeat center;
  width: 1316px;
  height: 658px;
  padding: 38px 0 38px 70px;
  box-sizing: border-box;
  position: relative;
}
.panel.second .story-box .pin-el {
  background: url("../images/anniversary10vfx/pin-pic.png") no-repeat center;
  width: 90px;
  height: 104px;
  position: absolute;
  top: -40px;
  right: 105px;
  z-index: 2;
}
.panel.second .story-title {
  position: relative;
  display: inline-block;
  opacity: 0;
  margin-bottom: 10px;
}
.panel.second .story-title .be {
  background: url("../images/anniversary10vfx/be.png") no-repeat center;
  width: 100px;
  height: 80px;
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
.panel.second .story-title .text {
  background: linear-gradient(0deg, rgba(255, 89, 12, 0.95) 0%, rgba(255, 157, 62, 0.95) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 36px;
  color: #FF721C;
  font-weight: 600;
  padding: 0 45px;
  height: 46px;
  display: block;
  margin-top: 24px;
}
.panel.second .story-title .af {
  background: url("../images/anniversary10vfx/af.png") no-repeat center;
  width: 70px;
  height: 72px;
  display: inline-block;
  position: absolute;
  top: 10px;
  right: 0;
  z-index: 1;
}
.panel.second .airplane {
  display: block;
  background: url("../images/anniversary10vfx/airplane.png") no-repeat center;
  width: 118px;
  height: 132px;
  position: absolute;
  top: -60px;
  left: -38px;
  z-index: 2;
  animation: fadeOutLeft 1s;
  opacity: 0;
}
.panel.second .par-box {
  padding-left: 14px;
  font-family: 'acFont';
}
@font-face {
  font-family: 'acFont';
  src: url('../images/anniversary10vfx/ac-fonts/COMIC_1.TTF');
}
.panel.second .paragraph {
  margin-top: 18px;
  font-size: 16px;
  color: #333333;
  line-height: 26px;
  width: 1090px;
}
.panel.second .paragraph .flag {
  color: #FF5B0E;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 25%, #85E2C9 100%);
  border-radius: 2px;
  padding: 0 8px;
  font-size: 20px;
  font-weight: 600;
}
.panel.second .technology {
  position: absolute;
  right: -234px;
  bottom: -86px;
  z-index: 1;
  background: url("../images/anniversary10vfx/technology.png") no-repeat center;
  width: 410px;
  height: 410px;
  animation: fadeOutRight 1s forwards;
  opacity: 0;
}
.panel.second.active .story-title {
  animation: fadeInDown 0.3s forwards;
}
.panel.second.active .airplane {
  animation: fadeInLeft 1s forwards;
}
.panel.second.active .technology {
  animation: fadeInRight 1s forwards;
}
.panel.third {
  display: flex;
  align-items: center;
  justify-content: center;
}
.panel.third .exclusive-box {
  background: url("../images/anniversary10vfx/exclusive2.png") no-repeat center;
  width: 1308px;
  height: 660px;
  position: relative;
  box-sizing: border-box;
  padding-left: 60px;
  padding-right: 20px;
}
.panel.third .exclusive-box .com-title {
  text-align: center;
  margin-bottom: 20px;
}
.panel.third .exclusive-box .com-title .earth-title {
  position: relative;
  display: inline-block;
  margin-top: 30px;
}
.panel.third .exclusive-box .com-title .earth-title .be {
  background: url("../images/anniversary10vfx/be.png") no-repeat center;
  width: 100px;
  height: 80px;
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
.panel.third .exclusive-box .com-title .earth-title .text {
  background: linear-gradient(50deg, rgba(255, 89, 12, 0.95) 0%, rgba(255, 157, 62, 0.95) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 36px;
  color: #FF721C;
  font-weight: 600;
  padding: 0 45px;
  height: 46px;
  display: block;
  margin-top: 24px;
}
.panel.third .exclusive-box .com-title .earth-title .af {
  background: url("../images/anniversary10vfx/af.png") no-repeat center;
  width: 70px;
  height: 72px;
  display: inline-block;
  position: absolute;
  top: 10px;
  right: 0;
  z-index: 1;
}
.panel.third .exclusive-box .com-title .earth-des {
  font-size: 16px;
  color: #111111;
  margin-top: 26px;
}
.panel.third .exclusive-box .com-title .earth-des .tag {
  font-weight: 500;
  font-size: 16px;
  color: #148A62;
  margin-top: 20px;
  cursor: pointer;
}
.panel.third .exclusive-box .com-title .earth-des .tag:hover {
  text-decoration: underline;
}
.panel.third .exclusive-box .gift-flag {
  background: url("../images/anniversary10vfx/gift-flag.png") no-repeat center;
  width: 204px;
  height: 166px;
  position: absolute;
  top: -80px;
  left: -80px;
  z-index: 1;
  opacity: 0;
  animation: fadeOutUp 1s;
}
.panel.third .exclusive-box .flag-icon {
  background: url('../images/anniversary10vfx/flag-icon.png') no-repeat center;
  width: 174px;
  height: 178px;
  position: absolute;
  right: -124px;
  bottom: -100px;
  opacity: 0;
  animation: fadeOutUp 1s;
}
.panel.third .exclusive-box .coupon-box .coupon-item {
  background: url('../images/anniversary10vfx/coupon-bg.png') no-repeat center;
  width: 240px;
  height: 166px;
  display: inline-block;
  cursor: pointer;
  margin-top: 8px;
  margin-left: 2px;
  transition: all 0.3s ease;
}
.panel.third .exclusive-box .coupon-box .coupon-item.v1 {
  background: url('../images/anniversary10vfx/coupon-bg-v1.png') no-repeat center;
}
.panel.third .exclusive-box .coupon-box .coupon-item.v1 .coupon-item-inside .cou-l {
  color: #000000;
}
.panel.third .exclusive-box .coupon-box .coupon-item.v1 .coupon-item-inside .s-use {
  opacity: 1;
  overflow: visible;
  padding: 0;
}
.panel.third .exclusive-box .coupon-box .coupon-item:first-child {
  margin-top: 0;
}
.panel.third .exclusive-box .coupon-box .coupon-item:hover {
  transform: translateY(-10px);
}
.panel.third .exclusive-box .coupon-box .coupon-item.received .s-use {
  opacity: 1 !important;
  overflow: visible !important;
}
.panel.third .exclusive-box .coupon-box .coupon-item .coupon-item-inside {
  width: 100%;
  height: 100%;
  overflow: hidden;
  margin: auto;
  position: relative;
  text-align: center;
}
.panel.third .exclusive-box .coupon-box .coupon-item .coupon-item-inside .s-use {
  position: absolute;
  left: 10px;
  top: 7px;
  height: 24px;
  min-width: 58px;
  line-height: 24px;
  background: linear-gradient(90deg, #FF5B0E 0%, #FF9A3B 100%);
  font-size: 14px;
  color: #FFFFFF;
  border-radius: 6px 0 10px 0;
  padding: 0 6px;
  opacity: 0;
  overflow: hidden;
}
.panel.third .exclusive-box .coupon-box .coupon-item .coupon-item-inside .coupon-title {
  font-size: 15px;
  color: #111111;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  top: 18px;
}
.panel.third .exclusive-box .coupon-box .coupon-item .coupon-item-inside .cou-l {
  color: #148A62;
  font-weight: 700;
}
.panel.third .exclusive-box .coupon-box .coupon-item .coupon-item-inside .symbol {
  font-size: 22px;
}
.panel.third .exclusive-box .coupon-box .coupon-item .coupon-item-inside .num-ber {
  font-size: 48px;
}
.panel.third .exclusive-box .coupon-box .coupon-item .coupon-item-inside .cou-r {
  color: #333333;
  font-size: 14px;
}
.panel.third .exclusive-box .coupon-box .coupon-item .coupon-item-inside .coupon-des {
  font-size: 12px;
  color: #FFFFFF;
  line-height: 12px;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 10px;
  min-height: 28px;
}
.panel.third .exclusive-box .coupon-btn {
  text-align: center;
}
.panel.third .exclusive-box .coupon-btn .set-btn {
  display: inline-block;
  font-weight: 700;
  font-size: 20px;
  color: #fff;
  padding: 0 36px;
  margin-top: 36px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  background: url('../images/anniversary10vfx/set-btn.png') no-repeat center;
  width: 230px;
  height: 54px;
  line-height: 48px;
  text-align: center;
}
.panel.third .exclusive-box .coupon-btn .set-btn:hover {
  transform: scale(0.95);
}
.panel.third .exclusive-box .coupon-btn .is-end {
  background: url('../images/anniversary10vfx/is-end.png') no-repeat center;
  color: #FF5B0E;
}
.panel.third .exclusive-box .coupon-btn .is-over {
  background: url('../images/anniversary10vfx/is-over.png') no-repeat center;
  cursor: no-drop;
  color: #fff;
}
.panel.third .exclusive-box .coupon-btn .is-over:hover {
  transform: scale(1);
}
.panel.third.active .gift-flag {
  animation: fadeInDown 1s forwards;
}
.panel.third.active .flag-icon {
  animation: fadeInDown 1s forwards;
}
.panel.four {
  display: flex;
  justify-content: center;
  align-items: center;
}
.panel.four .xgplayer-skin-default video {
  object-fit: fill;
}
.panel.four .robot-wrap {
  background: url("../images/anniversary10vfx/four-warp-bg.png") no-repeat center;
  width: 1306px;
  height: 680px;
  margin: 0 auto 0;
  position: relative;
  display: flex;
  justify-content: space-between;
  padding: 34px 50px 50px 68px;
  box-sizing: border-box;
}
.panel.four .robot-wrap .gift-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  overflow: hidden;
  height: 620px;
  margin-top: -20px;
}
.panel.four .robot-wrap .gift-box {
  width: 390px;
  display: flex;
  align-items: center;
  flex-direction: column;
  position: relative;
  opacity: 0;
  animation: fadeOutLeft 1s 1s forwards;
}
.panel.four .robot-wrap .gift-box .flag-icon {
  display: block;
  position: absolute;
  right: -182px;
  bottom: -62px;
  z-index: 2;
  background: url("../images/anniversary10vfx/flag-icon.png") no-repeat center;
  width: 174px;
  height: 178px;
}
.panel.four .robot-wrap .gift-box .prize-coupon {
  position: absolute;
  top: 10px;
  left: 50%;
  z-index: 2;
  right: 0;
  margin: auto;
  bottom: 0;
}
.panel.four .robot-wrap .gift-box .gift-title {
  position: relative;
}
.panel.four .robot-wrap .gift-box .gift-title .be {
  background: url("../images/anniversary10vfx/be.png") no-repeat center;
  width: 100px;
  height: 80px;
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
.panel.four .robot-wrap .gift-box .gift-title .text {
  background: linear-gradient(0deg, rgba(255, 89, 12, 0.95) 0%, rgba(255, 157, 62, 0.95) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 36px;
  color: #FF721C;
  font-weight: 600;
  padding: 0 45px;
  height: 46px;
  display: block;
  margin-top: 24px;
}
.panel.four .robot-wrap .gift-box .gift-title .af {
  background: url("../images/anniversary10vfx/af.png") no-repeat center;
  width: 70px;
  height: 72px;
  display: inline-block;
  position: absolute;
  top: 10px;
  right: 0;
  z-index: 1;
}
.panel.four .robot-wrap .gift-box .gift-text {
  color: #111111;
  font-size: 16px;
  line-height: 22px;
  text-align: left;
  margin-top: 24px;
  font-family: Roboto;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  max-height: 90px;
  min-height: 88px;
  width: 348px;
}
.panel.four .robot-wrap .gift-box .prize {
  position: relative;
  width: 320px;
  height: 320px;
}
.panel.four .robot-wrap .gift-box .prize.win:before {
  animation: rotateInfinitely 30s linear infinite;
}
.panel.four .robot-wrap .gift-box .prize:before {
  display: block;
  content: '';
  background: url("../images/anniversary10vfx/light.png") no-repeat center;
  width: 320px;
  height: 320px;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 1;
  animation: rotate 20s linear infinite;
}
.panel.four .robot-wrap .gift-box .prize .view-mask {
  width: 270px;
  height: 240px;
  overflow: hidden;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 2;
  top: 0;
  right: 0;
  margin: auto;
}
.panel.four .robot-wrap .gift-box .game-goods-ul {
  transition-duration: 0ms;
  transform: translate(0px, 0px) translateZ(0px);
  position: absolute;
}
.panel.four .robot-wrap .gift-box .prize-row {
  position: relative;
  z-index: 3;
}
.panel.four .robot-wrap .gift-box .prize-row.luck .point-icon {
  display: none;
}
.panel.four .robot-wrap .gift-box .prize-row.luck .prize-btn {
  cursor: not-allowed;
}
.panel.four .robot-wrap .gift-box .prize-row .prize-btn {
  background: url("../images/anniversary10vfx/prize-btn.png") no-repeat center;
  width: 210px;
  height: 54px;
  font-size: 20px;
  font-weight: 500;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
}
.panel.four .robot-wrap .gift-box .prize-row .prize-btn:hover {
  text-decoration: none;
}
.panel.four .robot-wrap .gift-box .prize-row .prize-btn:focus {
  text-decoration: none;
  transform: translateY(1px);
}
.panel.four .robot-wrap .gift-box .prize-row .prize-btn.active {
  background: url("../images/anniversary10vfx/use-btn.png") no-repeat center;
  width: 211px;
  height: 53px;
  cursor: pointer;
}
.panel.four .robot-wrap .gift-box .prize-row .prize-btn.active:hover {
  cursor: pointer;
}
.panel.four .robot-wrap .gift-box .prize-row .prize-btn.is-over {
  cursor: not-allowed;
}
.panel.four .robot-wrap .gift-box .prize-row .point-icon {
  background: url("../images/anniversary10vfx/point-icon.png") no-repeat center;
  width: 64px;
  height: 54px;
  display: block;
  position: absolute;
  top: 30px;
  right: -20px;
  z-index: 1;
  animation: touchEl 0.6s forwards infinite;
}
.panel.four .robot-info {
  position: relative;
  width: 782px;
}
.panel.four .robot-info .robot-title {
  font-size: 20px;
  font-weight: 600;
  color: #000;
  text-align: center;
  margin-bottom: 16px;
}
.panel.four .robot-info .robot-title .flag {
  font-size: 22px;
  color: #FF5B0E;
}
.panel.four .robot-info .robot-section {
  position: absolute;
  right: -236px;
  bottom: -2px;
  z-index: 1;
  animation: fadeOutUp 1s forwards;
  opacity: 0;
}
.panel.four .robot-info .robot-section .robot-el {
  position: relative;
}
.panel.four .robot-info .robot-section .robot-el:after {
  display: block;
  content: '';
  background: url("../images/anniversary10vfx/bottom-icon.png") no-repeat center;
  width: 158px;
  height: 126px;
  position: absolute;
  left: 96px;
  bottom: -104px;
  z-index: 1;
}
.panel.four .robot-info .robot-section .robot-p {
  background: url("../images/anniversary10vfx/robot-p.png") no-repeat center;
  width: 268px;
  height: 260px;
  margin-top: 22px;
}
.panel.four .robot-info .robot-video {
  background: url("../images/anniversary10vfx/robot-video-bg.png") no-repeat center;
  width: 782px;
  height: 448px;
  position: relative;
  padding: 34px 20px 22px 30px;
  box-sizing: border-box;
  z-index: 3;
  opacity: 0;
  animation: zoomOut 1s;
}
.panel.four .robot-info .robot-video .view-robot {
  border: 2px solid #F79A0D;
}
.panel.four .robot-info .robot-video #robot-video {
  height: 392px !important;
  padding-top: 0 !important;
}
.panel.four .robot-info .robot-video .xgplayer-skin-default .xgplayer-start {
  background: #fff;
}
.panel.four .robot-info .robot-video .xgplayer-skin-default .xgplayer-start div svg {
  fill: #FF590C;
}
.panel.four .robot-info .line-mask {
  height: 120px;
  overflow: hidden;
  margin-top: 18px;
  background: transparent;
  margin-left: 10px;
  width: 782px;
  padding-right: 2px;
  box-sizing: border-box;
}
.panel.four .robot-info .line-mask .swiper-container {
  height: inherit;
}
.panel.four .robot-info .line-mask dt {
  font-size: 18px;
  color: #000;
  font-weight: 600;
  display: inline-block;
}
.panel.four .robot-info .line-mask dt:after {
  content: '';
  display: inline-block;
  width: 14px;
  height: 2px;
  background: #000;
  vertical-align: middle;
  margin-top: -2px;
}
.panel.four .robot-info .line-mask dd {
  font-size: 14px;
  line-height: 22px;
  font-weight: normal;
  color: #000;
  margin-top: 10px;
}
.panel.four.active .robot-section {
  animation: fadeInUp 1s forwards;
}
.panel.four.active .robot-el .robot-p {
  animation: float 2.6s ease-in-out infinite;
}
.panel.four.active .gift-box {
  animation: fadeInLeft 0.5s 0.5s forwards;
}
.panel.four.active .robot-video {
  animation: zoomIn 0.5s forwards, fade-in 1s forwards;
}
.panel.five {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: url("../images/anniversary10vfx/five-bg.png") no-repeat center;
  background-size: 100% 100%;
}
.panel.five .big-btn {
  width: 180px;
  height: 50px;
  background-color: #f66800;
  border-radius: 25px;
  position: absolute;
  top: 0px;
  right: 30px;
  z-index: 12;
  opacity: 0;
  transition: all 0.1s linear;
  animation: fadeOutRight 1s forwards;
  display: flex;
  align-items: center;
  justify-content: center;
}
.panel.five .big-btn:hover {
  text-decoration: none;
  background-color: #e76608;
}
.panel.five .big-btn:active,
.panel.five .big-btn:focus,
.panel.five .big-btn:visited {
  text-decoration: none;
}
.panel.five .big-btn .scale-el {
  display: block;
  background: url("../images/anniversary10vfx/scale-icon.png?v=20240625") no-repeat center;
  width: 20px;
  height: 20px;
  margin-right: 8px;
}
.panel.five .big-btn .text {
  color: #ffffff;
  font-size: 16px;
  text-decoration: none;
}
.panel.five .big-btn .t2 {
  opacity: 0;
  visibility: hidden;
  display: none;
}
.panel.five .earth-title-row {
  position: absolute;
  top: 20px;
  left: 0;
  z-index: 1;
  right: 0;
  margin: auto;
  display: flex;
  justify-content: center;
  opacity: 0;
}
.panel.five .earth-scale-tips {
  text-align: center;
  position: absolute;
  top: 150px;
  left: 0;
  z-index: 0;
  right: 0;
  margin: auto;
  opacity: 0;
  font-size: 16px;
}
.panel.five .earth-scale-tips .rules {
  font-weight: 500;
  font-size: 16px;
  color: #FF5B0E;
  text-decoration-line: underline;
  cursor: pointer;
}
.panel.five .earth-tips {
  position: absolute;
  left: 0;
  bottom: 90px;
  z-index: 0;
  right: 0;
  margin: auto;
  font-size: 14px;
  color: #333;
  text-align: center;
  opacity: 0;
}
.panel.five .earth-tips .tag {
  color: #C80000;
}
.panel.five .earth-title {
  position: relative;
  display: inline-block;
  margin-top: 44px;
}
.panel.five .earth-title .be {
  background: url("../images/anniversary10vfx/be.png") no-repeat center;
  width: 100px;
  height: 80px;
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
.panel.five .earth-title .text {
  background: linear-gradient(50deg, rgba(255, 89, 12, 0.95) 0%, rgba(255, 157, 62, 0.95) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 36px;
  color: #FF721C;
  font-weight: 600;
  padding: 0 45px;
  height: 46px;
  display: block;
  margin-top: 24px;
}
.panel.five .earth-title .af {
  background: url("../images/anniversary10vfx/af.png") no-repeat center;
  width: 70px;
  height: 72px;
  display: inline-block;
  position: absolute;
  top: 10px;
  right: 0;
  z-index: 1;
}
.panel.five #myearth {
  width: 100%;
  height: 100%;
  overflow: hidden;
  margin: 24px auto 0;
  transition: all 0.3s ease-in;
}
.panel.five #myearth.mini {
  margin-top: 80px;
  width: 60%;
  height: 64%;
  overflow: hidden;
  transition: all 0.3s ease-in;
}
.panel.five .earth-rules-tips {
  width: 1280px;
  height: 34px;
  background: rgba(255, 249, 234, 0.8);
  border-radius: 6px;
  border: 1px solid #FF821D;
  position: absolute;
  top: 80px;
  left: 0;
  z-index: 2;
  right: 0;
  margin: auto;
  font-size: 16px;
  color: #111;
  padding: 0 12px;
  display: flex;
  align-items: center;
  opacity: 0;
  animation: fadeOutUp 1s forwards;
}
.panel.five .earth-rules-tips:before {
  display: block;
  content: '';
  background: url("../images/anniversary10vfx/tips-img.png") no-repeat center;
  width: 20px;
  height: 22px;
  margin-right: 8px;
}
.panel.five .earth-rules-tips .rules {
  text-decoration: underline;
  color: #FF821D;
  margin-left: 10px;
  cursor: pointer;
}
.panel.five .earth-rules-tips .close {
  display: block;
  width: 34px;
  height: 34px;
  text-align: center;
  line-height: 34px;
  cursor: pointer;
  transition: all 0.3s linear;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
  background: url("../images/anniversary10vfx/close-flag.png") no-repeat center;
}
.panel.five .earth-rules-tips .close:hover {
  transform: rotate(180deg);
}
.panel.five .earth-rules-tips:before {
  display: inline-block;
  background: url("../images/anniversary10vfx/tips-icon.png") no-repeat center;
  width: 20px;
  height: 22px;
}
.panel.five.active .earth-rules-tips {
  animation: fadeInDown 1s forwards;
}
.panel.five.active .big-btn {
  top: 90px;
  animation: fadeInRight 1s 0.6s forwards;
}
.panel.five.active.mini .scale-el {
  background: url("../images/anniversary10vfx/scale-icon1.png?v=20240625") no-repeat center;
  width: 20px;
  height: 20px;
}
.panel.five.active.mini .t1 {
  opacity: 0;
  visibility: hidden;
  display: none;
}
.panel.five.active.mini .t2 {
  opacity: 1;
  visibility: visible;
  display: block;
}
.panel.five.active.mini .earth-rules-tips {
  opacity: 0;
  visibility: hidden;
}
.panel.five.active.mini .earth-title-row {
  animation: fadeInDown 1s forwards;
}
.panel.five.active.mini .earth-scale-tips {
  animation: fadeInDown 1s forwards;
}
.panel.five.active.mini .earth-tips {
  animation: fadeInUp 1s forwards;
}
.panel.five.active.mini .el-arrow {
  z-index: 5;
}
.panel.six {
  display: flex;
  align-items: center;
  justify-content: center;
}
.panel.six .back-up {
  position: relative;
  display: inline-block;
}
.panel.six .back-up:active,
.panel.six .back-up:focus {
  text-decoration: none;
}
.panel.six .back-up .text {
  width: 260px;
  height: 48px;
  background: linear-gradient(90deg, #FF6C00 0%, #FFA70D 97%);
  border-radius: 24px;
  color: #fff;
  font-size: 18px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
  font-weight: 500;
}
.panel.six .back-up .text:before {
  background: url('../images/anniversary10vfx/home-icon.png') no-repeat center;
  width: 22px;
  height: 22px;
  content: '';
  display: inline-block;
  margin-right: 4px;
  vertical-align: middle;
}
.panel.six .back-up:before {
  display: block;
  content: '';
  width: 100%;
  height: 48px;
  background: #FFC28C;
  border-radius: 24px;
  position: absolute;
  left: 0;
  bottom: -6px;
  z-index: 1;
}
.panel.six .back-up:hover {
  text-decoration: none;
}
.panel.six .earth-wrap {
  background: url("../images/anniversary10vfx/exclusive2-new.png") no-repeat center;
  width: 1306px;
  height: 660px;
  margin-top: 100px;
  margin-bottom: 36px;
  position: relative;
  padding: 0 10px 30px 60px;
  box-sizing: border-box;
  text-align: center;
}
.panel.six .earth-wrap:before {
  position: absolute;
  left: -60px;
  top: -74px;
  background: url('../images/anniversary10vfx/charity-sale-icon.png') no-repeat center;
  width: 153px;
  height: 150px;
  content: '';
  display: block;
  animation: fadeOutUp 1s forwards;
  opacity: 0;
}
.panel.six .earth-wrap .earth-title {
  position: relative;
  display: inline-block;
  margin-top: 24px;
}
.panel.six .earth-wrap .earth-title .be {
  background: url("../images/anniversary10vfx/be.png") no-repeat center;
  width: 100px;
  height: 80px;
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
.panel.six .earth-wrap .earth-title .text {
  background: linear-gradient(50deg, rgba(255, 89, 12, 0.95) 0%, rgba(255, 157, 62, 0.95) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 36px;
  color: #FF721C;
  font-weight: 600;
  padding: 0 45px;
  height: 46px;
  display: block;
  margin-top: 24px;
}
.panel.six .earth-wrap .earth-title .af {
  background: url("../images/anniversary10vfx/af.png") no-repeat center;
  width: 70px;
  height: 72px;
  display: inline-block;
  position: absolute;
  top: 10px;
  right: 0;
  z-index: 1;
}
.panel.six .earth-wrap .jump-btn {
  margin-top: 10px;
}
.panel.six .earth-wrap .jump-btn .more-jump {
  display: inline-block;
  font-weight: 500;
  font-size: 16px;
  color: #111111;
  text-decoration: none;
}
.panel.six .earth-wrap .jump-btn .more-jump::after {
  background: url('../images/anniversary10vfx/right-r-icon.png') no-repeat center;
  width: 10px;
  height: 8px;
  content: '';
  display: inline-block;
  margin-left: 2px;
}
.panel.six .earth-wrap .jump-btn .more-jump:hover {
  color: #148a62;
}
.panel.six .earth-wrap .jump-btn .more-jump:hover::after {
  background: url('../images/anniversary10vfx/right-r-icon-hover.png') no-repeat center;
}
.panel.six .earth-wrap .rules-box {
  display: flex;
  margin-top: 22px;
  overflow: hidden;
}
.panel.six .earth-wrap .rules-box .rules-l {
  margin-top: 4px;
  width: 370px;
  min-width: 370px;
  margin-right: 10px;
  text-align: left;
  overflow: hidden;
}
.panel.six .earth-wrap .rules-box .rules-l .hint-des {
  font-weight: 600;
  color: #000000;
}
.panel.six .earth-wrap .rules-box .rules-l .rules-des {
  font-size: 14px;
  color: #333333;
  line-height: 26px;
}
.panel.six .earth-wrap .rules-box .together-el {
  margin-top: 18px;
}
.panel.six .earth-wrap .rules-box .split-line {
  background: url("../images/anniversary10vfx/split-bg.png") no-repeat center;
  width: 35px;
  min-width: 35px;
  height: 480px;
  display: block;
}
.panel.six .earth-wrap .rules-box .charity-r .charity-sale {
  display: flex;
  flex-wrap: wrap;
}
.panel.six .earth-wrap .rules-box .charity-r .charity-sale .sale-item {
  width: 272px;
  text-align: center;
  margin-bottom: 30px;
}
.panel.six .earth-wrap .rules-box .charity-r .charity-sale .sale-item:nth-child(3) {
  margin-right: 0;
}
.panel.six .earth-wrap .rules-box .charity-r .charity-sale .sale-item:nth-child(6) {
  margin-right: 0;
}
.panel.six .earth-wrap .rules-box .charity-r .charity-sale .sale-pic {
  width: 126px;
  height: 132px;
  display: inline-block;
  position: relative;
  /* 隐藏画中画按钮 */
}
.panel.six .earth-wrap .rules-box .charity-r .charity-sale .sale-pic:after {
  display: block;
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  margin: auto;
  z-index: 2;
  pointer-events: none;
}
.panel.six .earth-wrap .rules-box .charity-r .charity-sale .sale-pic video {
  object-fit: cover;
  position: relative;
  z-index: 1;
}
.panel.six .earth-wrap .rules-box .charity-r .charity-sale .sale-pic video::-webkit-media-controls-pip-button {
  display: none !important;
}
.panel.six .earth-wrap .rules-box .charity-r .charity-sale .price-des {
  font-size: 14px;
  font-weight: 500;
  color: #2C2C2C;
  margin-top: 14px;
}
.panel.six .earth-wrap .rules-box .charity-r .charity-sale .price-num {
  font-size: 14px;
  color: #F06626;
  font-weight: 700;
  margin-top: 4px;
}
.panel.six .earth-wrap .rules-box .charity-r .charity-sale .sum-price {
  font-size: 20px;
}
.panel.six .earth-wrap .rules-box .charity-r .charity-sale .beans-des {
  font-weight: 500;
}
.panel.six .earth-wrap .rules-box .charity-r .charity-sale .bug-now {
  font-weight: 500;
  color: #000000;
  font-size: 13px;
  height: 28px;
  line-height: 28px;
  border-radius: 16px;
  border: 1px solid #111111;
  display: inline-block;
  padding: 0 17px;
  min-width: 100px;
  box-sizing: border-box;
  cursor: pointer;
  margin-top: 20px;
  transition: all 0.3s ease-in-out;
  text-decoration: none;
}
.panel.six .earth-wrap .rules-box .charity-r .charity-sale .bug-now:hover {
  color: #FFFFFF;
  background: #000;
}
.panel.six.active .earth-wrap:before {
  animation: fadeInDown 1s forwards;
}
.panel.seven {
  display: flex;
  justify-content: center;
}
.panel.seven .earth-wrap {
  background: url("../images/anniversary10vfx/exclusive3.png") no-repeat center;
  width: 1306px;
  height: 680px;
  margin-top: 150px;
  margin-bottom: 36px;
  position: relative;
  padding: 36px 36px 36px 67px;
  box-sizing: border-box;
}
.panel.seven .earth-wrap:before {
  position: absolute;
  left: -15px;
  top: -57px;
  background: url('../images/anniversary10vfx/seven-gift-icon.png') no-repeat center;
  width: 124px;
  height: 122px;
  content: '';
  display: inline-block;
}
.panel.seven .earth-wrap .guess-tips {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.panel.seven .earth-wrap .guess-tips .tips-text {
  color: #000000;
  font-weight: bold;
  font-size: 22px;
}
.panel.seven .earth-wrap .guess-tips .rules-des {
  color: #148A62;
  font-weight: 500;
  border-bottom: 1px solid #148A62;
  display: inline-block;
  margin-left: 8px;
  cursor: pointer;
}
.panel.seven .earth-wrap .guess-tips .prize-btn {
  padding: 0 20px;
  display: inline-block;
  height: 40px;
  line-height: 40px;
  background: #148A62;
  border: 1px solid #FFFFFF;
  border-radius: 20px;
  font-size: 16px;
  color: #ffffff;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
}
.panel.seven .earth-wrap .guess-tips .prize-btn:hover {
  background: #0b9e6c;
}
.panel.seven .earth-wrap .guess-tips .prize-btn:hover:after {
  transform: translateX(5px);
}
.panel.seven .earth-wrap .guess-tips .prize-btn:after {
  display: inline-block;
  content: '';
  background: url("../images/anniversary10vfx/prize-arrow.png") no-repeat center;
  width: 16px;
  height: 12px;
  margin-left: 8px;
  transition: all 0.3s;
}
.panel.seven .earth-wrap .count-row {
  margin-top: 4px;
  display: flex;
  align-items: center;
  font-size: 16px;
  font-weight: 400;
  color: #666666;
}
.panel.seven .earth-wrap .count-row .amount {
  display: inline-block;
  height: 28px;
  line-height: 28px;
  text-align: center;
  padding: 0 7px;
  font-weight: 500;
  font-size: 20px;
  color: #ffffff;
  margin: 0 4px;
  background: #FF7A0E;
  border-radius: 4px;
}
.panel.seven .earth-wrap .luck-box {
  display: flex;
}
.panel.seven .earth-wrap .the-luck-box {
  width: 630px;
  position: relative;
  height: 530px;
}
@keyframes upAndDown {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-18px);
  }
  100% {
    transform: translateY(0);
  }
}
.panel.seven .earth-wrap .the-luck-box .each {
  position: relative;
  width: 148px;
  cursor: pointer;
}
.panel.seven .earth-wrap .the-luck-box .each .gift {
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 136px;
  height: 110px;
  position: absolute;
  top: -30px;
  left: -4px;
  right: 0;
  margin: auto;
}
.panel.seven .earth-wrap .the-luck-box .each.gift1 {
  position: absolute;
  top: 60px;
  left: 10px;
  z-index: 1;
}
.panel.seven .earth-wrap .the-luck-box .each.gift1 .gift {
  animation: upAndDown 3.2s infinite linear;
}
.panel.seven .earth-wrap .the-luck-box .each.gift2 {
  position: absolute;
  top: 60px;
  left: 248px;
  z-index: 1;
}
.panel.seven .earth-wrap .the-luck-box .each.gift2 .gift {
  animation: upAndDown 3.2s infinite 650ms linear;
}
.panel.seven .earth-wrap .the-luck-box .each.gift3 {
  position: absolute;
  top: 60px;
  right: 0;
  z-index: 1;
}
.panel.seven .earth-wrap .the-luck-box .each.gift3 .gift {
  animation: upAndDown 3.2s infinite 800ms linear;
}
.panel.seven .earth-wrap .the-luck-box .each.gift4 {
  position: absolute;
  top: 235px;
  left: 10px;
  z-index: 1;
}
.panel.seven .earth-wrap .the-luck-box .each.gift4 .gift {
  animation: upAndDown 3.2s infinite 150ms linear;
}
.panel.seven .earth-wrap .the-luck-box .each.gift5 {
  position: absolute;
  top: 235px;
  left: 248px;
  z-index: 1;
}
.panel.seven .earth-wrap .the-luck-box .each.gift5 .gift {
  animation: upAndDown 3.2s infinite 260ms linear;
}
.panel.seven .earth-wrap .the-luck-box .each.gift6 {
  position: absolute;
  top: 235px;
  right: 0;
  z-index: 1;
}
.panel.seven .earth-wrap .the-luck-box .each.gift6 .gift {
  animation: upAndDown 3.2s infinite 400ms linear;
}
.panel.seven .earth-wrap .the-luck-box .each.gift7 {
  position: absolute;
  bottom: 0;
  left: 10px;
  z-index: 1;
}
.panel.seven .earth-wrap .the-luck-box .each.gift7 .gift {
  animation: upAndDown 3.2s infinite 650ms linear;
}
.panel.seven .earth-wrap .the-luck-box .each.gift8 {
  position: absolute;
  bottom: 0;
  left: 248px;
  z-index: 1;
}
.panel.seven .earth-wrap .the-luck-box .each.gift8 .gift {
  animation: upAndDown 3.2s infinite 700ms linear;
}
.panel.seven .earth-wrap .the-luck-box .each.gift9 {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 1;
}
.panel.seven .earth-wrap .the-luck-box .each.gift9 .gift {
  animation: upAndDown 3.2s infinite 700ms linear;
}
.panel.seven .earth-wrap .the-luck-box .each:after {
  display: block;
  content: '';
  background: url("../images/anniversary10vfx/pedestal-bg.png") no-repeat center;
  width: 156px;
  height: 110px;
}
.panel.seven .earth-wrap .split-line {
  background: url('../images/anniversary10vfx/split-bg2.png') no-repeat center;
  width: 36px;
  height: 520px;
  display: inline-block;
  margin: 0 50px;
}
.panel.seven .earth-wrap .win-r {
  margin-top: -10px;
}
.panel.seven .earth-wrap .win-r .win-list-box .win-title {
  font-size: 18px;
  font-weight: bold;
  color: #000000;
  padding-left: 24px;
  position: relative;
}
.panel.seven .earth-wrap .win-r .win-list-box .win-title:before {
  position: absolute;
  left: 0;
  top: 3px;
  background: url('../images/anniversary10vfx/horn-icon.png') no-repeat center;
  width: 20px;
  height: 16px;
  content: '';
  display: inline-block;
}
.panel.seven .earth-wrap .win-r .win-list-box .win-bg {
  background: url('../images/anniversary10vfx/list-win-bg.png') no-repeat center;
  width: 436px;
  height: 254px;
  content: '';
  display: inline-block;
  margin-top: 22px;
  box-sizing: border-box;
  padding: 38px 34px 34px 34px;
}
.panel.seven .earth-wrap .win-r .win-list-box .win-bg .swiper-container {
  height: 186px;
}
.panel.seven .earth-wrap .win-r .win-list-box .win-bg .swiper-wrapper {
  flex-direction: column;
}
.panel.seven .earth-wrap .win-r .win-list-box .win-bg .win-region {
  width: 100%;
  height: 100%;
}
.panel.seven .earth-wrap .win-r .win-list-box .win-bg .list-des {
  display: block;
  font-weight: 500;
  font-size: 13px;
  color: #0E0E0E;
  position: relative;
  padding-left: 14px;
  box-sizing: border-box;
}
.panel.seven .earth-wrap .win-r .win-list-box .win-bg .list-des:before {
  width: 4px;
  height: 4px;
  background: #0E0E0E;
  content: '';
  display: inline-block;
  margin-right: 4px;
  margin-bottom: 2px;
  position: absolute;
  top: 50%;
  left: 0;
  z-index: 1;
  margin-top: -6px;
}
.panel.seven .earth-wrap .win-r .prize-view-box {
  margin-top: 26px;
}
.panel.seven .earth-wrap .win-r .prize-view-box .win-title {
  font-size: 18px;
  font-weight: bold;
  color: #000000;
  padding-left: 24px;
  position: relative;
}
.panel.seven .earth-wrap .win-r .prize-view-box .win-title:before {
  position: absolute;
  left: 0;
  top: 1px;
  background: url('../images/anniversary10vfx/prize-show-icon.png') no-repeat center;
  width: 16px;
  height: 18px;
  content: '';
  display: inline-block;
}
.panel.seven .earth-wrap .win-r .prize-view-box .prize-swiper-mask {
  background: url("../images/anniversary10vfx/prize-show-bg.png") no-repeat center;
  width: 436px;
  height: 164px;
  box-sizing: border-box;
  padding: 20px 22px;
  margin-top: 20px;
}
.panel.seven .earth-wrap .win-r .prize-view-box .prize-swiper .prize-total-box a {
  display: block;
}
.panel.seven .earth-wrap .win-r .prize-view-box .prize-swiper .prize {
  position: relative;
  height: 122px;
  float: left;
  margin-right: 12px;
}
.panel.seven .earth-wrap .win-r .prize-view-box .prize-swiper .prize:last-child {
  margin-right: 0;
}
.panel.seven .earth-wrap .win-r .prize-view-box .prize-swiper .prize h6 {
  font-size: 12px;
  color: #666666;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 1;
  text-align: center;
  right: 0;
  margin: auto;
  width: 100%;
  padding: 8px 0;
}
.panel.seven .earth-wrap .win-r .prize-view-box .prize-swiper .prize .first-tag {
  position: absolute;
  left: 0;
  right: 0;
  background: url(../images/anniversary10vfx/first-prize.png) no-repeat center;
  width: 64px;
  height: 20px;
}
.panel.seven .earth-wrap .win-r .prize-view-box .prize-swiper .prize .second-tag {
  background: url("../images/anniversary10vfx/second-prize.png") no-repeat center;
  width: 64px;
  height: 20px;
  position: absolute;
  left: 0;
  top: 0;
}
.panel.seven .earth-wrap .win-r .prize-view-box .prize-swiper .prize .third-tag {
  background: url("../images/anniversary10vfx/third-prize.png") no-repeat center;
  width: 64px;
  height: 20px;
  position: absolute;
  top: 0;
  left: 0;
}
.panel.seven .earth-wrap .win-r .prize-view-box .prize-swiper .prize .view-pic {
  width: 122px;
  height: 122px;
}
.xgplayer-replay {
  display: none !important;
  pointer-events: none;
}
.el-pagination {
  position: fixed;
  right: 80px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.4em;
  z-index: 10;
  display: none;
}
.el-pagination li {
  margin-top: 20px;
}
.el-pagination li:first-child {
  margin-top: 0;
}
.el-pagination a {
  display: block;
  height: 16px;
  width: 16px;
  margin-bottom: 30px;
  position: relative;
  background: rgba(250, 116, 46, 0.2);
  border: 1px solid #FF5B0E;
  transform: rotate(45deg);
}
.el-pagination a.active {
  background: #FF5B0E;
}
.el-pagination a .hover-text {
  position: absolute;
  right: 15px;
  top: 7px;
  opacity: 0;
  -webkit-transition: opacity 0.5s ease;
  transition: opacity 0.5s ease;
  padding-right: 15px;
  transform: none;
}
.el-pagination a:hover .hover-text {
  opacity: 1;
}
.mask-pop-el {
  display: none;
  content: '';
  position: fixed;
  right: 0;
  z-index: 1000;
  left: 0;
  bottom: 0;
  top: 0;
  margin: auto;
  background: rgba(0, 0, 0, 0.3);
}
#location-pop {
  width: 360px;
  height: 360px;
  background: #FFFFFF;
  box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.06);
  border-radius: 8px;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 1002;
  left: 0;
  margin: auto;
  bottom: 0;
  padding: 20px;
  box-sizing: border-box;
  display: none;
}
#location-pop.active:before {
  display: block;
  content: '';
  background: url("../images/anniversary10vfx/loading.gif") no-repeat center rgba(0, 0, 0, 0.16);
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
}
#location-pop .location-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 9;
  margin-bottom: 8px;
}
#location-pop .location-head .title-text {
  font-size: 16px;
  color: #333;
}
#location-pop .location-head .close-location {
  background: url("../images/anniversary10vfx/pop-close.png") no-repeat center;
  width: 20px;
  height: 20px;
  cursor: pointer;
}
#location-pop .location-wrap {
  position: relative;
  height: 288px;
}
#location-pop .location-wrap .location-tool {
  position: absolute;
  left: 0;
  bottom: 6px;
  z-index: 1;
  right: 0;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
#location-pop .location-wrap .location-tool .btn {
  display: block;
  background: #CCCCCC;
  border-radius: 4px;
  height: 28px;
  line-height: 28px;
  font-size: 14px;
  color: #fff;
  width: 80px;
  text-align: center;
  margin-left: 14px;
}
#location-pop .location-wrap .location-tool .btn:hover,
#location-pop .location-wrap .location-tool .btn:focus {
  text-decoration: none;
}
#location-pop .location-wrap .location-tool .btn.submit {
  background: #148A62;
}
#location-pop .location-wrap .location-tool .btn.submit:hover {
  background: #0c9f6d;
}
#location-pop .location-row .label {
  font-size: 13px;
  color: #999999;
  margin-bottom: 8px;
}
#location-pop .location-row .label .tag {
  color: #C80000;
}
#location-pop .location-row .note-des {
  height: 68px;
  padding: 10px;
  box-sizing: border-box;
  resize: none;
  font-size: 13px;
  color: #333333;
  font-family: Roboto;
  outline: none;
  border-radius: 4px;
  display: block;
  width: 100%;
  border: 1px solid #E0E0E0;
}
#location-pop .location-row .note-des::placeholder {
  color: #999999;
}
#location-pop .location-row .statistical-length {
  font-size: 13px;
  color: #999999;
  text-align: right;
  margin-top: 6px;
}
#location-pop .location-row .upload-file {
  display: flex;
}
#location-pop .location-row .uploadImg {
  background: #F7F7F7;
  border-radius: 4px;
  height: 84px;
  width: 84px;
  border: 1px dashed #E0E0E0;
  color: #BBBBBB;
  font-size: 12px;
  text-align: center;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
#location-pop .location-row .uploadImg:after {
  display: block;
  content: '';
}
#location-pop .location-row .uploadImg .example-icon {
  background: url("../images/anniversary10vfx/example-icon.png") no-repeat center;
  width: 28px;
  height: 22px;
  margin-bottom: 8px;
}
#location-pop .location-row .uploadImg.delete-file {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  display: none;
  border-style: solid;
}
#location-pop .location-row .uploadImg.delete-file:after {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  background: rgba(0, 0, 0, 0.2);
  width: 100%;
  height: 100%;
  content: '';
  display: block;
  opacity: 0;
  overflow: hidden;
  transition: opacity 0.3s ease;
}
#location-pop .location-row .uploadImg.delete-file .close-icon {
  background: url('../images/anniversary10vfx/cancel-icon.png') no-repeat center;
  width: 20px;
  height: 20px;
  display: inline-block;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  margin: auto;
  z-index: 2;
  opacity: 0;
  overflow: hidden;
  transition: opacity 0.3s ease;
}
#location-pop .location-row .uploadImg.delete-file:hover:after {
  opacity: 1;
  overflow: visible;
}
#location-pop .location-row .uploadImg.delete-file:hover .close-icon {
  opacity: 1;
  overflow: visible;
}
#location-pop .location-row .format-tips {
  margin-top: 8px;
  font-size: 12px;
  color: #999999;
}
#location-pop .location-row .photo-tips .tag {
  color: #C80000;
}
#location-pop .location-row .set-img {
  opacity: 0;
  font-size: 0;
  position: absolute;
  bottom: 0;
  z-index: 1;
  right: 0;
  top: 0;
  left: 0;
  margin: auto;
  cursor: pointer;
  width: 100%;
}
#upload-pop {
  width: 360px;
  height: 360px;
  background: #FFFFFF;
  box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.06);
  border-radius: 8px;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 1002;
  left: 0;
  margin: auto;
  bottom: 0;
  padding: 20px;
  box-sizing: border-box;
  display: none;
  text-align: center;
}
#upload-pop .upload-pic {
  width: 160px;
  height: 96px;
  margin-top: 50px;
}
#upload-pop .upload-des {
  color: #333333;
  font-weight: 500;
  margin-top: 34px;
}
#upload-pop .upload-des .upload-text {
  font-size: 20px;
}
#upload-pop .upload-des .under-review {
  font-size: 18px;
  margin-top: 6px;
}
.view-pop-parent {
  display: none;
}
.view-pop-parent .view-pop-wrap {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  box-sizing: border-box;
  text-align: center;
  z-index: 1002;
  user-select: none;
}
.view-pop-parent .view-pop-wrap:after {
  display: inline-block;
  content: '';
  height: 100%;
  vertical-align: middle;
  user-select: none;
}
.view-pop-parent .view-location-pop {
  display: inline-block;
  vertical-align: middle;
  width: 360px;
  background: #FFFFFF;
  box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.06);
  border-radius: 8px;
  box-sizing: border-box;
  text-align: left;
  position: relative;
}
.view-pop-parent .view-location-pop .location-head {
  display: flex;
  align-items: center;
  position: relative;
}
.view-pop-parent .view-location-pop .location-head .p-head {
  width: 36px;
  height: 36px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.view-pop-parent .view-location-pop .location-head .name {
  color: #333;
  font-size: 13px;
  margin-left: 8px;
  display: block;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  max-width: 200px;
}
.view-pop-parent .view-location-pop .location-head .time {
  color: #999;
  font-size: 12px;
  margin-left: 8px;
}
.view-pop-parent .view-location-pop .location-head .p-info {
  display: flex;
  flex-direction: column;
}
.view-pop-parent .view-location-pop .location-head .p-info .time {
  margin-top: 4px;
}
.view-pop-parent .view-location-pop .location-head .close-location {
  background: url("../images/anniversary10vfx/pop-close.png") no-repeat center;
  width: 20px;
  height: 20px;
  cursor: pointer;
  position: absolute;
  top: 50%;
  right: 0;
  z-index: 2;
  margin-top: -10px;
}
.view-pop-parent .view-location-pop .view-example {
  height: 232px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 4px 4px 0 0;
  overflow: hidden;
  position: relative;
}
.view-pop-parent .view-location-pop .view-example:hover:before {
  display: block;
}
.view-pop-parent .view-location-pop .view-example:hover:after {
  display: block;
}
.view-pop-parent .view-location-pop .view-example:before {
  display: none;
  content: '';
  background: rgba(0, 0, 0, 0.26);
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 1;
  right: 0;
  top: 0;
  margin: auto;
  transition: all 0.3s ease-in;
  cursor: pointer;
}
.view-pop-parent .view-location-pop .view-example:after {
  display: none;
  content: '';
  background: url("../images/anniversary10vfx/view-icon.png") no-repeat center;
  width: 34px;
  height: 34px;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 2;
  top: 0;
  right: 0;
  margin: auto;
  cursor: pointer;
}
.view-pop-parent .view-location-pop .read-tool {
  padding: 12px 18px;
  background: url("../images/anniversary10vfx/10th-bird.png") no-repeat right center;
}
.view-pop-parent .view-location-pop .text-mask {
  position: relative;
}
.view-pop-parent .view-location-pop .text-mask .toggle-btn {
  color: #148A62;
  font-size: 13px;
  cursor: pointer;
  display: block;
  text-align: center;
}
.view-pop-parent .view-location-pop .text-mask .toggle-btn:hover {
  text-decoration: underline;
}
.view-pop-parent .view-location-pop .view-text {
  font-size: 13px;
  color: #333;
  line-height: 18px;
  position: relative;
  padding-top: 6px;
  box-sizing: border-box;
}
.view-pop-parent .view-location-pop .view-text:before {
  content: '';
  display: block;
  background: url("../images/anniversary10vfx/guide-icon.png") no-repeat center;
  width: 20px;
  height: 18px;
  position: absolute;
  top: 0;
  left: -6px;
  z-index: 1;
}
.view-pop-parent .view-location-pop .read-title {
  font-size: 13px;
  display: flex;
  align-items: center;
  padding: 2px 0 6px;
  user-select: text;
}
.view-pop-parent .view-location-pop .read-title .name {
  margin-right: 8px;
  display: block;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  max-width: 160px;
  height: 15px;
  line-height: 15px;
}
.view-pop-parent .view-location-pop .read-title .time {
  font-size: 12px;
  color: #999999;
  height: 15px;
  line-height: 15px;
  margin-top: 2px;
}
.view-pop-parent .view-location-pop .read-row {
  text-align: left;
  margin-bottom: 10px;
}
.view-pop-parent .view-location-pop .read-row .tool-more {
  text-align: center;
  padding: 4px 0 2px;
}
.view-pop-parent .view-location-pop .read-row .more-btn {
  margin-top: 4px;
  font-size: 13px;
  color: #148A62;
  cursor: pointer;
  text-align: center;
}
.view-pop-parent .view-location-pop .read-row .more-btn:after {
  display: inline-block;
  vertical-align: middle;
  content: '';
  background: url("../images/anniversary10vfx/arrow-icon.png") no-repeat center;
  width: 14px;
  height: 14px;
  transition: all 0.3s ease-in;
  margin-left: 4px;
}
.view-pop-parent .view-location-pop .read-row .more-btn:hover {
  text-decoration: underline;
}
.view-pop-parent .graphic-view {
  display: inline-block;
  vertical-align: middle;
  position: relative;
}
.view-pop-parent .graphic-view .close-info {
  background: url("../images/anniversary10vfx/close-info.png") no-repeat center;
  width: 30px;
  height: 30px;
  position: absolute;
  left: 50%;
  bottom: -48px;
  z-index: 1;
  margin-left: -15px;
  display: block;
  cursor: pointer;
}
.view-pop-parent .upload-ok .view-location-pop {
  padding: 90px 0;
  text-align: center;
  position: relative;
}
.view-pop-parent .upload-ok .view-location-pop .close-location {
  background: url("../images/anniversary10vfx/pop-close.png") no-repeat center;
  width: 20px;
  height: 20px;
  cursor: pointer;
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 2;
}
.view-pop-parent .upload-ok .result-state {
  background: url("../images/anniversary10vfx/result-state.png") no-repeat center;
  width: 160px;
  height: 96px;
  margin: 0 auto;
}
.view-pop-parent .upload-ok .state-text {
  margin-top: 32px;
  color: #333;
  font-weight: 600;
  font-size: 20px;
}
.view-pop-parent .upload-ok .state-tips {
  font-size: 14px;
  color: #999;
  margin-top: 10px;
}
.share-tool-box {
  position: fixed;
  left: 0;
  bottom: 340px;
  z-index: 999;
  width: 60px;
  height: 240px;
  background: rgba(255, 255, 255, 0.54);
  border-radius: 0px 6px 6px 0px;
  box-sizing: border-box;
  text-align: center;
  border: 1px solid #FFFFFF;
  transition: all 0.8s linear;
  transform: rotate(0) scale(0);
  display: flex;
  flex-direction: column;
  align-items: center;
}
.share-tool-box.o-active {
  opacity: 1;
  transform: rotateY(360deg) scale(1);
}
.share-tool-box .share-icon {
  background: url("../images/anniversary10vfx/share-icon.png") no-repeat center;
  width: 30px;
  height: 30px;
  margin-top: 16px;
}
.share-tool-box .share-label {
  margin-top: 16px;
  font-size: 16px;
  color: #148A62;
}
.share-tool-box .share-label:after {
  width: 100%;
  height: 1px;
  background-color: #148A62;
  content: '';
  display: inline-block;
  opacity: 0.5;
  margin-top: 20px;
}
.share-tool-box .twitter {
  display: block;
  background: url("../images/anniversary10vfx/twitter.png") no-repeat center;
  width: 32px;
  height: 32px;
  margin: 18px auto 0;
}
.share-tool-box .face-book {
  display: block;
  background: url("../images/anniversary10vfx/facebook.png") no-repeat center;
  width: 32px;
  height: 32px;
  margin: 30px auto 0;
}
.anniversary-pop-mask {
  position: fixed;
  left: 0;
  bottom: 0;
  z-index: 999;
  right: 0;
  top: 0;
  margin: 0 auto;
  background: rgba(0, 0, 0, 0.55);
}
.anniversary-pop-mask .pop-wrap {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 89;
  bottom: 0;
  right: 0;
  margin: auto;
}
.anniversary-pop-mask .coupon {
  background: url("../images/anniversary10vfx/view-bg.png") no-repeat center;
  width: 480px;
  height: 432px;
  box-sizing: border-box;
  padding: 18px;
  text-align: center;
}
.anniversary-pop-mask .coupon .cou-pic {
  margin-top: -24px;
}
.anniversary-pop-mask .coupon:before {
  position: absolute;
  left: 0;
  top: -22px;
  background: url("../images/anniversary10vfx/view-line-t.png") no-repeat center;
  width: 96px;
  height: 101px;
  content: '';
  display: block;
}
.anniversary-pop-mask .coupon:after {
  position: absolute;
  right: -30px;
  bottom: -24px;
  background: url("../images/anniversary10vfx/view-line-r.png") no-repeat center;
  width: 127px;
  height: 123px;
  content: '';
  display: block;
}
.anniversary-pop-mask .coupon .view-close {
  position: absolute;
  right: 40px;
  top: 40px;
  background: url("../images/anniversary10vfx/view-close-icon.png") no-repeat center;
  width: 22px;
  height: 22px;
  display: inline-block;
  cursor: pointer;
  transition: all 0.3s ease;
}
.anniversary-pop-mask .coupon .view-close:hover {
  transform: rotate(180deg);
}
.anniversary-pop-mask .coupon .cou-title {
  font-weight: 700;
  font-size: 22px;
  color: #2C8766;
  text-align: center;
  margin-top: 58px;
  margin-bottom: 18px;
}
.anniversary-pop-mask .coupon .btn-num {
  position: absolute;
  bottom: 26px;
  left: 0;
  right: 0;
  margin: auto;
}
.anniversary-pop-mask .coupon .btn-num .btn-icon {
  width: 144px;
  text-align: center;
  height: 34px;
  line-height: 34px;
  box-sizing: border-box;
  border-radius: 17px;
  font-weight: 700;
  font-size: 16px;
  display: inline-block;
  cursor: pointer;
}
.anniversary-pop-mask .coupon .btn-num .btn-l {
  color: #148A62;
  background: #FFFFFF;
  margin-right: 34px;
}
.anniversary-pop-mask .coupon .btn-num .btn-l:hover,
.anniversary-pop-mask .coupon .btn-num .btn-l:focus {
  text-decoration: none;
}
.anniversary-pop-mask .coupon .btn-num .btn-r {
  color: #FFFFFF;
  border: 1px solid #FFFFFF;
}
.anniversary-pop-mask .coupon .cou-box {
  background: url("../images/anniversary10vfx/cou-bg.png") no-repeat center;
  width: 372px;
  height: 169px;
  margin: auto;
  box-sizing: border-box;
  padding: 0 34px;
  position: relative;
}
.anniversary-pop-mask .coupon .cou-box .cou-above {
  height: 120px;
  padding: 0 26px;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: space-between;
}
.anniversary-pop-mask .coupon .cou-box .sum-l {
  font-size: 28px;
  color: #3F3F3E;
  font-weight: 700;
}
.anniversary-pop-mask .coupon .cou-box .sum-num {
  font-size: 67px;
}
.anniversary-pop-mask .coupon .cou-box .sum-des {
  font-weight: 500;
  font-size: 18px;
  color: #3F3F3E;
  line-height: 22px;
}
.anniversary-pop-mask .coupon .cou-box .cou-des {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 6px;
  margin: auto;
  font-size: 13px;
  color: #FFFFFF;
  line-height: 14px;
}
.anniversary-pop-mask .rules {
  width: 680px;
  border: 4px solid #1abab3;
  border-radius: 16px;
  background: #F6FFFC;
  display: inline-table;
  padding: 30px 26px;
  box-sizing: border-box;
}
.anniversary-pop-mask .rules .cou-title {
  font-weight: 700;
  font-size: 26px;
  color: #148A62;
  margin-bottom: 8px;
}
.anniversary-pop-mask .rules .rules-des dd {
  color: #333333;
  line-height: 24px;
  font-size: 16px;
  margin-left: 0;
  margin-bottom: 14px;
}
.anniversary-pop-mask .rules .rules-des dd .r-tag {
  color: #C80000;
}
.anniversary-pop-mask .rules .rules-des dd:last-child {
  margin-bottom: 0;
}
.anniversary-pop-mask .rules .rules-btn {
  margin-top: 30px;
  text-align: center;
}
.anniversary-pop-mask .rules .rules-btn span {
  width: 180px;
  height: 36px;
  line-height: 36px;
  text-align: center;
  background: linear-gradient(90deg, #2AB563 1%, #18BBC5 100%);
  border-radius: 4px;
  font-weight: 500;
  font-size: 16px;
  color: #FFFFFF;
  cursor: pointer;
  display: inline-block;
}
.anniversary-pop-mask .rules .view-close {
  position: absolute;
  top: -26px;
  right: -26px;
  background: url('../images/anniversary10vfx/close-btn.png') no-repeat center;
  width: 54px;
  height: 54px;
  display: inline-block;
  cursor: pointer;
}
.earth-container {
  z-index: 3;
}
.earth-container .countryName {
  font-size: 12px;
  color: #fff;
}
.layui-layer-imgbar {
  display: none !important;
}
.layui-layer-demo .layui-layer-btn0 {
  background-color: #fff !important;
  border-color: #dedede !important;
  color: #333 !important;
}
.layui-layer-demo .layui-layer-btn1 {
  background-color: #1E9FFF;
  border-color: #1E9FFF;
  color: #fff;
}
.anniversary-pop-mask {
  position: fixed;
  left: 0;
  bottom: 0;
  z-index: 999;
  right: 0;
  top: 0;
  margin: 0 auto;
  background: rgba(0, 0, 0, 0.55);
}
.anniversary-pop-mask .pop-wrap {
  width: 680px;
  height: 590px;
  border-radius: 16px;
  border: 4px solid #1abab3;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 89;
  bottom: 0;
  right: 0;
  margin: auto;
  padding: 30px 0 24px 24px;
}
.anniversary-pop-mask .pop-wrap:before {
  display: block;
  content: '';
  background: #F1FCFF;
  position: absolute;
  top: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  right: 0;
  left: 0;
  margin: auto;
  bottom: 0;
  border-radius: 12px;
}
.anniversary-pop-mask .pop-wrap .pop-body,
.anniversary-pop-mask .pop-wrap .pop-tool {
  position: relative;
  z-index: 3;
}
.anniversary-pop-mask .pop-wrap img.inter-img {
  max-width: 100%;
  margin-top: 10px;
  margin-bottom: 10px;
}
.anniversary-pop-mask .pop-wrap .tag {
  color: #4e5ffa;
  font-weight: 700;
}
.anniversary-pop-mask .pop-wrap a.tag {
  text-decoration: underline;
}
.anniversary-pop-mask .pop-wrap.pop-success {
  width: 560px;
  height: 260px;
}
.anniversary-pop-mask .pop-wrap.pop-success .pop-tool {
  margin-top: 28px;
}
.anniversary-pop-mask .pop-wrap.pop-error {
  width: 560px;
  height: 260px;
}
.anniversary-pop-mask .pop-wrap.pop-error .pop-tool {
  margin-top: 28px;
}
.anniversary-pop-mask .pop-wrap.pop-questions {
  background: url("../images/2022christmas/questions-bg.png") no-repeat center #495CF8;
  width: 600px;
  height: 600px;
  border: 0;
}
.anniversary-pop-mask .pop-wrap.pop-questions .close-question {
  display: block;
  content: '';
  background: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABIAAAASCAQAAAD8x0bcAAAABGdBTUEAALGPC/xhBQAAACBjSFJNAAB6JgAAgIQAAPoAAACA6AAAdTAAAOpgAAA6mAAAF3CculE8AAAAAmJLR0QAAKqNIzIAAAAHdElNRQfmCxYRJxI682EHAAAAfklEQVQoz5WSMQ7DIAxFv3ofD5Uq5egZOvUqFVnKlBO8DAgBdawQ2Oxn+Pa3+PDFUHCNjbf4ATnAjAwksbAHWEEyJiLsVRFUAh4bIqfB/yKd1Lp3exU16RSO/RTMNfHQzLn33YTwMfFsg2yQH6b1WGyL9bZMGXy9Kpsuly6xHiBilRfUctuzAAAAAElFTkSuQmCC") no-repeat center;
  width: 18px;
  height: 18px;
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 2;
  cursor: pointer;
  transition: all 0.3s;
}
.anniversary-pop-mask .pop-wrap.pop-questions .close-question:hover {
  transform: rotate(45deg);
}
.anniversary-pop-mask .pop-wrap.pop-questions .question-head {
  text-align: center;
  display: flex;
  align-items: center;
  font-size: 24px;
  color: #fff;
  font-weight: 700;
  justify-content: center;
  margin-top: 24px;
}
.anniversary-pop-mask .pop-wrap.pop-questions .question-head:before {
  display: block;
  content: '';
  background: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACsAAAADCAQAAACgqz4QAAAABGdBTUEAALGPC/xhBQAAACBjSFJNAAB6JgAAgIQAAPoAAACA6AAAdTAAAOpgAAA6mAAAF3CculE8AAAAAmJLR0QAAKqNIzIAAAAHdElNRQfmCxYRIA34uvo1AAAAS0lEQVQY05XNSwqAMBRD0fNaRKnf7n+xdaSgoOgdBEJCEi0jCSFLsk6n1xsVxWpTVatqs1jMRpPBK+kxaQhOPYib/zl7Jc6j9qW+A8u3BQfCczsgAAAAAElFTkSuQmCC") no-repeat center;
  width: 43px;
  height: 3px;
  margin-right: 10px;
}
.anniversary-pop-mask .pop-wrap.pop-questions .question-head:after {
  display: block;
  content: '';
  background: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACsAAAADCAQAAACgqz4QAAAABGdBTUEAALGPC/xhBQAAACBjSFJNAAB6JgAAgIQAAPoAAACA6AAAdTAAAOpgAAA6mAAAF3CculE8AAAAAmJLR0QAAKqNIzIAAAAHdElNRQfmCxYRIAcYbxMrAAAAV0lEQVQY043NQQ7CMBAEwTL//2xwAmuMsxwiwBIg0bc5THfJAIk0pG7XdE24asJZuKiqarFabUIIzU13NwxDSomdk5kyJZ7rzXH6i1n7XZOvVPlQ/8w8ALVXMQGXp7LkAAAAAElFTkSuQmCC") no-repeat center;
  width: 43px;
  height: 3px;
  margin-left: 10px;
}
.anniversary-pop-mask .pop-wrap.pop-questions .question-img {
  position: absolute;
  top: -36px;
  left: 18px;
  z-index: 2;
}
.anniversary-pop-mask .pop-wrap.pop-questions .question-rules {
  text-align: center;
}
.anniversary-pop-mask .pop-wrap.pop-questions .question-rules .view-rules {
  display: inline-block;
  padding: 8px 0;
  font-size: 14px;
  color: #ffea00;
  text-decoration: underline;
}
.anniversary-pop-mask .pop-wrap.pop-questions .question-area {
  width: 560px;
  height: 434px;
  background-color: #fff;
  border-radius: 6px;
  position: fixed;
  top: 66px;
  left: 0;
  z-index: 2;
  right: 0;
  margin: auto;
  bottom: 0;
}
.anniversary-pop-mask .pop-wrap.pop-questions .question-area-mask {
  overflow: hidden;
  border-radius: 6px;
}
.anniversary-pop-mask .pop-wrap.pop-questions .question-submit {
  width: 160px;
  height: 34px;
  background-image: linear-gradient(90deg, #fff7dc 0%, #ffdbc8 100%);
  border-radius: 17px;
  border: solid 1px #fc7372;
  right: 0;
  margin: auto;
  position: absolute;
  left: 0;
  bottom: -17px;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  color: #fe403f;
  font-weight: 700;
}
.anniversary-pop-mask .pop-wrap.pop-questions .question-submit.disabled {
  cursor: not-allowed;
  background-image: linear-gradient(90deg, #a9a9a9 0%, #a9a9a9 100%);
  box-shadow: 0px 6px 10px 0px rgba(0, 0, 0, 0.3);
  border-radius: 17px;
  color: #fff;
  border: solid 1px #8b8b8b;
}
.anniversary-pop-mask .pop-wrap.pop-questions .question-wrap {
  padding: 24px 16px 24px 22px;
  overflow-y: auto;
  max-height: 380px;
}
.anniversary-pop-mask .pop-wrap.pop-questions .question-wrap::-webkit-scrollbar {
  width: 6px;
  height: 6px;
  background-color: #F5F5F5;
}
.anniversary-pop-mask .pop-wrap.pop-questions .question-wrap::-webkit-scrollbar-track {
  border-radius: 6px;
  background-color: white;
}
.anniversary-pop-mask .pop-wrap.pop-questions .question-wrap::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background-color: #c1c1c1;
}
.anniversary-pop-mask .pop-wrap.pop-questions .problem-el {
  margin-bottom: 14px;
}
.anniversary-pop-mask .pop-wrap.pop-questions .problem-el .problem-title {
  font-size: 16px;
  line-height: 20px;
  color: #333333;
  font-weight: 700;
  position: relative;
  padding-left: 16px;
}
.anniversary-pop-mask .pop-wrap.pop-questions .problem-el .problem-title .index {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
.anniversary-pop-mask .pop-wrap.pop-questions .problem-el .problem-each {
  margin-top: 12px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.anniversary-pop-mask .pop-wrap.pop-questions .problem-el .problem-each .each {
  width: 250px;
  height: 40px;
  background: #f8f8f8;
  border-radius: 4px;
  cursor: pointer;
  display: flex;
  align-items: center;
  padding-left: 14px;
  margin-bottom: 10px;
  position: relative;
}
.anniversary-pop-mask .pop-wrap.pop-questions .problem-el .problem-each .each:hover {
  background: #E7EEF9;
  color: #333333;
}
.anniversary-pop-mask .pop-wrap.pop-questions .problem-el .problem-each .each.active {
  color: #fff;
  background: #5b6bfe;
}
.anniversary-pop-mask .pop-wrap.pop-questions .problem-el .problem-each .each.active:after {
  display: block;
  content: '';
  background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAA0AAAAKCAYAAABv7tTEAAAACXBIWXMAAAsTAAALEwEAmpwYAAAF+mlUWHRYTUw6Y29tLmFkb2JlLnhtcAAAAAAAPD94cGFja2V0IGJlZ2luPSLvu78iIGlkPSJXNU0wTXBDZWhpSHpyZVN6TlRjemtjOWQiPz4gPHg6eG1wbWV0YSB4bWxuczp4PSJhZG9iZTpuczptZXRhLyIgeDp4bXB0az0iQWRvYmUgWE1QIENvcmUgNS42LWMxNDUgNzkuMTYzNDk5LCAyMDE4LzA4LzEzLTE2OjQwOjIyICAgICAgICAiPiA8cmRmOlJERiB4bWxuczpyZGY9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkvMDIvMjItcmRmLXN5bnRheC1ucyMiPiA8cmRmOkRlc2NyaXB0aW9uIHJkZjphYm91dD0iIiB4bWxuczp4bXA9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC8iIHhtbG5zOmRjPSJodHRwOi8vcHVybC5vcmcvZGMvZWxlbWVudHMvMS4xLyIgeG1sbnM6cGhvdG9zaG9wPSJodHRwOi8vbnMuYWRvYmUuY29tL3Bob3Rvc2hvcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RFdnQ9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZUV2ZW50IyIgeG1wOkNyZWF0b3JUb29sPSJBZG9iZSBQaG90b3Nob3AgQ0MgMjAxOSAoV2luZG93cykiIHhtcDpDcmVhdGVEYXRlPSIyMDIyLTExLTI1VDA5OjE0OjQ5KzA4OjAwIiB4bXA6TW9kaWZ5RGF0ZT0iMjAyMi0xMS0yNVQwOToxNTowNSswODowMCIgeG1wOk1ldGFkYXRhRGF0ZT0iMjAyMi0xMS0yNVQwOToxNTowNSswODowMCIgZGM6Zm9ybWF0PSJpbWFnZS9wbmciIHBob3Rvc2hvcDpDb2xvck1vZGU9IjMiIHBob3Rvc2hvcDpJQ0NQcm9maWxlPSJzUkdCIElFQzYxOTY2LTIuMSIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDo5MWE2ZDU4MC1lNTY2LWE5NDAtOGRlOS1jMmMwOWNiYTdmMjgiIHhtcE1NOkRvY3VtZW50SUQ9ImFkb2JlOmRvY2lkOnBob3Rvc2hvcDpmZDZhYWE3NC1iMWQ0LThmNDktYTAzNC1lMzYyMDk1MjUyMDIiIHhtcE1NOk9yaWdpbmFsRG9jdW1lbnRJRD0ieG1wLmRpZDozNDM5NzBiYi03YmVhLWIzNDQtYjA0ZC05NmJmYTY0MGJmNWIiPiA8eG1wTU06SGlzdG9yeT4gPHJkZjpTZXE+IDxyZGY6bGkgc3RFdnQ6YWN0aW9uPSJjcmVhdGVkIiBzdEV2dDppbnN0YW5jZUlEPSJ4bXAuaWlkOjM0Mzk3MGJiLTdiZWEtYjM0NC1iMDRkLTk2YmZhNjQwYmY1YiIgc3RFdnQ6d2hlbj0iMjAyMi0xMS0yNVQwOToxNDo0OSswODowMCIgc3RFdnQ6c29mdHdhcmVBZ2VudD0iQWRvYmUgUGhvdG9zaG9wIENDIDIwMTkgKFdpbmRvd3MpIi8+IDxyZGY6bGkgc3RFdnQ6YWN0aW9uPSJzYXZlZCIgc3RFdnQ6aW5zdGFuY2VJRD0ieG1wLmlpZDo5MWE2ZDU4MC1lNTY2LWE5NDAtOGRlOS1jMmMwOWNiYTdmMjgiIHN0RXZ0OndoZW49IjIwMjItMTEtMjVUMDk6MTU6MDUrMDg6MDAiIHN0RXZ0OnNvZnR3YXJlQWdlbnQ9IkFkb2JlIFBob3Rvc2hvcCBDQyAyMDE5IChXaW5kb3dzKSIgc3RFdnQ6Y2hhbmdlZD0iLyIvPiA8L3JkZjpTZXE+IDwveG1wTU06SGlzdG9yeT4gPC9yZGY6RGVzY3JpcHRpb24+IDwvcmRmOlJERj4gPC94OnhtcG1ldGE+IDw/eHBhY2tldCBlbmQ9InIiPz4mhVHYAAAAm0lEQVQokY3QMQ4BARCF4REkSolC4QJqKndwAdq9hCNQcwKNViNKPRcQJYVeQSh8CivZbJCdZIr3kj/z5pUQBacREbuIOAWKbAUbHNEsCk1xRRdRBEi8Z/jxAkssUP0C9HDHJOsHOunpWQ5o4Yw1ynkoMEgjJKmuYYsD6vkEWTHGI400xwXtb39mRRkr3PBE/1c5eaOOPUb/Gn0BK355em39XwIAAAAASUVORK5CYII=) no-repeat center;
  width: 13px;
  height: 10px;
  position: absolute;
  top: 50%;
  right: 15px;
  z-index: 1;
  margin-top: -5px;
  color: #fff;
}
.anniversary-pop-mask .pop-wrap.answer-rules {
  height: 280px;
}
.anniversary-pop-mask .pop-wrap.model-pop {
  height: 392px;
  padding-top: 88px;
}
.anniversary-pop-mask .pop-wrap.model-pop:before {
  display: block;
  content: '';
  background: url("../images/2022christmas/draw-top.png") no-repeat center;
  width: 100%;
  height: 87px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
.anniversary-pop-mask .pop-wrap.model-pop .model-answer {
  margin-top: 14px;
  border-top: solid 1px #e0e0e0;
  padding: 22px 0;
}
.anniversary-pop-mask .pop-wrap.model-pop .model-answer .model-title {
  font-size: 18px;
  font-weight: 700;
}
.anniversary-pop-mask .pop-wrap.model-pop .model-answer .all-answer {
  display: flex;
  margin-top: 10px;
  font-size: 16px;
  color: #333333;
}
.anniversary-pop-mask .pop-wrap.model-pop .model-answer .all-answer span {
  margin-right: 4px;
}
.anniversary-pop-mask .pop-wrap.coupons {
  background: url("../images/anniversary10vfx/view-bg.png") no-repeat center;
  width: 680px;
  height: 590px;
  padding: 0;
  border: none;
}
.anniversary-pop-mask .pop-wrap.coupons .coupon-box {
  height: 450px;
  overflow-y: auto;
  margin-top: 58px;
  margin-right: 22px;
}
.anniversary-pop-mask .pop-wrap.coupons .coupon-box::-webkit-scrollbar {
  width: 2px;
  border-radius: 2px;
  background: #eeeeee;
}
.anniversary-pop-mask .pop-wrap.coupons .coupon-box::-webkit-scrollbar-thumb {
  width: 2px;
  border-radius: 2px;
  background: #1abab3;
}
.anniversary-pop-mask .pop-wrap.coupons:before {
  display: none;
}
.anniversary-pop-mask .pop-wrap.coupons:after {
  display: block;
  content: '';
  background: url("../images/anniversary10vfx/cash-icon.png") no-repeat center;
  width: 240px;
  height: 140px;
  position: absolute;
  top: -84px;
  left: -96px;
  z-index: 1;
}
.anniversary-pop-mask .pop-wrap.coupons .coupon-head {
  text-align: center;
  font-size: 26px;
  color: #1abab3;
  font-weight: 700;
}
.anniversary-pop-mask .pop-wrap.coupons .head-des {
  margin-top: 10px;
  font-weight: 400;
  color: #2F2F4B;
  font-size: 16px;
  line-height: 20px;
  text-align: center;
}
.anniversary-pop-mask .pop-wrap.coupons .head-des .tag {
  color: #1abab3;
}
.anniversary-pop-mask .pop-wrap.coupons .total-coupons-mask {
  padding-right: 10px;
  margin-left: 12px;
}
.anniversary-pop-mask .pop-wrap.coupons .total-coupons {
  margin-top: 36px;
}
.anniversary-pop-mask .pop-wrap.coupons .total-coupons:after {
  display: block;
  content: '';
  width: 0;
  height: 0;
  clear: both;
}
.anniversary-pop-mask .pop-wrap.coupons .total-coupons .item {
  background: url("../images/anniversary10vfx/item-bg.png") no-repeat center;
  width: 193px;
  height: 207px;
  color: #fff;
  float: left;
  margin-left: 18px;
  margin-bottom: 18px;
}
.anniversary-pop-mask .pop-wrap.coupons .total-coupons .title {
  color: #000000;
  font-size: 14px;
  text-align: center;
}
.anniversary-pop-mask .pop-wrap.coupons .total-coupons .price {
  font-size: 52px;
  font-weight: 700;
  color: #000000;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 18px;
}
.anniversary-pop-mask .pop-wrap.coupons .total-coupons .price .tag {
  font-size: 24px;
  color: #000000;
  margin-top: 14px;
}
.anniversary-pop-mask .pop-wrap.coupons .total-coupons .text {
  color: #666666;
  width: 160px;
  margin: 46px auto 0;
  text-align: center;
  font-size: 12px;
  line-height: 13px;
}
.anniversary-pop-mask .pop-wrap.coupons .tool-row {
  background: url("../images/anniversary10vfx/tool-icon.png") no-repeat center;
  width: 691px;
  height: 94px;
  position: absolute;
  left: -4px;
  bottom: -3px;
  z-index: 3;
  justify-content: center;
  display: flex;
  align-items: center;
}
.anniversary-pop-mask .pop-wrap.coupons .tool-row .btn {
  width: 144px;
  font-size: 16px;
  height: 34px;
  font-weight: 700;
  text-align: center;
  line-height: 34px;
  border-radius: 17px;
  display: inline-block;
  border: 1px solid #fff;
  color: #fff;
  margin-top: 8px;
  text-decoration: none;
}
.anniversary-pop-mask .pop-wrap.coupons .tool-row .btn.redeem {
  color: #1abab3;
  background: #fff;
  margin-right: 36px;
  text-decoration: none;
}
.anniversary-pop-mask .pop-wrap.ruler {
  height: 246px;
}
.anniversary-pop-mask .pop-wrap.ruler:before {
  height: 100%;
}
.anniversary-pop-mask .pop-wrap.ruler .pop-tool {
  margin-top: 30px;
}
.anniversary-pop-mask .pop-wrap.win {
  background: url("../images/anniversary10vfx/win-bg.png") no-repeat center;
  width: 480px;
  height: 562px;
  padding: 0;
  border: none;
}
.anniversary-pop-mask .pop-wrap.win:before {
  display: block;
  content: '';
  background: url("../images/anniversary10vfx/ribbon1.png") no-repeat center;
  width: 96px;
  height: 101px;
  position: absolute;
  top: -6px;
  left: 0;
  z-index: 1;
  margin: unset;
  right: unset;
  border-radius: 0;
}
.anniversary-pop-mask .pop-wrap.win:after {
  display: block;
  content: '';
  background: url("../images/anniversary10vfx/ribbon2.png") no-repeat center;
  width: 94px;
  height: 123px;
  position: absolute;
  right: -34px;
  bottom: -28px;
  z-index: 1;
}
.anniversary-pop-mask .pop-wrap.win .des {
  width: 424px;
  margin: 50px auto 0;
  padding-left: 4px;
  font-size: 17px;
  line-height: 24px;
  color: #2F2F4B;
  font-weight: 700;
  text-align: center;
}
.anniversary-pop-mask .pop-wrap.win .des .tag {
  color: #148A62;
}
.anniversary-pop-mask .pop-wrap.win .show-product {
  position: relative;
  margin-top: 54px;
  height: 164px;
  display: flex;
  justify-content: center;
}
.anniversary-pop-mask .pop-wrap.win .show-product img {
  position: relative;
  z-index: 3;
  top: -10px;
}
@keyframes move {
  from {
    transform: rotate(0);
  }
  to {
    transform: rotate(360deg);
  }
}
.anniversary-pop-mask .pop-wrap.win .show-product:before {
  display: block;
  content: '';
  background: url("../images/anniversary10vfx/light.png") no-repeat center;
  width: 260px;
  height: 260px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  right: 0;
  margin: auto;
  bottom: 0;
  animation: move 26s infinite linear forwards;
  background-size: cover;
}
.anniversary-pop-mask .pop-wrap.win .show-name {
  font-size: 16px;
  font-weight: 700;
  color: #148A62;
  text-align: center;
  margin-top: 54px;
}
.anniversary-pop-mask .pop-wrap.win .show-des {
  font-size: 14px;
  color: #666666;
  text-align: center;
  font-weight: 600;
  margin-top: 6px;
}
.anniversary-pop-mask .pop-wrap.win .win-tool {
  padding: 0 26px;
  display: flex;
  justify-content: center;
  width: 100%;
  right: 0;
  position: absolute;
  left: 0;
  bottom: 26px;
  z-index: 1;
}
.anniversary-pop-mask .pop-wrap.win .win-tool .btn {
  width: 144px;
  font-size: 16px;
  height: 34px;
  font-weight: 700;
  text-align: center;
  line-height: 34px;
  border-radius: 17px;
  display: inline-block;
  border: 1px solid #fff;
  color: #fff;
  text-decoration: none;
}
.anniversary-pop-mask .pop-wrap.win .win-tool .btn.redeem {
  color: #1abab3;
  background: #fff;
  margin-right: 36px;
  text-decoration: none;
}
.anniversary-pop-mask .pop-wrap.end-pop {
  width: 600px;
  height: 180px;
  padding: 24px 28px;
  background: linear-gradient(135deg, #2270E4 0%, #31A6F8 100%);
  top: 0;
  bottom: 0;
  margin: auto;
}
.anniversary-pop-mask .pop-wrap.end-pop .pop-tool {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 40px;
  margin: auto;
}
.anniversary-pop-mask .pop-wrap.end-pop .close-btn {
  top: -24px;
  right: -24px;
}
.anniversary-pop-mask .pop-wrap.end-pop .rules-text {
  text-align: left;
}
.anniversary-pop-mask .pop-wrap.change {
  background: url("../images/anniversary10vfx/end-bg.png") no-repeat center;
  width: 510px;
  height: 372px;
  left: 16px;
  padding: 0;
  border: none;
}
.anniversary-pop-mask .pop-wrap.change .close-btn {
  top: -18px;
  right: 0;
}
.anniversary-pop-mask .pop-wrap.change:before {
  display: none;
}
.anniversary-pop-mask .pop-wrap.change .rules-text {
  padding: 0 50px 0 40px;
}
.anniversary-pop-mask .pop-wrap.change .rules-text dd {
  padding: 70px 0 0;
  line-height: 24px;
  font-size: 16px;
  color: #2F2F4B;
  text-align: center;
  font-weight: 500;
}
.anniversary-pop-mask .pop-wrap.change .tool-row {
  position: absolute;
  left: 0;
  bottom: 50px;
  z-index: 3;
  justify-content: center;
  display: flex;
  align-items: center;
  width: 100%;
}
.anniversary-pop-mask .pop-wrap.change .tool-row .btn {
  width: 144px;
  font-size: 16px;
  height: 34px;
  font-weight: 700;
  text-align: center;
  line-height: 34px;
  border-radius: 17px;
  display: inline-block;
  border: 1px solid #fff;
  color: #fff;
  margin-top: 8px;
  text-decoration: none;
}
.anniversary-pop-mask .pop-wrap.change .tool-row .btn.redeem {
  color: #1abab3;
  background: #fff;
  margin-right: 36px;
  text-decoration: none;
}
.anniversary-pop-mask .pop-wrap .close-btn {
  background: url('../images/anniversary10vfx/close-btn.png') no-repeat center;
  width: 54px;
  height: 54px;
  display: block;
  cursor: pointer;
  position: absolute;
  top: -26px;
  right: -26px;
  z-index: 66;
}
.anniversary-pop-mask .pop-wrap .rules-head {
  font-size: 26px;
  color: #1abab3;
  font-weight: 700;
}
.anniversary-pop-mask .pop-wrap .rules-text {
  margin-top: 12px;
}
.anniversary-pop-mask .pop-wrap .rules-text dd {
  font-size: 16px;
  line-height: 28px;
  color: #333333;
  margin-bottom: 5px;
}
.anniversary-pop-mask .pop-wrap .pop-tool {
  text-align: center;
  margin-top: 12px;
}
.anniversary-pop-mask .pop-wrap .pop-tool .btn {
  width: 180px;
  height: 36px;
  background-color: #1abab3;
  border-radius: 4px;
  margin: 0 auto;
  font-size: 16px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}
.anniversary-pop-mask .pop-wrap .pop-tool .btn:hover {
  background-color: #14938d;
}
.anniversary-pop-mask {
  position: fixed;
  left: 0;
  bottom: 0;
  z-index: 999;
  right: 0;
  top: 0;
  margin: 0 auto;
  background: rgba(0, 0, 0, 0.55);
}
.anniversary-pop-mask .pop-wrap {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 89;
  bottom: 0;
  right: 0;
  margin: auto;
}
.anniversary-pop-mask .coupon {
  background: url("../images/anniversary10vfx/view-bg.png") no-repeat center;
  width: 480px;
  height: 432px;
  box-sizing: border-box;
  padding: 18px;
  text-align: center;
}
.anniversary-pop-mask .coupon.badge:before {
  position: absolute;
  left: -8px;
  top: -30px;
  background: url("../images/anniversary10vfx/view-line-t.png") no-repeat center;
  width: 96px;
  height: 101px;
  content: '';
  display: block;
  margin: unset;
}
.anniversary-pop-mask .coupon .cou-pic {
  margin-top: -24px;
}
.anniversary-pop-mask .coupon:after {
  position: absolute;
  right: -30px;
  bottom: -24px;
  background: url("../images/anniversary10vfx/view-line-r.png") no-repeat center;
  width: 127px;
  height: 123px;
  content: '';
  display: block;
}
.anniversary-pop-mask .coupon .view-close {
  position: absolute;
  right: 40px;
  top: 40px;
  background: url("../images/anniversary10vfx/view-close-icon.png") no-repeat center;
  width: 22px;
  height: 22px;
  display: inline-block;
  cursor: pointer;
  transition: all 0.3s ease;
}
.anniversary-pop-mask .coupon .view-close:hover {
  transform: rotate(180deg);
}
.anniversary-pop-mask .coupon .cou-title {
  font-weight: 700;
  font-size: 22px;
  color: #2C8766;
  text-align: center;
  margin-top: 58px;
  margin-bottom: 18px;
}
.anniversary-pop-mask .coupon .btn-num {
  position: absolute;
  bottom: 26px;
  left: 0;
  right: 0;
  margin: auto;
}
.anniversary-pop-mask .coupon .btn-num .btn-icon {
  width: 144px;
  text-align: center;
  height: 34px;
  line-height: 34px;
  box-sizing: border-box;
  border-radius: 17px;
  font-weight: 700;
  font-size: 16px;
  display: inline-block;
  cursor: pointer;
}
.anniversary-pop-mask .coupon .btn-num .btn-l {
  color: #148A62;
  background: #FFFFFF;
  margin-right: 34px;
}
.anniversary-pop-mask .coupon .btn-num .btn-l:hover,
.anniversary-pop-mask .coupon .btn-num .btn-l:focus {
  text-decoration: none;
}
.anniversary-pop-mask .coupon .btn-num .btn-r {
  color: #FFFFFF;
  border: 1px solid #FFFFFF;
}
.anniversary-pop-mask .coupon .cou-box {
  background: url("../images/anniversary10vfx/cou-bg.png") no-repeat center;
  width: 372px;
  height: 169px;
  margin: auto;
  box-sizing: border-box;
  padding: 0 34px;
  position: relative;
}
.anniversary-pop-mask .coupon .cou-box .cou-above {
  height: 120px;
  padding: 0 26px;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: space-between;
}
.anniversary-pop-mask .coupon .cou-box .sum-l {
  font-size: 28px;
  color: #3F3F3E;
  font-weight: 700;
}
.anniversary-pop-mask .coupon .cou-box .sum-num {
  font-size: 67px;
}
.anniversary-pop-mask .coupon .cou-box .sum-des {
  font-weight: 500;
  font-size: 18px;
  color: #3F3F3E;
  line-height: 22px;
}
.anniversary-pop-mask .coupon .cou-box .cou-des {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 6px;
  margin: auto;
  font-size: 13px;
  color: #FFFFFF;
  line-height: 14px;
}
.anniversary-pop-mask .rules {
  width: 680px;
  border: 4px solid #1abab3;
  height: 370px;
  border-radius: 16px;
  background: #F6FFFC;
  display: inline-table;
  padding: 30px 24px;
  box-sizing: border-box;
}
.anniversary-pop-mask .rules:before {
  display: none;
}
.anniversary-pop-mask .rules .cou-title {
  font-weight: 700;
  font-size: 26px;
  color: #148A62;
  margin-bottom: 8px;
}
.anniversary-pop-mask .rules .rules-des dd {
  color: #333333;
  line-height: 24px;
  font-size: 16px;
  margin-left: 0;
  margin-bottom: 14px;
}
.anniversary-pop-mask .rules .rules-des dd:last-child {
  margin-bottom: 0;
}
.anniversary-pop-mask .rules .rules-btn {
  margin-top: 30px;
  text-align: center;
}
.anniversary-pop-mask .rules .rules-btn span {
  width: 180px;
  height: 36px;
  line-height: 36px;
  text-align: center;
  background: linear-gradient(90deg, #2AB563 1%, #18BBC5 100%);
  border-radius: 4px;
  font-weight: 500;
  font-size: 16px;
  color: #FFFFFF;
  cursor: pointer;
  display: inline-block;
}
.anniversary-pop-mask .rules .view-close {
  position: absolute;
  top: -26px;
  right: -26px;
  background: url('../images/anniversary10vfx/close-btn.png') no-repeat center;
  width: 54px;
  height: 54px;
  display: inline-block;
  cursor: pointer;
}
.anniversary-pop-mask .coupon-pop {
  background: url("../images/anniversary10vfx/coupon-pop-bg.png") no-repeat center;
  width: 680px;
  height: 590px;
  padding: 0;
  border: none;
}
.anniversary-pop-mask .coupon-pop .coupon-box {
  height: 450px;
  overflow-y: auto;
  margin-top: 58px;
  margin-right: 22px;
}
.anniversary-pop-mask .coupon-pop .coupon-box::-webkit-scrollbar {
  width: 4px;
  background: #eeeeee;
}
.anniversary-pop-mask .coupon-pop .coupon-box::-webkit-scrollbar-thumb {
  width: 4px;
  background: #5EA700;
}
.anniversary-pop-mask .coupon-pop:before {
  display: none;
}
.anniversary-pop-mask .coupon-pop .coupon-head {
  text-align: center;
  font-size: 26px;
  color: #148A62;
  font-weight: 700;
}
.anniversary-pop-mask .coupon-pop .head-des {
  margin-top: 10px;
  font-weight: 400;
  color: #2F2F4B;
  font-size: 16px;
  line-height: 20px;
  text-align: center;
}
.anniversary-pop-mask .coupon-pop .head-des .tag {
  color: #148A62;
}
.anniversary-pop-mask .coupon-pop .total-coupons-mask {
  padding-right: 10px;
  margin-left: 32px;
}
.anniversary-pop-mask .coupon-pop .total-coupons {
  margin-top: 4px;
}
.anniversary-pop-mask .coupon-pop .total-coupons:after {
  display: block;
  content: '';
  width: 0;
  height: 0;
  clear: both;
}
.anniversary-pop-mask .coupon-pop .total-coupons .item {
  background: url("../images/anniversary10vfx/item-bg.png") no-repeat center;
  width: 200px;
  height: 180px;
  color: #fff;
  float: left;
  margin-left: 3px;
  margin-bottom: 6px;
}
.anniversary-pop-mask .coupon-pop .total-coupons .item.v1 {
  background: url('../images/anniversary10vfx/item-bg-v1.png') no-repeat center;
  position: relative;
}
.anniversary-pop-mask .coupon-pop .total-coupons .item.v1 .tag,
.anniversary-pop-mask .coupon-pop .total-coupons .item.v1 .price {
  color: #000000;
}
.anniversary-pop-mask .coupon-pop .total-coupons .item.v1 .hint-des {
  font-size: 14px;
  color: #FFFFFF;
  position: absolute;
  left: 8px;
  top: 9px;
  text-align: center;
  width: 60px;
  height: 24px;
  line-height: 24px;
}
.anniversary-pop-mask .coupon-pop .total-coupons .title {
  color: #333333;
  font-size: 14px;
  text-align: center;
}
.anniversary-pop-mask .coupon-pop .total-coupons .price {
  font-size: 48px;
  font-weight: 700;
  color: #148A62;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 18px;
}
.anniversary-pop-mask .coupon-pop .total-coupons .price .tag {
  font-size: 22px;
  color: #148A62;
  margin-top: 14px;
}
.anniversary-pop-mask .coupon-pop .total-coupons .text {
  color: #ffffff;
  width: 160px;
  margin: 44px auto 0;
  text-align: center;
  font-size: 12px;
  line-height: 12px;
}
.anniversary-pop-mask .coupon-pop .tool-row {
  background: url("../images/anniversary10vfx/tool-icon.png") no-repeat center;
  width: 691px;
  height: 94px;
  position: absolute;
  left: -6px;
  bottom: -3px;
  z-index: 3;
  justify-content: center;
  display: flex;
  align-items: center;
}
.anniversary-pop-mask .coupon-pop .tool-row .btn {
  width: 144px;
  font-size: 16px;
  height: 34px;
  font-weight: 700;
  text-align: center;
  line-height: 34px;
  border-radius: 17px;
  display: inline-block;
  border: 1px solid #fff;
  color: #fff;
  margin-top: 8px;
  text-decoration: none;
}
.anniversary-pop-mask .coupon-pop .tool-row .btn.redeem {
  color: #148A62;
  background: #fff;
  margin-right: 36px;
  text-decoration: none;
}
.anniversary-pop-mask .coupon-pop .close-btn {
  position: absolute;
  right: 30px;
  top: 30px;
  background: url(../images/anniversary10vfx/view-close-icon.png) no-repeat center;
  width: 22px;
  height: 22px;
  display: inline-block;
  cursor: pointer;
  transition: all 0.3s ease;
}
.anniversary-pop-mask .coupon-pop .close-btn:hover {
  transform: rotate(180deg);
}
.anniversary-pop-mask .rules.win-rules {
  height: 340px;
}
.anniversary-pop-mask .rules.win-rules .guess-rules dt {
  font-size: 24px;
  color: #000000;
  font-weight: 700;
  margin-bottom: 10px;
}
.anniversary-pop-mask .rules.win-rules .guess-rules dd {
  font-size: 14px;
  color: #666666;
  line-height: 26px;
}
.anniversary-pop-mask .rules.win-rules .guess-rules dd .tag {
  font-weight: 700;
  color: #148A62;
}
.anniversary-pop-mask .rules.win-rules .guess-rules dd .jump-gift,
.anniversary-pop-mask .rules.win-rules .guess-rules dd .jump-harry {
  font-weight: 700;
  text-decoration: underline;
  color: #148A62;
}
.anniversary-pop-mask .coupon.video:before {
  position: absolute;
  left: -8px;
  top: -30px;
  background: url("../images/anniversary10vfx/view-line-t.png") no-repeat center transparent;
  width: 96px;
  height: 101px;
  content: '';
  display: block;
  margin: unset;
  bottom: unset;
}
.earth-pop {
  background-color: #F66800;
  padding: 6px 14px;
  white-space: nowrap;
  backdrop-filter: blur(6px);
  position: absolute;
  top: -44px;
  left: -40px;
  z-index: 999999999;
  color: #fff;
  border-radius: 4px;
}
.earth-pop .name {
  font-weight: 500;
  font-size: 13px;
  white-space: nowrap;
  color: #fff;
}
.typed-cursor {
  background: url("../images/anniversary10vfx/pen.png") no-repeat center;
  width: 32px;
  height: 16px;
  display: inline-block;
  background-size: contain;
}
@media screen and (min-width: 1442px) and (max-width: 1768px) {
  .panel.seven .earth-wrap {
    transform: scale(0.9);
    margin-top: 100px;
  }
  .panel.six .earth-wrap {
    transform: scale(0.9);
  }
  .panel.four .robot-wrap {
    transform: scale(0.9);
  }
  .panel.four .story-box-parent {
    transform: scale(0.9);
  }
  .panel.four .technology {
    bottom: -44px;
  }
}
@media screen and (max-width: 1440px) {
  .panel.seven .earth-wrap {
    transform: scale(0.9);
    margin-top: 50px;
  }
}
/*# sourceMappingURL=anniversary10vfx.css.map */