@-webkit-keyframes zoomBox {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes zoomBox {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}
.banner .mb {
  display: none;
}
.banner .title {
  font-size: 2.8125vw;
  font-weight: 700;
  color: #035DAE;
  line-height: 74px;
  text-shadow: 2px 2px 3px rgba(1, 33, 62, 0.2);
  margin-bottom: 8px;
}
.banner .en {
  font-size: 1.5625vw;
  color: #333333;
  line-height: 43px;
}

.gradient-block {
  position: relative;
}
.gradient-block::after {
  position: absolute;
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #035DAE 0%, #58B631 99%);
}

.zh-en {
  text-align: center;
  margin-bottom: 3.646vw;
}
.zh-en .en {
  font-size: 1.875vw;
  font-weight: bold;
  line-height: 2.708vw;
  background: linear-gradient(90deg, #035DAE 0%, #58B631 99%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  opacity: 0.2;
  transform: translateY(1.5625vw);
}
.zh-en .zh {
  font-size: 1.875vw;
  font-weight: 700;
  color: #000000;
  line-height: 2.708vw;
}
.zh-en .zh::after {
  bottom: -0.833vw;
  left: 0;
  right: 0;
  margin: 0 auto;
}

header.pc {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-left: 5.208vw;
  padding-right: 5.208vw;
  background: transparent;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 5;
  transition: 450ms all;
}
header.pc.white {
  background: white;
}
header.pc .center li {
  transition: 450ms all;
}
header.pc .center span {
  font-size: 16px;
}
header.pc .center .first {
  display: flex;
  align-items: center;
}
header.pc .center .first > li {
  position: relative;
  padding: 28px 0.9375vw;
  height: 80px;
  min-width: 10vw;
}
header.pc .center .first > li ul {
  position: absolute;
}
header.pc .center .first .active a span {
  color: #035DAE;
}
header.pc .center .first a {
  display: flex;
  align-items: center;
  height: 100%;
}
header.pc .center .first .icon {
  width: 16px;
  height: 16px;
  margin-left: 4px;
}
header.pc .center .first .icon img:last-child {
  display: none;
}
header.pc .center .second {
  top: 100%;
  left: 0;
  transform: scalez(0);
  opacity: 0;
  transition: 450ms all;
}
header.pc .center .second li {
  width: 9rem;
  height: 50px;
  background-color: #fff;
}
header.pc .center .second li a {
  display: flex;
  padding: 14px 18px;
  align-items: center;
}
header.pc .center .first > li:hover span {
  color: #035DAE;
}
header.pc .center .first > li:hover .icon img:first-child {
  display: none;
}
header.pc .center .first > li:hover .icon img:last-child {
  display: block;
}
header.pc .center .first > li:hover .second {
  opacity: 1;
  transform: scalez(1);
}
header.pc .center .second li:hover {
  background-color: #035DAE;
  color: white !important;
}
header.pc .center .second li:hover a {
  color: white !important;
}
header.pc .left {
  width: 140px;
  height: 80px;
  flex-shrink: 0;
}
header.pc .left img {
  width: 100%;
  height: 100%;
}
header.pc .right img {
  width: 20px;
  height: 20px;
  cursor: pointer;
}

.float-com {
  position: fixed;
  right: 40px;
  top: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 9999999;
}
.float-com .btn-list {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 20px 15px;
  background: #FFFFFF;
  box-shadow: 0px 0px 8px 0px rgba(0, 44, 83, 0.15);
  border-radius: 40px 40px 40px 40px;
}
.float-com .btn-list:hover {
  -webkit-animation: zoomBox 652ms ease;
          animation: zoomBox 652ms ease;
}
.float-com .btn-list .item {
  position: relative;
  cursor: pointer;
}
.float-com .btn-list .item p {
  color: #000000;
}
.float-com .btn-list .item .alert-box {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 8px 16px;
  border-radius: 4px;
  position: absolute;
  right: calc(100% + 15px);
  top: 0;
  bottom: 0;
  background: #FFFFFF;
  margin: auto 14px;
  transition: 800ms all ease;
  opacity: 0;
  transform: scale(0);
  white-space: nowrap
}
.float-com .btn-list .item .alert-box::after {
  content: "";
  display: block;
  position: absolute;
  right: -30px;
  top: 0;
  width: 30px;
  height: 100%;
  white-space: nowrap
}
.float-com .btn-list .item .active {
  display: none;
}
.float-com .btn-list .item .normal {
  display: block;
}
.float-com .btn-list .item:hover .alert-box {
  transform: scale(1);
  white-space: nowrap;
  opacity: 1;
}
.float-com .btn-list .item:hover .normal {
  display: none;
}
.float-com .btn-list .item:hover .active {
  display: block;
}
.float-com .btn-list .item:hover p {
  color: #035DAE;
}
.float-com .btn-list .item .ewm {
  padding: 10px;
  height: 100px;
}
.float-com .btn-list .item .ewm img {
  width: 80px;
  height: 80px;
}
.float-com .btn-list img {
  width: 20px;
  height: 20px;
  margin: 0 auto;
}
.float-com .btn-list p {
  font-size: 12px;
  color: #035DAE;
  line-height: 17px;
}
.float-com .back-top {
  margin-top: 16px;
  border-radius: 50%;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #FFFFFF;
  box-shadow: 0px 0px 8px 0px rgba(0, 44, 83, 0.15);
  cursor: pointer;
  transform: scale(0);
  transition: all 450ms ease;
}
.float-com .back-top:hover {
  -webkit-animation: zoomBox 652ms ease;
          animation: zoomBox 652ms ease;
}
.float-com .back-top:hover .active {
  display: block;
}
.float-com .back-top:hover .normal {
  display: none;
}
.float-com .back-top img {
  width: 26px;
  height: 26px;
}
.float-com .back-top .active {
  display: none;
}
.float-com .back-top .normal {
  display: block;
}
.float-com .it-open {
  transform: scale(1);
  margin: 12px auto 0;
}

footer.pc {
  background: #F4F7FC;
}
footer.pc .navbar-bottom {
  padding: 30px 0;
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #DDE2E9;
}
footer.pc .left {
  width: 220px;
  height: 130px;
  flex-shrink: 0;
}
footer.pc .left img {
  width: 100%;
  height: 100%;
}
footer.pc .right {
  display: flex;
  align-items: center;
  gap: 40px;
}
footer.pc .right img {
  width: 100px;
  height: 100px;
  margin-bottom: 10px;
}
footer.pc .right p {
  font-size: 14px;
  color: #666666;
  line-height: 24px;
  text-align: center;
}
footer.pc .center {
  display: flex;
  gap: 3.125vw;
}
footer.pc .center .title {
  font-size: 16px;
  font-weight: bold;
  color: #333333;
  line-height: 23px;
}
footer.pc .center ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
footer.pc .center ul li a {
  transition: all 450ms ease;
}
footer.pc .center ul li:hover a {
  color: #035DAE;
}
footer.pc .fotter {
  font-size: 14px;
  color: #333333;
  line-height: 20px;
}
footer.pc .fotter .disclaimer {
  font-size: 14px;
  color: #666666;
  line-height: 20px;
}

.page-navbar {
  background-color: #F4F4F4;
}
.page-navbar .left {
  display: flex;
  align-items: center;
  gap: 10px;
}
.page-navbar .left .icon-home {
  width: 20px;
  height: 20px;
}
.page-navbar .left .icon-right {
  width: 10px;
  height: 10px;
}
.page-navbar .left span {
  font-size: 16px;
  color: #666666;
  line-height: 23px;
}
.page-navbar .right {
  display: flex;
  align-items: center;
  gap: 50px;
}
.page-navbar .right a {
  padding: 24px 0;
}
.page-navbar .right a::after {
  bottom: 0;
  width: 0;
  height: 2px;
}
.page-navbar .right .gradient-block.active {
  color: #035DAE;
  font-weight: bold;
}
.page-navbar .right .gradient-block.active::after {
  bottom: 0;
  width: 100%;
  height: 2px;
}

.page-search {
  height: 100%;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 123456;
  background-color: rgba(0, 0, 0, 0.2);
  display: none;
}
.page-search .search {
  background-color: #fff;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.page-search .search form {
  display: flex;
  align-items: center;
  justify-content: center;
}
.page-search .search img {
  width: 20px;
  height: 20px;
  cursor: pointer;
}
.page-search .search input {
  border-bottom: 1px solid #DDE2E9;
  margin: 0 16px;
  min-width: 40vw;
  padding-bottom: 4px;
}

@media (min-width: 768px) and (max-width: 1200px) {
  header.pc .center .first > li {
    min-width: 12vw;
  }
  footer.pc .center {
    margin-left: 6vw;
    flex: 1;
    justify-content: space-between;
  }
  footer.pc .right {
    display: none;
  }
}
@media (max-width: 768px) {
  .banner .pc {
    display: none;
  }
  .banner .mb {
    display: block;
  }
  .banner .title {
    margin-top: 52px;
    font-size: 22px;
    line-height: 30px;
    margin-bottom: 4px;
  }
  .banner .en {
    line-height: 17px;
    font-size: 12px;
  }
  .banner .container {
    padding: 0 20px;
  }
  .zh-en .en {
    font-size: 22px;
    transform: translateY(20px);
    line-height: 32px;
  }
  .zh-en .zh {
    font-size: 18px;
    line-height: 26px;
    margin-bottom: 25px;
  }
  .zh-en .zh::after {
    bottom: -14px;
    width: 32px !important;
    height: 2px !important;
  }
  .page-navbar {
    width: 100%;
    overflow-x: scroll;
  }
  .page-navbar > div {
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    min-width: 100%;
  }
  .page-navbar .left {
    display: none;
  }
  .page-navbar .right {
    gap: 32px;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    min-width: 100%;
  }
  .page-navbar a {
    padding: 18px 0 !important;
    font-size: 14px;
  }
  footer.mb {
    background-color: #F4F7FC;
  }
  footer.mb .top {
    padding-top: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid #DDE2E9;
  }
  footer.mb .top > img {
    width: 152px;
    height: 90px;
  }
  footer.mb .top .ewm img {
    width: 90px;
    height: 90px;
    margin: 0 auto 10px;
  }
  footer.mb .top .ewm p {
    font-size: 14px;
    color: #666666;
    line-height: 24px;
  }
  footer.mb .bottom {
    padding-top: 14px;
    padding-bottom: 14px;
    font-size: 14px;
    color: #333333;
    line-height: 24px;
  }
  header.mb {
    z-index: 2222 !important;
  }
  header.mb .top a > img {
    width: 100px;
    height: 52px;
  }
  header.mb .top div img {
    width: 20px;
    height: 20px;
  }
  header.mb .mb-searcg-box {
    display: none;
  }
  header.mb .mb-search {
    display: flex;
    align-items: center;
    height: 52px;
    background-color: #fff;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
  }
  header.mb .mb-search img {
    width: 20px;
    height: 20px;
  }
  header.mb .mb-search label {
    flex: 1;
    background: rgba(216, 216, 216, 0.2);
    border-radius: 4px 4px 4px 4px;
    padding: 10px;
    display: flex;
    align-items: center;
    margin-right: 16px;
  }
  header.mb .mb-search label input {
    flex: 1;
    background-color: transparent;
    font-size: 14px;
  }
  header.mb .mb-search label img {
    margin-right: 12px;
  }
  header.mb .navbar-list {
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    width: 100%;
    height: 100vh;
    overflow-y: scroll;
    background-color: #fff;
    display: none;
    padding-top: 52px;
  }
  header.mb .navbar-list .img {
    flex: 1;
    display: flex;
    justify-content: flex-end;
  }
  header.mb .navbar-list .img img {
    width: 16px;
    height: 16px;
  }
  header.mb .navbar-list .img img:last-child {
    display: none;
  }
  header.mb .navbar-list .first li > div {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 16px;
    border-bottom: 1px solid #E8E9EC;
  }
  header.mb .navbar-list .first li > div > a {
    font-size: 18px;
    color: #333333;
    line-height: 26px;
  }
  header.mb .navbar-list .second {
    display: none;
  }
  header.mb .navbar-list .second a {
    display: block;
    border-bottom: 1px solid #E8E9EC;
    padding-top: 16px;
    padding-bottom: 16px;
    margin-left: 40px;
    font-size: 16px;
    color: #666666;
    line-height: 23px;
  }
  header.mb .navbar-list .active > div > a {
    color: #035DAE !important;
  }
  header.mb .navbar-list .active > div > .img img:first-child {
    display: none !important;
  }
  header.mb .navbar-list .active > div > .img img:last-child {
    display: block !important;
  }
}