@charset "utf-8";
.top {
  position: fixed;
  left: 0;
  top: 45px;
  width: 100%;
  z-index: 999;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  display: -moz-flex;
  -webkit-box-pack: justify;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 80px;
  color: #fff;
  transition: 0.3s;
  -webkit-transition: 0.3s;
}
.top a {
  color: #fff;
}
.top a:hover {
  color: #44AF35;
}
.logo {
  margin-left: 4%;
}
.logo a {
  display: block;
  height: 50px;
  position: relative;
}
.logo img {
  height: 100%;
  display: block;
}
.logo .img2 {
  position: absolute;
  left: 0;
  top: 0;
  display: none;
}
.top-right {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  display: -moz-flex;
  -webkit-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-right: 4%;
}
.nav {
  margin-right: 20px;
}
.nav li {
  float: left;
  display: inline-block;
  margin-right: 25px;
  font-size: 16px;
  position: relative;
}
.nav li > a {
  padding: 0 25px;
  line-height: 80px;
  display: block;
}
.nav a.active {
  color: #44AF35;
}
.nav .subnav {
  position: absolute;
  left: 0;
  width: 100%;
  top: 100%;
  background-color: #fff;
  -webkit-box-shadow: 2px 5px 3px rgba(0, 0, 0, 0.16);
  box-shadow: 2px 5px 3px rgba(0, 0, 0, 0.16);
  text-align: center;
  display: none;
  margin-top: 20px;
  padding: 15px 0;
  border-radius: 5px;
}
.nav .subnav::before {
  content: "";
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  display: block;
  margin: 0px auto;
  height: 0;
  width: 0;
  border-bottom: 6px solid #fff;
  position: absolute;
  left: 50%;
  margin-left: -6px;
  top: -6px;
}
.nav .subnav p {
  margin-bottom: 4px;
}
.nav .subnav a {
  display: block;
  line-height: 1.4;
  padding: 5px 0;
  position: relative;
  z-index: 1;
  color: #333333;
  font-size: 15px;
  -webkit-perspective: 100px;
  -moz-perspective: 100px;
  perspective: 100px;
  -webkit-transform-style: preserve-3d;
  -moz-transform-style: preserve-3d;
  transform-style: preserve-3d;
}
.nav .subnav a::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  z-index: -1;
  display: block;
  height: 100%;
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  -moz-transition: 0.4s;
  transition: 0.4s;
  -webkit-transform: rotateX(-70deg);
  -moz-transform: rotateX(-70deg);
  transform: rotateX(-70deg);
  -moz-transform-origin: center top 0;
  -ms-transform-origin: center top 0;
  -o-transform-origin: center top 0;
  transform-origin: center top 0;
  -webkit-transform-origin: center top 0;
  opacity: 0;
  visibility: hidden;
  background-color: #44AF35;
}
.nav .subnav a:hover {
  color: #fff;
}
.nav .subnav a:hover::before {
  -webkit-transform: none;
  -moz-transform: none;
  -ms-transform: none;
  -o-transform: none;
  transform: none;
  opacity: 1;
  visibility: visible;
}
.serach-box {
  position: relative;
  width: 130px;
  border-radius: 18px;
  background-color: #fff;
  padding: 0 44px 0 24px;
}
.serach-box .serach-txt {
  width: 100%;
  display: block;
  border: 0 none;
  padding: 0;
  line-height: 36px;
  height: 36px;
  color: #666666;
}
.serach-box .serach-btn {
  width: 36px;
  height: 36px;
  line-height: 36px;
  border-radius: 50%;
  background-color: #0B308E;
  position: absolute;
  overflow: hidden;
  right: 0;
  top: 0;
  font-size: 15px;
  text-align: center;
  color: #fff;
}
.serach-box .serach-btn i {
  position: relative;
  z-index: 2;
  color: #fff;
}
.serach-box .serach-btn:before {
  content: "";
  position: absolute;
  display: block;
  bottom: auto;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 1;
  transition: opacity 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  background-color: #0B308E;
}
.serach-box .serach-btn::after {
  content: "";
  position: absolute;
  display: block;
  border-radius: 50%;
  bottom: 0;
  left: 50%;
  transform: translateZ(0) translate(-50%, 50%) scale(0);
  transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  will-change: transform;
  pointer-events: none;
  width: 200%;
  height: 200%;
  background-color: #222222;
}
.serach-box .serach-btn:hover:before {
  opacity: 0;
}
.serach-box .serach-btn:hover:after {
  transform: translateZ(0) translate(-50%, 40%) scale(1);
  -webkit-transform: translateZ(0) translate(-50%, 40%) scale(1);
}
.serach-box .serach-btn2 {
  display: none;
}
.langer-box {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  display: -moz-flex;
}
.langer-box a {
  position: relative;
  width: 36px;
  height: 36px;
  text-align: center;
  line-height: 36px;
  border-radius: 50%;
  margin-left: 8px;
  font-family: "DINPro-R";
  overflow: hidden;
}
.langer-box a:before {
  content: "";
  position: absolute;
  display: block;
  bottom: auto;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 1;
  transition: opacity 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  background-color: #44AF35;
}
.langer-box a::after {
  content: "";
  position: absolute;
  display: block;
  border-radius: 50%;
  bottom: 0;
  left: 50%;
  transform: translateZ(0) translate(-50%, 50%) scale(0);
  transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  will-change: transform;
  pointer-events: none;
  width: 200%;
  height: 200%;
  background-color: #222222;
}
.langer-box a:hover:before {
  opacity: 0;
}
.langer-box a:hover:after {
  transform: translateZ(0) translate(-50%, 40%) scale(1);
  -webkit-transform: translateZ(0) translate(-50%, 40%) scale(1);
}
.langer-box .txt {
  position: relative;
  z-index: 1;
  color: #fff;
}
.menu-handler {
  width: 44px;
  height: 56px;
  display: none;
  margin-left: 10px;
  cursor: pointer;
}
.menu-handler span:first-child {
  position: relative;
  display: block;
  width: 16px;
  height: 2px;
  margin: 27px 0 0 10px;
  background-color: #333;
  -webkit-transition-duration: 0.3s, 0.3s;
  -moz-transition-duration: 0.3s, 0.3s;
  -o-transition-duration: 0.3s, 0.3s;
  transition-duration: 0.3s, 0.3s;
  -webkit-transition-delay: 0.3s, 0s;
  -moz-transition-delay: 0.3s, 0s;
  -o-transition-delay: 0.3s, 0s;
  transition-delay: 0.3s, 0s;
}
.menu-handler span:first-child:after,
.menu-handler span:first-child:before {
  content: "";
  position: absolute;
  display: inline-block;
  width: 24px;
  height: 2px;
  left: 0;
  background-color: #333;
  -webkit-transition-duration: 0.3s, 0.3s;
  -moz-transition-duration: 0.3s, 0.3s;
  -o-transition-duration: 0.3s, 0.3s;
  transition-duration: 0.3s, 0.3s;
  -webkit-transition-delay: 0.3s, 0s;
  -moz-transition-delay: 0.3s, 0s;
  -o-transition-delay: 0.3s, 0s;
  transition-delay: 0.3s, 0s;
}
.menu-handler span:first-child:before {
  top: -6px;
  -webkit-transition-property: top, transform;
  -webkit-transition-property: top, -webkit-transform;
  transition-property: top, -webkit-transform;
  -o-transition-property: top, -o-transform;
  -moz-transition-property: top, transform, -moz-transform;
  transition-property: top, transform;
  transition-property: top, transform, -webkit-transform, -moz-transform, -o-transform;
}
.menu-handler span:first-child:after {
  bottom: -6px;
  -webkit-transition-property: bottom, transform;
  -webkit-transition-property: bottom, -webkit-transform;
  transition-property: bottom, -webkit-transform;
  -o-transition-property: bottom, -o-transform;
  -moz-transition-property: bottom, transform, -moz-transform;
  transition-property: bottom, transform;
  transition-property: bottom, transform, -webkit-transform, -moz-transform, -o-transform;
}
.menu-handler.active span {
  background-color: transparent;
  -webkit-transition-delay: 0s, 0s;
  -moz-transition-delay: 0s, 0s;
  -o-transition-delay: 0s, 0s;
  transition-delay: 0s, 0s;
}
.menu-handler.active span:after,
.menu-handler.active span:before {
  -webkit-transition-delay: 0s, 0.3s;
  -moz-transition-delay: 0s, 0.3s;
  -o-transition-delay: 0s, 0.3s;
  transition-delay: 0s, 0.3s;
}
.menu-handler.active span:before {
  top: 0;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}
.menu-handler.active span:after {
  bottom: 0;
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.menubarM a:link,
.menubarM a:visited {
  color: #333;
}
.menubarM a:active,
.menubarM a:hover {
  color: #333;
}
.menubarM {
  background-color: #fff;
  color: #333;
  position: fixed;
  display: none;
  right: 0px;
  top: 0px;
  width: 320px;
  height: 100%;
  height: 100vh;
  -webkit-transform: translateX(100%);
  -moz-transform: translateX(100%);
  -ms-transform: translateX(100%);
  -o-transform: translateX(100%);
  transform: translateX(100%);
  z-index: 995;
  -webkit-transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -o-transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -moz-transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.menubarM-box {
  height: 100vh;
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.menubarM-list {
  padding: 56px 0 0;
}
.menubarM-list > li {
  border-bottom: 1px solid #dcdcdc;
}
.menubarM-list > li > a {
  position: relative;
  display: block;
  font-size: 15px;
  padding: 10px 40px;
  background-color: #f5f5f5;
}
.menubarM-list > li > a::before {
  content: "";
  position: absolute;
  width: 3px;
  height: 3px;
  top: 0;
  bottom: 0;
  margin: auto 0;
  left: 20px;
  background-color: #0B308E;
  border-radius: 50%;
}
.menubarM-list > li > a i {
  position: absolute;
  right: 3%;
  top: 50%;
  font-size: 18px;
  line-height: 1;
  margin-top: -9px;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  -o-transition: -o-transform 0.3s;
  -moz-transition: transform 0.3s, -moz-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s, -moz-transform 0.3s, -o-transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
.menubarM-list .cur > a i {
  -webkit-transform: rotate(-90deg);
  -moz-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  -o-transform: rotate(-90deg);
  transform: rotate(-90deg);
}
.menubarM-list .subnav {
  background-color: #fff;
  display: none;
  padding: 10px 40px 15px 40px;
}
.menubarM-list .subnav p {
  border-bottom: 1px solid #eaeaea;
}
.menubarM-list .subnav p:last-child {
  border-bottom: 0 none;
}
.menubarM-list .subnav a {
  position: relative;
  display: block;
  line-height: 1.4;
  padding: 10px 0;
  color: #666;
}
.pusher-black {
  position: fixed;
  width: 100%;
  height: 100%;
  left: 0px;
  top: 0px;
  z-index: 990;
  background-color: rgba(0, 0, 0, 0.6);
  visibility: hidden;
  filter: alpha(opacity=0);
  opacity: 0;
  -webkit-transition: all 0.2s cubic-bezier(0.02, 0.01, 0.47, 1) 0s;
  -o-transition: all 0.2s cubic-bezier(0.02, 0.01, 0.47, 1) 0s;
  -moz-transition: all 0.2s cubic-bezier(0.02, 0.01, 0.47, 1) 0s;
  transition: all 0.2s cubic-bezier(0.02, 0.01, 0.47, 1) 0s;
}
.menuOpen .pusher-black {
  visibility: visible;
  opacity: 1;
}
.menuOpen .menubarM {
  -moz-transform: translateX(0);
  -webkit-transform: translateX(0);
  -ms-transform: translateX(0);
  -o-transform: translateX(0);
  transform: translateX(0);
}
.top.tophei {
  background-color: #fff;
  top: 0;
  -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.16);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.16);
}
.top.tophei a {
  color: #333333;
}
.top.tophei a:hover,
.top.tophei a.active {
  color: #44AF35;
}
.top.tophei .logo .img1 {
  display: none;
}
.top.tophei .logo .img2 {
  display: block;
}
.top.tophei .serach-box {
  background-color: #F8F8F8;
}
.top.tophei .serach-box .serach-txt {
  background-color: #F8F8F8;
}
.top.tophei .nav .subnav {
  border-top: 3px solid #0B308E;
  border-radius: 0 0 5px 5px;
}
.top.tophei .nav .subnav::before {
  display: none;
}
.top.tophei .nav .subnav a:hover {
  color: #fff;
}
.top.topbai {
  top: 0;
}
.swiper-App {
  position: relative;
  overflow: hidden;
  height: 100vh;
}
.swiper-App .wrapper {
  height: 100vh;
}
.app-con {
  overflow: hidden;
}
.gree {
  color: #44AF35;
}
.banner-box {
  color: #fff;
  height: 100vh;
}
.banner-box .swiper-slide {
  height: 100%;
}
.banner-box a {
  color: #fff;
}
.banner-box .imgBox {
  position: relative;
  height: 100%;
  overflow: hidden;
}
.banner-box .imgBox::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 60%;
  height: 100%;
  background: -moz-linear-gradient(left, #16485D, rgba(78, 121, 140, 0));
  background: -webkit-linear-gradient(left, #16485D, rgba(78, 121, 140, 0));
  background: -o-linear-gradient(left, #16485D, rgba(78, 121, 140, 0));
  background: -ms-linear-gradient(left, #16485D, rgba(78, 121, 140, 0));
  background: linear-gradient(left, #16485D, rgba(78, 121, 140, 0));
}
.banner-box .imgBox img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  display: block;
  -webkit-transition: -webkit-transform 3.5s;
  transition: -webkit-transform 3.5s;
  -o-transition: -o-transform 3.5s;
  -moz-transition: transform 3.5s, -moz-transform 3.5s;
  transition: transform 3.5s;
  transition: transform 3.5s, -webkit-transform 3.5s, -moz-transform 3.5s, -o-transform 3.5s;
  -webkit-transition: transform 3.5s;
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
  transform: scale(1.1);
  -webkit-transform: scale(1.1);
}
.banner-box .swiper-slide-active .imgBox img {
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
  -webkit-transform: scale(1);
}
.banner-box .swiper-slide-active .banner-bot .line::before {
  -webkit-animation: bannerline 5s linear;
  -moz-animation: bannerline 5s linear;
  -o-animation: bannerline 5s linear;
  animation: bannerline 5s linear;
}
.banner-box .swiper-slide-active .banner-title,
.banner-box .swiper-slide-active .banner-bot .en,
.banner-box .swiper-slide-active .banner-num {
  opacity: 1;
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
  transform: translateY(0);
}
.banner-box .swiper-slide-active .banner-bot .en {
  -webkit-transition-delay: 0.3s;
  -moz-transition-delay: 0.3s;
  -o-transition-delay: 0.3s;
  transition-delay: 0.3s;
}
.banner-box .swiper-slide-active .banner-num {
  -webkit-transition-delay: 0.6s;
  -moz-transition-delay: 0.6s;
  -o-transition-delay: 0.6s;
  transition-delay: 0.6s;
}
.banner-desc {
  position: absolute;
  left: 4%;
  width: 92%;
  bottom: 12%;
}
.banner-title {
  line-height: 1.2;
  opacity: 0;
  -webkit-transform: translateY(30px);
  -moz-transform: translateY(30px);
  -ms-transform: translateY(30px);
  -o-transform: translateY(30px);
  transform: translateY(30px);
  -webkit-transition: 0.65s;
  -o-transition: 0.65s;
  -moz-transition: 0.65s;
  transition: 0.65s;
}
.banner-bot {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  display: -moz-flex;
  -webkit-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 10px;
}
.banner-bot .en {
  text-transform: uppercase;
  font-family: "DINPro-B";
  line-height: 1.1;
  margin-right: 15px;
  opacity: 0;
  -webkit-transform: translateY(30px);
  -moz-transform: translateY(30px);
  -ms-transform: translateY(30px);
  -o-transform: translateY(30px);
  transform: translateY(30px);
  -webkit-transition: 0.65s;
  -o-transition: 0.65s;
  -moz-transition: 0.65s;
  transition: 0.65s;
}
.banner-bot .swiper-btn {
  position: relative;
  width: 200px;
  margin-left: 30px;
  display: block;
  overflow: hidden;
  text-transform: uppercase;
  line-height: 1;
}
.banner-bot .swiper-btn .swiper-prev {
  float: left;
}
.banner-bot .swiper-btn .swiper-next {
  float: right;
}
.banner-bot .swiper-btn::before {
  content: "";
  position: absolute;
  width: 5px;
  height: 5px;
  background-color: #fff;
  border-radius: 50%;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}
.banner-bot .line {
  position: relative;
  width: 100%;
  height: 1px;
  background-color: #fff;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -moz-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
.banner-bot .line::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 0;
  height: 100%;
  background-color: #44AF35;
}
.swiper-btn {
  font-family: "DINPro-M";
  color: #fff;
  font-size: 13px;
}
.swiper-btn a {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  display: -moz-flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.swiper-btn a:hover {
  color: #44AF35;
}
.swiper-btn .iconfont {
  font-size: 22px;
}
.swiper-btn .swiper-prev i {
  margin-right: 10px;
}
.swiper-btn .swiper-next i {
  margin-left: 10px;
}
.banner-num {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  display: -moz-flex;
  margin-top: 45px;
  opacity: 0;
  -webkit-transform: translateY(30px);
  -moz-transform: translateY(30px);
  -ms-transform: translateY(30px);
  -o-transform: translateY(30px);
  transform: translateY(30px);
  -webkit-transition: 0.65s;
  -o-transition: 0.65s;
  -moz-transition: 0.65s;
  transition: 0.65s;
}
.banner-num li {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  display: -moz-flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 16px;
  margin-right: 5%;
}
.banner-num li:last-child {
  margin-right: 0;
}
.banner-num .ico {
  width: 90px;
  height: 90px;
  background-color: #44AF35;
  border-radius: 50%;
  font-size: 44px;
  text-align: center;
  line-height: 90px;
  margin-right: 15px;
}
.banner-num .desc {
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
  -moz-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}
.banner-num .t {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  display: -moz-flex;
  margin-bottom: 5px;
}
.banner-num .num {
  line-height: 1;
  font-family: "DINPro-B";
}
.banner-num .name {
  padding-left: 10px;
}
.ibox-about {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  display: -moz-flex;
  -webkit-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
}
.ibox-aboutImg {
  width: 45%;
}
.ibox-aboutImg img {
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.ibox-aboutDesc {
  background-position: center center;
  background-repeat: no-repeat;
  -o-background-size: cover;
  background-size: cover;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  display: -moz-flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 55%;
}
.ibox-about-txt {
  width: 60%;
  margin: 0 auto;
  padding-top: 80px;
}
.ibox-about-txt .c {
  margin: 50px 0;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}
.ibox-t1,
.ibox-t2 {
  text-transform: uppercase;
  font-family: "DINPro-B";
  color: #222222;
}
.ibox-t1 {
  line-height: 1;
}
.ibox-t2 {
  line-height: 1;
}
.ibox-t3 {
  color: #222222;
  line-height: 1.5;
  margin-top: 8px;
}
.more-btn {
  position: relative;
  overflow: hidden;
  display: block;
  width: 10.0208vw;
}
.more-btn .ico {
  color: #EBF5ED;
  font-size: 13.0208vw;
  line-height: 1;
  display: block;
  width: 100%;
}
.more-btn .txt {
  position: absolute;
  left: 20%;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  color: #0B308E;
}
.more-btn:hover .ico {
  -webkit-animation: menu_line_right 1s cubic-bezier(0.645, 0.045, 0.355, 1) 0s 1;
  -moz-animation: menu_line_right 1s cubic-bezier(0.645, 0.045, 0.355, 1) 0s 1;
  -o-animation: menu_line_right 1s cubic-bezier(0.645, 0.045, 0.355, 1) 0s 1;
  animation: menu_line_right 1s cubic-bezier(0.645, 0.045, 0.355, 1) 0s 1;
}
@-webkit-keyframes menu_line_right {
  0% {
    -webkit-transform-origin: right;
    transform-origin: right;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  25% {
    -webkit-transform-origin: right;
    transform-origin: right;
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
  }
  26% {
    -webkit-transform-origin: left;
    transform-origin: left;
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
  50% {
    -webkit-transform-origin: left;
    transform-origin: left;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@-moz-keyframes menu_line_right {
  0% {
    -moz-transform-origin: right;
    transform-origin: right;
    -moz-transform: translateX(0);
    transform: translateX(0);
  }
  25% {
    -moz-transform-origin: right;
    transform-origin: right;
    -moz-transform: translateX(100%);
    transform: translateX(100%);
  }
  26% {
    -moz-transform-origin: left;
    transform-origin: left;
    -moz-transform: translateX(-100%);
    transform: translateX(-100%);
  }
  50% {
    -moz-transform-origin: left;
    transform-origin: left;
    -moz-transform: translateX(0);
    transform: translateX(0);
  }
}
@-o-keyframes menu_line_right {
  0% {
    -o-transform-origin: right;
    transform-origin: right;
    -o-transform: translateX(0);
    transform: translateX(0);
  }
  25% {
    -o-transform-origin: right;
    transform-origin: right;
    -o-transform: translateX(100%);
    transform: translateX(100%);
  }
  26% {
    -o-transform-origin: left;
    transform-origin: left;
    -o-transform: translateX(-100%);
    transform: translateX(-100%);
  }
  50% {
    -o-transform-origin: left;
    transform-origin: left;
    -o-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes menu_line_right {
  0% {
    -webkit-transform-origin: right;
    -moz-transform-origin: right;
    -o-transform-origin: right;
    transform-origin: right;
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0);
  }
  25% {
    -webkit-transform-origin: right;
    -moz-transform-origin: right;
    -o-transform-origin: right;
    transform-origin: right;
    -webkit-transform: translateX(100%);
    -moz-transform: translateX(100%);
    -o-transform: translateX(100%);
    transform: translateX(100%);
  }
  26% {
    -webkit-transform-origin: left;
    -moz-transform-origin: left;
    -o-transform-origin: left;
    transform-origin: left;
    -webkit-transform: translateX(-100%);
    -moz-transform: translateX(-100%);
    -o-transform: translateX(-100%);
    transform: translateX(-100%);
  }
  50% {
    -webkit-transform-origin: left;
    -moz-transform-origin: left;
    -o-transform-origin: left;
    transform-origin: left;
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0);
  }
}
.ibox-protitle {
  position: absolute;
  left: 4%;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 10;
  color: #fff;
  transition: 0.55s cubic-bezier(0.09, 0.34, 0.63, 1);
  -webkit-transition: 0.55s cubic-bezier(0.09, 0.34, 0.63, 1);
}
.ibox-protitle.act {
  top: 20%;
  opacity: 0;
  visibility: hidden;
}
.ibox-titlebai .ibox-t1,
.ibox-titlebai .ibox-t2,
.ibox-titlebai .ibox-t3 {
  color: #fff;
}
.ibox-probg {
  background-position: center center;
  background-repeat: no-repeat;
  -o-background-size: cover;
  background-size: cover;
}
.ibox-pro {
  position: relative;
  width: 100%;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  -o-background-size: cover;
  background-size: cover;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  will-change: width;
  overflow: hidden;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -moz-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}
.ibox-pro .item {
  width: 33.33%;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  -o-background-size: cover;
  background-size: cover;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -o-transition: 0.65s cubic-bezier(0.33, 1, 0.68, 1);
  -moz-transition: 0.65s cubic-bezier(0.33, 1, 0.68, 1);
  transition: 0.65s cubic-bezier(0.33, 1, 0.68, 1);
  -webkit-transition: 0.65s cubic-bezier(0.33, 1, 0.68, 1);
}
.ibox-pro .item.wf-w {
  width: 63.34%;
}
.ibox-pro .item.sx-w {
  width: 18.3333%;
}
.ibox-pro .item.wf-w .ibox-pro-dt {
  display: none;
  opacity: 0;
}
.ibox-pro .item.wf-w .ibox-pro-dd {
  width: 100%;
}
.ibox-pro .item.active .ibox-pro-dd .desc {
  -moz-transition-delay: 0.75s;
  -o-transition-delay: 0.75s;
  transition-delay: 0.75s;
  -webkit-transition-delay: 0.75s;
  opacity: 1;
  -moz-transform: inherit;
  -ms-transform: inherit;
  -o-transform: inherit;
  transform: inherit;
  -webkit-transform: inherit;
}
.ibox-pro-dt {
  background-color: rgba(0, 0, 0, 0.2);
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-right: 1px;
  position: relative;
  transition: 0.35s cubic-bezier(0.09, 0.34, 0.63, 1);
  -webkit-transition: 0.35s cubic-bezier(0.09, 0.34, 0.63, 1);
}
.ibox-pro-dt .tico {
  font-size: 34px;
  width: 70px;
  height: 70px;
  display: block;
  margin: 0 auto;
  border-radius: 50%;
  background-color: #0B308E;
  text-align: center;
  line-height: 70px;
  position: relative;
}
.ibox-pro-dt .tico::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 150%;
  height: 150%;
  border-radius: 50%;
  background-color: #0B308E;
  opacity: 0.15;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.ibox-pro-dt .title {
  display: block;
  margin: 120% auto 100%;
  line-height: 1.4;
  text-align: center;
}
.ibox-pro-dt .more {
  text-align: center;
  font-family: "DINPro-B";
}
.ibox-pro-dd {
  position: relative;
  width: 0%;
  overflow: hidden;
}
.ibox-pro-dd::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: -moz-linear-gradient(left, #16485D, rgba(78, 121, 140, 0));
  background: -webkit-linear-gradient(left, #16485D, rgba(78, 121, 140, 0));
  background: -o-linear-gradient(left, #16485D, rgba(78, 121, 140, 0));
  background: linear-gradient(left, #16485D, rgba(78, 121, 140, 0));
}
.ibox-pro-dd .desc {
  position: absolute;
  bottom: 15%;
  left: 6.5%;
  width: 52%;
  display: block;
  transition: 0.55s cubic-bezier(0.09, 0.34, 0.63, 1);
  -webkit-transition: 0.55s cubic-bezier(0.09, 0.34, 0.63, 1);
  opacity: 0;
  -moz-transform: translateY(-36px);
  -ms-transform: translateY(-36px);
  -o-transform: translateY(-36px);
  transform: translateY(-36px);
  -webkit-transform: translateY(-36px);
}
.ibox-pro-dd .tico {
  line-height: 1;
  display: block;
  margin-bottom: 45px;
}
.ibox-pro-dd .title {
  margin-bottom: 25px;
}
.ibox-pro-dd .c {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  margin-bottom: 45px;
}
.btn-more2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: #fff;
}
.btn-more2 .ico {
  margin-left: 18px;
  font-size: 24px;
  position: relative;
  overflow: hidden;
}
.btn-more2 .ico i {
  display: block;
}
.btn-more2:hover {
  color: #44AF35;
}
.btn-more2:hover .ico i {
  -webkit-animation: menu_line_right 1s cubic-bezier(0.645, 0.045, 0.355, 1) 0s 1;
  -moz-animation: menu_line_right 1s cubic-bezier(0.645, 0.045, 0.355, 1) 0s 1;
  -o-animation: menu_line_right 1s cubic-bezier(0.645, 0.045, 0.355, 1) 0s 1;
  animation: menu_line_right 1s cubic-bezier(0.645, 0.045, 0.355, 1) 0s 1;
}
.ibox-new .ibox-title {
  position: absolute;
  left: 4%;
  top: 120px;
}
.ibox-new .more-btn {
  position: absolute;
  left: 4%;
  bottom: 10%;
}
.news-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -moz-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  margin-left: -3%;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.news-list li {
  width: 30.33%;
  margin-left: 3%;
  margin-bottom: 3.5%;
  position: relative;
  height: 100%;
  transition: 0.3s cubic-bezier(0.09, 0.34, 0.63, 1);
  -webkit-transition: 0.3s cubic-bezier(0.09, 0.34, 0.63, 1);
}
.news-list .desc {
  position: relative;
  background-color: #fff;
  -webkit-box-shadow: 0 10px 30px rgba(11, 48, 142, 0.08);
  box-shadow: 0 10px 30px rgba(11, 48, 142, 0.08);
  padding: 70px 8% 90px;
  transition: 0.3s cubic-bezier(0.09, 0.34, 0.63, 1);
  -webkit-transition: 0.3s cubic-bezier(0.09, 0.34, 0.63, 1);
}
.news-list .timeBox {
  font-family: "DINPro-M";
  color: #666666;
  margin-bottom: 25px;
}
.news-list .timeBox .day {
  display: block;
  line-height: 0.9;
}
.news-list .timeBox .year {
  padding-left: 5px;
}
.news-list .title {
  font-weight: 500;
  color: #222222;
  line-height: 1.5;
  margin-bottom: 25px;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  font-size: 18px;
  height: 54px;
  overflow: hidden;
}
.news-list .c {
  margin-bottom: 35px;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  height: 75px;
  overflow: hidden;
}
.news-list .img {
  background-position: center center;
  -o-background-size: cover;
  background-size: cover;
  background-repeat: no-repeat;
  transition: 0.3s cubic-bezier(0.09, 0.34, 0.63, 1);
  -webkit-transition: 0.3s cubic-bezier(0.09, 0.34, 0.63, 1);
  margin-bottom: 35px;
}
.news-list .more {
  font-size: 15px;
}
.ibox-newslist {
  position: absolute;
  right: 4%;
  bottom: 8%;
  width: 74.5%;
  margin-left: 0;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
  -moz-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}
.ibox-contact-en {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  display: -moz-flex;
  -webkit-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.ibox-contact-en .line {
  width: 100%;
  height: 3px;
  background-color: #0B308E;
}
.ibox-contact {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  display: -moz-flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.ibox-contact-box {
  width: 45%;
  margin-left: 51%;
}
.ibox-contact-box .ibox-title {
  margin-bottom: 100px;
}
.ibox-contact-list {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  display: -moz-flex;
  margin-left: -4%;
}
.ibox-contact-list li {
  position: relative;
  width: 29.33%;
  margin-left: 4%;
  background-color: rgba(255, 255, 255, 0.2);
  color: #fff;
  transition: 0.3s cubic-bezier(0.09, 0.34, 0.63, 1);
  -webkit-transition: 0.3s cubic-bezier(0.09, 0.34, 0.63, 1);
}
.ibox-contact-list li:hover {
  color: #0B308E;
}
.ibox-contact-list li:hover .i1 {
  -webkit-transform: scale(1.4);
  -moz-transform: scale(1.4);
  -ms-transform: scale(1.4);
  -o-transform: scale(1.4);
  transform: scale(1.4);
  opacity: 0;
}
.ibox-contact-list li:hover .i2 {
  opacity: 1;
  -webkit-transform: translate(-50%, -50%) scale(1);
  -moz-transform: translate(-50%, -50%) scale(1);
  -ms-transform: translate(-50%, -50%) scale(1);
  -o-transform: translate(-50%, -50%) scale(1);
  transform: translate(-50%, -50%) scale(1);
}
.ibox-contact-list .desc {
  padding: 50px 5%;
  text-align: center;
}
.ibox-contact-list .ico {
  font-size: 52px;
  line-height: 1;
  margin-bottom: 25px;
  position: relative;
}
.ibox-contact-list .ico .i1 {
  position: relative;
  display: block;
  transition: 0.4s cubic-bezier(0.09, 0.34, 0.63, 1);
  -webkit-transition: 0.4s cubic-bezier(0.09, 0.34, 0.63, 1);
}
.ibox-contact-list .ico .i2 {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%) scale(0);
  -moz-transform: translate(-50%, -50%) scale(0);
  -ms-transform: translate(-50%, -50%) scale(0);
  -o-transform: translate(-50%, -50%) scale(0);
  transform: translate(-50%, -50%) scale(0);
  opacity: 0;
  color: #0B308E;
  transition: 0.4s cubic-bezier(0.09, 0.34, 0.63, 1);
  -webkit-transition: 0.4s cubic-bezier(0.09, 0.34, 0.63, 1);
}
.index-foot,
.foot {
  background-color: #0B308E;
}
.foot-top {
  background-color: #333333;
  padding: 80px 4% 100px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  display: -moz-flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  color: #FFFFFF;
}
.foot-top a {
  color: #C2C2C2;
}
.foot-top a:hover {
  color: #FFFFFF;
}
.foot-top .foot-right {
  margin-left: 20px;
}
.foot-nav {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  display: -moz-flex;
  margin-bottom: 50px;
}
.foot-nav li {
  margin-right: 60px;
  font-weight: 500;
}
.foot-nav li:last-child {
  margin-right: 0;
}
.foot-desc p {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  display: -moz-flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 25px;
  line-height: 1.2;
}
.foot-desc p:last-child {
  margin-bottom: 0;
}
.foot-desc p .c {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -moz-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
.foot-desc .ico {
  font-size: 24px;
  margin-right: 10px;
  color: #ADADAD;
}
.foot-desc b {
  margin-right: 15px;
}
.ermbox {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  display: -moz-flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: #ADADAD;
  margin-bottom: 50px;
}
.ermbox .img {
  width: 115px;
}
.ermbox .txt {
  width: 14px;
  line-height: 1.2;
  margin-left: 10px;
}
.link-select-box {
  position: relative;
  width: 216px;
  height: 34px;
  border: 1px solid #717171;
  z-index: 10;
  transition: 0.3s;
  -webkit-transition: 0.3s;
}
.link-select-box .mt {
  padding: 0 46px 0 15px;
  position: relative;
  cursor: pointer;
  line-height: 34px;
  color: #fff;
}
.link-select-box .mt .aw {
  position: absolute;
  top: 0;
  width: 34px;
  height: 34px;
  line-height: 34px;
  right: 0;
  color: #ADADAD;
  text-align: center;
  transition: 0.3s;
  -webkit-transition: 0.3s;
  font-size: 12px;
}
.link-select-box .mc {
  position: absolute;
  left: -1px;
  right: -1px;
  bottom: 100%;
  z-index: 100;
  display: none;
  max-height: 168px;
  overflow-y: auto;
}
.link-select-box ul {
  background-color: #FFFFFF;
  overflow: hidden;
  -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.16);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.16);
}
.link-select-box a {
  display: block;
  height: 32px;
  line-height: 32px;
  padding: 0 5%;
  color: #333333;
  font-size: 12px;
  border-bottom: 1px solid #f5f5f5;
}
.link-select-box a:hover {
  background-color: #f5f5f5;
  color: #0B308E;
}
.foot-bot {
  background-color: #0B308E;
  padding: 20px 4%;
  color: #FFFFFF;
  color: rgba(255, 255, 255, 0.6);
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  display: -moz-flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.foot-bot a {
  color: #FFFFFF;
  color: rgba(255, 255, 255, 0.6);
}
.foot-bot a:hover {
  color: #fff;
}
.foot-bot .c {
  margin-right: 20px;
}
.pageH {
  height: 80px;
}
.pbanner {
  position: relative;
  overflow: hidden;
  background-color: #000;
}
.pbanner .load-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  display: block;
}
.pbanner .pimg {
  position: relative;
}
.pbanner .pimg::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 40%;
  height: 100%;
  background: -moz-linear-gradient(left, #16485D, rgba(78, 121, 140, 0));
  background: -webkit-linear-gradient(left, #16485D, rgba(78, 121, 140, 0));
  background: -o-linear-gradient(left, #16485D, rgba(78, 121, 140, 0));
  background: -ms-linear-gradient(left, #16485D, rgba(78, 121, 140, 0));
  background: linear-gradient(left, #16485D, rgba(78, 121, 140, 0));
}
.act .load-img {
  -webkit-animation: nextSlide 2s cubic-bezier(0.25, 0.46, 0.45, 0.94) both 0.3s;
  -moz-animation: nextSlide 2s cubic-bezier(0.25, 0.46, 0.45, 0.94) both 0.3s;
  -o-animation: nextSlide 2s cubic-bezier(0.25, 0.46, 0.45, 0.94) both 0.3s;
  animation: nextSlide 2s cubic-bezier(0.25, 0.46, 0.45, 0.94) both 0.3s;
}
.pbanenr-desc {
  position: absolute;
  left: 50%;
  top: 50%;
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  color: #fff;
}
.pbanenr-desc .t1 {
  line-height: 1.2;
  margin-bottom: 35px;
}
.pbanenr-desc .t2 {
  position: relative;
}
.pbanenr-desc .t2 .ico {
  margin-left: 10px;
  position: absolute;
  line-height: 1;
  top: -2px;
  -webkit-animation: mouse-dot 1.5s cubic-bezier(0.23, 1, 0.32, 1) infinite;
  -moz-animation: mouse-dot 1.5s cubic-bezier(0.23, 1, 0.32, 1) infinite;
  -o-animation: mouse-dot 1.5s cubic-bezier(0.23, 1, 0.32, 1) infinite;
  animation: mouse-dot 1.5s cubic-bezier(0.23, 1, 0.32, 1) infinite;
}
.page-nav-box {
  margin-top: -57px;
  position: relative;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
}
.page-nav-btn a:link,
.page-nav-btn a:visited {
  color: #fff;
}
.page-nav-btn a:active,
.page-nav-btn a:hover {
  color: #fff;
}
.page-nav-btn ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
}
.page-nav-btn li {
  margin-right: 40px;
}
.page-nav-btn li:last-child {
  margin-right: 0;
}
.page-nav-btn a {
  position: relative;
  height: 56px;
  line-height: 56px;
  padding: 0 32px;
  display: block;
  z-index: 1;
  overflow: hidden;
}
.page-nav-btn a::before {
  content: "";
  width: 100%;
  height: 100%;
  background-color: #0B308E;
  position: absolute;
  left: 0;
  bottom: 0;
  -moz-transform-origin: 100%;
  -ms-transform-origin: 100%;
  -o-transform-origin: 100%;
  transform-origin: 100%;
  -webkit-transform-origin: 100%;
  -webkit-transition: -webkit-transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transition: -webkit-transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  -o-transition: -o-transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  -moz-transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), -moz-transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), -moz-transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), -o-transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  -moz-transform: scaleX(0);
  -ms-transform: scaleX(0);
  -o-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transform: scaleX(0);
  visibility: hidden\9;
  z-index: -1;
}
.page-nav-btn a.active:before {
  -ms-transform: scaleX(1);
  -o-transform: scaleX(1);
  transform: scaleX(1);
  -webkit-transform: scaleX(1);
  -moz-transform: scaleX(1);
  -moz-transform-origin: 0;
  -ms-transform-origin: 0;
  -o-transform-origin: 0;
  transform-origin: 0;
  -webkit-transform-origin: 0;
  visibility: visible\9;
}
.page-nav-btn a::after {
  content: "\e909";
  font-family: "iconfont" !important;
  position: absolute;
  font-size: 80px;
  line-height: 1;
  display: block;
  left: 50%;
  top: 50%;
  -moz-transform: translate(-50%, -50%) scale(0);
  -ms-transform: translate(-50%, -50%) scale(0);
  -o-transform: translate(-50%, -50%) scale(0);
  transform: translate(-50%, -50%) scale(0);
  -webkit-transform: translate(-50%, -50%) scale(0);
  opacity: 0;
  color: #fff;
  color: rgba(255, 255, 255, 0.1);
  transition: 0.4s cubic-bezier(0.09, 0.34, 0.63, 1);
  -webkit-transition: 0.4s cubic-bezier(0.09, 0.34, 0.63, 1);
}
.page-nav-btn a.active::after {
  opacity: 1;
  -moz-transform: translate(-50%, -50%) scale(1);
  -ms-transform: translate(-50%, -50%) scale(1);
  -o-transform: translate(-50%, -50%) scale(1);
  transform: translate(-50%, -50%) scale(1);
  -webkit-transform: translate(-50%, -50%) scale(1);
}
.page-padding {
  padding: 90px 0;
}
.pnews-list {
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -moz-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}
.pnews-list li {
  margin-bottom: 0;
}
.pnews-list .desc {
  margin-bottom: 12%;
}
.paging {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  display: -moz-flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-size: 16px;
  padding: 50px 0;
  font-family: "DINPro-B";
}
.paging a,
.paging span {
  position: relative;
  height: 36px;
  line-height: 36px;
  text-align: center;
  border-radius: 50%;
  color: #666666;
  margin: 0 12px;
}
.paging a:hover,
.paging span:hover,
.paging a.active,
.paging span.active {
  color: #44AF35;
}
.paging .btn-item {
  color: #0B308E;
}
.paging .active::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background-color: #44AF35;
}
.mnews-list {
  display: none;
}
.hynews-list li {
  position: relative;
  padding: 45px 0;
}
.hynews-list li:before {
  content: "";
  width: 100%;
  height: 0;
  background: #F8F8F8;
  position: absolute;
  left: 0;
  bottom: 0;
  transition: 0.4s;
  z-index: -1;
}
.hynews-list li:hover:before,
.hynews-list li.active:before {
  height: 100%;
  bottom: auto;
  top: 0;
}
.hynews-list .w1400 {
  position: relative;
}
.hynews-list .w1400::before {
  content: "";
  position: absolute;
  height: 100%;
  background-color: #DFDFDF;
  width: 4px;
  z-index: 1;
  transition: 0.3s;
  -webkit-transition: 0.3s;
}
.hynews-list .desc {
  width: 70%;
  margin-left: 5%;
}
.hynews-list .title {
  font-size: 18px;
  color: #222222;
  font-weight: 500;
  margin-bottom: 20px;
  line-height: 1.5;
  transition: 0.3s;
  -webkit-transition: 0.3s;
}
.hynews-list .c {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}
.hynews-list .timeBox {
  background-color: #F2F2F2;
  width: 85px;
  text-align: center;
  position: absolute;
  right: 0;
  padding: 5px 0;
  font-family: "DINPro-R";
  color: #999999;
  transition: 0.3s;
  -webkit-transition: 0.3s;
}
.hynews-list .timeBox .day {
  display: block;
  line-height: 1.4;
}
.hynews-list .timeBox .year {
  border-top: 1px solid #999999;
  padding-top: 4px;
  margin-top: 4px;
}
.c222 {
  color: #222222;
}
.cblue {
  color: #0B308E;
}
.marketing-list {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  display: -moz-flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-left: -1%;
  margin-top: 75px;
}
.marketing-list li {
  width: 15.6666%;
  margin-left: 1%;
  margin-top: 10px;
}
.marketing-list a {
  display: block;
  border: 1px solid #DEDEDE;
  height: 80px;
  position: relative;
}
.marketing-list a img {
  max-width: 80%;
  max-height: 80%;
  -o-object-fit: cover;
  object-fit: cover;
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}
.marketing-list a:hover {
  -webkit-box-shadow: 0 3px 10px rgba(0, 0, 0, 0.16);
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.16);
}
.page-padding2 {
  padding-top: 94px;
}
.bgf8 {
  background-color: #F8F8F8;
}
.info-page {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  display: -moz-flex;
}
.info-sider {
  width: 380px;
  margin-left: 10px;
}
.info-sider-list {
  background-color: #fff;
  padding: 30px;
  position: sticky;
  position: -webkit-sticky;
  top: 120px;
}
.info-sider-t {
  font-size: 18px;
  font-weight: bold;
  color: #222222;
  margin-bottom: 25px;
  line-height: 1.5;
}
.info-sider-c a {
  color: #666666;
  display: block;
  position: relative;
  padding-left: 16px;
  line-height: 25px;
  height: 25px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  margin-bottom: 20px;
}
.info-sider-c a::before,
.info-sider-c a::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 4px;
  height: 100%;
  background-color: #DEDEDE;
}
.info-sider-c a::after {
  transition: 0.3s;
  -webkit-transition: 0.3s;
  height: 0;
  background-color: #0B308E;
}
.info-sider-c a:hover {
  color: #0B308E;
}
.info-sider-c a:hover::after {
  height: 100%;
}
.info-pageC {
  background-color: #fff;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -moz-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  padding-bottom: 90px;
}
.info-pageC .pageC {
  width: 88%;
  margin: 0 auto;
  font-size: 15px;
}
.info-t {
  font-weight: normal;
  color: #333333;
  border-bottom: 1px solid #EFEFEF;
  padding: 80px 6% 45px;
  line-height: 1.4;
  margin-bottom: 45px;
}
.pager {
  border-top: 1px solid #EAEAEA;
  padding: 30px 5% 0;
  margin-top: 45px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  display: -moz-flex;
  -webkit-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.pager .btn {
  color: #333333;
}
.pager .btn i {
  color: #000;
}
.pager .btn:hover {
  color: #44AF35;
}
.pager .btn:hover i {
  color: #44AF35;
}
.technology-list li {
  position: relative;
}
.technology-list li:before {
  content: "";
  width: 100%;
  height: 0;
  background: #F8F8F8;
  position: absolute;
  left: 0;
  bottom: 0;
  transition: 0.4s;
  z-index: -1;
}
.technology-list li:hover:before,
.technology-list li.active:before {
  height: 100%;
  bottom: auto;
  top: 0;
}
.technology-list .w1400 {
  border-bottom: 1px solid #EFEFEF;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  display: -moz-flex;
  padding: 50px 0;
}
.technology-list .imgBox {
  width: 480px;
  margin-right: 5%;
  position: relative;
}
.technology-list .imgBox img {
  position: relative;
  z-index: 1;
  transition: 0.3s;
  -webkit-transition: 0.3s;
}
.technology-list .imgBox::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #0B308E;
  transition: 0.3s;
  -webkit-transition: 0.3s;
}
.technology-list .desc {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -moz-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
.technology-list .title {
  font-weight: 500;
  color: #333333;
  line-height: 1.5;
  padding: 15px 0 20px;
  margin-bottom: 30px;
  position: relative;
  transition: 0.3s;
  -webkit-transition: 0.3s;
}
.technology-list .title::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 42px;
  height: 6px;
  background-color: #CCCCCC;
  transition: 0.3s;
  -webkit-transition: 0.3s;
}
.technology-list .c {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  transition: 0.3s;
  -webkit-transition: 0.3s;
  color: #666666;
}
.technology-list .linkA {
  z-index: 2;
}
.pipeline-page {
  color: #333333;
}
.pipeline-page .title {
  font-weight: 500;
  line-height: 1.5;
}
.mb50 {
  margin-bottom: 50px;
}
.pipeline-type {
  text-align: center;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  display: -moz-flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.pipeline-type li {
  position: relative;
  width: 185px;
  height: 185px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  display: -moz-flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-radius: 50%;
  margin: 0 2%;
  border: 1px solid #C9C9C9;
  transition: 0.3s;
  -webkit-transition: 0.3s;
  cursor: pointer;
}
.pipeline-type li:hover {
  color: #0B308E;
}
.pipeline-type li:hover .ico {
  background-image: -moz-linear-gradient(#0B308E, #44AF35);
  background-image: -webkit-linear-gradient(#0B308E, #44AF35);
  background-image: -webkit-gradient(#0B308E, #44AF35);
  background-image: -o-linear-gradient(#0B308E, #44AF35);
  background-image: -ms-linear-gradient(#0B308E, #44AF35);
  background-image: linear-gradient(#0B308E, #44AF35);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.pipeline-type .item {
  position: relative;
  z-index: 2;
}
.pipeline-type .linkA {
  z-index: 3;
}
.pipeline-type .ico {
  font-size: 50px;
  line-height: 1.4;
  color: #999;
  transition: 0.3s;
  -webkit-transition: 0.3s;
}
.pipeline-type .active {
  background-color: #fff;
  -webkit-filter: drop-shadow(0 0 20px #ccc);
  filter: drop-shadow(0 0 20px #ccc);
  border-color: transparent;
  color: #0B308E;
}
.pipeline-type .active:after {
  content: "";
  position: absolute;
  left: 50%;
  margin-left: -40px;
  bottom: -5px;
  width: 80px;
  height: 80px;
  background-color: #fff;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}
.pipeline-type .active .ico {
  background-image: -moz-linear-gradient(#0B308E, #44AF35);
  background-image: -webkit-linear-gradient(#0B308E, #44AF35);
  background-image: -webkit-gradient(#0B308E, #44AF35);
  background-image: -o-linear-gradient(#0B308E, #44AF35);
  background-image: linear-gradient(#0B308E, #44AF35);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.icon {
  width: 1em;
  height: 1em;
  vertical-align: -0.15em;
  fill: currentColor;
  overflow: hidden;
}
.pipeline-typelist li {
  border-top: 1px solid #ECEDED;
  padding: 60px 0;
  position: relative;
  z-index: 1;
}
.pipeline-typelist li:before {
  content: "";
  width: 100%;
  height: 0;
  background: #ffffff;
  position: absolute;
  left: 0;
  bottom: 0;
  transition: 0.4s;
  z-index: -1;
}
.pipeline-typelist li:hover:before,
.pipeline-typelist li.active:before {
  height: 100%;
  bottom: auto;
  top: 0;
}
.pipeline-typelist .title {
  font-size: 24px;
  line-height: 1.5;
  margin-bottom: 15px;
  font-weight: normal;
  transition: 0.3s;
  -webkit-transition: 0.3s;
}
.pipeline-typelist .type {
  color: #0B308E;
  font-size: 16px;
  margin-bottom: 30px;
}
.pipeline-typelist .c {
  font-size: 15px;
  transition: 0.3s;
  -webkit-transition: 0.3s;
  text-align: justify;
}
.pipeline-typelist li:hover .title {
  font-weight: bold;
  color: #0B308E;
}
.pipeline-typelist li:hover .c {
  color: #0B308E;
}
.pipeline-jt {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  display: -moz-flex;
  border-left: 1px solid #707070;
  border-right: 1px solid #707070;
  padding-top: 20px;
  font-size: 18px;
  font-weight: 500;
}
.pipeline-jt .cover1 {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -moz-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  text-align: center;
}
.pipeline-jt .cover2 {
  -webkit-box-flex: 6;
  -webkit-flex: 6;
  -moz-box-flex: 6;
  -ms-flex: 6;
  flex: 6;
}
.pipeline-jt .txt,
.pipeline-jt .jd {
  line-height: 1.2;
  margin-bottom: 20px;
}
.pipeline-data {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  display: -moz-flex;
}
.pipeline-data li {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  -webkit-flex: 1;
  -moz-box-flex: 1;
  flex: 1;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  border-left: 1px solid #707070;
  padding-bottom: 20px;
  background: url(../img/xian.png) repeat-x scroll left bottom;
}
.pipeline-jd li {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  display: -moz-flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 40px;
}
.pipeline-jd .cover1 {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -moz-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  text-align: left;
  font-size: 16px;
}
.pipeline-jd .cover2 {
  -webkit-box-flex: 6;
  -webkit-flex: 6;
  -moz-box-flex: 6;
  -ms-flex: 6;
  flex: 6;
}
.pipeline-jd .jd {
  display: none;
}
.pipeline-jd .line {
  width: 100%;
  height: 14px;
  background-color: #ECF5F9;
  border-radius: 7px;
  position: relative;
}
.pipeline-jd .act {
  position: absolute;
  left: 0;
  border-radius: 7px;
  height: 100%;
  background: -moz-linear-gradient(left, #44AF35, #0B308E);
  background: -webkit-linear-gradient(left, #44AF35, #0B308E);
  background: -webkit-gradient(left, #44AF35, #0B308E);
  background: -o-linear-gradient(left, #44AF35, #0B308E);
  background: -ms-linear-gradient(left, #44AF35, #0B308E);
  background: linear-gradient(left, #44AF35, #0B308E);
}
.throughput-box {
  margin-left: 13.54vw;
  overflow: hidden;
}
.throughput-page {
  width: 48.54vw;
  color: #333333;
}
.throughput-page .title {
  font-weight: 500;
  line-height: 1.5;
  margin-bottom: 40px;
}
.throughput-demo {
  position: relative;
  width: 97vw;
  margin-top: 80px;
  overflow: hidden;
}
.throughput-demo::after {
  position: absolute;
  content: "";
  width: 1px;
  height: 100%;
  background-color: #EFEFEF;
  left: 57%;
  top: 0;
}
.throughput-demo .swiper-slide-next .img {
  -moz-transform: translateX(5%) scale(0.54);
  -ms-transform: translateX(5%) scale(0.54);
  -o-transform: translateX(5%) scale(0.54);
  transform: translateX(5%) scale(0.54);
  -webkit-transform: translateX(5%) scale(0.54);
}
.throughput-demo .swiper-slide-active .img {
  opacity: 1;
  filter: alpha(opacity=100);
}
.throughput-demo .swiper-slide-active .desc {
  opacity: 1;
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
  transform: translateY(0);
  -webkit-transform: translateY(0);
  -moz-transition-delay: 0.4s;
  -o-transition-delay: 0.4s;
  transition-delay: 0.4s;
  -webkit-transition-delay: 0.4s;
}
.throughput-demo .img {
  position: relative;
  opacity: 0.15;
  filter: alpha(opacity=15);
  -moz-transform-origin: 50% 80%;
  -ms-transform-origin: 50% 80%;
  -o-transform-origin: 50% 80%;
  transform-origin: 50% 80%;
  -webkit-transform-origin: 50% 80%;
  transition: 0.6s;
  -webkit-transition: 0.6s;
  color: #fff;
}
.throughput-demo .img::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 30%;
  background: -webkit-linear-gradient(rgba(0, 0, 0, 0), #000000);
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), to(#000000));
  background: -moz-linear-gradient(rgba(0, 0, 0, 0), #000000);
  background: -o-linear-gradient(rgba(0, 0, 0, 0), #000000);
  background: linear-gradient(rgba(0, 0, 0, 0), #000000);
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  -moz-transition: 0.3s;
  transition: 0.3s;
  -webkit-transform: 0.3s;
}
.throughput-demo .img img {
  width: 100%;
  display: block;
}
.throughput-demo .desc {
  position: absolute;
  left: 5%;
  right: 5%;
  bottom: 4%;
  text-align: center;
  opacity: 0;
  -webkit-transform: translateY(100%);
  -moz-transform: translateY(100%);
  -ms-transform: translateY(100%);
  -o-transform: translateY(100%);
  transform: translateY(100%);
  transition: 0.3s;
  -webkit-transition: 0.3s;
}
.throughput-demo .txt {
  font-size: 18px;
  line-height: 1.5;
  font-weight: 500;
  margin-bottom: 5px;
}
.throughput-demo .c {
  font-size: 14px;
}
.throughput-demo .swiper-btn {
  position: absolute;
  left: 64%;
  top: 10%;
  z-index: 400;
}
.throughput-demo .swiper-btn .swiper-arrow {
  float: left;
  width: 66px;
  height: 66px;
  line-height: 66px;
  background-color: #F8F8F8;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.throughput-demo .swiper-btn .swiper-arrow i {
  margin: 0;
  font-size: 20px;
  color: #A7A7A7;
}
.throughput-demo .swiper-btn .swiper-arrow:hover {
  background-color: #0B308E;
}
.throughput-demo .swiper-btn .swiper-arrow:hover i {
  color: #fff;
}
.listed-list {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  display: -moz-flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-left: -2%;
}
.listed-list li {
  background-color: #F6F6F6;
  width: 48%;
  margin-left: 2%;
  margin-bottom: 45px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  display: -moz-flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  transition: 0.3s;
  -webkit-transition: 0.3s;
}
.listed-list li:hover {
  -webkit-box-shadow: 0 8px 20px rgba(0, 0, 0, 0.16);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.16);
}
.listed-list .img {
  width: 41%;
  max-width: 280px;
  height: 100%;
}
.listed-list .img img {
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.listed-list .desc {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -moz-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  padding: 30px;
}
.listed-list .title {
  font-size: 20px;
  color: #333333;
  line-height: 1.5;
  margin-bottom: 10px;
}
.listed-list .c {
  margin-bottom: 20px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.listed-list .down-btn {
  border: 1px solid #CCCCCC;
  width: 120px;
  line-height: 38px;
  text-align: center;
  display: block;
  color: #666666;
}
.listed-list .down-btn:hover {
  border-color: #0B308E;
  background-color: #0B308E;
  color: #fff;
}
.bgfa {
  background-color: #fafafa;
}
.join-box {
  position: relative;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  display: -moz-flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.join-box::before {
  content: "";
  position: absolute;
  width: 1px;
  height: 100%;
  background-color: #E6E6E6;
  left: 234px;
}
.join-page {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -moz-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  margin-left: 75px;
}
.sider-join {
  width: 200px;
}
.sider-join-pos {
  position: -webkit-sticky;
  position: sticky;
  top: 120px;
}
.sider-join-t {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  display: -moz-flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  font-size: 16px;
}
.btn-cell {
  color: #0B308E;
}
.btn-cell:hover {
  color: #44AF35;
}
.sider-join-item {
  border-top: 1px solid #E6E6E6;
  padding: 15px 0;
  margin-top: 8px;
}
.sider-join-item .title {
  color: #333333;
  font-size: 20px;
  line-height: 1.5;
  font-weight: bold;
  margin-bottom: 15px;
}
.sider-join-se li {
  margin-bottom: 8px;
}
.sider-join-se li input {
  margin-right: 14px;
}
.sider-join-se li label {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  display: -moz-flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  cursor: pointer;
  width: 100%;
}
.sider-join-se li label input {
  margin: 0 10px 1px 0;
}
.join-t {
  font-size: 26px;
  color: #333333;
  line-height: 1.5;
  padding: 0 40px;
  margin-bottom: 10px;
}
.join-list li {
  position: relative;
  padding: 30px 40px;
  margin-bottom: 5px;
  transition: 0.3s;
  -webkit-transition: 0.3s;
}
.join-list li:hover {
  background-color: #fff;
  -webkit-box-shadow: 0 0 6px rgba(0, 0, 0, 0.16);
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.16);
}
.join-list .name {
  font-size: 22px;
  line-height: 1.5;
  margin-bottom: 5px;
  color: #333333;
}
.join-list .info {
  color: #333333;
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 20px;
}
.join-list .c {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  color: #999999;
}
.black-join {
  margin-bottom: 45px;
}
.black-join a {
  color: #999999;
}
.black-join a:hover {
  color: #0B308E;
}
.join-name {
  font-size: 26px;
  color: #333333;
  font-weight: normal;
  margin-bottom: 5px;
  line-height: 1.5;
}
.join-type {
  font-size: 16px;
  color: #333333;
  margin-bottom: 45px;
}
.join-pageC {
  margin-bottom: 80px;
}
.join-btn {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  display: -moz-flex;
}
.join-btn a {
  position: relative;
  overflow: hidden;
  display: block;
  width: 202px;
  height: 50px;
  line-height: 50px;
  border-radius: 25px;
  text-align: center;
  color: #666666;
  background-color: #F8F8F8;
  margin-right: 50px;
}
.join-btn a:before {
  content: "";
  position: absolute;
  display: block;
  bottom: auto;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 1;
  transition: opacity 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  background-color: #F8F8F8;
}
.join-btn a::after {
  content: "";
  position: absolute;
  display: block;
  border-radius: 50%;
  bottom: 0;
  left: 50%;
  transform: translateZ(0) translate(-50%, 50%) scale(0);
  transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  will-change: transform;
  pointer-events: none;
  width: 200%;
  height: 200%;
  background-color: #0B308E;
}
.join-btn a:hover:before {
  opacity: 0;
}
.join-btn a:hover:after {
  transform: translateZ(0) translate(-50%, 40%) scale(1);
  -webkit-transform: translateZ(0) translate(-50%, 40%) scale(1);
}
.join-btn a .txt {
  position: relative;
  z-index: 2;
}
.join-btn a:last-child {
  margin-right: 0;
}
.join-btn a:hover {
  color: #fff;
}
.page-title {
  font-weight: 500;
  line-height: 1.5;
  color: #222222;
}
.mb40 {
  margin-bottom: 40px;
}
.mb20 {
  margin-bottom: 20px;
}
.train-box {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  display: -moz-flex;
  color: #fff;
}
.train-list {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  -webkit-flex: 1;
  -moz-box-flex: 1;
  flex: 1;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  display: -moz-flex;
  will-change: width;
}
.train-list .item {
  position: relative;
  width: 33.4%;
  height: 100%;
  background-position: left center;
  -o-background-size: cover;
  background-size: cover;
  overflow: hidden;
  cursor: pointer;
  transition: 0.5s;
  -webkit-transition: 0.5s;
}
.train-list .item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.2);
  transition: 0.3s;
  -webkit-transition: 0.3s;
}
.train-list .desc {
  position: absolute;
  left: 0;
  bottom: 7%;
  width: 84%;
  padding: 0 8%;
  transition: 0.5s;
  -webkit-transition: 0.5s;
}
.train-list .t {
  font-size: 18px;
  line-height: 1.5;
  padding-bottom: 20px;
  position: relative;
}
.train-list .t::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 24px;
  height: 4px;
  background-color: #fff;
}
.train-list .c {
  padding-top: 15px;
  font-size: 15px;
  opacity: 0;
  -moz-transform: translateY(100%);
  -ms-transform: translateY(100%);
  -o-transform: translateY(100%);
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  height: 0;
  overflow: hidden;
  transition: 0.3s;
  -webkit-transition: 0.3s;
}
.train-list .item.wf-w::before {
  background-color: rgba(11, 48, 142, 0.71);
}
.train-list .item.wf-w .desc {
  bottom: auto;
  top: 20%;
  -moz-transition-delay: 0.35s;
  -o-transition-delay: 0.35s;
  transition-delay: 0.35s;
  -webkit-transition-delay: 0.35s;
}
.train-list .item.wf-w .c {
  display: block;
  -moz-transform: inherit;
  -ms-transform: inherit;
  -o-transform: inherit;
  transform: inherit;
  -webkit-transform: inherit;
  height: auto;
  opacity: 1;
  -moz-transition-delay: 0.3s;
  -o-transition-delay: 0.3s;
  transition-delay: 0.3s;
  -webkit-transition-delay: 0.3s;
  line-height: 1.5;
}
.train-list .item.wf-w {
  width: 58%;
}
.train-list .item.sx-w {
  width: 21%;
}
.train-title {
  width: 300px;
  background: -moz-linear-gradient(#0B308E, #44AF35);
  background: -webkit-linear-gradient(#0B308E, #44AF35);
  background: -webkit-gradient(#0B308E, #44AF35);
  background: -o-linear-gradient(#0B308E, #44AF35);
  background: linear-gradient(#0B308E, #44AF35);
  text-align: center;
  padding-bottom: 50px;
}
.train-title dt {
  padding: 35px 0 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.train-title dt .ico {
  font-size: 40px;
  line-height: 1.2;
}
.train-title dd {
  padding: 26px 0;
  position: relative;
}
.train-title dd .num {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  display: block;
  line-height: 0.8;
  opacity: 0.15;
  font-family: "DINPro-B";
}
.style-demo {
  position: relative;
  width: 68%;
  margin: 0 auto;
}
.style-demo .swiper-arrow {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  display: block;
  z-index: 400;
  width: 60px;
  height: 60px;
  line-height: 60px;
  text-align: center;
  font-size: 24px;
  color: #0B308E;
  background-color: #F8F8F8;
}
.style-demo .swiper-arrow:hover {
  color: #ffff;
  background-color: #0B308E;
}
.style-demo .swiper-arrow i {
  margin: 0;
}
.style-demo .swiper-prev {
  left: -10%;
}
.style-demo .swiper-next {
  right: -10%;
}
.style-demo .item {
  -moz-transform: scale(0.86);
  -ms-transform: scale(0.86);
  -o-transform: scale(0.86);
  transform: scale(0.86);
  -webkit-transform: scale(0.86);
  transition: 0.3s cubic-bezier(0.09, 0.34, 0.63, 1);
  -webkit-transition: 0.3s cubic-bezier(0.09, 0.34, 0.63, 1);
}
.style-demo .img {
  position: relative;
}
.style-demo .img::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 30%;
  background: -webkit-linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.72));
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), to(rgba(0, 0, 0, 0.72)));
  background: -moz-linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.72));
  background: -o-linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.72));
  background: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.72));
  transition: 0.3s;
  -webkit-transition: 0.3s;
}
.style-demo .title {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  display: -moz-flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 90%;
  padding: 25px 5%;
  color: #fff;
  transition: 0.3s cubic-bezier(0.09, 0.34, 0.63, 1);
  -webkit-transition: 0.3s cubic-bezier(0.09, 0.34, 0.63, 1);
  opacity: 0;
}
.style-demo .title .t {
  margin-bottom: 0;
}
.style-demo .t {
  font-size: 20px;
  font-weight: normal;
  line-height: 1.5;
  margin-bottom: 8px;
}
.style-demo .time2 {
  margin-bottom: 20px;
}
.style-demo .desc {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 90%;
  padding: 25px 5%;
  color: #fff;
  opacity: 0;
  visibility: hidden;
  -moz-transform: translateY(100%);
  -ms-transform: translateY(100%);
  -o-transform: translateY(100%);
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  overflow: hidden;
  transition: 0.3s cubic-bezier(0.09, 0.34, 0.63, 1);
  -webkit-transition: 0.3s cubic-bezier(0.09, 0.34, 0.63, 1);
}
.style-demo .swiper-slide {
  overflow: hidden;
  position: relative;
}
.style-demo .swiper-slide-active:hover .img::before {
  background: -webkit-linear-gradient(rgba(11, 48, 142, 0), #0b308e);
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(11, 48, 142, 0)), to(#0b308e));
  background: -moz-linear-gradient(rgba(11, 48, 142, 0), #0b308e);
  background: -o-linear-gradient(rgba(11, 48, 142, 0), #0b308e);
  background: linear-gradient(rgba(11, 48, 142, 0), #0b308e);
  height: 50%;
}
.style-demo .swiper-slide-active:hover .title {
  opacity: 0;
  visibility: inherit;
}
.style-demo .swiper-slide-active:hover .desc {
  -moz-transform: inherit;
  -ms-transform: inherit;
  -o-transform: inherit;
  transform: inherit;
  -webkit-transform: inherit;
  opacity: 1;
  visibility: visible;
  -moz-transition-delay: 0.3s;
  -o-transition-delay: 0.3s;
  transition-delay: 0.3s;
  -webkit-transition-delay: 0.3s;
}
.style-demo .swiper-slide-active .item {
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
}
.style-demo .swiper-slide-active .title {
  opacity: 1;
}
.contact-list {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  display: -moz-flex;
  margin-left: -2%;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.contact-list li {
  width: 23%;
  margin-left: 2%;
  position: relative;
  margin-bottom: 20px;
  transition: 0.3s cubic-bezier(0.09, 0.34, 0.63, 1);
  -webkit-transition: 0.3s cubic-bezier(0.09, 0.34, 0.63, 1);
}
.contact-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  border: 1px solid #DEDEDE;
  transition: 0.3s cubic-bezier(0.09, 0.34, 0.63, 1);
  -webkit-transition: 0.3s cubic-bezier(0.09, 0.34, 0.63, 1);
}
.contact-list li:hover {
  -webkit-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
.contact-list li:hover::before {
  border-color: transparent;
}
.contact-list li:hover .title {
  color: #0B308E;
}
.contact-list li:hover .title .ico {
  color: #0B308E;
}
.contact-list .item {
  padding: 25px 8%;
  line-height: 1.5;
}
.contact-list .title {
  font-size: 16px;
  color: #333333;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  display: -moz-flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 20px;
}
.contact-list .title .ico {
  color: #44AF35;
  font-size: 28px;
  margin-right: 5px;
  line-height: 1;
}
.contact-list p {
  margin-bottom: 12px;
}
.contact-list a {
  color: #333333;
}
.contact-list a:hover {
  color: #0B308E;
}
.contact-tab {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  display: -moz-flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-bottom: 1px solid #D4D4D4;
  font-size: 24px;
  font-weight: 400;
  color: #666666;
}
.contact-tab dd {
  margin: 0 10px;
  cursor: pointer;
}
.contact-tab .active {
  color: #0B308E;
}
.contact-tab .active span::before {
  width: 100%;
}
.contact-tab span {
  display: block;
  padding: 0 10px 15px;
  position: relative;
}
.contact-tab span::before {
  content: "";
  position: absolute;
  left: 0;
  width: 0;
  bottom: -1px;
  background-color: #0B308E;
  height: 5px;
  transition: 0.3s cubic-bezier(0.09, 0.34, 0.63, 1);
  -webkit-transition: 0.3s cubic-bezier(0.09, 0.34, 0.63, 1);
}
.bgf9 {
  background-color: #F9F9F9;
}
.contact-page .pageC {
  position: relative;
  display: none;
  -webkit-animation-name: tab;
  -moz-animation-name: tab;
  -o-animation-name: tab;
  animation-name: tab;
  -webkit-animation-direction: normal;
  -moz-animation-direction: normal;
  -o-animation-direction: normal;
  animation-direction: normal;
  -webkit-animation-duration: 0.4s;
  -moz-animation-duration: 0.4s;
  -o-animation-duration: 0.4s;
  animation-duration: 0.4s;
  -webkit-animation-timing-function: ease-in-out;
  -moz-animation-timing-function: ease-in-out;
  -o-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-iteration-count: 1;
  -moz-animation-iteration-count: 1;
  -o-animation-iteration-count: 1;
  animation-iteration-count: 1;
}
.contact-page .pageC.active {
  display: block;
}
@-webkit-keyframes tab {
  from {
    opacity: 0;
    -webkit-transform: translateY(8%);
    transform: translateY(8%);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0%);
    transform: translateY(0%);
  }
}
@-moz-keyframes tab {
  from {
    opacity: 0;
    -webkit-transform: translateY(8%);
    -moz-transform: translateY(8%);
    transform: translateY(8%);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0%);
    -moz-transform: translateY(0%);
    transform: translateY(0%);
  }
}
@-o-keyframes tab {
  from {
    opacity: 0;
    -webkit-transform: translateY(8%);
    -o-transform: translateY(8%);
    transform: translateY(8%);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0%);
    -o-transform: translateY(0%);
    transform: translateY(0%);
  }
}
@keyframes tab {
  from {
    opacity: 0;
    -webkit-transform: translateY(8%);
    -moz-transform: translateY(8%);
    -o-transform: translateY(8%);
    transform: translateY(8%);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0%);
    -moz-transform: translateY(0%);
    -o-transform: translateY(0%);
    transform: translateY(0%);
  }
}
.about-page {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  display: -moz-flex;
}
.about-page .imgbox {
  width: 44%;
  margin-right: 6%;
}
.about-page .imgbox img {
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.about-page .desc {
  color: #333333;
  width: 50%;
  padding-top: 3%;
}
.about-page2 .imgbox {
  float: left;
  width: 39%;
  margin-right: 5%;
}
.about-by {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  display: -moz-flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  line-height: 1.2;
}
.about-by .line {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -moz-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  height: 1px;
  background-color: #EBEBEB;
}
.about-by .by {
  text-transform: uppercase;
  font-family: "DINPro-R";
  margin-left: 16px;
}
.histoy-box {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  display: -moz-flex;
}
.histoy-demo {
  position: relative;
  overflow: hidden;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -moz-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
.histoy-demo .swiper-slide {
  height: 100%;
}
.histoy-demo .swiper-item {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  display: -moz-flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  height: 100%;
}
.histoy-demo .item {
  width: 45%;
  position: relative;
  height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  text-align: justify;
}
.histoy-demo .item .year {
  position: absolute;
  left: 0;
  top: 0;
  font-size: 12.2395vw;
  line-height: 0.7;
  font-family: "DINPro-M";
  background-image: -moz-linear-gradient(#0B308E, rgba(11, 48, 142, 0));
  background-image: -webkit-linear-gradient(#0B308E, rgba(11, 48, 142, 0));
  background-image: -webkit-gradient(#0B308E, rgba(11, 48, 142, 0));
  background-image: -o-linear-gradient(#0B308E, rgba(11, 48, 142, 0));
  background-image: linear-gradient(#0B308E, rgba(11, 48, 142, 0));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  opacity: 0.1;
  filter: alpha(opacity=10);
}
.histoy-demo .list {
  padding-top: 40px;
}
.histoy-demo .list dd {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  display: -moz-flex;
  font-size: 16px;
  margin-top: 25px;
  position: relative;
  padding-left: 16px;
}
.histoy-demo .list dd::before {
  content: "";
  position: absolute;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: #0B308E;
  left: 0;
  top: 10px;
}
.histoy-demo .list .moth {
  width: 84px;
}
.histoy-demo .list .c {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -moz-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
.histoy-demo .imgbox {
  width: 45%;
  margin-right: 20px;
}
.histoy-demo .imgbox img {
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.histoy-year {
  width: 15%;
  text-align: right;
  border-right: 1px solid #D2D2D2;
  margin-right: 2px;
  font-family: "DINPro-R";
  font-size: 20px;
  line-height: 1.5;
}
.histoy-year p {
  padding: 2px 18px 2px 0;
  transition: 0.3s cubic-bezier(0.09, 0.34, 0.63, 1);
  -webkit-transition: 0.3s cubic-bezier(0.09, 0.34, 0.63, 1);
  margin-bottom: 20px;
  cursor: pointer;
  position: relative;
}
.histoy-year p::before {
  content: "";
  position: absolute;
  right: -2px;
  top: 0;
  width: 5px;
  background-color: #0B308E;
  height: 0;
  transition: 0.3s cubic-bezier(0.09, 0.34, 0.63, 1);
  -webkit-transition: 0.3s cubic-bezier(0.09, 0.34, 0.63, 1);
}
.histoy-year p:last-child {
  margin-bottom: 0;
}
.histoy-year p:hover {
  color: #0B308E;
}
.histoy-year .active {
  font-size: 35px;
  color: #0B308E;
  line-height: 1.2;
  font-weight: 600;
}
.histoy-year .active::before {
  height: 100%;
}
.c333 {
  color: #333333;
}
.company-list dd {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  display: -moz-flex;
}
.company-list dd:nth-child(odd) {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: row-reverse;
  -moz-box-orient: horizontal;
  -moz-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.company-list .imgbox {
  width: 50%;
}
.company-list .imgbox img {
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.company-list .desc {
  width: 50%;
  position: relative;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  display: -moz-flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.company-list .ico {
  position: absolute;
  right: 8%;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  font-size: 13.5416vw;
  color: #F7F7F7;
  line-height: 1;
}
.company-list .item {
  padding: 0 11%;
  position: relative;
}
.company-list .t {
  line-height: 1.5;
  margin-bottom: 25px;
}
.company-list .c {
  line-height: 1.5;
}
.honor-demo {
  position: relative;
  overflow: hidden;
  margin-left: 12.5%;
  cursor: url(../images/curse.png), -webkit-grab;
  cursor: url(../images/curse.png), -moz-grab;
  cursor: url(../images/curse.png), grab;
}
.honor-demo .swiper-slide {
  background-color: #ffffff;
  position: relative;
  padding: 40px;
  margin: 8px 30px 50px;
  -webkit-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  width: 18%;
  height: auto;
}
.honor-demo .swiper-slide::before {
  transition: 0.3s cubic-bezier(0.09, 0.34, 0.63, 1);
  -webkit-transition: 0.3s cubic-bezier(0.09, 0.34, 0.63, 1);
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border: 1px solid #fff;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.honor-demo .swiper-slide:hover::before {
  border-color: #0B308E;
}
.honor-demo .swiper-slide:hover .name {
  color: #0B308E;
}
.honor-demo .swiper-slide:hover .ico {
  margin-top: 0;
  opacity: 1;
  filter: alpha(opacity=100);
}
.honor-demo .img {
  position: relative;
  padding-bottom: 100%;
  overflow: hidden;
  margin-bottom: 35px;
}
.honor-demo .img img {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}
.honor-demo .name {
  text-align: center;
  transition: 0.3s cubic-bezier(0.09, 0.34, 0.63, 1);
  -webkit-transition: 0.3s cubic-bezier(0.09, 0.34, 0.63, 1);
}
.honor-demo .ico {
  position: absolute;
  right: 5%;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.4);
  width: 44px;
  height: 44px;
  font-size: 24px;
  line-height: 44px;
  text-align: center;
  color: #fff;
  border-radius: 50%;
  transition: 0.3s cubic-bezier(0.09, 0.34, 0.63, 1);
  -webkit-transition: 0.3s cubic-bezier(0.09, 0.34, 0.63, 1);
  opacity: 0;
  filter: alpha(opacity=0);
  margin-top: 36px;
}
.honor-demo .swiper-scrollbar {
  border-radius: 0;
}
.honor-demo .swiper-scrollbar-drag {
  border-radius: 0;
  background-color: #0B308E;
}
.map-img {
  position: relative;
  width: 85%;
  margin-left: 10%;
}
.map-box {
  position: relative;
  padding: 100px 0 70px;
}
.map-box::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  background: url(../img/map-blue.jpg) no-repeat scroll center top #F7FAFC;
  -o-background-size: 100% auto;
  background-size: 100% auto;
}
.map-box .w1400 {
  position: relative;
}
.branch-nav {
  position: absolute;
  left: 0;
  top: 0;
  font-size: 16px;
  border-left: 1px solid #E2E2E2;
  z-index: 2;
}
.branch-nav li {
  padding: 5px 0 5px 15px;
  line-height: 1.5;
  position: relative;
  margin-bottom: 10px;
  cursor: pointer;
  transition: 0.3s cubic-bezier(0.09, 0.34, 0.63, 1);
  -webkit-transition: 0.3s cubic-bezier(0.09, 0.34, 0.63, 1);
}
.branch-nav li::before {
  content: "";
  position: absolute;
  width: 3px;
  height: 0;
  top: 0;
  background-color: #0B308E;
  left: -2px;
  transition: 0.3s cubic-bezier(0.09, 0.34, 0.63, 1);
  -webkit-transition: 0.3s cubic-bezier(0.09, 0.34, 0.63, 1);
}
.branch-nav li.active {
  color: #0B308E;
}
.branch-nav li.active::before {
  height: 100%;
}
.branch-nav li:hover {
  color: #0B308E;
}
.map-img {
  position: relative;
}
.map-img .item {
  position: absolute;
}
.map-img .item .ico {
  color: #44AF35;
  transition: 0.3s cubic-bezier(0.09, 0.34, 0.63, 1);
  -webkit-transition: 0.3s cubic-bezier(0.09, 0.34, 0.63, 1);
}
.map-img .item .dian {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #0B308E;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  opacity: 0;
  filter: alpha(opacity=0);
  transition: 0.3s cubic-bezier(0.09, 0.34, 0.63, 1);
  -webkit-transition: 0.3s cubic-bezier(0.09, 0.34, 0.63, 1);
}
.map-img .item .dian .y {
  background-color: rgba(11, 48, 142, 0.28);
  width: 40px;
  height: 40px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  border-radius: 50%;
}
.map-img .item .dian .y::before,
.map-img .item .dian .y::after {
  content: "";
  display: block;
  width: 120%;
  height: 120%;
  border-radius: 50%;
  background-color: rgba(11, 48, 142, 0.08);
  position: absolute;
  left: -10%;
  top: -10%;
  -moz-animation: bannerbuIn 2s ease-out infinite;
  -o-animation: bannerbuIn 2s ease-out infinite;
  animation: bannerbuIn 2s ease-out infinite;
  -webkit-animation: bannerbuIn 2s ease-out infinite;
}
.map-img .item .dian .y::after {
  width: 160%;
  height: 160%;
  left: -30%;
  top: -30%;
  -moz-animation: bannerbuIn 3s ease-out infinite;
  -o-animation: bannerbuIn 3s ease-out infinite;
  animation: bannerbuIn 3s ease-out infinite;
  -webkit-animation: bannerbuIn 3s ease-out infinite;
}
.map-img .item .dian .l {
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 1px;
  height: 150px;
  background-color: #0B308E;
}
.map-img .item .dian .l::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  display: block;
  margin: 0px auto;
  height: 0;
  width: 0;
  border-left: 14px solid #0B308E;
}
.map-img .item.active .dian {
  opacity: 1;
  filter: alpha(opacity=100);
}
.map-img .item.active .ico {
  opacity: 0;
  filter: alpha(opacity=0);
}
.branch-info {
  position: absolute;
  border-top: 5px solid #0B308E;
  padding: 60px 45px;
  background-color: #FFFFFF;
  width: 38%;
  left: 27%;
  top: 10%;
  transition: 0.3s cubic-bezier(0.09, 0.34, 0.63, 1);
  -webkit-transition: 0.3s cubic-bezier(0.09, 0.34, 0.63, 1);
}
.branch-info a:link,
.branch-info a:visited {
  color: #0B308E;
}
.branch-info a:active,
.branch-info a:hover {
  color: #44AF35;
}
.branch-info .title {
  font-size: 20px;
  font-weight: normal;
  color: #0B308E;
  line-height: 1.5;
  margin-bottom: 30px;
}
.branch-info .pageC {
  margin-bottom: 35px;
  overflow-y: auto;
  max-height: 126px;
  padding-right: 10px;
}
.branch-info .cover {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  display: -moz-flex;
  margin-bottom: 8px;
}
.branch-info .cover a {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  display: -moz-flex;
}
.branch-info .cover .ico {
  font-size: 16px;
  color: #0B308E;
  padding-right: 10px;
  line-height: 1.5;
}
.branch-i5 {
  left: 30%;
}
.clock_ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  justify-content: space-between;
  -webkit-box-align: start;
  -ms-flex-align: start;
  -webkit-align-items: flex-start;
  -moz-box-align: start;
  align-items: flex-start;
  width: 85%;
  margin-left: 10%;
}
.clock_ul > li {
  margin-top: -25%;
}
.clock_box {
  width: 100%;
  position: relative;
}
.clock_bg {
  width: 160px;
  height: 160px;
  margin: 0 auto 20px;
  border-radius: 50%;
  position: relative;
  opacity: 0;
}
.clock_bg span {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #e87300;
  position: absolute;
}
.clock_bg .hour_12 {
  top: 0%;
  left: -webkit-calc(45%);
  left: -moz-calc(45%);
  left: calc(50% - 5px);
}
.clock_bg .hour_9 {
  bottom: 0;
  right: -webkit-calc(45%);
  right: -moz-calc(45%);
  right: calc(50% - 5px);
}
.clock_bg .hour_3 {
  top: -webkit-calc(45%);
  top: -moz-calc(45%);
  top: calc(50% - 5px);
  left: 0;
}
.clock_bg .hour_6 {
  top: -webkit-calc(45%);
  top: -moz-calc(45%);
  top: calc(50% - 5px);
  right: 0;
}
.clock_bg i {
  display: inline-block;
  position: absolute;
  border-radius: 50%;
  background: #e1e1e1;
  width: 5px;
  height: 5px;
}
.clock_bg .sec_5 {
  top: 10%;
  right: 25%;
}
.clock_bg .sec_10 {
  top: 25%;
  right: 10%;
}
.clock_bg .sec_20 {
  right: 10%;
  bottom: 25%;
}
.clock_bg .sec_25 {
  right: 25%;
  bottom: 10%;
}
.clock_bg .sec_35 {
  left: 25%;
  bottom: 10%;
}
.clock_bg .sec_40 {
  left: 10%;
  bottom: 25%;
}
.clock_bg .sec_50 {
  top: 25%;
  left: 10%;
}
.clock_bg .sec_55 {
  top: 10%;
  left: 25%;
}
.hour_hand_box {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.hour_inner {
  position: relative;
  width: 100%;
  height: 100%;
}
.hour_inner .hours {
  width: 4px;
  height: 50px;
  margin: -50px 0 0 -1px;
  background-color: #333;
  -webkit-transform-origin: bottom center;
  -ms-transform-origin: bottom center;
  -moz-transform-origin: bottom center;
  -o-transform-origin: bottom center;
  transform-origin: bottom center;
}
.hour_inner .hours i:after {
  width: 4px;
  background-color: #333;
}
.hour_inner .minutes {
  width: 2px;
  height: 60px;
  margin: -60px 0 0 -2px;
  background-color: #333;
  -webkit-transform-origin: bottom center;
  -ms-transform-origin: bottom center;
  -moz-transform-origin: bottom center;
  -o-transform-origin: bottom center;
  transform-origin: bottom center;
}
.hour_inner .minutes i:after {
  width: 2px;
  background-color: #333;
}
.hour_inner .seconds {
  width: 2px;
  height: 60px;
  margin: -60px 0 0 -1px;
  background-color: #009ce9;
  -webkit-transform-origin: bottom center;
  -ms-transform-origin: bottom center;
  -moz-transform-origin: bottom center;
  -o-transform-origin: bottom center;
  transform-origin: bottom center;
}
.hour_inner .seconds i:after {
  width: 2px;
  background-color: #009ce9;
}
.hour_inner span {
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 10px;
  display: inline-block;
}
.hour_inner i {
  position: relative;
  width: 100%;
  height: 100%;
  display: inline-block;
}
.hour_inner i:after {
  content: '';
  height: 20px;
  display: inline-block;
  position: absolute;
  border-radius: 10px;
  top: 100%;
  left: 0;
}
.hour_inner .hour_center {
  position: absolute;
  width: 10px;
  height: 10px;
  top: 50%;
  left: 50%;
  margin: -5px 0 0 -5px;
  background-color: #333;
  border-radius: 50%;
}
.clock-wrap {
  text-align: center;
}
.sacs-demo {
  position: relative;
  overflow: hidden;
  width: 110%;
  margin-left: -5%;
}
.sacs-demo .swiper-slide {
  width: 32%;
}
.sacs-demo .item {
  position: relative;
  padding: 70px 0;
}
.sacs-demo .img {
  border-radius: 50%;
  margin: 0 auto;
  -moz-transform: scale(0.5);
  -ms-transform: scale(0.5);
  -o-transform: scale(0.5);
  transform: scale(0.5);
  -webkit-transform: scale(0.5);
}
.sacs-demo .img::before {
  content: "";
  position: absolute;
  width: 120%;
  height: 120%;
  background: url(../images/y.png) no-repeat scroll center center;
  -o-background-size: cover;
  background-size: cover;
  left: -10%;
  top: -10%;
  opacity: 0;
  filter: alpha(opacity=0);
}
.sacs-demo .img img {
  border-radius: 50%;
}
.sacs-demo .txt {
  text-align: center;
  font-weight: bold;
  line-height: 1.5;
  position: absolute;
  top: 75%;
  left: 0;
  width: 100%;
}
.sacs-demo .swiper-slide-active .img {
  -moz-transform: scale(1.16);
  -ms-transform: scale(1.16);
  -o-transform: scale(1.16);
  transform: scale(1.16);
  -webkit-transform: scale(1.16);
  transition: 0.6s cubic-bezier(0.09, 0.34, 0.63, 1);
  -webkit-transition: 0.6s cubic-bezier(0.09, 0.34, 0.63, 1);
}
.sacs-demo .swiper-slide-active .img::before {
  opacity: 1;
  filter: alpha(opacity=100);
  -webkit-animation: rotate 8s linear infinite;
  -moz-animation: rotate 8s linear infinite;
  -o-animation: rotate 8s linear infinite;
  animation: rotate 8s linear infinite;
}
.sacs-demo .swiper-slide-active .txt {
  display: none;
}
.sacs-demo .swiper-slide-prev .item {
  left: -26%;
}
.sacs-demo .swiper-slide-next .item {
  right: -26%;
}
.sacs-demo .swiper-arrow {
  display: block;
  position: absolute;
  top: 50%;
  width: 40px;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  font-size: 24px;
  color: #999999;
  z-index: 400;
  text-align: center;
}
.sacs-demo .swiper-arrow:hover {
  color: #0B308E;
}
.sacs-demo .swiper-prev {
  left: 32%;
}
.sacs-demo .swiper-next {
  right: 32%;
}
.saxs-desc {
  width: 55%;
  margin: 20px auto 0;
  text-align: center;
}
.saxs-desc .title {
  color: #0B308E;
  font-size: 24px;
  font-family: "DINPro-B";
  margin-bottom: 20px;
}
.saxs-desc .pageC {
  text-align: center;
  color: #333333;
  font-size: 15px;
}
.team-first {
  position: relative;
  overflow: hidden;
  float: left;
  width: 38%;
}
.team-first .swiper-slide {
  cursor: pointer;
}
.team-first .item {
  padding: 45px;
  position: relative;
  margin: 0 50px;
}
.team-first .item::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: url(../images/y.png) no-repeat scroll center center;
  -o-background-size: cover;
  background-size: cover;
  left: 0%;
  top: 0%;
}
.team-first .img {
  border-radius: 50%;
  position: relative;
  overflow: hidden;
}
.team-first .img img {
  border-radius: 50%;
}
.team-first .img::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 50%;
  left: 0;
  bottom: 0;
  background: -webkit-linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.72));
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), to(rgba(0, 0, 0, 0.72)));
  background: -moz-linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.72));
  background: -o-linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.72));
  background: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.72));
}
.team-first .con {
  position: absolute;
  left: 5%;
  bottom: 5%;
  right: 5%;
  text-align: center;
  color: #fff;
}
.team-first .name {
  font-size: 20px;
  line-height: 1.5;
  margin-bottom: 5px;
  font-weight: normal;
}
.team-first .info-btn {
  text-align: center;
  color: #0B308E;
  margin-top: 20px;
}
.team-first .swiper-arrow {
  display: block;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  font-size: 24px;
  color: #999999;
  z-index: 400;
  text-align: center;
}
.team-first .swiper-arrow:hover {
  color: #0B308E;
}
.team-first .swiper-prev {
  left: 0;
}
.team-first .swiper-next {
  right: 0;
}
.team-first .swiper-slide-active .item::before {
  -webkit-animation: rotate 8s linear infinite;
  -moz-animation: rotate 8s linear infinite;
  -o-animation: rotate 8s linear infinite;
  animation: rotate 8s linear infinite;
}
.team-demo {
  position: relative;
  overflow: hidden;
  float: right;
  width: 50%;
  padding-bottom: 30px;
}
.team-demo .swiper-slide {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  display: -moz-flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.team-demo .item {
  width: 21%;
  margin-bottom: 40px;
  cursor: pointer;
}
.team-demo .img {
  position: relative;
  border-radius: 50%;
  overflow: hidden;
}
.team-demo .img img {
  width: 100%;
  display: block;
  border-radius: 50%;
}
.team-demo .img::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  border: 3px solid #0B308E;
  border-radius: 50%;
  -moz-transform: scale(0.9);
  -ms-transform: scale(0.9);
  -o-transform: scale(0.9);
  transform: scale(0.9);
  -webkit-transform: scale(0.9);
  transition: 0.3s cubic-bezier(0.09, 0.34, 0.63, 1);
  -webkit-transition: 0.3s cubic-bezier(0.09, 0.34, 0.63, 1);
  opacity: 0;
  filter: alpha(opacity=0);
}
.team-demo .active .img::before {
  opacity: 1;
  filter: alpha(opacity=100);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
  -webkit-transform: scale(1);
}
.team-demo .name {
  text-align: center;
  font-size: 16px;
  margin-top: 15px;
}
.team-demo .swiper-pagination {
  bottom: 0;
}
.team-demo .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  margin: 0 8px !important;
  background-color: #DEDEDE;
  opacity: 1;
}
.team-demo .swiper-pagination-bullet-active {
  background-color: #0B308E;
}
.team-ipage {
  width: 950px;
  background-color: #FFFFFF;
}
.team-ipage .box {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  display: -moz-flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 90px 8% 100px 5%;
}
.team-ipage .img {
  width: 28%;
  margin-right: 50px;
}
.team-ipage .desc {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -moz-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
.team-ipage .title {
  color: #333333;
  font-size: 24px;
  line-height: 1.5;
  margin-bottom: 12px;
}
.team-ipage .zw {
  padding-bottom: 20px;
  color: #585858;
  border-bottom: 1px solid #ECECEC;
  margin-bottom: 30px;
}
.team-paging {
  position: relative;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  display: -moz-flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  background-color: #0B308E;
  font-size: 15px;
  color: #ffffff;
}
.team-paging::before {
  content: "";
  position: absolute;
  left: 50%;
  width: 1px;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.3);
}
.team-paging p {
  width: 50%;
}
.team-paging a {
  color: #ffffff;
  display: block;
  padding: 12px 5%;
}
.team-paging .next {
  text-align: right;
}
.team-list {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  display: -moz-flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-left: -5%;
}
.team-list li {
  width: 15%;
  margin-left: 5%;
  text-align: center;
  margin-top: 30px;
  position: relative;
}
.team-list li:hover .img {
  -webkit-box-shadow: 0 8px 20px rgba(11, 48, 142, 0.1);
  box-shadow: 0 8px 20px rgba(11, 48, 142, 0.1);
  -webkit-transform: translateY(-2%);
  -moz-transform: translateY(-2%);
  -ms-transform: translateY(-2%);
  -o-transform: translateY(-2%);
  transform: translateY(-2%);
}
.team-list li:hover .img::before {
  opacity: 1;
  filter: alpha(opacity=100);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
  -webkit-transform: scale(1);
}
.team-list li:hover .con {
  color: #0B308E;
}
.team-list .img {
  position: relative;
  border-radius: 50%;
  overflow: hidden;
  transition: 0.3s cubic-bezier(0.09, 0.34, 0.63, 1);
  -webkit-transition: 0.3s cubic-bezier(0.09, 0.34, 0.63, 1);
}
.team-list .img img {
  width: 100%;
  display: block;
  border-radius: 50%;
}
.team-list .img::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  left: 0;
  top: 0;
  border: 3px solid #0B308E;
  border-radius: 50%;
  -moz-transform: scale(0.9);
  -ms-transform: scale(0.9);
  -o-transform: scale(0.9);
  transform: scale(0.9);
  -webkit-transform: scale(0.9);
  transition: 0.3s cubic-bezier(0.09, 0.34, 0.63, 1);
  -webkit-transition: 0.3s cubic-bezier(0.09, 0.34, 0.63, 1);
  opacity: 0;
  filter: alpha(opacity=0);
}
.team-list .con {
  padding: 15px 0 0;
}
.team-list .name {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  margin-bottom: 2px;
}
.join-ipage {
  background-color: #fff;
  width: 1200px;
}
.join-ipage .box {
  padding: 90px 8%;
}
.join-form {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  display: -moz-flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
}
.join-form li {
  width: 31.33%;
  margin-bottom: 18px;
}
.form-txt {
  border: 1px solid #E6E6E6;
  padding: 13px 20px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  width: 100%;
  font-size: 16px;
}
.btn-ok {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0 auto;
  width: 202px;
  height: 50px;
  line-height: 50px;
  border-radius: 25px;
  text-align: center;
  color: #666666;
  background-color: #F8F8F8;
}
.btn-ok:before {
  content: "";
  position: absolute;
  display: block;
  bottom: auto;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 1;
  transition: opacity 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  background-color: #F8F8F8;
}
.btn-ok::after {
  content: "";
  position: absolute;
  display: block;
  border-radius: 50%;
  bottom: 0;
  left: 50%;
  transform: translateZ(0) translate(-50%, 50%) scale(0);
  transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  will-change: transform;
  pointer-events: none;
  width: 200%;
  height: 200%;
  background-color: #0B308E;
}
.btn-ok:hover:before {
  opacity: 0;
}
.btn-ok:hover:after {
  transform: translateZ(0) translate(-50%, 40%) scale(1);
  -webkit-transform: translateZ(0) translate(-50%, 40%) scale(1);
}
.btn-ok .txt {
  position: relative;
  z-index: 2;
}
.btn-ok:hover {
  color: #fff;
}
.form-sc {
  border: 1px solid #E6E6E6;
  padding: 35px 0 30px;
  position: relative;
  text-align: center;
  margin-bottom: 55px;
}
.form-sc .ico {
  font-size: 34px;
  line-height: 1.5;
  color: #E6E6E6;
}
.form-sc .txt {
  font-size: 16px;
  color: #999999;
}
.form-sc .register-file {
  position: absolute;
  right: 0;
  top: 0;
  opacity: 0 !important;
  filter: alpha(opacity=0);
  width: 100%;
  height: 100%;
}
#aboutPage5 {
  display: none;
}
