@font-face {
  font-family: 'DINPro-Light';
  src: url("../fonts/DINPro-Light.otf");
}
@font-face {
  font-family: 'DINPro-Regular';
  src: url("../fonts/DINPro-Regular_0.otf");
}
@font-face {
  font-family: 'DINPro-Medium';
  src: url("../fonts/DINPro-Medium.otf");
}
@font-face {
  font-family: 'DINPro-Bold';
  src: url("../fonts/DINPro-Bold.otf");
}
@keyframes ringScale {
  0% {
    opacity: 1;
    -webkit-transform: scale(0.7);
    -moz-transform: scale(0.7);
    -ms-transform: scale(0.7);
    transform: scale(0.7);
  }
  60% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(1.5);
    -moz-transform: scale(1.5);
    -ms-transform: scale(1.5);
    transform: scale(1.5);
  }
}
@keyframes gearRotate1 {
  0% {
    -webkit-transform: rotate(0);
    -moz-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes gearRotate2 {
  0% {
    -webkit-transform: rotate(0);
    -moz-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(-360deg);
    -moz-transform: rotate(-360deg);
    -ms-transform: rotate(-360deg);
    transform: rotate(-360deg);
  }
}
@keyframes mapIcon {
  0%,100% {
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
  60% {
    -webkit-transform: translateY(-5px);
    -moz-transform: translateY(-5px);
    -ms-transform: translateY(-5px);
    transform: translateY(-5px);
  }
}
@keyframes ringScale1 {
  0% {
    opacity: 1;
    -webkit-transform: scale(0);
    -moz-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
  }
  90% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(1.5);
    -moz-transform: scale(1.5);
    -ms-transform: scale(1.5);
    transform: scale(1.5);
  }
}
.wrapper {
  width: 80vw;
  max-width: 1440px;
  margin: 0 auto;
  position: relative;
}
.wrapper:after {
  content: '';
  display: block;
  clear: both;
}

.dom_loaded .header .nav li {
  -webkit-transition: padding 0.3s ease;
  -moz-transition: padding 0.3s ease;
  -ms-transition: padding 0.3s ease;
  transition: padding 0.3s ease;
}
.dom_loaded .header .nav li .drop {
  -webkit-transition: transform 0.1s ease, opacity 0.1s ease, visibility 0.1s;
  -moz-transition: transform 0.1s ease, opacity 0.1s ease, visibility 0.1s;
  -ms-transition: transform 0.1s ease, opacity 0.1s ease, visibility 0.1s;
  transition: transform 0.1s ease, opacity 0.1s ease, visibility 0.1s;
}
.dom_loaded .fixed_search .bg {
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.dom_loaded .fixed_search form {
  -webkit-transition: transform 0.3s ease;
  -moz-transition: transform 0.3s ease;
  -ms-transition: transform 0.3s ease;
  transition: transform 0.3s ease;
}

/*header*/
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: #fff;
  z-index: 9;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.header .logo {
  position: absolute;
  left: 60px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
.header .logo img {
  display: block;
  height: 54px;
}
.header .nav {
  text-align: right;
  padding-right: 140px;
  font-size: 0;
}
.header .nav li {
  display: inline-block;
  vertical-align: top;
  margin-right: 40px;
}
.header .nav li a.single {
  display: block;
  font-size: 16px;
  color: #333;
  line-height: 100px;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media screen and (min-width: 992px) {
  .header .nav li .drop {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: flex;
    border-top: 1px solid #f7f7f7;
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.01);
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateY(20px);
    -moz-transform: translateY(20px);
    -ms-transform: translateY(20px);
    transform: translateY(20px);
  }
  .header .nav li .drop .left, .header .nav li .drop .right {
    display: inline-block;
    vertical-align: top;
    width: 50%;
  }
  .header .nav li .drop .left {
    background-color: #fff;
    text-align: right;
    padding: 4.5vw 0;
  }
  .header .nav li .drop .left .box {
    display: inline-block;
    text-align: left;
    width: 28vw;
    max-width: 520px;
  }
  .header .nav li .drop .left a {
    position: relative;
    display: block;
    font-size: 16px;
    line-height: 54px;
    color: #333;
    text-indent: 3vw;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
  .header .nav li .drop .left a:after {
    content: '';
    width: 10px;
    height: 16px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    background-image: url("../images/icon-3.png");
    position: absolute;
    right: 3vw;
    top: 50%;
    margin-top: -8px;
    opacity: 0;
    -webkit-transform: translateX(-10px);
    -moz-transform: translateX(-10px);
    -ms-transform: translateX(-10px);
    transform: translateX(-10px);
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
  .header .nav li .drop .left a:hover {
    background-color: #f7f7f7;
  }
  .header .nav li .drop .left a:hover:after {
    opacity: 1;
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
  .header .nav li .drop .right {
    background-color: #f7f7f7;
    padding: 4.5vw 6vw;
    text-align: left;
  }
  .header .nav li .drop .right img {
    width: 382px;
    display: block;
  }
  .header .nav li .drop .right h3 {
    font-size: 24px;
    color: #333;
    line-height: 1;
    margin-top: 20px;
  }
}
@media screen and (min-width: 992px) {
  .header .nav li:hover a.single {
    color: #073190;
  }
  .header .nav li:hover .drop {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
    -webkit-transition: transform 0.5s ease 0.2s, opacity 0.5s ease 0.2s, visibility 0.5s 0.2s;
    -moz-transition: transform 0.5s ease 0.2s, opacity 0.5s ease 0.2s, visibility 0.5s 0.2s;
    -ms-transition: transform 0.5s ease 0.2s, opacity 0.5s ease 0.2s, visibility 0.5s 0.2s;
    transition: transform 0.5s ease 0.2s, opacity 0.5s ease 0.2s, visibility 0.5s 0.2s;
  }
}
.header .nav li.active a.single {
  color: #073190;
}
.header .ope {
  position: absolute;
  right: 60px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  font-size: 0;
}
.header .ope .item {
  display: inline-block;
  vertical-align: top;
  position: relative;
}
.header .ope .item a.icon {
  display: block;
  width: 20px;
  height: 20px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
.header .ope .lang {
  margin-right: 40px;
}
.header .ope .lang a.icon {
  background-image: url("../images/icon-1.png");
}
.header .ope .lang .box {
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -40px;
  padding-top: 10px;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(10px);
  -moz-transform: translateY(10px);
  -ms-transform: translateY(10px);
  transform: translateY(10px);
}
.header .ope .lang .box a {
  display: block;
  width: 80px;
  text-align: center;
  font-size: 12px;
  line-height: 24px;
  color: #fff;
  background-color: #333;
  margin-top: 1px;
}
.header .ope .lang .box a:first-of-type {
  margin-top: 0;
}
.header .ope .lang .box:after {
  content: '';
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 6px solid #333;
  position: absolute;
  top: 4px;
  left: 50%;
  margin-left: -6px;
}
.header .ope .lang:hover .box {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.header .ope .search a.icon {
  background-image: url("../images/icon-2.png");
}
.header.down .nav li a.single {
  line-height: 80px;
}

.m-nav {
  display: none;
}

/*search*/
.fixed_search .bg {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 6;
  opacity: 0;
  visibility: hidden;
}
.fixed_search form {
  position: fixed;
  left: 0;
  right: 0;
  top: 100px;
  background: #fff;
  z-index: 7;
  padding: 0 70px;
  opacity: 0;
  visibility: hidden;
}
.fixed_search form input {
  display: block;
  width: 100%;
  height: 70px;
  padding: 0 10px;
  font-size: 14px;
  color: #333;
}
.fixed_search form button {
  position: absolute;
  left: 0;
  top: 0;
  width: 70px;
  height: 70px;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url("../images/icon-4.png");
  cursor: pointer;
  background-color: transparent;
}
.fixed_search form .close {
  position: absolute;
  width: 70px;
  height: 70px;
  right: 0;
  top: 0;
  background-position: center;
  background-repeat: no-repeat;
  cursor: pointer;
}
.fixed_search form .close svg {
  width: 16px;
  height: 16px;
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -8px 0 0 -8px;
}
.fixed_search.active .bg, .fixed_search.active form {
  opacity: 1;
  visibility: visible;
}
.fixed_search.down form {
  top: 80px;
}

/* footer */
.footer {
  background-color: #f5f5f5;
}
.footer .top_box {
  padding: 6vw 0;
  font-size: 0;
}
.footer .logo {
  width: 20%;
  display: inline-block;
  vertical-align: top;
}
.footer .logo img {
  display: block;
  width: 100%;
  max-width: 280px;
}
.footer .share {
  margin-top: 3vw;
  font-size: 0;
}
.footer .share a {
  width: 24px;
  height: 24px;
  display: inline-block;
  vertical-align: top;
  background-position: center;
  background-repeat: no-repeat;
  margin: 0 6px 0 0;
  padding: 0;
  border-radius: 50%;
  background-color: #dbdbdb;
}
.footer .share a[data-cmd="weixin"] {
  background-image: url("../images/share-1.png");
}
.footer .share a[data-cmd="tsina"] {
  background-image: url("../images/share-2.png");
}
.footer .share a[data-cmd="fbook"] {
  background-image: url("../images/share-3.png");
}
.footer .share a[data-cmd="twi"] {
  background-image: url("../images/share-4.png");
}
.footer .share a[data-cmd="linkedin"] {
  background-image: url("../images/share-5.png");
}
.footer .boxes {
  display: inline-block;
  vertical-align: top;
  width: 80%;
  text-align: right;
}
.footer .box {
  text-align: left;
  width: 17%;
  display: inline-block;
  vertical-align: top;
}
.footer .box h3 a {
  font-size: 18px;
  color: #333;
  line-height: 1;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.footer .box h3 a:hover {
  color: #073190;
}
.footer .box .a_block {
  margin-top: 24px;
}
.footer .box .a_block a {
  display: block;
  font-size: 14px;
  line-height: 32px;
  color: #333;
  opacity: .5;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.footer .box .a_block a:hover {
  opacity: 1;
  color: #073190;
}
.footer .ewm {
  display: inline-block;
  vertical-align: top;
  width: 120px;
}
.footer .ewm img {
  display: block;
  max-width: 100%;
}
.footer .ewm p {
  font-size: 14px;
  color: #333;
  opacity: .5;
  margin-top: 24px;
}
.footer .bot_box {
  border-top: 1px solid #e9e9e9;
  padding: 2.8vw 0;
  position: relative;
}
.footer .bot_box .link {
  font-size: 0;
}
@media screen and (min-width: 992px) {
  .footer .bot_box .link {
    position: absolute;
    right: 0;
    top: 50%;
    margin-top: -10px;
    z-index: 1;
  }
}
.footer .bot_box .link a {
  display: inline-block;
  vertical-align: top;
  font-size: 14px;
  color: #333;
  opacity: .5;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.footer .bot_box .link a:after {
  content: '';
  width: 1px;
  height: 10px;
  background-color: #b2b2b2;
  display: inline-block;
  vertical-align: middle;
  margin: 0 15px;
}
.footer .bot_box .link a:last-of-type:after {
  display: none;
}
@media screen and (min-width: 992px) {
  .footer .bot_box .link a:hover {
    opacity: 1;
    color: #073190;
  }
}
.footer .bot_box .copyright {
  font-size: 14px;
  line-height: 20px;
  color: #333;
  opacity: .5;
}

@media screen and (max-width: 1600px) {
  .header .logo img {
    height: 60px;
  }

  .header .nav {
    padding-right: 130px;
  }

  .header .nav li {
    margin-right: 30px;
  }

  .header .nav li a.single {
    line-height: 80px;
  }

  .header.down .nav li a.single {
    line-height: 70px;
  }

  .header .nav li .drop .right h3 {
    font-size: 20px;
  }

  .header .nav li .drop .left a {
    line-height: 46px;
  }

  .header .ope .lang {
    margin-right: 30px;
  }

  .fixed_search form {
    top: 80px;
  }

  .fixed_search.down form {
    top: 70px;
  }

  .footer .box h3 a {
    font-size: 16px;
  }

  .footer .box .a_block a {
    font-size: 13px;
    line-height: 28px;
  }

  .footer .bot_box .link a {
    font-size: 13px;
  }

  .footer .bot_box .copyright {
    font-size: 13px;
  }

  .footer .ewm p {
    font-size: 13px;
  }
}
@media screen and (max-width: 1366px) {
  .header .logo img {
    height: 36px;
  }

  .header .nav {
    padding-right: 120px;
  }

  .header .nav li {
    margin-right: 20px;
  }

  .header .nav li .drop .right img {
    width: 300px;
  }

  .header .ope .lang {
    margin-right: 20px;
  }
}
@media screen and (max-width: 992px) {
  .wrapper {
    width: 100%;
  }

  .m-nav {
    display: block;
    position: sticky;
    top: 0;
    z-index: 3;
  }
  .m-nav .block {
    position: relative;
  }
  .m-nav .slick {
    background-color: #073190;
    z-index: 2;
    height: 60px;
    overflow: hidden;
  }
  .m-nav .slick .item {
    position: relative;
    text-align: center;
  }
  .m-nav .slick .item:before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 10px;
    border-radius: 5px 5px 0 0;
    background-color: #fff;
    opacity: 0;
    -webkit-transition: opacity 0.3s ease;
    -moz-transition: opacity 0.3s ease;
    -ms-transition: opacity 0.3s ease;
    transition: opacity 0.3s ease;
  }
  .m-nav .slick .item a {
    display: block;
    line-height: 60px;
    font-size: 14px;
    color: #fff;
    position: relative;
    z-index: 2;
    -webkit-transition: color 0.3s ease;
    -moz-transition: color 0.3s ease;
    -ms-transition: color 0.3s ease;
    transition: color 0.3s ease;
  }
  .m-nav .slick .item.active:before {
    opacity: 1;
  }
  .m-nav .slick .item.active a {
    color: #073190;
  }
  .m-nav .sub .item {
    position: absolute;
    top: 100%;
    width: 100vw;
    left: 0;
    padding: 30px 20px 20px;
    background-color: #fff;
    border-radius: 0 0 5px 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    display: none;
    z-index: 1;
  }
  .m-nav .sub .item a {
    display: block;
    font-size: 14px;
    color: #333;
    line-height: 36px;
    margin-bottom: 10px;
    text-align: center;
  }
  .m-nav .sub .item .close {
    width: 24px;
    height: 24px;
    margin: 0 auto;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    border: 1px solid #073190;
    border-radius: 50%;
    margin-top: 20px;
    background-image: url("../images/close.png");
  }

  .header {
    height: 60px;
    position: relative;
  }

  .header .logo {
    left: 20px;
    top: 30px;
  }

  .header .logo img {
    height: 60px;
  }

  .header .nav {
    display: none;
  }

  .header .ope {
    right: 20px;
  }

  .fixed_search form {
    top: 60px;
    padding: 0 60px;
  }

  .fixed_search form input {
    height: 60px;
  }

  .fixed_search form button,
  .fixed_search form .close {
    width: 60px;
    height: 60px;
  }

  .footer {
    padding: 40px 20px;
  }

  .footer .top_box {
    padding: 0;
    text-align: center;
  }

  .footer .logo {
    width: 54%;
  }

  .footer .share {
    display: none;
  }

  .footer .boxes {
    display: none;
  }

  .footer .bot_box {
    padding: 0;
    margin-top: 20px;
    border: none;
  }

  .footer .bot_box .link {
    text-align: center;
  }

  .footer .bot_box .link a:after {
    margin: -3px 5px 0;
  }

  .footer .bot_box .copyright {
    margin-top: 20px;
  }
}
/* common */
.lighter, .sitemap_page .section1 a.btn, .legal_page .section1 .para, .contact_page .section1 .left_box .item p, .contact_page .section2 .tip, .contact_page .section2 .form input, .contact_page .section2 .form textarea, .news_group .section1 .item h3, .news_group .section1 .item p, .news_report .section1 .item h3, .news_report .section1 .item p, .news_detail .section2 .cont, .news_detail .section2 .other_block .item, .news_detail .section2 .right_block .item .tit, .duty_page .section1 .para, .duty_page .section1 .box p, .duty_page .section2 .item h3, .duty_page .section2 .item p, .recruit_page .para, .industry_list .section1 .item h3, .industry_list .section1 .item p, .industry_list .section1 .item span, .industry_3 .section1 .para, .industry_3 .section1 .item h3, .industry_3 .section2 .item h3, .industry_3 .section4 .item h3, .industry_index .section2 .item h3, .about_intro .section1 .items_1 .item h3, .strategy_page .section1 .para, .strategy_page .section2 .para, .strategy_page .section3 .para, .strategy_page .section3 .icons .icon h3 {
  font-weight: lighter;
}

.inner_tit {
  font-size: 42px;
  color: #333;
  font-weight: bold;
  text-align: center;
  line-height: 1;
}

.inner_page {
  padding-top: 100px;
}

.inner_banner {
  position: relative;
}
.inner_banner .m_img {
  display: none;
}
.inner_banner img {
  display: block;
  width: 100%;
}
.inner_banner .txt_box {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.inner_banner h3 {
  font-size: 48px;
  line-height: 1;
  color: #fff;
}
.inner_banner h4 {
  font-size: 30px;
  line-height: 1;
  color: #fff;
  text-transform: uppercase;
  font-family: 'DINPro-Light';
  margin-top: 20px;
}
.inner_banner h4:after {
  content: '';
  width: 24px;
  height: 2px;
  background-color: #5893d4;
  display: block;
  margin-top: 40px;
}

.comm_pages {
  font-size: 0;
  text-align: center;
}
.comm_pages ul li {
  display: inline-block;
  vertical-align: top;
  margin: 0 5px;
}
.comm_pages ul li a {
  display: block;
  width: 40px;
  height: 40px;
  font-size: 12px;
  color: #666;
  line-height: 38px;
  text-align: center;
  border: 1px solid #d9d9d9;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.comm_pages ul li:first-of-type a, .comm_pages ul li:last-of-type a {
  width: 60px;
}
.comm_pages ul li:nth-of-type(2) a, .comm_pages ul li:nth-last-of-type(2) a {
  background-position: center;
  background-repeat: no-repeat;
}
.comm_pages ul li:nth-of-type(2) a {
  background-image: url("../images/page-prev.png");
}
.comm_pages ul li:nth-of-type(2):hover a {
  background-image: url("../images/page-prev-on.png");
}
.comm_pages ul li:nth-last-of-type(2) a {
  background-image: url("../images/page-next.png");
}
.comm_pages ul li:nth-last-of-type(2):hover a {
  background-image: url("../images/page-next-on.png");
}
.comm_pages ul li:hover a, .comm_pages ul li.active a {
  border-color: #073190;
  background-color: #073190;
  color: #fff;
}

.video_pop {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 11;
  display: none;
}
.video_pop .bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1;
}
.video_pop .close {
  width: 32px;
  height: 32px;
  position: absolute;
  right: 20px;
  top: 20px;
  background: url("../images/close-1.png") center no-repeat;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  transition: all 0.5s ease;
  cursor: pointer;
  z-index: 2;
}
.video_pop .close:hover {
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}
.video_pop video {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  max-height: 70vh;
  max-width: 70vw;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.comm_share {
  position: absolute;
  top: 6vw;
  right: calc(100% + 40px);
  -webkit-transition: opacity 0.3s ease;
  -moz-transition: opacity 0.3s ease;
  -ms-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.comm_share.visi {
  opacity: 0;
}
.comm_share span {
  margin-top: 20px;
  height: 1px;
  background-color: #e6e6e6;
  display: block;
}
.comm_share a {
  display: block;
  width: 40px;
  height: 40px !important;
  padding: 0 !important;
  margin: 10px 0 0 !important;
  float: none !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.comm_share a:first-of-type {
  border-radius: 50%;
  background-color: #dde1eb;
  background-image: url("../images/share-1.png");
}
.comm_share a.wx {
  background-image: url("../images/share-2.png");
}
.comm_share a.wx:hover {
  background-image: url("../images/share-2-on.png");
}
.comm_share a.sina {
  background-image: url("../images/share-3.png");
}
.comm_share a.sina:hover {
  background-image: url("../images/share-3-on.png");
}

.comm_map {
  font-size: 0;
  padding-bottom: 6vw;
}
.comm_map .dot {
  position: absolute;
  width: 18px;
  height: 18px;
  cursor: pointer;
  z-index: 3;
}
.comm_map .dot:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url("../images/strategy/icon-5.png");
  opacity: 0;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
.comm_map .dot i {
  display: block;
  width: 18px;
  height: 18px;
  position: relative;
  border-radius: 50%;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
.comm_map .dot i:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(7, 49, 144, 0.1);
  border-radius: 50%;
  box-sizing: border-box;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  transition: all 0.3s linear;
  -webkit-transform: scale(0);
  -moz-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
  -webkit-animation: ringScale1 1.5s linear infinite;
  -moz-animation: ringScale1 1.5s linear infinite;
  -ms-animation: ringScale1 1.5s linear infinite;
  animation: ringScale1 1.5s linear infinite;
}
.comm_map .dot i:after {
  content: '';
  position: absolute;
  top: 4px;
  left: 4px;
  right: 4px;
  bottom: 4px;
  background-color: #5893d4;
  border-radius: 50%;
  box-sizing: border-box;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
.comm_map .dot span {
  font-size: 12px;
  color: #bfbfbf;
  position: absolute;
  white-space: nowrap;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
.comm_map .dot .hide {
  display: none;
}
.comm_map .dot:nth-of-type(4n-3) i:before {
  animation-delay: .4s;
}
.comm_map .dot:nth-of-type(4n-2) i:before {
  animation-delay: .8s;
}
.comm_map .dot:nth-of-type(4n-1) i:before {
  animation-delay: 1.2s;
}
.comm_map .dot.active:before {
  opacity: 1;
  -webkit-animation: mapIcon 1.5s linear infinite;
  -moz-animation: mapIcon 1.5s linear infinite;
  -ms-animation: mapIcon 1.5s linear infinite;
  animation: mapIcon 1.5s linear infinite;
}
.comm_map .dot.active i {
  opacity: 0;
}
.comm_map .dot.active span {
  color: #fff;
}
.comm_map .map_box {
  width: 68%;
  position: relative;
  display: inline-block;
  vertical-align: top;
}
.comm_map .map_box .map_line {
  width: 20.918%;
  max-width: 295px;
  position: absolute;
  top: 86.4%;
  right: 8.78%;
  z-index: 1;
}
.comm_map .map_box svg {
  width: 100%;
  display: block;
}
.comm_map .map_box svg path {
  fill: #fff;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.comm_map .map_box svg.hover {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
}
.comm_map .map_box svg.hover path {
  stroke: #5893d4;
  stroke-width: 1px;
}
.comm_map .map_box svg.hover path.active {
  fill: #3964c8;
  stroke: #3964c8;
}
.comm_map .map_box .dot.tianjin {
  top: 40%;
  right: 21.6%;
}
.comm_map .map_box .dot.tianjin span {
  top: 15px;
  left: 120%;
}
.comm_map .map_box .dot.beijing {
  top: 38.5%;
  right: 23.8%;
}
.comm_map .map_box .dot.beijing span {
  top: -10px;
  right: 120%;
}
.comm_map .map_box .dot.shanxi2 {
  top: 53.9%;
  right: 36%;
}
.comm_map .map_box .dot.shanxi2 span {
  top: 100%;
  left: -10%;
}
.comm_map .map_box .dot.hunan {
  top: 73.3%;
  right: 29.8%;
}
.comm_map .map_box .dot.hunan span {
  top: 100%;
  left: -10%;
}
.comm_map .map_box .dot.hubei {
  top: 62.5%;
  right: 29.6%;
}
.comm_map .map_box .dot.hubei span {
  top: 100%;
  left: -10%;
}
.comm_map .map_box .dot.henan {
  top: 54.9%;
  right: 27.75%;
}
.comm_map .map_box .dot.henan span {
  top: 100%;
  left: -10%;
}
.comm_map .map_box .dot.ningxia {
  top: 46%;
  right: 41.5%;
}
.comm_map .map_box .dot.ningxia span {
  top: 100%;
  left: -10%;
}
.comm_map .map_box .dot.sichuan {
  top: 64.1%;
  right: 47.45%;
}
.comm_map .map_box .dot.sichuan span {
  top: 100%;
  left: -10%;
}
.comm_map .map_box .dot.guangxi {
  top: 83.17%;
  right: 35.5%;
}
.comm_map .map_box .dot.guangxi span {
  top: 100%;
  left: -10%;
}
.comm_map .map_box .dot.chongqing {
  top: 67.8%;
  right: 37.7%;
}
.comm_map .map_box .dot.chongqing span {
  top: 100%;
  left: -10%;
}
.comm_map .map_box .dot.shanxi1 {
  top: 45%;
  right: 30.9%;
}
.comm_map .map_box .dot.shanxi1 span {
  top: 100%;
  left: -10%;
}
.comm_map .map_box .dot.zhejiang {
  top: 69%;
  right: 13.72%;
}
.comm_map .map_box .dot.zhejiang span {
  top: -100%;
  left: -10%;
}
.comm_map .map_box .dot.liaoning {
  top: 32.6%;
  right: 14.3%;
}
.comm_map .map_box .dot.liaoning span {
  top: 2px;
  left: 120%;
}
.comm_map .map_box .dot.shandong {
  top: 48%;
  right: 22%;
}
.comm_map .map_box .dot.shandong span {
  top: 0;
  left: 120%;
}
.comm_map .map_box .dot.jiangsu {
  top: 57.6%;
  right: 15%;
}
.comm_map .map_box .dot.jiangsu span {
  top: 100%;
  left: -10%;
}
.comm_map .map_box .dot.hebei {
  top: 43%;
  right: 25.3%;
}
.comm_map .map_box .dot.hebei span {
  top: 100%;
  left: -10%;
}
.comm_map .s_map_box {
  width: 9.7%;
  display: inline-block;
  vertical-align: bottom;
  margin-bottom: 20px;
}
.comm_map .s_map_box img {
  display: block;
  width: 100%;
}
.comm_map .oversea_box {
  display: inline-block;
  vertical-align: bottom;
  width: 20.8%;
  margin-left: 1.5%;
  margin-bottom: 4vw;
}
.comm_map .oversea_box .img {
  position: relative;
  cursor: pointer;
}
.comm_map .oversea_box .img img {
  display: block;
  width: 100%;
}
.comm_map .oversea_box .img img.hide {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  -webkit-transition: opacity 0.3s ease;
  -moz-transition: opacity 0.3s ease;
  -ms-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.comm_map .oversea_box .img .dot {
  top: 42%;
  right: 21.6%;
}
.comm_map .oversea_box .img .dot span {
  bottom: 100%;
  right: 0;
}
.comm_map .oversea_box .img.active img.hide {
  opacity: 1;
}
.comm_map .oversea_box h3 {
  font-size: 18px;
  line-height: 1;
  color: #a6a6a6;
  text-align: center;
  margin-top: 20px;
}

.m_comm_map {
  display: none;
}

.fixed_map {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 15;
  display: none;
}
.fixed_map .bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.3);
  z-index: 1;
}
.fixed_map .close {
  position: absolute;
  width: 120px;
  height: 120px;
  left: 50%;
  top: 55vh;
  background-color: #5893d4;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url("../images/strategy/icon-6.png");
  border-radius: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  box-sizing: 0 20px 40px rgba(7, 49, 144, 0.3);
  cursor: pointer;
  z-index: 3;
}
.fixed_map .cont {
  width: 50%;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  background-color: #fff;
  z-index: 2;
}
.fixed_map .cont .top_box {
  position: relative;
}
.fixed_map .cont .top_box .item {
  height: 55vh;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.fixed_map .cont .top_box .slick-dots {
  position: absolute;
  bottom: -2.5vw;
  left: 0;
  right: 0;
  font-size: 0;
  text-align: center;
}
.fixed_map .cont .top_box .slick-dots li {
  display: inline-block;
  vertical-align: top;
  margin: 0 5px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background-color: #e6e6e6;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.fixed_map .cont .top_box .slick-dots li.slick-active {
  background-color: #073190;
}
.fixed_map .cont .top_box .slick-dots button {
  display: none;
}
.fixed_map .cont .bot_box {
  height: 45vh;
  padding: 10vh 6vw;
}
.fixed_map .cont .bot_box h3 {
  font-size: 40px;
  line-height: 1;
}
.fixed_map .cont .bot_box h3:after {
  content: '';
  width: 24px;
  height: 2px;
  background-color: #5893d4;
  display: block;
  margin: 30px 0;
}
.fixed_map .cont .bot_box .para {
  font-size: 16px;
  line-height: 24px;
  color: #a8a9ad;
  max-height: calc(25vh - 100px);
  overflow: auto;
}
.fixed_map .cont .bot_box .para p {
  width: 50%;
  float: left;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* sitemap */
.sitemap_page .section1 {
  padding: 6vw 0;
}
.sitemap_page .section1 .item {
  padding: 2vw 0;
  border-bottom: 1px solid #e6e6e6;
}
.sitemap_page .section1 a.btn {
  display: inline-block;
  vertical-align: middle;
  width: calc((100% - 120px) / 6);
  max-width: 220px;
  line-height: 60px;
  font-size: 18px;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-transition: color 0.3s ease, background 0.3s ease;
  -moz-transition: color 0.3s ease, background 0.3s ease;
  -ms-transition: color 0.3s ease, background 0.3s ease;
  transition: color 0.3s ease, background 0.3s ease;
}
.sitemap_page .section1 h3 {
  font-size: 0;
}
.sitemap_page .section1 h3 a.btn {
  display: inline-block;
  vertical-align: top;
  background-color: #073190;
  color: #fff;
  margin-right: 24px;
}
.sitemap_page .section1 .link {
  margin-top: 24px;
  font-size: 0;
}
.sitemap_page .section1 .link a.btn {
  background-color: #e6e6e6;
  margin-right: 24px;
  margin-top: 24px;
  color: #666;
}
@media screen and (min-width: 992px) {
  .sitemap_page .section1 .link a.btn:nth-of-type(1), .sitemap_page .section1 .link a.btn:nth-of-type(2), .sitemap_page .section1 .link a.btn:nth-of-type(3), .sitemap_page .section1 .link a.btn:nth-of-type(4), .sitemap_page .section1 .link a.btn:nth-of-type(5), .sitemap_page .section1 .link a.btn:nth-of-type(6) {
    margin-top: 0;
  }
  .sitemap_page .section1 .link a.btn:nth-of-type(6n) {
    margin-right: 0;
  }
  .sitemap_page .section1 .link a.btn:hover {
    background-color: #073190;
    color: #fff;
  }
}

/* legal */
.legal_page .section1 {
  padding: 6vw 0;
}
.legal_page .section1 .para {
  font-size: 18px;
  line-height: 2;
  color: #333;
}

/* contact */
.contact_page .title {
  font-size: 36px;
  line-height: 1;
  color: #073190;
  font-weight: bold;
}
.contact_page .section1 {
  padding: 6vw 0;
}
.contact_page .section1 .cont {
  margin-top: 40px;
  font-size: 0;
  display: flex;
}
.contact_page .section1 .left_box {
  width: 420px;
  display: inline-block;
  vertical-align: top;
}
.contact_page .section1 .left_box .item {
  border-bottom: 1px solid #e6e6e6;
  margin-top: 20px;
  padding-bottom: 20px;
}
.contact_page .section1 .left_box .item h3 {
  font-size: 24px;
  color: #333;
  line-height: 1;
}
.contact_page .section1 .left_box .item p {
  font-size: 18px;
  line-height: 20px;
  color: #808080;
  margin-top: 15px;
  padding-left: 28px;
  background-position: left center;
  background-repeat: no-repeat;
}
.contact_page .section1 .left_box .item:nth-of-type(1) {
  margin-top: 0;
}
.contact_page .section1 .left_box .item:nth-of-type(1) p {
  background-image: url("../images/icon-1.png");
}
.contact_page .section1 .left_box .item:nth-of-type(2) p {
  background-image: url("../images/icon-2.png");
}
.contact_page .section1 .left_box .item:nth-of-type(3) p {
  background-image: url("../images/icon-3.png");
}
.contact_page .section1 .left_box .item:nth-of-type(4) p {
  background-image: url("../images/icon-4.png");
}
.contact_page .section1 .left_box a {
  display: block;
  width: 240px;
  font-size: 16px;
  line-height: 60px;
  color: #fff;
  background-color: #073190;
  text-align: center;
  border-radius: 30px;
  margin-top: 3vw;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.contact_page .section1 .left_box a:after {
  content: '';
  width: 17px;
  height: 17px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url("../images/icon-5.png");
  display: inline-block;
  vertical-align: middle;
  margin: -3px 0 0 30px;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media screen and (min-width: 992px) {
  .contact_page .section1 .left_box a:hover {
    -webkit-transform: translateY(-5px);
    -moz-transform: translateY(-5px);
    -ms-transform: translateY(-5px);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(7, 49, 144, 0.3);
  }
  .contact_page .section1 .left_box a:hover:after {
    -webkit-transform: translateX(5px);
    -moz-transform: translateX(5px);
    -ms-transform: translateX(5px);
    transform: translateX(5px);
  }
}
.contact_page .section1 .right_box {
  width: calc(100% - 420px);
  display: inline-block;
  vertical-align: top;
  padding-left: 3vw;
}
.contact_page .section1 .right_box .map {
  height: 100%;
}
.contact_page .section2 {
  padding: 6vw 0;
  border-top: 1px solid #e6e6e6;
}
.contact_page .section2 .tip {
  font-size: 18px;
  color: #808080;
  margin: 20px 0;
}
.contact_page .section2 .form {
  font-size: 0;
}
@media screen and (min-width: 992px) {
  .contact_page .section2 .form .box {
    display: inline-block;
    vertical-align: top;
  }
  .contact_page .section2 .form .box:nth-of-type(1), .contact_page .section2 .form .box:nth-of-type(2), .contact_page .section2 .form .box:nth-of-type(3), .contact_page .section2 .form .box:nth-of-type(4) {
    width: calc((100% - 48px) / 3);
  }
  .contact_page .section2 .form .box:nth-of-type(1), .contact_page .section2 .form .box:nth-of-type(2), .contact_page .section2 .form .box:nth-of-type(4) {
    margin-right: 24px;
  }
  .contact_page .section2 .form .box:nth-of-type(5) {
    width: calc(66.66% - 12px);
  }
  .contact_page .section2 .form .box:nth-of-type(6) {
    width: 100%;
  }
}
.contact_page .section2 .form input, .contact_page .section2 .form textarea {
  font-size: 18px;
  color: #808080;
  display: block;
  width: 100%;
  border-bottom: 1px solid #e6e6e6;
  font-family: 'Microsoft YaHei';
}
.contact_page .section2 .form input {
  height: 5.2vw;
}
.contact_page .section2 .form textarea {
  height: 5.2vw;
  padding-top: 2vw;
  resize: none;
}
.contact_page .section2 .form button {
  width: 240px;
  line-height: 60px;
  font-size: 16px;
  color: #fff;
  background-color: #073190;
  border-radius: 30px;
  margin-top: 3vw;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media screen and (min-width: 992px) {
  .contact_page .section2 .form button:hover {
    -webkit-transform: translateY(-5px);
    -moz-transform: translateY(-5px);
    -ms-transform: translateY(-5px);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(7, 49, 144, 0.3);
  }
}

/* foreign */
.foreign_page .section1 {
  padding: 6vw 0;
}
.foreign_page .section1 .para {
  font-size: 18px;
  line-height: 2;
  color: #333333;
  text-align: center;
}
.foreign_page .section2 {
  padding-bottom: 6vw;
  font-size: 0;
}
.foreign_page .section2 .item {
  display: inline-block;
  vertical-align: top;
  width: 33.33%;
  height: 15vw;
  max-height: 270px;
  position: relative;
  text-align: center;
}
@media screen and (min-width: 992px) {
  .foreign_page .section2 .item:nth-of-type(odd) {
    background-color: #f7f7f7;
  }
  .foreign_page .section2 .item:nth-of-type(even) {
    background-color: #fff;
  }
}
.foreign_page .section2 .item .logo {
  height: 100%;
}
.foreign_page .section2 .item .txt {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(7, 49, 144, 0.9);
  opacity: 0;
  visibility: visible;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.foreign_page .section2 .item img {
  width: auto;
  max-width: 60%;
  max-height: 60%;
}
.foreign_page .section2 .item span {
  font-size: 24px;
  color: #fff;
}
.foreign_page .section2 .item:hover .txt {
  opacity: 1;
  visibility: visible;
}

/* news */
.news_group .section1 {
  padding: 2.5vw 0 6vw;
}
.news_group .section1 .items {
  margin-bottom: 40px;
}
.news_group .section1 .item {
  padding: 2vw 0;
  position: relative;
  border-bottom: 1px solid #e6e6e6;
  font-size: 0;
}
.news_group .section1 .item .img_block {
  width: 33.33%;
  display: inline-block;
  vertical-align: middle;
  overflow: hidden;
}
.news_group .section1 .item img {
  display: block;
  width: 100%;
  -webkit-transition: transform 0.3s ease;
  -moz-transition: transform 0.3s ease;
  -ms-transition: transform 0.3s ease;
  transition: transform 0.3s ease;
}
.news_group .section1 .item .txt_block {
  width: 66.66%;
  display: inline-block;
  vertical-align: middle;
  padding-left: 2vw;
}
.news_group .section1 .item h3 {
  font-size: 24px;
  color: #333;
  -webkit-transition: color 0.3s ease;
  -moz-transition: color 0.3s ease;
  -ms-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
.news_group .section1 .item p {
  font-size: 16px;
  line-height: 24px;
  color: #808080;
  height: 72px;
  overflow: hidden;
  margin: 24px 0;
}
.news_group .section1 .item .date {
  font-size: 18px;
  color: #808080;
  font-family: 'DINPro-Light';
}
@media screen and (min-width: 992px) {
  .news_group .section1 .item:after {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    height: 24px;
    background-position: center;
    background-repeat: no-repeat;
    background-image: url("../images/shadow.jpg");
    background-size: 100% 100%;
    opacity: 0;
    -webkit-transition: opacity 0.3s ease;
    -moz-transition: opacity 0.3s ease;
    -ms-transition: opacity 0.3s ease;
    transition: opacity 0.3s ease;
  }
  .news_group .section1 .item:hover img {
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
  }
  .news_group .section1 .item:hover h3 {
    color: #073190;
    font-weight: normal;
  }
  .news_group .section1 .item:hover:after {
    opacity: 1;
  }
}

.news_report .section1 {
  padding: 4.5vw 0 6vw;
}
.news_report .section1 .items {
  margin-bottom: 40px;
  font-size: 0;
}
.news_report .section1 .item {
  border: 1px solid #e6e6e6;
}
@media screen and (min-width: 992px) {
  .news_report .section1 .item {
    display: inline-block;
    vertical-align: top;
    width: calc((100% - 48px) / 3);
    margin: 24px 24px 0 0;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
  .news_report .section1 .item:nth-of-type(1), .news_report .section1 .item:nth-of-type(2), .news_report .section1 .item:nth-of-type(3) {
    margin-top: 0;
  }
  .news_report .section1 .item:nth-of-type(3n) {
    margin-right: 0;
  }
}
.news_report .section1 .item .img_block {
  overflow: hidden;
}
.news_report .section1 .item img {
  display: block;
  width: 100%;
  -webkit-transition: transform 0.3s ease;
  -moz-transition: transform 0.3s ease;
  -ms-transition: transform 0.3s ease;
  transition: transform 0.3s ease;
}
.news_report .section1 .item .txt_block {
  padding: 0 24px 0;
}
.news_report .section1 .item h3 {
  font-size: 24px;
  color: #333;
  line-height: 1.5;
  margin: 24px 0;
  height: 72px;
  overflow: hidden;
  -webkit-transition: color 0.3s ease;
  -moz-transition: color 0.3s ease;
  -ms-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
.news_report .section1 .item p {
  font-size: 16px;
  line-height: 24px;
  color: #808080;
  height: 72px;
  overflow: hidden;
}
.news_report .section1 .item .date {
  font-size: 18px;
  color: #808080;
  line-height: 1;
  font-family: 'DINPro-Light';
  padding: 24px 0;
  margin-top: 24px;
  border-top: 1px solid #e6e6e6;
}
@media screen and (min-width: 992px) {
  .news_report .section1 .item:hover {
    -webkit-transform: translateY(-10px);
    -moz-transform: translateY(-10px);
    -ms-transform: translateY(-10px);
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  }
  .news_report .section1 .item:hover img {
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
  }
  .news_report .section1 .item:hover h3 {
    color: #073190;
  }
}
.news_detail .section1 {
  padding: 7vw 0;
  background-position: center bottom;
  background-repeat: no-repeat;
  background-size: 100% auto;
  background-color: #073190;
  background-image: url("../images/img-161.jpg");
}
.news_detail .section1 h3 {
  font-size: 36px;
  color: #fff;
  line-height: 1;
}
.news_detail .section1 .date {
  font-size: 18px;
  line-height: 1;
  color: #fff;
  font-family: 'DINPro-Light';
  padding-left: 24px;
  background-position: left center;
  background-repeat: no-repeat;
  background-image: url("../images/icon-11.png");
  margin-top: 2vw;
}
.news_detail .section2 {
  font-size: 0;
  padding-bottom: 6vw;
  background: -webkit-linear-gradient(180deg, #f5f5f5, #fefefe 98%);
  background: -o-linear-gradient(180deg, #f5f5f5, #fefefe 98%);
  background: -moz-linear-gradient(180deg, #f5f5f5, #fefefe 98%);
  background: linear-gradient(180deg, #f5f5f5, #fefefe 98%);
}
.news_detail .section2 .left_block {
  width: 73%;
  display: inline-block;
  vertical-align: top;
  margin-top: -3vw;
}
.news_detail .section2 .bg_box {
  background-color: #fff;
  padding: 4.5vw;
}
.news_detail .section2 .cont {
  font-size: 16px;
  line-height: 2;
  color: #333333;
}
.news_detail .section2 .cont img {
  max-width: 100%;
}
.news_detail .section2 .back_btn {
  display: block;
  width: 120px;
  height: 120px;
  background-color: #073190;
  border-radius: 50%;
  margin: 3vw auto 0;
  text-align: center;
  box-shadow: 0 15px 30px rgba(7, 49, 144, 0.3);
}
.news_detail .section2 .back_btn span {
  display: block;
  font-size: 14px;
  color: #fff;
}
.news_detail .section2 .back_btn span:before {
  content: '';
  width: 32px;
  height: 24px;
  display: block;
  margin: 0 auto 5px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url("../images/return.png");
}
.news_detail .section2 .other_block {
  margin-top: 24px;
}
.news_detail .section2 .other_block .item {
  display: inline-block;
  vertical-align: top;
  width: calc(50% - 12px);
  padding: 1.5vw 2vw;
  border-top: 3px solid transparent;
  background-color: #fff;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.news_detail .section2 .other_block .item:nth-of-type(1) {
  border-color: #5893d4;
}
.news_detail .section2 .other_block .item:nth-of-type(2) {
  margin-left: 24px;
  border-color: #073190;
}
.news_detail .section2 .other_block .item span {
  font-size: 24px;
  color: #333;
}
.news_detail .section2 .other_block .item a {
  display: block;
  font-size: 16px;
  line-height: 24px;
  color: #333;
  height: 48px;
  margin-top: 10px;
  overflow: hidden;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media screen and (min-width: 992px) {
  .news_detail .section2 .other_block .item:hover {
    border-top-color: #073190;
    -webkit-transform: translateY(-5px);
    -moz-transform: translateY(-5px);
    -ms-transform: translateY(-5px);
    transform: translateY(-5px);
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
  }
  .news_detail .section2 .other_block .item:hover a {
    color: #073190;
  }
}
.news_detail .section2 .right_block {
  width: 27%;
  display: inline-block;
  vertical-align: top;
  margin-top: 4.5vw;
  padding-left: 4.5vw;
}
.news_detail .section2 .right_block h3 {
  font-size: 24px;
  color: #073190;
  line-height: 1;
  padding-bottom: 20px;
  border-bottom: 2px solid #d9d9d9;
}
.news_detail .section2 .right_block h3:before {
  content: '';
  width: 2px;
  height: 24px;
  display: inline-block;
  vertical-align: top;
  background-color: #073190;
  margin-right: 10px;
}
.news_detail .section2 .right_block .item {
  margin-top: 2vw;
}
.news_detail .section2 .right_block .item .tit {
  font-size: 16px;
  line-height: 24px;
  height: 48px;
  overflow: hidden;
  -webkit-transition: color 0.3s ease;
  -moz-transition: color 0.3s ease;
  -ms-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
.news_detail .section2 .right_block .item .date {
  font-size: 16px;
  color: #808080;
  font-family: 'DINPro-Light';
  margin-top: 10px;
}
.news_detail .section2 .right_block .item:hover .tit {
  color: #073190;
}

/* duty */
.duty_page .section1 {
  padding: 6vw 0 calc(6vw + 120px);
  position: relative;
  background-position: center bottom;
  background-repeat: no-repeat;
  background-size: 100% auto;
  background-image: url("../images/duty/img-2.jpg");
}
.duty_page .section1 .wrapper {
  position: static;
}
.duty_page .section1 .para {
  font-size: 18px;
  line-height: 2;
  color: #333;
  text-align: center;
}
.duty_page .section1 .box {
  width: 240px;
  height: 240px;
  margin: 0 auto;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  margin-top: -120px;
  border-radius: 0 60px 0 60px;
  background-color: #073190;
  text-align: center;
}
.duty_page .section1 .box .num {
  font-size: 16px;
  color: #fff;
}
.duty_page .section1 .box .num span {
  font-size: 48px;
  font-family: 'DINPro-Regular';
}
.duty_page .section1 .box p {
  font-size: 18px;
  color: #fff;
  margin-top: 10px;
}
.duty_page .section2 {
  padding: calc(6vw + 120px) 0 6vw;
  background: -webkit-linear-gradient(180deg, #f5f5f5, #fefefe 98%);
  background: -o-linear-gradient(180deg, #f5f5f5, #fefefe 98%);
  background: -moz-linear-gradient(180deg, #f5f5f5, #fefefe 98%);
  background: linear-gradient(180deg, #f5f5f5, #fefefe 98%);
}
.duty_page .section2 .items {
  font-size: 0;
  margin: 40px 0;
}
.duty_page .section2 .item {
  margin-top: 2vw;
  font-size: 0;
  background-color: #fff;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.duty_page .section2 .item:nth-of-type(1) {
  margin-top: 0;
}
.duty_page .section2 .item .img_block {
  width: 33.33%;
  display: inline-block;
  vertical-align: middle;
  overflow: hidden;
}
.duty_page .section2 .item img {
  display: block;
  width: 100%;
  -webkit-transition: transform 0.3s ease;
  -moz-transition: transform 0.3s ease;
  -ms-transition: transform 0.3s ease;
  transition: transform 0.3s ease;
}
.duty_page .section2 .item .txt_block {
  width: 66.66%;
  display: inline-block;
  vertical-align: middle;
  padding: 0 2vw;
}
.duty_page .section2 .item h3 {
  font-size: 24px;
  color: #333;
  -webkit-transition: color 0.3s ease;
  -moz-transition: color 0.3s ease;
  -ms-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
.duty_page .section2 .item p {
  font-size: 16px;
  line-height: 24px;
  color: #808080;
  height: 72px;
  overflow: hidden;
  margin: 24px 0;
}
.duty_page .section2 .item .date {
  font-size: 18px;
  color: #808080;
  font-family: 'DINPro-Light';
}
@media screen and (min-width: 992px) {
  .duty_page .section2 .item:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  }
  .duty_page .section2 .item:hover img {
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
  }
  .duty_page .section2 .item:hover h3 {
    color: #073190;
    font-weight: normal;
  }
  .duty_page .section2 .item:hover:after {
    opacity: 1;
  }
}

/* recruit */
.recruit_page .para {
  font-size: 18px;
  line-height: 2;
  color: #808080;
  margin: 40px auto;
  text-align: center;
}
.recruit_page .section1 {
  padding: 4.5vw 0 6vw;
}
.recruit_page .section1 .items {
  font-size: 0;
  max-width: 1200px;
  margin: 0 auto;
}
.recruit_page .section1 .item {
  display: inline-block;
  vertical-align: top;
}
.recruit_page .section1 .item img {
  display: block;
  width: 100%;
  -webkit-transition: transform 0.3s ease;
  -moz-transition: transform 0.3s ease;
  -ms-transition: transform 0.3s ease;
  transition: transform 0.3s ease;
}
.recruit_page .section1 .item:nth-of-type(1) {
  width: 40%;
}
.recruit_page .section1 .item:nth-of-type(2) {
  width: 58%;
  margin-left: 2%;
}
.recruit_page .section1 .item:nth-of-type(3), .recruit_page .section1 .item:nth-of-type(4), .recruit_page .section1 .item:nth-of-type(5) {
  width: 32%;
  margin-top: 2%;
}
.recruit_page .section1 .item:nth-of-type(4), .recruit_page .section1 .item:nth-of-type(5) {
  margin-left: 2%;
}
@media screen and (min-width: 992px) {
  .recruit_page .section1 .item:hover img {
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
  }
}
.recruit_page .section2 {
  padding: 6vw 0;
  background: -webkit-linear-gradient(180deg, #f5f5f5, #fefefe 98%);
  background: -o-linear-gradient(180deg, #f5f5f5, #fefefe 98%);
  background: -moz-linear-gradient(180deg, #f5f5f5, #fefefe 98%);
  background: linear-gradient(180deg, #f5f5f5, #fefefe 98%);
}
.recruit_page .section2 .items {
  font-size: 0;
  display: flex;
}
.recruit_page .section2 .item {
  display: inline-block;
  vertical-align: top;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-color: #fff;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.05);
  padding: 2.5vw 3.5vw;
}
@media screen and (min-width: 992px) {
  .recruit_page .section2 .item {
    width: calc((100% - 48px) / 3);
    margin-right: 24px;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
  .recruit_page .section2 .item:last-of-type {
    margin-right: 0;
  }
}
.recruit_page .section2 .item:nth-of-type(1) {
  background-image: url("../images/img-61.jpg");
}
.recruit_page .section2 .item:nth-of-type(2) {
  background-image: url("../images/img-71.jpg");
}
.recruit_page .section2 .item:nth-of-type(3) {
  background-image: url("../images/img-81.jpg");
}
.recruit_page .section2 .item p {
  font-size: 18px;
  line-height: 2;
  color: #808080;
}
@media screen and (min-width: 992px) {
  .recruit_page .section2 .item:hover {
    -webkit-transform: translateY(-10px);
    -moz-transform: translateY(-10px);
    -ms-transform: translateY(-10px);
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  }
}
.recruit_page .section2 .rec_box {
  background-color: #fff;
  padding: 6vw;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.05);
  margin-top: 3vw;
}
.recruit_page .section2 .filter {
  margin-top: 40px;
  font-size: 0;
  background-color: #f5f5f5;
  padding: 12px;
}
.recruit_page .section2 .filter .box {
  display: inline-block;
  vertical-align: top;
  position: relative;
}
.recruit_page .section2 .filter .box:nth-of-type(1) {
  width: 280px;
}
.recruit_page .section2 .filter .box:nth-of-type(1):after {
  content: '';
  width: 11px;
  height: 7px;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url("../images/icon-1.png");
  position: absolute;
  right: 12px;
  top: 50%;
  margin-top: -3px;
}
.recruit_page .section2 .filter .box:nth-of-type(1) input {
  cursor: pointer;
}
.recruit_page .section2 .filter .box:nth-of-type(2) {
  margin: 0 12px;
  width: calc(100% - 464px);
}
.recruit_page .section2 .filter .box:nth-of-type(3) {
  width: 160px;
}
.recruit_page .section2 .filter .box input {
  display: block;
  width: 100%;
  height: 36px;
  padding: 0 12px;
  font-size: 14px;
  color: #333;
}
.recruit_page .section2 .filter .box button {
  display: block;
  width: 100%;
  height: 36px;
  font-size: 14px;
  color: #fff;
  background-color: #073190;
  cursor: pointer;
}
.recruit_page .section2 .filter .box ul {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  border-top: 1px solid #f5f5f5;
  background-color: #fff;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  display: none;
}
.recruit_page .section2 .filter .box ul li {
  padding: 0 12px;
  line-height: 36px;
  font-size: 14px;
  line-height: 36px;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.recruit_page .section2 .filter .box ul li:hover {
  background-color: #073190;
  color: #fff;
}
.recruit_page .section2 .filter .box.open ul {
  display: block;
}
.recruit_page .section2 .lists_box .head_box {
  font-size: 0;
}
.recruit_page .section2 .lists_box .head_box span {
  display: inline-block;
  vertical-align: top;
  text-align: center;
  font-size: 16px;
  color: #333;
  line-height: 60px;
}
.recruit_page .section2 .lists_box .head_box span:nth-of-type(1) {
  width: 30%;
}
.recruit_page .section2 .lists_box .head_box span:nth-of-type(2), .recruit_page .section2 .lists_box .head_box span:nth-of-type(3), .recruit_page .section2 .lists_box .head_box span:nth-of-type(4), .recruit_page .section2 .lists_box .head_box span:nth-of-type(5) {
  width: 17.5%;
}
.recruit_page .section2 .lists_box .list {
  font-size: 0;
  cursor: pointer;
}
.recruit_page .section2 .lists_box .list:nth-of-type(odd) {
  background-color: #f5f5f5;
}
.recruit_page .section2 .lists_box .list:nth-of-type(even) {
  background-color: #fff;
}
.recruit_page .section2 .lists_box .list .hide {
  display: none !important;
}
.recruit_page .section2 .lists_box .list span {
  display: inline-block;
  vertical-align: top;
  text-align: center;
  font-size: 14px;
  color: #333;
  line-height: 60px;
  padding: 0 10px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-transition: color 0.3s ease;
  -moz-transition: color 0.3s ease;
  -ms-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
.recruit_page .section2 .lists_box .list span:nth-of-type(1) {
  width: 30%;
}
.recruit_page .section2 .lists_box .list span:nth-of-type(2), .recruit_page .section2 .lists_box .list span:nth-of-type(3), .recruit_page .section2 .lists_box .list span:nth-of-type(4), .recruit_page .section2 .lists_box .list span:nth-of-type(5) {
  width: 17.5%;
}
@media screen and (min-width: 992px) {
  .recruit_page .section2 .lists_box .list {
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
  .recruit_page .section2 .lists_box .list:hover {
    margin-left: -20px;
    margin-right: -20px;
  }
  .recruit_page .section2 .lists_box .list:hover span {
    color: #073190;
  }
}

.recruit_popups {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 12;
  display: none;
}
.recruit_popups .bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.3);
  z-index: 1;
}
.recruit_popups .close {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url("../images/close.png");
  position: absolute;
  top: 1.5vw;
  right: 1.5vw;
  cursor: pointer;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}
.recruit_popups .wrapper {
  background-color: #fff;
}
.recruit_popups .cell_box {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
}
.recruit_popups .pop_item {
  padding: 8vh 6vw;
  background-position: center bottom;
  background-repeat: no-repeat;
  background-color: #073190;
  background-image: url("../images/img-161.jpg");
  background-size: 100% auto;
}
.recruit_popups .pop_item .tit {
  font-size: 36px;
  color: #fff;
  line-height: 1;
}
.recruit_popups .pop_item .s_span {
  font-size: 0;
  margin-top: 2vw;
}
.recruit_popups .pop_item .s_span span {
  display: inline-block;
  vertical-align: top;
  width: 21.333%;
  font-size: 14px;
  line-height: 32px;
  color: #fff;
  padding-right: 10px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.recruit_popups .pop_item .s_span span:nth-of-type(4n-3) {
  width: 36%;
}
.recruit_popups .boxes {
  padding: 4.5vh 2vw 10vh 6vw;
}
.recruit_popups .scroll {
  padding-right: 4vw;
  max-height: 36vh;
  overflow: auto;
}
.recruit_popups .box {
  padding: 30px 0;
  border-top: 1px solid #e6e6e6;
}
.recruit_popups .box:first-of-type {
  border: none;
}
.recruit_popups .box h4 {
  font-size: 24px;
  color: #333;
  line-height: 1;
}
.recruit_popups .box .para {
  font-size: 14px;
  line-height: 36px;
  color: #808080;
  margin-top: 15px;
}
.recruit_popups .box .para a {
  color: #073190;
}
.recruit_popups a.apply {
  display: block;
  width: 25vw;
  font-size: 18px;
  color: #fff;
  line-height: 60px;
  text-align: center;
  background-color: #073190;
}

/* industry */
.industry_4 .section1 {
  padding: 6vw 0;
}
.industry_4 .section1 .h3 {
  text-align: center;
  font-size: 36px;
  color: #333;
}
.industry_4 .section1 h4 {
  text-align: center;
  font-size: 24px;
  color: #333;
  margin-top: 20px;
}
.industry_4 .section1 .items {
  margin-top: 6vw;
  font-size: 0;
  padding: 0 6vw;
}
.industry_4 .section1 .item {
  display: inline-block;
  vertical-align: top;
  width: 33.33%;
  text-align: center;
}
.industry_4 .section1 .item .num, .industry_4 .section1 .item p {
  font-size: 18px;
  color: #808080;
  line-height: 1;
}
.industry_4 .section1 .item .num span {
  display: inline-block;
  vertical-align: top;
  font-size: 60px;
  line-height: 1;
  color: #073190;
  font-family: 'DINPro-Medium';
}
.industry_4 .section1 .item p {
  margin-top: 20px;
}
.industry_4 .section2 {
  background-color: #f5f5f5;
  padding: 6vw 0;
}
.industry_4 .section2 .items {
  font-size: 0;
  margin-top: 4vw;
}
.industry_4 .section2 .item {
  display: inline-block;
  vertical-align: top;
  width: 16.66%;
  text-align: center;
  padding: 0 10px;
  -webkit-transition: transform 0.3s ease;
  -moz-transition: transform 0.3s ease;
  -ms-transition: transform 0.3s ease;
  transition: transform 0.3s ease;
}
.industry_4 .section2 .item i {
  display: block;
  width: 124px;
  height: 124px;
  margin: 0 auto;
  border-radius: 50%;
  border: 7px solid #dde1eb;
  background-color: #fff;
  background-position: center;
  background-repeat: no-repeat;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.industry_4 .section2 .item h3 {
  font-size: 24px;
  color: #333;
  margin-top: 2vw;
}
.industry_4 .section2 .item p {
  font-size: 16px;
  color: #808080;
  margin-top: 20px;
}
.industry_4 .section2 .item:hover {
  -webkit-transform: translateY(-10px);
  -moz-transform: translateY(-10px);
  -ms-transform: translateY(-10px);
  transform: translateY(-10px);
}
.industry_4 .section2 .item:hover i {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
.industry_4 .section3 {
  padding: 13vw 0;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
}
.industry_4 .section3 h3 {
  text-align: center;
  font-size: 36px;
  color: #fff;
}

.industry_1_detail .inner_banner .tit {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  font-size: 48px;
  font-weight: bold;
  color: #fff;
  line-height: 1;
  padding: 4.5vw 8vw;
  border: 6px solid #fff;
}
.industry_1_detail .section1 {
  padding: 6vw 0;
  font-size: 0;
}
.industry_1_detail .section1 .left_box {
  width: 54.166%;
  display: inline-block;
  vertical-align: middle;
  padding: 5vw 8vw 5vw 5vw;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.05);
}
.industry_1_detail .section1 .left_box h3 {
  font-size: 40px;
  line-height: 1;
  color: #333;
}
.industry_1_detail .section1 .left_box h3:after {
  content: '';
  width: 24px;
  height: 2px;
  background-color: #5893d4;
  display: block;
  margin-top: 24px;
}
.industry_1_detail .section1 .left_box .para {
  font-size: 18px;
  line-height: 32px;
  color: #a8a9ad;
  margin-top: 20px;
}
.industry_1_detail .section1 .right_box {
  width: 45.834%;
  display: inline-block;
  vertical-align: middle;
}
.industry_1_detail .section1 .right_box .img_block {
  margin-left: -3vw;
  overflow: hidden;
}
.industry_1_detail .section1 .right_box img {
  display: block;
  width: 100%;
  -webkit-transition: transform 0.3s ease;
  -moz-transition: transform 0.3s ease;
  -ms-transition: transform 0.3s ease;
  transition: transform 0.3s ease;
}
@media screen and (min-width: 992px) {
  .industry_1_detail .section1 .right_box:hover img {
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
  }
}

.industry_2_detail .inner_banner .box {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.industry_2_detail .inner_banner .tit {
  font-size: 48px;
  font-weight: bold;
  color: #fff;
  line-height: 1;
  padding: 4.5vw 8vw;
  border: 6px solid #fff;
  border-bottom: none;
  white-space: nowrap;
}
.industry_2_detail .inner_banner p {
  display: flex;
  align-items: center;
  margin-top: -36px;
}
.industry_2_detail .inner_banner p:before, .industry_2_detail .inner_banner p:after {
  content: '';
  height: 6px;
  background-color: #fff;
  width: 100%;
}
.industry_2_detail .inner_banner p span {
  font-size: 24px;
  line-height: 36px;
  color: #fff;
  text-align: center;
  padding: 0 30px;
  flex-shrink: 0;
}
.industry_2_detail .section1 {
  padding: 6vw 0;
}
.industry_2_detail .section1 .cont {
  width: 80%;
  max-width: 960px;
  margin: 0 auto;
}
.industry_2_detail .section1 h3 {
  font-size: 40px;
  line-height: 1;
  color: #333;
  text-align: center;
}
.industry_2_detail .section1 h3:after {
  content: '';
  width: 24px;
  height: 2px;
  background-color: #5893d4;
  display: block;
  margin: 24px auto 0;
}
.industry_2_detail .section1 .para {
  font-size: 18px;
  line-height: 32px;
  color: #a8a9ad;
  margin-top: 20px;
}
.industry_2_detail .section1 .img_block {
  margin-top: 4vw;
  overflow: hidden;
}
.industry_2_detail .section1 .img_block img {
  display: block;
  width: 100%;
  -webkit-transition: transform 0.3s ease;
  -moz-transition: transform 0.3s ease;
  -ms-transition: transform 0.3s ease;
  transition: transform 0.3s ease;
}
@media screen and (min-width: 992px) {
  .industry_2_detail .section1 .img_block:hover img {
    -webkit-transform: scale(1.05);
    -moz-transform: scale(1.05);
    -ms-transform: scale(1.05);
    transform: scale(1.05);
  }
}

.industry_list .section1 {
  padding: 4.5vw 0 6vw;
}
.industry_list .section1 .items {
  font-size: 0;
  margin-bottom: 3vw;
}
.industry_list .section1 .item {
  position: relative;
  padding-bottom: 222px;
}
@media screen and (min-width: 992px) {
  .industry_list .section1 .item {
    display: inline-block;
    vertical-align: top;
    width: calc((100% - 48px) / 3);
    margin: 24px 24px 0 0;
  }
  .industry_list .section1 .item:nth-of-type(1), .industry_list .section1 .item:nth-of-type(2), .industry_list .section1 .item:nth-of-type(3) {
    margin-top: 0;
  }
  .industry_list .section1 .item:nth-of-type(3n) {
    margin-right: 0;
  }
}
.industry_list .section1 .item .img_block {
  overflow: hidden;
}
.industry_list .section1 .item img {
  display: block;
  width: 100%;
  -webkit-transition: transform 0.3s ease;
  -moz-transition: transform 0.3s ease;
  -ms-transition: transform 0.3s ease;
  transition: transform 0.3s ease;
}
.industry_list .section1 .item .txt_block {
  position: absolute;
  bottom: 0;
  left: 24px;
  right: 24px;
  padding: 30px;
  background-color: #fff;
  box-shadow: 0 -40px 40px rgba(0, 0, 0, 0.1);
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.industry_list .section1 .item h3 {
  font-size: 24px;
  line-height: 1;
  color: #333;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.industry_list .section1 .item h3:after {
  content: '';
  width: 24px;
  height: 2px;
  background-color: #073190;
  display: block;
  margin: 24px auto;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.industry_list .section1 .item p {
  font-size: 16px;
  line-height: 28px;
  color: #808080;
  height: 112px;
  overflow: hidden;
  text-align: center;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.industry_list .section1 .item p.tal {
  text-align: left;
}
.industry_list .section1 .item span {
  position: absolute;
  bottom: 0;
  left: 30px;
  right: 30px;
  display: block;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  text-align: center;
  font-size: 14px;
  line-height: 50px;
  color: #fff;
  opacity: 0;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.industry_list .section1 .item span:after {
  content: '';
  width: 9px;
  height: 14px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url("../images/icon-7.png");
  display: inline-block;
  vertical-align: middle;
  margin: -3px 0 0 20px;
}
@media screen and (min-width: 992px) {
  .industry_list .section1 .item:hover .txt_block {
    background-color: #073190;
    padding: 30px 30px 80px;
  }
  .industry_list .section1 .item:hover img {
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
  }
  .industry_list .section1 .item:hover h3, .industry_list .section1 .item:hover p {
    color: #fff;
  }
  .industry_list .section1 .item:hover h3:after {
    background-color: #fff;
  }
  .industry_list .section1 .item:hover span {
    opacity: 1;
  }
}

.industry_3 .section1 {
  padding: 6vw 0;
}
.industry_3 .section1 .para {
  font-size: 18px;
  line-height: 2;
  color: #333;
  margin-top: 24px;
  text-align: center;
}
.industry_3 .section1 .items {
  font-size: 0;
  margin-top: 6vw;
}
.industry_3 .section1 .item {
  display: inline-block;
  vertical-align: top;
  width: 25%;
  text-align: center;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.industry_3 .section1 .item i {
  display: block;
  height: 80px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
.industry_3 .section1 .item h3 {
  font-size: 18px;
  color: #333;
  margin-top: 2.5vw;
}
@media screen and (min-width: 992px) {
  .industry_3 .section1 .item:hover {
    -webkit-transform: translateY(-10px);
    -moz-transform: translateY(-10px);
    -ms-transform: translateY(-10px);
    transform: translateY(-10px);
  }
}
.industry_3 .section2 {
  background-color: #f5f5f5;
  padding: 6vw 0;
}
.industry_3 .section2 .items {
  font-size: 0;
  margin-top: 40px;
}
.industry_3 .section2 .item {
  display: inline-block;
  vertical-align: top;
  border-left: 1px solid #cccccc;
  -webkit-transition: transform 0.3s ease;
  -moz-transition: transform 0.3s ease;
  -ms-transition: transform 0.3s ease;
  transition: transform 0.3s ease;
}
@media screen and (min-width: 992px) {
  .industry_3 .section2 .item {
    width: calc((100% - 72px) / 4);
    margin-right: 24px;
  }
  .industry_3 .section2 .item:last-of-type {
    margin-right: 0;
  }
}
.industry_3 .section2 .item .num {
  padding: 0 0 2vw 24px;
  font-size: 24px;
  color: #073190;
  line-height: 1;
  font-family: 'DINPro-Bold';
}
.industry_3 .section2 .item .img_block {
  overflow: hidden;
}
.industry_3 .section2 .item img {
  display: block;
  width: 100%;
  -webkit-transition: transform 0.3s ease;
  -moz-transition: transform 0.3s ease;
  -ms-transition: transform 0.3s ease;
  transition: transform 0.3s ease;
}
.industry_3 .section2 .item h3 {
  padding: 24px 0 2vw 24px;
  font-size: 18px;
  line-height: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media screen and (min-width: 992px) {
  .industry_3 .section2 .item:hover {
    -webkit-transform: translateY(-10px);
    -moz-transform: translateY(-10px);
    -ms-transform: translateY(-10px);
    transform: translateY(-10px);
  }
  .industry_3 .section2 .item:hover img {
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
  }
}
.industry_3 .section3 {
  padding: 6vw 0;
}
.industry_3 .section3 .cont {
  margin-top: 3vw;
  position: relative;
}
.industry_3 .section3 .cont .item {
  text-align: center;
}
@media screen and (min-width: 992px) {
  .industry_3 .section3 .cont .item {
    width: 27.28%;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
  }
  .industry_3 .section3 .cont .item:nth-of-type(1) {
    left: 0;
  }
  .industry_3 .section3 .cont .item:nth-of-type(2) {
    right: 0;
  }
}
.industry_3 .section3 .cont .item .num {
  font-size: 24px;
}
.industry_3 .section3 .cont .item .num span {
  display: inline-block;
  vertical-align: middle;
  font-size: 100px;
  color: #073190;
  font-family: 'DINPro-Regular';
}
.industry_3 .section3 .cont .item p {
  font-size: 24px;
  color: #333;
  margin-top: 20px;
}
.industry_3 .section3 .cont .center_box {
  width: 44.44%;
  margin: 0 auto;
  position: relative;
}
.industry_3 .section3 .cont .center_box .ring {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  opacity: .3;
}
.industry_3 .section3 .cont .center_box .ring span {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 50%;
  border: 1px solid #e8e8e8;
  -webkit-transform: scale(0.7);
  -moz-transform: scale(0.7);
  -ms-transform: scale(0.7);
  transform: scale(0.7);
  -webkit-animation: ringScale 1.5s linear infinite;
  -moz-animation: ringScale 1.5s linear infinite;
  -ms-animation: ringScale 1.5s linear infinite;
  animation: ringScale 1.5s linear infinite;
}
.industry_3 .section3 .cont .center_box .ring span:nth-of-type(2) {
  animation-delay: .5s;
}
.industry_3 .section3 .cont .center_box .ring span:nth-of-type(3) {
  animation-delay: 1s;
}
.industry_3 .section3 .cont .center_box .imgs {
  position: relative;
  z-index: 2;
}
.industry_3 .section3 .cont .center_box img {
  display: block;
  width: 100%;
}
.industry_3 .section3 .color_box {
  font-size: 0;
  margin-top: 6vw;
}
.industry_3 .section3 .color_box .item {
  display: inline-block;
  vertical-align: top;
  width: 16.66%;
}
.industry_3 .section3 .color_box .item span {
  display: block;
  width: 24px;
  height: 12px;
}
.industry_3 .section3 .color_box .item h3 {
  font-size: 20px;
  color: #333;
  margin-top: 20px;
}
.industry_3 .section4 {
  padding: 6vw 0;
  background-color: #f5f5f5;
}
.industry_3 .section4 .items {
  font-size: 0;
  margin-top: 40px;
}
.industry_3 .section4 .item {
  display: inline-block;
  vertical-align: top;
  text-align: center;
  -webkit-transition: transform 0.3s ease;
  -moz-transition: transform 0.3s ease;
  -ms-transition: transform 0.3s ease;
  transition: transform 0.3s ease;
}
@media screen and (min-width: 992px) {
  .industry_3 .section4 .item {
    width: calc((100% - 72px) / 4);
    margin-right: 24px;
  }
  .industry_3 .section4 .item:last-of-type {
    margin-right: 0;
  }
}
.industry_3 .section4 .item .img_block {
  overflow: hidden;
}
.industry_3 .section4 .item img {
  display: block;
  width: 100%;
  -webkit-transition: transform 0.3s ease;
  -moz-transition: transform 0.3s ease;
  -ms-transition: transform 0.3s ease;
  transition: transform 0.3s ease;
}
.industry_3 .section4 .item h3 {
  font-size: 18px;
  line-height: 32px;
  color: #333;
  margin-top: 15px;
}
@media screen and (min-width: 992px) {
  .industry_3 .section4 .item:hover {
    -webkit-transform: translateY(-10px);
    -moz-transform: translateY(-10px);
    -ms-transform: translateY(-10px);
    transform: translateY(-10px);
  }
  .industry_3 .section4 .item:hover img {
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
  }
}
.industry_3 .section5 {
  padding: 6vw 0;
  background-position: center 80%;
  background-repeat: no-repeat;
  background-size: 100% auto;
  background-image: url("../images/img-27.jpg");
}
.industry_3 .section5 .img_block {
  width: 38%;
  max-width: 540px;
  margin: 40px auto 0;
}
.industry_3 .section5 .img_block img {
  display: block;
  width: 100%;
}
.industry_3 .section6 {
  padding: 7vw 0;
  border-top: 1px solid #e6e6e6;
}
.industry_3 .section6 .items {
  font-size: 0;
  text-align: center;
}
.industry_3 .section6 .item {
  width: 25%;
  display: inline-block;
  vertical-align: top;
  margin-top: 4vw;
}
@media screen and (min-width: 992px) {
  .industry_3 .section6 .item:nth-of-type(1), .industry_3 .section6 .item:nth-of-type(2), .industry_3 .section6 .item:nth-of-type(3), .industry_3 .section6 .item:nth-of-type(4) {
    margin-top: 0;
  }
}
.industry_3 .section6 .item i {
  display: block;
  margin: 0 auto;
  height: 80px;
  background-position: center;
  background-repeat: no-repeat;
}
.industry_3 .section6 .item .line {
  width: 24px;
  height: 2px;
  background-color: #5893d5;
  margin: 2vw auto;
}
.industry_3 .section6 .item .num {
  font-size: 14px;
  color: #808080;
}
.industry_3 .section6 .item .num span {
  font-size: 48px;
  color: #333;
  line-height: 1;
  font-family: 'DINPro-Medium';
  display: inline-block;
}
.industry_3 .section6 .item p {
  font-size: 18px;
  color: #808080;
  margin-top: 10px;
}

.industry_index .inner_tit {
  text-align: left;
}
.industry_index a.more {
  display: block;
  width: 240px;
  font-size: 16px;
  line-height: 60px;
  color: #fff;
  background-color: #073190;
  text-align: center;
  border-radius: 30px;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.industry_index a.more:after {
  content: '';
  width: 17px;
  height: 17px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url("../images/icon-5.png");
  display: inline-block;
  vertical-align: middle;
  margin: -3px 0 0 20px;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media screen and (min-width: 992px) {
  .industry_index a.more:hover {
    -webkit-transform: translateY(-5px);
    -moz-transform: translateY(-5px);
    -ms-transform: translateY(-5px);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(7, 49, 144, 0.3);
  }
  .industry_index a.more:hover:after {
    -webkit-transform: translateX(5px);
    -moz-transform: translateX(5px);
    -ms-transform: translateX(5px);
    transform: translateX(5px);
  }
}
.industry_index .section1 {
  position: relative;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url("../images/img-41.jpg");
  overflow: hidden;
}
.industry_index .section1 .cont_box {
  width: 37.5%;
  padding: 6vw 0 7.5vw;
}
.industry_index .section1 .slick {
  margin-top: 40px;
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.1);
  margin-bottom: 60px;
  background-color: #fff;
}
.industry_index .section1 .slick .item h3 {
  font-size: 24px;
  color: #fff;
  line-height: 60px;
  padding-left: 80px;
  background-color: #073190;
  background-position: 40px center;
  background-repeat: no-repeat;
  background-size: auto 32px;
}
.industry_index .section1 .slick .item .scroll {
  height: 470px;
  overflow: auto;
}
.industry_index .section1 .slick .item .dots {
  padding: 3vw 40px;
}
.industry_index .section1 .slick .item .dot {
  margin-top: 30px;
}
.industry_index .section1 .slick .item .dot:nth-of-type(1) {
  margin-top: 0;
}
.industry_index .section1 .slick .item .dot h4 {
  font-size: 24px;
  line-height: 1;
  color: #333;
}
.industry_index .section1 .slick .item .dot .para {
  font-size: 16px;
  line-height: 24px;
  color: #808080;
  margin-top: 15px;
}
.industry_index .section1 .slick .item .dot .para p {
  position: relative;
  padding-left: 12px;
}
.industry_index .section1 .slick .item .dot .para p:before {
  content: '';
  width: 4px;
  height: 4px;
  background-color: #808080;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 10px;
}
.industry_index .section1 .slick-dots {
  position: absolute;
  bottom: -3vw;
  left: 0;
  right: 0;
  font-size: 0;
  text-align: center;
}
.industry_index .section1 .slick-dots li {
  display: inline-block;
  vertical-align: top;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid #073190;
  margin: 0 5px;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.industry_index .section1 .slick-dots li.slick-active {
  background-color: #073190;
}
.industry_index .section1 .slick-dots button {
  display: none;
}
.industry_index .section1 .gear {
  position: absolute;
  cursor: pointer;
}
.industry_index .section1 .gear img {
  display: block;
  width: 100%;
}
.industry_index .section1 .gear .circle {
  width: 48%;
  height: 48%;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  border-radius: 50%;
  overflow: hidden;
}
.industry_index .section1 .gear .circle .bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  border-radius: 50%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 0;
  -webkit-transition: opacity 0.3s ease;
  -moz-transition: opacity 0.3s ease;
  -ms-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.industry_index .section1 .gear .circle .txt {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  text-align: center;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.industry_index .section1 .gear .circle .txt i {
  display: block;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.industry_index .section1 .gear .circle .txt h3 {
  margin-top: 10px;
  color: #073190;
  -webkit-transition: color 0.3s ease;
  -moz-transition: color 0.3s ease;
  -ms-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
.industry_index .section1 .gear:nth-of-type(1) {
  width: 35.52vw;
  right: 2.5vw;
  top: -3vw;
}
.industry_index .section1 .gear:nth-of-type(1) img {
  -webkit-animation: gearRotate1 20s linear infinite;
  -moz-animation: gearRotate1 20s linear infinite;
  -ms-animation: gearRotate1 20s linear infinite;
  animation: gearRotate1 20s linear infinite;
}
.industry_index .section1 .gear:nth-of-type(1) .txt i {
  height: 3.75vw;
  background-image: url("../images/icon-16.png");
}
.industry_index .section1 .gear:nth-of-type(1) .txt h3 {
  font-size: 30px;
}
.industry_index .section1 .gear:nth-of-type(1).active .txt i {
  background-image: url("../images/icon-16-on.png");
}
.industry_index .section1 .gear:nth-of-type(2) {
  width: 18.43vw;
  right: 36.4vw;
  top: 18vw;
}
.industry_index .section1 .gear:nth-of-type(2) img {
  -webkit-animation: gearRotate2 7s linear infinite;
  -moz-animation: gearRotate2 7s linear infinite;
  -ms-animation: gearRotate2 7s linear infinite;
  animation: gearRotate2 7s linear infinite;
}
.industry_index .section1 .gear:nth-of-type(2) .txt i {
  height: 3.125vw;
  background-image: url("../images/icon-17.png");
}
.industry_index .section1 .gear:nth-of-type(2) .txt h3 {
  font-size: 22px;
}
.industry_index .section1 .gear:nth-of-type(2).active .txt i {
  background-image: url("../images/icon-17-on.png");
}
.industry_index .section1 .gear:nth-of-type(3) {
  width: 19.68vw;
  right: 21.5vw;
  top: 31.77vw;
}
.industry_index .section1 .gear:nth-of-type(3) img {
  -webkit-animation: gearRotate1 7s linear infinite;
  -moz-animation: gearRotate1 7s linear infinite;
  -ms-animation: gearRotate1 7s linear infinite;
  animation: gearRotate1 7s linear infinite;
}
.industry_index .section1 .gear:nth-of-type(3) .txt i {
  height: 3.125vw;
  background-image: url("../images/icon-18.png");
}
.industry_index .section1 .gear:nth-of-type(3) .txt h3 {
  font-size: 22px;
}
.industry_index .section1 .gear:nth-of-type(3).active .txt i {
  background-image: url("../images/icon-18-on.png");
}
.industry_index .section1 .gear.active .circle .bg {
  opacity: 1;
}
.industry_index .section1 .gear.active .circle .txt {
  background-color: rgba(7, 49, 144, 0.3);
}
.industry_index .section1 .gear.active .circle .txt h3 {
  color: #fff;
}
.industry_index .section2 {
  padding: 6vw 0;
}
.industry_index .section2.bg {
  background-color: #f2f2f2;
}
.industry_index .section2 .para {
  font-size: 18px;
  line-height: 30px;
  color: #808080;
  padding: 30px 0;
  margin-bottom: 30px;
  border-bottom: 1px solid #d9d9d9;
}
.industry_index .section2 .tip {
  font-size: 24px;
  color: #333;
  line-height: 1;
  font-weight: bold;
}
.industry_index .section2 .items {
  font-size: 0;
  margin-top: 24px;
}
.industry_index .section2 .item {
  display: inline-block;
  vertical-align: top;
}
@media screen and (min-width: 992px) {
  .industry_index .section2 .item {
    width: calc((100% - 72px) / 4);
    margin-right: 24px;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
  .industry_index .section2 .item:last-of-type {
    margin-right: 0;
  }
}
.industry_index .section2 .item .img_block {
  overflow: hidden;
}
.industry_index .section2 .item img {
  display: block;
  width: 100%;
  -webkit-transition: transform 0.3s ease;
  -moz-transition: transform 0.3s ease;
  -ms-transition: transform 0.3s ease;
  transition: transform 0.3s ease;
}
.industry_index .section2 .item h3 {
  font-size: 18px;
  color: #333;
  line-height: 1;
  margin-top: 24px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-transition: color 0.3s ease;
  -moz-transition: color 0.3s ease;
  -ms-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
@media screen and (min-width: 992px) {
  .industry_index .section2 .item:hover {
    -webkit-transform: translateY(-10px);
    -moz-transform: translateY(-10px);
    -ms-transform: translateY(-10px);
    transform: translateY(-10px);
  }
  .industry_index .section2 .item:hover img {
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
  }
  .industry_index .section2 .item:hover h3 {
    color: #073190;
  }
}
.industry_index .section2 a.more {
  margin-top: 4vw;
}
.industry_index .section3 {
  padding: 13vw 0;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
}
.industry_index .section3 .inner_tit {
  color: #fff;
}
.industry_index .section3 .para {
  font-size: 18px;
  line-height: 30px;
  color: #fff;
  margin-top: 30px;
}
.industry_index .section3 a.more {
  margin-top: 8vw;
}

/* about */
.about_honor .section1 {
  padding: 4.5vw 0;
  font-size: 0;
}
.about_honor .section1 .item {
  display: inline-block;
  vertical-align: top;
}
@media screen and (min-width: 992px) {
  .about_honor .section1 .item {
    width: calc((100% - 48px) / 3);
    margin: 24px 24px 0 0;
    -webkit-transition: transform 0.3s ease;
    -moz-transition: transform 0.3s ease;
    -ms-transition: transform 0.3s ease;
    transition: transform 0.3s ease;
  }
  .about_honor .section1 .item:nth-of-type(1), .about_honor .section1 .item:nth-of-type(2), .about_honor .section1 .item:nth-of-type(3) {
    margin-top: 0;
  }
  .about_honor .section1 .item:nth-of-type(3n) {
    margin-right: 0;
  }
  .about_honor .section1 .item h3 {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
}
.about_honor .section1 .item .img_block {
  overflow: hidden;
}
.about_honor .section1 .item img {
  display: block;
  width: 100%;
  -webkit-transition: transform 0.3s ease;
  -moz-transition: transform 0.3s ease;
  -ms-transition: transform 0.3s ease;
  transition: transform 0.3s ease;
}
.about_honor .section1 .item h3 {
  padding: 24px;
  font-size: 18px;
  color: #333333;
  text-align: center;
}
@media screen and (min-width: 992px) {
  .about_honor .section1 .item:hover {
    -webkit-transform: translateY(-10px);
    -moz-transform: translateY(-10px);
    -ms-transform: translateY(-10px);
    transform: translateY(-10px);
  }
  .about_honor .section1 .item:hover img {
    -webkit-transform: scale(1.05);
    -moz-transform: scale(1.05);
    -ms-transform: scale(1.05);
    transform: scale(1.05);
  }
}

.about_index .section1 {
  padding: 6vw 0;
}
.about_index .section1 .para {
  font-size: 18px;
  line-height: 2;
  color: #333;
  margin-top: 24px;
  text-align: center;
}
.about_index .section1 .items {
  font-size: 0;
  text-align: center;
  margin-top: 4vw;
}
.about_index .section1 .item {
  display: inline-block;
  vertical-align: top;
  width: 25%;
}
.about_index .section1 .item .num {
  font-size: 36px;
  color: #073190;
  font-family: 'DINPro-Medium';
  display: inline-block;
  padding-right: 28px;
  background-position: right center;
  background-repeat: no-repeat;
  background-size: auto 100%;
}
.about_index .section1 .item .num span {
  font-size: 80px;
}
.about_index .section1 .item p {
  font-size: 16px;
  color: #333;
  margin-top: 20px;
}
.about_index .section1 .item:nth-of-type(odd) .num span {
  text-shadow: 0 10px 20px rgba(7, 49, 144, 0.4);
}
.about_index .section1 .item:nth-of-type(even) .num span {
  color: #0176ee;
  text-shadow: 0 10px 20px rgba(1, 118, 238, 0.4);
}
.about_index .section1 .item:nth-of-type(1) .num {
  background-image: url("../images/icon-1-1.png");
}
.about_index .section1 .item:nth-of-type(2) .num {
  background-image: url("../images/icon-1-2.png");
}
.about_index .section1 .item:nth-of-type(3) .num {
  background-image: url("../images/icon-1-3.png");
}
.about_index .section1 .item:nth-of-type(4) .num {
  background-image: url("../images/icon-1-4.png");
}
.about_index .section1 a.more {
  display: block;
  width: 240px;
  font-size: 16px;
  line-height: 60px;
  color: #fff;
  background-color: #073190;
  text-align: center;
  border-radius: 30px;
  margin: 4vw auto 0;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.about_index .section1 a.more:after {
  content: '';
  width: 17px;
  height: 17px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url("../images/icon-5.png");
  display: inline-block;
  vertical-align: middle;
  margin: -3px 0 0 20px;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media screen and (min-width: 992px) {
  .about_index .section1 a.more:hover {
    -webkit-transform: translateY(-5px);
    -moz-transform: translateY(-5px);
    -ms-transform: translateY(-5px);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(7, 49, 144, 0.3);
  }
  .about_index .section1 a.more:hover:after {
    -webkit-transform: translateX(5px);
    -moz-transform: translateX(5px);
    -ms-transform: translateX(5px);
    transform: translateX(5px);
  }
}
.about_index .section2 {
  font-size: 0;
}
.about_index .section2 .item {
  display: inline-block;
  vertical-align: top;
  width: 50%;
  position: relative;
}
.about_index .section2 .item .img_box {
  overflow: hidden;
}
.about_index .section2 .item img {
  display: block;
  width: 100%;
  -webkit-transition: transform 0.3s ease;
  -moz-transition: transform 0.3s ease;
  -ms-transition: transform 0.3s ease;
  transition: transform 0.3s ease;
}
.about_index .section2 .item .txt_box {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  text-align: center;
  padding: 2vw;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.about_index .section2 .item .txt_box h3 {
  font-size: 36px;
  line-height: 1;
  color: #fff;
}
.about_index .section2 .item .txt_box p {
  font-size: 24px;
  color: #fff;
  margin-top: 24px;
}
.about_index .section2 .item .txt_box:after {
  content: '';
  position: absolute;
  top: 1vw;
  left: 1vw;
  right: 1vw;
  bottom: 1vw;
  border: 1px solid rgba(255, 255, 255, 0.3);
  opacity: 0;
  -webkit-transition: opacity 0.3s ease;
  -moz-transition: opacity 0.3s ease;
  -ms-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
@media screen and (min-width: 992px) {
  .about_index .section2 .item:hover img {
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
  }
  .about_index .section2 .item:hover .txt_box {
    background-color: rgba(7, 49, 144, 0.6);
  }
  .about_index .section2 .item:hover .txt_box:after {
    opacity: 1;
  }
}
.about_index .section3 {
  padding: 6vw 0;
  border-bottom: 1px solid #e6e6e6;
}
.about_index .section3 .items {
  font-size: 0;
  margin-top: 40px;
}
.about_index .section3 .item {
  display: inline-block;
  vertical-align: top;
}
@media screen and (min-width: 992px) {
  .about_index .section3 .item {
    width: calc((100% - 48px) / 3);
    margin-right: 24px;
  }
  .about_index .section3 .item:last-of-type {
    margin-right: 0;
  }
}
.about_index .section3 .item .img_block {
  overflow: hidden;
}
.about_index .section3 .item .img_block img {
  display: block;
  width: 100%;
  -webkit-transition: transform 0.3s ease;
  -moz-transition: transform 0.3s ease;
  -ms-transition: transform 0.3s ease;
  transition: transform 0.3s ease;
}
.about_index .section3 .item .logo {
  text-align: center;
  margin-top: 30px;
}
.about_index .section3 .item .logo img {
  max-width: 70%;
}
@media screen and (min-width: 992px) {
  .about_index .section3 .item:hover .img_block img {
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
  }
}
.about_index .section4 {
  padding-top: 6vw;
}
.about_index .section4 .cont {
  font-size: 0;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  margin-top: 40px;
}
.about_index .section4 .item {
  display: inline-block;
  vertical-align: top;
  width: 33.33%;
  padding: 7vw 0 14vw;
  border-left: 1px solid rgba(255, 255, 255, 0.3);
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.about_index .section4 .item:last-of-type {
  border-right: 1px solid rgba(255, 255, 255, 0.3);
}
.about_index .section4 .item .box {
  position: relative;
  padding: 0 3vw;
}
.about_index .section4 .item .box:before {
  content: '';
  width: 4px;
  height: 80px;
  background-color: #fff;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transform: scaleY(0);
  -moz-transform: scaleY(0);
  -ms-transform: scaleY(0);
  transform: scaleY(0);
  -webkit-transition: transform 0.3s ease;
  -moz-transition: transform 0.3s ease;
  -ms-transition: transform 0.3s ease;
  transition: transform 0.3s ease;
}
.about_index .section4 .item .year {
  font-size: 42px;
  line-height: 80px;
  color: #fff;
  font-family: 'DINPro-Bold';
}
.about_index .section4 .item h3 {
  font-size: 24px;
  color: #fff;
  line-height: 1;
  margin: 35px 0 24px;
}
.about_index .section4 .item p {
  font-size: 16px;
  line-height: 2;
  color: #fff;
  height: 128px;
  overflow: hidden;
}
.about_index .section4 .item a {
  display: inline-block;
  font-size: 16px;
  line-height: 48px;
  color: #fff;
  text-align: center;
  border-radius: 30px;
  margin-top: 10px;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.about_index .section4 .item a:after {
  content: '';
  width: 17px;
  height: 17px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url("../images/icon-5.png");
  display: inline-block;
  vertical-align: middle;
  margin: -3px 0 0 20px;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media screen and (min-width: 992px) {
  .about_index .section4 .item.active {
    width: 40%;
  }
  .about_index .section4 .item.active .box:before {
    -webkit-transform: scaleY(1);
    -moz-transform: scaleY(1);
    -ms-transform: scaleY(1);
    transform: scaleY(1);
  }
  .about_index .section4 .item.active a {
    background-color: #fff;
    color: #073190;
    padding: 0 3vw;
  }
  .about_index .section4 .item.active a:after {
    background-image: url("../images/icon-5-on.png");
  }
  .about_index .section4 .item.other {
    width: 30%;
  }
}
.about_index .section5 {
  padding: 6vw 0;
}
.about_index .section5 .m-slick {
  display: none;
}
.about_index .section5 .slick {
  margin: 40px -132px 0;
  position: relative;
  padding: 0 120px;
}
.about_index .section5 .item {
  margin: 0 12px;
  text-align: center;
}
.about_index .section5 .item .img_block {
  overflow: hidden;
}
.about_index .section5 .item img {
  display: block;
  width: 100%;
  -webkit-transition: transform 0.3s ease;
  -moz-transition: transform 0.3s ease;
  -ms-transition: transform 0.3s ease;
  transition: transform 0.3s ease;
}
.about_index .section5 .item h3 {
  font-size: 18px;
  line-height: 1;
  color: #333;
  margin-top: 24px;
}
@media screen and (min-width: 992px) {
  .about_index .section5 .item h3 {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .about_index .section5 .item:hover img {
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
  }
}
.about_index .section5 .slick-arrow {
  width: 60px;
  height: 60px;
  font-size: 0;
  border-radius: 50%;
  position: absolute;
  top: calc(50% - 22px);
  margin-top: -30px;
  background-position: center;
  background-repeat: no-repeat;
  background-color: transparent;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  transition: all 0.3s ease;
  cursor: pointer;
}
.about_index .section5 .slick-arrow:hover {
  background-color: #073190;
}
.about_index .section5 .slick-prev {
  left: 0;
  background-image: url("../images/prev1.png");
}
.about_index .section5 .slick-prev:hover {
  background-image: url("../images/prev-on.png");
}
.about_index .section5 .slick-next {
  right: 0;
  background-image: url("../images/next1.png");
}
.about_index .section5 .slick-next:hover {
  background-image: url("../images/next-on.png");
}
.about_index .section5 a.more {
  display: block;
  width: 240px;
  font-size: 16px;
  line-height: 60px;
  color: #fff;
  background-color: #073190;
  text-align: center;
  border-radius: 30px;
  margin: 4vw auto 0;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.about_index .section5 a.more:after {
  content: '';
  width: 17px;
  height: 17px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url("../images/icon-5.png");
  display: inline-block;
  vertical-align: middle;
  margin: -3px 0 0 20px;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media screen and (min-width: 992px) {
  .about_index .section5 a.more:hover {
    -webkit-transform: translateY(-5px);
    -moz-transform: translateY(-5px);
    -ms-transform: translateY(-5px);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(7, 49, 144, 0.3);
  }
  .about_index .section5 a.more:hover:after {
    -webkit-transform: translateX(5px);
    -moz-transform: translateX(5px);
    -ms-transform: translateX(5px);
    transform: translateX(5px);
  }
}

.about_intro .section1 {
  padding: 6vw 0;
}
.about_intro .section1 .inner_tit.color {
  color: #073190;
  line-height: 1.4;
}
.about_intro .section1 .video_box {
  position: relative;
  margin-top: 40px;
}
.about_intro .section1 .video_box .img_block {
  overflow: hidden;
}
.about_intro .section1 .video_box img {
  display: block;
  width: 100%;
  -webkit-transition: transform 0.3s ease;
  -moz-transition: transform 0.3s ease;
  -ms-transition: transform 0.3s ease;
  transition: transform 0.3s ease;
}
.about_intro .section1 .video_box a {
  width: 80px;
  height: 80px;
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -40px 0 0 -40px;
  background-position: 35px center;
  background-repeat: no-repeat;
  background-image: url("../images/icon-2.png");
  display: none;
}
.about_intro .section1 .video_box a svg {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.about_intro .section1 .video_box a svg .cir1, .about_intro .section1 .video_box a svg .cir2 {
  stroke-width: 2px;
  fill: none;
  stroke: #fff;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.about_intro .section1 .video_box a svg .cir1 {
  stroke-dasharray: 246;
  stroke-dashoffset: 80;
}
.about_intro .section1 .video_box a svg .cir2 {
  stroke-dasharray: 214;
  stroke-dashoffset: 50;
}
@media screen and (min-width: 992px) {
  .about_intro .section1 .video_box:hover img {
    -webkit-transform: scale(1.105);
    -moz-transform: scale(1.105);
    -ms-transform: scale(1.105);
    transform: scale(1.105);
  }
  .about_intro .section1 .video_box:hover a svg .cir1 {
    stroke-dashoffset: 0;
  }
  .about_intro .section1 .video_box:hover a svg .cir2 {
    stroke-dashoffset: 0;
  }
}
.about_intro .section1 .para {
  font-size: 18px;
  line-height: 2;
  color: #333;
  margin-top: 40px;
}
.about_intro .section1 .items_1 {
  font-size: 0;
  margin-top: 40px;
}
.about_intro .section1 .items_1 .item {
  display: inline-block;
  vertical-align: top;
  position: relative;
}
@media screen and (min-width: 992px) {
  .about_intro .section1 .items_1 .item {
    width: calc((100% - 48px) / 3);
    margin-right: 24px;
  }
  .about_intro .section1 .items_1 .item:last-of-type {
    margin-right: 0;
  }
}
.about_intro .section1 .items_1 .item .img_block {
  overflow: hidden;
}
.about_intro .section1 .items_1 .item img {
  display: block;
  width: 100%;
  -webkit-transition: transform 0.3s ease;
  -moz-transition: transform 0.3s ease;
  -ms-transition: transform 0.3s ease;
  transition: transform 0.3s ease;
}
.about_intro .section1 .items_1 .item h3 {
  position: absolute;
  bottom: 1.5vw;
  left: 3vw;
  right: 3vw;
  text-align: center;
  font-size: 18px;
  line-height: 24px;
  color: #fff;
  z-index: 2;
}
.about_intro .section1 .items_1 .item:after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 30%;
  bottom: 0;
  background: -webkit-linear-gradient(180deg, rgba(7, 49, 144, 0), #073190 90%);
  background: -o-linear-gradient(180deg, rgba(7, 49, 144, 0), #073190 90%);
  background: -moz-linear-gradient(180deg, rgba(7, 49, 144, 0), #073190 90%);
  background: linear-gradient(180deg, rgba(7, 49, 144, 0), #073190 90%);
}
@media screen and (min-width: 992px) {
  .about_intro .section1 .items_1 .item:hover img {
    -webkit-transform: scale(1.05);
    -moz-transform: scale(1.05);
    -ms-transform: scale(1.05);
    transform: scale(1.05);
  }
}
.about_intro .section1 .items_2 {
  font-size: 0;
  margin-top: 40px;
}
.about_intro .section1 .items_2 .item {
  display: inline-block;
  vertical-align: top;
  width: 25%;
  height: 120px;
  text-align: center;
  position: relative;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media screen and (min-width: 992px) {
  .about_intro .section1 .items_2 .item:nth-of-type(2), .about_intro .section1 .items_2 .item:nth-of-type(4), .about_intro .section1 .items_2 .item:nth-of-type(5), .about_intro .section1 .items_2 .item:nth-of-type(7), .about_intro .section1 .items_2 .item:nth-of-type(10), .about_intro .section1 .items_2 .item:nth-of-type(12), .about_intro .section1 .items_2 .item:nth-of-type(13), .about_intro .section1 .items_2 .item:nth-of-type(15) {
    background-color: #f7f7f7;
  }
}
.about_intro .section1 .items_2 .item img {
  width: auto;
  max-width: 70%;
  max-height: 60%;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media screen and (min-width: 992px) {
  .about_intro .section1 .items_2 .item:hover {
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    z-index: 2;
  }
  .about_intro .section1 .items_2 .item:hover img {
    opacity: 1;
    -webkit-filter: grayscale(0);
    -moz-filter: grayscale(0);
    -ms-filter: grayscale(0);
    filter: grayscale(0);
  }
}
.about_intro .section1 .items_3 {
  margin-top: 6vw;
}
.about_intro .section1 .items_3 .item {
  margin-top: 40px;
  position: relative;
}
.about_intro .section1 .items_3 .item:nth-of-type(1) {
  margin-top: 0;
}
@media screen and (min-width: 992px) {
  .about_intro .section1 .items_3 .item:nth-of-type(odd) .box {
    background: -webkit-linear-gradient(90deg, white 20%, rgba(255, 255, 255, 0) 60%);
    background: -o-linear-gradient(90deg, white 20%, rgba(255, 255, 255, 0) 60%);
    background: -moz-linear-gradient(90deg, white 20%, rgba(255, 255, 255, 0) 60%);
    background: linear-gradient(90deg, white 20%, rgba(255, 255, 255, 0) 60%);
  }
  .about_intro .section1 .items_3 .item:nth-of-type(even) .box {
    text-align: right;
    background: -webkit-linear-gradient(90deg, rgba(255, 255, 255, 0) 40%, white 80%);
    background: -o-linear-gradient(90deg, rgba(255, 255, 255, 0) 40%, white 80%);
    background: -moz-linear-gradient(90deg, rgba(255, 255, 255, 0) 40%, white 80%);
    background: linear-gradient(90deg, rgba(255, 255, 255, 0) 40%, white 80%);
  }
}
.about_intro .section1 .items_3 .item .img_block {
  overflow: hidden;
}
.about_intro .section1 .items_3 .item img {
  display: block;
  width: 100%;
  -webkit-transition: transform 0.3s ease;
  -moz-transition: transform 0.3s ease;
  -ms-transition: transform 0.3s ease;
  transition: transform 0.3s ease;
}
.about_intro .section1 .items_3 .item .txt_block {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.about_intro .section1 .items_3 .item .box {
  padding: 4vw 6vw;
}
.about_intro .section1 .items_3 .item .inner_tit {
  text-align: inherit;
}
.about_intro .section1 .items_3 .item h4 {
  font-size: 24px;
  color: #333;
  line-height: 1;
  margin-top: 30px;
}
.about_intro .section1 .items_3 .item p {
  font-size: 12px;
  color: #333;
  text-transform: uppercase;
  font-family: 'DINPro-Light';
  margin-top: 10px;
}
@media screen and (min-width: 992px) {
  .about_intro .section1 .items_3 .item:hover img {
    -webkit-transform: scale(1.05);
    -moz-transform: scale(1.05);
    -ms-transform: scale(1.05);
    transform: scale(1.05);
  }
}

.about_partner .item {
  padding-top: 6vw;
}
.about_partner .item .inner_tit {
  text-align: left;
  color: #073190;
}
.about_partner .item h4 {
  font-size: 24px;
  color: #333;
  line-height: 1;
  margin-top: 20px;
}
.about_partner .item .data_1 {
  font-size: 0;
  margin-top: 40px;
  display: flex;
}
.about_partner .item .data_1 .data {
  display: inline-block;
  vertical-align: top;
  background-color: #f7f7f7;
  padding: 28px 20px;
}
@media screen and (min-width: 992px) {
  .about_partner .item .data_1 .data {
    width: calc((100% - 48px) / 3);
    margin-right: 24px;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
  .about_partner .item .data_1 .data:last-of-type {
    margin-right: 0;
  }
}
.about_partner .item .data_1 .data i {
  display: block;
  height: 60px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
.about_partner .item .data_1 .data h3 {
  text-align: center;
  font-size: 18px;
  color: #333;
  margin-top: 15px;
}
@media screen and (min-width: 992px) {
  .about_partner .item .data_1 .data:hover {
    -webkit-transform: translateY(-10px);
    -moz-transform: translateY(-10px);
    -ms-transform: translateY(-10px);
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  }
}
.about_partner .item .data_2 {
  font-size: 0;
  margin-top: 40px;
  display: flex;
}
.about_partner .item .data_2 .data {
  display: inline-block;
  vertical-align: top;
  background-color: #f7f7f7;
  padding: 2vw 0;
  text-align: center;
}
@media screen and (min-width: 992px) {
  .about_partner .item .data_2 .data {
    width: calc((100% - 48px) / 3);
    margin-right: 24px;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
  .about_partner .item .data_2 .data:last-of-type {
    margin-right: 0;
  }
}
.about_partner .item .data_2 .data i {
  display: inline-block;
  vertical-align: middle;
  width: 75px;
  height: 60px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
.about_partner .item .data_2 .data h3 {
  display: inline-block;
  vertical-align: middle;
  text-align: left;
  font-size: 18px;
  color: #333;
  padding-left: 24px;
  max-width: calc(100% - 90px);
}
.about_partner .item .data_2 .data h3 span {
  display: block;
  font-size: 14px;
  color: #073190;
  margin-bottom: 10px;
}
@media screen and (min-width: 992px) {
  .about_partner .item .data_2 .data:hover {
    -webkit-transform: translateY(-10px);
    -moz-transform: translateY(-10px);
    -ms-transform: translateY(-10px);
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  }
}
.about_partner .item .data_3 {
  font-size: 0;
  margin-top: 40px;
  display: flex;
}
.about_partner .item .data_3 .data {
  display: inline-block;
  vertical-align: top;
  background-color: #f7f7f7;
  padding: 2vw 0;
  text-align: center;
}
@media screen and (min-width: 992px) {
  .about_partner .item .data_3 .data {
    width: calc((100% - 72px) / 4);
    margin-right: 24px;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
  .about_partner .item .data_3 .data:last-of-type {
    margin-right: 0;
  }
}
.about_partner .item .data_3 .data i {
  display: inline-block;
  vertical-align: middle;
  width: 70px;
  height: 60px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
.about_partner .item .data_3 .data h3 {
  display: inline-block;
  vertical-align: middle;
  text-align: left;
  font-size: 18px;
  color: #333;
  padding-left: 24px;
  max-width: calc(100% - 110px);
}
.about_partner .item .data_3 .data h3 span {
  display: block;
  font-size: 14px;
  color: #073190;
  margin-bottom: 10px;
}
@media screen and (min-width: 992px) {
  .about_partner .item .data_3 .data:hover {
    -webkit-transform: translateY(-10px);
    -moz-transform: translateY(-10px);
    -ms-transform: translateY(-10px);
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  }
}
.about_partner .item .img_box {
  position: relative;
  margin-top: 40px;
}
.about_partner .item .img_box .img_block {
  width: 50%;
  overflow: hidden;
}
.about_partner .item .img_box .img_block img {
  display: block;
  width: 100%;
  -webkit-transition: transform 0.3s ease;
  -moz-transition: transform 0.3s ease;
  -ms-transition: transform 0.3s ease;
  transition: transform 0.3s ease;
}
.about_partner .item .img_box .txt_block {
  width: 50%;
  position: absolute;
  top: 0;
  bottom: 0;
  background-color: #073190;
}
.about_partner .item .img_box .box {
  display: inline-block;
  max-width: 720px;
  width: 40vw;
  text-align: left;
}
.about_partner .item .img_box .para {
  font-size: 18px;
  line-height: 2;
  color: #fff;
}
.about_partner .item .img_box a.more {
  display: inline-block;
  font-size: 18px;
  line-height: 48px;
  color: #fff;
  background-color: #5893d5;
  margin-top: 30px;
  padding: 0 30px;
  border-radius: 5px;
}
.about_partner .item .img_box .span_box {
  font-size: 0;
  margin-top: 30px;
}
.about_partner .item .img_box .span_box span {
  display: inline-block;
  vertical-align: top;
  font-size: 18px;
  line-height: 48px;
  color: #fff;
  background-color: #5893d5;
  text-align: center;
  width: calc((100% - 30px) / 4);
  margin-right: 10px;
  border-radius: 5px;
}
.about_partner .item .img_box .span_box span:last-of-type {
  margin-right: 0;
}
@media screen and (min-width: 992px) {
  .about_partner .item .img_box:hover .img_block img {
    -webkit-transform: scale(1.05);
    -moz-transform: scale(1.05);
    -ms-transform: scale(1.05);
    transform: scale(1.05);
  }
}
.about_partner .item .hide_box {
  padding: 6vw 0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  display: none;
}
.about_partner .item .hide_box h3 {
  font-size: 36px;
  line-height: 1;
}
.about_partner .item .hide_box .logos {
  margin-top: 40px;
  font-size: 0;
}
.about_partner .item .hide_box .logos .logo {
  display: inline-block;
  vertical-align: top;
  width: 20%;
  height: 120px;
  text-align: center;
  position: relative;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media screen and (min-width: 992px) {
  .about_partner .item .hide_box .logos .logo:nth-of-type(odd) {
    background-color: #fff;
  }
  .about_partner .item .hide_box .logos .logo:nth-of-type(even) {
    background-color: #f7f7f7;
  }
}
.about_partner .item .hide_box .logos .logo img {
  width: auto;
  max-width: 70%;
  max-height: 60%;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media screen and (min-width: 992px) {
  .about_partner .item .hide_box .logos .logo:hover {
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    z-index: 2;
  }
  .about_partner .item .hide_box .logos .logo:hover img {
    opacity: 1;
    -webkit-filter: grayscale(0);
    -moz-filter: grayscale(0);
    -ms-filter: grayscale(0);
    filter: grayscale(0);
  }
}
.about_partner .item .hide_box a.slideup {
  display: block;
  width: 30px;
  height: 24px;
  margin: 40px auto 0;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url("../images/icon-13.png");
}
.about_partner .item:nth-of-type(odd) .img_box .txt_block {
  left: 50%;
  text-align: left;
}
.about_partner .item:nth-of-type(odd) .img_box .box {
  padding-left: 4vw;
}
.about_partner .item:nth-of-type(even) .img_box .img_block {
  margin-left: 50%;
}
.about_partner .item:nth-of-type(even) .img_box .txt_block {
  left: 0;
  text-align: right;
}
.about_partner .item:nth-of-type(even) .img_box .box {
  padding-right: 4vw;
}

.about_history .years {
  position: fixed;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 6;
  display: none;
}
.about_history .years.visi {
  visibility: hidden;
}
.about_history .years .year {
  margin: 10px 0;
  font-size: 0;
  cursor: pointer;
  text-align: right;
}
.about_history .years span.text {
  font-size: 16px;
  line-height: 24px;
  color: #b2b2b2;
  font-family: 'DINPro-Light';
  display: inline-block;
  vertical-align: middle;
}
.about_history .years span.line {
  width: 30px;
  height: 1px;
  background: #cccccc;
  display: inline-block;
  vertical-align: middle;
  margin-left: 10px;
}
.about_history .years .active span.text {
  font-size: 20px;
  color: #333;
}
.about_history .years .active span.line {
  width: 60px;
  background-color: #073190;
}
.about_history .section1 {
  padding-top: 7vw;
  background: -webkit-linear-gradient(180deg, #f5f5f5, #fff 98%);
  background: -o-linear-gradient(180deg, #f5f5f5, #fff 98%);
  background: -moz-linear-gradient(180deg, #f5f5f5, #fff 98%);
  background: linear-gradient(180deg, #f5f5f5, #fff 98%);
  overflow: hidden;
}
.about_history .section1 .river_box {
  position: relative;
  padding-bottom: 20vw;
}
.about_history .section1 .river_img {
  position: absolute;
  top: 150px;
  left: 0;
  right: 0;
  z-index: 1;
}
.about_history .section1 .river_img img {
  display: block;
  width: 96%;
  max-width: 1382px;
}
.about_history .section1 .river_img .on {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 0;
  overflow: hidden;
}
.about_history .section1 .items {
  position: relative;
  z-index: 2;
}
.about_history .section1 .item {
  padding-top: 12vw;
}
.about_history .section1 .item .head_box h3 {
  font-size: 36px;
  color: #333;
  line-height: 1;
}
.about_history .section1 .item .head_box h3:before {
  content: '';
  width: 4px;
  height: 36px;
  margin-right: 20px;
  display: inline-block;
  vertical-align: top;
}
.about_history .section1 .item .head_box .year {
  font-size: 40px;
  line-height: 1;
  margin-top: 20px;
  font-family: 'DINPro-Bold';
}
.about_history .section1 .item .head_box .info {
  font-size: 18px;
  line-height: 32px;
  color: #333;
  margin-top: 10px;
}
.about_history .section1 .item ul li {
  margin-top: 6vw;
  width: 68%;
  font-size: 0;
}
.about_history .section1 .item ul li .year {
  display: inline-block;
  vertical-align: top;
  position: relative;
  width: 25%;
  height: 7.5vw;
}
.about_history .section1 .item ul li .year span {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  text-align: center;
  font-size: 40px;
  line-height: 1;
  color: #fff;
  font-family: 'DINPro-Light';
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
.about_history .section1 .item ul li .year:after {
  content: '';
  width: 0;
  height: 0;
  border-bottom: 30px solid transparent;
  border-right: 30px solid transparent;
  position: absolute;
  top: 100%;
  left: 0;
}
.about_history .section1 .item ul li .para {
  position: relative;
  display: inline-block;
  vertical-align: top;
  width: calc(75% - 10px);
  margin-left: 10px;
  min-height: 7.5vw;
  background: #fff url("../images/icon-14.jpg") right top no-repeat;
  padding: 2vw 50px 2vw 2vw;
  font-size: 18px;
  line-height: 32px;
  color: #333;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.05);
}
.about_history .section1 .item ul li .para p {
  padding-left: 60px;
  position: relative;
}
.about_history .section1 .item ul li .para span {
  position: absolute;
  top: 0;
  left: 0;
}
.about_history .section1 .item:nth-of-type(1) {
  padding-top: 0;
}
.about_history .section1 .item:nth-of-type(1) .head_box h3:before {
  background-color: #5893d5;
}
.about_history .section1 .item:nth-of-type(1) .head_box .year {
  color: #5893d5;
}
.about_history .section1 .item:nth-of-type(1) ul li .year {
  background-color: #5893d5;
}
.about_history .section1 .item:nth-of-type(1) ul li .year:after {
  border-right-color: #4370a3;
}
.about_history .section1 .item:nth-of-type(2) .head_box h3:before {
  background-color: #3964c8;
}
.about_history .section1 .item:nth-of-type(2) .head_box .year {
  color: #3964c8;
}
.about_history .section1 .item:nth-of-type(2) ul li .year {
  background-color: #3964c8;
}
.about_history .section1 .item:nth-of-type(2) ul li .year:after {
  border-right-color: #294994;
}
.about_history .section1 .item:nth-of-type(3) .head_box h3:before {
  background-color: #073190;
}
.about_history .section1 .item:nth-of-type(3) .head_box .year {
  color: #073190;
}
.about_history .section1 .item:nth-of-type(3) ul li .year {
  background-color: #073190;
}
.about_history .section1 .item:nth-of-type(3) ul li .year:after {
  border-right-color: #051f5c;
}

/* strategy */
.strategy_page .section1 {
  padding: 6vw 0;
}
.strategy_page .section1 .para {
  font-size: 18px;
  line-height: 2;
  color: #808080;
  text-align: center;
  margin-top: 15px;
}
.strategy_page .section1 .img_block {
  margin-top: 4.5vw;
}
.strategy_page .section1 .img_block img {
  display: block;
  width: 100%;
}
.strategy_page .section1 .m_show {
  display: none;
}
.strategy_page .section2 {
  padding-top: 6vw;
  background-color: #f2f2f2;
}
.strategy_page .section2 .para {
  text-align: center;
  font-size: 18px;
  line-height: 30px;
  color: #a8a9ad;
  margin-top: 20px;
}
.strategy_page .section3 {
  padding: 6vw 0;
}
.strategy_page .section3 .para {
  text-align: center;
  font-size: 18px;
  line-height: 30px;
  color: #a8a9ad;
  margin-top: 20px;
}
.strategy_page .section3 .icons {
  font-size: 0;
  margin-top: 3vw;
}
.strategy_page .section3 .icons .icon {
  display: inline-block;
  vertical-align: top;
  width: 25%;
  text-align: center;
}
.strategy_page .section3 .icons .icon i {
  display: block;
  height: 88px;
  background-position: center;
  background-repeat: no-repeat;
}
.strategy_page .section3 .icons .icon h3 {
  font-size: 18px;
  color: #333;
  margin-top: 24px;
}
.strategy_page .section3 .slick {
  margin-top: 3vw;
}
.strategy_page .section3 .slick .item {
  padding: 0 1.5vw;
  opacity: .3;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.strategy_page .section3 .slick .item .box {
  position: relative;
  overflow: hidden;
}
.strategy_page .section3 .slick .item img {
  width: 100%;
  display: block;
}
.strategy_page .section3 .slick .item .info {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  font-size: 18px;
  line-height: 32px;
  color: #fff;
  padding: 2vw;
  background-color: rgba(0, 0, 0, 0.6);
  opacity: 0;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.strategy_page .section3 .slick .item.slick-center {
  opacity: 1;
}
.strategy_page .section3 .slick .item.slick-center .box:after {
  opacity: 1;
}
.strategy_page .section3 .slick .item.slick-center .info {
  opacity: 1;
}
.strategy_page .section3 .slick-arrow {
  position: absolute;
  width: 26px;
  height: 48px;
  background-position: center;
  background-repeat: no-repeat;
  top: 44%;
  margin-top: -24px;
  font-size: 0;
  background-color: transparent;
  z-index: 2;
  cursor: pointer;
  opacity: 0;
  -webkit-transition: opacity 0.3s ease;
  -moz-transition: opacity 0.3s ease;
  -ms-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.strategy_page .section3 .slick-arrow.show {
  opacity: 1;
}
.strategy_page .section3 .slick-arrow.slick-prev {
  left: 9vw;
  background-image: url("../images/strategy/prev.png");
}
.strategy_page .section3 .slick-arrow.slick-next {
  right: 9vw;
  background-image: url("../images/strategy/next.png");
}
.strategy_page .section3 .slick-dots {
  margin-top: 3vw;
  font-size: 0;
  text-align: center;
}
.strategy_page .section3 .slick-dots li {
  display: inline-block;
  vertical-align: top;
  margin: 0 6px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  transition: all 0.3s ease;
  border: 2px solid #073190;
  cursor: pointer;
}
.strategy_page .section3 .slick-dots li.slick-active {
  background-color: #073190;
}
.strategy_page .section3 .slick-dots button {
  display: none;
}

/* index */
.index_main .index_tit {
  text-align: center;
}
.index_main .index_tit p {
  font-size: 18px;
  line-height: 30px;
  color: #a8a9ad;
  margin-top: 20px;
}
.index_main .index_tit:after {
  content: '';
  width: 36px;
  height: 2px;
  background-color: #5893d4;
  display: block;
  margin: 20px auto 0;
}
.index_main .index_btn {
  display: block;
  width: 240px;
  line-height: 60px;
  background-color: #073190;
  margin: 3vw auto 0;
  border-radius: 30px;
  font-size: 16px;
  color: #fff;
  text-align: center;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.index_main .index_btn:after {
  content: '';
  width: 11px;
  height: 17px;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url("../images/next.png");
  display: inline-block;
  vertical-align: middle;
  margin: -2px 0 0 20px;
}
@media screen and (min-width: 992px) {
  .index_main .index_btn:hover {
    -webkit-transform: translateY(-5px);
    -moz-transform: translateY(-5px);
    -ms-transform: translateY(-5px);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(9, 49, 144, 0.3);
  }
}
.index_main .section1 {
  background-color: #000;
}
.index_main .section1 .item img {
  display: block;
  width: 100%;
}
.index_main .section1 .item .m_img {
  display: none;
}
.index_main .section1 .slick-dots {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 40px;
  font-size: 0;
  text-align: center;
}
.index_main .section1 .slick-dots li {
  display: inline-block;
  vertical-align: top;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  margin: 0 6px;
  border: 3px solid #fff;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  transition: all 0.3s ease;
  cursor: pointer;
}
.index_main .section1 .slick-dots li.slick-active {
  background-color: #fff;
}
.index_main .section1 .slick-dots button {
  display: none;
}
.index_main .section1 .slick-arrow {
  width: 40px;
  height: 40px;
  position: absolute;
  top: 50%;
  margin-top: -20px;
  border-radius: 50%;
  background-color: transparent;
  background-position: center;
  background-repeat: no-repeat;
  font-size: 0;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  transition: all 0.3s ease;
  z-index: 2;
}
.index_main .section1 .slick-arrow:hover {
  background-color: #073190;
}
.index_main .section1 .slick-prev {
  left: 2vw;
  background-image: url("../images/prev.png");
}
.index_main .section1 .slick-next {
  right: 2vw;
  background-image: url("../images/next.png");
}
.index_main .section2 {
  padding-top: 6vw;
}
@media screen and (min-width: 992px) {
  .index_main .section2 .index_tit {
    display: none;
  }
}
.index_main .section2 .items {
  font-size: 0;
  position: relative;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}
.index_main .section2 .items .item {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
@media screen and (min-width: 992px) {
  .index_main .section2 .items .item {
    position: absolute;
  }
  .index_main .section2 .items .item:nth-of-type(1) {
    width: 33.33%;
    position: relative;
  }
  .index_main .section2 .items .item:nth-of-type(2), .index_main .section2 .items .item:nth-of-type(3), .index_main .section2 .items .item:nth-of-type(4), .index_main .section2 .items .item:nth-of-type(6) {
    width: 22.22%;
    height: 50%;
  }
  .index_main .section2 .items .item:nth-of-type(5) {
    width: 44.44%;
    height: 50%;
  }
  .index_main .section2 .items .item:nth-of-type(2), .index_main .section2 .items .item:nth-of-type(5) {
    left: 33.33%;
  }
  .index_main .section2 .items .item:nth-of-type(4), .index_main .section2 .items .item:nth-of-type(6) {
    left: 77.77%;
  }
  .index_main .section2 .items .item:nth-of-type(3) {
    left: 55.55%;
  }
  .index_main .section2 .items .item:nth-of-type(2), .index_main .section2 .items .item:nth-of-type(3), .index_main .section2 .items .item:nth-of-type(4) {
    top: 0;
  }
  .index_main .section2 .items .item:nth-of-type(5), .index_main .section2 .items .item:nth-of-type(6) {
    top: 50%;
  }
}
.index_main .section2 .items .item:nth-of-type(2) {
  background-color: #5893d4;
}
.index_main .section2 .items .item:nth-of-type(4), .index_main .section2 .items .item:nth-of-type(5) {
  background-color: #fff;
}
.index_main .section2 .items .item:nth-of-type(2) h4, .index_main .section2 .items .item:nth-of-type(3) h4, .index_main .section2 .items .item:nth-of-type(4) h4, .index_main .section2 .items .item:nth-of-type(6) h4 {
  height: 96px;
}
.index_main .section2 .items .item:nth-of-type(5) h4 {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.index_main .section2 .items .item:nth-of-type(2) h4, .index_main .section2 .items .item:nth-of-type(2) span, .index_main .section2 .items .item:nth-of-type(3) h4, .index_main .section2 .items .item:nth-of-type(3) span, .index_main .section2 .items .item:nth-of-type(6) h4, .index_main .section2 .items .item:nth-of-type(6) span {
  color: #fff;
}
.index_main .section2 .items .item:nth-of-type(4) h4, .index_main .section2 .items .item:nth-of-type(4) span, .index_main .section2 .items .item:nth-of-type(5) h4, .index_main .section2 .items .item:nth-of-type(5) span {
  color: #333;
}
.index_main .section2 .items .item:nth-of-type(4) .cell_box:after, .index_main .section2 .items .item:nth-of-type(5) .cell_box:after {
  content: '';
  width: 36px;
  height: 2px;
  background-color: #5893d4;
  position: absolute;
  bottom: 2vw;
  left: 1.8vw;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.index_main .section2 .items .item .img_block {
  overflow: hidden;
}
.index_main .section2 .items .item .txt_block {
  position: absolute;
  left: 2vw;
  right: 2vw;
  bottom: 2vw;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.index_main .section2 .items .item .txt_block span {
  color: #fff;
}
.index_main .section2 .items .item .cell_box {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0 1.8vw;
}
.index_main .section2 .items .item .cell {
  position: relative;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.index_main .section2 .items .item img {
  display: block;
  width: 100%;
  -webkit-transition: transform 0.3s ease;
  -moz-transition: transform 0.3s ease;
  -ms-transition: transform 0.3s ease;
  transition: transform 0.3s ease;
}
.index_main .section2 .items .item h3 {
  font-size: 24px;
  line-height: 32px;
  color: #fff;
}
.index_main .section2 .items .item h4 {
  font-size: 20px;
  line-height: 32px;
  overflow: hidden;
}
.index_main .section2 .items .item p {
  font-size: 16px;
  line-height: 24px;
  color: #a8a9ad;
  margin-top: 15px;
}
.index_main .section2 .items .item span {
  position: absolute;
  left: 0;
  bottom: 0;
  font-size: 14px;
  opacity: 0;
  -webkit-transition: opacity 0.3s ease;
  -moz-transition: opacity 0.3s ease;
  -ms-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
@media screen and (min-width: 992px) {
  .index_main .section2 .items .item:hover .txt_block, .index_main .section2 .items .item:hover .cell {
    padding-bottom: 30px;
  }
  .index_main .section2 .items .item:hover img {
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
  }
  .index_main .section2 .items .item:hover span {
    opacity: 1;
  }
  .index_main .section2 .items .item:hover .cell_box:after {
    opacity: 0;
  }
}
.index_main .section3 {
  padding: 6vw 0;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url("../images/img-1s.jpg");
}
.index_main .section3 .para {
  font-size: 18px;
  line-height: 2;
  color: #333;
  text-align: center;
  margin-top: 40px;
}
.index_main .section3 .data_box {
  font-size: 0;
  text-align: center;
  margin-top: 40px;
}
.index_main .section3 .data {
  display: inline-block;
  vertical-align: top;
  width: 25%;
}
.index_main .section3 .data .num {
  font-size: 24px;
  line-height: 1;
  color: #073190;
  font-family: 'DINPro-Bold';
}
.index_main .section3 .data .num span {
  font-size: 48px;
  display: inline-block;
  vertical-align: middle;
}
.index_main .section3 .data p {
  font-size: 16px;
  color: #808080;
  margin-top: 10px;
}
.index_main .section4 {
  padding-top: 4vw;
  background-color: #f2f2f2;
  overflow: hidden;
}
.index_main .section5 {
  padding: 6vw 0;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url("../images/img-2s.jpg");
}
.index_main .section5 .img_block {
  margin-top: 40px;
}
.index_main .section5 .img_block img {
  width: 55%;
  max-width: 786px;
  display: block;
  margin: 0 auto;
}
.index_main .section5 .para {
  font-size: 24px;
  line-height: 2;
  color: #333;
  text-align: center;
  margin-top: -4vw;
}
.index_main .section6 {
  padding: 6vw 0;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url("../images/img-8.jpg");
}
.index_main .section6 .img_block {
  width: 50%;
  max-width: 714px;
}
.index_main .section6 .img_block img {
  display: block;
  width: 100%;
}
.index_main .section6 .txt_block {
  position: absolute;
  right: 6vw;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
.index_main .section6 .txt_block .inner_tit {
  text-align: left;
}
.index_main .section6 .txt_block .num {
  font-size: 100px;
  color: #073190;
  line-height: 1;
  font-family: 'DINPro-Regular';
  margin-top: 2vw;
}
.index_main .section6 .txt_block p {
  font-size: 24px;
  color: #333;
}
.index_main .section6 .txt_block:after {
  content: '';
  width: 36px;
  height: 2px;
  background-color: #5f7fc8;
  display: block;
  margin-top: 2vw;
}
.index_main .section7 {
  padding-bottom: 6vw;
}
.index_main .section7 .slick_box {
  width: 22%;
  height: 460px;
  background-color: #073190;
  border-radius: 0 40px 40px 40px;
  padding-top: 6vw;
}
@media screen and (min-width: 992px) {
  .index_main .section7 .slick_box {
    max-width: 300px;
    position: absolute;
    top: -4.5vw;
    left: 0;
  }
}
.index_main .section7 .slick_box .item {
  text-align: center;
  padding: 0 2vw;
}
.index_main .section7 .slick_box .item i {
  display: block;
  height: 60px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
.index_main .section7 .slick_box .item h3 {
  font-size: 32px;
  color: #fff;
  margin-top: 1.5vw;
}
.index_main .section7 .slick_box .btns {
  position: absolute;
  bottom: 3vw;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 46%;
  height: 15px;
}
.index_main .section7 .slick_box .btns:after {
  content: '';
  width: 1px;
  height: 15px;
  background-color: rgba(255, 255, 255, 0.2);
  position: absolute;
  top: 0;
  left: 50%;
}
.index_main .section7 .slick_box .btn {
  width: 10px;
  height: 15px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 0;
  cursor: pointer;
  opacity: .2;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.index_main .section7 .slick_box .btn.prev {
  left: 0;
  background-image: url("../images/prev.png");
}
.index_main .section7 .slick_box .btn.next {
  right: 0;
  background-image: url("../images/next.png");
}
.index_main .section7 .slick_box .btn:hover {
  opacity: 1;
}
.index_main .section7 .cont_box {
  margin-left: 36%;
  padding: 6vw 0 4vw;
}
.index_main .section7 .cont {
  display: none;
}
.index_main .section7 .cont.active {
  display: block;
}
.index_main .section7 .cont .para {
  font-size: 18px;
  line-height: 30px;
  color: #333;
  height: 90px;
  overflow: hidden;
}
.index_main .section7 .cont .data {
  font-size: 0;
  margin-top: 2vw;
}
.index_main .section7 .cont .item {
  display: inline-block;
  vertical-align: top;
  position: relative;
  padding-right: 6vw;
  max-width: 33.33%;
}
.index_main .section7 .cont .item .num {
  font-size: 14px;
  color: #a8a9ad;
}
.index_main .section7 .cont .item .num span {
  display: inline-block;
  font-size: 48px;
  line-height: 1;
  color: #073190;
  font-family: 'DINPro-Regular';
}
.index_main .section7 .cont .item p {
  font-size: 14px;
  color: #a8a9ad;
  margin-top: 10px;
}
.index_main .section7 .cont .item:after {
  content: '';
  width: 2px;
  height: 60px;
  background-color: #e6e6e6;
  position: absolute;
  right: 3vw;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
.index_main .section7 .cont .item:last-of-type {
  padding-right: 0;
}
.index_main .section7 .cont .item:last-of-type:after {
  display: none;
}

/* search */
.search_page .section1 {
  padding: 6vw 0;
  background-color: #073190;
  background-position: center bottom;
  background-repeat: no-repeat;
  background-image: url("../images/img-16.jpg");
  background-size: 100% auto;
}
.search_page .section1 .inner_tit {
  color: #fff;
}
.search_page .section1 form {
  display: block;
  position: relative;
  height: 60px;
  padding-right: 60px;
  max-width: 720px;
  margin: 3vw auto 0;
  background-color: #fff;
}
.search_page .section1 form input {
  display: block;
  width: 100%;
  height: 100%;
  padding: 0 20px;
  font-size: 16px;
  color: #666;
  background-color: transparent;
}
.search_page .section1 form button {
  position: absolute;
  right: 0;
  top: 0;
  width: 60px;
  height: 60px;
  background-color: transparent;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url("../images/icon-4.png");
  cursor: pointer;
}
.search_page .section1 .cate {
  font-size: 0;
  text-align: center;
  margin-top: 3vw;
}
.search_page .section1 .cate a {
  display: inline-block;
  vertical-align: top;
  font-size: 16px;
  color: #fff;
  margin: 0 2vw;
  position: relative;
  padding-left: 30px;
}
.search_page .section1 .cate a.active i {
  background-color: #5893d4;
}
.search_page .section1 .cate a.active i:after {
  opacity: 1;
}
.search_page .section1 .cate i {
  width: 16px;
  height: 16px;
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -8px;
  border-radius: 50%;
  background-color: #fff;
}
.search_page .section1 .cate i:after {
  content: '';
  width: 8px;
  height: 8px;
  background-color: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -4px 0 0 -4px;
  border-radius: 50%;
  opacity: 0;
}
.search_page .section2 {
  padding: 6vw 0;
}
.search_page .section2 .tip {
  font-size: 16px;
  color: #333;
}
.search_page .section2 .items {
  margin-bottom: 3vw;
}
.search_page .section2 .item {
  padding: 3vw 0;
  border-bottom: 8px solid #ebeef1;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.search_page .section2 .item .date {
  font-size: 18px;
  color: #92959c;
  font-family: 'DINPro-Regular';
}
.search_page .section2 .item h3 {
  font-size: 18px;
  line-height: 30px;
  margin: 20px 0;
  -webkit-transition: color 0.3s ease;
  -moz-transition: color 0.3s ease;
  -ms-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
.search_page .section2 .item span {
  font-size: 16px;
  color: #333;
}
@media screen and (min-width: 992px) {
  .search_page .section2 .item:hover {
    border-color: #073190;
  }
  .search_page .section2 .item:hover h3 {
    color: #073190;
  }
}

@media screen and (max-width: 1600px) {
  .inner_page {
    padding-top: 80px;
  }

  .inner_banner h3 {
    font-size: 40px;
  }

  .inner_banner h4 {
    font-size: 24px;
  }

  .inner_tit {
    font-size: 36px;
  }

  .about_history .section1 .item .head_box h3 {
    font-size: 30px;
  }

  .about_history .section1 .item .head_box h3:before {
    height: 30px;
  }

  .about_history .section1 .item .head_box .year {
    font-size: 34px;
  }

  .about_history .section1 .item .head_box .info,
  .about_history .section1 .item ul li .para {
    font-size: 16px;
    line-height: 28px;
  }

  .about_honor .section1 .item h3 {
    font-size: 16px;
    padding: 15px;
  }

  .about_index .section1 .para {
    font-size: 16px;
  }

  .about_index .section1 .item .num span {
    font-size: 70px;
  }

  .about_index .section1 a.more,
  .about_index .section5 a.more,
  .contact_page .section1 .left_box a,
  .contact_page .section2 .form button,
  .industry_index a.more,
  .index_main .index_btn {
    width: 200px;
    line-height: 50px;
  }

  .about_index .section2 .item .txt_box h3 {
    font-size: 30px;
  }

  .about_index .section2 .item .txt_box p {
    font-size: 20px;
  }

  .about_index .section4 .item .year {
    font-size: 36px;
  }

  .about_index .section4 .item h3 {
    font-size: 20px;
  }

  .about_index .section5 .item h3 {
    font-size: 16px;
    margin-top: 15px;
  }

  .about_index .section5 .slick-arrow {
    width: 50px;
    height: 50px;
  }

  .about_index .section5 .slick {
    padding: 0 80px;
    margin: 40px -92px 0;
  }

  .about_index .section4 .item a {
    line-height: 42px;
  }

  .about_intro .section1 .para {
    font-size: 16px;
  }

  .about_intro .section1 .items_1 .item h3 {
    font-size: 16px;
  }

  .about_intro .section1 .items_2 .item {
    height: 100px;
  }

  .about_intro .section1 .items_3 .item h4 {
    font-size: 20px;
  }

  .about_partner .item h4 {
    font-size: 20px;
  }

  .about_partner .item .img_box .para {
    font-size: 16px;
    max-height: 224px;
    overflow: auto;
    padding-right: 10px;
  }

  .about_partner .item .img_box a.more {
    font-size: 16px;
  }

  .about_partner .item .img_box .span_box span {
    font-size: 16px;
  }

  .about_partner .item .hide_box h3 {
    font-size: 30px;
  }

  .about_partner .item .hide_box .logos .logo {
    height: 100px;
  }

  .about_partner .item .data_1 .data i {
    height: 50px;
  }

  .about_partner .item .data_1 .data h3 {
    font-size: 16px;
  }

  .about_partner .item .data_2 .data h3,
  .about_partner .item .data_3 .data h3 {
    font-size: 16px;
    padding-left: 15px;
  }

  .about_partner .item .data_2 .data i,
  .about_partner .item .data_3 .data i {
    width: 60px;
    height: 50px;
  }

  .contact_page .title {
    font-size: 30px;
  }

  .contact_page .section1 .left_box .item h3 {
    font-size: 20px;
  }

  .contact_page .section1 .left_box .item p,
  .contact_page .section2 .tip,
  .contact_page .section2 .form input, .contact_page .section2 .form textarea {
    font-size: 16px;
  }

  .contact_page .section1 .left_box a:after {
    margin-left: 15px;
  }

  .news_detail .section1 h3 {
    font-size: 30px;
  }

  .news_detail .section1 .date {
    font-size: 16px;
  }

  .news_detail .section2 .right_block h3 {
    font-size: 20px;
  }

  .news_detail .section2 .back_btn {
    width: 90px;
    height: 90px;
  }

  .news_detail .section2 .other_block .item span {
    font-size: 20px;
  }

  .duty_page .section1 .para {
    font-size: 16px;
  }

  .duty_page .section1 .box {
    width: 200px;
    height: 200px;
  }

  .duty_page .section1 .box .num span {
    font-size: 40px;
  }

  .duty_page .section1 .box p {
    font-size: 16px;
  }

  .duty_page .section2 .item h3 {
    font-size: 20px;
  }

  .duty_page .section2 .item .date {
    font-size: 16px;
  }

  .duty_page .section2 .item p {
    margin: 15px 0;
  }

  .foreign_page .section1 .para {
    font-size: 16px;
  }

  .foreign_page .section2 .item span {
    font-size: 20px;
  }

  .industry_1_detail .inner_banner .tit,
  .industry_2_detail .inner_banner .tit {
    font-size: 40px;
  }

  .industry_1_detail .section1 .left_box h3,
  .industry_2_detail .section1 h3 {
    font-size: 34px;
  }

  .industry_1_detail .section1 .left_box .para,
  .industry_2_detail .section1 .para {
    font-size: 16px;
    line-height: 30px;
  }

  .industry_2_detail .inner_banner p {
    margin-top: -30px;
  }

  .industry_2_detail .inner_banner p span {
    font-size: 20px;
    line-height: 30px;
  }

  .legal_page .section1 .para {
    font-size: 16px;
  }

  .news_group .section1 .item h3 {
    font-size: 20px;
  }

  .news_group .section1 .item p {
    margin: 15px 0;
  }

  .news_group .section1 .item .date {
    font-size: 16px;
  }

  .news_report .section1 .item h3 {
    font-size: 20px;
    height: 60px;
    margin: 15px 0;
  }

  .news_report .section1 .item .date {
    font-size: 16px;
    padding: 15px 0;
    margin-top: 15px;
  }

  .recruit_page .para,
  .recruit_page .section2 .item p {
    font-size: 16px;
  }

  .recruit_popups .pop_item .tit {
    font-size: 24px;
  }

  .recruit_popups .pop_item .s_span span {
    line-height: 24px;
  }

  .recruit_popups .box h4 {
    font-size: 20px;
  }

  .recruit_popups .box .para {
    line-height: 28px;
  }

  .recruit_popups a.apply {
    line-height: 50px;
  }

  .sitemap_page .section1 a.btn {
    font-size: 16px;
    line-height: 50px;
  }

  .strategy_page .section1 .para {
    font-size: 16px;
  }

  .strategy_page .section2 .para {
    font-size: 16px;
    line-height: 24px;
  }

  .strategy_page .section3 .para {
    font-size: 16px;
    line-height: 24px;
  }

  .strategy_page .section3 .icons .icon i {
    height: 60px;
    background-size: contain;
  }

  .strategy_page .section3 .icons .icon h3 {
    font-size: 16px;
    margin-top: 15px;
  }

  .strategy_page .section3 .slick .item .info {
    font-size: 16px;
    line-height: 26px;
  }

  .fixed_map .cont .bot_box h3 {
    font-size: 34px;
  }

  .fixed_map .cont .top_box .item {
    height: 50vh;
  }

  .fixed_map .cont .bot_box {
    height: 50vh;
    padding: 6vh 6vw;
  }

  .fixed_map .cont .bot_box .para {
    max-height: calc(38vh - 100px);
  }

  .fixed_map .close {
    width: 80px;
    height: 80px;
    top: 50vh;
  }

  .fixed_map .cont .top_box .slick-dots {
    bottom: -26px;
  }

  .industry_list .section1 .item {
    padding-bottom: 200px;
  }

  .industry_list .section1 .item h3 {
    font-size: 20px;
  }

  .industry_list .section1 .item h3:after {
    margin: 15px auto;
  }

  .industry_3 .section1 .para {
    font-size: 16px;
  }

  .industry_3 .section1 .item i {
    height: 70px;
  }

  .industry_3 .section1 .item h3 {
    font-size: 16px;
  }

  .industry_3 .section2 .item .num {
    font-size: 20px;
  }

  .industry_3 .section2 .item h3 {
    font-size: 16px;
  }

  .industry_3 .section3 .cont .item .num,
  .industry_3 .section3 .cont .item p {
    font-size: 20px;
  }

  .industry_3 .section3 .cont .item .num span {
    font-size: 70px;
  }

  .industry_3 .section3 .color_box .item h3 {
    font-size: 18px;
  }

  .industry_3 .section4 .item h3 {
    font-size: 16px;
    line-height: 26px;
  }

  .industry_3 .section6 .item i {
    height: 70px;
    background-size: contain;
  }

  .industry_3 .section6 .item p {
    font-size: 16px;
  }

  .industry_3 .section6 .item .num span {
    font-size: 40px;
  }

  .industry_4 .section1 .h3 {
    font-size: 30px;
  }

  .industry_4 .section1 h4 {
    font-size: 20px;
  }

  .industry_4 .section1 .item .num, .industry_4 .section1 .item p {
    font-size: 16px;
  }

  .industry_4 .section1 .item .num span {
    font-size: 50px;
  }

  .industry_4 .section2 .item h3 {
    font-size: 20px;
  }

  .industry_4 .section2 .item i {
    width: 100px;
    height: 100px;
    border-width: 5px;
    background-size: auto 46px;
  }

  .industry_4 .section3 h3 {
    font-size: 30px;
  }

  .industry_index .section1 .slick .item h3 {
    font-size: 20px;
  }

  .industry_index .section1 .slick .item .dot h4 {
    font-size: 20px;
  }

  .industry_index .section1 .gear:nth-of-type(1) .txt h3 {
    font-size: 24px;
  }

  .industry_index .section1 .gear:nth-of-type(2) .txt h3,
  .industry_index .section1 .gear:nth-of-type(3) .txt h3 {
    font-size: 18px;
  }

  .industry_index .section2 .para,
  .industry_index .section3 .para {
    font-size: 16px;
    line-height: 26px;
  }

  .industry_index .section2 .tip {
    font-size: 20px;
  }

  .industry_index .section2 .item h3 {
    font-size: 16px;
    margin-top: 15px;
  }

  .industry_index .section1 .slick .item .scroll {
    height: 390px;
  }

  .index_main .section2 .items .item h3 {
    font-size: 20px;
    line-height: 26px;
  }

  .index_main .section2 .items .item h4 {
    font-size: 16px;
    line-height: 24px;
  }

  .index_main .section2 .items .item:nth-of-type(2) h4,
  .index_main .section2 .items .item:nth-of-type(3) h4,
  .index_main .section2 .items .item:nth-of-type(4) h4,
  .index_main .section2 .items .item:nth-of-type(6) h4 {
    height: 72px;
  }

  .index_main .section2 .items .item p {
    font-size: 14px;
    margin-top: 10px;
  }

  .index_main .index_tit p {
    font-size: 16px;
  }

  .index_main .section3 .para {
    font-size: 16px;
  }

  .index_main .section3 .data .num span {
    font-size: 40px;
  }

  .index_main .section5 .para {
    font-size: 20px;
  }

  .index_main .section6 .txt_block .num {
    font-size: 80px;
  }

  .index_main .section6 .txt_block p {
    font-size: 20px;
  }

  .index_main .section7 .slick_box {
    height: 400px;
  }

  .index_main .section7 .cont .para {
    font-size: 16px;
    line-height: 26px;
    height: 78px;
  }

  .index_main .section7 .cont .item .num span {
    font-size: 40px;
  }

  .index_main .section7 .slick_box .item i {
    height: 50px;
  }

  .index_main .section7 .slick_box .item h3 {
    font-size: 24px;
  }
}
@media screen and (max-width: 1366px) {
  .inner_banner h3 {
    font-size: 36px;
  }

  .inner_banner h4 {
    font-size: 20px;
  }

  .inner_tit {
    font-size: 30px;
  }

  .about_history .section1 .item .head_box h3 {
    font-size: 26px;
  }

  .about_history .section1 .item .head_box h3:before {
    height: 26px;
  }

  .about_history .section1 .item .head_box .year {
    font-size: 30px;
  }

  .about_history .section1 .item .head_box .info, .about_history .section1 .item ul li .para {
    font-size: 14px;
    line-height: 24px;
  }

  .about_index .section1 .para {
    font-size: 14px;
    line-height: 24px;
  }

  .about_index .section1 .item .num span {
    font-size: 54px;
  }

  .about_index .section1 .item p {
    font-size: 14px;
  }

  .about_index .section1 a.more,
  .about_index .section5 a.more,
  .contact_page .section1 .left_box a,
  .contact_page .section2 .form button,
  .industry_index a.more,
  .index_main .index_btn {
    width: 180px;
    font-size: 14px;
  }

  .about_index .section2 .item .txt_box h3 {
    font-size: 26px;
  }

  .about_index .section2 .item .txt_box p {
    font-size: 18px;
  }

  .about_index .section4 .item .year {
    font-size: 30px;
  }

  .about_index .section4 .item h3 {
    font-size: 18px;
  }

  .about_index .section4 .item p {
    font-size: 14px;
    line-height: 24px;
    height: 96px;
  }

  .about_index .section4 .item a {
    font-size: 14px;
  }

  .about_intro .section1 .para {
    font-size: 14px;
  }

  .about_intro .section1 .items_1 .item h3 {
    font-size: 14px;
  }

  .about_intro .section1 .items_2 .item {
    height: 80px;
  }

  .about_intro .section1 .items_3 .item h4 {
    font-size: 18px;
  }

  .about_partner .item h4 {
    font-size: 18px;
  }

  .about_partner .item .img_box .para {
    font-size: 14px;
    line-height: 24px;
    max-height: 192px;
  }

  .about_partner .item .hide_box h3 {
    font-size: 26px;
  }

  .about_partner .item .hide_box .logos .logo {
    height: 80px;
  }

  .about_partner .item .data_1 .data i {
    height: 40px;
  }

  .about_partner .item .data_1 .data h3 {
    font-size: 14px;
  }

  .about_partner .item .data_3 .data h3 span {
    font-size: 12px;
  }

  .about_partner .item .data_2 .data h3, .about_partner .item .data_3 .data h3 {
    max-width: calc(100% - 90px);
    font-size: 14px;
  }

  .about_partner .item .data_2 .data i, .about_partner .item .data_3 .data i {
    width: 50px;
    height: 42px;
  }

  .about_partner .item .img_box a.more,
  .about_partner .item .img_box .span_box span {
    font-size: 14px;
    line-height: 40px;
  }

  .about_partner .item .img_box a.more,
  .about_partner .item .img_box .span_box {
    margin-top: 20px;
  }

  .contact_page .title {
    font-size: 26px;
  }

  .contact_page .section1 .left_box .item h3 {
    font-size: 18px;
  }

  .contact_page .section1 .left_box .item p, .contact_page .section2 .tip, .contact_page .section2 .form input, .contact_page .section2 .form textarea {
    font-size: 14px;
  }

  .news_detail .section1 h3 {
    font-size: 26px;
  }

  .news_detail .section1 .date {
    font-size: 14px;
  }

  .news_detail .section2 .right_block h3 {
    font-size: 18px;
  }

  .news_detail .section2 .cont {
    font-size: 14px;
  }

  .news_detail .section2 .right_block .item .tit {
    font-size: 14px;
  }

  .news_detail .section2 .right_block .item .date {
    font-size: 14px;
  }

  .news_detail .section2 .other_block .item span {
    font-size: 18px;
  }

  .news_detail .section2 .other_block .item a {
    font-size: 14px;
  }

  .duty_page .section1 .para {
    font-size: 14px;
  }

  .duty_page .section1 .box .num span {
    font-size: 36px;
  }

  .duty_page .section1 .box p {
    font-size: 14px;
  }

  .duty_page .section1 .box .num {
    font-size: 14px;
  }

  .duty_page .section1 .box {
    width: 180px;
    height: 180px;
  }

  .duty_page .section2 .item h3 {
    font-size: 18px;
  }

  .duty_page .section2 .item p {
    font-size: 14px;
    height: 48px;
    margin: 10px 0;
  }

  .duty_page .section2 .item .date {
    font-size: 14px;
  }

  .foreign_page .section1 .para {
    font-size: 14px;
  }

  .foreign_page .section2 .item span {
    font-size: 18px;
  }

  .industry_1_detail .inner_banner .tit,
  .industry_2_detail .inner_banner .tit {
    font-size: 36px;
  }

  .industry_1_detail .section1 .left_box h3,
  .industry_2_detail .section1 h3 {
    font-size: 30px;
  }

  .industry_1_detail .section1 .left_box .para,
  .industry_2_detail .section1 .para {
    font-size: 14px;
    line-height: 24px;
  }

  .industry_2_detail .inner_banner p span {
    font-size: 18px;
  }

  .legal_page .section1 .para {
    font-size: 14px;
  }

  .news_group .section1 .item h3 {
    font-size: 18px;
  }

  .news_group .section1 .item p {
    font-size: 14px;
    height: 48px;
    margin: 10px 0;
  }

  .news_group .section1 .item .date {
    font-size: 14px;
  }

  .news_report .section1 .item h3 {
    font-size: 18px;
    height: 54px;
  }

  .news_report .section1 .item p {
    font-size: 14px;
  }

  .news_report .section1 .item .date {
    font-size: 14px;
  }

  .recruit_page .para {
    font-size: 14px;
  }

  .recruit_page .section2 .item p {
    font-size: 14px;
    line-height: 24px;
  }

  .search_page .section1 form {
    height: 50px;
    padding-right: 50px;
  }

  .search_page .section1 form button {
    width: 50px;
    height: 50px;
  }

  .search_page .section2 .item h3 {
    font-size: 16px;
  }

  .strategy_page .section1 .para {
    font-size: 14px;
  }

  .strategy_page .section2 .para {
    font-size: 14px;
  }

  .strategy_page .section3 .para {
    font-size: 14px;
  }

  .strategy_page .section3 .slick .item .info {
    font-size: 14px;
    line-height: 24px;
  }

  .fixed_map .cont .bot_box h3 {
    font-size: 30px;
  }

  .fixed_map .cont .bot_box .para {
    font-size: 14px;
  }

  .industry_list .section1 .item {
    padding-bottom: 170px;
  }

  .industry_list .section1 .item .txt_block {
    padding: 24px;
  }

  .industry_list .section1 .item:hover .txt_block {
    padding: 24px 24px 64px;
  }

  .industry_list .section1 .item span {
    line-height: 40px;
  }

  .industry_list .section1 .item h3 {
    font-size: 18px;
  }

  .industry_list .section1 .item p {
    font-size: 14px;
    line-height: 24px;
    height: 96px;
  }

  .industry_3 .section1 .para {
    font-size: 14px;
  }

  .industry_3 .section1 .item i {
    height: 60px;
  }

  .industry_3 .section3 .cont .item .num, .industry_3 .section3 .cont .item p {
    font-size: 18px;
  }

  .industry_3 .section3 .cont .item .num span {
    font-size: 60px;
  }

  .industry_3 .section3 .color_box .item h3 {
    font-size: 16px;
  }

  .industry_3 .section6 .item i {
    height: 60px;
  }

  .industry_3 .section6 .item .num span {
    font-size: 36px;
  }

  .industry_4 .section1 .h3 {
    font-size: 26px;
  }

  .industry_4 .section1 h4 {
    font-size: 18px;
  }

  .industry_4 .section1 .item .num span {
    font-size: 42px;
  }

  .industry_4 .section2 .item h3 {
    font-size: 18px;
  }

  .industry_4 .section2 .item p {
    font-size: 14px;
  }

  .industry_4 .section3 h3 {
    font-size: 26px;
  }

  .industry_index .section1 .slick .item h3 {
    font-size: 18px;
  }

  .industry_index .section1 .slick .item .dot h4 {
    font-size: 18px;
  }

  .industry_index .section1 .slick .item .dot .para {
    font-size: 14px;
  }

  .industry_index .section1 .gear:nth-of-type(1) .txt h3 {
    font-size: 20px;
  }

  .industry_index .section1 .gear:nth-of-type(2) .txt h3, .industry_index .section1 .gear:nth-of-type(3) .txt h3 {
    font-size: 16px;
  }

  .industry_index .section2 .para, .industry_index .section3 .para {
    font-size: 14px;
    line-height: 24px;
  }

  .industry_index .section2 .tip {
    font-size: 18px;
  }

  .industry_index .section1 .gear:nth-of-type(1) {
    width: 30vw;
    right: 7vw;
  }

  .industry_index .section1 .gear:nth-of-type(2) {
    top: 13vw;
  }

  .industry_index .section1 .gear:nth-of-type(3) {
    top: 26.5vw;
  }

  .industry_index .section1 .slick .item .scroll {
    height: 312px;
  }

  .index_main .section2 .items .item h3 {
    font-size: 18px;
  }

  .index_main .section3 .para {
    font-size: 14px;
  }

  .index_main .section3 .data .num span {
    font-size: 36px;
  }

  .index_main .section5 .para {
    font-size: 18px;
  }

  .index_main .section6 .txt_block .num {
    font-size: 60px;
  }

  .index_main .section6 .txt_block p {
    font-size: 18px;
  }

  .index_main .section7 .slick_box {
    height: 320px;
  }

  .index_main .section7 .cont .item .num span {
    font-size: 36px;
  }

  .index_main .section7 .slick_box .item h3 {
    font-size: 20px;
  }
}
@media screen and (max-width: 992px) {
  .inner_page {
    padding-top: 0;
  }

  .lighter, .sitemap_page .section1 a.btn, .legal_page .section1 .para, .contact_page .section1 .left_box .item p, .contact_page .section2 .tip, .contact_page .section2 .form input, .contact_page .section2 .form textarea, .news_group .section1 .item h3, .news_group .section1 .item p, .news_report .section1 .item h3, .news_report .section1 .item p, .news_detail .section2 .cont, .news_detail .section2 .other_block .item, .news_detail .section2 .right_block .item .tit, .duty_page .section1 .para, .duty_page .section1 .box p, .duty_page .section2 .item h3, .duty_page .section2 .item p, .recruit_page .para, .industry_list .section1 .item h3, .industry_list .section1 .item p, .industry_list .section1 .item span, .industry_3 .section1 .para, .industry_3 .section1 .item h3, .industry_3 .section2 .item h3, .industry_3 .section4 .item h3, .industry_index .section2 .item h3, .about_intro .section1 .items_1 .item h3, .strategy_page .section1 .para, .strategy_page .section2 .para, .strategy_page .section3 .para, .strategy_page .section3 .icons .icon h3 {
    font-weight: normal;
  }

  .inner_tit {
    font-size: 24px;
  }

  .index_main .index_btn {
    margin: 20px auto 0;
  }

  .index_main .index_tit p {
    font-size: 14px;
    line-height: 20px;
    margin-top: 10px;
  }

  .index_main .index_tit:after {
    margin-top: 10px;
  }

  .index_main .section1 .item .m_img {
    display: block;
  }

  .index_main .section1 .item .pc_img {
    display: none;
  }

  .index_main .section1 .slick-dots {
    bottom: 30px;
  }

  .index_main .section1 .slick-dots li {
    width: 10px;
    height: 10px;
    border-width: 2px;
    margin: 0 3px;
  }

  .index_main .section2 {
    padding: 40px 20px 0;
  }

  .index_main .section2 .items {
    margin-top: 20px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  }

  .index_main .section2 .items .item {
    position: relative;
  }
  .index_main .section2 .items .item:nth-of-type(4), .index_main .section2 .items .item:nth-of-type(6) {
    display: none;
  }
  .index_main .section2 .items .item:nth-of-type(2), .index_main .section2 .items .item:nth-of-type(3) {
    width: 50%;
    height: 33.5vw;
    display: inline-block;
    vertical-align: top;
    overflow: hidden;
  }
  .index_main .section2 .items .item:nth-of-type(2) h4, .index_main .section2 .items .item:nth-of-type(3) h4 {
    font-size: 12px;
    line-height: 20px;
    height: 60px;
  }
  .index_main .section2 .items .item:nth-of-type(5) {
    height: 33.5vw;
  }
  .index_main .section2 .items .item:nth-of-type(5) h4 {
    font-size: 14px;
    line-height: 20px;
  }

  .index_main .section2 .items .item .txt_block {
    left: 20px;
    right: 20px;
    bottom: 30px;
  }

  .index_main .section2 .items .item .cell_box {
    padding: 0 20px;
  }

  .index_main .section2 .items .item h3 {
    font-size: 16px;
  }

  .index_main .section2 .items .item p {
    font-size: 12px;
    line-height: 20px;
    margin-top: 5px;
    margin-bottom: 10px;
    height: 40px;
    overflow: hidden;
  }

  .index_main .section2 .items .item span {
    display: none;
  }

  .index_main .section2 .items .item:nth-of-type(5) .cell_box:after {
    left: 20px;
    bottom: 20px;
  }

  .index_main .section3 {
    padding: 40px 20px;
  }

  .index_main .section3 .para {
    line-height: 24px;
    text-align: left;
    margin-top: 20px;
  }

  .index_main .section3 .data_box {
    margin-top: 20px;
  }

  .index_main .section3 .data {
    width: 50%;
    text-align: left;
    margin-top: 20px;
    padding: 0 20px;
  }
  .index_main .section3 .data:nth-of-type(1), .index_main .section3 .data:nth-of-type(2) {
    margin-top: 0;
  }

  .index_main .section3 .data .num {
    font-size: 18px;
  }

  .index_main .section3 .data p {
    font-size: 14px;
    margin-top: 5px;
  }

  .about_index .section1 a.more,
  .about_index .section5 a.more,
  .contact_page .section1 .left_box a,
  .contact_page .section2 .form button,
  .industry_index a.more,
  .index_main .index_btn {
    width: 150px;
    line-height: 36px;
    font-size: 14px;
  }

  .index_main .section4 {
    padding: 40px 20px;
  }

  .index_main .section4 .index_tit p {
    text-align: left;
  }

  .index_main .section5 {
    padding: 40px 20px;
  }

  .index_main .section5 .img_block {
    margin: 20px -20px 0;
  }

  .index_main .section5 .img_block img {
    width: 100%;
  }

  .index_main .section5 .para {
    font-size: 14px;
    line-height: 24px;
    text-align: left;
    margin-top: -20px;
  }

  .index_main .section6 {
    padding: 40px 20px 120px;
  }

  .index_main .section6 .txt_block {
    position: static;
    -webkit-transform: none;
    -moz-transform: none;
    -ms-transform: none;
    transform: none;
  }

  .index_main .section6 .txt_block .inner_tit {
    text-align: center;
  }

  .index_main .section6 .txt_block .num {
    display: none;
  }

  .index_main .section6 .txt_block p {
    font-size: 14px;
    line-height: 24px;
    margin-top: 10px;
    text-align: center;
  }

  .index_main .section6 .txt_block:after {
    margin: 10px auto 0;
  }

  .index_main .section6 .img_block {
    width: 100%;
    margin-top: 20px;
  }

  .index_main .section7 {
    padding: 0 20px 40px;
  }

  .index_main .section7 .wrapper {
    margin-top: -60px;
  }

  .index_main .section7 .slick_box {
    width: 100%;
    height: auto;
    position: relative;
    border-radius: 0 20px 20px 20px;
    padding: 30px 0;
  }

  .index_main .section7 .slick_box .item i {
    height: 30px;
  }

  .index_main .section7 .slick_box .item h3 {
    font-size: 16px;
    line-height: 20px;
    margin-top: 10px;
  }

  .index_main .section7 .slick_box .items {
    width: 40%;
  }

  .index_main .section7 .slick_box .btns {
    width: 70px;
    margin: 0;
    right: 30px;
    bottom: auto;
    top: 50%;
    margin-top: -7px;
    left: auto;
  }

  .index_main .section7 .cont_box {
    margin-left: 0;
    padding-top: 20px;
  }

  .index_main .section7 .cont .para {
    font-size: 14px;
    line-height: 24px;
    height: 96px;
  }

  .index_main .section7 .cont .data {
    margin-top: 20px;
  }

  .index_main .section7 .cont .item {
    width: 50%;
    padding-right: 10px;
  }
  .index_main .section7 .cont .item:nth-of-type(1), .index_main .section7 .cont .item:nth-of-type(2) {
    margin-top: 0;
  }

  .index_main .section7 .cont .item .num,
  .index_main .section7 .cont .item p {
    font-size: 12px;
  }

  .index_main .section7 .cont .item .num span {
    font-size: 26px;
  }

  .index_main .section7 .cont .item:after {
    display: none;
  }

  .inner_banner .m_img {
    display: block;
  }

  .inner_banner .pc_img {
    display: none;
  }

  .inner_banner .txt_box {
    padding: 0 20px;
  }

  .inner_banner h3 {
    font-size: 30px;
  }

  .inner_banner h4 {
    font-size: 15px;
    margin-top: 10px;
  }

  .inner_banner h4:after {
    margin-top: 10px;
  }

  .about_history .section1 {
    padding: 40px 20px;
  }

  .about_history .section1 .river_box {
    padding-bottom: 0;
  }

  .about_history .section1 .river_img {
    display: none;
  }

  .about_history .section1 .item {
    padding-top: 40px;
  }

  .about_history .section1 .item .head_box h3 {
    font-size: 24px;
  }

  .about_history .section1 .item ul li {
    width: 100%;
    margin: 20px 0 0 !important;
  }

  .about_history .section1 .item ul li .year {
    display: block;
    width: 90px;
    height: auto;
    text-align: center;
  }
  .about_history .section1 .item ul li .year:before {
    content: '';
    position: absolute;
    width: calc(100vw - 130px);
    height: 36px;
    left: 90px;
    right: 0;
    background-color: #dee9f7;
  }

  .about_history .section1 .item ul li .year span {
    position: static;
    font-size: 20px;
    line-height: 36px;
    display: block;
    -webkit-transform: none;
    -moz-transform: none;
    -ms-transform: none;
    transform: none;
  }

  .about_history .section1 .item ul li .year:after {
    border-right-width: 20px;
    border-bottom-width: 20px;
  }

  .about_history .section1 .item ul li .para {
    margin-left: 20px;
    padding: 30px 20px;
    background: #fff;
    width: calc(100% - 20px);
  }

  .about_history .section1 .item ul li .para p {
    padding-left: 50px;
  }

  .about_honor .section1 {
    padding: 40px 20px;
  }

  .about_honor .section1 .item {
    width: calc(50% - 5px);
    margin-top: 10px;
  }
  .about_honor .section1 .item:nth-of-type(odd) {
    margin-right: 10px;
  }
  .about_honor .section1 .item:nth-of-type(1), .about_honor .section1 .item:nth-of-type(2) {
    margin-top: 0;
  }

  .about_honor .section1 .item h3 {
    font-size: 14px;
    line-height: 20px;
    padding: 10px;
  }

  .about_index .section1 {
    padding: 40px 20px;
  }

  .about_index .section1 .para {
    text-align: left;
    margin-top: 20px;
  }

  .about_index .section1 .items {
    margin-top: 0;
  }

  .about_index .section1 .item {
    width: 50%;
    margin-top: 30px;
  }

  .about_index .section1 .item .num {
    font-size: 24px;
    line-height: 1;
  }

  .about_index .section1 .item .num span {
    font-size: 50px;
  }

  .about_index .section1 .item p {
    margin-top: 10px;
  }

  .about_index .section1 a.more,
  .about_index .section5 a.more {
    margin-top: 30px;
  }

  .about_index .section2 {
    padding: 0 20px;
  }

  .about_index .section2 .item {
    width: 100%;
  }

  .about_index .section2 .item .txt_box:after {
    display: none;
  }

  .about_index .section2 .item .txt_box {
    padding: 20px;
  }

  .about_index .section2 .item .txt_box h3 {
    font-size: 24px;
  }

  .about_index .section2 .item .txt_box p {
    margin-top: 15px;
  }

  .about_index .section3 {
    padding: 40px 0 0;
    border: none;
  }

  .about_index .section3 .items {
    margin-top: 20px;
  }

  .about_index .section3 .item .logo {
    margin: 20px 0;
  }

  .about_index .section4 {
    padding: 0;
    position: relative;
  }

  .about_index .section4 .inner_tit {
    position: absolute;
    top: 40px;
    left: 0;
    right: 0;
    color: #fff;
  }

  .about_index .section4 .cont {
    margin-top: 0;
    background-attachment: inherit;
  }

  .about_index .section4 .item {
    border: none !important;
    padding: 48vw 0;
  }

  .about_index .section4 .item .box {
    padding: 0 40px;
    text-align: center;
  }

  .about_index .section4 .item .box:before {
    display: none;
  }

  .about_index .section4 .item .year {
    line-height: 1;
  }

  .about_index .section4 .item h3 {
    margin: 20px 0 10px;
  }

  .about_index .section4 .item p {
    height: 72px;
    overflow: hidden;
  }

  .about_index .section4 .item a {
    width: 150px;
    background-color: #073190;
    line-height: 36px;
  }

  .about_index .section4 .slick-dots {
    position: absolute;
    bottom: 30px;
    left: 0;
    right: 0;
    text-align: center;
    font-size: 0;
  }
  .about_index .section4 .slick-dots li {
    display: inline-block;
    vertical-align: top;
    width: 10px;
    height: 10px;
    margin: 0 3px;
    border: 2px solid #fff;
    border-radius: 50%;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
  .about_index .section4 .slick-dots li.slick-active {
    background-color: #fff;
  }
  .about_index .section4 .slick-dots button {
    display: none;
  }

  .about_index .section5 {
    padding: 40px 20px;
  }

  .about_index .section5 .slick {
    display: none;
  }

  .about_index .section5 .m-slick {
    display: block;
    margin-top: 20px;
  }

  .about_index .section5 .m-slick .items {
    font-size: 0;
    margin: 0 -5px;
  }

  .about_index .section5 .item {
    display: inline-block;
    vertical-align: top;
    width: calc(50% - 10px);
    margin: 10px 5px 0;
  }
  .about_index .section5 .item:nth-of-type(1), .about_index .section5 .item:nth-of-type(2) {
    margin-top: 0;
  }

  .about_index .section5 .item h3 {
    font-size: 14px;
    line-height: 20px;
    padding: 10px;
    margin-top: 0;
  }

  .about_index .section5 .slick-dots {
    margin-top: 20px;
    text-align: center;
    font-size: 0;
  }
  .about_index .section5 .slick-dots li {
    display: inline-block;
    vertical-align: top;
    width: 10px;
    height: 10px;
    margin: 0 3px;
    border: 2px solid #073190;
    border-radius: 50%;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
  .about_index .section5 .slick-dots li.slick-active {
    background-color: #073190;
  }
  .about_index .section5 .slick-dots button {
    display: none;
  }

  .about_intro .section1 {
    padding: 40px 20px;
  }

  .about_intro .section1 .inner_tit.color {
    font-size: 20px;
  }

  .about_intro .section1 .video_box {
    margin: 20px -20px 0;
    overflow: hidden;
  }

  .about_intro .section1 .video_box img {
    width: 200%;
    margin-left: -50%;
  }

  .about_intro .section1 .video_box a {
    width: 40px;
    height: 40px;
    margin: -20px 0 0 -20px;
    background-position: 16px center;
    background-size: auto 16px;
  }

  .about_intro .section1 .para {
    line-height: 24px;
    margin-top: 20px;
  }

  .about_intro .section1 .items_1 {
    margin-top: 20px;
  }

  .about_intro .section1 .items_1 .item h3 {
    left: 20px;
    right: 20px;
    bottom: 15px;
  }

  .about_intro .section1 .items_1 .slick-dots {
    margin-top: 20px;
    text-align: center;
    font-size: 0;
  }
  .about_intro .section1 .items_1 .slick-dots li {
    display: inline-block;
    vertical-align: top;
    width: 10px;
    height: 10px;
    margin: 0 3px;
    border: 2px solid #073190;
    border-radius: 50%;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
  .about_intro .section1 .items_1 .slick-dots li.slick-active {
    background-color: #073190;
  }
  .about_intro .section1 .items_1 .slick-dots button {
    display: none;
  }

  .about_intro .section1 .items_2 {
    margin-top: 20px;
  }

  .about_intro .section1 .items_2 .item {
    width: 50%;
    height: 60px;
  }
  .about_intro .section1 .items_2 .item:nth-of-type(2), .about_intro .section1 .items_2 .item:nth-of-type(3), .about_intro .section1 .items_2 .item:nth-of-type(6), .about_intro .section1 .items_2 .item:nth-of-type(7), .about_intro .section1 .items_2 .item:nth-of-type(10), .about_intro .section1 .items_2 .item:nth-of-type(11), .about_intro .section1 .items_2 .item:nth-of-type(14), .about_intro .section1 .items_2 .item:nth-of-type(15) {
    background-color: #f7f7f7;
  }

  .about_intro .section1 .items_2 .item img {
    max-width: 80%;
    max-height: 70%;
  }

  .about_intro .section1 .items_3 {
    margin-top: 40px;
  }

  .about_intro .section1 .items_3 .item {
    margin-top: 20px;
  }
  .about_intro .section1 .items_3 .item:nth-of-type(odd) .box {
    background: -webkit-linear-gradient(90deg, white 20%, rgba(255, 255, 255, 0) 100%);
    background: -o-linear-gradient(90deg, white 20%, rgba(255, 255, 255, 0) 100%);
    background: -moz-linear-gradient(90deg, white 20%, rgba(255, 255, 255, 0) 100%);
    background: linear-gradient(90deg, white 20%, rgba(255, 255, 255, 0) 100%);
  }
  .about_intro .section1 .items_3 .item:nth-of-type(even) .box {
    text-align: right;
    background: -webkit-linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, white 80%);
    background: -o-linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, white 80%);
    background: -moz-linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, white 80%);
    background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, white 80%);
  }

  .about_intro .section1 .items_3 .item .box {
    padding: 30px 20px;
  }

  .about_intro .section1 .items_3 .item h4 {
    margin-top: 20px;
    font-size: 16px;
  }

  .about_intro .section1 .items_3 .item img {
    width: 200%;
    margin-left: -50%;
  }

  .about_partner .item {
    padding: 40px 20px 0;
  }

  .about_partner .item h4 {
    font-size: 16px;
    margin-top: 10px;
  }

  .about_partner .item .data_1 {
    margin-top: 20px;
    display: block;
  }

  .about_partner .item .data_1 .data {
    padding: 14px;
  }
  .about_partner .item .data_1 .data:nth-of-type(1), .about_partner .item .data_1 .data:nth-of-type(2) {
    width: calc(50% - 5px);
  }
  .about_partner .item .data_1 .data:nth-of-type(2) {
    margin-left: 10px;
  }
  .about_partner .item .data_1 .data:nth-of-type(3) {
    margin-top: 10px;
    width: 100%;
  }

  .about_partner .item .data_1 .data i {
    height: 30px;
  }

  .about_partner .item .data_1 .data h3 {
    margin-top: 10px;
  }

  .about_partner .item .img_box {
    margin: 30px -20px 0;
  }

  .about_partner .item .img_box .img_block {
    width: 100%;
  }

  .about_partner .item .img_box .txt_block {
    position: static;
    width: 100%;
  }

  .about_partner .item .img_box .box {
    width: 100%;
    max-width: 100%;
    padding: 40px 20px;
  }

  .about_partner .item .img_box .para {
    max-height: none;
    padding-right: 0;
  }

  .about_partner .item:nth-of-type(even) .img_box .img_block {
    margin-left: 0;
  }

  .about_partner .item .data_3 {
    margin-top: 20px;
    flex-wrap: wrap;
  }

  .about_partner .item .data_3 .data {
    width: calc(50% - 5px);
    margin-top: 10px;
    padding: 20px 0;
  }
  .about_partner .item .data_3 .data:nth-of-type(even) {
    margin-left: 10px;
  }

  .about_partner .item .data_2 .data i, .about_partner .item .data_3 .data i {
    width: 30px;
    height: 30px;
  }

  .about_partner .item .data_2 .data h3, .about_partner .item .data_3 .data h3 {
    max-width: calc(100% - 50px);
  }

  .about_partner .item .img_box a.more {
    display: none;
  }

  .about_partner .item .hide_box {
    display: block;
    box-shadow: none;
    padding: 0;
    margin-top: 40px;
  }

  .about_partner .item .hide_box h3 {
    font-size: 20px;
    line-height: 1.2;
  }

  .about_partner .item .hide_box .logos {
    margin-top: 20px;
  }

  .about_partner .item .hide_box a.slideup {
    display: none;
  }

  .about_partner .item .hide_box .logos .logo {
    width: 50%;
    height: 60px;
  }
  .about_partner .item .hide_box .logos .logo:nth-of-type(2), .about_partner .item .hide_box .logos .logo:nth-of-type(3), .about_partner .item .hide_box .logos .logo:nth-of-type(6), .about_partner .item .hide_box .logos .logo:nth-of-type(7), .about_partner .item .hide_box .logos .logo:nth-of-type(10), .about_partner .item .hide_box .logos .logo:nth-of-type(11), .about_partner .item .hide_box .logos .logo:nth-of-type(14), .about_partner .item .hide_box .logos .logo:nth-of-type(15) {
    background-color: #f7f7f7;
  }

  .about_partner .item .img_box .span_box span {
    width: calc(50% - 5px);
    margin-right: 0;
    margin-top: 10px;
  }
  .about_partner .item .img_box .span_box span:nth-of-type(even) {
    margin-left: 10px;
  }
  .about_partner .item .img_box .span_box span:nth-of-type(1), .about_partner .item .img_box .span_box span:nth-of-type(2) {
    margin-top: 0;
  }

  .contact_page .section1 {
    padding: 40px 20px;
  }

  .contact_page .section1 .cont {
    margin-top: 20px;
    display: block;
  }

  .contact_page .section1 .left_box {
    width: 100%;
    display: block;
  }

  .contact_page .section1 .left_box .item {
    margin-top: 10px;
    padding-bottom: 10px;
  }

  .contact_page .section1 .left_box .item h3 {
    font-size: 16px;
  }

  .contact_page .section1 .left_box .item p {
    margin-top: 10px;
  }

  .contact_page .section1 .left_box a,
  .contact_page .section2 .form button {
    margin-top: 20px;
    width: 100%;
  }

  .contact_page .section1 .right_box {
    margin: 30px -20px 0;
    width: calc(100% + 40px);
    padding-left: 0;
    height: 72vw;
  }

  .contact_page .section2 {
    padding: 0 20px 40px;
    border: none;
  }

  .contact_page .title {
    font-size: 24px;
  }

  .contact_page .section2 .tip {
    margin: 10px 0;
  }

  .contact_page .section2 .form input {
    height: 50px;
  }

  .contact_page .section2 .form textarea {
    height: 100px;
    padding-top: 20px;
  }

  .legal_page .section1 {
    padding: 40px 20px;
  }

  .legal_page .section1 .para {
    line-height: 24px;
  }

  .sitemap_page .section1 {
    padding: 20px 20px 40px;
  }

  .sitemap_page .section1 .item {
    padding: 20px 0;
  }

  .sitemap_page .section1 .link {
    margin-top: 10px;
  }

  .sitemap_page .section1 a.btn {
    font-size: 14px;
    line-height: 36px;
    max-width: none;
  }

  .sitemap_page .section1 h3 a.btn {
    width: 100%;
    margin-right: 0;
    margin-top: 10px;
  }
  .sitemap_page .section1 h3 a.btn:nth-of-type(1) {
    margin-top: 0;
  }

  .sitemap_page .section1 .link a.btn {
    margin-right: 10px;
    margin-top: 10px;
    width: calc(50% - 5px);
  }
  .sitemap_page .section1 .link a.btn:nth-of-type(even) {
    margin-right: 0;
  }
  .sitemap_page .section1 .link a.btn:nth-of-type(1), .sitemap_page .section1 .link a.btn:nth-of-type(2) {
    margin-top: 0;
  }

  .foreign_page .section1 {
    padding: 40px 20px 20px;
  }

  .foreign_page .section1 .para {
    line-height: 24px;
    text-align: left;
  }

  .foreign_page .section2 {
    padding: 0 20px 40px;
  }

  .foreign_page .section2 .item {
    width: 50%;
    height: 44vw;
  }
  .foreign_page .section2 .item:nth-of-type(1), .foreign_page .section2 .item:nth-of-type(4), .foreign_page .section2 .item:nth-of-type(5), .foreign_page .section2 .item:nth-of-type(8), .foreign_page .section2 .item:nth-of-type(9), .foreign_page .section2 .item:nth-of-type(12), .foreign_page .section2 .item:nth-of-type(13), .foreign_page .section2 .item:nth-of-type(16), .foreign_page .section2 .item:nth-of-type(17), .foreign_page .section2 .item:nth-of-type(20), .foreign_page .section2 .item:nth-of-type(21), .foreign_page .section2 .item:nth-of-type(24), .foreign_page .section2 .item:nth-of-type(25) {
    background-color: #f7f7f7;
  }

  .news_group .section1 {
    padding: 20px 20px 40px;
  }

  .news_group .section1 .item {
    padding: 20px 0;
  }

  .news_group .section1 .item .img_block {
    width: 100%;
  }

  .news_group .section1 .item .txt_block {
    width: 100%;
    padding-left: 0;
    margin-top: 20px;
  }

  .news_group .section1 .item h3 {
    font-size: 16px;
  }

  .news_group .section1 .item p {
    line-height: 20px;
    height: auto;
  }

  .news_group .section1 .items {
    margin-bottom: 20px;
  }

  .comm_pages ul li a {
    width: 30px;
    height: 30px;
    line-height: 28px;
  }

  .comm_pages ul li {
    margin: 0 1px;
  }

  .comm_pages ul li:first-of-type a, .comm_pages ul li:last-of-type a {
    width: 40px;
  }

  .news_report .section1 {
    padding: 40px 20px;
  }

  .news_report .section1 .items {
    margin-bottom: 20px;
  }

  .news_report .section1 .item {
    margin-top: 20px;
  }
  .news_report .section1 .item:nth-of-type(1) {
    margin-top: 0;
  }

  .news_report .section1 .item .txt_block {
    padding: 0 20px;
  }

  .news_report .section1 .item h3 {
    font-size: 16px;
    line-height: 24px;
    margin: 15px 0 5px;
  }

  .news_report .section1 .item p {
    line-height: 20px;
    height: 60px;
  }

  .news_detail .section1 {
    padding: 40px 20px 100px;
  }

  .news_detail .section1 h3 {
    font-size: 18px;
    line-height: 1.2;
  }

  .news_detail .section1 .date {
    margin-top: 15px;
  }

  .news_detail .section2 {
    padding: 0 20px;
  }

  .comm_share {
    display: none;
  }

  .news_detail .section2 .left_block {
    width: 100%;
    margin-top: -60px;
  }

  .news_detail .section2 .bg_box {
    padding: 30px 20px 40px;
  }

  .news_detail .section2 .cont {
    line-height: 20px;
  }

  .news_detail .section2 .back_btn {
    margin-top: 40px;
  }

  .news_detail .section2 .other_block {
    margin-top: 20px;
  }

  .news_detail .section2 .other_block .item {
    width: 100%;
    padding: 20px;
  }

  .news_detail .section2 .other_block .item:nth-of-type(2) {
    margin: 20px 0 0;
  }

  .news_detail .section2 .right_block {
    width: calc(100% + 40px);
    margin: 40px -20px 0;
    background-color: #fff;
    padding: 40px 20px;
  }

  .news_detail .section2 .right_block h3 {
    padding-bottom: 10px;
  }

  .news_detail .section2 .right_block h3:before {
    height: 20px;
  }

  .news_detail .section2 .right_block .item {
    margin-top: 20px;
  }

  .news_detail .section2 .right_block .item .tit {
    line-height: 20px;
    height: 40px;
  }

  .news_detail .section2 .right_block .item .date {
    margin-top: 5px;
  }

  .duty_page .section1 {
    padding: 40px 20px 30px;
    background-size: 500% auto;
  }

  .duty_page .section1 .para {
    line-height: 24px;
    text-align: left;
  }

  .duty_page .section1 .box {
    position: static;
    margin: 40px auto 0;
    width: 150px;
    height: 150px;
    border-radius: 0 30px 0 30px;
  }

  .duty_page .section1 .box .num span {
    font-size: 30px;
  }

  .duty_page .section2 {
    padding: 40px 20px;
  }

  .duty_page .section2 .item {
    margin-top: 20px;
  }

  .duty_page .section2 .item .img_block {
    width: 100%;
  }

  .duty_page .section2 .item .txt_block {
    width: 100%;
    padding: 20px;
  }

  .duty_page .section2 .item h3 {
    font-size: 16px;
    color: #073190;
  }

  .duty_page .section2 .item p {
    line-height: 20px;
    height: auto;
  }

  .duty_page .section2 .items {
    margin-bottom: 20px;
  }

  .recruit_page .section1 {
    padding: 40px 20px;
  }

  .recruit_page .para {
    line-height: 24px;
    margin: 20px 0;
    text-align: left;
  }

  .recruit_page .section1 .item {
    height: 36vw;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
  }

  .recruit_page .section1 .item .hidden {
    display: none;
  }

  .recruit_page .section1 .item:nth-of-type(1) {
    width: calc(66.66% - 5px);
  }

  .recruit_page .section1 .item:nth-of-type(2) {
    width: calc(33.33% - 5px);
    margin-left: 10px;
  }

  .recruit_page .section1 .item:nth-of-type(3) {
    width: 100%;
    margin-top: 10px;
  }

  .recruit_page .section1 .item:nth-of-type(4),
  .recruit_page .section1 .item:nth-of-type(5) {
    width: calc(50% - 5px);
    margin-top: 10px;
  }

  .recruit_page .section1 .item:nth-of-type(4) {
    margin-left: 0;
  }

  .recruit_page .section1 .item:nth-of-type(5) {
    margin-left: 10px;
  }

  .recruit_page .section2 {
    padding: 40px 20px;
  }

  .recruit_page .section2 .items {
    display: block;
  }

  .recruit_page .section2 .item {
    width: 100%;
    margin-top: 20px;
    padding: 20px;
  }
  .recruit_page .section2 .item:nth-of-type(1) {
    margin-top: 0;
  }

  .recruit_page .section2 .rec_box {
    margin: 40px -20px 0;
    padding: 40px 20px 0;
    box-shadow: none;
  }

  .recruit_page .section2 .filter {
    margin-top: 20px;
    padding: 6px;
  }

  .recruit_page .section2 .filter .box:nth-of-type(1) {
    width: calc(50% - 3px);
  }

  .recruit_page .section2 .filter .box:nth-of-type(2) {
    width: calc(50% - 3px);
    margin: 0 0 0 6px;
  }

  .recruit_page .section2 .filter .box:nth-of-type(3) {
    width: 100%;
    margin-top: 6px;
  }

  .recruit_page .section2 .lists_box .head_box span {
    font-size: 12px;
    line-height: 36px;
  }
  .recruit_page .section2 .lists_box .head_box span:nth-of-type(2), .recruit_page .section2 .lists_box .head_box span:nth-of-type(3), .recruit_page .section2 .lists_box .head_box span:nth-of-type(4) {
    display: none;
  }
  .recruit_page .section2 .lists_box .head_box span:nth-of-type(1) {
    width: calc(100% - 80px);
  }
  .recruit_page .section2 .lists_box .head_box span:nth-of-type(5) {
    width: 80px;
  }

  .recruit_page .section2 .lists_box .list span {
    font-size: 12px;
    line-height: 36px;
  }
  .recruit_page .section2 .lists_box .list span:nth-of-type(2), .recruit_page .section2 .lists_box .list span:nth-of-type(3), .recruit_page .section2 .lists_box .list span:nth-of-type(4) {
    display: none;
  }
  .recruit_page .section2 .lists_box .list span:nth-of-type(1) {
    width: calc(100% - 80px);
  }
  .recruit_page .section2 .lists_box .list span:nth-of-type(5) {
    width: 80px;
  }

  .recruit_popups .cell_box {
    padding: 0 20px;
  }

  .recruit_popups .pop_item {
    padding: 30px 20px;
  }

  .recruit_popups .pop_item .tit {
    font-size: 18px;
  }

  .recruit_popups .pop_item .s_span {
    display: none;
  }

  .recruit_popups .boxes {
    padding: 20px;
  }

  .recruit_popups .box {
    padding: 15px 0;
  }

  .recruit_popups .box h4 {
    font-size: 16px;
    font-weight: bold;
  }

  .recruit_popups .box .para {
    line-height: 24px;
    margin-top: 10px;
  }

  .recruit_popups a.apply {
    width: 120px;
    font-size: 14px;
    line-height: 36px;
  }

  .recruit_popups .scroll {
    max-height: 60vh;
  }

  .strategy_page .section1 {
    padding: 40px 20px;
  }

  .strategy_page .section1 .para {
    line-height: 24px;
    text-align: left;
  }

  .strategy_page .section1 .m_show {
    display: block;
  }

  .strategy_page .section1 .m_hide {
    display: none;
  }

  .strategy_page .section1 .img_block {
    margin-top: 20px;
  }

  .strategy_page .section2 {
    padding: 40px 20px;
  }

  .strategy_page .section2 .para {
    text-align: left;
  }

  .strategy_page .section3 {
    padding: 40px 20px;
  }

  .strategy_page .section3 .para {
    line-height: 24px;
    text-align: left;
  }

  .strategy_page .section3 .icons {
    margin-top: 40px;
  }

  .strategy_page .section3 .icons .icon {
    width: 50%;
    margin-top: 40px;
  }
  .strategy_page .section3 .icons .icon:nth-of-type(1), .strategy_page .section3 .icons .icon:nth-of-type(2) {
    margin-top: 0;
  }

  .strategy_page .section3 .icons .icon h3 {
    font-size: 14px;
  }

  .strategy_page .section3 .slick {
    margin: 20px -20px 0;
  }

  .strategy_page .section3 .slick .item {
    padding: 0;
    opacity: 1;
  }

  .strategy_page .section3 .slick-dots {
    margin-top: 20px;
  }

  .strategy_page .section3 .slick-dots li {
    width: 10px;
    height: 10px;
    margin: 0 3px;
  }

  .strategy_page .section3 .slick .item .info {
    padding: 15px;
    line-height: 20px;
  }

  .industry_index .section1 {
    padding: 40px 20px;
  }

  .industry_index .section1 .gear_box {
    display: none;
  }

  .industry_index .section1 .cont_box {
    width: 100%;
    padding: 0;
  }

  .industry_index .section1 .slick {
    margin-top: 20px;
    margin-bottom: 30px;
  }

  .industry_index .section1 .slick-dots {
    bottom: -30px;
  }

  .industry_index .section1 .slick-dots li {
    width: 10px;
    height: 10px;
    margin: 0 3px;
  }

  .industry_index .section1 .slick .item h3 {
    line-height: 46px;
    background-position: 20px center;
    background-size: auto 20px;
    padding-left: 50px;
  }

  .industry_index .section1 .slick .item .dots {
    padding: 20px;
  }

  .industry_index .section1 .slick .item .dot {
    margin-top: 20px;
  }

  .industry_index .section1 .slick .item .dot h4 {
    font-size: 16px;
  }

  .industry_index .section1 .slick .item .dot .para {
    margin-top: 10px;
  }

  .industry_index .section2 {
    padding: 40px 20px;
  }

  .industry_index .section2 .para {
    padding: 20px 0;
    margin-bottom: 20px;
  }

  .industry_index .section2 .items {
    margin-top: 10px;
  }

  .industry_index .section2 .item {
    width: calc(50% - 5px);
    margin-top: 10px;
  }
  .industry_index .section2 .item:nth-of-type(1), .industry_index .section2 .item:nth-of-type(2) {
    margin-top: 0;
  }
  .industry_index .section2 .item:nth-of-type(even) {
    margin-left: 10px;
  }

  .industry_index .section2 .item h3 {
    font-size: 14px;
    margin: 10px 0;
  }

  .industry_index .section2 a.more {
    margin-top: 20px;
    width: 100%;
  }

  .industry_index .section3 {
    background-attachment: inherit;
    padding: 28vw 20px;
  }

  .industry_index .section2 .para,
  .industry_index .section3 .para {
    line-height: 20px;
  }

  .industry_index .section3 a.more {
    margin-top: 24vw;
    width: 100%;
  }

  .industry_list .section1 {
    padding: 40px 20px;
  }

  .industry_list .section1 .item {
    padding-bottom: 0;
  }

  .industry_list .section1 .item .txt_block {
    position: static;
    margin: 0 20px;
    padding: 20px;
    -webkit-transform: translateY(-20px);
    -moz-transform: translateY(-20px);
    -ms-transform: translateY(-20px);
    transform: translateY(-20px);
  }

  .industry_list .section1 .item p {
    line-height: 20px;
    height: auto;
  }

  .industry_list .section1 .item h3 {
    font-size: 16px;
  }

  .industry_list .section1 .items {
    margin-bottom: 20px;
  }

  .industry_list .section1 .item span {
    display: none;
  }

  .industry_1_detail .inner_banner .tit, .industry_2_detail .inner_banner .tit {
    font-size: 24px;
  }

  .industry_1_detail .inner_banner .tit {
    padding: 30px 0;
    text-align: center;
    border-width: 3px;
    width: 80%;
  }

  .industry_1_detail .section1 {
    padding: 40px 20px;
  }

  .industry_1_detail .section1 .left_box {
    width: 100%;
    padding: 0;
    box-shadow: none;
  }

  .industry_1_detail .section1 .left_box h3, .industry_2_detail .section1 h3 {
    font-size: 24px;
  }

  .industry_1_detail .section1 .left_box h3:after {
    margin-top: 12px;
  }

  .industry_1_detail .section1 .left_box .para, .industry_2_detail .section1 .para {
    line-height: 20px;
  }

  .industry_1_detail .section1 .left_box .para {
    margin-top: 10px;
  }

  .industry_1_detail .section1 .right_box {
    width: 100%;
    margin-top: 20px;
  }

  .industry_1_detail .section1 .right_box .img_block {
    margin-left: 0;
  }

  .industry_2_detail .inner_banner .box {
    width: 80%;
    text-align: center;
  }

  .industry_2_detail .inner_banner .tit {
    border-width: 3px;
    padding: 30px 0 50px;
  }

  .industry_2_detail .inner_banner p {
    margin-top: -20px;
  }

  .industry_2_detail .inner_banner p span {
    font-size: 12px;
    line-height: 20px;
    padding: 0 15px;
  }

  .industry_2_detail .inner_banner p:before, .industry_2_detail .inner_banner p:after {
    height: 3px;
  }

  .industry_2_detail .section1 {
    padding: 40px 20px;
  }

  .industry_2_detail .section1 .cont {
    width: 100%;
  }

  .industry_2_detail .section1 h3:after {
    margin-top: 12px;
  }

  .industry_2_detail .section1 .para {
    margin-top: 10px;
  }

  .industry_2_detail .section1 .img_block {
    margin-top: 20px;
  }

  .industry_4 .section1 {
    padding: 40px 20px;
    background-position: center bottom;
    background-repeat: no-repeat;
    background-size: 100% auto;
    background-image: url("../images/img-45.jpg");
  }

  .industry_4 .section1 .h3 {
    font-size: 24px;
    line-height: 30px;
  }

  .industry_4 .section1 h4 {
    font-size: 14px;
    line-height: 20px;
  }

  .industry_4 .section1 .items {
    margin-top: 20px;
    padding: 0;
  }

  .industry_4 .section1 .item {
    width: 100%;
    margin-top: 30px;
  }
  .industry_4 .section1 .item:nth-of-type(1) {
    margin-top: 0;
  }

  .industry_4 .section1 .item .num span {
    font-size: 60px;
  }

  .industry_4 .section1 .item .num, .industry_4 .section1 .item p {
    font-size: 14px;
  }

  .industry_4 .section1 .item p {
    margin-top: 10px;
  }

  .industry_4 .section2 {
    padding: 40px 20px;
  }

  .industry_4 .section2 .items {
    margin-top: 30px;
  }

  .industry_4 .section2 .item {
    width: 50%;
    margin-top: 40px;
  }
  .industry_4 .section2 .item:nth-of-type(1), .industry_4 .section2 .item:nth-of-type(2) {
    margin-top: 0;
  }

  .industry_4 .section2 .item i {
    width: 62px;
    height: 62px;
    border-width: 3px;
    background-size: auto 24px;
  }

  .industry_4 .section2 .item h3 {
    font-size: 16px;
    margin-top: 10px;
  }

  .industry_4 .section2 .item p {
    font-size: 12px;
    margin-top: 5px;
  }

  .industry_4 .section3 {
    padding: 45vw 20px;
    background-attachment: inherit;
  }

  .industry_4 .section3 h3 {
    font-size: 18px;
    line-height: 26px;
  }

  .industry_3 .section1 {
    padding: 40px 20px;
  }

  .industry_3 .section1 .para {
    line-height: 20px;
    margin-top: 20px;
  }

  .industry_3 .section1 .items {
    margin-top: 30px;
  }

  .industry_3 .section1 .item {
    width: 50%;
    margin-top: 30px;
  }
  .industry_3 .section1 .item:nth-of-type(1), .industry_3 .section1 .item:nth-of-type(2) {
    margin-top: 0;
  }

  .industry_3 .section1 .item h3 {
    margin-top: 10px;
    font-size: 14px;
  }

  .industry_3 .section2 {
    padding: 40px 20px;
  }

  .industry_3 .section2 .items {
    margin-top: 20px;
  }

  .industry_3 .section2 .item {
    width: calc(50% - 5px);
    margin-top: 20px;
  }
  .industry_3 .section2 .item:nth-of-type(1), .industry_3 .section2 .item:nth-of-type(2) {
    margin-top: 0;
  }
  .industry_3 .section2 .item:nth-of-type(even) {
    margin-left: 10px;
  }

  .industry_3 .section2 .item .num {
    padding: 0 10px 20px 10px;
    font-size: 16px;
  }

  .industry_3 .section2 .item h3 {
    padding: 10px;
    font-size: 14px;
  }

  .industry_3 .section3 {
    padding: 40px 20px;
    overflow: hidden;
  }

  .industry_3 .section3 .cont {
    margin-top: 20px;
  }

  .industry_3 .section3 .cont .items {
    font-size: 0;
  }

  .industry_3 .section3 .cont .item {
    width: 50%;
    display: inline-block;
    vertical-align: top;
  }

  .industry_3 .section3 .cont .item .num {
    line-height: 1;
  }

  .industry_3 .section3 .cont .item .num span {
    font-size: 50px;
  }

  .industry_3 .section3 .cont .item .num, .industry_3 .section3 .cont .item p {
    font-size: 14px;
  }

  .industry_3 .section3 .cont .item p {
    margin-top: 10px;
  }

  .industry_3 .section3 .cont .center_box {
    margin-top: 20px;
    width: 100%;
  }

  .industry_3 .section3 .color_box {
    margin-top: 20px;
  }

  .industry_3 .section3 .color_box .item {
    width: 33.33%;
    margin-top: 30px;
  }
  .industry_3 .section3 .color_box .item:nth-of-type(1), .industry_3 .section3 .color_box .item:nth-of-type(2), .industry_3 .section3 .color_box .item:nth-of-type(3) {
    margin-top: 0;
  }

  .industry_3 .section3 .color_box .item h3 {
    font-size: 14px;
    margin-top: 10px;
  }

  .industry_3 .section3 .color_box .item span {
    width: 12px;
    height: 6px;
  }

  .industry_3 .section4 {
    padding: 40px 20px;
  }

  .industry_3 .section4 .items {
    margin-top: 20px;
  }

  .industry_3 .section4 .item {
    width: calc(50% - 5px);
    margin-top: 20px;
  }
  .industry_3 .section4 .item:nth-of-type(1), .industry_3 .section4 .item:nth-of-type(2) {
    margin-top: 0;
  }
  .industry_3 .section4 .item:nth-of-type(even) {
    margin-left: 10px;
  }

  .industry_3 .section4 .item h3 {
    font-size: 12px;
    line-height: 16px;
    margin-top: 10px;
  }

  .industry_3 .section5 {
    padding: 40px 20px;
    background-position: center 50%;
    background-size: 120% auto;
  }

  .industry_3 .section5 .img_block {
    width: 90%;
    margin: 20px auto 0;
  }

  .industry_3 .section6 {
    padding: 0 20px 40px;
    border-top: none;
  }

  .industry_3 .section6 .item {
    width: 50%;
    margin-top: 30px;
  }
  .industry_3 .section6 .item:nth-of-type(1), .industry_3 .section6 .item:nth-of-type(2) {
    margin-top: 0;
  }

  .industry_3 .section6 .item .line {
    margin: 10px auto;
  }

  .industry_3 .section6 .item .num span {
    font-size: 30px;
  }

  .industry_3 .section6 .item p {
    font-size: 14px;
  }

  .search_page .section1 {
    padding: 40px 20px;
  }

  .search_page .section1 .cate a {
    font-size: 14px;
    padding-left: 15px;
  }

  .search_page .section1 .cate i {
    width: 8px;
    height: 8px;
    margin-top: -3px;
  }

  .search_page .section2 {
    padding: 40px 20px;
  }

  .search_page .section2 .tip {
    font-size: 14px;
  }

  .search_page .section2 .item {
    padding: 20px 0;
    border-bottom-width: 4px;
  }

  .search_page .section2 .item .date {
    font-size: 16px;
  }

  .search_page .section2 .item h3 {
    margin: 10px 0;
    line-height: 24px;
  }

  .search_page .section2 .item span {
    font-size: 14px;
  }

  .search_page .section2 .items {
    margin-bottom: 20px;
  }

  .comm_map {
    display: none;
  }

  .m_comm_map {
    display: block;
    margin-top: 20px;
  }
  .m_comm_map .select {
    font-size: 0;
  }
  .m_comm_map .select .s_select {
    display: inline-block;
    vertical-align: top;
    width: calc(50% - 5px);
    height: 36px;
    position: relative;
  }
  .m_comm_map .select .s_select:nth-of-type(2) {
    margin-left: 10px;
  }
  .m_comm_map .select .s_select input {
    display: block;
    width: 100%;
    height: 100%;
    font-size: 14px;
    line-height: 24px;
    color: #333;
    padding: 0 20px;
  }
  .m_comm_map .select .s_select:after {
    content: '';
    width: 12px;
    height: 7px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    right: 20px;
    top: 50%;
    margin-top: -3px;
    background-image: url("../images/drop.png");
  }
  .m_comm_map .select .s_select ul {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: #fff;
    max-height: 185px;
    overflow: auto;
    display: none;
  }
  .m_comm_map .select .s_select ul li {
    border-top: 1px solid #f7f7f7;
  }
  .m_comm_map .select .s_select ul li .show {
    font-size: 14px;
    text-align: center;
    color: #333;
    line-height: 36px;
  }
  .m_comm_map .select .s_select ul li .hide {
    display: none;
  }
  .m_comm_map .select .s_select.open ul {
    display: block;
  }
  .m_comm_map .map {
    margin-top: 20px;
  }
  .m_comm_map .map img {
    display: block;
    width: 100%;
  }

  .fixed_map .cont {
    width: 100%;
  }

  .fixed_map .close {
    width: 40px;
    height: 40px;
    top: 20px;
    right: 20px;
    left: auto;
    -webkit-transform: none;
    -moz-transform: none;
    -ms-transform: none;
    transform: none;
    background-size: auto 18px;
  }

  .fixed_map .cont .top_box .item {
    height: 40vh;
  }

  .fixed_map .cont .top_box .slick-dots {
    bottom: 20px;
  }

  .fixed_map .cont .top_box .slick-dots li {
    width: 10px;
    height: 10px;
    margin: 0 3px;
  }

  .fixed_map .cont .bot_box {
    height: 60vh;
    padding: 20px;
  }

  .fixed_map .cont .bot_box h3 {
    font-size: 24px;
    line-height: 1;
  }

  .fixed_map .cont .bot_box h3:after {
    margin: 20px 0;
  }

  .fixed_map .cont .bot_box .para {
    max-height: calc(60vh - 110px);
  }

  .fixed_map .cont .bot_box .para p {
    width: 100%;
  }
}

/*# sourceMappingURL=bundle.css.map */
