@import 'iconfont.css';

@font-face {
  font-family: "iconfont";
  /* Project id 2874806 */
  src: url('./iconfont/iconfont.woff2?t=1635210561214') format('woff2'), url('./iconfont/iconfont.woff?t=1635210561214') format('woff'), url('./iconfont/iconfont.ttf?t=1635210561214') format('truetype');
}

body {
  font-family: Noto Sans SC, "SF Pro SC", "SF Pro Display", "SF Pro Icons", "PingFang SC", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 400;
  color: #333;
}

* {
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
}

:root {
  --color: #126cd8;
}

.w1440 {
  width: 1440px;
  margin: 0 auto;
}

.s-title {
  text-align: center;
}

.s-title h2 {
  display: inline-block;
  color: #283263;
  font-style: italic;
  font-weight: 700;
  position: relative;
}

.s-title h2:before {
  content: '';
  width: 100px;
  height: 93px;
  background: url(../img/sign1.png) no-repeat;
  background-size: contain;
  position: absolute;
  left: -80px;
  top: -4px;
}

.s-title h2:after {
  content: '';
  width: 100px;
  height: 93px;
  background: url(../img/sign2.png) no-repeat;
  background-size: contain;
  position: absolute;
  right: -80px;
  top: -4px;
}

.s-title h3 {
  color: #283263;
  opacity: 0.5;
  letter-spacing: 4px;
  margin-top: 14px;
}

.header {
  position: fixed;
  width: 100%;
  left: 0;
  top: 0;
  z-index: 10000;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
}

.header .con {
  display: flex;
  justify-content: space-between;
  overflow: hidden;
}

.header .con .logo {
  display: flex;
  align-items: center;
}

.header .con .logo a {
  font-size: 0;
  position: relative;
}

.header .con .logo a img {
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
}

.header .con .logo a img.white {
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
}

.header .con .nav {
  flex: 1;
}

.header .con .nav ul {
  width: 100%;
  display: flex;
  justify-content: flex-end;
}

.header .con .nav ul li {
  position: relative;
}

.header .con .nav ul li:after {
  content: '';
  width: 0;
  height: 2px;
  background: var(--color);
  position: absolute;
  left: 50%;
  bottom: 0;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
}

.header .con .nav ul li a {
  color: #000;
  line-height: 80px;
  display: block;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
}

.header .con .nav ul li:not(:last-child) {
  margin-right: 40px;
}

.header .con .nav ul li:hover:after {
  width: 100%;
  left: 0;
}

.header .con .nav ul li.active:after {
  width: 100%;
  left: 0;
}

.header .con .right {
  display: flex;
  align-items: center;
  position: relative;
}

.header .con .right .a-btns {
  display: flex;
  align-items: center;
  margin-left: -290px;
  position: relative;
  left: 290px;
  transition: all 1s;
  -webkit-transition: all 1s;
  -moz-transition: all 1s;
  -ms-transition: all 1s;
}

.header .con .right .a-btns a {
  width: 140px;
  height: 50px;
  background-image: linear-gradient(110deg, #2d64ff 0%, #3c7eff 47%, #21aeff 100%);
  border-radius: 6px;
  color: #fff;
  line-height: 50px;
  text-align: center;
}

.header .con .right .a-btns a:not(:last-child) {
  margin-right: 10px;
}

.header .con .right .a-btns a.bo {
  background: #fff;
  color: #333;
}

.header.active .con .right .a-btns {
  margin-left: 20px;
  left: 0;
}

.header .con .right .a-btns a:hover {

  background-image: linear-gradient(-110deg, rgb(45, 100, 255) 0%, rgb(60, 126, 255) 47%, rgb(33, 174, 255) 100%);

}

.header .con .right .a-btns a.bo:hover {

  background-image: linear-gradient(-110deg, rgb(45, 100, 255) 0%, rgb(60, 126, 255) 47%, rgb(33, 174, 255) 100%);
  color: rgb(255, 255, 255);

}

.header .con .nav ul li:nth-last-child(-n + 3) {
  display: none;
}

.header .con .mobile-btn {
  display: none;
}

.header.active {
  background: var(--color);
}

.header.active .con .logo a img.regular {
  opacity: 0;
}

.header.active .con .logo a img.white {
  opacity: 1;
}

.header.active .con .nav ul li:after {
  background: #fff;
}

.header.active .con .nav ul li a {
  color: #fff;
}

.header.on {
  top: -60px;
}

.footer {
  padding: 90px 0 50px;
}

.footer .con {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.footer .con .left .logo img {
  width: 220px;
}

.footer .con .left .copy {
  margin-top: 40px;
}

.footer .con .left .copy p {
  color: #283263;
}

.footer .con .left .copy p a {
  color: #283263;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
}

.footer .con .left .copy p a:hover {
  color: var(--color);
}

.footer .con .left .info {
  display: flex;
  margin-top: 8px;
}

.footer .con .left .info p {
  color: #283263;
  margin-left: 50px;
}

.footer .con .left .info p a {
  color: #283263;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
}

.footer .con .left .info p a img {
  display: inline-block;
  position: relative;
  top: 2px;
  margin: 0 4px 0 10px;
}

.footer .con .left .info p a:hover {
  color: var(--color);
}

.footer .con .left .info ul {
  display: flex;
}

.footer .con .left .info ul li {
  padding: 0 12px;
  position: relative;
}

.footer .con .left .info ul li:after {
  content: '';
  width: 1px;
  height: 9px;
  background: rgba(40, 50, 99, 0.2);
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}

.footer .con .left .info ul li a {
  color: #283263;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
}

.footer .con .left .info ul li a:hover {
  color: var(--color);
}

.footer .con .left .info ul li:first-child {
  padding-left: 0;
}

.footer .con .left .info ul li:last-child {
  padding-right: 0;
}

.footer .con .left .info ul li:last-child:after {
  display: none;
}

.footer .con .right {
  display: flex;
  align-items: center;
}

.footer .con .right .text {
  text-align: right;
  margin-right: 20px;
}

.footer .con .right .text h2 {
  color: #283263;
  font-weight: 700;
}

.footer .con .right .text p {
  color: #283263;
  margin-top: 2px;
}

.footer .con .right .erweima {
  width: 117px;
  border-radius: 6px;
  background: #fff;
  overflow: hidden;
}

.footer .con .right .erweima img {
  width: 100%;
}

#videoPopup {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  z-index: 1000;
  background-color: rgba(0, 0, 0, 0.4);
  display: none;
}

#videoPopup .video-box {
  width: 66%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
}

#videoPopup .video-box video {
  width: 100%;
}

#videoPopup .video-box .closes {
  position: absolute;
  right: 20px;
  top: 20px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #fff;
  cursor: pointer;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
}

#videoPopup .video-box .closes svg {
  width: 20px;
  height: 20px;
}

#videoPopup .video-box .closes svg path {
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
}

#videoPopup .video-box .closes:hover {
  background: #2e65ff;
}

#videoPopup .video-box .closes:hover svg path {
  fill: #fff;
}

@media screen and (max-width: 1600px) {
  .w1440 {
    width: 1280px;
  }

  .s-title h2:before {
    width: 90px;
    height: 83px;
    left: -70px;
  }

  .s-title h2:after {
    width: 90px;
    height: 83px;
    right: -70px;
  }

  .s-title h3 {
    margin-top: 10px;
  }

  .header .con .logo img {
    width: 186px;
  }

  .header .con .nav ul li a {
    line-height: 70px;
  }

  .footer .con .left .logo img {
    width: 200px;
  }

  .header .con .right .a-btns a {
    width: 120px;
    height: 44px;
    line-height: 44px;
  }
}

@media screen and (max-width: 1440px) {
  .w1440 {
    width: 1100px;
  }

  .header .con .logo img {
    width: 170px;
  }

  .header .con .nav ul li:not(:last-child) {
    margin-right: 30px;
  }
}

@media screen and (max-width: 1200px) {
  .w1440 {
    width: 90%;
  }

  .s-title h2:before {
    width: 80px;
    height: 73px;
    left: -60px;
  }

  .s-title h2:after {
    width: 80px;
    height: 73px;
    right: -60px;
  }

  .header .con .logo img {
    width: 150px;
  }

  .header .con .nav ul li:not(:last-child) {
    margin-right: 20px;
  }
}

@media screen and (max-width: 1024px) {
  .header {
    background: var(--color);
  }

  .header .con .logo img {
    width: 120px;
  }

  .header .con .nav {
    position: fixed;
    top: 60px;
    width: 100%;
    background: #fff;
    left: auto;
    bottom: 0;
    right: -100%;
    overflow-y: auto;
    overflow-x: hidden;
    border-top: 1px solid #f2f2f2;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
  }

  .header .con .nav>ul {
    display: block;
    width: 100%;
  }

  .header .con .nav>ul>li {
    width: 100%;
    margin-right: 0 !important;
  }

  .header .con .nav>ul>li a {
    width: 100%;
    text-align: center;
    color: #333 !important;
    font-size: 18px;
    line-height: 60px;
  }

  .header .con .nav.active {
    right: 0;
  }

  .header .con .mobile-btn {
    width: 20px;
    height: 60px;
    display: block;
    position: relative;
    margin-left: 20px;
  }

  .header .con .mobile-btn .nav-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    width: 20px;
    height: 40px;
    text-align: center;
    z-index: 11;
    font-size: 0;
    margin: 0 auto;
  }

  .header .con .mobile-btn .nav-button div {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    width: 20px;
    height: 16px;
  }

  .header .con .mobile-btn .nav-button div span {
    width: 100%;
    height: 2px;
    background-color: #fff;
    display: block;
    margin: 0 auto;
    line-height: 2px;
    position: static;
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
  }

  .header .con .mobile-btn .nav-button div span.center-hr {
    margin: 5px auto;
  }

  .header .con .mobile-btn .nav-button div span.top-hr {
    -webkit-transform: none;
    -moz-transform: none;
    -ms-transform: none;
    -o-transform: none;
    transform: none;
  }

  .header .con .mobile-btn .nav-button div span.bottom-hr {
    -webkit-transform: none;
    -moz-transform: none;
    -ms-transform: none;
    -o-transform: none;
    transform: none;
  }

  .header .con .mobile-btn .nav-button.active div span {
    position: absolute;
    top: 50%;
    margin-top: -1px;
    left: 0;
  }

  .header .con .mobile-btn .nav-button.active div span.center-hr {
    display: none;
  }

  .header .con .mobile-btn .nav-button.active div span.top-hr {
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
  }

  .header .con .mobile-btn .nav-button.active div span.bottom-hr {
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
  }

  .footer {
    padding: 40px 0 80px;
  }

  #videoPopup .video-box {
    width: 90%;
  }

  .header .con .right .a-btns {
    left: 0 !important;
    margin-left: 0 !important;
    position: fixed;
    width: 100%;
    bottom: 25px;
    justify-content: center;
  }

  .header .con .right .a-btns a {
    font-size: 16px;
  }

  .header .con .right .a-btns a.bo {
    background-image: linear-gradient(-110deg, #2d64ff 0%, #3c7eff 47%, #21aeff 100%);
    color: #fff;
  }
}

@media screen and (max-width: 998px) {
  .footer .con {
    flex-wrap: wrap;
  }

  .footer .con .left {
    order: 2;
    width: 100%;
  }

  .footer .con .left .logo {
    display: none;
  }

  .footer .con .left .copy {
    margin-top: 30px;
    text-align: center;
  }

  .footer .con .left .info {
    display: block;
  }

  .footer .con .left .info ul {
    justify-content: center;
  }

  .footer .con .left .info p {
    text-align: center;
    margin-left: 0;
    margin-top: 10px;
  }

  .footer .con .left .info p a {
    display: block;
  }

  .footer .con .left .info p a img {
    margin: 0 4px 0 0;
  }

  .footer .con .right {
    width: 100%;
    display: block;
  }

  .footer .con .right .text {
    text-align: center;
    margin-right: 0;
  }

  .footer .con .right .erweima {
    margin: 14px auto 0;
  }
}

@media screen and (max-width: 768px) {
  .s-title h2:before {
    width: 60px;
    height: 53px;
    left: -40px;
  }

  .s-title h2:after {
    width: 60px;
    height: 53px;
    right: -40px;
  }

  .s-title h3 {
    font-size: 12px;
    letter-spacing: 0;
    margin-top: 4px;
  }

  #videoPopup .video-box .closes {
    width: 30px;
    height: 30px;
    top: 10px;
    right: 10px;
  }

  #videoPopup .video-box .closes svg {
    width: 14px;
    height: 14px;
  }
}

/*# sourceMappingURL=base.css.map */