﻿@charset "utf-8";
/* CSS Document */
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0px;
  border: 0;
  outline: none;
}
header, nav, footer, menu {
  display: block;
}
dt {
  font-weight: 300;
}
img {
  border: none;
  max-width: 100%;
}
li {
  list-style-type: none;
}
a, a:hover, a:focus {
  text-decoration: none;
  color: #333;
}
.block {
  display: block;
}
html {
  font-size: 100%;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}
body {
  font-family: "Source Han Sans CN","noto sans","microsoft yahei", Helvetica, Arial, sans-serif;
  font-size: 18px;
  color: #111;
  position: relative;
  background-color: #fff;
  width: 100%;
  height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
}
h1, h2, h3, h4, h5, h6 {
  font-weight: bold;
}
input::placeholder {
  color: #111;
}
input::-moz-placeholder {
  color: #111;
}
input:-ms-input-placeholder {
  color: #111;
}
.clear {
  clear: both;
}
.display-flex {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-justify-content: space-between;
  -ms-flex-pack: distribute;
  justify-content: space-between;
  flex-flow: row wrap;
}
.display-flex-center {
  -webkit-justify-content: center;
  -ms-flex-pack: distribute;
  justify-content: center;
}
.display-flex-top {
  -webkit-box-align: flex-start;
  -webkit-align-items: flex-start;
  -ms-flex-align: flex-start;
  align-items: flex-start;
}
.display-flex-left {
  -webkit-justify-content: flex-start;
  -ms-flex-pack: distribute;
  justify-content: flex-start;
}

/*******头部********/
header {
  width: 100%;
  margin: 0 auto;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99;
  -webkit-transition: all .45s ease;
     -moz-transition: all .45s ease;
      -ms-transition: all .45s ease;
       -o-transition: all .45s ease;
          transition: all .45s ease;
}
header .logo {
  float: left;
  width: 4.5rem;
  position: relative;
}
header .logo a {
  width: 100%;
  display: block;
  -webkit-transition: all .7s ease;
  -moz-transition: all .7s ease;
  -ms-transition: all .7s ease;
  -o-transition: all .7s ease;
  transition: all .7s ease;
}
header .header-nav {}
header .header-nav li {
  float: left;
  margin-right: 1.05rem;
  pointer-events: none;
}
header .header-nav li:last-child {
  margin-right: 0;
}
header .header-nav li>a {
  display: block;
  position: relative;
  z-index: 10;
  color: #ffffff;
  padding: 1.15rem 0;
  pointer-events: auto;
  -webkit-transition: all .35s ease;
     -moz-transition: all .35s ease;
      -ms-transition: all .35s ease;
       -o-transition: all .35s ease;
          transition: all .35s ease;
}
header .header-nav li>a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  z-index: 10;
  background-color: #38a5e5;
  -webkit-transition: all .30s;
     -moz-transition: all .30s;
      -ms-transition: all .30s;
       -o-transition: all .30s;
          transition: all .30s;
}
header .header-nav li.active>a::after {
  bottom: 30%;
  width: 100%;
  background-color: #ffffff;
}
header .header-nav li:hover>a::after,
header.hover .header-nav li.active>a::after,
header.scollfox .header-nav li.active>a::after {
  width: 100%;
  bottom: 0;
  background-color: #38a5e5;
}
.header_bg {
  background-color: #ffffff;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  opacity: 0;
  -webkit-transition: all .35s ease;
  -moz-transition: all .35s ease;
  -ms-transition: all .35s ease;
  -o-transition: all .35s ease;
  transition: all .35s ease;
  -webkit-transform: translate(0, -50%) skewY(-1.5deg);
  -moz-transform: translate(0, -50%) skewY(-1.5deg);
  -ms-transform: translate(0, -50%) skewY(-1.5deg);
  -o-transform: translate(0, -50%) skewY(-1.5deg);
  transform: translate(0, -50%) skewY(-1.5deg);
}
header.scollfox .header_bg,
header.hover .header_bg {
  opacity: 1;
  border-bottom: solid 1px #e5e5e5;
  -webkit-transform: translate(0, 0) skewY(0deg);
  -moz-transform: translate(0, 0) skewY(0deg);
  -ms-transform: translate(0, 0) skewY(0deg);
  -o-transform: translate(0, 0) skewY(0deg);
  transform: translate(0, 0) skewY(0deg);
}
header.scollfox .logo a {
  width: 72%;
}
header.scollfox .header-nav li>a,
header.hover .header-nav li>a {
  color: #111;
}
header.scollfox .header-nav li>a {
  padding: 0.6rem 0;
}
header.scollfox #search_btn a .icon_hide,
header.hover #search_btn a .icon_hide {
  display: block;
}
header.scollfox #search_btn a .icon_show,
header.hover #search_btn a .icon_show {
  display: none;
}

header.scollfox .menu_botton span,
header.scollfox .menu_botton span:after, 
header.scollfox .menu_botton span:before {
  background-color: #111111;
}

#search_btn {
  margin-left: 0.75rem;
}
#search_btn a {
  width: 32px;
  height: 32px;
  display: block;
  cursor: pointer;
  position: relative;
}
#search_btn a svg {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
#search_btn a .icon_hide {
  display: none;
}
#search {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  pointer-events: auto;
  background-color: #ffffff;
  padding: 1.0rem;
  border-bottom: solid 1px #e5e5e5;
  z-index: 9;
  -webkit-transition: all .60s ease;
     -moz-transition: all .60s ease;
      -ms-transition: all .60s ease;
       -o-transition: all .60s ease;
          transition: all .60s ease;
  -webkit-transform: translate(0, -50%) skewY(-1.5deg);
  -moz-transform: translate(0, -50%) skewY(-1.5deg);
  -ms-transform: translate(0, -50%) skewY(-1.5deg);
  -o-transform: translate(0, -50%) skewY(-1.5deg);
  transform: translate(0, -50%) skewY(-1.5deg);
}
#search.is_active {
  -webkit-transform: translate(0, 0) skewY(0deg);
  -moz-transform: translate(0, 0) skewY(0deg);
  -ms-transform: translate(0, 0) skewY(0deg);
  -o-transform: translate(0, 0) skewY(0deg);
  transform: translate(0, 0) skewY(0deg);
  opacity: 1;
  visibility: visible;
}
#search .search_box {
  position: relative;
  max-width: 22.5rem;
  margin: 0 auto;
}
#search .search_box .form-control {
  font-size: 0.5rem;
  border-radius: 0;
  outline: none;
  box-shadow: none;
}
#search .search_box .search_icon {
  position: absolute;
  top: 1px;
  right: 1px;
  bottom: 1px;
  outline: none;
  box-shadow: none;
  font-size: 0.5rem;
  background-color: #fff;
}
#search .search_box .search_icon::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  margin-top: -0.4rem;
  height: 0.8rem;
  width: 1px;
  background-color: rgba(0, 0, 0, 0.1);
}
#search .search_box .search_icon svg {
  display: block;
  width: 0.8rem;
}
/**/
.menu_botton {
  position: absolute;
  right: 75px;
  top: 73px;
  display: block;
  cursor: pointer;
  z-index: 9999;
}
.menu_botton strong {
  display: inline-block;
  float: left;
  color: #2f318b;
  font-size: 16px;
  line-height: 18px;
  font-weight: normal;
  margin-right: 12px;
}
#menu_toggle1 {
  display: none;
}
.menu_botton span {
  position: relative;
  display: inline-block;
  width: 21px;
  height: 3px;
  background-color: #ffffff;
  border-radius: 2px;
  vertical-align: middle;
  -webkit-transition-duration: .3s, .3s;
  -moz-transition-duration: .3s, .3s;
  -ms-transition-duration: .3s, .3s;
  -o-transition-duration: .3s, .3s;
  transition-duration: .3s, .3s;
  -webkit-transition-delay: .3s, 0s;
  -moz-transition-delay: .3s, 0s;
  -ms-transition-delay: .3s, 0s;
  -o-transition-delay: .3s, 0s;
  transition-delay: .3s, 0s;
  margin-top: -2px;
}
.menu_botton span:after, .menu_botton span:before {
  content: "";
  position: absolute;
  display: inline-block;
  width: 21px;
  height: 3px;
  left: 0;
  border-radius: 2px;
  background-color: #ffffff;
  -webkit-transition-duration: .3s, .3s;
  -moz-transition-duration: .3s, .3s;
  -ms-transition-duration: .3s, .3s;
  -o-transition-duration: .3s, .3s;
  transition-duration: .3s, .3s;
  -webkit-transition-delay: .3s, 0s;
  -moz-transition-delay: .3s, 0s;
  -ms-transition-delay: .3s, 0s;
  -o-transition-delay: .3s, 0s;
  transition-delay: .3s, 0s;
}
.menu_botton span:before {
  top: -6px;
  -webkit-transition-property: top, transform;
  -moz-transition-property: top, transform;
  -ms-transition-property: top, transform;
  -o-transition-property: top, transform;
  transition-property: top, transform;
}
.menu_botton span:after {
  bottom: -6px;
  -webkit-transition-property: bottom, transform;
  -moz-transition-property: bottom, transform;
  -ms-transition-property: bottom, transform;
  -o-transition-property: bottom, transform;
  transition-property: bottom, transform;
}
.mm-opened .menu_botton span {
  background-color: transparent;
  -webkit-transition-delay: 0s, 0s;
  -moz-transition-delay: 0s, 0s;
  -ms-transition-delay: 0s, 0s;
  -o-transition-delay: 0s, 0s;
  transition-delay: 0s, 0s;
}
.mm-opened .menu_botton span:after, 
.mm-opened .menu_botton span:before {
  -webkit-transition-delay: 0s, .3s;
  -moz-transition-delay: 0s, .3s;
  -ms-transition-delay: 0s, .3s;
  -o-transition-delay: 0s, .3s;
  transition-delay: 0s, .3s;
}
.mm-opened .menu_botton span:before {
  top: 0;
  background: #111111;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}
.mm-opened .menu_botton span:after {
  bottom: 0;
  background: #111111;
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

/**/
header .header-nav li:hover .second-level-nav {
  -webkit-transform: translate(0, 0) skewY(0deg);
  -moz-transform: translate(0, 0) skewY(0deg);
  -ms-transform: translate(0, 0) skewY(0deg);
  -o-transform: translate(0, 0) skewY(0deg);
  transform: translate(0, 0) skewY(0deg);
  opacity: 1;
  visibility: visible;
}
.second-level-nav {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  pointer-events: auto;
  background-color: #ffffff;
  border-bottom: solid 1px #e5e5e5;
  z-index: 9;
  -webkit-transition: all .60s ease;
     -moz-transition: all .60s ease;
      -ms-transition: all .60s ease;
       -o-transition: all .60s ease;
          transition: all .60s ease;
  -webkit-transform: translate(0, -50%) skewY(-1.5deg);
  -moz-transform: translate(0, -50%) skewY(-1.5deg);
  -ms-transform: translate(0, -50%) skewY(-1.5deg);
  -o-transform: translate(0, -50%) skewY(-1.5deg);
  transform: translate(0, -50%) skewY(-1.5deg);
}
.second-level-nav>div {
  padding: 0.6rem 0;
  position: relative;
}
.second-level-nav>div>a {
  display: block;
  padding: 0 0.9rem;
  position: relative;
}
.second-level-nav>div>a::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 0;
  width: 1px;
  height: 16px;
  background-color: #e5e5e5;
  margin-top: -8px;
  -webkit-transform: rotate(20deg);
     -moz-transform: rotate(20deg);
      -ms-transform: rotate(20deg);
       -o-transform: rotate(20deg);
          transform: rotate(20deg);
}
.second-level-nav>div>a:last-child::after {
  display: none;
}
.second-level-nav>div>a:hover {
  color: #0f53b1;
}
/*********尾部************/
body.w_footer_bg footer {
  background-color: #f6f7fa;
}
body.w_footer_bg footer .footer_copyright {
  background-color: #ffffff;
}

footer {
  background-color: #ffffff;
  font-size: 16px;
}
footer .footer_menu {
  padding: 1.375rem 0 1.125rem;
  position: relative;
}
footer .footer_menu li {
  position: relative;
  width: 22%;
}
footer .footer_menu li:first-child {
  width: 14%;
}
footer .footer_menu li:last-child {
  width: 20%;
}
footer .footer_menu li+li::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 100%;
  background-color: #e5e5e5;
}
footer .footer_menu li dt {
  font-weight: bold;
  padding-bottom: 0.2rem;
}
footer .footer_menu li dt.mar {
  padding-top: 0.25rem;
}
footer .footer_menu li dd {
  line-height: 1.875;
}
footer .footer_menu li dd a:hover {
  text-decoration: underline;
}



footer .footer_copyright {
  background-color: #f6f7fa;
  padding: 0.45rem 0;
  color: #222222;
}
footer .footer_reserved p {
  padding-right: 0.8rem;
}
footer .footer_reserved img {
  position: relative;
  top: -2px;
}
footer .footer_copyright a {
  color: #222222;
}
footer .footer_copyright .footer_share li {
  margin-left: 0.375rem;
}
footer .footer_copyright .footer_share li a {
  border: 1px solid #0e54ad;
  width: 38px;
  height: 38px;
  display: block;
  border-radius: 100%;
  line-height: 34px;
  text-align: center;
  cursor: pointer;
}
footer .footer_copyright .wechat a {
  position: relative;
}
footer .footer_copyright .wechat {
  position: relative;
}
footer .footer_copyright .wechat .wechat_box {
  position: absolute;
  bottom: calc(100% + 1rem);
  right: 50%;
  width: 2.5rem;
  opacity: 0;
  visibility: hidden;
  z-index: 10;
  margin-right: -1.25rem;
  border: 0.15rem solid #ffffff;
  box-shadow: 0 0 0.25rem rgba(0, 0, 0, 0.1);
  -webkit-transition: all .35s ease;
     -moz-transition: all .35s ease;
      -ms-transition: all .35s ease;
       -o-transition: all .35s ease;
          transition: all .35s ease;
}
footer .footer_copyright .wechat .wechat_box::after {
  content: '';
  position: absolute;
  bottom: -0.35rem;
  left: 50%;
  margin-left: -0.25rem;
  border-left: 0.25rem solid transparent;
  border-right: 0.25rem solid transparent;
  border-top: 0.25rem solid #ffffff;
}
@media screen and (min-width: 991px) {
  footer .footer_copyright .wechat:hover .wechat_box {
    bottom: calc(100% + 0.35rem);
    opacity: 1;
    visibility: visible;
  }
}
/*****主体开始*******/
.bg_cover {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
#Hbanner {
  height: 100vh;
  width: 100%;
  overflow: hidden;
  position: relative;
}
#Hbanner .Hbanner_swiper {
  width: 100%;
  height: 100vh;
  color: #fff;
}
.Hbanner_swiper .box {
  position: absolute;
  top: 52vh;
  left: 2.5rem;
  right: 2.5rem;
}
.Hbanner_swiper .box .title {
  font-size: 1rem;
  line-height: 1.6;
}
.Hbanner_swiper .box .text {
  padding-left: 3rem;
}
.Hbanner_swiper .box .text .text_title {
  font-size: 1.2rem;
  line-height: 1.2857;
}
.Hbanner_swiper .box .text .text_en {
  font-size: 0.55rem;
  text-align: justify;
  letter-spacing: 16px;
  line-height: 1.6;
  text-transform: uppercase;
}
.Hbanner_tab {
  position: absolute;
  bottom: 7vh;
  right: 0;
  left: 0;
  z-index: 9;
  color: rgba(255, 255, 255, 0.7);
}
.Hbanner_tab li {
  position: relative;
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
}
.Hbanner_tab li a {
  display: block;
  font-size: 0.5rem;
  cursor: pointer;
  font-weight: bold;
  color: rgba(255, 255, 255, 0.7);
  padding-bottom: 0.6rem;
}
.Hbanner_tab li a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 0;
  height: 3px;
  background-color: #fff;
}
.Hbanner_tab li.is-active a {
  color: #fff;
}
.Hbanner_tab li.is-active a::after {
  width: 100%;
  -webkit-transition: all 1s ease;
     -moz-transition: all 1s ease;
      -ms-transition: all 1s ease;
       -o-transition: all 1s ease;
          transition: all 1s ease;
}

/**/
#cooperation {
  padding: 2.5rem 0;
}
#cooperation .title {
  font-size: 0.95rem;
  font-weight: bold;
  padding-bottom: 1.15rem;
}
.customer_swiper {
  padding-bottom: 1.5rem;
}
.customer_swiper li .box {
  text-align: center;
  display: block;
  position: relative;
  height: 76px;
  line-height: 76px;
}
.customer_swiper .swiper-pagination {
  bottom: 0;
  font-size: 0;
}
.customer_swiper .swiper-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  margin: 0 5px;
}
.customer_swiper .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #0f53b1;
}

/*/*/
.w_banner {
  width: 100%;
  height: 60vh;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: relative;
  color: #ffffff;
}
.w_banner .w_banner_box {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  z-index: 10;
  padding-top: 7.2vh;
  -webkit-transform: translateY(-50%);
     -moz-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
       -o-transform: translateY(-50%);
          transform: translateY(-50%);
}
.w_banner .w_banner_box .title {
  font-size: 0.9rem;
}
.w_banner .w_banner_box .text {
  line-height: 1.667;
  font-size: 0.75rem;
  max-width: 12.50rem;
  padding-top: 0.25rem;
}

#sideNav {
  position: relative;
  height: 1.75rem;
}
#sideNav .sideNavBox {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 20;
  background-color: #ffffff;
  border-bottom: 1px solid #e5e5e5;
}
#sideNav .sideNavBox li {
  position: relative;
}
#sideNav .sideNavBox li>a {
  display: block;
  position: relative;
  height: 1.75rem;
  line-height: 1.75rem;
  padding: 0;
}
#sideNav .sideNavBox li>a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 100%;
  background-color: #0f53b1;
  height: 0.075rem;
  transform-origin: right center;
  -webkit-transform: scaleX(0);
     -moz-transform: scaleX(0);
      -ms-transform: scaleX(0);
       -o-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transition: transform .6s ease;
     -moz-transition: transform .6s ease;
      -ms-transition: transform .6s ease;
       -o-transition: transform .6s ease;
          transition: transform .6s ease;
}
.sideNavBox_two li:first-child>a::before {
  content: '';
  position: absolute;
  top: 50%;
  right: 0.75rem;
  margin-top: -0.15rem;
  border-top: 0.15rem solid #111;
  border-right: 0.15rem solid transparent;
  border-left: 0.15rem solid transparent;
}
.sideNavTwo {
  position: absolute;
  top: 110%;
  left: 0;
  right: 0;
  background-color: #fff;
  z-index: 9;
  opacity: 0;
  visibility: hidden;
  box-shadow: 0 0 0.5rem rgba(0, 0, 0, 0.04);
  -webkit-transition: all .3s ease;
     -moz-transition: all .3s ease;
      -ms-transition: all .3s ease;
       -o-transition: all .3s ease;
          transition: all .3s ease;
}
.sideNavTwo a {
  font-size: 0.4rem;
  display: block;
  padding: 0 0.625rem;
}
.sideNavTwo a+a span {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}
.sideNavTwo a span {
  display: block;
  padding: 0.3rem 0;
}
#sideNav .sideNavBox li.active>a::after,
#sideNav .sideNavBox li>a.active::after {
  transform-origin: left center;
  -webkit-transform: scaleX(1);
     -moz-transform: scaleX(1);
      -ms-transform: scaleX(1);
       -o-transform: scaleX(1);
          transform: scaleX(1);
}
@media (min-width:992px) {
  #sideNav .sideNavBox li>a:hover::after {
  transform-origin: left center;
  -webkit-transform: scaleX(1);
     -moz-transform: scaleX(1);
      -ms-transform: scaleX(1);
       -o-transform: scaleX(1);
          transform: scaleX(1);
  }
  #sideNav .sideNavBox li:hover .sideNavTwo {
    opacity: 1;
    visibility: visible;
    top: 100%;
  }
  .sideNavTwo a:hover {
    color: #0f53b1;
  }
}
/**/
#banner {
  position: relative;
}
.banner-fixed>div {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 410px;
  overflow: hidden;
}
.banner-fixed>div img {
  max-width: inherit;
  min-height: 100%;
  position: relative;
  left: 50%;
  margin-left: -960px;
}
.side-nav {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}
.side-nav .side-title {
  color: #fff;
  padding: 22px 0 22px 50px;
  background: url(../images/side-title01.png) no-repeat left center;
}
.side-nav ul.side-text {}
.side-nav ul.side-text>li {
  font-size: 16px;
  position: relative;
  margin: 0 1px;
  float: left;
}
.side-nav ul.side-text>li>a {
  color: #ffffff;
  display: block;
  position: relative;
  text-align: center;
  padding: 24px 30px;
}
.side-nav ul.side-text>li>a:after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 10px;
  -webkit-transition: all .2s linear;
  -moz-transition: all .2s linear;
  -ms-transition: all .2s linear;
  -o-transition: all .2s linear;
  transition: all .2s linear;
  background: url(../images/side-nav-li-bg.png) no-repeat center;
  opacity: 0;
  visibility: hidden;
}
.side-nav ul.side-text>li.on>a {
  background-color: #20418b;
}
.side-nav ul.side-text>li.on>a::after {
  opacity: 1;
  visibility: visible;
  bottom: 6px;
}
@media screen and (min-width: 991px) {
  .side-nav ul.side-text>li>a:hover {
    background-color: #20418b;
  }
  .side-nav ul.side-text>li>a:hover::after {
    opacity: 1;
    visibility: visible;
    bottom: 6px;
  }
}
/*主体*/
.breadcrumb {
  padding: 0;
  margin: 0;
  color: #333333;
  background-color: transparent;
  background-image: url(../images/breadcrumb-icon.png);
  background-position: left center;
  background-repeat: no-repeat;
  padding-left: 20px;
}
.breadcrumb>li a {
  color: #333333;
}
.breadcrumb>li+li:before {
  content: '>';
  color: #333333;
}
.breadcrumb>.active {
  color: #333333;
}
.w-title {
  padding-bottom: 0.75rem;
  font-size: 0.95rem;
  font-weight: bold;
}
.pagination {
  padding: 1.0rem 0 2.25rem;
}
.pagination .page-item .page-link {
  font-size: 0.5rem;
  border: none;
  color: #333333;
  padding: 0;
  margin: 0 0.125rem;
  overflow: hidden;
  position: relative;
  width: 1.25rem;
  height: 1.25rem;
  text-align: center;
  line-height: 1.25rem;
  background-color: #f6f7fa;
  border-radius: 100%;
}
.pagination .page-item.active .page-link {
  color: #ffffff;
  background: #0f53b1;
}

.pagination .page-item:first-child .page-link,
.pagination .page-item:last-child .page-link {
  text-indent: -999px;
}
.pagination .page-item:first-child .page-link::before,
.pagination .page-item:last-child .page-link::before {
  content: '';
  position: absolute;
  top: 50%;
  height: 0.3rem;
  width: 0.3rem;
  margin-top: -0.15rem;
  border-left: 2px solid #c9c9c9;
  border-top: 2px solid #c9c9c9;
  -webkit-transition: all .20s ease;
     -moz-transition: all .20s ease;
      -ms-transition: all .20s ease;
       -o-transition: all .20s ease;
          transition: all .20s ease;
}
.pagination .page-item:first-child .page-link::before {
  left: 50%;
  margin-left: -0.1rem;
  -webkit-transform: rotate(-45deg);
     -moz-transform: rotate(-45deg);
      -ms-transform: rotate(-45deg);
       -o-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.pagination .page-item:last-child .page-link::before {
  right: 50%;
  margin-right: -0.1rem;
  -webkit-transform: rotate(135deg);
     -moz-transform: rotate(135deg);
      -ms-transform: rotate(135deg);
       -o-transform: rotate(135deg);
          transform: rotate(135deg);
}


/*新闻中心*/
#news {
  padding-top: 1.25rem;
}
.news_list li {
  padding: 1.0rem 0;
  border-bottom: 1px solid #e5e5e5;
}
.news_list li .box {
  display: block;
}
.news_list li .box .img {
  margin-right: 1.0rem;
}
.news_list li .box .img_bg {
  height: 4.625rem;
  width: 8.5rem;
}
.news_list li .box .text {
  position: relative;
  width: 100%;
}
.news_list li .box .text .title {
  font-weight: bold;
  font-size: 0.55rem;
  margin-bottom: 0.55rem;
  padding-right: 3.0rem;
  max-width: 19.5rem;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
}
.news_list li .box .text .time {
  position: absolute;
  top: 0;
  line-height: 1.88;
  right: 0;
  color: #222222;
}
.news_list li .box .text .text_d {
  line-height: 1.88;
  max-width: 19.5rem;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
.news_list li .box:hover .text .title {
  color: #053c8b;
}
/**/
#newsD {
  padding: 2.0rem 0 3.0rem;
}
#newsD .newsD_box {
  max-width: 29.5rem;
  margin: 0 auto;
}
#newsD .title {
  font-size: 0.9rem;
  font-weight: bold;
}
#newsD .time {
  color: #000;
  padding: 0.5rem 0 0.75rem;
  margin-bottom: 0.75rem;
  border-bottom: 1px solid #e5e5e5;
}
#newsD .text {
  line-height: 1.88;
}
/*产品*/
#product {
  position: relative;
  padding: 1.75rem 0 2.25rem;
}
#product .text {
  line-height: 1.88;
  padding-bottom: 1.25rem;
}
#product .product_list {
  padding-top: 1.5rem;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}
#product .product_list li {
  margin-bottom: 0.5rem;
}
#product .product_list .box {
  background-color: #f6f7fa;
}
#product .product_list .box .img {
  position: relative;
  height: 6.5rem;
}
#product .product_list .box .pro_text {
  height: 4.0rem;
  padding: 0.5rem 1.0rem 0;
}
#product .product_list .box .pro_text .pro_label {
  margin-bottom: 0.25rem;
}
#product .product_list .box .pro_text .pro_title {
  font-size: 0.6rem;
  line-height: 1.5;
}

/*联系我们*/
#contact {
  padding: 2.0rem 0 2.5rem;
}
.contact_con {}
.contact_con .text {
  font-size: 0.5rem;
  line-height: 2.25;
}
.contact_con .text .title {
  font-size: 0.9rem;
  font-weight: bold;
}
.contact_con .img {
  width: 44.3334%;
}
#iframe_map {
  height: 14.0rem;
  width: 100%;
  display: block;
} 
/*人才观*/
#talent {
  padding: 1.75rem 0 0.75rem;
}
#talent .talent_text {
  line-height: 1.88;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  padding-bottom: 1.5rem;
}
#talent .talent_list li {
  margin-bottom: 1.75rem;
}
#talent .talent_list li .text {
  padding-left: 1.5rem;
}
#talent .talent_list li .text .title {
  font-size: 0.8rem;
  font-weight: bold;
  padding-bottom: 0.4rem;
  line-height: 1.6;
}
#talent .talent_list li .text .text_d {
  line-height: 1.88;
}
#talent .talent_list li .text .more {
  margin-top: 1.0rem;
}
#talent .talent_list li .text .more a {
  display: block;
  width: 4.25rem;
  text-align: center;
  height: 1.25rem;
  line-height: 1.25rem;
  background-color: #0f53b1;
  color: #fff;
}
@media screen and (min-width: 991px) {
  #talent .talent_list li .col-lg-7 {
    -ms-flex: 0 0 64%;
    flex: 0 0 64%;
    max-width: 64%;
  }
  #talent .talent_list li .col-lg-5 {
    -ms-flex: 0 0 36%;
    flex: 0 0 36%;
    max-width: 36%;
  }
  #talent .talent_list li:nth-child(2n) .text {
    padding-left: 0;
    padding-right: 1.5rem;
  }
}
/*工作机会*/
.relative {
  position: relative;
}
#join {
  padding: 2.0rem 0;
  position: relative;
  background-color: #f6f7fa;
}
.join_search {
  margin-bottom: 0.75rem;
}
.join_search .w-title {
  padding-bottom: 0;
}
.join_search_box {
  position: relative;
  max-width: 8.0rem;
  width: 100%;
}
.join_search_box .form-control {
  font-size: 16px;
  border-radius: 0;
  outline: none;
  box-shadow: none;
  padding: 0.15rem 0.5rem;
}
.join_search_box .search_icon {
  position: absolute;
  top: 1px;
  right: 1px;
  bottom: 1px;
  outline: none;
  box-shadow: none;
  font-size: 16px;
  background-color: #fff;
}
.join_search_box .search_icon svg {
  display: block;
  width: 0.55rem;
  margin: 0 auto;
}
.join_search_box .search_icon::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  margin-top: -0.325rem;
  height: 0.65rem;
  width: 1px;
  background-color: rgba(0, 0, 0, 0.1);
}



.join_content {
  margin-left: -0.325rem;
  margin-right: -0.325rem;
}
.company__card-cell {
  margin-bottom: 0.65rem;
  width: 100%;
  padding-left: 0.325rem;
  padding-right: 0.325rem;
}
.card__handle {
  border-left: 1px solid rgba(0, 0, 0, 0.05);
  width: 1.5rem;
  height: 100%;
  position: absolute;
  right: 0;
  top: 0;
}
.card__toggle-icon::before, 
.card__toggle-icon::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 2px;
  height: 18px;
  margin-left: -1px;
  margin-top: -9px;
  background: #4c4c4c;
  -webkit-transform-origin: 50% 100%;
  -ms-transform-origin: 50% 100%;
  transform-origin: 50% 100%;
}
.card__toggle-icon::before {
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.card__toggle-icon::after {
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
.card-wrap {
  cursor: pointer;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  box-shadow: 0 5px 40px rgba(0, 0, 0, 0.01);
}
.card-head {
  background: #ffffff;
  padding: 1.0rem 3.0rem 1.0rem 1.5rem;
  position: relative;
  cursor: pointer;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
  -webkit-box-flex: 2;
  -webkit-flex-grow: 2;
  -ms-flex-positive: 2;
  flex-grow: 2;
}
.card-head .card__title {
  font-size: 0.6rem;
  padding-bottom: 0.4rem;
}

.card__description {
  background: #fff;
  padding: 1.0rem 1.25rem 1.75rem;
}
[data-toggle] {
    -webkit-transition: 0.3s;
    transition: 0.3s;
}
[data-toggle]:not(.is-active) {
    height: 0;
    opacity: 0;
    padding-top: 0;
    padding-bottom: 0;
    overflow: hidden;
}
.card__toggle-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 30px;
    height: 30px;
    margin: -15px 0 0 -15px;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}
.card__description .card__description-title {
  font-size: 0.55rem;
  padding-bottom: 0.25rem;
}
.card__description .card__list {
  padding-bottom: 0.75rem;
}
.card__description .card__description-salary {
  color: #38a5e5;
  font-weight: bold;
  padding-top: 0.75rem;
}
.company__card-cell.is-active .card-head {
  background: #f6f7fa;
}
.company__card-cell.is-active .card-wrap {
  box-shadow: 0 5px 125px rgba(0, 0, 0, 0.1);
}
.company__card-cell.is-expand .card__toggle-icon {
  -webkit-transform: rotateX(180deg);
  transform: rotateX(180deg);
}


/*资质认证*/

#qualification {}
.patent {
  padding-bottom: 2.0rem;
}
.patent .title {
  font-size: 0.95rem;
  font-weight: bold;
  padding: 2.25rem 0 1.75rem;
}
.patent ul {
  margin-left: -0.25rem;
  margin-right: -0.25rem;
}
.patent ul li {
  margin-bottom: 0.5rem;
  padding-left: 0.25rem;
  padding-right: 0.25rem;
}
.patent ul li .img {}
.patent ul li .img img {
  position: relative;
  -webkit-transform: scale(1);
     -moz-transform: scale(1);
      -ms-transform: scale(1);
       -o-transform: scale(1);
          transform: scale(1);
  -webkit-transition: all .30s ease;
     -moz-transition: all .30s ease;
      -ms-transition: all .30s ease;
       -o-transition: all .30s ease;
          transition: all .30s ease;
}
@media screen and (min-width: 991px) {
.patent ul li .img:hover img {
  z-index: 10;
  -webkit-transform: scale(1.5);
     -moz-transform: scale(1.5);
      -ms-transform: scale(1.5);
       -o-transform: scale(1.5);
          transform: scale(1.5);
}
}
@media (min-width: 1200px) {
  .patent ul li {
    -ms-flex: 0 0 10%;
    flex: 0 0 10%;
    max-width: 10%;
  }
}
.enterprise {
  background: url(../images/qualification_bg.jpg) no-repeat center;
  background-size: cover;
  padding-bottom: 2.0rem;
}
.enterprise .title {
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: bold;
  padding: 2.25rem 0 1.75rem;
}
.enterprise_swiper {
  padding-bottom: 2.25rem;
}
.enterprise_swiper li .img {}
.enterprise_swiper li .text {
  text-align: center;
  font-size: 0.5rem;
  color: #ffffff;
  padding-top: 0.9rem;
}
.enterprise_swiper .swiper-pagination .swiper-pagination-bullet,
.w_banner_swiper .swiper-pagination .swiper-pagination-bullet {
  background-color: #38a5e5;
  border-radius: 0;
  margin: 0 0.2rem;
  opacity: 0.5;
}
.w_banner_swiper .swiper-pagination .swiper-pagination-bullet {
  background-color: #ffffff;
}
.enterprise_swiper .swiper-pagination .swiper-pagination-bullet-active,
.w_banner_swiper .swiper-pagination .swiper-pagination-bullet-active {
  opacity: 1;
  width: 1.65rem;
  -webkit-transform: skewX(-30deg);
  -moz-transform: skewX(-30deg);
  -ms-transform: skewX(-30deg);
  -o-transform: skewX(-30deg);
  transform: skewX(-30deg);
}


.certification {
  overflow: hidden;
}
.certification .title {
  font-size: 0.95rem;
  font-weight: bold;
  padding: 2.25rem 0 1.75rem;
}
.certification ul {
  margin-left: -0.5px;
  margin-right: -0.5px;
}
.certification ul li {
  padding-left: 0.5px;
  padding-right: 0.5px;
  margin-bottom: 1px;
}
.certification ul li .box {
  position: relative;
  background-color: #f8f8f8;
  height: 5.5rem;
  padding: 0.25rem 20.3125%;
}
.certification ul li .box::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  opacity: 0;
  visibility: hidden;
  background: #38a5e5;
  -webkit-transition: all .35s ease;
     -moz-transition: all .35s ease;
      -ms-transition: all .35s ease;
       -o-transition: all .35s ease;
          transition: all .35s ease;
}
.certification ul li .box .img {
  position: absolute;
  bottom: 100%;
  left: 50%;
  border: 0.25rem solid #ffffff;
  z-index: 10;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all .45s ease;
     -moz-transition: all .45s ease;
      -ms-transition: all .45s ease;
       -o-transition: all .45s ease;
          transition: all .45s ease;
  box-shadow: 0 0 0.25rem rgba(0, 0, 0, 0.1);
  -webkit-transform: translateX(-50%);
     -moz-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
       -o-transform: translateX(-50%);
          transform: translateX(-50%);
}
.certification ul li .box .img::after {
  content: '';
  position: absolute;
  left: 50%;
  margin-left: -0.275rem;
  bottom: -0.525rem;
  border-right: 0.275rem solid transparent;
  border-left: 0.275rem solid transparent;
  border-top: 0.275rem solid #ffffff;
}
.certification ul li .box .sou {
  color: #38a5e5;
  padding-top: 0.7rem;
  padding-bottom: 0.4rem;
  position: relative;
  font-weight: bold;
  z-index: 1;
  -webkit-transition: all .35s ease;
     -moz-transition: all .35s ease;
      -ms-transition: all .35s ease;
       -o-transition: all .35s ease;
          transition: all .35s ease;
}
.certification ul li .box .text {
  font-size: 0.7rem;
  font-weight: bold;
  position: relative;
  z-index: 1;
  line-height: 1.285;
  -webkit-transition: all .35s ease;
     -moz-transition: all .35s ease;
      -ms-transition: all .35s ease;
       -o-transition: all .35s ease;
          transition: all .35s ease;
}
@media screen and (min-width: 991px) {
  .certification ul li .box:hover .sou,
  .certification ul li .box:hover .text {
    color: #ffffff;
  }
  .certification ul li .box:hover .img {
    bottom: 78%;
  }
  .certification ul li .box:hover .img,
  .certification ul li .box:hover::after {
    opacity: 1;
    visibility: visible;
  }
}

/*大事记*/
#memorabilia {
  padding-bottom: 5.375rem;
  position: relative;
  background-image: url(../images/memorabilia_bg.jpg);
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: center 7.5rem;
}
@media (min-width: 1360px) {
#memorabilia .container {
  max-width: 1170px;
}
}
@media (min-width: 1360px) {
#memorabilia .container {
  max-width: 1170px;
}
}
.memorabilia_list {
  position: absolute;
  top: 2.5rem;
  left: 5.7292%;
  font-size: 0.5rem;
  text-align: right;
  width: 130px;
  z-index: 100;
}
.memorabilia_list.scollfox {
  position: fixed;
}
.memorabilia_list::after {
  content: '';
  position: absolute;
  top: 8%;
  right: 0;
  width: 1px;
  height: 86%;
  background-color: #bbbbbb;
}
.memorabilia_list li {
  position: relative;
}
.memorabilia_list li a::after {
  content: '';
  position: absolute;
  top: 50%;
  right: -0.125rem;
  margin-top: -0.125rem;
  width: 0.275rem;
  height: 0.275rem;
  border-radius: 100%;
  background-color: #bbbbbb;
  z-index: 10;
}
.memorabilia_list li+li {
  padding-top: 0.4rem;
}
.memorabilia_list li a {
  color: #bbbbbb;
  position: relative;
  cursor: pointer;
  padding: 0;
  padding-right: 0.75rem;
  -webkit-transition: all .35s ease;
     -moz-transition: all .35s ease;
      -ms-transition: all .35s ease;
       -o-transition: all .35s ease;
          transition: all .35s ease;
}
.memorabilia_list li a.active {
  font-size: 0.95rem;
  color: #333333;
  font-weight: bold;
}
.memorabilia_list li a.active::after {
  background-color: #38a5e5;
}

.memorabilia ul {
  position: relative;
}
.memorabilia ul>li {
  padding-top: 2.5rem;
  position: relative;
}
.memorabilia ul>li .year {
  font-size: 1.75rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
}
.memorabilia ul>li .text {
  font-size: 0.5rem;
  position: relative;
}
.memorabilia ul>li .text::after {
  content: '';
  position: absolute;
  top: 0.25rem;
  left: 5.5rem;
  width: 1px;
  height: 100%;
  background-color: #dddddd;
}
.memorabilia ul>li .text .text_list {
  position: relative;
  padding-left: 5.5rem;
  padding-bottom: 1.5rem;
}
.memorabilia ul>li .text .text_list_box {
  padding-left: 2.0rem;
}
.memorabilia ul>li .text .month {
  color: #999999;
  position: absolute;
  top: 0;
  left: 0;
  width: 5.5rem;
  padding-right: 1.5rem;
  text-align: right;
}
.memorabilia ul>li .text .month::after {
  content: '';
  position: absolute;
  top: 50%;
  margin-top: -0.2rem;
  right: -0.225rem;
  width: 0.425rem;
  height: 0.425rem;
  z-index: 10;
  background: url(../images/icon17.png) no-repeat center;
  background-size: 0.425rem;
}
/*客户关怀*/
#care {
  padding: 2.5rem 0 2.25rem;
}
#care .care_title {
  font-size: 0.95rem;
  font-weight: bold;
}
#care .care_text {
  color: #999;
  font-size: 0.7rem;
  padding: 0.125rem 0;
}
.care_list>li {
  padding: 1.75rem 0;
}
.care_list>li+li {
  border-top: 1px solid #e5e5e5;
}
.care_list .img {
  position: relative;
}
.care_list .img .img_box {
  position: absolute;
  bottom: 1.0rem;
  left: 10.56%;
  right: 10.56%;
  color: #ffffff;
  padding-top: 1.0rem;
  font-weight: bold;
  border-top: 1px solid rgba(255, 255, 255, 0.5);
}
.care_list .img .img_box .img_title {
  font-size: 0.95rem;
  line-height: 1.26;
  padding-top: 0.15rem;
}
.care_list .img .img_box .img_icon {
  height: 2.25rem;
}
.care_list .img .img_box .img_icon img {
  max-height: 100%;
}
.care_list .text {
  position: relative;
  font-size: 0.5rem;
}
.care_list .text .text_list {
  padding: 1.75rem 1.5rem;
}
.care_list .text .text_list+.text_list {
  border-top: 1px solid #e5e5e5;
}
.care_list .text .text_list .title {
  font-weight: bold;
  font-size: 0.6rem;
  position: relative;
  margin-right: 1.5rem;
  max-width: 3.6rem;
  width: 100%;
}
.care_list .text .text_list .title::after {
  content: '';
  position: absolute;
  left: -10px;
  top: 0;
  height: 20px;
  width: 40px;
  background: rgba(56, 165, 229, 0.9);
  -webkit-transform: skewX(-30deg);
  -moz-transform: skewX(-30deg);
  -ms-transform: skewX(-30deg);
  -o-transform: skewX(-30deg);
  transform: skewX(-30deg);
  -webkit-transition: all .35s ease;
     -moz-transition: all .35s ease;
      -ms-transition: all .35s ease;
       -o-transition: all .35s ease;
          transition: all .35s ease;
}
.care_list .text .text_list .title span {
  position: relative;
  z-index: 1;
}
.care_list .text .text_list .describe {
  line-height: 1.8;
  max-width: 600px;
}
.care_list .text .text_list .describe p {
  -webkit-transition: all .35s ease;
     -moz-transition: all .35s ease;
      -ms-transition: all .35s ease;
       -o-transition: all .35s ease;
          transition: all .35s ease;
}
.text_list_click {
  cursor: pointer;
  background-repeat: no-repeat;
  background-position: right 1.0rem center;
  -webkit-transition: all .35s ease;
     -moz-transition: all .35s ease;
      -ms-transition: all .35s ease;
       -o-transition: all .35s ease;
          transition: all .35s ease;
}
@media screen and (min-width: 991px) {
.text_list_click:hover {
  color: #38a5e5;
  background-image: url(../images/icon18.png);
  background-position: right 1.5rem center;
}
.text_list_click:hover .describe p {
  border-bottom: 1px solid #38a5e5;
  display: inline;
}
.text_list_click:hover .title::after {
  background: #f2f7fc !important;
}
}

.care_tab {
  border-bottom: 3px solid #dddddd;
}
.care_tab .care_tab_btn {
  padding: 0.5rem 0;
  position: relative;
  cursor: pointer;
}
.care_tab .care_tab_btn::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 3px;
  z-index: 10;
  background-color: #38a5e5;
  -webkit-transition: all .35s ease;
     -moz-transition: all .35s ease;
      -ms-transition: all .35s ease;
       -o-transition: all .35s ease;
          transition: all .35s ease;
}
.care_tab .care_tab_btn>div {
  color: #999999;
  font-weight: bold;
  font-size: 0.8rem;
}
.care_tab .care_tab_btn>p {}

.care_tab .care_tab_btn.active::after {
  width: 100%;
}
.care_tab .care_tab_btn.active>div {
  color: #222222;
}
.care_tab .care_tab_btn.active>div>span {
  color: #38a5e5;
}
.care_content .care_content_list {
  display: none;
  margin-top: 1.0rem;
  color: #999999;
  font-size: 0.5rem;
}
.care_content .care_content_list.active {
  display: block;
}
.care_content .care_content_list .table {
  margin-bottom: 0;
}
.care_content .care_content_list .table thead th {
  border-bottom: none;
  background-color: #f5f8fb;
  padding: 1rem 2.25rem;
  font-size: 0.55rem;
  text-align: left;
}
.care_content .care_content_list .table thead th p {
  font-size: 0.45rem;
}
.care_content .care_content_list .table td, 
.care_content .care_content_list .table th {
  vertical-align: middle;
  text-align: center;
}
.care_content .care_content_list .table td {
  padding: 0.05rem;
}
.care_content .care_content_list .table tr td.width01 {
  text-align: left;
  width: 36%;
  padding: 0.05rem 1.0rem;
}
.care_content .care_content_list .table th {
  padding: 0.15rem;
  color: #222222;
  font-weight: bold;
}
.care_content .care_content_list .table_footer {
  margin-top: 0.25rem;
}
.care_content .care_content_list .table_footer .table_footer_box {
  color: #38a5e5;
  font-weight: bold;
  padding: 0.375rem 0.75rem;
  background-image: linear-gradient(to right,#f5f8fb,#ffffff);
}
/*业务中心*/
.color_0f53b1 {
  color: #0f53b1;
}
#business_head {
  padding: 1.85rem 0 2.25rem;
}
#business_head {}
#business_head .title {
  font-size: 0.95rem;
  font-weight: bold;
  padding-bottom: 0.5rem;
}
#business_head .business_head_text {
  padding-right: 1.25rem;
  position: relative;
  border-right: 1px solid #e5e5e5;
}
#business_head .business_head_text .text {
  line-height: 1.88;
}
#business_head .business_head_title {
  font-size: 0.85rem;
  line-height: 1.76;
  font-weight: bold;
}
#business_head .business_head_title .business_head_title_box {
  padding-left: 1.5rem;
  width: 10.0rem;
}
#business li.business_list01 .box {
  padding-left: 30%;
}
#business li.business_list03 .box {
  padding-left: 15%;
}
#business li.business_list02 .box,
#business li.business_list04 .box {
  padding: 0 1.65rem;
}
#business li.business_list04 .box {
  padding-top: 2.2rem;
  padding-bottom: 2.2rem;
}
#business li.business_list04 .box .box_text {
  margin-bottom: 1.5rem;
}
#business li .box {
  height: 6.5rem;
  color: #fff;
}
#business li .box .box_text {
  margin: 0 0.325rem;
}
#business li .box .box_text .title {
  font-size: 1.0rem;
  font-weight: bold;
  padding-bottom: 0.15rem;
}

#business_bg {
  height: 55vh;
}

/*关于我们*/
#about {
  padding: 1.9rem 0 2.25rem;
}
#about .text {
  line-height: 1.88;
}
#shareholder {
  background-color: #f6f7fa;
  padding-top: 1.25rem;
}
#shareholder li .box {
  background-color: #0f53b1;
  color: #fff;
  height: 12.5rem;
  padding-left: 21%;
}
#shareholder li .box .capital {
  margin: 0.6rem 0 0.9rem;
}
#shareholder li .box .capital .capital_list+.capital_list {
  position: relative;
  padding-left: 0.9rem;
  margin-left: 0.9rem;
}
#shareholder li .box .capital .capital_list+.capital_list::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  width: 1px;
  height: 1.5rem;
  background-color: rgba(255, 255, 255, 0.2);
  margin-top: -0.75rem;
}
#shareholder li .box .capital .capital_list .capital_title {
  font-weight: bold;
  font-size: 1.0rem;
  padding-bottom: 0.1rem;
}
#shareholder li .box .more {}
#shareholder li .box .more a {
  display: block;
  width: 4.25rem;
  text-align: center;
  color: #fff;
  height: 1.25rem;
  line-height: 1.2rem;
  border: 1px solid #fff;
}

#framework {
  padding: 2.15rem 0;
}
#history {
  padding: 2.05rem 0 2.5rem;
  background-color: #f6f7fa;
}
#history .history_main {
  position: relative;
  padding: 0 40px;
}
.history_main::after {
  content: '';
  position: absolute;
  bottom: 5px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #0c4ca5;
}
.history_swiper {
  position: relative;
  z-index: 10;
  padding-left: 2.5rem;
  padding-right: 2.5rem;
  padding-top: 1.9rem;
}
.history_swiper li.swiper-slide {
  cursor: pointer;
}
.history_swiper li.swiper-slide .title {
  position: absolute;
  bottom: 0.5rem;
  left: 0;
  width: 100%;
  text-align: center;
  -webkit-transition: all .35s ease;
     -moz-transition: all .35s ease;
      -ms-transition: all .35s ease;
       -o-transition: all .35s ease;
          transition: all .35s ease;
}
.history_swiper li.swiper-slide .radiu {
  border-radius: 100%;
  width: 12px;
  height: 12px;
  background-color: #ffffff;
  border: 2px solid #0c4ca5;
  position: absolute;
  bottom: 0;
  left: 50%;
  margin-left: -6px;
}
.history_swiper li.swiper-slide-active .title {
  font-size: 1.1rem;
  font-weight: bold;
}
.history_main .history_prev,
.history_main .history_next {
  top: initial;
  bottom: -16px;
}
.history_main .history_prev::after,
.history_main .history_next::after {
  color: #0c4ca5;
  font-size: 30px;
}
.history_main .history_prev {
  left: 0;
}
.history_main .history_next {
  right: 0;
}

#history .history_text {
  padding-top: 0.85rem;
}
#history .history_text li.swiper-slide {
  background-color: #ffffff;
  display: none;
}
#history .history_text li.swiper-slide-active {
  display: block;
}
#history .history_text .text {
  line-height: 2;
  background-color: #fff;
  padding: 0.3rem 1.25rem 1.0rem;
}
#history .history_text .text p+p {
  border-top: 1px solid #e5e5e5;
}
#history .history_text .text p {
  padding: 0.3rem 0;
}
/**/
#values {}
.mission {
  background-image: url(../images/mission_bg.png);
  color: #fff;
  padding: 4.0rem 0 4.75rem;
}
.mission .w-title {
  padding-bottom: 0.5rem;
}
.mission .text {
  font-size: 0.6rem;
}
.values {
  padding: 2.0rem 0 1.75rem;
}
.values .values_list li {
  margin-bottom: 0.75rem;
  padding-top: 1.125rem;
}
.values .values_list li .box {
  position: relative;
  padding: 1.75rem 0 1.0rem;
  background-color: #f6f7fa;
  height: 5.75rem;
}
.values .values_list li .box::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  transform-origin: center top;
  -webkit-transform: scaleY(0);
     -moz-transform: scaleY(0);
      -ms-transform: scaleY(0);
       -o-transform: scaleY(0);
          transform: scaleY(0);
  background-color: #0f53b1;
  -webkit-transition: transform .3s linear;
     -moz-transition: transform .3s linear;
      -ms-transition: transform .3s linear;
       -o-transition: transform .3s linear;
          transition: transform .3s linear;
}
.values .values_list li .box .img {
  position: absolute;
  top: -1.125rem;
  left: 50%;
  margin-left: -1.125rem;
  border: 3px solid #fff;
  border-radius: 100%;
  width: 2.25rem;
  height: 2.25rem;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #0f53b1;
  z-index: 1;
}
.values .values_list li .box .title {
  font-size: 0.6rem;
  font-weight: bold;
  padding-bottom: 0.25rem;
  position: relative;
  z-index: 1;
}
.values .values_list li .box .text {
  font-size: 0.5rem;
  text-align: center;
  line-height: 1.6;
  padding-left: 0.75rem;
  padding-right: 0.75rem;
  padding-bottom: 0.5rem;
  position: relative;
  z-index: 1;
}
.values .values_list li .box .box_pos {
  position: relative;
}
.values .values_list li .box .text_d {
  position: absolute;
  top: 130%;
  left: 0;
  right: 0;
  background-color: #0f53b1;
  font-size: 0.4rem;
  line-height: 2;
  color: #fff;
  padding: 0 0.75rem;
  opacity: 0;
  visibility: hidden;
}
.values .values_list li .box .text_d_box {
  padding: 0.5rem 0 1.0rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}
.values .values_list li .box .text_d_box p {
  position: relative;
  padding-left: 0.5rem;
}
.values .values_list li .box .text_d_box p::after {
  content: '';
  position: absolute;
  top: 0.3rem;
  left: 0;
  width: 0.2rem;
  height: 0.2rem;
  border-radius: 100%;
  background-color: #ffffff;
}
@media (min-width: 991px) {
  .values .values_list li .box:hover {
    color: #fff;
  }
  .values .values_list li .box:hover::after {
    transform-origin: center bottom;
    -webkit-transform: scaleY(1);
       -moz-transform: scaleY(1);
        -ms-transform: scaleY(1);
         -o-transform: scaleY(1);
            transform: scaleY(1);
  }
  .values .values_list li .box:hover .text_d {
    top: 100%;
    opacity: 1;
    z-index: 1;
    visibility: visible;
    -webkit-transition: all .3s linear;
       -moz-transition: all .3s linear;
        -ms-transition: all .3s linear;
         -o-transition: all .3s linear;
            transition: all .3s linear;
  }
}

/**/
#rank {
  padding: 2.0rem 0 2.25rem;
}
#rank .img {
  line-height: 1.88;
}
#training {
  padding: 2.0rem 0 1.5rem;
  background-color: #f6f7fa;
}
#training .training_list {}
#training .training_list li {
  margin-bottom: 0.75rem;
}
#training .training_list li .box {
  background-color: #fff;
  position: relative;
}
#training .training_list li .box .title {
  font-size: 0.55rem;
  color: #fff;
  height: 1.75rem;
  line-height: 1.75rem;
  text-align: center;
  background-color: #004191;
  position: relative;
}
#training .training_list li+li .box .title::before,
#training .training_list li .box .title::after {
  content: '';
  position: absolute;
  top: 0;
  border-width: 0.875rem;
  border-style: solid;
  border-left-color: #f6f7fa;
  border-bottom-color: #004191;
  border-top-color: #004191;
  border-right: none;
}
#training .training_list li+li .box .title::before {
  left: 0;
}
#training .training_list li .box .title::after {
  right: 0;
  border-left-color: #004191;
  border-bottom-color: #fff;
  border-top-color: #f6f7fa;
}

#training .training_list li:nth-child(2) .box .title {
  background-color: #0f61d2;
}
#training .training_list li:nth-child(2) .box .title::before {
  border-bottom-color: #0f61d2;
  border-top-color: #0f61d2;
}
#training .training_list li:nth-child(2) .box .title::after {
  border-left-color: #0f61d2;
}
#training .training_list li:nth-child(3) .box .title {
  background-color: #4cc5d6;
}
#training .training_list li:nth-child(3) .box .title::before {
  border-bottom-color: #4cc5d6;
  border-top-color: #4cc5d6;
}
#training .training_list li:nth-child(3) .box .title::after {
  border-left-color: #4cc5d6;
}

#training .training_list li .box .text {
  padding: 0.5rem 1.25rem 0.25rem;
  min-height: 9.5rem;
}
#training .training_list li .box .text p {
  padding: 0.275rem 0;
  text-align: center;
}
#training .training_list li .box .text p+p {
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}