.common_banner {
  height: 100vh;
  overflow: hidden;
}

@keyframes roteA {
  100% {
    transform: rotate(360deg)
  }
}

.roteA {
  animation: roteA 5s linear infinite
}

.common_banner .bg {
  height: 100%;
}

.common_banner .bg img {
  width: 100%;
  height: 100%;
  transform: scale(1.1);
  transition: all 2s;
}

.common_banner.on .bg img {
  transform: scale(1);
}

.common_banner .text {
  position: absolute;
  left: 50%;
  z-index: 2;
  top: 50%;
  transform: translate(-50%, -50%);
}

.common_banner .text h3 {
  text-align: center;
  color: #fff;
  font-size: 50px;
}

.common_banner .text h3 span {
  transition: all 1s;
}

.common_banner .text h3.on span {
  transform: translateX(0) !important;
  opacity: 1 !important;
}

.commonTab {
  height: 60px;
}

.commonTab.active .wrap {
  position: fixed;
  top: 78px;
}

.commonTab .wrap {
  height: 60px;
  align-items: center;
  padding: 0 calc(50vw - 800px);
  border-bottom: 1px solid rgba(179, 179, 179, 0.2);
  display: flex;
  justify-content: space-between;
  z-index: 9;
  width: 100%;
  background-color: #F7F8FA;
}

.commonTab .wrap .list {
  height: 55px;
  display: flex;
  gap: 60px;
}

.commonTab .wrap .list .item {
  height: 60px;
  display: flex;
  font-size: 14px;
  color: #444444;
  align-items: center;
  position: relative;
  transition: color 0.6s;
}

.commonTab .wrap .list .item::after {
  content: "";
  bottom: 2px;
  height: 2px;
  background-color: #30479B;
  display: block;
  position: absolute;
  width: 100%;
  transform-origin: left;
  transform: scaleX(0);
  transition: all 0.6s;
}

.commonTab .wrap .list .item:hover,
.commonTab .wrap .list .item.active {
  color: #30479B;
}

.commonTab .wrap .list .item:hover::after,
.commonTab .wrap .list .item.active::after {
  transform: scaleX(1);
}

.commonTab .wrap .crumbs {
  display: flex;
  align-items: center;
  height: 55px;
}

.commonTab .wrap .crumbs span {
  font-size: 14px;
}

.commonTab .wrap .crumbs a {
  color: #999999;
  font-size: 14px;
  transition: all 0.6s;
}

.commonTab .wrap .crumbs a:hover {
  color: #174391;
}

.commonTab .wrap .crumbs a:last-child {
  color: #111111;
}

.commonTab .wrap .crumbs span {
  display: block;
  margin: 0 5px;
}

.common_page {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.common_page a {
  width: 34px;
  height: 34px;
  font-weight: 400;
  font-size: 18px;
  color: #111111;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.common_page a:hover,
.common_page a.on {
  color: #2C68FA;
}

.common_page a:nth-child(1) {
  border-radius: 6px 6px 0px 6px;
  background-image: linear-gradient(90deg, #CCD2E1 0%, #E7ECF8 100%);
  position: relative;
}

.common_page a:nth-child(1) img {
  display: block;
  width: 14px;
  transition: 0.6s;
  position: relative;
  z-index: 3;
}

.common_page a:nth-child(1):after {
  content: "";
  border-radius: 6px 6px 0px 6px;
  width: 100%;
  height: 100%;
  position: absolute;
  background-image: linear-gradient(90deg, #1C49BC 0%, #2D69FC 100%);
  opacity: 0;
  transition: 0.6s;
}

.common_page a:nth-child(1):hover img {
  filter: invert(1);
}

.common_page a:nth-child(1):hover:after {
  opacity: 1;
}

.common_page a:last-child {
  border-radius: 6px 6px 6px 0px;
  background-image: linear-gradient(270deg, #CCD2E1 0%, #E7ECF8 100%);
  position: relative;
  transform: scaleX(-1);
}

.common_page a:last-child:after {
  content: "";
  border-radius: 6px 6px 6px 0px;
  width: 100%;
  height: 100%;
  position: absolute;
  background-image: linear-gradient(270deg, #1C49BC 0%, #2D69FC 100%);
  opacity: 0;
  transition: 0.6s;
}

.common_page a:last-child img {
  display: block;
  width: 14px;
  transition: 0.6s;
  position: relative;
  z-index: 3;
}

.common_page a:last-child:hover img {
  filter: invert(1);
}

.common_page a:last-child:hover:after {
  opacity: 1;
}

.header .r .menu:not(.PC) {
  display: none;
}

.menuList {
  display: none;
}

.footer .wrap .links p img {
  width: 14px;
}


html[lang="en"] .footer .wrap .links p a:last-child {
  display: block;
}

html[lang="en"] .header .nav {
  width: 1200px;
}

html[lang="en"] .header .nav .item a {
  font-size: 14px;
}

html[lang="en"] .header .l .text p {
  font-size: 14px;
}

html[lang="en"] .common_banner .text h3 {
  opacity: 0;
  transform: translateY(20px);
  transition: all 1s;
}

html[lang="en"] .common_banner .text h3.on {
  opacity: 1;
  transform: translateY(0);
}

html[lang="en"] .footer .wrap .content .foo_nav {
  gap: 50px;
}

html[lang="en"] .footer .wrap .content .foo_nav .item .level a {
  font-size: 14px;
}

html[lang="en"] .footer .wrap .content .foo_nav .item>a {
  font-size: 16px;
}

@media screen and (max-width: 1919px) {
  .common_banner .text h3 {
    font-size: 2.6041666667vw;
  }

  .commonTab {
    height: 3.125vw;
  }

  .commonTab.active .wrap {
    top: 4.0625vw;
  }

  .commonTab .wrap {
    height: 3.125vw;
    padding: 0px calc(-41.6666666667vw + 50vw);
  }

  .commonTab .wrap .list {
    height: 2.8645833333vw;
    gap: 3.125vw;
  }

  .commonTab .wrap .list .item {
    height: 3.125vw;
    font-size: 0.7291666667vw;
  }

  .commonTab .wrap .list .item::after {
    bottom: 0.1041666667vw;
    height: 0.1041666667vw;
  }

  .commonTab .wrap .crumbs {
    height: 2.8645833333vw;
  }

  .commonTab .wrap .crumbs span {
    font-size: 0.7291666667vw;
  }

  .commonTab .wrap .crumbs a {
    font-size: 0.7291666667vw;
  }

  .commonTab .wrap .crumbs span {
    margin: 0px 0.2604166667vw;
  }

  .common_page {
    gap: 0.5208333333vw;
  }

  .common_page a {
    width: 1.7708333333vw;
    height: 1.7708333333vw;
    font-size: 0.9375vw;
  }

  .common_page a:nth-child(1) {
    border-radius: 0.3125vw 0.3125vw 0px;
  }

  .common_page a:nth-child(1) img {
    width: 0.7291666667vw;
  }

  .common_page a:nth-child(1)::after {
    border-radius: 0.3125vw 0.3125vw 0px;
  }

  .common_page a:last-child {
    border-radius: 0.3125vw 0.3125vw 0.3125vw 0px;
  }

  .common_page a:last-child::after {
    border-radius: 0.3125vw 0.3125vw 0.3125vw 0px;
  }

  .common_page a:last-child img {
    width: 0.7291666667vw;
  }

  .footer .wrap .links p img {
    width: 0.72916666vw;
  }

  html[lang="en"] .header .nav {
    width: 62.5vw;
  }

  html[lang="en"] .header .nav .item a {
    font-size: 0.7291666667vw;
  }

  html[lang="en"] .header .l .text p {
    font-size: 0.7291666667vw;
  }

  html[lang="en"] .common_banner .text h3 {
    transform: translateY(1.0416666667vw);
  }

  html[lang="en"] .footer .wrap .content .foo_nav {
    gap: 2.6041666667vw;
  }

  html[lang="en"] .footer .wrap .content .foo_nav .item .level a {
    font-size: 0.7291666667vw;
  }

  html[lang="en"] .footer .wrap .content .foo_nav .item>a {
    font-size: 0.8333333333vw;
  }


}

@media screen and (max-width: 1024px) {
  html[lang="en"] .header .l .text p{
    font-size: 12px;
  }
  .common_banner {
    height: auto;
    position: relative;
    margin-top: 60px;
  }

  .common_banner .parallax {
    height: 100%;
    transform: none !important;
  }

  .common_banner .parallax .bg img {
    min-height: 300px;

    height: 100%;
  }

  .commonTab {
    display: none;
  }

  .common_page a {
    width: 30px;
    height: 30px;
    font-size: 14px;
    border-radius: 8px 8px 0 !important;
  }

  .common_page a:last-child img,
  .common_page a:nth-child(1) img {
    width: 10px;
  }

  .common_page {
    gap: 10px;
  }

  .common_banner .text h3 {
    font-size: 24px;
  }

  .common_banner .text {
    width: 90vw;
  }

  .header.on,
  .header {
    height: 60px;
    padding: 0 5vw;
    background-color: #fff;
    border-bottom: 1px solid #eee;
  }

  .header .l .logo {
    width: 100px;
  }

  .header .l .text p {
    font-size: 12px;
    color: #111;
  }

  .header .l .line {
    height: 30px;
    margin: 0 10px;
    background-color: #111;
  }

  .header .l .logo img:nth-child(1) {
    opacity: 0;
  }

  .header .l .logo img:last-child {
    opacity: 1;
  }

  .header .nav {
    display: none;
  }

  .header .r .line,
  .header .r .line {
    height: 20px;
    margin: 0 20px;
    background-color: #111;
  }

  .header .r .language p {
    font-size: 14px;
    color: #111;
  }

  .header .r .language div {
    width: 8px;
    height: 5px;
    background-color: #111;
  }

  .header .r .menu.PC {
    display: none !important;
  }

  .header .menu {
    cursor: pointer;
    position: relative;
    display: block !important;
  }

  .header .menu .show {
    width: 20px;
    height: 15px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }

  .header .menu .show span {
    width: 100%;
    height: 1px;
    background: #000;
    transition: .3s ease;
    transform-origin: left;
  }

  .header .menu .show span:first-child {
    transition-delay: .6s;
  }

  .header .menu .show span:nth-child(2) {
    transition-delay: .5s;
  }

  .header .menu .show span:nth-child(3) {
    transition-delay: .4s;
  }

  .header .menu .hide {
    position: absolute;
    width: 20px;
    height: 20px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
  }

  .header .menu .hide:after {
    content: '';
    position: absolute;
    width: 100%;
    height: 1px;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    background: #000;
    transform: scaleX(0);
    transition: .3s ease;
    transform-origin: left;
  }

  .header .menu .hide:before {
    content: '';
    position: absolute;
    width: 1px;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    background: #000;
    transform: scaleY(0);
    transition: .3s ease;
    transform-origin: top;
  }

  .header .menu.on .show span {
    transform: scaleX(0);
  }

  .header .menu.on .show span:nth-child(1) {
    transition-delay: 0s;
  }

  .header .menu.on .show span:nth-child(2) {
    transition-delay: .1s;
  }

  .header .menu.on .show span:nth-child(3) {
    transition-delay: .2s;
  }

  .header .menu.on .hide:after {
    transform: scaleX(1);
    transition-delay: .4s;
  }

  .header .menu.on .hide:before {
    transform: scaleY(1);
    transition-delay: .3s;
  }

  .menuList {
    width: 100vw;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 99;
    background: #F8F8F8;
    padding: 30vh 0 0;
    transform-origin: top;
    clip-path: inset(0 0 100% 0);
    transition: 1.2s cubic-bezier(0.77, 0, 0.175, 1) 0.2s;
  }




  .menuList .menu_nav {
    width: 100%;
    padding: 0 160px;
    display: flex;
    justify-content: space-between;
  }

  .menuList .menu_nav li {
    opacity: 0;
    transform: translateY(10px);
    transition: 0.6s ease;
  }

  .menuList .menu_nav li a {
    display: block;
    font-weight: 400;
    font-size: 18px;
    color: #333333;
    line-height: 42px;
    transition: 0.6s;
  }

  .menuList .menu_nav li a:nth-child(1) {
    font-weight: 500;
    font-size: 24px;
    color: #1A1A1A;
    margin: 0 0 50px;
  }

  .menuList .menu_nav li a:hover {
    color: #1E52A3 !important;
  }

  .menuList.on {
    clip-path: inset(0 0 0% 0);
  }



  .menuList.on .menu_nav li {
    transform: translateY(0);
    opacity: 1;
  }

  .menuList.on .menu_nav li:nth-child(1) {
    transition-delay: 1s;
  }

  .menuList.on .menu_nav li:nth-child(2) {
    transition-delay: 1.1s;
  }

  .menuList.on .menu_nav li:nth-child(3) {
    transition-delay: 1.2s;
  }

  .menuList.on .menu_nav li:nth-child(4) {
    transition-delay: 1.3s;
  }

  .menuList.on .menu_nav li:nth-child(5) {
    transition-delay: 1.4s;
  }

  .menuList.on .menu_nav li:nth-child(6) {
    transition-delay: 1.5s;
  }

  .menuList.on .menu_nav li:nth-child(7) {
    transition-delay: 1.6s;
  }

  .menuList {
    display: block;
  }

  .menuList .PE {
    display: block;
  }

  .menuList .PE .joke .item {
    border-bottom: 1px solid rgba(0, 0, 0, .1);
    text-align: left;
    margin: auto;
  }

  .menuList .PE .joke .item {
    display: block;
  }

  .menuList .PE .joke .item>a,
  .menuList .PE .joke .item .headline a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 14px;
    color: #111;
    margin: 0 !important;
    font-weight: 400;
    padding: 16px 3%;
  }

  .menuList .PE .joke .item.teshu .headline a {
    width: 100%;
    justify-content: unset;
  }

  .menuList .PE .joke .item .headline {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .menuList .PE .joke .item .headline .iconfont {
    color: #111;
    font-size: 18px;
    position: relative;
    left: -3%;
    transition: 0.3s ease;
  }

  .menuList .PE .joke .item .headline .iconfont.on {
    transform: rotate(90deg);
  }

  .menuList .PE .joke .item>a.on {
    color: #00388B;
  }

  .menuList .PE .joke .item>a .iconfont {
    color: #333;
    font-size: 20px;
    transform: rotate(90deg);
    transition: 0.6s;
  }

  .menuList .PE .joke .item.on>a .iconfont {
    transform: rotate(180deg);
  }

  .menuList .PE .joke .item .hidden {
    overflow: hidden;
    display: none;
    padding-bottom: 10px;
  }

  .menuList .PE .joke .item .hidden .list .display {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 36px;
    margin: 0 auto;
    padding: 0 5%;
  }

  .menuList .PE .joke .item .hidden .list.cxk_2 .display a {
    width: 100%;
    height: 100%;
  }

  .menuList .PE .joke .item .hidden .list .display a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 14px;
    color: rgba(0, 0, 0, 0.5);
    font-weight: 400;
    width: 80%;
  }

  .menuList .PE .joke .item .hidden .list .display .iconfont {
    color: #111;
    font-size: 20px;
    position: relative;
    left: 0;
    transition: all .6s;
  }

  .menuList .PE .joke .item .hidden .list .display .iconfont.on {
    transform: rotate(90deg);
  }

  .menuList .PE .joke .item .hidden .list .level {
    overflow: hidden;
    display: none;
  }

  .menuList .PE .iconfont {
    /*transition: 0.6s;*/
  }

  .menuList .PE .iconfont.on {
    transform: rotate(90deg);
  }

  .menuList .PE .joke .item .hidden .list .level a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 13px;
    color: #b4b4b4;
    font-weight: 400;
    height: 41px;
    line-height: 30px;
    width: 80%;
    margin: auto;
  }


  .menuList .menu_nav {
    padding: 0;
  }

  .menuList {
    padding-top: 80px;
  }

  .menuList .PE .joke .item .hidden .icon-z043 {
    transition: all .3s !important;
  }

  .menuList .menu_nav .joke {
    max-height: 80vh;
    overflow: auto;
  }

  .menuList .menu_nav .joke::-webkit-scrollbar {
    display: block;
    width: 3px;
  }

  .header.white .r .menu,
  .header.on .r .menu {
    filter: none;
  }

  .footer .wrap {
    width: 90vw;
  }

  .footer {
    padding: 60px 0 10px;
  }

  .footer .wrap .top .l .foo_logo {
    width: 120px;
  }

  .footer .wrap .content .foo_nav {
    display: none;
  }

  .footer .wrap .top .l .foo_search {
    width: 300px;
    height: 36px;
    border-radius: 6px;
    padding: 0 10px;
    margin-top: 20px;
  }

  .footer .wrap .top .l .foo_search input {
    font-size: 14px;
    padding: 0 10px;
  }

  /* .footer .wrap .top{
    flex-direction: column;
  } */
  .footer .wrap .top .l {
    margin-bottom: 20px;
  }

  .footer .wrap .top .code p {
    font-size: 14px;
    margin-bottom: 10px;
  }

  .footer .wrap .top .code {
    width: 80px;
  }

  .footer .wrap .top .l .foo_search .dis .line {
    height: 15px;
    margin-right: 10px;
  }

  .footer .wrap .top .l .foo_search .dis button svg {
    width: 16px;
    height: 16px;
  }

  .footer .wrap .content .message .dis img {
    width: 20px;
    height: 20px;
  }

  .footer .wrap .content .message .dis a {
    font-size: 16px;
  }

  .footer .wrap .top .l {
    margin-bottom: 0;
  }

  .footer .wrap .top {
    padding-bottom: 30px;
    margin-bottom: 30px;
  }

  .footer .wrap .content .message .pick {
    font-size: 14px;
    line-height: 2;
    text-align: left;
  }

  .footer .wrap .content .message .dis {
    gap: 10px;
    justify-content: start;
    margin-bottom: 10px;
  }

  .footer .wrap .content {
    padding-bottom: 30px;
  }

  .footer .wrap .links {
    padding-top: 10px;
  }

  .footer .wrap .links p,
  .footer .wrap .links a {
    font-size: 14px;
    line-height: 2;
  }

  .footer .wrap .footer_nav_ph {
    display: block !important;
    margin-bottom: 40px;
  }

  .footer .wrap .footer_nav_ph .item .first {
    line-height: 60px;
    font-size: 15px;
    color: #fff;
    border-bottom: 1px solid rgba(225, 226, 227, 0.2);
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .footer .wrap .footer_nav_ph .item .first a {
    color: #fff;
  }

  .footer .wrap .footer_nav_ph .item .first .jia {
    width: 13px;
    height: 13px;
    position: relative;
  }

  .footer .wrap .footer_nav_ph .item .first .jia span:nth-child(1) {
    display: block;
    position: absolute;
    width: 1px;
    height: 100%;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    margin: auto;
    background: #fff;
    transition: .6s ease;
  }

  .footer .wrap .footer_nav_ph .item .first .jia span:nth-child(2) {
    display: block;
    position: absolute;
    width: 100%;
    height: 1px;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    margin: auto;
    background: #fff;
  }

  .footer .wrap .footer_nav_ph .item .second {
    display: none;
  }

  .footer .wrap .footer_nav_ph .item .second li a {
    display: block;
    color: #fff;
    font-size: 13px;
    display: block;
    width: 100%;
    line-height: 34px;
    opacity: .5;
    padding: 0 0 0 10px;
  }

  .footer .wrap .footer_nav_ph .item.item_active .first .jia span:nth-child(1) {
    opacity: 0;
  }

  .footer .wrap .links {
    flex-direction: column;
    align-items: start;
  }

  .header .r .menu {
    width: 20px;
    height: 15px;
  }

  .header .r .language {
    gap: 5px;
  }

  .header .r {
    width: fit-content;
  }

  .footer .wrap .links p img {
    width: 12px;
  }

  .footer .wrap .links p a {
    display: block;

  }
}

@media screen and (max-width: 767px) {
  .common_banner .text h3 {
    font-size: 20px;
  }

  .footer .wrap .top {
    flex-direction: column;
    gap: 20px;
  }

  .footer {
    padding-top: 50px;
  }

  .header .r .line,
  .header .r .line {
    margin: 0 15px;
  }
}

@media screen and (max-width: 540px) {
  .footer .wrap .top .l .foo_search {
    width: 100%;
  }

}<!--0.00014519691467285-->