header .header {
  background-color: #fff;
  height: 80px;
  display: flex;
  position: fixed;
  z-index: 9999;
  width: 100%;
  align-items: center;
  padding: 0 calc(50vw - 700px);
  justify-content: space-between;
}

header .header .logo {
  width: 200px;
}

header .header .right {
  display: flex;
  height: 100%;
  align-items: center;
}

header .header .right .list {
  display: flex;
  height: 100%;
}

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

header .header .right .list .item:hover .second {
  clip-path: inset(0 0 0 0);
}

header .header .right .list .item .second {
  position: absolute;
  width: 180px;
  left: 50%;
  transform: translateX(-50%);
  top: 80px;
  background: #fff;
  transition: 0.6s ease;
  clip-path: inset(0 0 100% 0);
  padding: 10px 0 20px;
}


header .header .right .list .item .second a {
  display: block;
  width: 100%;
  font-size: 18px;
  text-align: center;
  color: #999;
  font-weight: 400;
  line-height: 2;
  transition: all .6s;
}

header .header .right .list .item .second a:hover {
  color: #003DAA;
}

header .header .right .list .item a {
  color: #1B1B1B;
  font-size: 18px;
  /* font-weight: 700; */
  transition: all 0.6s;
  position: relative;
  /* font-family: "PingFang SC", "Microsoft YaHei", sans-serif; */
}

header .header .right .list .item>a::after {
  width: 100%;
  height: 2px;
  display: block;
  position: absolute;
  bottom: 30px;
  background-color: #003DAA;
  content: "";
  bottom: -10px;
  transform: scaleX(0);
  transition: all .6s;
}

header .header .right .list .item:hover>a {
  color: #003DAA;
}

header .header .right .list .item:hover a::after {
  transform: scaleX(1);
}

header .header .right .list .item:not(:last-child) {
  margin-right: 100px;
}

header .header .right .line {
  margin: 0 70px;
  width: 1px;
  height: 37px;
  background-color: #BFBFBF;
}

header .header .right .tab {
  color: #1B1B1B;
  /* font-weight: 700; */
}

header .header .right .tab a {
  color: #1B1B1B;
  transition: all 0.6s;
  font-size: 18px;
}

header .header .right .tab a:hover {
  color: #003DAA;
}

footer {
  background-color: #EEEEEE;
}

footer .footer {
  width: 1400px;
  margin: 0 auto;
  padding-top: 64px;
}

footer .footer .top {
  display: flex;
  justify-content: space-between;
  padding-bottom: 40px;
  border-bottom: 1px solid #95959550;
}

footer .footer .top .right {
  display: flex;
}

footer .footer .top .right .list {
  display: flex;
  flex-direction: column;
}

footer .footer .top .right .list:not(:last-child) {
  margin-right: 150px;
}

footer .footer .top .right .list .item {
  font-size: 18px;
  color: #535353;
  transition: all 0.6s;
}

footer .footer .top .right .list .item:not(:last-child) {
  margin-bottom: 13px;
}

footer .footer .top .right .list .item:hover {
  color: #003DAA;
}

footer .footer .top .right .list .item:first-child {
  margin-bottom: 30px;
  color: #1B1B1B;
  font-weight: 700;
}

footer .footer .top .right .list .item:first-child:hover {
  color: #003DAA;
}

footer .footer .bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0 40px;
}

footer .footer .bottom .left {
  display: flex;
  align-items: center;
}

footer .footer .bottom .left .line {
  background-color: #1B1B1B;
  opacity: 0.35;
  width: 1px;
  height: 20px;
  margin-left: 30px;
}

footer .footer .bottom .left p {
  color: #535353;
  font-size: 16px;
}

footer .footer .bottom .left a {
  color: #535353;
  margin-left: 30px;
  transition: all 0.6s;
}

footer .footer .bottom .left a:hover {
  color: #003DAA;
}

footer .footer .bottom .right a {
  margin-left: 40px;
  color: #535353;
  transition: all 0.6s;
}

footer .footer .bottom .right a:hover {
  color: #003DAA;
}

.banner {
  overflow: hidden;
  padding-top: 80px;
}

.banner .wrap {
  position: relative;
}

.banner .wrap .img img {
  width: 100%;
}

.banner .wrap .text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  color: #fff;
  font-size: 70px;
  font-weight: 200;
}

.common_tab a {
  font-size: 40px;
  color: #7D7D7D;
  transition: all 0.6s;
  font-weight: 200;
}

.common_tab a:not(:last-child) {
  margin-right: 60px;
}

.common_tab a:hover {
  color: #1A47C6;
}

.common_tab a.active {
  font-weight: 700;
  color: #1A47C6;
}

.common_search {
  display: flex;
  align-items: center;
  border: 2px solid #BFBFBF;
  width: 240px;
  padding: 0 10px 0 20px;
  height: 36px;
  border-radius: 5px;
}

.common_search input {
  border: none;
  flex: 1;
  font-size: 16px;
}

.common_search button {
  background-color: transparent;
}

.common_search button span {
  color: #1A47C6;
  font-weight: 700;
}


.common_paging {
  display: flex;
  align-items: center;
  justify-content: center
}

.common_paging a {
  transition: .6s ease
}

.common_paging a:first-child,
.common_paging a:last-child {
  width: 50px;
  height: 50px;
  background: #E3E4E6;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center
}

.common_paging a:first-child .iconfont,
.common_paging a:last-child .iconfont {
  color: #FFFFFF;
  font-size: 18px
}

.common_paging a:first-child:hover,
.common_paging a:last-child:hover {
  background: #003DAA
}

.common_paging a:first-child {
  transform: rotate(180deg)
}

.common_paging a:not(:first-child),
.common_paging a:not(:last-child) {
  font-weight: 400;
  font-size: 18px;
  color: #CCCCCC;
  margin: 0 15px
}

.common_paging a:not(:first-child).on,
.common_paging a:not(:first-child):hover,
.common_paging a:not(:last-child).on,
.common_paging a:not(:last-child):hover {
  color: #111111
}

.common_search {
  align-items: center;
}

.common_search .icon {
  display: inline-flex
}

header .header .right .menu,
.menu_show {
  display: none;
}

header .header .right .lang {
  display: none;
}

html[lang="en"] header .header .right .list .item .second {
  width: fit-content;
  white-space: nowrap;
  padding: 10px 20px 20px;
}

@media screen and (max-width: 1919px) {
  header .header {
    height: 4.1666666667vw;
    padding: 0px calc(-36.4583333333vw + 50vw);
  }

  header .header .logo {
    width: 10.4166666667vw;
  }

  header .header .right .list .item .second {
    width: 9.375vw;
    top: 4.1666666667vw;
    padding: 0.5208333333vw 0px 1.0416666667vw;
  }

  header .header .right .list .item .second a {
    font-size: 0.9375vw;
  }

  header .header .right .list .item a {
    font-size: 0.9375vw;
  }

  header .header .right .list .item>a::after {
    height: 0.1041666667vw;
    bottom: -0.5208333333vw;
  }

  header .header .right .list .item:not(:last-child) {
    margin-right: 5.2083333333vw;
  }

  header .header .right .line {
    margin: 0px 3.6458333333vw;
    height: 1.9270833333vw;
  }

  header .header .right .tab,
  header .header .right .tab a {
    font-size: 0.9375vw;
  }

  footer .footer {
    width: 72.9166666667vw;
    padding-top: 3.3333333333vw;
  }

  footer .footer .top {
    padding-bottom: 2.0833333333vw;
  }

  footer .footer .top .right .list:not(:last-child) {
    margin-right: 7.8125vw;
  }

  footer .footer .top .right .list .item {
    font-size: 0.9375vw;
  }

  footer .footer .top .right .list .item:not(:last-child) {
    margin-bottom: 0.6770833333vw;
  }

  footer .footer .top .right .list .item:first-child {
    margin-bottom: 1.5625vw;
  }

  footer .footer .bottom {
    padding: 0.7291666667vw 0px 2.0833333333vw;
  }

  footer .footer .bottom .left .line {
    height: 1.0416666667vw;
    margin-left: 1.5625vw;
  }

  footer .footer .bottom .left p {
    font-size: 0.8333333333vw;
  }

  footer .footer .bottom .left a {
    margin-left: 1.5625vw;
  }

  footer .footer .bottom .right a {
    margin-left: 2.0833333333vw;
  }

  .banner {
    padding-top: 4.1666666667vw;
  }

  .banner .wrap .text {
    font-size: 3.6458333333vw;
  }

  .common_tab a {
    font-size: 2.0833333333vw;
  }

  .common_tab a:not(:last-child) {
    margin-right: 3.125vw;
  }

  .common_search {
    border: 0.1041666667vw solid rgb(191, 191, 191);
    width: 12.5vw;
    padding: 0px 0.5208333333vw 0px 1.0416666667vw;
    height: 1.875vw;
    border-radius: 0.2604166667vw;
  }

  .common_search input {
    font-size: 0.8333333333vw;
  }

  .common_paging a:first-child,
  .common_paging a:last-child {
    width: 2.6041666667vw;
    height: 2.6041666667vw;
  }

  .common_paging a:first-child .iconfont,
  .common_paging a:last-child .iconfont {
    font-size: 0.9375vw;
  }

  .common_paging a:not(:first-child),
  .common_paging a:not(:last-child) {
    font-size: 0.9375vw;
    margin: 0px 0.78125vw;
  }

  footer .footer .bottom .right a {
    font-size: 0.8333333vw;
  }

  footer .footer .top .logo {
    width: 13.333333vw;
    display: block;
  }

  html[lang="en"] header .header .right .list .item .second {
    padding: 0.5208333333vw 1.0416666667vw 1.0416666667vw;
  }
}

@media screen and (max-width: 1024px) {
  .banner {
    padding-top: 60px;
  }

  .banner .wrap {
    transform: none !important;
  }

  .banner .wrap .img {
    height: 270px;
  }

  .banner .wrap .img img {
    height: 100%;
  }

  .banner .wrap .text {
    font-size: 28px;
  }

  .common_paging a:not(:first-child),
  .common_paging a:not(:last-child) {
    font-size: 14px;
    margin: 0 10px;
  }

  .common_paging a:first-child,
  .common_paging a:last-child {
    width: 32px;
    height: 32px;
  }

  .common_paging a:first-child .iconfont,
  .common_paging a:last-child .iconfont {
    font-size: 14px;
  }

  .common_search input {
    font-size: 14px;
  }

  .common_search {
    border-width: 1px;
    width: 100%;
    padding: 0 10px;
    height: 36px;
    border-radius: 5px;
  }

  header .header {
    height: 60px;
    padding: 0 5vw;
  }

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

  header .header .right .list,
  header .header .right .line,
  header .header .right .tab {
    display: none;
  }


  header .header .right .menu {
    margin: 0 0 0 25px;
    cursor: pointer;
    position: relative;
    display: block;
  }

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

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

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

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

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

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

  header .header .right .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 .header .right .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 .header .right .menu.on .show span {
    transform: scaleX(0);
  }

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

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

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

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

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


  .menu_show {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #fff;
    z-index: 98;
    display: block;
    clip-path: inset(0 0 100%);
    transition: .6s ease;
  }

  .menu_show .joke>ul>li {
    transform: translateY(10px);
    opacity: 0;
    /* transition: opacity .3s, transform .6s .3s; */
    transition: all .6s;
  }

  .menu_show .joke>ul>li:nth-child(1) {
    transition-delay: .3s;
  }

  .menu_show .joke>ul>li:nth-child(2) {
    transition-delay: .4s;
  }

  .menu_show .joke>ul>li:nth-child(3) {
    transition-delay: .5s;
  }

  .menu_show .joke>ul>li:nth-child(4) {
    transition-delay: .6s;
  }

  .menu_show .joke>ul>li:nth-child(5) {
    transition-delay: .7s;
  }

  .menu_show .joke>ul>li:nth-child(6) {
    transition-delay: .8s;
  }

  .menu_show .joke>ul>li:nth-child(7) {
    transition-delay: .9s;
  }

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

  .menu_show.on .joke>ul>li {
    opacity: 1;
    transform: translateY(0);
  }

  .menu_show .joke {
    padding: 80px 5% 30px 5%;
    height: calc(100vh - 47px);
    overflow: hidden;
    overflow-y: scroll;
  }

  .menu_show .joke ul {
    margin: 0 0 20px;
    position: relative;
  }

  .menu_show .joke ul ul {
    display: none;
  }

  .menu_show .joke>ul>li {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  }

  .menu_show .joke ul li .show {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .menu_show .joke>ul>li>.show {
    height: 60px;
  }

  .menu_show .joke ul li .show>a {
    font-size: 14px;
    color: rgba(0, 0, 0, .6);
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    line-height: 35px;
    transition: .6s ease;
  }

  .menu_show .joke>ul>li>.show>a {
    color: #000;
    font-size: 16px;
  }


  .menu_show .joke ul li .show .click {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    cursor: pointer;
  }

  .menu_show .joke ul li .show.on>a {
    color: var(--color) !important;
  }

  .menu_show .joke ul li .show.on .click span {
    transform: rotate(90deg);
  }

  .menu_show .joke ul li .show .click span {
    transition: 0.4s;
  }

  .menu_show .joke ul li .show .click img {
    width: 12px;
    height: 12px;
    transition: .3s ease;
  }

  header .header .right .lang {
    display: block;
  }

  header .header .right .lang span {
    font-size: 20px;
  }

  footer .footer {
    padding: 60px 0 0;
    width: 90vw;
  }

  footer .footer .top .right {
    display: none;
  }

  footer .footer .bottom .left p {
    font-size: 14px;
  }

  footer .footer .bottom {
    padding: 20px 0;
  }

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

  footer .footer .bottom .right a {
    font-size: 14px;
    margin-left: 0;
  }

  footer .footer .top .logo {
    width: 120px;
  }

  footer .footer .menu_show {
    position: static;
    height: auto;
    z-index: 1;
    background-color: transparent;
    clip-path: none;
    margin-top: 20px;
  }

  footer .footer .menu_show .joke {
    height: auto;
    padding: 0;
  }

  footer .footer .top {
    flex-direction: column;
  }

  footer .footer .menu_show .joke>ul>li {
    opacity: 1;
    transform: translateY(0);
  }
}

@media screen and (max-width: 767px) {
  .banner .wrap .text {
    font-size: 24px;
  }

  footer .footer {
    padding-top: 50px;
  }
}