@charset "UTF-8";
HTML, body, div, h1, h2, h3, h4, h5, h6, ul, ol, dl, li, dt, dd, p, blockquote, pre, form, fieldset, table, th, td {
  border: none;
  font-family: 'PoppinsSemiBold',"微软雅黑","宋体";
  font-size: 14px;
  margin: 0px;
  padding: 0px; }

html, body {
  height: 100%;
  width: 100%;
  background: #111111; }

address, caption, cite, code, dfn, em, strong, th, var {
  font-style: normal;
  font-weight: normal; }

a {
  text-decoration: none; }

a:link {
  color: #fff; }

a:visited {
  color: #fff; }

a:hover {
  color: #fff; }

a:active {
  color: #fff; }

input::-ms-clear {
  display: none; }

input::-ms-reveal {
  display: none; }

input {
  -webkit-appearance: none;
  margin: 0;
  outline: none;
  padding: 0; }

input::-webkit-input-placeholder {
  color: #ccc; }

input::-ms-input-placeholder {
  color: #ccc; }

input::-moz-placeholder {
  color: #ccc; }

input[type=submit], input[type=button] {
  cursor: pointer; }

button[disabled], input[disabled] {
  cursor: default; }

img {
  border: none; }

ul, ol, li {
  list-style-type: none; }

/*公共方法*/
.clear {
  clear: both; }

.clearleft {
  clear: left; }

.clearright {
  clear: right; }

.floatleft {
  float: left; }

.floatright {
  float: right; }

.cursor {
  cursor: pointer; }

/*背景及色值表*/
.bg000 {
  background: #000; }

.color000 {
  color: #000; }

.none {
  display: none; }

@font-face {
  font-family: 'PoppinsBlack';
  src: url("../font/Poppins-Black.ttf"); }
@font-face {
  font-family: 'PoppinsBold';
  src: url("../font/Poppins-Bold.ttf"); }
@font-face {
  font-family: 'PoppinsExtraBold';
  src: url("../font/Poppins-ExtraBold.ttf"); }
@font-face {
  font-family: 'PoppinsItalic';
  src: url("../font/Poppins-Italic.ttf"); }
@font-face {
  font-family: 'PoppinsRegular';
  src: url("../font/Poppins-Regular.ttf"); }
@font-face {
  font-family: 'PoppinsSemiBold';
  src: url("../font/Poppins-SemiBold.ttf"); }
@font-face {
  font-family: 'PoppinsMedium';
  src: url("../font/Poppins-Medium.ttf"); }
.header {
  height: 100px;
  position: fixed;
  display: flex;
  width: 100%;
  z-index: 9999;
  background-color: rgba(0, 0, 0, 0.5);
  align-items: center; }
  .header h1 {
    padding: 0px 20px 0;
    cursor: pointer; }
  .header .header_menu {
    display: flex; }
    .header .header_menu > li {
      font-size: 18px;
      padding: 0px 30px 0px;
      font-family: 'PoppinsBold'; }
      .header .header_menu > li .header_menu_link {
        position: relative;
        color: #FFF;
        cursor: pointer;
        display: block; }
        .header .header_menu > li .header_menu_link:hover:before {
          left: 0;
          width: 100%; }
        .header .header_menu > li .header_menu_link:before {
          content: "";
          width: 0;
          border-bottom: 2px solid #FFF;
          position: absolute;
          bottom: -5px;
          left: 50%;
          transition: all linear 0.3s; }
      .header .header_menu > li:nth-child(2) .header_menu_link {
        font-size: 18px;
        font-family: 'PoppinsBold'; }
        .header .header_menu > li:nth-child(2) .header_menu_link .game_menu {
          position: absolute;
          background: rgba(231, 231, 232, 0.9);
          border-radius: 4px;
          width: 300px;
          left: -180%;
          top: 40px;
          display: flex;
          flex-direction: column;
          overflow: hidden;
          transition: height 0.3s;
          height: 0;
          box-sizing: border-box; }
          .header .header_menu > li:nth-child(2) .header_menu_link .game_menu.active {
            transition: height 0.3s; }
          .header .header_menu > li:nth-child(2) .header_menu_link .game_menu a {
            display: flex;
            flex: 1;
            line-height: 80px;
            color: #000;
            align-items: center;
            padding: 0 25px; }
            .header .header_menu > li:nth-child(2) .header_menu_link .game_menu a:hover {
              background: #FFF;
              cursor: pointer; }
            .header .header_menu > li:nth-child(2) .header_menu_link .game_menu a img {
              width: 45px;
              height: 45px;
              vertical-align: middle; }
            .header .header_menu > li:nth-child(2) .header_menu_link .game_menu a i {
              position: relative;
              width: 1px;
              height: 34px;
              margin: 0 13px; }
              .header .header_menu > li:nth-child(2) .header_menu_link .game_menu a i::after {
                content: '';
                position: absolute;
                display: inline-block;
                top: 0;
                right: 0;
                width: 1px;
                height: 34px;
                background: #CCC; }
  .header .header-right {
    margin-left: auto;
    display: flex; }
    .header .header-right a, .header .header-right .login, .header .header-right .logout {
      flex: 1;
      color: #FFF;
      width: 200px;
      height: 50px;
      background: rgba(255, 255, 255, 0.2);
      border-radius: 25px;
      margin-right: 25px;
      line-height: 50px;
      text-align: center;
      position: relative;
      z-index: 1;
      font-size: 18px;
      cursor: pointer;
      transition: background .5s; }
      .header .header-right a:hover, .header .header-right .login:hover, .header .header-right .logout:hover {
        background: rgba(255, 255, 255, 0.5);
        transition: background .5s; }
    .header .header-right .logout {
      display: flex;
      align-items: center;
      box-sizing: border-box;
      padding: 0 10px 0 20px;
      color: #FFF;
      cursor: pointer; }
      .header .header-right .logout i {
        flex: 2;
        font-size: 15px;
        font-style: normal; }
      .header .header-right .logout .logBtn {
        flex: 1; }
      .header .header-right .logout .logout_menu {
        position: absolute;
        background: #FFF;
        border-radius: 4px;
        width: 200px;
        left: 50%;
        transform: translate(-50%, 0);
        top: 52px;
        display: flex;
        flex-direction: column;
        overflow: hidden;
        transition: height 0.3s;
        box-sizing: border-box;
        box-shadow: 0px 2px 5px #888;
        height: 0; }
        .header .header-right .logout .logout_menu.active {
          transition: height 0.3s;
          height: 120px; }
        .header .header-right .logout .logout_menu li {
          color: #000;
          text-align: left;
          display: flex;
          flex: 1;
          font-size: 16px;
          box-sizing: border-box;
          padding: 0 10px; }
          .header .header-right .logout .logout_menu li span {
            display: flex;
            flex: 1;
            align-items: center;
            border-bottom: 1px solid #CCC; }
          .header .header-right .logout .logout_menu li:last-child span {
            border: none; }
          .header .header-right .logout .logout_menu li:hover {
            background: rgba(0, 0, 0, 0.1); }

.footer {
  height: 240px;
  width: 100%;
  background: #111111;
  display: flex;
  flex-direction: column;
  padding: 0 15%;
  box-sizing: border-box; }
  .footer .footer_top {
    border-bottom: 1px solid #333;
    display: flex;
    padding: 55px 0 25px; }
    .footer .footer_top h2 {
      display: flex;
      align-items: center; }
      .footer .footer_top h2 img {
        padding-right: 30px; }
      .footer .footer_top h2::after {
        content: "";
        width: 1px;
        border-left: 1px solid #FFF;
        height: 25px; }
    .footer .footer_top .footer_platform {
      display: flex;
      flex-direction: column;
      padding-left: 20px;
      top: -10px;
      position: relative; }
      .footer .footer_top .footer_platform i {
        font-style: normal;
        color: #FFF;
        font-size: 14px;
        flex: 1;
        padding-left: 10px; }
      .footer .footer_top .footer_platform ul {
        display: flex;
        flex: 2; }
        .footer .footer_top .footer_platform ul li {
          color: #FFF;
          padding: 0 10px;
          font-size: 30px; }
    .footer .footer_top .download {
      margin-left: auto; }
      .footer .footer_top .download a {
        margin-left: 13px; }
  .footer .footer_bot {
    padding-top: 25px;
    display: flex;
    align-items: center; }
    .footer .footer_bot p {
      color: #FFF; }
    .footer .footer_bot .footer_other {
      display: flex; }
      .footer .footer_bot .footer_other li {
        color: #FFF;
        padding-left: 35px;
        cursor: pointer; }
        .footer .footer_bot .footer_other li:hover {
          color: #CCC;
          text-decoration: underline; }
    .footer .footer_bot .language {
      margin-left: auto;
      min-width: 120px;
      height: 35px;
      background: #333;
      border-radius: 60px;
      color: #FFF;
      line-height: 35px;
      display: flex;
      align-items: center;
      justify-content: space-around;
      box-sizing: border-box;
      cursor: pointer;
      position: relative; }
      .footer .footer_bot .language .americas {
        vertical-align: middle;
        margin: 0 5px; }
      .footer .footer_bot .language .language_list {
        position: absolute;
        width: 120px;
        background: #333;
        border-radius: 5px;
        bottom: 100%;
        text-align: center;
        box-sizing: border-box;
        margin-bottom: 1px;
        overflow: hidden;
        transition: height 0.3s;
        height: 0;
        z-index: 999; }
        .footer .footer_bot .language .language_list.active {
          transition: height 0.3s; }
        .footer .footer_bot .language .language_list li {
          padding: 0 10px; }
          .footer .footer_bot .language .language_list li p {
            border-bottom: 1px solid #454545;
            height: 40px;
            box-sizing: border-box; }
          .footer .footer_bot .language .language_list li:last-child p {
            border-bottom: none; }
          .footer .footer_bot .language .language_list li.active {
            background: #454545; }
          .footer .footer_bot .language .language_list li:hover {
            background: #454545; }

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

.swiper-pagination {
  bottom: 50px !important;
  text-align: center;
  width: 100%; }
  .swiper-pagination .swiper-pagination-bullet {
    width: 100px;
    height: 10px;
    opacity: 1;
    border-radius: 0;
    background: white;
    text-align: left; }
  .swiper-pagination .swiper-pagination-bullet-active {
    background: #333333;
    position: relative; }
    .swiper-pagination .swiper-pagination-bullet-active span {
      position: absolute;
      display: inline-block;
      height: 10px;
      background: #333333;
      background: #666;
      animation: process 5s linear forwards; }

.swiper-button {
    width: 40px !important;
    height: 80px !important;
  background: rgba(0, 0, 0, 0.4); }
  .swiper-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    z-index: -1;
    opacity: 0;
    border-radius: 40px;
    transform: scale3d(0.1, 0.1, 0.1);
    transition: transform 1s, opacity 1s, border-radius 1s;
    transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1); }
  .swiper-button:hover::before {
    opacity: 1;
    border-radius: 0px;
    transform: translate3d(0, 0, 0); }

.swiper-button-prev {
  left: 10%; }

.swiper-button-next {
  right: 10%; }

.swiper-button-next,
.swiper-button-prev {
  opacity: 0;
  transition: opacity 1s; }

.swiper-container:hover .swiper-button-next,
.swiper-container:hover .swiper-button-prev {
  text-align: center;
  line-height: 80px;
  opacity: 1;
  transition: opacity 1s; }

.swiper-container {
  --swiper-navigation-color: #FFF;
  --swiper-navigation-size: 20px; }

@keyframes process {
  0% {
    width: 0; }
  100% {
    width: 100%; } }

/* 默认隐藏移动端元素 */
.mobile-nav,
.mobile-menu-btn,
.mobile-nav-header,
.mobile-close-btn,
.mobile-nav-menu {
  display: none;
}

/* ===================== 移动端适配 ===================== */
@media screen and (max-width: 768px) {
  /* 移动端菜单按钮 */
  .mobile-menu-btn {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 24px;
    height: 24px;
    cursor: pointer;
    margin-left: 15px;
    margin-right: 20px;
  }
  .mobile-menu-btn span {
    display: block;
    width: 100%;
    height: 2px;
    background: #fff;
    margin: 3px 0;
    border-radius: 1px;
  }

  /* 移动端导航覆盖层 */
  .mobile-nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    flex-direction: column;
    padding: 20px;
    box-sizing: border-box;
  }
  .mobile-nav.active {
    display: flex;
  }
  .mobile-nav-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
  }
  .mobile-close-btn {
    display: block;
    width: 30px;
    height: 30px;
    position: relative;
    cursor: pointer;
  }
  .mobile-close-btn span {
    display: block;
    width: 100%;
    height: 2px;
    background: #fff;
    position: absolute;
    top: 50%;
    left: 0;
  }
  .mobile-close-btn span:first-child {
    transform: rotate(45deg);
  }
  .mobile-close-btn span:last-child {
    transform: rotate(-45deg);
  }
  .mobile-nav-menu {
    display: block;
    list-style: none;
    padding: 0;
  }
  .mobile-nav-menu li {
    border-bottom: 1px solid #333;
  }
  .mobile-nav-menu li a {
    display: block;
    color: #fff;
    font-size: 20px;
    padding: 20px 0;
    font-family: 'PoppinsBold';
  }

  /* Header 移动端 */
  .header {
    height: 70px;
    position: relative;
  }
  .header > a img {
    width: 120px;
  }
  .header .header_menu {
    display: none;
  }
  .header .header-right .support {
    display: none;
  }

  /* Swiper 移动端 */
  .swiper-slide img {
    width: 100%;
    height: auto;
    display: block;
  }
  .swiper-pagination {
    bottom: 20px !important;
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    padding: 0 20px;
    box-sizing: border-box;
  }
  .swiper-pagination .swiper-pagination-bullet {
    flex: 1 1 auto;
    max-width: 40px;
    min-width: 4px;
    height: 6px;
    width: auto;
  }
  .swiper-pagination .swiper-pagination-bullet-active span {
    height: 6px;
  }
  .swiper-button-prev,
  .swiper-button-next {
    display: none !important;
  }

  /* Footer 移动端 */
  .footer {
    height: auto;
    padding: 0 20px;
  }
  .footer .footer_top {
    flex-direction: column;
    align-items: center;
    padding: 30px 0 20px;
  }
  .footer .footer_top h2 {
    margin-bottom: 20px;
  }
  .footer .footer_top h2 img {
    padding-right: 0;
  }
  .footer .footer_top h2::after {
    display: none;
  }
  .footer .footer_top .footer_platform {
    align-items: center;
    padding-left: 0;
    top: 0;
    margin-bottom: 20px;
  }
  .footer .footer_top .footer_platform ul {
    justify-content: center;
  }
  .footer .footer_top .download {
    margin-left: 0;
    display: flex;
    gap: 10px;
  }
  .footer .footer_top .download a img {
    height: 36px;
    width: auto;
    display: block;
  }
  .footer .footer_bot {
    flex-direction: column;
    padding: 20px 0 30px;
    text-align: center;
  }
  .footer .footer_bot p {
    font-size: 12px;
    margin-bottom: 15px;
  }
  .footer .footer_bot .footer_other {
    margin-bottom: 15px;
  }
  .footer .footer_bot .footer_other li {
    padding: 0 10px;
    font-size: 12px;
  }
  .footer .footer_bot .language {
    margin-left: 0;
  }
}
