:root {
  --swiper-theme-color: #007aff;
}

body {
  background-color: #f0f6ff;
}

.dots_block {
  position: absolute;
  width: 1200px;
  height: 20px;
  margin: auto;
  left: 0;
  right: 0;
  z-index: 50;
  bottom: 250px;
}

.dots_block .dots {
  position: absolute;
  left: 50%;
  top: 0;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;

  .dot {
    position: relative;
    background-size: 100% 100%;
    background-repeat: no-repeat;
    transition: all 0.2s;
    color: transparent;
    opacity: 1;
    cursor: pointer;
    background-image: url(/images/hd.png);
    background-color: initial;
    width: 20px;
    height: 20px;

    &:hover {
      background-image: url(/images/hdon.png);
    }

    &:not(:first-child) {
      margin-left: 30px;
    }

    &.on {
      background-image: url(/images/hdon.png);
    }
  }
}

.lunbo_block {
  position: relative;
  width: 100%;
  overflow: hidden;
  height: 700px;
}

.prev {
  width: 39px;
  height: 80px;
  opacity: 0.5;
  background-color: #6c7ba8;
  position: absolute;
  top: 250px;
  left: 0;
  z-index: 50;
  background-image: url(/images/lunbo-arrow-left.png);
  background-size: cover;

  &:hover {
    opacity: 0.7;
    background-color: #468aff;
    cursor: pointer;
    background-image: url(/images/lunbo-arrow-left-a.png);
  }
}

.next {
  width: 39px;
  height: 80px;
  opacity: 0.5;
  background-color: #6c7ba8;
  position: absolute;
  top: 250px;
  right: 0;
  z-index: 50;
  background-image: url(/images/lunbo-arrow-next.png);
  background-size: cover;

  &:hover {
    opacity: 0.7;
    background-color: #468aff;
    cursor: pointer;
    background-image: url(/images/lunbo-arrow-right-a.png);
  }
}

/* 淡入動畫 */
.scale_animation_in {
  animation: scale_in 0.5s ease-out forwards;
  z-index: 2 !important;
}

@keyframes scale_in {
  from {
    transform: scale(0.9);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

/* 淡出動畫 */
.scale_animation_out {
  animation: scale_out 0.3s ease-out forwards;
  z-index: 1 !important;
}

@keyframes scale_out {
  from {
    transform: scale(1);
    opacity: 1;
  }
  to {
    transform: scale(1.05);
    opacity: 0;
  }
}

/* 輪播容器設定 */
#lunbo > div {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

/* 初始隱藏狀態 */
#lunbo > div:not(:first-child) {
  opacity: 0;
  transform: scale(0.8);
}

.index_block {
  background-color: #f0f6ff;
  overflow: hidden;
}

.index_wrap {
  width: 100%;
  min-width: 1200px;
  padding-bottom: 56px;
  background: #f0f6ff;

  .w1200 {
    position: relative;
    width: 1200px;
    padding-bottom: 56px;
    margin: 0 auto;
  }

  .index_section {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin-top: 48px;
    text-align: center;
  }
}

.index_section .position-r {
  overflow: visible;
  position: relative;
}

.index_section .index_content {
  position: relative;
  width: 100%;

  .content_wrapper {
    position: relative;
    width: 100%;
    height: 100%;
  }
}

.notice {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  width: 100%;
  height: 40px;
  border-radius: 20px;
  background: linear-gradient(180deg, #fff 14.47%, #ecefff 74.07%, #fefeff 98.06%);
  border: 1px solid #d1d5f5;
  padding: 0 10px 0 18px;
  background: linear-gradient(180deg, #fff, #e7f0ff);
  box-shadow: 0 4px 8px rgba(136, 149, 205, 0.2), inset 0 0 12px rgba(255, 255, 255, 0.72);
  margin-top: 31px;

  .notice_wrapper {
    width: 100%;
    height: 100%;
    position: relative;

    .notice_icon {
      height: 100%;
      position: relative;
      z-index: 1;
      display: -webkit-flex;
      display: flex;
      -webkit-align-items: center;
      align-items: center;
    }

    .notice_content {
      width: 1030px;
      margin-left: 56px;
      height: 100%;
      position: absolute;
      top: 0;
      display: -webkit-flex;
      display: flex;
      -webkit-align-items: center;
      align-items: center;

      .block {
        width: 100%;
        height: 100%;
        position: absolute;
        top: 0;
        left: 0;
        overflow: hidden;
      }
    }
  }

  .more_btn {
    width: 75px;
    height: 26px;
    line-height: 26px;
    margin-left: 10px;
    font-size: 14px;
    text-align: center;
    border: 1px solid #179cff;
    border-radius: 13px;
    color: #179cff;
    cursor: pointer;
    transition: all 0.2s;

    &:hover {
      background: #179cff;
      color: #fff;
    }
  }
}

.app_flex {
  display: flex;
  margin-top: 42px;
}

.app_flex .app_right {
  width: 456px;
  min-width: 456px;
  height: 580px;
  border: none;
  background: url(/images/app_bg.png) no-repeat 50%/456px 580px;
  box-shadow: 0 6px 20px 3px rgba(201, 211, 237, 0.5);
  border-radius: 24px;
}

.app_flex .app_block {
  width: 100%;
  height: 100%;
}

.app_flex .app_block .appImgBlock {
  position: relative;
  width: 744px;
  height: 580px;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  z-index: 2;
}

.app_flex .app_block .appImgBlock .Mha1Rx_AWIKDm_SIcOjSsA__ {
  position: absolute;
  top: 0;
  left: -85px;
  pointer-events: none;
}

.app_flex .app_block .content {
  width: 456px;
  min-width: 456px;
  padding: 36px;
  box-sizing: border-box;
}

.app_flex .app_block .content .title h3 {
  font-size: 40px;
  color: #7981a4;
  font-weight: 700;
}

.app_flex .app_block .content .title p {
  margin-top: 12px;
  line-height: 28px;
  font-size: 18px;
  color: #7981a4;
  text-align: justify;
  font-weight: 400;
}

.app_flex .app_block .content .download {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  margin-top: 50px;
  color: #7981a4;
}

.app_flex .app_block .content .download .downQrcode {
  text-align: center;
  width: 182px;
  height: 224px;
  box-sizing: border-box;
  background: #f0f6ff;
  border: 1px solid #fff;
  border-radius: 12px;
  padding: 23px 31px 12px;

  div {
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: center;
    justify-content: center;
    width: 120px;
    height: 120px;
    border-radius: 4px;
    overflow: hidden;

    img {
      width: 100%;
      height: 100%;
    }
  }
}

.app_flex .app_block .content .download .downQrcode p:nth-child(2) {
  margin-top: 23px;
  font-size: 16px;
  font-weight: 500;
  line-height: 22px;
}

.app_flex .app_block .content .download .downQrcode p:nth-last-child(1) {
  margin-top: 2px;
  font-size: 12px;
  line-height: 22px;
}

.downUrl {
  width: 182px;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-align-items: center;
  align-items: center;
  background: #f0f6ff;
  border: 1px solid #fff;
  border-radius: 12px;
  padding: 12px;
  box-sizing: border-box;
}

.downUrl .urlBlock {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  width: 170px;
  height: 142px;
  padding: 6px;
}

.downUrl .urlBlock ul {
  height: 100%;
  width: 100%;
  box-sizing: border-box;
  overflow-y: auto;
  overflow: hidden;
}

.downUrl .urlBlock ul li {
  text-align: center;
}

.downUrl .urlBlock ul li span {
  max-width: 100%;
  display: inline-block;
  text-overflow: ellipsis;
  height: 28px;
  text-align: left;
  text-decoration: underline;
  color: #179cff;
  cursor: pointer;
}

.downUrl .urlBlock ul li span:hover {
  transition: all 0.2s;
  color: #7981a4;
}

.downUrl p:nth-child(2) {
  margin-top: 12px;
  font-size: 16px;
  font-weight: 500;
  line-height: 22px;
}

.downUrl p:nth-last-child(1) {
  margin-top: 2px;
  font-size: 12px;
  line-height: 22px;
}

.hot_game {
  position: relative;
  box-sizing: border-box;
  padding-top: 48px;
}

.hot_game_navbar {
  position: relative;
  display: -webkit-flex;
  display: flex;
  z-index: 1;
  -webkit-justify-content: center;
  justify-content: center;
  margin: 0px;

  .hot_game_navList {
    position: relative;
    font-size: 18px;

    .tab-item-button {
      float: left;
      display: -webkit-flex;
      display: flex;
      -webkit-justify-content: center;
      justify-content: center;
      -webkit-align-items: center;
      align-items: center;
      width: 120px;
      height: 40px;
      line-height: 40px;
      text-align: center;
      background-size: cover;
      border-radius: 30px;
      color: rgb(121, 129, 164);
      box-shadow: 0 4px 8px 0 rgba(194, 211, 222, 0.5);
      background-image: url("/images/hot-btn.png");
      cursor: pointer;

      &:not(:first-child) {
        margin-left: 12px;
      }

      span {
        font-size: 16px;
        font-weight: 500;
        font-family: PingFang SC;
      }
    }

    .active {
      background-image: none !important;
      position: relative;
      z-index: 1;
      color: #fff;

      &:before {
        content: "";
        z-index: -1;
        top: 0;
        display: block;
        width: 100%;
        height: 40px;
        position: absolute;
        left: 50%;
        background-size: 100% 100%;
        background-position: 50%;
        background-repeat: no-repeat;
        -webkit-transform: translate3d(-50%, 0, 0);
        transform: translate3d(-50%, 0, 0);
        box-shadow: 0 2px 4px 0 rgba(93, 167, 235, 0.8);
        border-radius: 30px;
        background-image: url(/images/hot-btnactuve.png);
      }
    }
  }
}

.hot_game .hot_game_imgBlock {
  width: 100%;
  height: 100%;
  display: flex;
  margin-top: 8px;

  .hot_game_img {
    position: relative;
    width: 750px;
    height: 590px;
    left: -30px;
    z-index: 3;
  }

  .hot_game_bg {
    width: 700px;
    height: 454px;
    position: relative;
    margin-top: 35px;
    margin-left: -220px;
    border: none;
    box-shadow: rgba(201, 211, 237, 0.5) 0px 6px 26px -4px;
    background: url("/images/hotgame-bg.png") 50% center / 100% no-repeat;
    border-radius: 24px;
    z-index: 2;
  }
}

.hot_game .hot_game_contentBlock {
  position: absolute;
  left: 705px;
  top: 210px;
  z-index: 2;

  .content_title {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    position: relative;

    .title_text {
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      margin-left: 12px;
      position: absolute;

      .percent {
        font-size: 37px;
        line-height: 30px;
        color: rgb(23, 156, 255);
        margin-bottom: -2px;
        font-family: Akrobat-Bold;

        span {
          font-weight: 900;
          font-size: 24px;
        }
      }

      .text {
        display: inline-block;
        width: 88px;
        text-align: center;
        border-radius: 11px;
        padding: 3px 0px;
        font-size: 16px;
        line-height: 16px;
        font-family: Akrobat;
        color: rgb(121, 129, 164);
        background: linear-gradient(rgb(255, 255, 255), rgb(229, 233, 251) 98.06%), linear-gradient(rgb(255, 255, 255) 5.45%, rgb(228, 232, 239) 104.57%);
        box-shadow: rgba(112, 146, 215, 0.22) 0px 2px 6px 0px, rgb(255, 255, 255) 0px -1px 0px 0px inset;
      }
    }

    .sp {
      top: 6px;
      left: 300px;
    }
    .re {
      top: 6px;
      left: 280px;
    }
    .qi {
      top: 70px;
      left: -4px;
    }
    .et {
      top: 6px;
      left: 330px;
    }
    .el {
      top: 70px;
      left: -4px;
    }
    .fi {
      top: 6px;
      left: 300px;
    }
  }

  .content_text {
    width: 400px;
    line-height: 1.5;
    margin-top: 11px;
    font-size: 16px;
    color: rgb(121, 129, 164);
    text-align: left;
    margin-bottom: 10px !important;
  }
}

.hot_game .hot_game_contentBlock .game_brands {
  margin-top: 30px;

  .brands_list {
    position: relative;
    display: flex;

    .brand_item {
      position: relative;
      cursor: pointer;

      .brand_name {
        margin-top: 8px;
        height: 14px;
        font-size: 14px;
        font-weight: 500;
        color: rgb(121, 129, 164);
        text-align: center;
      }
    }
  }
}

.hot_game .hot_game_contentBlock .game_brands .brands_list .brand_item .icon_block {
  width: 58px;
  height: 58px;
  margin: 0px 4px;
  background: url("/images/hotgame-icon-bg.png") 0px 0px / cover no-repeat;
  border-radius: 12.7px;
  box-shadow: rgba(112, 146, 215, 0.14) 0px 4px 8px 0px;
  position: relative;

  img {
    width: 50px;
    height: 50px;
    display: inline-block;
    background-size: cover;
    position: absolute;
    left: 4px;
    top: 4px;
    opacity: 1;
    z-index: 1;
  }

  .icon_hover {
    opacity: 0;
    z-index: 2;
  }

  &:hover {
    background-image: url("/images/hotgame-icon-bgactive.png");
    animation: 0.5s ease 0s 1 normal forwards running icon_animation;
    box-shadow: rgb(182, 191, 219) 0px 4px 8px 0px;

    .icon_hover {
      opacity: 1;
    }
  }
}

.hot_game .content_animation {
  animation: 0.48s cubic-bezier(0.17, 0.17, 0.67, 1) 0s 1 normal none running content_animation;
}

.hot_game .img_animation {
  animation: 0.76s cubic-bezier(0, 0, 0.2, 1) 0s 1 normal none running img_animation;
}

@-webkit-keyframes icon_animation {
  0% {
    transform: scale(1.1);
  }

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

@keyframes content_animation {
  0% {
    opacity: 0;
    transform: translateX(0px);
  }

  50% {
    opacity: 0;
    transform: translateX(-40px);
  }

  51% {
    transform: translateX(40px);
  }

  100% {
    opacity: 1;
  }
}

@keyframes img_animation {
  0% {
    opacity: 0;
    transform: translateX(0px);
  }

  31% {
    opacity: 0;
    transform: translateX(-40px);
  }

  47% {
    opacity: 0;
    transform: translateX(40px);
  }

  100% {
    opacity: 1;
    transform: translateX(0px);
  }
}

.service_content {
  position: relative;
  padding-top: 48px;
  z-index: 0;
}

.service_content .service_animate {
  position: relative;
}

.service_content .service_animate .animate_items {
  display: flex;
}

.service_content .service_animate .animate_items .item {
  width: 300px;
  height: 230px;
  text-align: center;

  .item_block {
    position: relative;
    width: 160px;
    height: 137px;
    margin: 7px auto 0px;
    background: url("/images/number.png") 0% 0% / cover no-repeat;
  }

  .text1 {
    margin-top: 28px;
    margin-bottom: 2px;
    font-size: 18px;
    font-weight: 500;
    color: rgb(48, 52, 66);
    line-height: 25px;
  }

  .text2 {
    line-height: 15px;
    font-size: 12px;
    color: rgb(121, 129, 164);
    font-weight: 400;
  }
}

.service_content .service_animate .animate_items .item .item_block .canvas_block {
  position: absolute;
  top: 16px;
  left: 15px;
  transform: rotate(120deg);
}

.service_content .service_animate .animate_items .item .item_block .items_text {
  position: relative;
  text-align: center;
  padding-top: 48px;

  & > p {
    line-height: 1;
  }

  p:nth-child(1) {
    opacity: 0.5;
    font-family: Akrobat;
    font-weight: 500;
    font-size: 12px;
    color: rgb(121, 129, 164);
    transform: scale(0.666);
  }

  p:nth-child(2) {
    font-family: Akrobat;
    font-size: 64px;
    font-weight: 800;
    color: rgb(23, 156, 255);
    margin-top: -6px;
    margin-bottom: -2px;
  }

  p:last-child() {
    font-size: 12px;
    font-weight: 700;
    color: rgb(121, 129, 164);
  }
}

.service_content .service_explain {
  position: relative;
  margin-top: 48px;
}

.service_content .service_explain .explain_lists {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;

  .explain_item {
    position: relative;
    display: flex;
    justify-content: space-between;
    width: 580px;
    height: 140px;
    border-radius: 24px;
    background: url(/images/service_item.png) 50% center / 100% no-repeat;
    padding: 24px 24px 0px;
    box-shadow: rgba(205, 210, 221, 0.6) 0px 10px 20px 0px;

    &:not(:nth-child(-n + 2)) {
      margin-top: 24px;
    }

    img {
      width: 88px;
      height: 88px;
      display: block;
      margin-top: 2px;
    }

    .explain_text {
      position: relative;
      width: 424px;
      text-align: left;

      .text1 {
        font-weight: 500;
        font-size: 18px;
        line-height: 25px;
        color: rgb(48, 52, 66);
      }

      .text2 {
        font-weight: 400;
        line-height: 22px;
        margin-top: 6px;
        font-size: 16px;
        color: rgb(121, 129, 164);
      }
    }
  }
}

.bodyFooter {
  background: #303442;
  color: #7981a4;
  width: 100%;
  text-align: center;
  position: relative;
  line-height: 1;
}

.bodyFooter .footer_wrapper {
  width: 1200px;
  margin: 0 auto;
  position: relative;
}

.bodyFooter .footer_wrapper .footer_top {
  position: relative;
  padding: 16px 0;
  width: 100%;

  &:before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 2px;
    width: 100%;
    height: 1px;
    background: #252733;
  }

  &:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 1px;
    width: 100%;
    height: 1px;
    opacity: 0.2;
    background: #5b607b;
  }

  .footer_top_list {
    max-height: 100px;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-align-items: center;
    align-items: center;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    overflow: hidden;

    .footer_top_item {
      height: 50px;
      width: auto;
      position: relative;
      cursor: pointer;
    }
  }
}

.bodyFooter .footer_wrapper .footer_top .footer_top_list .footer_top_item .footer_imgBlock img {
  position: relative !important;
  width: auto !important;
  height: 50px !important;
  max-width: inherit !important;
}

.bodyFooter .footer_wrapper .footer_top .footer_top_list .footer_top_item .footer_imgBlock:nth-child(2) {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  opacity: 0;
  transition: 0.4s;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}

.bodyFooter .footer_wrapper .footer_top .footer_top_list .footer_top_item:hover > .footer_imgBlock:nth-child(2) {
  opacity: 1;
}

.bodyFooter .footer_wrapper .footer_bottom .footer_bottom_list {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  font-size: 14px;
  padding-block: 20px;

  .footer_bottom_item {
    position: relative;
    padding: 0 20px;
    cursor: pointer;
    transition: all 0.4s ease;
    color: #7981a4;

    &:hover {
      color: #179cff;
    }

    &:not(:last-child):after {
      content: "";
      display: block;
      position: absolute;
      top: 0;
      right: 0;
      width: 1px;
      height: 15px;
      background: #7981a4;
    }
  }
}

.help_page {
  background: #f0f2ff;
  padding-top: 90px;
  min-height: calc(100vh - 115px);
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;

  .help_flex {
    -webkit-flex: 1 1;
    flex: 1 1;
  }
}

.help_page .help_wrap {
  position: relative;
  width: 1200px;
  margin: 30px auto 50px;
  min-height: 616px;
  height: auto;
  display: -webkit-flex;
  display: flex;

  .help_nav {
    position: -webkit-sticky;
    position: sticky;
    top: 120px;
    height: -webkit-max-content;
    height: max-content;
    width: 220px;
    min-width: 220px;
    float: left;
    margin-right: 16px;
    border-radius: 12px;
    background-color: #fff;
    padding: 12px 0;

    .menu-style {
      background: none;
      border: none;
      color: #7981a4;
    }
  }

  .help_content {
    padding: 24px;
    width: 964px;
    height: auto;
    min-height: calc(100vh - 260px);
    overflow-y: auto;
    background-color: #fff;
    float: left;
    border-radius: 12px;
    box-sizing: border-box;

    h2 {
      font-size: 20px;
      font-weight: bold;
      color: #179cff;
      padding-bottom: 16px;
      border-bottom: 1px solid #ccc;
    }
  }
}

.help_nav .root-item .help-menu-title {
  padding: 0 30px !important;
  height: 46px;
  line-height: 46px;
  margin: 0;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: space-between;

  &:hover {
    color: #179cff;
  }

  .help-arrow {
    right: 30px;
    width: 6px;
    height: 10px;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    background: url(/images/help-arrow.png) no-repeat 50% / 100%;
  }
}

.help_nav .root-item.selected .help-menu-title .help-arrow {
  width: 10px;
  right: 30px;

  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  background-image: url(/images/help-arrow-active.png);
}

.help_nav .root-item.selected .help-menu-title span {
  color: #179cff;
}

.help-list.menu-root .help-menu-title {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  transition: border-color 0.3s, background 0.3s, padding 0.1s cubic-bezier(0.215, 0.61, 0.355, 1);
  color: #7981a4;

  & > span {
    margin-left: 12px;
  }
}

.help-list.menu-root .help-menu-title > .title-content {
  -webkit-flex: auto;
  flex: auto;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
}

.help-list > .root-item > .help-menu-title {
  height: 40px;
  line-height: 40px;
}

.hidden {
  display: none;
}

.egame_page {
  padding-top: 90px;
  background-color: #f0f2ff;
  background-color: #f0f6ff;
  padding-bottom: 60px;
}

.egame_page .egame_content_top {
  height: 470px;
  position: relative;
  width: 1200px;
  margin: 0 auto;
  height: 517px;

  .title_block {
    position: absolute;
    top: 0;
    left: 0;
    width: 520px;
    height: 312px;
  }

  .banner_block {
    width: 768px;
    height: 470px;
    position: absolute;
    top: 0;
    right: -60px;

    img {
      max-width: 100%;
    }
  }
}

.bonus {
  position: absolute;
  display: -webkit-flex;
  top: 360px;
  top: 332px;
  left: 0;
  display: flex;

  .semi {
    background-image: url(/images/semi.png);
    background-position: -419px 0;
  }

  .dot {
    background-image: url(/images/dot.png);
    background-position: -397px 0;
  }

  .dot,
  .semi {
    display: inline-block;
    height: 85px;
    width: 20px;
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: 100%;
    margin-top: 7px;
    margin-left: 7px;
  }
}

.bonus .bonus_block {
  position: relative;
  background: url(/images/counter-block.png) no-repeat 50%/100%;
  width: 67px;
  height: 98px;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;

  span {
    overflow: hidden;
    position: absolute;
    background-image: url(/images/num.png);
    background-size: 39px 880px;
    background-repeat: repeat;
    background-position: 0 0;
    transition: background 1s;
    top: 0;
    left: 0;
    width: 39px;
    height: 88px;
    margin: 4px 14px 6px;
  }

  &:not(:first-child) {
    margin-left: 6px;
  }
}

.bodyFooter .copyright {
  padding-bottom: 20px;
  text-align: center;
  margin-bottom: 20px;
  line-height: 17px;
  font-size: 12px;
  color: #7981a4;
}

.gototop {
  position: fixed;
  z-index: 100;
  bottom: 50px;
  right: 6px;
  width: 56px;
  height: 56px;
  border-radius: 6px;
  box-shadow: 0 4px 6px 0 rgba(184, 208, 255, 0.3);
  transition: all 0.4s ease;
  cursor: pointer;

  & > div {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-size: 56px;
    transition: all 0.4s ease;
  }

  .gototop_img {
    background-image: url(/images/gototop.png);
    opacity: 1;
    z-index: 10;
  }

  .gototop_img_h {
    background-image: url(/images/gototop-h.png);
    opacity: 0;
  }
}

.gototop:hover {
  box-shadow: 0 4px 6px 0 rgba(109, 88, 65, 0.3);

  .gototop_img {
    opacity: 0;
  }

  .gototop_img_h {
    opacity: 1;
  }
}
