@font-face {
  font-family: "Narrow";
  src: url('../fonts/Narrow.otf');
}
body {
  font-family: 'Narrow', 'Source Han Sans CN', -apple-system, sans-serif, Arial;
}
.noData {
  min-height: 5rem;
}
.after {
  content: '';
  display: inline-block;
}
.after_a {
  content: '';
  position: absolute;
}
.flex,
.flex_js,
.flex_jc,
.flex_ac,
.flex_js_ac,
.flex_jc_ac,
.flex_js_fe,
.flex_js_af,
.flex_je,
.flex_fe {
  display: flex;
}
.flex_je {
  justify-content: flex-end;
}
.flex_js,
.flex_js_fe {
  justify-content: space-between;
}
.flex_jc {
  justify-content: center;
}
.flex_ac {
  align-items: center;
}
.flex_fe,
.flex_js_fe {
  align-items: flex-end;
}
.flex_js_ac {
  justify-content: space-between;
  align-items: center;
}
.flex_jc_ac {
  justify-content: center;
  align-items: center;
}
.flex_js_af {
  justify-content: space-between;
  align-items: flex-start;
}
.flex_row {
  flex-flow: row wrap;
}
.flex_dir_col {
  flex-direction: column;
}
:root {
  --ww: 1920 * 100vw;
}
@media (max-width: 1600px) {
  :root {
    --ww: 1600 * 100vw;
  }
}
@media (max-width: 1024px) {
  :root {
    --ww: 1200 * 100vw;
  }
}
@media (max-width: 768px) {
  :root {
    --ww: 1024 * 100vw;
  }
}
@media (max-width: 640px) {
  :root {
    --ww: 600 * 100vw;
  }
}
html {
  font-size: calc(100 / var(--ww));
}
body {
  font-size: 0.16rem;
  overflow-x: hidden;
}
.f14 {
  font-size: 0.14rem;
}
.f16 {
  font-size: 0.16rem;
}
.f17 {
  font-size: 0.17rem;
}
.f18 {
  font-size: 0.18rem;
}
.f20 {
  font-size: 0.2rem;
}
.f22 {
  font-size: 0.22rem;
}
.f24 {
  font-size: 0.24rem;
}
.f25 {
  font-size: 0.25rem;
}
.f26 {
  font-size: 0.26rem;
}
.f28 {
  font-size: 0.28rem;
}
.f30 {
  font-size: 0.3rem;
}
.f32 {
  font-size: 0.32rem;
}
.f34 {
  font-size: 0.34rem;
}
.f36 {
  font-size: 0.36rem;
}
.f38 {
  font-size: 0.38rem;
}
.f40 {
  font-size: 0.4rem;
}
.f42 {
  font-size: 0.42rem;
}
.f44 {
  font-size: 0.44rem;
}
.f46 {
  font-size: 0.46rem;
}
.f48 {
  font-size: 0.48rem;
}
.f50 {
  font-size: 0.5rem;
}
.f52 {
  font-size: 0.52rem;
}
.f54 {
  font-size: 0.54rem;
}
.f56 {
  font-size: 0.56rem;
}
.f58 {
  font-size: 0.58rem;
}
.f60 {
  font-size: 0.6rem;
}
.f62 {
  font-size: 0.62rem;
}
.f64 {
  font-size: 0.64rem;
}
.f70 {
  font-size: 0.7rem;
}
.f72 {
  font-size: 0.72rem;
}
.f82 {
  font-size: 0.82rem;
}
.bg-gray {
  background-color: #f5f7f9;
}
.bg-white {
  background-color: #fff;
}
@media (max-width: 768px) {
  .f48 {
    font-size: 0.32rem;
  }
  .f60,
  .f70 {
    font-size: 0.48rem;
  }
}
@media (max-width: 640px) {
  body {
    font-size: 0.2rem;
  }
  .f14 {
    font-size: 0.18rem;
  }
  .f16 {
    font-size: 0.2rem;
  }
  .f17 {
    font-size: 0.2rem;
  }
  .f18 {
    font-size: 0.22rem;
  }
  .f20 {
    font-size: 0.22rem;
  }
  .f22 {
    font-size: 0.24rem;
  }
}
.hidden {
  overflow: hidden;
}
.re {
  position: relative;
}
.ani {
  transition: all 0.5s;
}
a:hover .ani {
  transform: scale(1.15);
}
.drop_list {
  box-sizing: border-box;
  padding: 0.7rem 0;
}
.drop_list span {
  color: #fff;
  cursor: pointer;
}
.drop_list .title {
  width: 50%;
}
.drop_list ul {
  width: 50%;
}
.drop_list.sub {
  width: 100%;
  position: absolute;
  overflow: hidden;
  z-index: 2;
  left: 50%;
  top: 1.2rem;
  opacity: 0;
  pointer-events: none;
  transform: translate3d(-50%, -10px, 0);
  -webkit-transform: translate3d(-50%, -10px, 0);
  -moz-transform: translate3d(-50%, -10px, 0);
  -o-transform: translate3d(-50%, -10px, 0);
  -ms-transform: translate3d(-50%, -10px, 0);
  backface-visibility: hidden;
  transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
  background-color: #034da2;
  white-space: nowrap;
}
.drop_list.sub.hover {
  opacity: 1;
  transform: translate3d(-50%, 0px, 0);
  -webkit-transform: translate3d(-50%, 0px, 0);
  -moz-transform: translate3d(-50%, 0px, 0);
  -o-transform: translate3d(-50%, 0px, 0);
  -ms-transform: translate3d(-50%, 0px, 0);
  backface-visibility: hidden;
  pointer-events: auto;
}
.drop_list .dropBox .titleBox {
  flex: 1;
}
.drop_list .dropBox .title {
  font-size: 0.24rem;
  color: #3ab54a;
  font-weight: bold;
  width: 50%;
}
.drop_list .dropBox .descText {
  font-size: 0.18rem;
  color: #fff;
  margin: 0.1rem 0;
  text-wrap: wrap;
}
.drop_list .dropBox ul {
  flex: 1;
}
.drop_list .dropBox li {
  justify-content: flex-start;
}
.drop_list .dropBox li a {
  display: block;
  width: 33%;
  color: #fff;
  box-sizing: border-box;
  font-weight: bold;
  line-height: calc(37/16);
  border-bottom: 1px solid transparent;
  position: relative;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  padding-right: 0.4rem;
}
.drop_list .dropBox li a::after {
  content: '>';
  display: none;
  clear: both;
  position: absolute;
  right: 0.3rem;
  top: 0.05rem;
  color: #3ab54a;
}
.drop_list .dropBox li a:hover {
  color: #3ab54a;
  border-bottom: 1px solid #3ab54a;
}
.drop_list .dropBox li a:hover::after {
  display: block;
}
.mainContent {
  position: relative;
  padding-bottom: 1.1rem;
}
.mainContent .Htitle {
  font-size: 0.36rem;
  color: #034da2;
  line-height: calc(70/30);
  font-weight: bold;
}
.mainContent .Hdesc {
  font-size: 0.2rem;
  color: #3ab54a;
  line-height: calc(35/20);
  font-weight: bold;
}
.mainContent::before {
  width: calc(210/1920 * 100vw);
  height: calc(210/1920 * 100vw);
  content: '';
  display: block;
  clear: both;
  position: absolute;
  background-color: #034da2;
  clip-path: polygon(0 0, 100% 0, 0 100%, 0 0);
  z-index: 2;
}
.mainContent::after {
  width: calc(210/1920 * 100vw);
  height: calc(210/1920 * 100vw);
  content: '';
  bottom: 0;
  right: 0;
  display: block;
  clear: both;
  position: absolute;
  background-color: #3ab54a;
  clip-path: polygon(0 0, 100% 0, 0 100%, 0 0);
  transform: rotate(180deg);
  z-index: 2;
}
.mainContent .button {
  display: block;
  width: 2rem;
  height: 0.6rem;
  text-align: center;
  color: #fff;
  background-color: #3ab54a;
  line-height: 0.6rem;
}
@media (max-width: 640px) {
  .mainContent::before {
    display: none;
  }
  .mainContent::after {
    display: none;
  }
}
.newsInfoBg {
  background-color: #fff;
}
.header {
  width: 100%;
  z-index: 100;
  position: sticky;
  left: 0;
  top: 0;
  transition: all 0.5s ease-in-out;
  background-color: #034da2;
}
.header::after {
  width: 50%;
  height: 0.8rem;
  content: '';
  display: block;
  clear: both;
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: -1;
  background-color: #fff;
}
.header .website {
  justify-content: flex-end;
}
.header .website a {
  font-size: 0.14rem;
  height: 0.4rem;
  color: #fff;
  margin-right: 0.2rem;
  line-height: 0.4rem;
  display: inline-block;
}
.header .website a:hover {
  color: #3ab54a;
}
.header .open_drop_list {
  position: relative;
}
.header .open_drop_list::after {
  content: '';
  display: block;
  clear: both;
  position: absolute;
  top: 0.18rem;
  right: -0.15rem;
  width: 0.09rem;
  height: 0.06rem;
  background-image: url('../images/arrow_down.svg');
  background-size: 100% 100%;
}
.header .website a:last-child {
  margin-right: 0;
}
.header .select {
  border: none;
  outline: none;
  color: #fff;
  appearance: auto;
  padding-right: 0;
}
.header .logo {
  max-width: 1.72rem;
  position: relative;
  margin-top: -0.2rem;
}
.header .other {
  display: inline-flex;
  gap: 0.5rem;
  margin-left: 0.3rem;
  height: 0.8rem;
}
.header .navTop_bg {
  background-color: #fff;
  position: relative;
  width: calc(80%);
}
.header .navTop_bg::before {
  width: 0.81rem;
  height: 0.81rem;
  content: '';
  display: block;
  clear: both;
  position: absolute;
  top: -1px;
  left: -1px;
  background-color: #034da2;
  clip-path: polygon(0 0, 100% 0, 0 100%, 0 0);
}
.header .menuIcon {
  display: none;
}
.header .lang {
  position: relative;
  display: inline-flex;
  align-items: center;
}
.header .lang .title {
  cursor: pointer;
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: contain;
  gap: 0.08rem;
  color: #3ab54a;
  background-image: none;
}
.header .lang .title::after {
  content: '';
  display: block;
  width: 0.09rem;
  height: 0.05rem;
  background-image: url('../images/arrow_down2.svg');
  background-size: 100% 100%;
  position: absolute;
  top: 0.05rem;
  right: 0rem;
}
.header .lang .box {
  position: absolute;
  left: 50%;
  top: 100%;
  width: 0.8rem;
  text-align: center;
  padding: 60px 0 10px;
  display: flex;
  flex-flow: column wrap;
  align-items: center;
  opacity: 0;
  padding-top: 10px;
  pointer-events: none;
  transform: translate3d(-50%, 10px, 0);
  -webkit-transform: translate3d(-50%, 10px, 0);
  -moz-transform: translate3d(-50%, 10px, 0);
  -o-transform: translate3d(-50%, 10px, 0);
  -ms-transform: translate3d(-50%, 10px, 0);
  backface-visibility: hidden;
  transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
}
.header .lang .box aside {
  box-shadow: 0 3px 29px -8px rgba(192, 196, 204, 0.7);
  width: 100%;
  background-color: #fff;
  border-radius: 6px;
  padding: 10px 0px;
  position: relative;
}
.header .lang .box aside::before {
  content: '';
  position: absolute;
  width: 0;
  height: 0;
  border-width: 5px;
  border-style: solid;
  border-color: transparent transparent #fff transparent;
  left: 50%;
  bottom: 100%;
  transform: translateX(-50%);
}
.header .lang .box a {
  color: #999;
  display: block;
  padding: 10px 0;
  transition: all 0.3s;
}
.header .lang .box a:hover {
  background-color: #02398d;
  color: #fff;
}
.header .lang.on .box {
  opacity: 1;
  transform: translate3d(-50%, 0px, 0);
  -webkit-transform: translate3d(-50%, 0px, 0);
  -moz-transform: translate3d(-50%, 0px, 0);
  -o-transform: translate3d(-50%, 0px, 0);
  -ms-transform: translate3d(-50%, 0px, 0);
  backface-visibility: hidden;
  pointer-events: auto;
}
.header .search {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.header .search.search_show .top_search {
  opacity: 1;
  top: 100%;
  pointer-events: auto;
}
.header .open_search {
  width: 0.18rem;
  height: 0.18rem;
  background: url(../images/search3.svg) no-repeat center;
  display: inline-block;
  background-size: contain;
}
.header .open_search.on {
  background: none;
  position: relative;
}
.header .open_search.on:before,
.header .open_search.on:after {
  position: absolute;
  content: '';
  width: 100%;
  left: 0;
  height: 2px;
  top: 50%;
  margin-top: -1.5px;
  background: #3ab54a;
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
}
.header .open_search.on:after {
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
}
.header .top_search {
  width: 100%;
  position: absolute;
  right: 0;
  opacity: 0;
  top: 100%;
  z-index: 10;
  transition: all 0.5s ease-in-out;
  overflow: hidden;
  pointer-events: none;
  padding: 0.6rem 0 0.7rem;
  background-color: #fff;
}
.header .top_search .btn {
  background: url(../images/search2.svg) no-repeat center #034da2;
  width: 0.6rem;
  height: 0.6rem;
  background-size: 0.28rem;
  flex-shrink: 0;
  display: flex;
}
.header .top_search .text {
  width: 100%;
  height: 0.6rem;
  line-height: 0.6rem;
  padding: 0 0.2rem;
  border: none;
  background-color: #fff;
  flex: 1;
}
.header .top_search .text::placeholder {
  color: #999999;
}
.header .top_search .warp {
  width: 92%;
  max-width: 8rem;
  margin: 0 auto;
}
.header .top_search dt {
  padding: 0 0.2rem 0.2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}
.header .top_search dt .on {
  color: #034da2;
}
.header .top_search dd {
  position: relative;
  border: 2px solid #034da2;
  overflow: hidden;
  background-color: #034da2;
  display: flex;
}
.header .navTop {
  padding-left: 1.5rem;
  background-color: #fff;
}
.header .navTop .ul {
  width: 100%;
  gap: 0.55rem;
}
.header .navTop li {
  text-align: center;
  position: relative;
}
.header .navTop li span {
  display: inline-block;
  position: relative;
}
.header .navTop li span a {
  position: relative;
  font-weight: bold;
  color: #555555;
  height: 0.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.header .navTop li span a::before {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0.15rem;
  transform: translateX(-50%);
  width: 0;
  background-color: #034da2;
  transition: all 0.5s ease-in-out;
  transition: all 0.5s;
  height: 2px;
}
@media (min-width: 1025px) {
  .header .navTop li.aon span a,
  .header .navTop li:hover span a {
    color: #3ab54a;
  }
  .header .navTop li.aon span a::before,
  .header .navTop li:hover span a::before {
    width: 0.3rem;
  }
  .header .navTop li .sub a:hover {
    background-color: #034da2;
    color: #fff;
  }
}
.header .navTop li .sub {
  position: absolute;
  overflow: hidden;
  border-radius: 0 0 0.1rem 0.1rem;
  left: 50%;
  top: 100%;
  opacity: 0;
  pointer-events: none;
  transform: translate3d(-50%, -10px, 0);
  -webkit-transform: translate3d(-50%, -10px, 0);
  -moz-transform: translate3d(-50%, -10px, 0);
  -o-transform: translate3d(-50%, -10px, 0);
  -ms-transform: translate3d(-50%, -10px, 0);
  backface-visibility: hidden;
  transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
  background-color: #fff;
  min-width: 2rem;
  white-space: nowrap;
}
.header .navTop li .sub a {
  display: block;
  line-height: 0.4rem;
  transition: all 0.5s;
}
.header .navTop li.hover .sub {
  opacity: 1;
  transform: translate3d(-50%, 0px, 0);
  -webkit-transform: translate3d(-50%, 0px, 0);
  -moz-transform: translate3d(-50%, 0px, 0);
  -o-transform: translate3d(-50%, 0px, 0);
  -ms-transform: translate3d(-50%, 0px, 0);
  backface-visibility: hidden;
  pointer-events: auto;
}
.header:not(.white, .search_header) .navTop li.aon span a {
  color: #3ab54a;
}
.header:not(.white, .search_header) .navTop li.aon span a {
  color: #3ab54a;
}
.header:not(.white, .search_header) .navTop li span a {
  color: #034da2;
}
.header:not(.white, .search_header) .navTop li span a:hover {
  color: #3ab54a;
}
.header:not(.white, .search_header) .navTop li span a::before {
  background-color: #3ab54a;
}
.header:not(.white, .search_header) .lang .title {
  min-width: 0.5rem;
  border: none;
  outline: none;
  color: #3ab54a;
  appearance: auto;
  padding-right: 0;
}
.header:not(.white, .search_header) .lang .title::before {
  filter: brightness(0) invert(100%);
}
.header:not(.white, .search_header) #open_menu i,
.header:not(.white, .search_header) #open_menu::before,
.header:not(.white, .search_header) #open_menu::after {
  background-color: #3ab54a;
}
@media screen and (max-width: 1024px) {
  .navTop_bg {
    justify-content: flex-end;
  }
  .header .other {
    z-index: 110;
  }
  .header .lang {
    line-height: 1;
  }
  .header .lang .box {
    width: 0.7rem;
  }
  .header .open_search {
    width: 0.2rem;
    height: 0.2rem;
  }
  .header .menuIcon {
    display: inline-flex;
    align-items: center;
  }
  .header #open_menu {
    z-index: 100;
    width: 0.25rem;
    height: 0.18rem;
    cursor: pointer;
    position: relative;
  }
  .header #open_menu i {
    display: inline-block;
    width: 80%;
    height: 2px;
    transform: translateY(-50%);
    background-color: #3ab54a;
    position: absolute;
    left: 0;
    top: 50%;
    border-radius: 5px;
  }
  .header #open_menu::before,
  .header #open_menu::after {
    width: 100%;
    height: 2px;
    background-color: #3ab54a;
    border-radius: 5px;
    left: 0;
    content: '';
    position: absolute;
  }
  .header #open_menu::before {
    top: 0;
  }
  .header #open_menu::after {
    bottom: 0;
    top: auto;
  }
  .header #open_menu.open_menu_on i {
    opacity: 0;
  }
  .header #open_menu.open_menu_on:before {
    transform: rotate(45deg);
    top: 0.1rem;
  }
  .header #open_menu.open_menu_on:after {
    transform: rotate(-45deg);
    bottom: auto;
    top: 0.1rem;
  }
  .header .navTop {
    display: none;
    -webkit-overflow-scrolling: touch;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    overflow-y: auto;
    visibility: hidden;
    position: fixed;
    right: -100%;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
    line-height: 40px;
    margin-left: 0;
    display: block;
    padding: 0;
    transition: all 0.5s;
    opacity: 0;
    background-image: none;
    margin-right: 0;
    z-index: 106;
    padding-top: 0.8rem;
  }
  .header .navTop::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: calc(100% - 0.8rem);
    background-color: rgba(0, 0, 0, 0.5);
  }
  .header .navTop.show {
    visibility: visible;
    right: 0;
    opacity: 1;
  }
  .header .navTop .ul {
    position: relative;
    height: 100%;
    max-height: 100%;
    width: 200px;
    margin: 0 0 0 auto;
    background-color: #fff;
    margin-right: 0;
    overflow: auto;
    display: block;
  }
  .header .navTop .ul li {
    float: none;
    height: auto;
    text-align: left;
    border-bottom: 1px solid #eee;
    margin: 0;
    width: 100%;
  }
  .header .navTop .ul li:hover span a,
  .header .navTop .ul li.aon span a {
    color: #333;
  }
  .header .navTop .ul li span {
    display: block;
    padding: 0 10%;
  }
  .header .navTop .ul li span a {
    padding-bottom: 0;
    line-height: normal;
    justify-content: flex-start;
    display: inline-flex;
  }
  .header .navTop .ul li span a::before {
    display: none;
  }
  .header .navTop .ul li .sub {
    position: relative;
    transform: none;
    left: 0;
    top: 0;
    color: #999999;
    width: 100%;
    background-color: transparent;
    text-align: left;
    padding: 0.2rem 0;
    min-width: auto;
    display: none;
    opacity: 1;
    backface-visibility: hidden;
    pointer-events: auto;
  }
  .header .navTop .ul li .box {
    top: 0;
    box-shadow: none;
    text-align: left;
    display: block;
    padding-left: 0.5rem;
  }
  .header .navTop .ul li .box::before {
    display: none;
  }
  .header .navTop .ul li .box a {
    margin: 0;
    padding: 0;
    line-height: 0.46rem;
    text-align: left;
    display: block;
  }
  .header .navTop .ul .li_sub span {
    position: relative;
    display: block;
    padding-right: 0.2rem;
  }
  .header .navTop .ul .li_sub .op {
    position: absolute;
    width: 0.14rem;
    height: 0.14rem;
    right: 0.2rem;
    top: 50%;
    transform: translateY(-50%);
    transition: all 0.5s;
  }
  .header .navTop .ul .li_sub .op::before,
  .header .navTop .ul .li_sub .op::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    background-color: #333;
    transform: translate(-50%, -50%);
  }
  .header .navTop .ul .li_sub .op::before {
    width: 100%;
    height: 0.02rem;
  }
  .header .navTop .ul .li_sub .op::after {
    width: 0.02rem;
    height: 100%;
  }
  .header .navTop .ul .li_sub.hover .op::after {
    opacity: 0;
  }
}
@media screen and (max-width: 640px) {
  .header .logo {
    max-width: 1.2rem;
    margin-top: 0;
  }
  .header .search {
    position: static;
    line-height: normal;
  }
  .header .top_search {
    width: 100%;
    top: 100%;
  }
  .header .other {
    height: 0.8rem;
    gap: 0.2rem;
  }
  .drop_list .dropBox {
    flex-direction: column;
  }
  .drop_list .dropBox .title {
    width: 100%;
    margin-bottom: 0.2rem;
  }
  .drop_list .dropBox ul {
    width: 100%;
  }
}
.Hmore {
  display: inline-flex;
  color: #3ab54a;
  gap: 0.1rem;
  align-items: center;
  transition: all 0.5s;
  text-transform: uppercase;
}
.Hmore.w200 {
  min-width: 2rem;
  line-height: 0.5rem;
  justify-content: center;
  padding: 0 0.1rem;
  text-align: center;
}
.Hmore.w160 {
  min-width: 1.6rem;
  line-height: 0.5rem;
  justify-content: center;
  padding: 0 0.1rem;
  text-align: center;
}
.Hmore.w150 {
  min-width: 1.6rem;
  line-height: 0.5rem;
  justify-content: center;
  padding: 0 0.1rem;
  text-align: center;
}
.Hmore.w205 {
  min-width: 2.05rem;
  line-height: 0.6rem;
  justify-content: center;
  border-radius: 0.1rem;
  padding: 0 0.2rem;
}
.Hmore.w170 {
  min-width: 1.7rem;
  line-height: 0.5rem;
  justify-content: center;
  border-radius: 0.1rem;
  padding: 0 0.2rem;
}
.Hmore.white_bg {
  background-color: #fff;
}
.Hmore.gray_bg {
  background-color: #f5f7f9;
  color: #182437;
}
.Hmore.white_bg:hover {
  background-color: #02398d;
  color: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}
.Hmore.white_bg:hover::after {
  background-image: url(../images/more2.svg);
}
.Hmore.blue_bg {
  background-color: #02398d;
  color: #fff;
}
.Hmore.blue_bg::after {
  background-image: url(../images/more2.svg);
}
.Hmore.blue_bg:hover {
  background-color: #fff;
  color: #02398d;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}
.Hmore.blue_bg:hover::after {
  background-image: url(../images/more.svg);
}
.Hmore.white {
  color: #fff;
}
.Hmore.white::after {
  background-image: url(../images/more2.svg);
}
.Hmore.green_bg {
  background-color: #3ab54a;
  color: #fff;
  text-align: center;
}
.Hmore.green_bg:hover {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}
@media screen and (max-width: 640px) {
  .Hmore.w205 {
    min-width: 1rem;
    line-height: 0.46rem;
  }
}
.Hbanner {
  position: relative;
}
.Hbanner li .pic {
  position: relative;
  overflow: hidden;
}
.Hbanner li .pic::after {
  clear: both;
  display: block;
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.Hbanner .pic img {
  width: 100%;
}
.Hbanner .textwarp {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}
.Hbanner .textwarp .Hmore {
  margin-top: 0.4rem;
}
.Hbanner .textwarp .Ban_tit {
  color: #fff;
  font-weight: bold;
}
.Hbanner .textwarp .Ban_tit b {
  color: #3ab54a;
}
.Hbanner .textwarp .Ban_des {
  color: #fff;
}
.Hbanner .textwarp .Ban_tit strong {
  color: #3ab54a !important;
}
.Hbanner .textwarp .txt_center {
  text-align: center;
}
.Hbanner .textwarp .mr_70 {
  display: inline-block;
  margin-right: 0.7rem;
}
.Hbanner .swiper-button {
  width: 0.58rem;
  height: 0.58rem;
  border: 1px solid #fff;
  border-radius: 100%;
  background-color: transparent;
}
.Hbanner .swiper-button::after {
  font-size: 0.22rem;
  color: #fff;
}
.Hbanner .swiper-button-prev {
  left: 0.3rem;
}
.Hbanner .swiper-button-next {
  right: 0.3rem;
}
.Hbanner .swiper-pagination {
  bottom: 0.3rem;
}
.Hbanner .swiper-pagination-bullet {
  margin: 0 0.2rem 0 0 !important;
  background-color: #fff;
  width: 0.06rem;
  height: 0.06rem;
  border-radius: 0;
  position: relative;
  opacity: 1;
}
.Hbanner .swiper-pagination-bullet::before {
  content: '';
  clear: both;
  display: none;
  width: 0.14rem;
  height: 0.14rem;
  border: 0.01rem solid #fff;
  position: absolute;
  top: -0.04rem;
  left: -0.04rem;
}
.Hbanner .swiper-pagination-bullet-active::before {
  display: block;
}
.Hbanner .animate {
  opacity: 0;
  transition: all 0.8s ease-in-out;
  transform: translateX(-50px);
}
.Hbanner .animate.Ban_tit,
.Hbanner .animate.Ban_des {
  transform: translateY(-50px);
}
.Hbanner .animate:nth-child(2) {
  transition-delay: 0.2s;
}
.Hbanner .animate:nth-child(3) {
  transition-delay: 0.4s;
}
.Hbanner .swiper-slide-active .animate {
  opacity: 1;
  transform: translate(0) !important;
}
@media screen and (max-width: 640px) {
  .Hbanner .pic img {
    min-height: 30vh;
    object-fit: cover;
    -webkit-object-fit: cover;
  }
  .Hbanner .swiper-pagination {
    bottom: 0.2rem;
  }
  .Hbanner .textwarp .f70 {
    font-size: 0.4rem;
  }
  .Hbanner .textwarp .f72 {
    font-size: 0.42rem;
  }
  .Hbanner .textwarp .f82 {
    font-size: 0.5rem;
  }
  .Hbanner .textwarp .mr_70 {
    margin-right: 0.3rem;
  }
  .Hbanner .textwarp .mb30 {
    margin-bottom: 0.15rem;
  }
  .Hbanner .textwarp .mb40 {
    margin-bottom: 0.2rem;
  }
}
.pt120 {
  padding-top: 1.2rem;
}
.pt100 {
  padding-top: 1rem;
}
.pt80 {
  padding-top: 0.8rem;
}
.pt70 {
  padding-top: 0.7rem;
}
.pt60 {
  padding-top: 0.6rem;
}
.pt50 {
  padding-top: 0.5rem;
}
.pt40 {
  padding-top: 0.4rem;
}
.pt30 {
  padding-top: 0.3rem;
}
.pt20 {
  padding-top: 0.2rem;
}
.pb0 {
  padding-bottom: 0;
}
.pb120 {
  padding-bottom: 1.2rem;
}
.pb100 {
  padding-bottom: 1rem;
}
.pb80 {
  padding-bottom: 0.8rem;
}
.pb70 {
  padding-bottom: 0.7rem;
}
.pb60 {
  padding-bottom: 0.6rem;
}
.pb50 {
  padding-bottom: 0.5rem;
}
.pb55 {
  padding-bottom: 0.55rem;
}
.pb25 {
  padding-bottom: 0.25rem;
}
.pb30 {
  padding-bottom: 0.3rem;
}
.mb100 {
  margin-bottom: 1rem;
}
.mb70 {
  margin-bottom: 0.6rem;
}
.mb60 {
  margin-bottom: 0.6rem;
}
.mb55 {
  margin-bottom: 0.55rem;
}
.mb50 {
  margin-bottom: 0.5rem;
}
.mb35 {
  margin-bottom: 0.35rem;
}
.mb40 {
  margin-bottom: 0.4rem;
}
.mb30 {
  margin-bottom: 0.3rem;
}
.mb25 {
  margin-bottom: 0.25rem;
}
.mb20 {
  margin-bottom: 0.2rem;
}
.mb15 {
  margin-bottom: 0.15rem;
}
.mb10 {
  margin-bottom: 0.1rem;
}
.mt60 {
  margin-top: 0.6rem;
}
.mt50 {
  margin-top: 0.5rem;
}
.mt100 {
  margin-top: 1rem;
}
.mt130 {
  margin-top: 1.3rem;
}
@media (max-width: 768px) {
  .pt120 {
    padding-top: 0.7rem;
  }
  .pt100 {
    padding-top: 0.6rem;
  }
  .pb120 {
    padding-bottom: 0.7rem;
  }
  .pb100 {
    padding-bottom: 0.6rem;
  }
  .pb80 {
    padding-bottom: 0.5rem;
  }
  .pb60 {
    padding-bottom: 0.4rem;
  }
}
.FuwuDetailContent .FuwuBoxDetail_title {
  padding: 0.87rem 0 0.57rem 0;
  border-bottom: 2px solid #eeeeee;
}
.FuwuDetailContent .FuwuBoxDetail_title .title {
  font-size: 0.36rem;
  color: #034da2;
  line-height: calc(70/30);
  font-weight: bold;
}
.FuwuDetailContent .FuwuBoxDetail_title .desc {
  font-size: 0.2rem;
  color: #3ab54a;
  line-height: calc(35/20);
  font-weight: bold;
}
.FuwuDetailContent .FuwuBoxDetail_Content {
  margin-top: 0.5rem;
}
.FuwuDetailContent .FuwuBoxDetail_Content .title {
  font-size: 0.3rem;
  color: #034da2;
  font-weight: bold;
  margin-bottom: 0.3rem;
}
.FuwuDetailContent .FuwuBoxDetail_Content .sub_title {
  font-size: 0.24rem;
  color: #034da2;
  font-weight: bold;
  line-height: calc(42/24);
}
.FuwuDetailContent .FuwuBoxDetail_Content .desc {
  font-size: 0.2rem;
  color: #034da2;
  font-weight: bold;
  line-height: calc(42/20);
}
.FuwuDetailContent .FuwuBoxDetail_Content p {
  line-height: calc(25/16);
  color: #333333;
}
.FuwuDetailContent .FuwuBoxDetail_Content img {
  margin: 0.44rem 0 0.5rem 0;
}
.FuwuDetailContent .FuwuBoxDetail_Content .img_box img {
  width: 48%;
}
.poImg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  -webkit-object-fit: cover;
}
.SingleBox {
  color: #333333;
  line-height: calc(32 / 18);
  text-align: justify;
}
.SingleBox h2 {
  color: #034da2;
  font-size: 0.24rem;
  line-height: calc(52/24);
}
.SingleBox h3 {
  font-size: 0.16rem;
}
.SingleBox img {
  height: auto !important;
}
.newsInfo .news_title {
  border-bottom: 1px solid #eee;
  padding-bottom: 0.2rem;
  margin-bottom: 0.4rem;
  color: #444444;
}
.newsInfo .news_title .title {
  margin-bottom: 0.2rem;
  color: #034da2;
}
.newsInfo .news_title .other {
  color: #999999;
  gap: 0.4rem;
}
.newsInfo .time {
  color: #ed884f;
  font-weight: bold;
}
.DetailsContent {
  margin-top: 0.6rem;
  padding: 0.3rem 0 0;
  border-top: 1px solid #f0f3f8;
}
.Details_page {
  position: relative;
  color: #444444;
  line-height: 1.4;
}
.Details_page .dot {
  line-height: calc(32/16);
}
.Details_page .dot a {
  color: #034da2;
}
.Details_page .dot a:hover {
  color: #3ab54a;
}
.video-box {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 300;
  background: rgba(0, 0, 0, 0.65);
}
.video-box .close {
  cursor: pointer;
  width: 0.4rem;
  height: 0.4rem;
  position: fixed;
  z-index: 4;
  right: 0.2rem;
  top: 0.2rem;
}
.video-box .close::before,
.video-box .close::after {
  position: absolute;
  content: '';
  width: 80%;
  left: 10%;
  height: 3px;
  top: 50%;
  margin-top: -1.5px;
  background: #fff;
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
}
.video-box .close::before {
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
}
.video-box .ytable {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.video-box .ytable-cell {
  text-align: center;
}
.video-box video {
  width: 90%;
  max-width: 9rem;
}
.Htitle .en {
  color: #034da2;
  text-transform: uppercase;
  font-family: auto;
  font-weight: bold;
}
.Htitle .line {
  display: block;
  width: 0.5rem;
  height: 0.05rem;
  background-color: #e4e4e4;
  position: relative;
  margin: 0.15rem 0;
}
.Htitle .line::after {
  content: '';
  position: absolute;
  right: -0.12rem;
  top: 0;
  width: 0.06rem;
  height: 0.05rem;
  background-color: #e4e4e4;
}
.Htitle .cn {
  color: #034da2;
  font-weight: bold;
}
.Htitle.white .en,
.Htitle.white .cn {
  color: #fff;
}
.Htitle.white .line {
  background-color: #fff;
}
.Htitle.white .line::after {
  background-color: #fff;
}
.Htitle.center {
  text-align: center;
}
.Htitle.left {
  text-align: left;
}
.Htitle.center .line {
  margin-left: auto;
  margin-right: auto;
}
.Habout::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 4.19rem;
  height: 6.21rem;
  background: url(../images/line.png) no-repeat center;
  background-size: contain;
}
.Habout .textwarp {
  width: calc(780 / 1600 * 100%);
}
.Habout .pic {
  width: calc(651 / 1600 * 100%);
  padding-top: 0.05rem;
}
.Habout .pic img {
  width: 100%;
  border-radius: 0.6rem 0.2rem 0.6rem 0.2rem;
}
.Habout .title {
  color: #02398d;
}
.Habout .des {
  line-height: calc(32 / 18);
  color: #333333;
  margin: 0.32rem 0 0.55rem;
}
.Habout .list {
  text-align: center;
  max-width: 6.7rem;
}
.Habout .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 0.9rem;
  margin-bottom: 0.2rem;
}
.Habout .icon img {
  max-height: 100%;
}
.Habout .stit {
  color: #02398d;
  margin-bottom: 0.1rem;
}
.Habout .sen {
  color: #dfdfdf;
  font-weight: bold;
  text-transform: uppercase;
}
@media screen and (max-width: 640px) {
  .Habout .pic,
  .Habout .textwarp {
    width: 100%;
  }
  .Habout .pic {
    margin-top: 0.3rem;
  }
}
.Hnav_tab {
  gap: 0.2rem;
}
.Hnav_tab .item a {
  min-width: 1.6rem;
  height: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #222222;
  box-shadow: 0px 0px 17px 4px rgba(0, 0, 0, 0.05);
  border-radius: 10px;
  transition: all 0.5s;
}
.Hnav_tab .item a:hover {
  background-color: #02398d;
  color: #fff;
}
.Hnav_tab .item.on a {
  background-color: #02398d;
  color: #fff;
}
@media screen and (max-width: 640px) {
  .Hnav_tab {
    margin-top: 0.3rem;
    gap: 0.1rem;
  }
  .Hnav_tab .item a {
    min-width: 1.2rem;
    padding: 0 0.1rem;
  }
}
.HResearch .pic {
  width: calc(760 / 1600 * 100%);
}
.HResearch .pic img {
  width: 100%;
  border-radius: 0.6rem 0.2rem 0.6rem 0.2rem;
}
.HResearch .textwarp {
  width: calc(680 / 1600 * 100%);
}
.HResearch .textwarp .cn {
  color: #222;
  margin-bottom: 0.15rem;
}
.HResearch .textwarp .en {
  color: #dfdfdf;
}
.HResearch .num {
  color: #222222;
  margin-bottom: 0.25rem;
  line-height: 1;
  display: inline-block;
}
.HResearch .con {
  color: #333333;
  line-height: calc(32 / 18);
  margin: 0.2rem 0 0.45rem;
}
.HResearch .hline {
  width: 1.15rem;
  height: 0.22rem;
  background: url(../images/hline.png) no-repeat center;
  background-size: contain;
}
.HResearch .Htab_content {
  border-top: 1px solid rgba(2, 57, 141, 0.06);
  padding-top: 0.6rem;
}
@media screen and (max-width: 640px) {
  .HResearch .pic,
  .HResearch .textwarp {
    width: 100%;
  }
  .HResearch .pic {
    margin-bottom: 0.3rem;
  }
}
.Hpro {
  z-index: 2;
}
.Hpro::before {
  content: '';
  position: absolute;
  left: 0;
  top: -2.35rem;
  width: 4.31rem;
  height: 5.39rem;
  background: url(../images/line2.png) no-repeat center;
  background-size: contain;
}
.Hpro .list {
  position: relative;
  overflow: hidden;
  border-radius: 0.4rem;
}
.Hpro .list li {
  width: calc((100% - 5px) / 6);
}
.Hpro .list .box {
  display: flex;
  justify-content: space-between;
  flex-flow: column wrap;
  padding: 0.55rem 0.2rem 1rem;
  color: #fff;
  height: 7rem;
  transition: all 0.5s ease-in-out;
  transition: all 0.5s;
  background-color: rgba(34, 34, 34, 0.6);
}
.Hpro .list .box:hover {
  background-color: rgba(2, 57, 141, 0.8);
}
.Hpro .list .box:hover .title {
  opacity: 1;
}
.Hpro .list .box:hover .other {
  display: block;
}
.Hpro .list .box:hover .tit {
  display: none;
}
.Hpro .list .title {
  font-weight: normal;
  margin-top: 0.3rem;
  opacity: 0;
  transition: all 0.5s ease-in-out;
  transition: all 0.5s;
}
.Hpro .list .icon {
  max-height: 0.72rem;
}
.Hpro .list .icon img {
  max-height: 100%;
}
.Hpro .list .tit {
  margin-top: 0.25rem;
}
.Hpro .list .other {
  display: none;
}
.Hpro .list .des {
  line-height: calc(30 / 16);
  margin-top: 0.25rem;
}
.Hpro .list .more {
  display: inline-block;
  width: 0.26rem;
  height: 0.15rem;
  background: url(../images/more2.svg) no-repeat center;
  background-size: contain;
  margin-top: 0.3rem;
}
@media screen and (max-width: 640px) {
  .Hpro .list li {
    width: 100%;
    margin-bottom: 1px;
  }
  .Hpro .list .box {
    height: auto;
    padding: 0.3rem;
  }
  .Hpro .list .title {
    opacity: 1;
  }
  .Hpro .list .other {
    display: block;
  }
  .Hpro .list .tit {
    display: none;
  }
  .Hpro .list .icon {
    height: 0.6rem;
    width: 0.6rem;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin: 0.2rem 0;
  }
  .Hpro .list .icon img {
    max-height: 90%;
  }
}
.swiper-button {
  width: 0.6rem;
  height: 0.6rem;
  box-shadow: 0px 0px 24px 0px rgba(146, 146, 146, 0.14);
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  opacity: 1 !important;
}
.swiper-button::after {
  font-size: 0.22rem;
  color: #000000;
}
.swiper-button-prev {
  left: -6%;
}
.swiper-button-next {
  right: -6%;
}
@media screen and (max-width: 640px) {
  .swiper-button-prev {
    left: -3%;
  }
  .swiper-button-next {
    right: -3%;
  }
}
.Hnews .pic {
  padding-top: calc(400 / 600 * 100%);
}
.Hnews .box {
  display: block;
  border-radius: 0.2rem;
  box-shadow: 0px 0px 24px 0px rgba(146, 146, 146, 0.14);
  overflow: hidden;
}
.Hnews .textwarp {
  padding: 0.15rem 0.34rem;
}
.Hnews .Htab_content {
  border-top: 1px solid rgba(2, 57, 141, 0.06);
  padding-top: 0.6rem;
}
.Hnews .mySwiper {
  margin: 0 -2.5% -0.1rem;
  padding-bottom: 0.1rem;
}
.Hnews .des {
  margin: 0.1rem 0 0.15rem;
}
.Hnews .swiper-pagination {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 0.6rem;
}
.Hnews .swiper-pagination .swiper-pagination-bullet {
  background-color: #e5efff;
  width: 0.6rem;
  height: 2px;
  border-radius: 1px;
  opacity: 1;
}
.Hnews .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #23539c;
}
.Hnews .swiper-button {
  top: 35%;
}
.footer {
  background-color: #012e61;
  color: #fff;
  position: relative;
}
.footer::before {
  content: '';
  display: block;
  clear: both;
  position: absolute;
  width: 100%;
  height: 0.05rem;
  background-image: url('../images/line.png');
  background-size: 100% 100%;
}
.footer .logo {
  max-width: 2.75rem;
  margin-bottom: 0.43rem;
}
.footer a {
  color: #fff;
}
.footer a:hover {
  color: #3ab54a;
}
.footer nav {
  gap: 0.89rem;
  width: 60%;
}
.footer .rightContent {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-end;
  max-width: 38%;
}
.footer .gzh {
  margin-top: 0.3rem;
}
.footer .gzh p {
  margin-right: 0.17rem;
}
.footer .gzh {
  position: relative;
}
.footer .gzh .wechat {
  width: 0.4rem;
  height: 0.4rem;
  border: 1px solid #4c5392;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.footer .gzh .box {
  position: absolute;
  left: 50%;
  top: 100%;
  width: 1rem;
  text-align: center;
  padding: 60px 0 10px;
  display: flex;
  flex-flow: column wrap;
  align-items: center;
  opacity: 0;
  padding-top: 10px;
  pointer-events: none;
  transform: translate3d(-50%, 10px, 0);
  -webkit-transform: translate3d(-50%, 10px, 0);
  -moz-transform: translate3d(-50%, 10px, 0);
  -o-transform: translate3d(-50%, 10px, 0);
  -ms-transform: translate3d(-50%, 10px, 0);
  backface-visibility: hidden;
  transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
}
.footer .gzh aside {
  box-shadow: 0 3px 29px -8px rgba(192, 196, 204, 0.7);
  width: 100%;
  background-color: #fff;
  border-radius: 6px;
  padding: 10px 0px;
  position: relative;
}
.footer .gzh aside ::before {
  content: '';
  position: absolute;
  width: 0;
  height: 0;
  border-width: 5px;
  border-style: solid;
  border-color: transparent transparent #fff transparent;
  left: 50%;
  bottom: 100%;
  transform: translateX(-50%);
}
.footer .gzh .open_wechat {
  width: 0.3rem;
  height: 0.3rem;
  display: block;
  background-image: url('../images/wechat.svg');
  background-size: contain;
}
.footer .right .item {
  text-align: center;
  font-size: 0.18rem;
  color: #fff;
  font-weight: bold;
  padding: 0 0.2rem;
  border-right: 1px solid #00ba80;
  display: inline-block;
  line-height: 1;
}
.footer .right .item:last-child {
  border-right: none;
}
.footer .Copyright {
  margin-top: 0.3rem;
  padding: 0.45rem 0;
  border-top: 1px solid #1b4371;
  color: #fff;
  font-size: 0.14rem;
  width: 100%;
}
.footer .Copyright a,
.footer .Copyright span {
  color: #fff;
  opacity: 0.33;
}
.footer .Copyright a:hover {
  color: #3ab54a;
  opacity: 1;
}
.footer .Copyright .flink {
  order: 2;
  gap: 0.05rem;
}
.footer .Copyright .flink em {
  display: inline-flex;
}
.footer .Copyright .flink em:last-child {
  display: none;
}
.footer .other {
  gap: 0 0.15rem;
}
.footer .other em {
  width: 1px;
  height: 0.14rem;
  background-color: #fff;
  display: inline-flex;
}
.footer .other em:last-child {
  display: none;
}
@media screen and (max-width: 1024px) {
  .footer .rightContent {
    max-width: 100%;
  }
  .footer .Copyright {
    flex-wrap: wrap;
    width: 100%;
  }
  .footer nav {
    gap: 0.3rem;
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .footer nav {
    display: none;
  }
  .footer .fnav {
    justify-content: center;
    padding-top: 0.3rem;
  }
  .footer .Copyright {
    padding: 0.1rem 0;
    margin-top: 0.2rem;
  }
}
@media screen and (max-width: 640px) {
  .footer .rightContent {
    align-items: center;
  }
  .footer .Copyright {
    justify-content: center;
    text-align: center;
  }
  .footer .Copyright .flink {
    order: 0;
  }
  .footer .gzh .box {
    left: 280%;
    top: -151%;
  }
}
.NYbanner {
  position: relative;
}
.NYbanner img {
  width: 100%;
}
.NYbanner .textwarp {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  padding-top: calc(135 / 1920 * 100%);
}
.NYbanner .textwarp .cn {
  color: #fefefe;
}
.NYbanner .textwarp .en {
  color: #fefefe;
}
.NYbanner .NYmenu {
  border-bottom: none;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  line-height: 0.8rem;
}
.NYbanner .NYmenu .nav a {
  color: #fff;
}
.NYbanner .NYmenu .nav a::after {
  background-color: #fff;
}
.NYbanner .NYmenu .nav li.aon a,
.NYbanner .NYmenu .nav a:hover {
  color: #fff;
}
@media screen and (max-width: 640px) {
  .NYbanner img {
    min-height: 25vh;
    object-fit: cover;
    -webkit-object-fit: cover;
  }
}
.NYmenu {
  background-color: #f5f7f9;
}
.NYmenu .nav {
  max-width: 9rem;
}
.NYmenu .nav li.aon a {
  color: #3ab54a;
}
.NYmenu .nav li.aon a::after {
  width: 100%;
}
.NYmenu .nav a {
  display: flex;
  align-items: center;
  position: relative;
  height: 0.7rem;
  font-weight: bold;
  color: #034da2;
}
.NYmenu .nav a::after {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -1px;
  width: 0;
  transition: all 0.5s ease-in-out;
  transition: all 0.5s;
  height: 3px;
  background-color: #3ab54a;
}
.NYmenu .nav a:hover {
  color: #3ab54a;
}
.NYmenu .nav a:hover::after {
  width: 100%;
}
.NYmenu .current {
  display: inline-flex;
  flex-flow: row wrap;
  color: #034da2;
  align-items: center;
}
.NYmenu .current::before {
  content: '';
  display: inline-flex;
  width: 0.16rem;
  height: 0.16rem;
  background: url(../images/home.svg) no-repeat center;
  background-size: contain;
  margin-right: 0.07rem;
}
.NYmenu .current a {
  color: #034da2;
}
.NYmenu .current a:hover {
  color: #3ab54a;
}
.NYmenu .current i {
  display: inline-block;
  margin: 0 0.15rem;
  font-family: serif;
  font-style: normal;
  font-weight: bold;
  font-size: 0.12rem;
}
.NYmenu .current2 {
  line-height: 0.6rem;
}
@media screen and (max-width: 768px) {
  .NYmenu .current:not(.current2) {
    display: none;
  }
  .NYmenu .nav a {
    line-height: 0.5rem;
    padding: 0;
    height: 0.5rem;
  }
}
.open_inner {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(218, 235, 250, 0.65);
  z-index: 200;
  overflow-y: auto;
  max-height: 100%;
  display: none;
}
.open_inner .flexbox {
  width: 100%;
  min-height: 100%;
  padding: 0.6rem 0;
}
.open_inner .inner {
  position: relative;
  background-color: #fff;
  padding: 0.8rem;
  border-radius: 0.4rem;
  max-width: 92%;
}
.open_inner .close {
  position: absolute;
  width: 0.41rem;
  height: 0.41rem;
  background: url(../images/close.svg) no-repeat center;
  background-size: contain;
  right: -0.45rem;
  top: -0.45rem;
  cursor: pointer;
}
@media screen and (max-width: 640px) {
  .open_inner .close {
    right: -0.2rem;
    top: -0.2rem;
  }
  .open_inner .inner {
    padding: 0.4rem;
  }
}
.open_honor .inner {
  padding: 0.8rem 1.2rem;
}
.open_honor .pic {
  padding: 0.25rem;
  background-image: linear-gradient(80deg, #a5b3c4 57%, #99aecd 100%), linear-gradient(#a5b3c4, #a5b3c4);
  background-blend-mode: normal, normal;
  border-radius: 0.1rem;
  position: relative;
  box-shadow: 0.1rem 0.1rem 0.2rem 0.02rem rgba(0, 0, 0, 0.1);
}
.open_honor .pic::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background-color: #fff;
  border-radius: 0.1rem;
  width: calc(100% - 0.2rem);
  height: calc(100% - 0.2rem);
}
.open_honor .pic figure {
  position: relative;
  z-index: 2;
}
.open_honor .pic figure img {
  width: 100%;
}
.open_honor .title {
  text-align: center;
  margin: 0.35rem 0 0;
}
@media screen and (max-width: 640px) {
  .open_honor .inner {
    padding: 0.4rem;
  }
}
.open_about .inner {
  width: 92%;
  max-width: 14.4rem;
}
.open_about .textwarp {
  width: calc(655 / 1280 * 100%);
  line-height: calc(32 / 18);
  color: #333333;
}
.open_about .cn {
  color: #02398d;
  padding-bottom: 0.05rem;
}
.open_about .con {
  padding-top: 0.1rem;
}
.open_about .pic {
  width: calc(580 / 1280 * 100%);
}
.open_about .pic img {
  width: 100%;
  border-radius: 0.6rem 0.2rem 0.6rem 0.2rem;
}
@media screen and (max-width: 640px) {
  .open_about .textwarp,
  .open_about .pic {
    width: 100%;
  }
  .open_about .pic {
    margin-top: 0.3rem;
  }
}
.pro_menu {
  gap: 0.2rem 0.4rem;
  position: relative;
  z-index: 2;
}
.pro_menu dl {
  position: relative;
  line-height: 0.6rem;
  width: calc((100% - 0.4rem * 3) / 4);
}
.pro_menu dt {
  position: relative;
  z-index: 2;
  border-bottom: 1px solid #c4c4c4;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #222222;
  background-color: #fff;
  cursor: pointer;
}
.pro_menu dt::after {
  content: '';
  width: 0.1rem;
  height: 0.1rem;
  border: solid #666666;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
  flex: 0 0 auto;
  margin-left: 0.1rem;
  transition: all 0.5s ease-in-out;
  transition: all 0.5s;
}
.pro_menu dt.click::after {
  transform: rotate(-135deg);
  margin-top: 0.05rem;
}
.pro_menu dd {
  position: absolute;
  left: -5%;
  top: 0;
  width: 110%;
  background-color: #fff;
  padding: 0 0.2rem 0.2rem;
  box-shadow: 0px 0px 17px 4px rgba(0, 0, 0, 0.05);
  border-radius: 0.1rem;
  padding-top: 0.6rem;
  display: none;
  max-height: 3.5rem;
  overflow-y: auto;
}
.pro_menu dd a {
  display: flex;
  color: #555555;
  min-height: 0.6rem;
  line-height: 1.2;
  align-items: center;
  padding: 0.1rem 0;
}
.pro_menu dd a:not(:last-child) {
  border-bottom: 1px solid rgba(196, 196, 196, 0.3);
}
.pro_menu dd a.on,
.pro_menu dd a:hover {
  color: #02398d;
}
@media screen and (max-width: 640px) {
  .pro_menu {
    flex-wrap: wrap;
  }
  .pro_menu dl {
    width: 100%;
  }
}
.prolist {
  gap: 0.6rem;
}
.prolist .item {
  width: calc((100% - 0.6rem * 2) / 3);
}
.prolist .pic {
  padding-top: calc(314 / 440 * 100%);
  border-radius: 0.6rem 0.2rem 0.6rem 0.2rem;
  margin-bottom: 0.2rem;
}
.prolist .Hmore {
  filter: grayscale(100%) opacity(0.9);
  flex-shrink: 0;
}
.prolist .Hmore::after {
  width: 0.18rem;
  height: 0.11rem;
}
.prolist .des {
  margin-top: 0.1rem;
  color: #333333;
}
.prolist .title {
  color: #222;
}
.prolist .box:hover .Hmore {
  filter: none;
}
@media screen and (max-width: 640px) {
  .prolist {
    gap: 0.4rem 0.2rem;
  }
  .prolist .item {
    width: calc((100% - 0.2rem) / 2);
  }
  .prolist .Hmore {
    display: none;
  }
}
.protitle {
  color: #02398d;
}
.pro_info {
  background-color: #ffffff;
  box-shadow: 0px 0px 24px 0px rgba(146, 146, 146, 0.14);
  border-radius: 0.4rem;
  padding: 0.7rem 0.6rem;
  overflow: hidden;
}
.pro_info .con {
  line-height: calc(32 / 18);
  color: #333333;
}
.pro_info_one .textwarp {
  width: calc(800 / 1320 * 100%);
  color: #333333;
}
.pro_info_one .pic {
  width: calc(476 / 1320 * 100%);
}
.pro_info_one .pic img {
  border-radius: 0.6rem 0.2rem 0.6rem 0.2rem;
  width: 100%;
}
.pro_info_one .title {
  color: #222222;
}
.pro_info_one .con {
  padding-bottom: 0.25rem;
}
.pro_info_one .con2 {
  border-top: 1px solid #f0f3f8;
  padding-top: 0.25rem;
  gap: 0.1rem 0.53rem;
}
@media screen and (max-width: 640px) {
  .pro_info_one {
    flex-wrap: wrap;
  }
  .pro_info_one .textwarp,
  .pro_info_one .pic {
    width: 100%;
  }
  .pro_info_one .pic {
    margin-top: 0.3rem;
  }
}
.pro_info_two {
  padding: 0;
  padding-bottom: 0.5rem;
}
.pro_info_two .con {
  padding: 0.3rem 0.6rem 0.5rem;
}
.pro_info_two .tab_pro {
  gap: 0.7rem;
  padding: 0 0.6rem;
  border-bottom: 1px solid #f0f3f8;
}
.pro_info_two .tab_pro li {
  height: 0.84rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: relative;
}
.pro_info_two .tab_pro li::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 100%;
  height: 2px;
  background-color: #02398d;
  opacity: 0;
  transition: all 0.5s ease-in-out;
  transition: all 0.5s;
}
.pro_info_two .tab_pro li:hover {
  color: #02398d;
}
.pro_info_two .tab_pro li.on {
  color: #02398d;
  font-weight: bold;
}
.pro_info_two .tab_pro li.on::after {
  opacity: 1;
}
.pro_info_two .list {
  position: relative;
}
.pro_info_two .list::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 100%;
  height: 1px;
  background-color: #f0f3f8;
}
.pro_info_two .list li {
  width: calc(100% / 4);
  padding: 0.4rem 0 0.4rem 0.62rem;
  color: #555555;
}
.pro_info_two .list .name {
  display: block;
  margin-bottom: 0.12rem;
  color: #333333;
}
@media screen and (max-width: 640px) {
  .pro_info_two .list::before {
    display: none;
  }
  .pro_info_two .list li {
    width: 100%;
    padding-bottom: 0;
  }
}
.Onlineprojects {
  position: relative;
  background-color: #eff8ff;
}
.Onlineprojects .Htitle {
  right: 0;
  width: calc(770 / 1440 * 100%);
  position: absolute;
  top: 1rem;
  z-index: 2;
}
.Onlineprojects .mySwiper {
  border-radius: 0.4rem;
  background-color: #fff;
}
.Onlineprojects .pic {
  width: calc(621 / 1440 * 100%);
}
.Onlineprojects .pic img {
  border-radius: 0.4rem;
  width: 100%;
}
.Onlineprojects .textwarp {
  width: calc(770 / 1440 * 100%);
  padding-top: 2.7rem;
  padding-right: 0.5rem;
}
.Onlineprojects .con,
.Onlineprojects .title {
  max-width: 4.9rem;
}
.Onlineprojects .title {
  color: #222222;
  margin-bottom: 0.2rem;
}
.Onlineprojects .con {
  color: #333333;
  line-height: calc(32 / 18);
  padding-bottom: 1.5rem;
}
.Onlineprojects .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 0.4rem;
  height: 0.4rem;
  margin: 0 auto 0.2rem;
  filter: brightness(0.5);
}
.Onlineprojects .icon img {
  max-height: 100%;
}
.Onlineprojects .mySwiper2 {
  background-color: #fff;
  box-shadow: 0px 0px 24px 0px rgba(146, 146, 146, 0.14);
  border-radius: 0.2rem;
  position: absolute;
  right: 1.2rem;
  width: 8.4rem;
  bottom: 0.6rem;
  z-index: 2;
  color: #333333;
}
.Onlineprojects .mySwiper2 .box {
  height: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-flow: column wrap;
  cursor: pointer;
}
.Onlineprojects .mySwiper2 .swiper-slide:first-child {
  box-shadow: 0px 0px 24px 0px rgba(146, 146, 146, 0.14);
}
.Onlineprojects .mySwiper2 .swiper-slide-thumb-active {
  background-color: #02398d;
  color: #fff;
}
.Onlineprojects .mySwiper2 .swiper-slide-thumb-active .icon {
  filter: none;
}
@media screen and (max-width: 768px) {
  .Onlineprojects .Htitle {
    position: relative;
    width: 100%;
    top: auto;
    margin-bottom: 0.5rem;
  }
  .Onlineprojects .mySwiper2 {
    position: relative;
    right: auto;
    width: 100%;
    margin-top: 0.5rem;
    bottom: auto;
  }
  .Onlineprojects .textwarp {
    padding: 0.5rem 0;
  }
}
@media screen and (max-width: 640px) {
  .Onlineprojects .textwarp,
  .Onlineprojects .pic {
    width: 100%;
  }
  .Onlineprojects .pic {
    margin-bottom: 0.3rem;
  }
  .Onlineprojects .textwarp {
    padding: 0.3rem;
  }
  .Onlineprojects .con {
    padding-bottom: 0;
  }
}
.teamBox .mySwiper {
  margin: -0.1rem;
}
.teamBox .box {
  padding: 0.5rem 0;
  border-radius: 0.4rem;
  margin: 0.1rem;
  background: url(../images/team_bg.png) no-repeat center;
  background-size: 100% 100%;
  position: relative;
}
.teamBox .box::before {
  content: '';
  position: absolute;
  right: 0.35rem;
  width: 3.7rem;
  height: 2.47rem;
  background: url(../images/logo.svg) no-repeat center;
  background-size: contain;
  top: 0.35rem;
}
.teamBox .pic {
  width: calc(260 / 701 * 100%);
  flex-shrink: 0;
}
.teamBox .pic figure {
  padding-top: 100%;
  border-radius: 100%;
}
.teamBox .textwarp {
  flex: 1;
  padding: 0.35rem 0.5rem;
  z-index: 2;
  position: relative;
}
.teamBox .title {
  color: #222222;
}
.teamBox .title::after {
  content: '';
  display: block;
  width: 1.04rem;
  height: 2px;
  background-image: -moz-linear-gradient(90deg, #f7c300, rgba(247, 195, 0, 0));
  background-image: -webkit-linear-gradient(90deg, #f7c300, rgba(247, 195, 0, 0));
  background-image: -ms-linear-gradient(90deg, #f7c300, rgba(247, 195, 0, 0));
  background-image: linear-gradient(90deg, #f7c300, rgba(247, 195, 0, 0));
  margin: 0.25rem 0;
}
.teamBox .ul li {
  position: relative;
  padding-left: 0.2rem;
  line-height: calc(32 / 18);
  margin-bottom: 0.05rem;
  color: #333333;
}
.teamBox .ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.11rem;
  width: 0.1rem;
  height: 0.1rem;
  background: url(../images/quan.svg) no-repeat center;
  background-size: contain;
}
.teamBox .swiper-pagination {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 0.6rem;
}
.teamBox .swiper-pagination .swiper-pagination-bullet {
  background-color: #e5efff;
  width: 0.6rem;
  height: 2px;
  border-radius: 1px;
  opacity: 1;
}
.teamBox .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #23539c;
}
.cooperateBox {
  background: url(../images/kycx_bg.jpg) no-repeat center;
  background-size: cover;
}
.cooperateBox .list {
  background-color: #fff;
  box-shadow: 0px 0px 24px 0px rgba(146, 146, 146, 0.14);
  border-radius: 0.4rem;
}
.cooperateBox .box {
  padding: 0.9rem;
}
.cooperateBox .pic {
  width: calc(375 / 1440 * 100%);
  text-align: center;
  flex-shrink: 0;
}
.cooperateBox .textwarp {
  flex: 1;
  padding-left: 0.45rem;
}
.cooperateBox .title,
.cooperateBox .des {
  max-width: 7.6rem;
}
.cooperateBox .cn {
  padding-bottom: 0.1rem;
}
.cooperateBox .des {
  color: #333333;
  line-height: calc(32 / 18);
  padding-top: 0.05rem;
}
@media screen and (max-width: 640px) {
  .cooperateBox .box {
    padding: 0.4rem;
  }
}
.patentBox {
  background: url(../images/zl_bg.jpg) no-repeat center;
  background-size: cover;
}
.patentBox .Htitle .en {
  color: #fff;
}
.patentBox .Htitle .line {
  background-color: #fff;
}
.patentBox .Htitle .line::after {
  background-color: #fff;
}
@media screen and (max-width: 640px) {
  .patentBox .Hmore {
    margin-top: 0.2rem;
  }
}
.patentList li:not(:last-child) {
  margin-bottom: 0.2rem;
}
.patentList .box {
  border-radius: 0.2rem;
  box-shadow: 0px 0px 24px 0px rgba(146, 146, 146, 0.14);
  background-color: #fff;
  min-height: 0.96rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.1rem 0.35rem 0.1rem 0.4rem;
  color: #333333;
}
.patentList .box::after {
  content: '';
  display: inline-flex;
  width: 0.32rem;
  height: 0.32rem;
  background: url(../images/dui.svg) no-repeat center;
  background-size: contain;
  opacity: 0.45;
  transition: all 0.5s ease-in-out;
  transition: all 0.5s;
  flex: 0 0 auto;
  margin-left: 0.1rem;
}
.patentList .box:hover::after {
  opacity: 1;
}
.newsTop {
  margin-bottom: 0.5rem;
}
.newsTop img {
  height: 100%;
  object-fit: cover;
}
.newsTop .mySwiper {
  padding: 1rem 0;
}
.newsTop .swiper-wrapper {
  height: auto;
}
.newsTop .desc {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: normal;
}
.newsTop .swiper-pagination {
  left: 50%;
  top: 50%;
  transform: translate3d(-50%, -50%, 0);
  margin-left: 0.95rem;
  margin-top: 2.2rem;
  width: auto;
  bottom: 0;
}
.newsTop .swiper-pagination-bullet {
  margin: 0 0.2rem 0 0 !important;
  background-color: #3ab54a;
  width: 0.06rem;
  height: 0.06rem;
  border-radius: 0;
  position: relative;
  opacity: 1;
}
.newsTop .swiper-pagination-bullet::before {
  content: '';
  clear: both;
  display: none;
  width: 0.14rem;
  height: 0.14rem;
  border: 0.01rem solid #3ab54a;
  position: absolute;
  top: -0.04rem;
  left: -0.04rem;
}
.newsTop .swiper-pagination-bullet-active::before {
  display: block;
}
.newsTop .box {
  background-color: #fff;
  overflow: hidden;
}
.newsTop .pic {
  width: calc(640 / 1280 * 100%);
  flex-shrink: 0;
}
.newsTop .pic figure {
  padding-top: calc(400 / 600 * 100%);
}
.newsTop .pic figure::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  opacity: 0.5;
  z-index: 2;
}
.newsTop .textwarp {
  opacity: 0;
  padding: 0.45rem 0 0.6rem 0.45rem;
  color: #333333;
  flex: 1;
}
.newsTop .time {
  color: #ed884f;
}
.newsTop .des {
  line-height: calc(50 / 30);
  margin: 0.24rem 0;
  font-weight: bold;
  color: #034da2;
}
.newsTop .text {
  line-height: calc(26 / 16);
  margin-bottom: 0.4rem;
  color: #333;
  min-height: 0.45rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: normal;
}
.newsTop .bMore {
  display: block;
  width: 2rem;
  height: 0.6rem;
  text-align: center;
  color: #182437;
  background-color: #f5f7f9;
  line-height: 0.6rem;
  transition: all 0.8s;
}
.newsTop .bMore:hover {
  background-color: #3ab54a;
  color: #fff;
}
.newsTop .swiper-button-next,
.newsTop .swiper-button-prev {
  display: inline-flex;
  width: 0.26rem;
  height: 0.15rem;
  position: static;
  margin: 0;
  padding: 0;
  background: url(../images/more.svg) no-repeat center;
  background-size: contain;
  filter: grayscale(100%) opacity(0.8);
}
.newsTop .swiper-button-next::after,
.newsTop .swiper-button-prev::after {
  display: none;
}
.newsTop .swiper-button-next:hover,
.newsTop .swiper-button-prev:hover {
  filter: none;
}
.newsTop .swiper-button-prev {
  transform: rotateY(180deg);
}
.newsTop .pagebtn {
  position: absolute;
  right: 0.6rem;
  bottom: 0.83rem;
  display: flex;
  align-items: center;
  width: 1.12rem;
  justify-content: space-between;
  z-index: 2;
}
.newsTop .pagebtn::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateY(-50%);
  margin-left: -1px;
  width: 2px;
  height: 0.3rem;
  background-color: #d4d4d4;
}
.newsTop .time {
  margin: 0.03rem 0 0.08rem;
}
.newsTop .swiper-slide-active .textwarp {
  opacity: 1;
}
.newsTop .swiper-slide-active .pic figure::before {
  opacity: 0;
}
@media screen and (max-width: 640px) {
  .newsTop .mySwiper {
    padding: 0.3rem 0;
  }
  .newsTop .swiper-pagination {
    bottom: 10px;
    left: 0;
    top: auto;
    width: 100%;
    margin-left: 0;
    margin-top: 0;
    transform: translate3d(0, 0, 0);
  }
  .newsTop .time {
    margin-top: 0.2rem;
  }
  .newsTop .box {
    width: 100%;
    flex-wrap: wrap;
  }
  .newsTop .pic,
  .newsTop .textwarp {
    width: 100%;
    padding: 0;
  }
  .newsTop .pagebtn {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    justify-content: center;
    gap: 0.2rem;
    margin-top: 0.4rem;
    align-items: center;
  }
  .newsTop .textwarp {
    padding-bottom: 0.3rem;
  }
}
.newsList li:not(:last-child) {
  margin-bottom: 0.2rem;
}
.newsList .box {
  border-bottom: 1px solid #dddddd;
  padding: 0.4rem 0;
  color: #333;
}
.newsList .box:hover .title {
  color: #02398d;
}
.newsList .box:hover .textwarp::after {
  border-color: #02398d;
}
.newsList .pic {
  width: calc(320 / 1280*100%);
  flex-shrink: 0;
  overflow: hidden;
}
.newsList .pic img {
  width: 100%;
}
.newsList .time {
  flex-shrink: 0;
  text-align: center;
  width: 0.96rem;
  height: 0.96rem;
  position: relative;
  transition: all 0.5s ease-in-out;
  transition: all 0.5s;
  color: #ee915e;
  font-weight: bold;
}
.newsList .time span {
  line-height: 1;
}
.newsList .time p {
  font-weight: bold;
}
.newsList .time::after {
  content: '';
  position: absolute;
  left: -0.4rem;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 1.58rem;
  background-color: #d4d4d4;
}
.newsList .textwarp {
  flex: 1;
  min-width: 0;
  padding-left: 0.72rem;
  padding-right: 0.8rem;
  position: relative;
}
.newsList .tag {
  color: #3ab54a;
  margin-bottom: 0.15rem;
  font-weight: bold;
}
.newsList .title {
  color: #034da2;
  margin-bottom: 0.2rem;
}
.newsList .des {
  color: #333333;
  line-height: calc(32 / 18);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: normal;
}
@media screen and (max-width: 640px) {
  .newsList .box {
    padding: 0.1rem 0.1rem;
  }
  .newsList .textwarp {
    padding-left: 0.2rem;
    padding-right: 0.6rem;
  }
  .newsList .time::after {
    right: -0.1rem;
  }
}
.IndexContent {
  position: relative;
}
.IndexContent::before {
  width: calc(210/1920 * 100vw);
  height: calc(210/1920 * 100vw);
  content: '';
  display: block;
  clear: both;
  position: absolute;
  background-color: #034da2;
  clip-path: polygon(0 0, 100% 0, 0 100%, 0 0);
  z-index: 2;
}
.IndexContent::after {
  width: calc(210/1920 * 100vw);
  height: calc(210/1920 * 100vw);
  content: '';
  bottom: 0;
  right: 0;
  display: block;
  clear: both;
  position: absolute;
  background-color: #3ab54a;
  clip-path: polygon(0 0, 100% 0, 0 100%, 0 0);
  transform: rotate(180deg);
  z-index: 2;
}
.IndexContent .serverSwiper {
  background: url(../images/Hbox_1.png) no-repeat right bottom;
  background-size: calc(700 / 1920 * 100vw);
}
.IndexContent .serverSwiper .w1280 {
  position: relative;
  padding-bottom: calc(145 / 1920 * 100vw);
}
.IndexContent .serverSwiper .swiper {
  padding-bottom: 0.4rem;
}
.IndexContent .serverSwiper h3 {
  font-size: 0.36rem;
  color: #034da2;
  font-weight: bold;
  text-align: center;
  margin-bottom: 0.6rem;
  padding-top: 1rem;
}
.IndexContent .serverSwiper .swiper-content {
  box-sizing: border-box;
  padding: 0 0.1rem;
}
.IndexContent .serverSwiper .swiper-content .item {
  width: 23%;
  box-sizing: border-box;
  padding: calc(30/1280*100%);
  margin-bottom: 30px;
  border: 1px solid #e6e6e6;
  background-color: #fff;
  cursor: pointer;
}
.IndexContent .serverSwiper .swiper-content .item:hover {
  border: 1px solid #3ab54a;
  box-shadow: 0 2px 5px 0px #f3fcf9;
}
.IndexContent .serverSwiper .swiper-content .item .icon {
  margin-bottom: 0.2rem;
}
.IndexContent .serverSwiper .swiper-content .item .title {
  font-size: 0.18rem;
  color: #3ab54a;
  font-weight: bold;
  margin-bottom: 0.15rem;
}
.IndexContent .serverSwiper .swiper-content .item .desc {
  font-size: 0.14rem;
  color: #333333;
  line-height: calc(23/14);
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}
.IndexContent .serverSwiper .swiper-pagination {
  bottom: 0.05rem;
}
.IndexContent .serverSwiper .swiper-pagination-bullet {
  margin: 0 0.2rem 0 0 !important;
  background-color: #3ab54a;
  width: 0.06rem;
  height: 0.06rem;
  border-radius: 0;
  position: relative;
  opacity: 1;
}
.IndexContent .serverSwiper .swiper-pagination-bullet::before {
  content: '';
  clear: both;
  display: none;
  width: 0.14rem;
  height: 0.14rem;
  border: 0.01rem solid #3ab54a;
  position: absolute;
  top: -0.04rem;
  left: -0.04rem;
}
.IndexContent .serverSwiper .swiper-pagination-bullet-active::before {
  display: block;
}
.IndexContent .newsBox {
  position: relative;
  padding-bottom: calc(140/1920*100vw);
  align-items: flex-start;
}
.IndexContent .newsBox::before {
  content: '';
  position: absolute;
  left: 0;
  top: calc(-2.2rem / 2);
  height: 2.2rem;
  width: 100%;
  background: url(../images/Hbox_2.png) no-repeat center bottom;
  background-size: calc(702 / 1920 * 100vw);
}
.IndexContent .newsBox::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: url(../images/Hbox_3.png) no-repeat left top;
  background-size: 100% auto;
}
.IndexContent .newsBox .w1280 {
  position: relative;
  z-index: 2;
  padding-top: calc(120 / 1920 * 100vw);
}
.IndexContent .newsBox .Hmore:hover {
  background-color: #3ab54a;
  color: #fff;
}
.IndexContent .newsBox h3 {
  color: #fff;
  font-size: 0.36rem;
}
.IndexContent .newsBox img {
  width: 100%;
}
.IndexContent .newsBox dd {
  display: flex;
  width: 100%;
  gap: 0.25rem;
}
.IndexContent .newsBox dd .Box {
  width: 33%;
  background-color: #f5f7f9;
  height: 100%;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  border: 1px solid transparent;
  transition: all 0.8s;
}
.IndexContent .newsBox dd .Box:hover {
  border: 1px solid #3ab54a;
  box-shadow: 0 2px 5px 0px #f3fcf9;
}
.IndexContent .newsBox dd .Box:nth-child(2n) {
  justify-content: flex-end;
}
.IndexContent .newsBox dd .Box:nth-child(2n) .pic {
  order: 2;
}
.IndexContent .newsBox dd .Box .pic {
  padding-top: calc(224 / 450*100%);
  width: 100%;
}
.IndexContent .newsBox dd .Box img {
  width: 100%;
  height: 100%;
}
.IndexContent .newsBox dd .Box .box {
  margin-top: 0.2rem;
  box-sizing: border-box;
  padding: 0.25rem;
}
.IndexContent .newsBox dd .Box .box .time {
  font-weight: bold;
  color: #ee915e;
  margin-bottom: 0.2rem;
}
.IndexContent .newsBox dd .Box .box .title {
  font-weight: bold;
  color: #034da2;
  font-size: 0.18rem;
  margin-bottom: 0.2rem;
}
.IndexContent .newsBox dd .Box .box .desc {
  color: #333333;
  font-size: 0.14rem;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.ContactContent .pic {
  width: calc(400 / 1280 * 100%);
  margin-right: 0.5rem;
  flex-shrink: 0;
}
.ContactContent .pic img {
  object-fit: cover;
  height: 100%;
}
.ContactContent .pic .textBox {
  color: #fff;
  line-height: calc(32 / 16);
  padding-left: 0.25rem;
  position: relative;
  display: block;
  position: absolute;
  z-index: 4;
  top: 0;
  left: 0;
  width: 100%;
  box-sizing: border-box;
  padding: 0.5rem 0.4rem;
}
.ContactContent .pic .textBox .adress {
  font-size: 0.2rem;
  color: #fff;
  padding-bottom: 0.2rem;
  margin-bottom: 0.2rem;
  border-bottom: 1px solid #8ba8c3;
}
.ContactContent .pic .textBox a {
  color: #fff;
}
.ContactContent .pic .textBox a:hover {
  color: #3ab54a;
}
.ContactContent .pic .textBox ul > li {
  list-style-type: none;
  color: #fff;
  line-height: calc(32 / 16);
  padding-left: 0.25rem;
  position: relative;
}
.ContactContent .pic .textBox ul > li::before {
  content: '';
  display: block;
  clear: both;
  width: 0.16rem;
  height: 0.14rem;
  background-size: 100% 100%;
  position: absolute;
  top: 0.07rem;
  left: 0;
}
.ContactContent .pic .textBox ul > li.map::before {
  background-image: url('../images/map.png');
}
.ContactContent .pic .textBox ul > li.email::before {
  background-image: url('../images/email.png');
}
.ContactContent .pic .textBox ul > li.phone::before {
  background-image: url('../images/phone.png');
}
.ContactContent .pic .textBox ul > li.fax::before {
  background-image: url('../images/fax.png');
}
.CareersContent .pic {
  width: 100%;
  position: relative;
}
.CareersContent img {
  width: 100%;
}
.CareersContent .icon {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: url(../images/play.svg) no-repeat center rgba(0, 0, 0, 0.2);
  background-size: 0.85rem;
  z-index: 3;
  cursor: pointer;
}
.CareersContent .boxText {
  width: 100%;
  font-size: 0.24rem;
  line-height: calc(96/24*100%);
  text-align: center;
  border-bottom: 1px solid #bcbfdd;
  background-color: #f5f7f9;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.35rem;
}
.CareersContent .boxText p {
  font-size: 0.24rem;
  color: #034da2;
}
.CareersContent .boxText p b {
  color: #3ab54a;
  text-decoration: underline;
}
.SearchContent .searchBox {
  width: 8rem;
  height: 0.75rem;
  border: 0.05rem solid transparent;
  margin: 0 auto 0.42rem auto;
  background: linear-gradient(to right, #3ab54a, #034da2);
  position: relative;
  box-shadow: 0 10px 5px 0px #eaeaf5;
}
.SearchContent .searchBox::before {
  content: '';
  display: block;
  clear: both;
  width: 0.05rem;
  height: 0.76rem;
  top: -0.05rem;
  position: absolute;
  left: -0.05rem;
  background-color: #3ab54a;
}
.SearchContent .searchBox::after {
  content: '';
  display: block;
  clear: both;
  width: 0.05rem;
  height: 0.76rem;
  position: absolute;
  right: -0.05rem;
  top: -0.05rem;
  background-color: #034da2;
}
.SearchContent .searchBox input {
  width: 100%;
  height: 100%;
  background-color: #fff;
  border: none;
  outline: none;
  box-sizing: border-box;
  padding: 0 0.25rem;
}
.SearchContent .searchBox a {
  position: absolute;
  top: 0.1rem;
  right: 0.1rem;
  display: block;
  width: 0.48rem;
  height: 0.48rem;
  background-color: #034da2;
  background: #034da2 url('../images/search2.png') no-repeat center;
}
.SearchContent .searchBox a::after {
  width: 0.48rem;
  height: 0.48rem;
  content: '';
  top: 0;
  left: -0.47rem;
  display: block;
  clear: both;
  position: absolute;
  background-color: #034da2;
  clip-path: polygon(0 0, 100% 0, 0 100%, 0 0);
  transform: rotate(180deg);
}
.SearchContent .serachResult {
  font-size: 0.24rem;
  color: #034da2;
  padding-bottom: 0.25rem;
  border-bottom: 1px solid #dddddd;
  font-weight: bold;
  display: flex;
  align-items: flex-end;
}
.SearchContent .serachResult span {
  color: #3ab54a;
  font-size: 0.36rem;
  font-weight: bold;
  line-height: 1;
}
.CompanyContent .CompanyBox1 .pic {
  max-width: calc(640 / 1280 * 100%);
  margin-left: 1rem;
  flex: 1;
}
.CompanyContent .CompanyBox1 .pic img {
  width: 100%;
}
.CompanyContent .CompanyBox1 .textBox {
  max-width: calc(520 / 1280 * 100%);
}
.CompanyContent .CompanyBox1 .textBox p {
  line-height: calc(26/16);
  margin: 0.2rem 0 0.45rem 0;
}
.CompanyContent .CompanyBox2 {
  background-color: #f5f7f9;
  position: relative;
  overflow: hidden;
  padding-bottom: 1rem;
}
.CompanyContent .CompanyBox2 .pic {
  position: absolute;
  left: 0;
  top: 0;
  content: '';
  clear: both;
  display: block;
  width: calc(810/1920*100%);
  height: 100%;
}
.CompanyContent .CompanyBox2 .textBox {
  max-width: calc(710 / 1280 * 100%);
}
.CompanyContent .CompanyBox2 .textBox p {
  line-height: calc(26/16);
}
.CompanyContent .CompanyBox2 .downloadBox {
  background-color: #ebeff2;
  padding: 0.28rem;
  margin-top: 0.5rem;
  border-bottom: 1px solid #bcbfdd;
}
.CompanyContent .CompanyBox2 .downloadBox .leftBox .title {
  font-size: 0.2rem;
  color: #034da2;
  line-height: calc(32/20);
}
.CompanyContent .CompanyBox2 .downloadBox .leftBox .desc {
  color: #333333;
}
.CompanyContent .CompanyBox2 .downloadBox .rightBox .icon {
  width: 0.2rem;
  height: 0.2rem;
  background-image: url('../images/donwload.svg');
  display: block;
  margin-right: 0.08rem;
  background-repeat: no-repeat;
  background-size: 100% 100%;
}
.CompanyContent .CompanyBox3 .pic {
  width: 100%;
  position: relative;
}
.CompanyContent .CompanyBox3 img {
  width: 100%;
}
.CompanyContent .CompanyBox3 .icon {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: url(../images/play.svg) no-repeat center rgba(0, 0, 0, 0.2);
  background-size: 0.85rem;
  z-index: 3;
  cursor: pointer;
}
.CompanyContent .CompanyBox3 .boxText {
  width: 100%;
  font-size: 0.24rem;
  color: #034da2;
  line-height: calc(96/24*100%);
  text-align: center;
  border-bottom: 1px solid #bcbfdd;
  background-color: #f5f7f9;
  font-weight: bold;
}
.AboutContent .pic {
  margin: 0.45rem 0;
}
.AboutContent .HSub {
  font-size: 0.24rem;
  color: #ee915e;
}
.AboutContent p {
  font-size: 0.16rem;
  color: #333;
  line-height: calc(32/16);
}
.AboutContent .pb-bd {
  padding-bottom: 0.5rem;
  border-bottom: 1px solid #eeeeee;
}
.AboutContent .AboutBox2 .pic {
  width: calc(320/1280*100%);
  margin-right: 0.3rem;
}
.AboutContent .AboutBox2 .label {
  color: #034da2;
  font-weight: bold;
}
.AboutContent .AboutBox2 .active {
  color: #3ab54a;
}
.AboutContent .AboutBox2 .flex_js {
  justify-content: flex-start;
}
.AboutContent .AboutBox2 li {
  list-style-type: none;
  line-height: calc(32/16);
}
.AboutContent .AboutBox2 span {
  color: #333333;
}
.AboutContent .AboutBox3 .pic {
  margin: 0.4rem 0 0 0;
}
.AboutContent .AboutBox4 li {
  list-style-type: none;
  line-height: calc(32/16);
}
.AboutContent .AboutBox4 span {
  color: #333333;
}
.AboutContent .AboutBox4 .label {
  color: #034da2;
  font-weight: bold;
}
.ShiyanshiContent {
  background-color: #f5f7f9;
}
.ShiyanshiContent .ShiyanshiBox1 {
  background-color: #fff;
}
.ShiyanshiContent .ShiyanshiBox1 .w1280 {
  padding: 1rem 0;
}
.ShiyanshiContent .ShiyanshiBox2 .pic {
  width: 100%;
  position: relative;
}
.ShiyanshiContent .ShiyanshiBox2 img {
  width: 100%;
}
.ShiyanshiContent .ShiyanshiBox2 .icon {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: url(../images/play.svg) no-repeat center rgba(0, 0, 0, 0.2);
  background-size: 0.85rem;
  z-index: 3;
  cursor: pointer;
}
.ShiyanshiContent .ShiyanshiBox2 .boxText {
  width: 100%;
  font-size: 0.24rem;
  color: #034da2;
  line-height: calc(96/24*100%);
  text-align: center;
  border-bottom: 1px solid #bcbfdd;
  background-color: #f5f7f9;
}
.FuwuContent .FuwuBox2 {
  position: relative;
}
.FuwuContent .FuwuBox2 .w1280 {
  box-sizing: border-box;
  position: relative;
}
.FuwuContent .FuwuBox2 .desc {
  line-height: calc(30/16);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: normal;
  min-height: 0.5rem;
}
.FuwuContent .FuwuBox2 .pic {
  width: 4.82rem;
  position: relative;
  overflow: hidden;
  z-index: 2;
  flex-shrink: 0;
}
.FuwuContent .FuwuBox2 .pic img {
  border: none;
  width: 100%;
  max-width: 100%;
  object-fit: cover;
}
.FuwuContent .FuwuBox2 .Box:nth-child(2n) .pic {
  order: 2;
}
.FuwuContent .FuwuBox2 .textBox {
  max-width: calc(620/1280*100%);
}
.FuwuContent .FuwuBox2 .textBox .infoTitle {
  font-size: 0.24rem;
  color: #034da2;
  font-weight: bold;
}
.FuwuContent .FuwuBox2 .textBox p {
  margin: 0.15rem 0 0 0;
  color: #333;
}
.FuwuContent .FuwuBox2 .textBox a {
  display: inline-block;
}
.FuwuContent .FuwuBox2 .textBox .more {
  color: #3ab54a;
  font-weight: bold;
  margin-top: 0.25rem;
}
.FuwuContent .Pages a {
  background-color: #f5f7f9;
  color: #000000;
}
.FuwuContent .Pages a:hover {
  color: #fff;
  background-color: #3ab54a;
}
.HuiyuanContent h3 {
  font-size: 0.36rem;
  color: #034da2;
  margin-bottom: 0.5rem;
  text-align: center;
}
.HuiyuanContent .ZizhiBox li {
  width: calc(625/1280*100%);
  height: 0.8rem;
  box-sizing: border-box;
  border-top: 1px solid #eeeeee;
  line-height: 0.8rem;
  padding-left: 0.25rem;
  position: relative;
  font-weight: bold;
  color: #034da2;
}
.HuiyuanContent .ZizhiBox li a {
  width: 100%;
  color: #333;
}
.HuiyuanContent .ZizhiBox li span {
  color: #034da2;
}
.HuiyuanContent .ZizhiBox li::before {
  content: '';
  display: block;
  clear: both;
  width: 0.04rem;
  height: 0.04rem;
  position: absolute;
  top: 50%;
  left: 1px;
  margin-top: -1px;
  background-color: #034da2;
  border-radius: 50%;
}
.HuiyuanContent .ZizhiBox li:last-child {
  border-bottom: 1px solid #eeeeee;
}
.HuiyuanContent .ZizhiBox li:last-child::before {
  display: none;
}
.HuiyuanContent .HuiyuanBox h3 {
  margin-top: 0.7rem;
}
.HuiyuanContent .HuiyuanBox li {
  width: 100%;
  background-color: #f5f7f9;
  color: #034da2;
  line-height: 0.8rem;
  box-sizing: border-box;
  padding-left: 0.4rem;
  font-weight: bold;
  margin-bottom: 0.1rem;
  list-style-type: none;
}
.HuiyuanContent .HuiyuanBox li a {
  color: #034da2;
}
.HuiyuanContent .HuiyuanBox li:nth-child(2n+1) {
  border-left: 2px solid #000087;
}
.HuiyuanContent .HuiyuanBox li:nth-child(2n+2) {
  border-left: 2px solid #00ba80;
}
.HuiyuanContent .HuiyuanBox li:nth-child(2n+3) {
  border-left: 2px solid #c53056;
}
.HuiyuanContent .HuiyuanBox li:nth-child(2n+4) {
  border-left: 2px solid #72bdec;
}
.HuiyuanContent .HuiyuanBox li:nth-child(2n+5) {
  border-left: 2px solid #ed884f;
}
.HuiyuanContent .HuiyuanBox li:nth-child(2n+6) {
  border-left: 2px solid #000087;
}
.HuiyuanContent .HuiyuanBox li:nth-child(2n+7) {
  border-left: 2px solid #00ba80;
}
.HuiyuanContent .HuiyuanBox li:nth-child(2n+8) {
  border-left: 2px solid #c53056;
}
.HuiyuanContent .HuiyuanBox li:nth-child(2n+9) {
  border-left: 2px solid #72bdec;
}
.HuiyuanContent .HuiyuanBox li:nth-child(2n+10) {
  border-left: 2px solid #ed884f;
}
.HuiyuanContent .HuiyuanBox li .icon {
  width: 0.4rem;
  height: 0.4rem;
  margin-right: 0.18rem;
  background-image: url('../images/arrow.svg');
  background-size: 100% 100%;
}
.HistroyContent .title {
  font-size: 0.36rem;
  color: #034da2;
  text-align: center;
  margin: 0.9rem auto 0.5rem auto;
  font-weight: bold;
}
.HistroyContent .slider_page {
  width: 100%;
  height: 0.9rem;
  line-height: 0.9rem;
  background-color: #f5f7f9;
  border-radius: 40px;
  box-sizing: border-box;
  padding: 0 0.4rem;
}
.HistroyContent .slider_page ul {
  width: 100%;
}
.HistroyContent .slider_page .swiper-slide {
  cursor: pointer;
  text-align: center;
}
.HistroyContent .slider_page .swiper-button-prev {
  width: 0.24rem;
  height: 0.12rem;
  background-image: url('../images/arrow-left.svg');
  background-size: 100% 100%;
  margin-right: calc(68/1280*100%);
  cursor: pointer;
  left: auto;
  margin-top: -4px;
  left: 0.4rem;
}
.HistroyContent .slider_page .swiper-button-prev::after {
  display: none;
}
.HistroyContent .slider_page .swiper-button-next {
  width: 0.24rem;
  height: 0.12rem;
  background-image: url('../images/arrow-right.svg');
  background-size: 100% 100%;
  margin-left: calc(68/1280*100%);
  cursor: pointer;
  right: 0.4rem;
  margin-top: -4px;
}
.HistroyContent .slider_page .swiper-button-next::after {
  display: none;
}
.HistroyContent .slider_page li {
  font-size: 0.24rem;
  color: #3ab54a;
  font-weight: bold;
  display: block;
  position: relative;
}
.HistroyContent .slider_page li::after {
  content: '';
  clear: both;
  display: none;
  width: 0.06rem;
  height: 0.06rem;
  background-color: #034da2;
  position: absolute;
  bottom: 0.1rem;
  left: 50%;
  margin-left: -0.03rem;
  border-radius: 50%;
}
.HistroyContent .slider_page li.swiper-slide-thumb-active {
  color: #034da2;
}
.HistroyContent .slider_page li.swiper-slide-thumb-active::after {
  display: block;
}
.HistroyContent .textBox {
  max-width: calc(532/1280*100%);
}
.HistroyContent .textBox h3 {
  font-size: 0.3rem;
  color: #034da2;
  margin-bottom: 0.4rem;
}
.HistroyContent .textBox p {
  color: #333;
  line-height: calc(30/16);
}
.HistroyContent .pic {
  max-width: calc(630/1280*100%);
}
.HistroyContent .HistroyBox2 {
  background-color: #f5f7f9;
  padding: 1rem 0;
}
.HistroyContent .HistroyBox2 h3 {
  font-size: 0.36rem;
  color: #034da2;
  font-weight: bold;
  text-align: center;
  margin-bottom: 0.5rem;
}
.HistroyContent .HistroyBox2 p {
  color: #333;
  line-height: calc(30/16);
}
@media screen and (max-width: 640px) {
  .Hbanner .textwarp .Ban_tit {
    font-size: 0.38rem;
    margin-bottom: 0.2rem;
  }
  .IndexContent {
    min-height: 13rem;
    padding-bottom: 0.5rem;
  }
  .IndexContent .serverSwiper .swiper-content .item {
    width: 48%;
  }
  .IndexContent .serverSwiper .icon {
    width: 0.4rem;
  }
  .IndexContent .newsBox {
    margin-bottom: 0.4rem;
  }
  .IndexContent .newsInfo {
    flex-direction: column;
  }
  .IndexContent .newsInfo .leftBox {
    width: 100%;
    height: auto !important;
    margin-bottom: 0.2rem;
  }
  .IndexContent .newsInfo .leftBox .pic {
    padding-top: calc(276 / 300*100%);
    width: 100%;
  }
  .IndexContent .newsInfo dd {
    flex-direction: column;
  }
  .IndexContent .newsInfo dd .Box {
    width: 100%;
    height: auto !important;
    margin-bottom: 0.2rem;
  }
  .IndexContent .newsInfo dd .Box .pic {
    width: 100%;
  }
  .ContactContent .Htitle {
    line-height: 1;
  }
  .ContactContent .pic {
    width: 100%;
  }
  .ContactContent .Htitle aside {
    margin-top: 0.2rem;
    margin-bottom: 0.2rem;
  }
  .ContactContent .w1280 {
    flex-direction: column;
    width: 100%;
    margin-top: 0;
    padding: 0.2rem;
  }
  .ContactContent .pic {
    margin: 0 auto;
  }
  .ContactContent .OnlineMessage {
    margin: 0 auto;
  }
  .callContent {
    height: auto;
  }
  .callContent .callLeft,
  .callContent .callRight {
    width: 100%;
    height: auto;
  }
  .callContent .callLeft a,
  .callContent .callRight a {
    color: #fff;
  }
  .callContent .callLeft a:hover,
  .callContent .callRight a:hover {
    color: #3ab54a;
  }
  .CareersContent .w1280 {
    flex-direction: column;
    width: 100%;
    margin-top: 0;
    padding: 0.2rem;
  }
  .CareersContent .w1280 .CareersLeftBox {
    margin-right: 0;
    width: 100%;
  }
  .CareersContent .w1280 .pic {
    max-width: none;
    width: 100%;
  }
  .CareersContent .w1280 .CareersRightBox {
    margin-right: 0;
    margin-top: 0.4rem;
    width: 100%;
  }
  .SearchContent .searchBox {
    width: 100%;
  }
  .DetailsContent {
    display: block;
  }
  .CompanyContent .w1280 {
    flex-direction: column;
  }
  .CompanyContent .CompanyBox1 {
    margin-top: 0.4rem;
  }
  .CompanyContent .CompanyBox1 .pic {
    width: 100%;
    max-width: none;
    margin-left: 0;
    padding-top: 0.4rem;
  }
  .CompanyContent .CompanyBox1 .textBox {
    width: 100%;
    max-width: none;
  }
  .CompanyContent .CompanyBox2 .w1280 {
    margin-top: 0.4rem;
  }
  .CompanyContent .CompanyBox2 .pic {
    display: block;
    width: 100%;
    max-width: none;
    margin-left: 0;
    padding-top: 0.4rem;
    position: static;
  }
  .CompanyContent .CompanyBox2 .textBox {
    width: 100%;
    max-width: none;
    margin-left: 0;
    padding-top: 0.4rem;
  }
  .AboutContent .AboutBox2 .textBox {
    flex-direction: column;
  }
  .AboutContent .AboutBox2 .pic {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
  }
  .FuwuContent .mt100 {
    margin-top: 0.4rem;
    min-height: 6rem;
  }
  .FuwuContent .FuwuBox2 .w1280 {
    padding-left: 0;
    padding-top: 0.4rem;
    padding-bottom: 0.4rem;
  }
  .FuwuContent .FuwuBox2 .Box {
    flex-direction: column;
  }
  .FuwuContent .FuwuBox2 .Box .pic {
    order: 1;
  }
  .FuwuContent .FuwuBox2 .textBox {
    flex-direction: column;
    max-width: none;
    margin: 0.1rem 0;
  }
  .FuwuContent .FuwuBox2 .pic {
    width: 100%;
    max-width: none;
    margin-left: 0;
    margin-right: 0;
  }
  .FuwuContent .Pages {
    margin: 0rem 0 0.5rem 0;
  }
  .HuiyuanContent .ZizhiBox li {
    width: 100%;
  }
  .HistroyContent .HistroyBox1 .w1280 {
    flex-direction: column;
  }
  .HistroyContent .HistroyBox1 .swiper_content {
    flex-direction: column;
  }
  .HistroyContent .HistroyBox1 .textBox {
    max-width: none;
    width: 100%;
    margin-bottom: 0.4rem;
  }
  .HistroyContent .HistroyBox1 .pic {
    max-width: none;
    width: 100%;
  }
  .HistroyContent .slider_page .swiper-button-prev {
    left: 0.1rem;
  }
  .HistroyContent .slider_page .swiper-button-next {
    right: 0.1rem;
  }
}
.Exhibitionlist li:not(:last-child) {
  margin-bottom: 0.25rem;
}
.Exhibitionlist .box {
  box-shadow: 0px 0px 24px 0px rgba(146, 146, 146, 0.14);
  border-radius: 0.4rem;
  overflow: hidden;
}
.Exhibitionlist .pic {
  width: calc(600 / 1440 * 100%);
}
.Exhibitionlist .pic figure {
  padding-top: calc(400 / 600 * 100%);
}
.Exhibitionlist .textwarp {
  width: calc(100% - 600 / 1440 * 100%);
  display: flex;
  justify-content: space-between;
  flex-flow: column wrap;
  padding: 0.55rem 0.5rem;
}
.Exhibitionlist .line {
  margin: 0.25rem 0;
}
.Exhibitionlist .Htitle .cn {
  color: #02398d;
}
.Exhibitionlist .des {
  color: #333333;
  line-height: calc(32 / 18);
}
.Exhibitionlist .other .right {
  flex-shrink: 0;
  margin-left: 0.1rem;
}
.Exhibitionlist .left {
  gap: 0.1rem 0.34rem;
  color: #02398d;
  display: inline-flex;
  align-items: center;
}
.Exhibitionlist .left span {
  padding-left: 0.21rem;
  background: url(../images/time.svg) no-repeat left center;
  background-size: 0.13rem;
}
.Exhibitionlist .left .add {
  background-image: url(../images/add.svg);
  background-size: 0.14rem;
}
.Exhibitionlist .Hmore {
  background-color: #02398d;
  color: #fff;
}
.Exhibitionlist .Hmore::after {
  background-image: url(../images/more2.svg);
}
.Exhibitionlist .Hmore[data-title='展会回顾'] {
  background-color: #f2f5f8;
  color: #444444;
}
.Exhibitionlist .Hmore[data-title='展会回顾']::after {
  filter: brightness(0.4);
}
@media screen and (max-width: 768px) {
  .Exhibitionlist .textwarp {
    padding: 0.3rem;
  }
  .Exhibitionlist .other {
    margin: 0.1rem 0 0;
  }
  .Exhibitionlist .Hmore {
    margin-top: 0.1rem;
  }
}
@media screen and (max-width: 640px) {
  .Exhibitionlist .pic,
  .Exhibitionlist .textwarp {
    width: 100%;
  }
  .Exhibitionlist .other {
    flex-flow: column wrap;
  }
}
.topVideo .mySwiper {
  padding: 0.3rem 0 0.8rem;
}
.topVideo .pic {
  padding-top: calc(600 / 900 * 100%);
}
.topVideo .pic .icon {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: url(../images/play2.svg) no-repeat center rgba(0, 0, 0, 0.2);
  background-size: 0.85rem;
  z-index: 3;
}
.topVideo .box {
  border-radius: 0.4rem;
  box-shadow: 0px 0px 24px 0px rgba(146, 146, 146, 0.14);
  overflow: hidden;
  background-color: #fff;
  display: block;
  position: relative;
}
.topVideo .box::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.45);
  z-index: 2;
}
.topVideo .title {
  min-height: 0.88rem;
  padding: 0.05rem 0.4rem;
  color: #222222;
  display: flex;
  align-items: center;
}
.topVideo .swiper-slide-active .box::before {
  opacity: 0;
}
.topVideo .swiper-button {
  top: 45%;
}
@media screen and (max-width: 640px) {
  .topVideo .pic .icon {
    background-size: 0.5rem;
  }
}
.videoList {
  gap: 0.3rem;
}
.videoList li {
  width: calc((100% - 0.3rem * 2) / 3);
}
.videoList .box {
  border-radius: 0.4rem;
  box-shadow: 0px 0px 24px 0px rgba(146, 146, 146, 0.14);
  overflow: hidden;
  background-color: #fff;
  display: block;
  position: relative;
  height: 100%;
}
.videoList .pic {
  padding-top: calc(306 / 460 * 100%);
}
.videoList .pic .icon {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: url(../images/play2.svg) no-repeat center rgba(0, 0, 0, 0.2);
  background-size: 0.85rem;
  z-index: 3;
}
.videoList .title {
  padding: 0.1rem 0.25rem;
  color: #222222;
  font-weight: bold;
  min-height: 0.88rem;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 640px) {
  .videoList .pic .icon {
    background-size: 0.5rem;
  }
  .videoList li {
    width: calc((100% - 0.3rem) / 2);
  }
}
.contactbox {
  background: url(../images/lx.jpg) no-repeat center;
  background-size: cover;
}
.contactbox .pic {
  width: calc(700 / 1440 * 100%);
}
.contactbox .pic img {
  width: 100%;
  border-radius: 0.6rem 0.2rem 0.6rem 0.2rem;
  box-shadow: 0px 0px 24px 0px rgba(146, 146, 146, 0.14);
}
.contactbox .pic .Hmore {
  margin-top: 0.3rem;
}
.contactbox .textwarp {
  width: calc(635 / 1440 * 100%);
  color: #333333;
}
.contactbox .textwarp dl {
  display: flex;
  align-items: center;
  margin-bottom: 0.6rem;
}
.contactbox .textwarp dl:last-child {
  margin-bottom: 0.2rem;
}
.contactbox .textwarp dt {
  width: 1.05rem;
  height: 0.6rem;
  display: flex;
  align-items: center;
  flex-shrink: 0;
  border-right: 1px solid #bfd1e7;
}
.contactbox .textwarp dt img {
  max-height: 100%;
}
.contactbox .textwarp dd {
  padding-left: 0.53rem;
  flex: 1;
}
.contactbox .textwarp dd p {
  max-width: 3.7rem;
  margin-top: 0.15rem;
  line-height: calc(32 / 18);
}
.contactbox .textwarp .name {
  color: #222;
}
@media screen and (max-width: 640px) {
  .contactbox .pic,
  .contactbox .textwarp {
    width: 100%;
  }
  .contactbox .pic {
    margin-bottom: 0.5rem;
  }
}
.OnlineMessage {
  margin-right: 0.6rem;
  flex: 1;
}
.OnlineMessage .formbox li {
  margin-bottom: 0.25rem;
  position: relative;
  width: 100%;
}
.OnlineMessage .formbox .form_btn {
  margin-bottom: 0.5rem;
}
.OnlineMessage .formbox .yzm .yzmImg {
  position: absolute;
  right: 0.1rem;
  top: 0;
  width: 1.3rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.OnlineMessage .formbox .yzm .yzmImg img {
  max-height: 90%;
}
.OnlineMessage .formbox .message::before {
  background-image: url(../images/m7.svg);
}
.OnlineMessage .formbox .row_2 {
  width: 49%;
}
.OnlineMessage .formbox .text,
.OnlineMessage .formbox select {
  width: 100%;
  height: 0.5rem;
  line-height: 0.5rem;
  border: none;
  padding-left: 0.2rem;
  color: #999999;
}
.OnlineMessage .formbox .text::placeholder,
.OnlineMessage .formbox select::placeholder {
  color: #999999;
}
.OnlineMessage .formbox textarea.text {
  height: 1.56rem;
}
.OnlineMessage .formbox select {
  background-size: 0.14rem;
  background-position: 95% center;
  background-color: #fff;
}
.OnlineMessage .formbox .agree {
  margin-bottom: 0.14rem;
  color: #444444;
}
.OnlineMessage .formbox .agree .checkbox {
  margin-right: 0.1rem;
  display: inline-flex;
  vertical-align: middle;
}
.OnlineMessage .formbox .agree .checkbox input {
  width: 0.16rem;
  height: 0.16rem;
  border: none;
  background-color: #efefef;
  border-radius: 2px;
}
.OnlineMessage .formbox .agree span {
  display: inline-flex;
  align-items: center;
}
.OnlineMessage .formbox .agree a {
  color: #02398d;
}
@media screen and (max-width: 640px) {
  .OnlineMessage .formbox .row_2 {
    width: 100%;
  }
}
.jobList .item {
  box-shadow: 0px 0px 24px 0px rgba(146, 146, 146, 0.14);
  border-radius: 0.2rem;
  margin-bottom: 0.2rem;
}
.jobList .click_title {
  min-height: 0.88rem;
  padding-left: 0.76rem;
  position: relative;
  color: #444444;
  padding-right: 1rem;
}
.jobList .click_title::before {
  content: '';
  position: absolute;
  left: 0.4rem;
  top: 50%;
  transform: translateY(-50%);
  background-color: #02398d;
  width: 0.06rem;
  height: 0.06rem;
  border-radius: 100%;
}
.jobList .click_title::after {
  content: '';
  position: absolute;
  right: 0.44rem;
  top: 50%;
  transform: translateY(-50%) rotate(-135deg);
  border: solid #444444;
  border-width: 2px 0 0 2px;
  width: 0.1rem;
  height: 0.1rem;
  margin-top: -0.02rem;
}
.jobList .click_title b {
  color: #222222;
  flex: 1;
}
.jobList .click_title .other {
  flex-shrink: 0;
  gap: 0.1rem;
  display: flex;
  align-items: center;
}
.jobList .selected .click_title::after {
  transform: translateY(-50%) rotate(45deg);
  margin-top: 0.04rem;
  border-color: #02398d;
}
.jobList .content {
  padding: 0 0.4rem 0 0.76rem;
  line-height: calc(32 / 18);
  display: none;
}
.jobList .content .inner {
  border-top: 1px solid #f0f3f8;
  padding: 0.6rem 0;
}
.jobList .content .name {
  margin-bottom: 0.1rem;
}
.jobList .email {
  padding-left: 0.3rem;
  background: url(../images/email.svg) no-repeat left center;
  color: #444444;
  background-size: 0.19rem;
}
.jobList .email a {
  color: #6e6e6e;
}
@media screen and (max-width: 640px) {
  .jobList .click_title {
    flex-flow: column wrap;
    align-items: flex-start;
    padding: 0.3rem 0.4rem;
  }
  .jobList .click_title::before {
    left: 0.2rem;
    transform: none;
    top: 0.4rem;
  }
  .jobList .click_title .other {
    margin-top: 0.1rem;
  }
  .jobList .content {
    padding: 0 0.4rem;
  }
}
.color {
  color: #02398d;
}
.searchList li {
  margin-bottom: 0.2rem;
}
.searchList .box {
  box-shadow: 0px 0px 24px 0px rgba(146, 146, 146, 0.14);
  border-radius: 0.2rem;
  padding: 0.4rem;
  transition: all 0.5s ease-in-out;
  transition: all 0.5s;
}
.searchList .box:hover {
  transform: translateY(-10px);
}
.searchList .time {
  order: 2;
  flex-shrink: 0;
  margin-left: 0.2rem;
}
.searchList .left {
  flex: 1;
  min-width: 0;
}
.searchList .title,
.searchList .des {
  padding-left: 0.36rem;
  color: #333333;
}
.searchList .title {
  position: relative;
  color: #222222;
  margin-bottom: 0.15rem;
}
.searchList .title::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 0.06rem;
  height: 0.06rem;
  background-color: #02398d;
  border-radius: 100%;
}
.searchList .title .color {
  color: #02398d;
}
/*企业文化*/
.culturebox .Htitle {
  font-size: 0.36rem;
}
.culturebox .list {
  column-count: 2;
  column-gap: 0.2rem;
}
.culturebox .list .item {
  min-height: 3rem;
  position: relative;
  display: flex;
  align-items: flex-end;
  margin-bottom: 0.2rem;
}
.culturebox .list .item:last-child {
  min-height: 6.2rem;
}
.culturebox .list .textwarp {
  position: relative;
  z-index: 1;
  color: #fff;
  padding: 0.35rem 0.4rem;
}
.culturebox .list .textwarp .title {
  margin: 0.25rem 0;
}
.culturebox .list .textwarp .des {
  line-height: calc(30 / 16);
}
.culturebox .list .textwarp .des b {
  display: inline-block;
  margin-right: 0.1rem;
}
@media (max-width: 750px) {
  .culturebox .list {
    column-count: 1;
  }
}
/*新增*/
.flex_jc_ae {
  display: flex;
  justify-content: center;
  align-items: flex-end;
}
/*资质*/
.honor_list .ul {
  gap: 0.5rem 0;
  padding: 0 0.8rem;
}
.honor_list li {
  width: 25%;
  text-align: center;
}
.honor_list .title {
  color: #000087;
}
.honor_list .pic {
  position: relative;
  height: 3.5rem;
  width: 100%;
  margin-bottom: 0.5rem;
}
.honor_list .pic i {
  left: 0;
  top: 100%;
  width: 100%;
  height: 0.83rem;
  background: url(../images/zz_c.png) repeat-x top center;
  background-size: 100% 100%;
  position: absolute;
}
.honor_list .pic figure {
  position: relative;
  max-height: 100%;
  display: inline-flex;
  margin: 0 10%;
}
.honor_list .pic figure::before {
  content: '';
  position: absolute;
  left: 12%;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: url(../images/zz_bg.png) no-repeat right bottom;
  background-size: cover;
}
.honor_list .pic img {
  max-height: 100%;
  display: inline-flex;
  position: relative;
  z-index: 2;
}
@media (max-width: 750px) {
  .honor_list li {
    width: 50%;
  }
  .honor_list li:nth-child(2n+1) .pic::before {
    content: '';
    position: absolute;
    left: -0.8rem;
    top: 100%;
    width: 0.8rem;
    height: 0.83rem;
    background: url(../images/zz_l.png) repeat-x top center;
    background-size: 100% 100%;
  }
  .honor_list li:nth-child(2n) .pic::after,
  .honor_list li:last-child .pic::after {
    content: '';
    position: absolute;
    right: -0.8rem;
    top: 100%;
    width: 0.8rem;
    height: 0.83rem;
    background: url(../images/zz_r.png) repeat-x top center;
    background-size: 100% 100%;
  }
}
@media screen and (min-width: 1025px) {
  .honor_list li:nth-child(4n+1) .pic::before {
    content: '';
    position: absolute;
    left: -0.8rem;
    top: 100%;
    width: 0.8rem;
    height: 0.83rem;
    background: url(../images/zz_l.png) top center;
    background-size: 100% 100%;
  }
  .honor_list li:nth-child(4n) .pic::after,
  .honor_list li:last-child .pic::after {
    content: '';
    position: absolute;
    right: -0.8rem;
    top: 100%;
    width: 0.8rem;
    height: 0.83rem;
    background: url(../images/zz_r.png) top center;
    background-size: 100% 100%;
  }
}
@media (max-width: 1024px) and (min-width: 751px) {
  .honor_list li {
    width: 33.33%;
  }
  .honor_list li:nth-child(3n+1) .pic::before {
    content: '';
    position: absolute;
    left: -0.8rem;
    top: 100%;
    width: 0.8rem;
    height: 0.83rem;
    background: url(../images/zz_l.png) repeat-x top center;
    background-size: 100% 100%;
  }
  .honor_list li:nth-child(3n) .pic::after,
  .honor_list li:last-child .pic::after {
    content: '';
    position: absolute;
    right: -0.8rem;
    top: 100%;
    width: 0.8rem;
    height: 0.83rem;
    background: url(../images/zz_r.png) top center;
    background-size: 100% 100%;
  }
}
@media (max-width: 640px) {
  .callContent .callLeft ul {
    grid-template-columns: repeat(9, 1fr);
  }
  .callContent .callLeft ul li {
    grid-column: span 3;
  }
}
.swiper_arrow::after {
  font-size: 0.2rem;
  font-weight: bold;
  color: #fff;
}
.swiper_arrow:hover {
  background-color: #e14c39;
}
.swiper-button-prev {
  border-radius: 5px 0 0 5px;
  left: -5%;
}
.swiper-button-next {
  border-radius: 0 5px 5px 0;
  right: -5%;
}
.swiper-pagination-lock {
  display: flex;
}
.swiper-pagination-bullet:only-child {
  display: inline-flex !important;
}
.swiper-pagination {
  justify-content: center;
}
.swiper_page {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}
.swiper_page .swiper_arrow {
  width: auto;
  height: auto;
  position: static;
  display: inline-flex;
  opacity: 0.4;
  background-color: transparent;
  margin-top: 0;
}
.swiper_page .swiper_arrow::after {
  color: #3c3c3c;
}
.swiper_page .swiper_arrow:hover {
  opacity: 1;
}
.NYmenu .nav .swiper_page {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
.NYmenu .nav .swiper_page .swiper_arrow {
  transform: none;
}
.NYmenu .nav .swiper_page .swiper_arrow::after {
  font-size: 0.16rem;
}
.NYmenu .nav .swiper_page .swiper-button-disabled {
  opacity: 0.2;
}
.NYmenu .nav .ul:not(.swiper-wrapper) {
  display: flex;
  flex-flow: row wrap;
  gap: 0.5rem;
}
.NYmenu .nav .swiper-slide {
  display: inline-block;
  width: auto;
}
.NYmenu .nav.nav_zbg1900 {
  padding-right: 0.6rem;
  max-width: 9rem;
  width: 9rem;
}
@media screen and (max-width: 640px) {
  .NYmenu .nav.nav_zbg1900 {
    padding-right: 0.2rem;
    max-width: 5rem;
    width: 5rem;
  }
  .NYmenu .nav .swiper_page {
    right: -0.4rem;
  }
}
.NYmenu .nav {
  position: relative;
}
