@charset "utf-8";
@import url('animate.min.css');
/* CSS Document */
@font-face {
  font-family: "Sans";
  src: url("../fonts/SourceHanSansCN-Regular.otf");
  font-style: normal;
}

@font-face {
  font-family: "Sans-Medium";
  src: url("../fonts/SourceHanSansCN-Medium.otf");
  font-style: normal;
}

@font-face {
  font-family: "Sans-Bold";
  src: url("../fonts/SourceHanSansCN-Bold.otf");
  font-style: normal;
}

@font-face {
  font-family: "Helvetica";
  src: url('../fonts/Helvetica/Helvetica.woff2') format('woff2'),
  url('../fonts/Helvetica/Helvetica.woff') format('woff'),
  url('../fonts/Helvetica/Helvetica.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Helvetica-Bold";
  src: url('../fonts/Helvetica/Helvetica-Bold.eot');
  src: url('../fonts/Helvetica/Helvetica-Bold.eot?#iefix') format('embedded-opentype'),
  url('../fonts/Helvetica/Helvetica-Bold.woff2') format('woff2'),
  url('../fonts/Helvetica/Helvetica-Bold.woff') format('woff'),
  url('../fonts/Helvetica/Helvetica-Bold.ttf') format('truetype');
  font-style: normal;
}

html, body {
  height: 100%;
}

html {
  font-size: 100px;
  /*filter: grayscale(100%);*/
  /*
  font-size: 0.73vw;
  */
}

body {
  font-family: "Sans", "Microsoft Yahei";
  margin: 0;
  padding: 0;
  background-color: #FAFBFD;
  color: #1D1D1D;
}

.fix-body {
  padding-top: 0.96rem;
}

section, article, main, time, div, ul, li, dl, dt, dd, a, p, span, img {
  list-style: none;
  border: 0;
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box; /* Safari */
  -moz-box-sizing: border-box; /* Firefox */
  box-sizing: border-box;
}

img, a {
  display: block;
  outline: none;
}

.irs {
  max-width: 100%;
  margin: 0 auto;
}

.ft-b {
  font-family: "Sans-Bold";
}

.ft-m {
  font-family: "Sans-Medium";
}

.bws {
  background-color: #FFF;
}

.hidden {
  display: none;
}

.relative {
  position: relative;
}

a:link, a:visited {
  color: #1D1D1D;
  text-decoration: none;
}

a:hover, a:active {
  color: #F18839;
  outline: none;
}

.eps {
  white-space: nowrap;
  word-break: keep-all;
  text-overflow: ellipsis;
  overflow: hidden;
}

.eps2 {
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.eps3 {
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

.cls {
  overflow: hidden;
  clear: both;
}

.wrapper {
  width: 100%;
  padding-left: 0.18rem;
  padding-right: 0.18rem;
}

.visible-xs {
  display: none !important;
}

.hidden-xs {
  display: block !important;
}

.header {
  position: fixed;
  top: 0.05rem;
  left: 0;
  right: -1px;
  padding: 0.05rem 0.18rem;
  z-index: 19;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s;
}

.header.fix-up {
  top: -1rem;
}

.header.fixed {
  /*background-color: #ffffff;*/
  /*
  background: linear-gradient(90deg, #8BE2FF 0%, #D3F59D 41%, #FFA14E 100%);
  box-shadow: 0 0.1rem 0.12rem 0 rgba(168, 168, 168, 0.13);
  border-radius: 0.06rem;
  */
  top: 0;
  box-shadow: 0 0.1rem 0.12rem 0 rgba(168, 168, 168, 0.13);
  background-color: #FAFBFD;
}

.header.sta {
  top: 0;
  box-shadow: 0 0.1rem 0.12rem 0 rgba(168, 168, 168, 0.13);
  background-color: #FFFFFF;
}

.header .logo {
  height: 0.34rem;
}

.header .logo img {
  max-height: 100%;
}

.header .right {
  flex-shrink: 0;
  display: flex;
}

.header a.menu-lang {
  clear: both;
  width: 0.39rem;
  height: 0.39rem;
  background-color: #ffffff;
  box-shadow: 0 0 0.12rem 0 rgba(168, 168, 168, 0.13);
  margin-right: 0.05rem;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.header .menu-lang span {
  font-size: 0.16rem;
  font-family: Helvetica-Bold;
}

.header .menu-button {
  clear: both;
  width: 0.39rem;
  height: 0.39rem;
  background-color: #ffffff;
  box-shadow: 0 0 0.12rem 0 rgba(168, 168, 168, 0.13);
  /*
  display: flex;
  justify-content: center;
  align-items: center;
  */
  background-image: url('../images/icon_menu.png');
  background-position: center;
  background-repeat: no-repeat;
  background-size: 0.14rem;
  border-radius: 100%;
}

.header .menu-button.close {
  background-image: url('../images/icon_menu_close.png');
  background-color: transparent;
  box-shadow: none;
}

.header.fixed .menu-button, .header.fixed .menu-lang {
  box-shadow: none;
  background-color: transparent;
}

.app-menu {
  position: fixed;
  background-color: #FAFBFD;
  top: 0;
  bottom: 0;
  left: 100vw;
  /*right: 0;*/
  width: 100%;
  z-index: 18;
  opacity: 0;
  transition: left 0.3s, opacity 0.3s;
}

.app-menu.on {
  left: 0;
  opacity: 1;
}

.app-menu .panel {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.app-menu .panel a {
  display: flex;
  font-size: 0.18rem;
  padding: 0.12rem 0;
}

.app-menu .panel a:link, .app-menu .panel a:visited {
  color: #1D1D1D;
}

.app-menu .panel a:hover, .app-menu .panel a:active {
  color: #FF973B;
}

.app-menu .panel a.member {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: 0.1rem;
}

.app-menu .panel a.member .icon {
  width: 0.38rem;
}

.pagination {
  clear: both;
  display: block;
  text-align: center;
  font-size: 0;
  margin: 0 auto 0.3rem auto;
}

.pagination li {
  display: inline-block;
  margin: 0 0.03rem;
}

.pagination li span, .pagination li a {
  display: inline-block;
  padding: 0.06rem 0.1rem;
  border: 1px #DADADA solid;
  color: #999;
  font-size: 0.14rem;
}

.pagination li.disable span {
  color: #CCC;
}

.pagination li.active span, .pagination li a:hover {
  background-color: #0086F6;
  color: #FFF;
  border: 1px #0086F6 solid;
}

.panel-name {
  font-size: 0.24rem;
  color: #F18839;
  font-family: Sans-Bold;
  display: flex;
  justify-content: center;
}

.swiper-pagination-bullet {
  --swiper-pagination-bullet-width: 0.25rem;
  --swiper-pagination-bullet-height: 0.08rem;
  --swiper-pagination-bullet-inactive-color: rgba(168, 168, 168, 0.63);
  --swiper-pagination-bullet-inactive-opacity: 1;
  border-radius: 0.03rem !important;
}

.swiper-pagination-bullet-active {
  --swiper-pagination-color: linear-gradient(90deg, #8BE2FF 0%, #D3F59D 41%, #FFA14E 100%);;
}

.gb-dots {
  clear: both;
  font-size: 0;
  display: flex;
  justify-content: center;
  margin-top: 0.3rem;
}

.link-panel {
  clear: both;
  display: flex;
  justify-content: center;
}

.sk-button, a.sk-button {
  display: inline-flex;
  align-items: center;
  height: 0.4rem;
  border: 0.02rem solid #EEEEEE;
  background: linear-gradient(90deg, #8BE2FF 0%, #D3F59D 41%, #FFA14E 100%);
  box-shadow: 0 0 0.12rem 0 rgba(168,168,168,0.13);
  border-radius: 0.2rem;
  padding: 0 0.25rem;
  font-size: 0.14rem;
  font-family: Sans-Medium;
  transition: background 0.3s;
}

.btn_flash {
  overflow: hidden;
  position: relative;
}

.btn_flash .anim {
  -moz-transform: translateY(-50%) translateX(-50%);
  -ms-transform: translateY(-50%) translateX(-50%);
  -webkit-transform: translateY(-50%) translateX(-50%);
  transform: translateY(-50%) translateX(-50%);
  position: absolute;
  top: 50%;
  left: 50%;
}

.btn_flash .anim:before {
  position: relative;
  content: '';
  display: block;
  margin-top: 100%;
}

.btn_flash .anim:after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  border-radius: 50%;
}

.btn_flash:hover .anim {
  -moz-animation: anim-out 0.75s;
  -webkit-animation: anim-out 0.75s;
  animation: anim-out 0.75s;
}

.btn_flash:hover .anim:after {
  -moz-animation: anim-out-pseudo 0.75s;
  -webkit-animation: anim-out-pseudo 0.75s;
  animation: anim-out-pseudo 0.75s;
}

@-webkit-keyframes anim-out-pseudo {
  0% {
    background: rgba(255, 255, 255, 0.25);
  }
  100% {
    background: transparent;
  }
}

@-moz-keyframes anim-out-pseudo {
  0% {
    background: rgba(255, 255, 255, 0.25);
  }
  100% {
    background: transparent;
  }
}

@-ms-keyframes anim-out-pseudo {
  0% {
    background: rgba(255, 255, 255, 0.25);
  }
  100% {
    background: transparent;
  }
}

@keyframes anim-out-pseudo {
  0% {
    background: rgba(255, 255, 255, 0.25);
  }
  100% {
    background: transparent;
  }
}

@-webkit-keyframes anim-out {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}

@-moz-keyframes anim-out {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}

@-ms-keyframes anim-out {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}

@keyframes anim-out {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}

@-webkit-keyframes zoomUp {
  0% {
    bottom: 1%;
  }
  50% {
    bottom: 2%;
  }
  100% {
    bottom: 3%;
  }
}

@-webkit-keyframes zoomUpCn {
  0% {
    bottom: -10%;
  }
  50% {
    bottom: -9%;
  }
  100% {
    bottom: -8%;
  }
}

@keyframes anim-scale {
  0% {
    transform: scale(0);
  }
  100% {
    transform: scale(1);
  }
}
