@charset "UTF-8";
html {
  line-height: 1.15;
  font-size: 16px;
}
@media screen and (max-width: 790px) {
  html {
    font-size: 25.28px;
  }
}
@media screen and (max-width: 750px) {
  html {
    font-size: 24px;
  }
}
@media screen and (max-width: 700px) {
  html {
    font-size: 22.4px;
  }
}
@media screen and (max-width: 650px) {
  html {
    font-size: 20.8px;
  }
}
@media screen and (max-width: 600px) {
  html {
    font-size: 19.2px;
  }
}
@media screen and (max-width: 550px) {
  html {
    font-size: 17.6px;
  }
}
@media screen and (max-width: 500px) {
  html {
    font-size: 16px;
  }
}
@media screen and (max-width: 450px) {
  html {
    font-size: 14.4px;
  }
}
@media screen and (max-width: 414px) {
  html {
    font-size: 13.248px;
  }
}
@media screen and (max-width: 390px) {
  html {
    font-size: 12.48px;
  }
}
@media screen and (max-width: 375px) {
  html {
    font-size: 12px;
  }
}

body {
  font-family: "Source Han Sans CN", "San Francisco UI", "Microsoft YaHei";
  background: #fff;
  width: 100%;
  color: #111111;
  margin: 0 auto;
  font-weight: normal;
  min-width: 320px;
  -webkit-tap-highlight-color: transparent;
}

li {
  list-style: none;
}

img {
  border: 0;
  vertical-align: middle;
  width: 100%;
  -moz-user-select: none;
  /*火狐*/
  -webkit-user-select: none;
  /*webkit浏览器*/
  -ms-user-select: none;
  /*IE10*/
  -khtml-user-select: none;
  /*早期浏览器*/
  user-select: none;
}

a {
  color: inherit;
  text-decoration: none;
}

.need-come-in {
  opacity: 0;
}

@keyframes come-in {
  from {
    transform: translateY(150px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
.come-in {
  animation: come-in 0.8s cubic-bezier(0, -0.01, 0, 0.99) forwards;
}

.no-bottom-padding {
  padding-bottom: 0 !important;
}

#header {
  background: transparent;
  position: fixed;
  top: 0;
  width: 100%;
  height: 64px;
  z-index: 10;
  max-width: 100%;
  background: #ffffff;
  box-shadow: 0px 0px 3px rgba(0, 0, 0, 0.1);
  color: #111111;
}

header {
  height: 64px;
  display: flex;
  box-sizing: border-box;
  align-items: center;
  justify-content: space-between;
  max-width: 1328px;
  margin-left: auto !important;
  margin-right: auto !important;
  z-index: 10;
}
@media screen and (max-width: 1388px) {
  header {
    margin-right: 30px !important;
    margin-left: 30px !important;
  }
}
header .logo {
  flex: 0 0 auto;
  width: 186px;
  height: 40px;
  margin-right: 60px;
}
header .logo a {
  display: block;
}
@media screen and (max-width: 1130px) {
  header .logo {
    margin-right: 30px;
  }
}
@media screen and (max-width: 840px) {
  header .logo {
    display: none;
  }
}
@media screen and (max-width: 1000px) {
  header .logo {
    display: block;
  }
}
header .mobile-show {
  display: none;
}
header ul {
  flex-grow: 1;
  flex-shrink: 1;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding-left: 0;
}
header ul li {
  text-align: center;
  line-height: 64px;
  position: relative;
  z-index: 2;
  color: #333333;
  margin-right: 24px;
  white-space: nowrap;
}
@media screen and (max-width: 1130px) {
  header ul li {
    margin-right: 16px;
  }
}
@media screen and (max-width: 1040px) {
  header ul li {
    margin-right: 8px;
  }
}
header ul li .nav-title {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 0 4px;
}
header ul li .nav-title i.iconfont {
  margin-left: 3px;
  font-size: 12px;
  transform: rotate(90deg);
  transition: all 0.3s;
}
header ul li a {
  display: block;
  padding: 0 4px;
}
header ul li::after {
  content: "";
  position: absolute;
  bottom: 10px;
  left: 0;
  right: 0;
  display: block;
  width: 100%;
  height: 2px;
  opacity: 0;
  margin: 0 auto;
  transition: all 0.3s;
}
header ul li:hover {
  cursor: pointer;
  color: #3370ff;
}
@media screen and (max-width: 1000px) {
  header ul li:hover {
    color: #111111 !important;
  }
}
header ul li:hover .nav-title i {
  transform: rotate(-90deg);
}
@keyframes subnav-animation {
  from {
    top: -10px;
    opacity: 0;
  }
  to {
    top: 0;
    opacity: 1;
  }
}
header ul li:hover .subnav {
  display: block;
  animation-name: subnav-animation;
  animation-duration: 0.3s;
}
header ul li .subnav {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  padding-top: 72px;
  z-index: -1;
  width: 300px;
}
header ul li .subnav .subnav-popper {
  padding: 8px 0;
  background-color: #ffffff;
  text-align: left;
  box-shadow: 0px 0px 3px rgba(0, 0, 0, 0.1);
}
header ul li .subnav .subnav-popper a.active div {
  background-color: #f8f8f8;
  cursor: pointer;
}
header ul li .subnav .subnav-popper a.active div p {
  color: #3370ff;
}
header ul li .subnav .subnav-popper div {
  padding: 12px 16px;
}
header ul li .subnav .subnav-popper div p {
  font-size: 14px;
  line-height: 22px;
  margin: 0;
  color: #111111;
}
header ul li .subnav .subnav-popper div .title {
  font-size: 16px;
  line-height: 24px;
  font-weight: bold;
}
header ul li .subnav .subnav-popper div .title.has-tag {
  display: flex;
  align-items: center;
}
header ul li .subnav .subnav-popper div .title.has-tag .hot-tag {
  font-size: 12px;
  line-height: 22px;
  color: #ffffff;
  transform: scale(0.9);
  position: relative;
  margin-left: 18px;
  vertical-align: top;
  z-index: 2;
  display: inline-block;
  padding: 0;
}
header ul li .subnav .subnav-popper div .title.has-tag .hot-tag span {
  position: relative;
  z-index: 2;
}
header ul li .subnav .subnav-popper div .title.has-tag .hot-tag::after {
  z-index: 1;
  position: absolute;
  content: "";
  display: block;
  width: 40px;
  height: 20px;
  background: #f5222d;
  border-radius: 4px;
  top: 2px;
  left: -8px;
  transform: skew(-15deg);
}
header ul li .subnav .subnav-popper div .desc {
  color: #777777;
}
header ul li .subnav .subnav-popper div:hover {
  background-color: #f8f8f8;
  cursor: pointer;
}
header ul li .subnav .subnav-popper div:hover p {
  color: #3370ff;
}
header ul .active {
  color: #3370ff;
}
header ul .active::after {
  background-color: #3370ff;
  left: 0;
  right: 0;
  opacity: 1;
}
header .right-box {
  flex-grow: 0;
  flex-shrink: 0;
  display: flex;
}
header .button-box {
  text-align: center;
  font-size: 0;
}
@media screen and (max-width: 1000px) {
  header .button-box {
    margin-right: 40px;
  }
}
header .button-box a {
  display: block;
}
header .button-box .text-button {
  line-height: 28px;
  color: #3370ff;
  margin-right: 24px;
  font-size: 14px;
  vertical-align: middle;
  display: inline-block;
  cursor: pointer;
}
@media screen and (max-width: 1130px) {
  header .button-box .text-button {
    margin-right: 16px;
  }
}
@media screen and (max-width: 1040px) {
  header .button-box .text-button {
    margin-right: 8px;
  }
}
@media screen and (max-width: 750px) {
  header .button-box .text-button {
    font-size: 0.58rem;
    line-height: 1.17rem;
  }
}
header .button-box .text-button:hover {
  background-color: #ebf1ff;
}
header .button-box .text-button a {
  padding: 0 4px;
}
header .button-box .default-button {
  font-size: 14px;
  vertical-align: middle;
  display: inline-block;
  background: #3370ff;
  border-radius: 2px;
  line-height: 22px;
  color: #ffffff;
  cursor: pointer;
}
@media screen and (max-width: 750px) {
  header .button-box .default-button {
    font-size: 0.58rem;
    line-height: 1.1;
  }
}
header .button-box .default-button a {
  padding: 5px 16px;
}
@media screen and (max-width: 750px) {
  header .button-box .default-button a {
    padding: 5px 0.67rem;
  }
}
header .button-box .default-button:hover {
  background-color: #2152d9;
}

footer {
  overflow: hidden;
  background: #ffffff;
}
@media screen and (max-width: 1379px) {
  footer {
    margin-right: 30px;
    margin-left: 30px;
  }
}
@media screen and (max-width: 750px) {
  footer {
    margin-right: 1.1rem;
    margin-left: 1.1rem;
  }
}
footer .bottom-box {
  max-width: 1319px;
  margin-left: auto !important;
  margin-right: auto !important;
  width: 100%;
  border-bottom: 1px solid #dddddd;
  padding-top: 62px;
  padding-bottom: 70px;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 960px) {
  footer .bottom-box {
    justify-content: space-around;
  }
}
@media screen and (max-width: 750px) {
  footer .bottom-box {
    padding-top: 2.58rem;
    padding-bottom: 1.5rem;
    justify-content: space-between;
  }
}
footer .bottom-box .left {
  flex: 0 1 auto;
}
footer .bottom-box .left .img-box {
  width: 281px;
  height: 61px;
}
@media screen and (max-width: 750px) {
  footer .bottom-box .left .img-box {
    width: 15rem;
    height: 3.375rem;
  }
}
footer .bottom-box .left .connect-box {
  padding-top: 28px;
}
@media screen and (max-width: 750px) {
  footer .bottom-box .left .connect-box {
    padding-top: 1rem;
  }
}
footer .bottom-box .left .connect-box p {
  color: #999999;
  margin-top: 0;
  line-height: 1;
  font-size: 14px;
  margin-bottom: 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
@media screen and (max-width: 750px) {
  footer .bottom-box .left .connect-box p {
    line-height: 1.6;
    font-size: 0.67rem;
  }
}
@media screen and (max-width: 401px) {
  footer .bottom-box .left .connect-box p {
    align-items: flex-start;
  }
}
footer .bottom-box .left .connect-box p.email {
  color: #000001;
  font-size: 16px;
}
@media screen and (max-width: 750px) {
  footer .bottom-box .left .connect-box p.email {
    font-size: 0.67rem;
  }
}
footer .bottom-box .left .connect-box p img {
  width: 18px !important;
  height: auto !important;
  margin-right: 10px;
}
@media screen and (max-width: 750px) {
  footer .bottom-box .left .connect-box p img {
    margin-right: 0.42rem;
    width: 0.75rem !important;
  }
}
@media screen and (max-width: 550px) {
  footer .bottom-box .left .connect-box p img {
    width: 13px !important;
  }
}
@media screen and (max-width: 401px) {
  footer .bottom-box .left .connect-box p img {
    margin-top: 3px;
  }
}
footer .bottom-box .left .connect-box p img.small {
  width: 16px !important;
  height: auto !important;
}
@media screen and (max-width: 750px) {
  footer .bottom-box .left .connect-box p img.small {
    width: 0.67rem !important;
  }
}
@media screen and (max-width: 550px) {
  footer .bottom-box .left .connect-box p img.small {
    width: 12px !important;
  }
}
footer .bottom-box .left .connect-box div {
  font-size: 36px;
  line-height: 1;
  font-weight: bold;
  color: #000001;
  margin-bottom: 26px;
  margin-top: 8px;
}
@media screen and (max-width: 750px) {
  footer .bottom-box .left .connect-box div {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    margin-top: 0.33rem;
  }
}
footer .bottom-box .nav {
  flex: 1 1 auto;
  display: flex;
  justify-content: space-between;
  margin-left: 126px;
}
@media screen and (max-width: 1200px) {
  footer .bottom-box .nav {
    margin-left: 6%;
  }
}
@media screen and (max-width: 990px) {
  footer .bottom-box .nav {
    margin-left: 25px;
  }
}
@media screen and (max-width: 960px) {
  footer .bottom-box .nav {
    flex: 0 0 auto;
  }
}
@media screen and (max-width: 960px) {
  footer .bottom-box .nav > div:not(:last-child) {
    display: none;
  }
}
footer .bottom-box .nav > div .nav-title {
  font-size: 18px;
  font-weight: bold;
  color: #000001;
  line-height: 50px;
  margin-bottom: 8px;
}
@media screen and (max-width: 750px) {
  footer .bottom-box .nav > div .nav-title {
    line-height: 1.5;
    font-size: 1rem;
    margin-top: 0.34rem;
  }
}
footer .bottom-box .nav > div .nav-part {
  line-height: 36px;
  color: #666666;
}
footer .bottom-box .nav > div .wchat {
  width: 126px;
  height: 126px;
}
@media screen and (max-width: 750px) {
  footer .bottom-box .nav > div .wchat {
    width: 8.33rem;
    height: 8.33rem;
  }
}
footer .copyright {
  padding: 15px 0;
}
@media screen and (max-width: 750px) {
  footer .copyright {
    padding: 0.625rem 0;
  }
}
footer .copyright .mobile {
  display: none;
}
footer .copyright p {
  margin: 0;
}
footer .copyright p,
footer .copyright a {
  text-align: center;
  font-size: 14px;
  color: #000000;
  line-height: 24px;
}
@media screen and (max-width: 750px) {
  footer .copyright p,
  footer .copyright a {
    line-height: 1.6;
    font-size: 0.67rem;
  }
}

@media screen and (max-width: 1000px) {
  #header .mobile-header ul {
    display: none;
  }
  #header {
    height: 60px;
  }
}
@media screen and (max-width: 1000px) and (max-width: 768px) {
  #header {
    height: 50px;
  }
}
@media screen and (max-width: 1000px) {
  #header header {
    width: 100%;
    z-index: 100;
    height: 60px;
    margin-right: 0 !important;
    margin-left: 0 !important;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
    box-sizing: border-box;
  }
}
@media screen and (max-width: 1000px) and (max-width: 768px) {
  #header header {
    height: 50px;
  }
}
@media screen and (max-width: 1000px) {
  #header header .logo {
    width: 160px;
    height: auto;
    margin-right: 0;
  }
}
@media screen and (max-width: 1000px) and (max-width: 768px) {
  #header header .logo {
    width: 6rem;
  }
}
@media screen and (max-width: 1000px) and (max-width: 563px) {
  #header header .logo {
    width: 110px;
  }
}
@media screen and (max-width: 1000px) {
  #header header .mobile-show {
    display: block;
  }
  #header header .pc-show {
    display: none;
  }
  #header header .icon-searchclose {
    color: #111111;
    font-size: 26px;
  }
}
@media screen and (max-width: 1000px) and (max-width: 768px) {
  #header header .icon-searchclose {
    font-size: 1rem;
  }
}
@media screen and (max-width: 1000px) and (max-width: 563px) {
  #header header .icon-searchclose {
    font-size: 18px;
  }
}
@media screen and (max-width: 1000px) {
  #header header .icon-santiaoxian_1 {
    font-size: 26px;
  }
}
@media screen and (max-width: 1000px) and (max-width: 768px) {
  #header header .icon-santiaoxian_1 {
    font-size: 1rem;
  }
}
@media screen and (max-width: 1000px) and (max-width: 563px) {
  #header header .icon-santiaoxian_1 {
    font-size: 18px;
  }
}
@media screen and (max-width: 1000px) {
  #header header ul {
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
    flex: 1 1 auto;
    padding: 16px 0;
    padding-bottom: 10px;
    margin: 0;
    display: block;
    background-color: #ffffff;
    z-index: 200;
    border-top: 1px solid #ebebeb;
    overflow: auto;
    box-sizing: border-box;
  }
}
@media screen and (max-width: 1000px) and (max-width: 768px) {
  #header header ul {
    top: 50px;
  }
}
@media screen and (max-width: 1000px) {
  #header header ul li {
    margin: 0;
    padding: 0 60px;
    line-height: 64px;
    position: relative;
    z-index: 2;
    color: #111111;
    background-color: #ffffff;
    text-align: left;
    font-size: 28px;
  }
}
@media screen and (max-width: 1000px) and (max-width: 768px) {
  #header header ul li {
    padding: 0 2em;
    line-height: 2.8rem;
    font-size: 1rem;
  }
}
@media screen and (max-width: 1000px) {
  #header header ul li a {
    display: block;
  }
  #header header ul li::after {
    display: none;
  }
  #header header ul li.active {
    background-color: #3370ff;
    color: #ffffff;
  }
  #header.dark header ul li.active {
    color: #fff;
  }
}
.pagination {
  text-align: center;
  font-size: 0;
  padding-top: 32px;
  margin-top: 0 !important;
}
.pagination .pagination-item {
  display: inline-block;
  vertical-align: middle;
  width: 32px;
  height: 32px;
  background: #ffffff;
  border-radius: 2px;
  color: #606266;
  font-size: 14px;
  margin-left: 8px;
  line-height: 32px;
  text-align: center;
  cursor: pointer;
  border: 1px solid #d9d9d9;
  margin-bottom: 16px;
}
.pagination .pagination-item:first-child {
  margin-left: 0;
}
.pagination .pagination-item .iconfont {
  color: #262626;
  font-size: 14px;
}
.pagination .pagination-item:hover {
  color: #1890ff;
  border-color: #1890ff;
}
.pagination .pagination-item.active {
  color: #1890ff;
  border-color: #1890ff;
}
.pagination .pagination-item.disabled {
  color: #d9d9d9;
  cursor: not-allowed;
  border-color: #d9d9d9;
}
.pagination .pagination-item.disabled .iconfont {
  color: #d9d9d9;
}

.main {
  padding-top: 64px;
}
@media screen and (max-width: 1000px) {
  .main {
    padding-top: 60px;
  }
}
@media screen and (max-width: 768px) {
  .main {
    padding-top: 50px;
  }
}
.main .normal-padding {
  padding: 120px 0;
}
@media screen and (max-width: 750px) {
  .main .normal-padding {
    padding: 4rem 0;
  }
}
.main .normal-banner {
  height: 450px;
  position: relative;
  background: #f9f9ff;
  overflow: hidden;
}
@media screen and (max-width: 750px) {
  .main .normal-banner {
    height: 18.75rem;
  }
}
.main .normal-banner .normal-banner-bg {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
}
.main .normal-banner .normal-banner-up {
  height: 100%;
  margin-top: 0;
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin-left: auto !important;
  margin-right: auto !important;
}
@media screen and (max-width: 1260px) {
  .main .normal-banner .normal-banner-up {
    margin-right: 30px !important;
    margin-left: 30px !important;
  }
}
@media screen and (max-width: 750px) {
  .main .normal-banner .normal-banner-up {
    margin-right: 1.1rem !important;
    margin-left: 1.1rem !important;
  }
}
.main .normal-banner .normal-banner-up .normal-banner-left-text {
  position: absolute;
  left: 0;
  top: 120px;
  width: 100%;
  max-width: 620px;
  z-index: 2;
}
.main .normal-banner .normal-banner-up .normal-banner-left-text.white .normal-banner-left-text-desc,
.main .normal-banner .normal-banner-up .normal-banner-left-text.white .normal-banner-left-text-title {
  color: #ffffff;
}
@media screen and (max-width: 1050px) {
  .main .normal-banner .normal-banner-up .normal-banner-left-text {
    max-width: 100%;
    text-align: center;
  }
}
@media screen and (max-width: 750px) {
  .main .normal-banner .normal-banner-up .normal-banner-left-text {
    top: 3.9rem;
  }
}
.main .normal-banner .normal-banner-up .normal-banner-left-text-title {
  font-size: 42px;
  font-weight: bold;
  margin-bottom: 40px;
  line-height: 1;
  color: #000000;
}
@media screen and (max-width: 750px) {
  .main .normal-banner .normal-banner-up .normal-banner-left-text-title {
    margin-bottom: 1.5rem;
    font-size: 1.75rem;
  }
}
.main .normal-banner .normal-banner-up .normal-banner-left-text-desc {
  font-size: 24px;
  line-height: 36px;
  margin-bottom: 50px;
  color: #777777;
}
@media screen and (max-width: 750px) {
  .main .normal-banner .normal-banner-up .normal-banner-left-text-desc {
    margin-bottom: 2rem;
    line-height: 1.5rem;
    font-size: 1rem;
  }
}
@media screen and (max-width: 414px) {
  .main .normal-banner .normal-banner-up .normal-banner-left-text-desc {
    line-height: 22px;
    font-size: 14px;
  }
}
.main .normal-banner .normal-banner-up .normal-banner-left-text-button {
  background: #2040ff;
  color: #ffffff;
  border-radius: 24px;
  font-size: 18px;
  font-weight: bold;
  line-height: 48px;
  width: 200px;
  text-align: center;
  cursor: pointer;
}
.main .normal-banner .normal-banner-up .normal-banner-left-text-button a {
  display: block;
}
@media screen and (max-width: 1050px) {
  .main .normal-banner .normal-banner-up .normal-banner-left-text-button {
    margin: 0 auto;
  }
}
.main .normal-banner .normal-banner-up .normal-banner-left-text-button.green {
  background: linear-gradient(94deg, #50fce2, #58beff);
}
@media screen and (max-width: 750px) {
  .main .normal-banner .normal-banner-up .normal-banner-left-text-button {
    width: 8.3rem;
    line-height: 2rem;
    font-size: 0.75rem;
  }
}
.main .normal-banner .normal-banner-up .normal-banner-right-img {
  position: absolute;
  z-index: 1;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto 0;
  height: 410px;
}
@media screen and (max-width: 1050px) {
  .main .normal-banner .normal-banner-up .normal-banner-right-img {
    display: none;
  }
}
@media screen and (max-width: 750px) {
  .main .normal-banner .normal-banner-up .normal-banner-right-img {
    height: 17.5rem;
    opacity: 0.9;
  }
}
.main .normal-banner .normal-banner-up .normal-banner-right-img img {
  height: 100% !important;
  width: auto !important;
}
.main .block-box {
  background: #ffffff;
}
.main .block-box.second {
  background: #f9f9ff;
}
.main .block-title {
  font-size: 36px;
  line-height: 60px;
  font-weight: bold;
  color: #111111;
  text-align: center;
  max-width: 1328px;
  margin-left: auto !important;
  margin-right: auto !important;
}
@media screen and (max-width: 1388px) {
  .main .block-title {
    margin-right: 30px !important;
    margin-left: 30px !important;
  }
}
@media screen and (max-width: 750px) {
  .main .block-title {
    margin-right: 1.1rem !important;
    margin-left: 1.1rem !important;
    font-size: 1.5rem;
    line-height: 2.5rem;
  }
}
.main .block-title span {
  color: #3370ff;
}
.main .block-sub-title {
  max-width: 1319px;
  margin-left: auto !important;
  margin-right: auto !important;
  font-size: 20px;
  line-height: 30px;
  text-align: center;
  color: #777777;
  letter-spacing: 1px;
  margin-top: 12px;
}
@media screen and (max-width: 1379px) {
  .main .block-sub-title {
    margin-right: 30px !important;
    margin-left: 30px !important;
  }
}
@media screen and (max-width: 750px) {
  .main .block-sub-title {
    margin-right: 1.1rem !important;
    margin-left: 1.1rem !important;
    font-size: 0.83rem;
    line-height: 1.25rem;
    margin-top: 0.5rem;
  }
}
.main .block-main {
  margin-top: 60px;
  max-width: 1328px;
  margin-left: auto !important;
  margin-right: auto !important;
}
@media screen and (max-width: 1388px) {
  .main .block-main {
    margin-right: 30px !important;
    margin-left: 30px !important;
  }
}
@media screen and (max-width: 750px) {
  .main .block-main {
    margin-right: 1.1rem !important;
    margin-left: 1.1rem !important;
    margin-top: 2.5rem;
  }
}
.main .normal-button {
  display: inline-block;
  padding: 15px 40px;
  background: linear-gradient(240deg, #001ced, #3370ff);
  border-radius: 4px;
  font-size: 16px;
  color: #ffffff;
  line-height: 18px;
  cursor: pointer;
}
@media screen and (max-width: 750px) {
  .main .normal-button {
    padding: 0.625rem 1.67rem;
    font-size: 0.67rem;
    line-height: 1;
  }
}
.main .normal-button.has-href {
  padding: 0;
}
.main .normal-button.has-href a {
  padding: 15px 40px;
  display: block;
}
@media screen and (max-width: 750px) {
  .main .normal-button.has-href a {
    padding: 0.625rem 1.67rem;
  }
}
.main .normal-button.border {
  background: #ffffff;
  border: 1px solid #3370ff;
  color: #3370ff;
}
.main .standard-tabs-header .standard-tabs-header-title {
  display: flex;
  align-items: center;
  justify-content: space-around;
}
.main .standard-tabs-header .standard-tabs-header-title-item {
  flex-shrink: 0;
  flex-grow: 0;
  text-align: center;
  min-width: 146px;
}
@media screen and (max-width: 1000px) {
  .main .standard-tabs-header .standard-tabs-header-title-item {
    min-width: 15%;
  }
}
.main .standard-tabs-header .standard-tabs-header-title.center {
  justify-content: center;
}
.main .standard-tabs-header .standard-tabs-header-title.center .standard-tabs-header-title-item {
  min-width: 0;
  margin: 0 86px;
  padding-bottom: 30px;
}
@media screen and (max-width: 940px) {
  .main .standard-tabs-header .standard-tabs-header-title.center .standard-tabs-header-title-item {
    margin: 0 48px;
  }
}
@media screen and (max-width: 750px) {
  .main .standard-tabs-header .standard-tabs-header-title.center .standard-tabs-header-title-item {
    margin: 0 2rem;
    padding-bottom: 1.25rem;
  }
}
.main .standard-tabs-header .standard-tabs-header-title-item {
  font-size: 20px;
  line-height: 1;
  padding-bottom: 15px;
  position: relative;
  cursor: pointer;
}
@media screen and (max-width: 750px) {
  .main .standard-tabs-header .standard-tabs-header-title-item {
    padding-bottom: 0.625rem;
    font-size: 0.83rem;
  }
}
.main .standard-tabs-header .standard-tabs-header-title-item::after {
  content: "";
  display: block;
  width: 100%;
  height: 3px;
  background: transparent;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  max-width: 146px;
}
@media screen and (max-width: 1000px) {
  .main .standard-tabs-header .standard-tabs-header-title-item::after {
    width: 90%;
  }
}
.main .standard-tabs-header .standard-tabs-header-title-item.active::after {
  background: #3370ff;
}
.main .standard-tabs-header .standard-tabs-header-title-item-icon {
  width: 69px;
  height: 69px;
  margin-bottom: 28px;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (max-width: 750px) {
  .main .standard-tabs-header .standard-tabs-header-title-item-icon {
    width: 2.875rem;
    height: 2.875rem;
    margin-bottom: 1.17rem;
  }
}
.main .standard-tabs-header .standard-tabs-header-line {
  width: 100%;
  height: 1px;
  background: #c3e2ff;
  opacity: 0.3;
}
.main .standard-tabs-content-box {
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
  overflow: hidden;
}
.main .standard-tabs-content {
  order: 2;
  margin-top: 80px;
  width: 100%;
  flex-shrink: 0;
  flex-grow: 0;
  overflow: hidden;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
@media screen and (max-width: 1360px) {
  .main .standard-tabs-content {
    align-items: stretch;
  }
}
@media screen and (max-width: 1000px) {
  .main .standard-tabs-content {
    margin-top: 40px;
    display: block;
  }
}
@media screen and (max-width: 750px) {
  .main .standard-tabs-content {
    margin-top: 1.5rem;
  }
}
.main .standard-tabs-content.active {
  order: 1;
}
.main .standard-tabs-content-left {
  flex-shrink: 1;
  flex-grow: 1;
  width: 40%;
  margin-right: 60px;
}
@media screen and (max-width: 1000px) {
  .main .standard-tabs-content-left {
    width: 100%;
    margin-right: 0;
  }
}
.main .standard-tabs-content-left .pointer-item {
  margin-bottom: 48px;
  font-size: 0;
}
@media screen and (max-width: 1000px) {
  .main .standard-tabs-content-left .pointer-item {
    margin-bottom: 32px;
  }
}
@media screen and (max-width: 750px) {
  .main .standard-tabs-content-left .pointer-item {
    margin-bottom: 1.2rem;
  }
}
.main .standard-tabs-content-left .pointer-item:last-child {
  margin-bottom: 0;
}
.main .standard-tabs-content-left .pointer-item-icon {
  width: 35px;
  margin-right: 20px;
  display: inline-block;
  vertical-align: top;
}
@media screen and (max-width: 750px) {
  .main .standard-tabs-content-left .pointer-item-icon {
    width: 1.45rem;
    margin-right: 0.78rem;
  }
}
.main .standard-tabs-content-left .pointer-item-content {
  width: calc(100% - 55px);
  display: inline-block;
  vertical-align: top;
  padding-top: 2px;
}
@media screen and (max-width: 750px) {
  .main .standard-tabs-content-left .pointer-item-content {
    padding-top: 4px;
    width: calc(100% - 2.23rem);
  }
}
.main .standard-tabs-content-left .pointer-item-content-title {
  font-size: 20px;
  line-height: 1;
  margin-bottom: 16px;
}
@media screen and (max-width: 750px) {
  .main .standard-tabs-content-left .pointer-item-content-title {
    font-size: 0.83rem;
    margin-bottom: 0.67rem;
  }
}
.main .standard-tabs-content-left .pointer-item-content-desc {
  font-size: 16px;
  color: #777777;
  line-height: 24px;
  font-weight: 300;
}
@media screen and (max-width: 750px) {
  .main .standard-tabs-content-left .pointer-item-content-desc {
    font-size: 0.67rem;
    line-height: 1.1rem;
  }
}
.main .standard-tabs-content-right {
  flex-shrink: 1;
  flex-grow: 1;
  width: 60%;
}
@media screen and (max-width: 1000px) {
  .main .standard-tabs-content-right {
    width: 100%;
    margin-top: 20px;
  }
}
@media screen and (max-width: 750px) {
  .main .standard-tabs-content-right {
    margin-top: 1rem;
  }
}
.main .standard-tabs-content-right img {
  width: 100% !important;
  height: auto !important;
}
@media screen and (max-width: 1360px) {
  .main .standard-tabs-content-right img {
    height: 100% !important;
    width: auto !important;
  }
}
@media screen and (max-width: 1000px) {
  .main .standard-tabs-content-right img {
    width: 100% !important;
    height: auto !important;
  }
}
.main .three-columns {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 1100px) {
  .main .three-columns {
    flex-wrap: wrap;
  }
}
.main .three-columns-content {
  flex-shrink: 1;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media screen and (max-width: 1100px) {
  .main .three-columns-content {
    order: 2;
    flex-shrink: 0;
    flex-grow: 0;
    width: 50%;
    box-sizing: border-box;
    padding-left: 16px;
  }
}
@media screen and (max-width: 1100px) and (max-width: 750px) {
  .main .three-columns-content {
    padding-left: 0.67rem;
  }
}
.main .three-columns-content.left {
  text-align: right;
  align-items: flex-end;
}
@media screen and (max-width: 1100px) {
  .main .three-columns-content.left {
    order: 1;
    text-align: left;
    align-items: flex-start;
    padding-left: 0;
    padding-right: 16px;
  }
}
@media screen and (max-width: 750px) {
  .main .three-columns-content.left {
    padding-right: 0.67rem;
  }
}
.main .three-columns-content-pointer {
  margin-bottom: 58px;
}
.main .three-columns-content-pointer:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 1290px) {
  .main .three-columns-content-pointer {
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 750px) {
  .main .three-columns-content-pointer {
    margin-bottom: 1rem;
  }
}
.main .three-columns-content-pointer-title {
  font-size: 22px;
  font-weight: bold;
  color: #111111;
  line-height: 1;
  margin-bottom: 12px;
}
@media screen and (max-width: 750px) {
  .main .three-columns-content-pointer-title {
    font-size: 0.92rem;
    margin-bottom: 0.5rem;
  }
}
.main .three-columns-content-pointer-desc {
  font-size: 18px;
  color: #777777;
  line-height: 32px;
}
@media screen and (max-width: 750px) {
  .main .three-columns-content-pointer-desc {
    font-size: 0.75rem;
    line-height: 1.33rem;
  }
}
.main .three-columns-img {
  flex-shrink: 0;
  flex-grow: 0;
  width: 45%;
  margin: 0 48px;
}
@media screen and (max-width: 1100px) {
  .main .three-columns-img {
    order: 3;
    width: 75% !important;
    margin: 40px auto 0 auto;
    flex-shrink: 0;
    flex-grow: 0;
  }
}
@media screen and (max-width: 750px) {
  .main .three-columns-img {
    margin: 1.67rem auto 0 auto;
    width: 85% !important;
  }
}
.main .three-columns-img img {
  height: auto !important;
  width: 100% !important;
}
.main .content-input-box {
  background: #3370ff;
  position: relative;
}
.main .content-input-box .content-input-right,
.main .content-input-box .content-input-left {
  position: absolute;
  z-index: 1;
  width: 400px;
}
@media screen and (max-width: 750px) {
  .main .content-input-box .content-input-right,
  .main .content-input-box .content-input-left {
    width: 12rem;
  }
}
.main .content-input-box .content-input-left {
  top: 0;
  left: 0;
}
.main .content-input-box .content-input-right {
  transform: rotate(180deg);
  right: 0;
  bottom: 0;
}
.main .content-input-box .content-input-box-main {
  padding: 86px 0 96px 0;
  color: #ffffff;
  line-height: 1;
  text-align: center;
  margin-top: 0;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 750px) {
  .main .content-input-box .content-input-box-main {
    padding: 3.58rem 0 4rem 0;
  }
}
.main .content-input-box .content-input-box-main-title {
  font-size: 48px;
  line-height: 64px;
  font-weight: bold;
  margin-bottom: 24px;
}
@media screen and (max-width: 750px) {
  .main .content-input-box .content-input-box-main-title {
    font-size: 2rem;
    line-height: 2.67rem;
    margin-bottom: 1rem;
  }
}
.main .content-input-box .content-input-box-main-sub-title {
  font-size: 24px;
  margin-bottom: 24px;
}
@media screen and (max-width: 750px) {
  .main .content-input-box .content-input-box-main-sub-title {
    font-size: 1rem;
    margin-bottom: 1rem;
  }
}
.main .content-input-box .content-input-box-main-form {
  margin-bottom: 30px;
  font-size: 0;
}
@media screen and (max-width: 750px) {
  .main .content-input-box .content-input-box-main-form {
    margin-bottom: 1.25rem;
  }
}
.main .content-input-box .content-input-box-main-form input {
  height: 48px;
  line-height: 44px;
  font-size: 16px;
  padding-left: 12px;
  background: #ffffff;
  border: 1px solid #ffffff;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  vertical-align: middle;
  margin-right: 10px;
  vertical-align: middle;
}
@media screen and (max-width: 750px) {
  .main .content-input-box .content-input-box-main-form input {
    height: 2rem;
    line-height: calc(2rem - 1px);
    font-size: 0.67rem;
    padding-left: 0.5rem;
    margin-right: 0.47rem;
  }
}
@media screen and (max-width: 750px) {
  .main .content-input-box .content-input-box-main-form input {
    height: 28px;
    line-height: 26px;
  }
}
.main .content-input-box .content-input-box-main-form input:nth-child(1) {
  width: 164px;
}
@media screen and (max-width: 750px) {
  .main .content-input-box .content-input-box-main-form input:nth-child(1) {
    width: calc((100% - 0.94rem - 5rem) * 0.4);
  }
}
.main .content-input-box .content-input-box-main-form input:nth-child(2) {
  width: 222px;
}
@media screen and (max-width: 750px) {
  .main .content-input-box .content-input-box-main-form input:nth-child(2) {
    width: calc((100% - 0.94rem - 5rem) * 0.6);
  }
}
.main .content-input-box .content-input-box-main-form input::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: #dddddd;
  font-size: 16px;
}
@media screen and (max-width: 750px) {
  .main .content-input-box .content-input-box-main-form input::-webkit-input-placeholder {
    font-size: 0.67rem;
  }
}
.main .content-input-box .content-input-box-main-form input::-moz-placeholder {
  /* Firefox 19+ */
  color: #dddddd;
  font-size: 16px;
}
@media screen and (max-width: 750px) {
  .main .content-input-box .content-input-box-main-form input::-moz-placeholder {
    font-size: 0.67rem;
  }
}
.main .content-input-box .content-input-box-main-form input:-ms-input-placeholder {
  /* IE 10+ */
  color: #dddddd;
  font-size: 16px;
}
@media screen and (max-width: 750px) {
  .main .content-input-box .content-input-box-main-form input:-ms-input-placeholder {
    font-size: 0.67rem;
  }
}
.main .content-input-box .content-input-box-main-form input:-moz-placeholder {
  /* Firefox 18- */
  color: #dddddd;
  font-size: 16px;
}
@media screen and (max-width: 750px) {
  .main .content-input-box .content-input-box-main-form input:-moz-placeholder {
    font-size: 0.67rem;
  }
}
.main .content-input-box .content-input-box-main-form #codeConfirm {
  font-size: 16px;
  color: #3370ff;
  width: 120px;
  cursor: pointer;
  margin-right: 0;
}
@media screen and (max-width: 750px) {
  .main .content-input-box .content-input-box-main-form #codeConfirm {
    font-size: 0.67rem;
    width: 5rem;
  }
}
.main .content-input-box .content-input-box-main-tip {
  font-size: 18px;
  margin-bottom: 24px;
}
@media screen and (max-width: 750px) {
  .main .content-input-box .content-input-box-main-tip {
    margin-bottom: 1rem;
    font-size: 0.75rem;
  }
}
.main .content-input-box .content-input-box-main-people {
  background: #ffffff;
  border-radius: 8px;
  display: inline-block;
  font-size: 14px;
  color: #000000;
  height: 30px;
  overflow: hidden;
  position: relative;
}
@media screen and (max-width: 750px) {
  .main .content-input-box .content-input-box-main-people {
    border-radius: 0.33rem;
    font-size: 0.58rem;
    height: 1.25rem;
  }
}
@media screen and (max-width: 550px) {
  .main .content-input-box .content-input-box-main-people {
    height: 22px;
  }
}
.main .content-input-box .content-input-box-main-people > div {
  position: relative;
  top: 30px;
  left: 0;
  padding: 0 36px;
  height: 30px;
  line-height: 30px;
}
@media screen and (max-width: 750px) {
  .main .content-input-box .content-input-box-main-people > div {
    padding: 0 1.5rem;
    height: 1.25rem;
    line-height: 1.25rem;
  }
}
@media screen and (max-width: 550px) {
  .main .content-input-box .content-input-box-main-people > div {
    height: 22px;
    line-height: 22px;
  }
}
.main .content-input-box .content-input-box-main-people span {
  margin-right: 32px;
}
@media screen and (max-width: 750px) {
  .main .content-input-box .content-input-box-main-people span {
    margin-right: 1.33rem;
  }
}
.main .social-responsibility-box {
  background: #f9f9ff;
}
.main .social-responsibility-box .social-responsibility-main {
  text-align: center;
  padding: 60px 0;
  max-width: 1319px;
  margin-left: auto !important;
  margin-right: auto !important;
}
@media screen and (max-width: 1379px) {
  .main .social-responsibility-box .social-responsibility-main {
    margin-right: 30px !important;
    margin-left: 30px !important;
  }
}
@media screen and (max-width: 750px) {
  .main .social-responsibility-box .social-responsibility-main {
    margin-right: 1.1rem !important;
    margin-left: 1.1rem !important;
    padding: 2.5rem 0;
  }
}
.main .social-responsibility-box .social-responsibility-main-title {
  font-size: 36px;
  font-weight: bold;
  color: #3370ff;
  line-height: 1;
  margin-bottom: 26px;
}
@media screen and (max-width: 750px) {
  .main .social-responsibility-box .social-responsibility-main-title {
    font-size: 1.5rem;
    margin-bottom: 1.1rem;
  }
}
.main .social-responsibility-box .social-responsibility-main-desc {
  font-size: 20px;
  font-weight: 300;
  color: #777777;
  line-height: 30px;
}
@media screen and (max-width: 750px) {
  .main .social-responsibility-box .social-responsibility-main-desc {
    font-size: 0.83rem;
    line-height: 1.25rem;
  }
}
.main .school-show-box {
  margin-top: 40px;
  text-align: center;
}
@media screen and (max-width: 750px) {
  .main .school-show-box {
    margin-top: 2rem;
  }
}
.main .school-show-box .more-school {
  font-size: 24px;
  color: #3370ff;
  line-height: 1;
  display: inline-block;
  cursor: pointer;
}
@media screen and (max-width: 750px) {
  .main .school-show-box .more-school {
    font-size: 1rem;
  }
}
.main .school-show-box .school-items {
  margin-top: 54px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
}
@media screen and (max-width: 750px) {
  .main .school-show-box .school-items {
    margin-top: 2.25rem;
  }
}
.main .school-show-box .school-items .school-item {
  width: calc((100% - 120px) / 5);
  height: 72px;
  margin-right: 30px;
  background: #ffffff;
  border: 1px solid #eeeeee;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  box-sizing: border-box;
  padding: 0 12px 0 18px;
}
.main .school-show-box .school-items .school-item.has-a {
  padding: 0;
}
.main .school-show-box .school-items .school-item.has-a a {
  display: block;
  padding: 0 12px 0 18px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  height: 100%;
}
.main .school-show-box .school-items .school-item:nth-child(5n) {
  margin-right: 0;
}
.main .school-show-box .school-items .school-item-logo {
  width: 39px;
  height: 39px;
  margin-right: 8px;
  flex-shrink: 0;
  flex-grow: 0;
}
@media screen and (max-width: 750px) {
  .main .school-show-box .school-items .school-item-logo {
    width: 1.625rem;
    height: 1.625rem;
  }
}
.main .school-show-box .school-items .school-item-name {
  font-size: 18px;
  font-weight: bold;
  line-height: 1;
  flex-shrink: 1;
  flex-grow: 1;
  text-align: left;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media screen and (max-width: 750px) {
  .main .school-show-box .school-items .school-item-name {
    font-size: 0.75rem;
  }
}
@media screen and (max-width: 1388px) {
  .main .school-show-box .school-items .school-item {
    width: calc((100% - 90px) / 4);
    margin-right: 30px;
  }
  .main .school-show-box .school-items .school-item:nth-child(5n) {
    margin-right: 30px;
  }
  .main .school-show-box .school-items .school-item:nth-child(4n) {
    margin-right: 0;
  }
}
@media screen and (max-width: 1135px) {
  .main .school-show-box .school-items .school-item {
    width: calc((100% - 80px) / 3);
    margin-right: 40px;
  }
  .main .school-show-box .school-items .school-item:nth-child(5n) {
    margin-right: 40px;
  }
  .main .school-show-box .school-items .school-item:nth-child(4n) {
    margin-right: 40px;
  }
  .main .school-show-box .school-items .school-item:nth-child(3n) {
    margin-right: 0;
  }
}
@media screen and (max-width: 880px) {
  .main .school-show-box .school-items .school-item {
    width: calc((100% - 40px) / 3);
    margin-right: 20px;
  }
  .main .school-show-box .school-items .school-item:nth-child(5n) {
    margin-right: 20px;
  }
  .main .school-show-box .school-items .school-item:nth-child(4n) {
    margin-right: 20px;
  }
  .main .school-show-box .school-items .school-item:nth-child(3n) {
    margin-right: 0;
  }
}
@media screen and (max-width: 840px) {
  .main .school-show-box .school-items .school-item {
    width: calc((100% - 80px) / 2);
    margin-right: 80px;
  }
  .main .school-show-box .school-items .school-item:nth-child(5n) {
    margin-right: 80px;
  }
  .main .school-show-box .school-items .school-item:nth-child(4n) {
    margin-right: 80px;
  }
  .main .school-show-box .school-items .school-item:nth-child(3n) {
    margin-right: 80px;
  }
  .main .school-show-box .school-items .school-item:nth-child(2n) {
    margin-right: 0px;
  }
}
@media screen and (max-width: 750px) {
  .main .school-show-box .school-items .school-item {
    margin-bottom: 1.25rem;
    width: calc((100% - 2rem) / 2);
    margin-right: 2rem;
    padding: 0 0.5rem 0 0.75rem;
    height: 3rem;
  }
  .main .school-show-box .school-items .school-item:nth-child(5n) {
    margin-right: 2rem;
  }
  .main .school-show-box .school-items .school-item:nth-child(4n) {
    margin-right: 2rem;
  }
  .main .school-show-box .school-items .school-item:nth-child(3n) {
    margin-right: 2rem;
  }
  .main .school-show-box .school-items .school-item:nth-child(2n) {
    margin-right: 0px;
  }
}
.main .school-show-box .button-box {
  margin-top: 25px;
}
@media screen and (max-width: 750px) {
  .main .school-show-box .button-box {
    margin-top: 1rem;
  }
}
.main .three-items {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
}
@media screen and (max-width: 1320px) {
  .main .three-items {
    flex-wrap: wrap;
    justify-content: space-around;
  }
}
@media screen and (max-width: 885px) {
  .main .three-items {
    display: block;
  }
}
.main .three-items .three-item {
  flex-shrink: 0;
  flex-grow: 0;
}
@media screen and (max-width: 1320px) {
  .main .three-items .three-item {
    margin-left: 16px;
    margin-right: 16px;
  }
  .main .three-items .three-item:nth-child(3) {
    margin-top: 60px;
  }
}
@media screen and (max-width: 1100px) {
  .main .three-items .three-item {
    margin-left: 0;
    margin-right: 0;
  }
}
@media screen and (max-width: 885px) {
  .main .three-items .three-item {
    margin-left: auto;
    margin-right: auto;
  }
  .main .three-items .three-item:nth-child(2) {
    margin-top: 60px;
  }
}
@media screen and (max-width: 750px) {
  .main .three-items .three-item:nth-child(2), .main .three-items .three-item:nth-child(3) {
    margin-top: 2.5rem;
  }
}
.main .five-items {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
}
@media screen and (max-width: 1100px) {
  .main .five-items {
    flex-wrap: wrap;
    justify-content: center;
  }
}
.main .five-items .five-item {
  flex: 1;
  margin-right: 4.5%;
}
.main .five-items .five-item:last-child {
  margin-right: 0;
}
@media screen and (max-width: 1100px) {
  .main .five-items .five-item {
    width: calc((100% - 80px) / 3);
    flex-shrink: 0;
    flex-grow: 0;
    flex-basis: auto;
    margin: 0 20px;
  }
  .main .five-items .five-item:nth-child(1) {
    margin-left: 0;
  }
  .main .five-items .five-item:nth-child(3) {
    margin-right: 0;
  }
  .main .five-items .five-item:last-child {
    margin-right: 20px;
  }
}
@media screen and (max-width: 560px) {
  .main .five-items .five-item {
    width: calc((100% - 30px) / 2);
    margin: 0;
  }
  .main .five-items .five-item:nth-child(1), .main .five-items .five-item:nth-child(3) {
    margin-left: 0;
    margin-right: 30px;
  }
  .main .five-items .five-item:last-child {
    margin-right: 0;
  }
}

.scroll_bar {
  position: absolute;
  top: 0;
  right: 0;
  width: 4px;
  height: 100%;
  background-color: rgba(153, 153, 153, 0.2);
  border-radius: 2px;
  z-index: 3;
}
.scroll_bar .scroll_slider {
  background-color: #999999;
  width: 4px;
  position: relative;
  border-radius: 2px;
}

.scroll_bar-x {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 8px;
  background-color: rgba(153, 153, 153, 0.2);
  border-radius: 8px;
  z-index: 3;
}
.scroll_bar-x .scroll_slider {
  background-color: #999999;
  height: 8px;
  position: relative;
  border-radius: 8px;
}

.dialog {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 11;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  justify-content: center;
  align-items: center;
  display: none;
}
.dialog .dialog-main {
  border-radius: 4px;
  background-color: #ffffff;
  width: 100%;
  overflow: auto;
  box-sizing: border-box;
  margin: 0 15px;
  max-width: 400px;
  border-radius: 4px;
  box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.05);
}
.dialog .dialog-main .dialog-title {
  font-size: 18px;
  line-height: 55px;
  border-bottom: 1px solid #ebeef5;
  padding-left: 20px;
  margin-top: 0;
}
@media screen and (max-width: 599px) {
  .dialog .dialog-main .dialog-title {
    font-size: 16px;
    line-height: 48px;
  }
}
.dialog .dialog-main .iconfont {
  float: right;
  margin-right: 15px;
  line-height: 55px;
  font-size: 12px;
  cursor: pointer;
}
.dialog .dialog-main .dialog-body {
  padding: 20px;
  font-size: 0;
}
.dialog .dialog-main .dialog-body ::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: #d9d9d9;
  font-size: 14px;
}
.dialog .dialog-main .dialog-body ::-moz-placeholder {
  /* Firefox 19+ */
  color: #d9d9d9;
  font-size: 14px;
}
.dialog .dialog-main .dialog-body :-ms-input-placeholder {
  /* IE 10+ */
  color: #d9d9d9;
  font-size: 14px;
}
.dialog .dialog-main .dialog-body :-moz-placeholder {
  /* Firefox 18- */
  color: #d9d9d9;
  font-size: 14px;
}
.dialog .dialog-main .dialog-body textarea {
  padding-top: 10px;
  padding-bottom: 10px;
  resize: none;
}
.dialog .dialog-main .dialog-body input {
  height: 48px;
}
.dialog .dialog-main .dialog-body textarea,
.dialog .dialog-main .dialog-body input {
  width: 60%;
  border: 1px solid #ebeef5;
  border-radius: 4px;
  padding-left: 20px;
  box-sizing: border-box;
  margin-right: 5%;
}
.dialog .dialog-main .dialog-body .code-img {
  box-sizing: border-box;
  width: 35% !important;
  height: 46px !important;
  vertical-align: top;
  cursor: pointer;
}
.dialog .dialog-main .dialog-footer {
  padding: 20px;
  overflow: hidden;
}
.dialog .dialog-main .dialog-footer button {
  width: 68px;
  height: 36px;
  border-radius: 4px;
  border: none;
  cursor: pointer;
}
.dialog .dialog-main .dialog-footer .outline {
  float: left;
  border: 1px solid #ebeef5;
  color: #303133;
  background-color: #ffffff;
}
.dialog .dialog-main .dialog-footer .default {
  float: right;
  background-color: #3e82e8;
  color: #ffffff;
}

#loading {
  display: none;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  justify-content: center;
  align-items: center;
  z-index: 100;
  background-color: rgba(0, 0, 0, 0.4);
}
#loading .spinner {
  margin: 100px auto;
  width: 60px;
  height: 60px;
  position: relative;
}
#loading .container1 > div,
#loading .container2 > div,
#loading .container3 > div {
  width: 12px;
  height: 12px;
  background-color: #ffffff;
  border-radius: 100%;
  position: absolute;
  -webkit-animation: bouncedelay 1.2s infinite ease-in-out;
  animation: bouncedelay 1.2s infinite ease-in-out;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
#loading .spinner .spinner-container {
  position: absolute;
  width: 100%;
  height: 100%;
}
#loading .container2 {
  -webkit-transform: rotateZ(45deg);
  transform: rotateZ(45deg);
}
#loading .container3 {
  -webkit-transform: rotateZ(90deg);
  transform: rotateZ(90deg);
}
#loading .circle1 {
  top: 0;
  left: 0;
}
#loading .circle2 {
  top: 0;
  right: 0;
}
#loading .circle3 {
  right: 0;
  bottom: 0;
}
#loading .circle4 {
  left: 0;
  bottom: 0;
}
#loading .container2 .circle1 {
  -webkit-animation-delay: -1.1s;
  animation-delay: -1.1s;
}
#loading .container3 .circle1 {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
#loading .container1 .circle2 {
  -webkit-animation-delay: -0.9s;
  animation-delay: -0.9s;
}
#loading .container2 .circle2 {
  -webkit-animation-delay: -0.8s;
  animation-delay: -0.8s;
}
#loading .container3 .circle2 {
  -webkit-animation-delay: -0.7s;
  animation-delay: -0.7s;
}
#loading .container1 .circle3 {
  -webkit-animation-delay: -0.6s;
  animation-delay: -0.6s;
}
#loading .container2 .circle3 {
  -webkit-animation-delay: -0.5s;
  animation-delay: -0.5s;
}
#loading .container3 .circle3 {
  -webkit-animation-delay: -0.4s;
  animation-delay: -0.4s;
}
#loading .container1 .circle4 {
  -webkit-animation-delay: -0.3s;
  animation-delay: -0.3s;
}
#loading .container2 .circle4 {
  -webkit-animation-delay: -0.2s;
  animation-delay: -0.2s;
}
#loading .container3 .circle4 {
  -webkit-animation-delay: -0.1s;
  animation-delay: -0.1s;
}
@-webkit-keyframes bouncedelay {
  0%, 80%, 100% {
    -webkit-transform: scale(0);
  }
  40% {
    -webkit-transform: scale(1);
  }
}
@keyframes bouncedelay {
  0%, 80%, 100% {
    transform: scale(0);
    -webkit-transform: scale(0);
  }
  40% {
    transform: scale(1);
    -webkit-transform: scale(1);
  }
}

button:focus,
input:focus,
textarea:focus {
  outline: none;
  outline-offset: 0;
}

#aside {
  position: fixed;
  top: 40%;
  right: 10px;
  z-index: 100;
}
@media screen and (max-width: 790px) {
  #aside {
    right: 0;
    top: unset;
    bottom: 0;
  }
}

.dialog .dialog-main .apply-dialog-body {
  padding: 0;
}
.dialog .dialog-main .apply-dialog-body .apply-input-box {
  font-size: 0;
  font-family: Microsoft YaHei;
  color: #303133;
  overflow: hidden;
}
.dialog .dialog-main .apply-dialog-body .full {
  width: 100%;
  padding: 0 36px;
  box-sizing: border-box;
  margin-bottom: 24px;
}
@media screen and (max-width: 599px) {
  .dialog .dialog-main .apply-dialog-body .full {
    padding: 0 16px;
    margin-bottom: 16px;
  }
}
.dialog .dialog-main .apply-dialog-body .half {
  width: 50%;
  display: inline-block;
  vertical-align: middle;
  padding-left: 36px;
  box-sizing: border-box;
  margin-bottom: 24px;
}
@media screen and (max-width: 599px) {
  .dialog .dialog-main .apply-dialog-body .half {
    padding-right: 16px;
    padding-left: 16px;
    margin-bottom: 16px;
    width: 100%;
    display: block;
  }
}
.dialog .dialog-main .apply-dialog-body .half:nth-child(odd) {
  padding-left: 20px;
  padding-right: 36px;
}
@media screen and (max-width: 599px) {
  .dialog .dialog-main .apply-dialog-body .half:nth-child(odd) {
    padding-right: 16px;
    padding-left: 16px;
  }
}
.dialog .dialog-main .apply-dialog-body .label {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 7px;
}
.dialog .dialog-main .apply-dialog-body .label::before {
  content: "*";
  color: #f56c6c;
}
.dialog .dialog-main .apply-dialog-body input {
  height: 36px;
}
.dialog .dialog-main .apply-dialog-body textarea,
.dialog .dialog-main .apply-dialog-body input {
  width: 100%;
  margin-right: 0;
}
.dialog .dialog-main .apply-dialog-body .has-img input {
  width: calc(100% - 120px) !important;
}
.dialog .dialog-main .apply-dialog-body .has-img .code-img {
  width: 100px !important;
  height: 34px !important;
  vertical-align: top;
  cursor: pointer;
  margin-left: 20px;
}
.dialog .dialog-main .apply-dialog-body #submit {
  margin-top: 12px;
  height: 48px;
  background-color: #3370ff;
  border-radius: 0px 0px 4px 4px;
  border: none;
  font-size: 16px;
  font-family: PingFang SC;
  color: #ffffff;
  cursor: pointer;
}

.dialog .dialog-main.qr-dialog-main {
  width: 260px;
  height: 335px;
}
.dialog .dialog-main.qr-dialog-main .tip {
  font-size: 16px;
  text-align: center;
  margin-top: 12px;
  color: #8c8c8c;
}

.main.platform-main .normal-banner {
  height: 550px;
}
@media screen and (max-width: 750px) {
  .main.platform-main .normal-banner {
    height: 22rem;
  }
}
.main.platform-main .normal-banner .normal-banner-up {
  max-width: 1400px;
  margin-left: auto !important;
  margin-right: auto !important;
}
@media screen and (max-width: 1460px) {
  .main.platform-main .normal-banner .normal-banner-up {
    margin-right: 30px !important;
    margin-left: 30px !important;
  }
}
@media screen and (max-width: 750px) {
  .main.platform-main .normal-banner .normal-banner-up {
    margin-right: 1.1rem !important;
    margin-left: 1.1rem !important;
  }
}
.main.platform-main .normal-banner .normal-banner-left-text {
  top: 145px;
  left: 170px;
}
@media screen and (max-width: 1460px) {
  .main.platform-main .normal-banner .normal-banner-left-text {
    left: 0;
  }
}
@media screen and (max-width: 750px) {
  .main.platform-main .normal-banner .normal-banner-left-text {
    top: 6rem;
  }
}
.main.platform-main .normal-banner .normal-banner-left-text-sub-title {
  font-size: 36px;
  font-weight: bold;
  color: #ffffff;
  line-height: 1;
  margin-bottom: 18px;
}
@media screen and (max-width: 750px) {
  .main.platform-main .normal-banner .normal-banner-left-text-sub-title {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
  }
}
.main.platform-main .normal-banner .normal-banner-left-text-title {
  font-size: 48px;
  margin-bottom: 24px;
}
@media screen and (max-width: 750px) {
  .main.platform-main .normal-banner .normal-banner-left-text-title {
    font-size: 2rem;
    margin-bottom: 1rem;
  }
}
.main.platform-main .normal-banner .normal-banner-left-text-desc {
  margin-bottom: 30px;
}
@media screen and (max-width: 750px) {
  .main.platform-main .normal-banner .normal-banner-left-text-desc {
    margin-bottom: 1.25rem;
  }
}
@media screen and (max-width: 1200px) {
  .main.platform-main .five-items {
    flex-wrap: wrap;
    justify-content: space-around;
  }
}
.main.platform-main .five-items .five-item {
  background: #ffffff;
  box-shadow: 0px 0px 10px 0px rgba(51, 112, 255, 0.2);
  width: calc((100% - 128px) / 5);
  margin-right: 32px;
  text-align: center;
  box-sizing: border-box;
  padding: 40px 20px;
}
.main.platform-main .five-items .five-item:last-child {
  margin-right: 0;
}
@media screen and (max-width: 1200px) {
  .main.platform-main .five-items .five-item {
    width: 240px;
    flex-shrink: 0;
    flex-grow: 0;
    flex-basis: auto;
    margin-right: 40px;
    margin-bottom: 60px;
  }
  .main.platform-main .five-items .five-item:nth-child(4), .main.platform-main .five-items .five-item:nth-child(5) {
    margin-bottom: 0;
  }
}
@media screen and (max-width: 960px) {
  .main.platform-main .five-items .five-item {
    margin-right: 0;
  }
}
@media screen and (max-width: 839px) {
  .main.platform-main .five-items .five-item:nth-child(4) {
    margin-bottom: 60px;
  }
}
@media screen and (max-width: 750px) {
  .main.platform-main .five-items .five-item {
    margin-bottom: 2.5rem;
    margin-left: 0;
  }
  .main.platform-main .five-items .five-item:nth-child(4) {
    margin-bottom: 2.5rem;
  }
}
@media screen and (max-width: 525px) {
  .main.platform-main .five-items .five-item {
    width: 80%;
  }
}
.main.platform-main .five-items .five-item-icon {
  height: 82px;
  margin: 0 auto;
}
.main.platform-main .five-items .five-item-icon img {
  width: auto !important;
  height: 100% !important;
}
@media screen and (max-width: 750px) {
  .main.platform-main .five-items .five-item-icon {
    height: 3.42rem;
  }
}
.main.platform-main .five-items .five-item-title {
  margin-top: 26px;
  margin-bottom: 26px;
  font-size: 20px;
  font-weight: bold;
  color: #333333;
  line-height: 30px;
}
@media screen and (max-width: 750px) {
  .main.platform-main .five-items .five-item-title {
    margin-top: 1.1rem;
    margin-bottom: 1.1rem;
    font-size: 0.83rem;
    line-height: 1.25rem;
  }
}
.main.platform-main .five-items .five-item-desc {
  font-size: 16px;
  font-weight: 300;
  color: #333333;
  line-height: 24px;
}
@media screen and (max-width: 750px) {
  .main.platform-main .five-items .five-item-desc {
    font-size: 0.67rem;
    line-height: 1.4;
  }
}
.main.platform-main .standard-tabs-content {
  margin-top: 60px;
}
@media screen and (max-width: 750px) {
  .main.platform-main .standard-tabs-content {
    margin-top: 2.5rem;
  }
}
.main.platform-main .standard-tabs-content .standard-tabs-content-left .pointer-item {
  margin-bottom: 35px;
}
.main.platform-main .standard-tabs-content .standard-tabs-content-left .pointer-item:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 750px) {
  .main.platform-main .standard-tabs-content .standard-tabs-content-left .pointer-item {
    margin-bottom: 1.46rem;
  }
}
@media screen and (max-width: 750px) {
  .main.platform-main .standard-tabs-content .standard-tabs-content-left .pointer-item-content {
    width: calc(100% - 2rem);
  }
}
.main.platform-main .standard-tabs-content .standard-tabs-content-left .pointer-item-icon {
  width: 32px;
  margin-right: 16px;
  vertical-align: middle;
}
@media screen and (max-width: 750px) {
  .main.platform-main .standard-tabs-content .standard-tabs-content-left .pointer-item-icon {
    width: 1.33rem;
    margin-right: 0.67rem;
    margin-top: 0.2rem;
  }
}
.main.platform-main .standard-tabs-content .standard-tabs-content-left .pointer-item-icon img {
  width: 100% !important;
  height: auto !important;
}
.main.platform-main .three-items .three-item {
  text-align: center;
  width: 396px;
}
@media screen and (max-width: 750px) {
  .main.platform-main .three-items .three-item {
    width: 100%;
    max-width: 400px;
    padding: 0 1rem;
    box-sizing: border-box;
  }
}
.main.platform-main .three-items .three-item-icon {
  width: 320px;
  height: 177px;
  margin: 0 auto;
}
@media screen and (max-width: 750px) {
  .main.platform-main .three-items .three-item-icon {
    width: 13.33rem;
    height: 7.375rem;
  }
}
.main.platform-main .three-items .three-item-title {
  font-size: 20px;
  font-weight: bold;
  line-height: 1;
  margin-top: 50px;
  margin-bottom: 24px;
}
@media screen and (max-width: 750px) {
  .main.platform-main .three-items .three-item-title {
    font-size: 0.83rem;
    margin-top: 2.1rem;
    margin-bottom: 1rem;
  }
}
.main.platform-main .three-items .three-item-desc {
  font-size: 16px;
  color: #000000;
  line-height: 30px;
  font-weight: 300;
}
@media screen and (max-width: 750px) {
  .main.platform-main .three-items .three-item-desc {
    font-size: 0.67rem;
    line-height: 1.25rem;
  }
}
.main.platform-main .org-items {
  font-size: 0;
}
.main.platform-main .org-items .org-item {
  vertical-align: middle;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 160px;
  width: calc((100% - 120px) / 4);
  padding: 26px 28px;
  box-sizing: border-box;
  margin-right: 40px;
  border: 1px solid #eeeeee;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 38px;
}
.main.platform-main .org-items .org-item:nth-child(4n) {
  margin-right: 0;
}
.main.platform-main .org-items .org-item:nth-child(n+9) {
  margin-bottom: 0;
}
.main.platform-main .org-items .org-item img {
  width: 100% !important;
  height: auto !important;
}
@media screen and (max-width: 1200px) {
  .main.platform-main .org-items .org-item {
    width: calc((100% - 80px) / 3);
  }
  .main.platform-main .org-items .org-item:nth-child(4n) {
    margin-right: 40px;
  }
  .main.platform-main .org-items .org-item:nth-child(3n) {
    margin-right: 0;
  }
  .main.platform-main .org-items .org-item:nth-child(9) {
    margin-bottom: 38px;
  }
}
@media screen and (max-width: 860px) {
  .main.platform-main .org-items .org-item {
    height: 120px;
  }
}
@media screen and (max-width: 750px) {
  .main.platform-main .org-items .org-item {
    width: calc((100% - 1.67rem) / 2);
    margin-bottom: 1.58rem;
    margin-right: 1.67rem;
    height: 6rem;
  }
  .main.platform-main .org-items .org-item:nth-child(4n) {
    margin-right: 1.67rem;
  }
  .main.platform-main .org-items .org-item:nth-child(3n) {
    margin-right: 1.67rem;
  }
  .main.platform-main .org-items .org-item:nth-child(2n) {
    margin-right: 0;
  }
  .main.platform-main .org-items .org-item:nth-child(9) {
    margin-bottom: 1.58rem;
  }
  .main.platform-main .org-items .org-item:nth-child(10) {
    margin-bottom: 1.58rem;
  }
}
.main.platform-main .platform-bottom {
  height: 350px;
  width: 100%;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 750px) {
  .main.platform-main .platform-bottom {
    height: 15rem;
  }
}
.main.platform-main .platform-bottom .platform-bottom-bg {
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 1;
  left: 0;
  top: 0;
}
.main.platform-main .platform-bottom .platform-bottom-content {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
  margin: auto 0;
  color: #ffffff;
  text-align: center;
  box-sizing: border-box;
  padding: 82px 30px 0 30px;
}
@media screen and (max-width: 750px) {
  .main.platform-main .platform-bottom .platform-bottom-content {
    padding: 3.42rem 1.25rem 0 1.25rem;
  }
}
.main.platform-main .platform-bottom .platform-bottom-content-title {
  font-size: 36px;
  font-weight: bold;
  line-height: 1;
}
@media screen and (max-width: 750px) {
  .main.platform-main .platform-bottom .platform-bottom-content-title {
    font-size: 1.5rem;
  }
}
.main.platform-main .platform-bottom .platform-bottom-content-desc {
  font-size: 24px;
  font-weight: 300;
  line-height: 36px;
  margin-top: 40px;
  margin-bottom: 40px;
}
@media screen and (max-width: 750px) {
  .main.platform-main .platform-bottom .platform-bottom-content-desc {
    font-size: 1rem;
    line-height: 1.5rem;
    margin-top: 1.67rem;
    margin-bottom: 1.67rem;
  }
}
.main.platform-main .platform-bottom .platform-bottom-content-button {
  width: 141px;
  height: 44px;
  line-height: 42px;
  border: 1px solid #ffffff;
  border-radius: 4px;
  margin: 0 auto;
  font-size: 18px;
  font-weight: bold;
}
@media screen and (max-width: 750px) {
  .main.platform-main .platform-bottom .platform-bottom-content-button {
    width: 5.875rem;
    height: 1.83rem;
    line-height: calc(1.83rem - 2px);
    font-size: 0.75rem;
  }
}/*# sourceMappingURL=platform.css.map */