﻿@font-face {

  font-family: 'DINPro-Light';

  src: url("https://en.nantian.com.cn/statics/home/fonts/DINPro-Light.otf");

}

@font-face {

  font-family: 'DINPro-Regular';

  src: url("https://en.nantian.com.cn/statics/home/fonts/DINPro-Regular_0.otf");

}

@font-face {

  font-family: 'DINPro-Medium';

  src: url("https://en.nantian.com.cn/statics/home/fonts/DINPro-Medium.otf");

}

@font-face {

  font-family: 'DINPro-Bold';

  src: url("https://en.nantian.com.cn/statics/home/fonts/DINPro-Bold.otf");

}

@keyframes o-upfade-top {

  0% {

    opacity: 0;

    transform: translateY(40px);

  }

  100% {

    opacity: 1;

    transform: translateY(0);

  }

}

@keyframes o-scale {

  0%,85%,100% {

    transform: scale(1);

  }

  50% {

    transform: scale(1.2);

  }

}

@keyframes opacity-1 {

  0% {

    opacity: 0;

    transform: translateY(20px);

  }

  100% {

    opacity: 1;

    transform: translateY(0px);

  }

}

@keyframes o-cloud {

  0% {

    transform: translateX(0px);

  }

  100% {

    transform: translateX(-100%);

  }

}

body {

  padding-top: 100px;

}



@media screen and (min-width: 1025px) {

  .wow {

    visibility: hidden;

  }

}

.wrapper {

  width: 80vw;

  max-width: 1440px;

  margin: 0 auto;

  position: relative;

  z-index: 2;

}

.wrapper:after {

  content: '';

  display: block;

  clear: both;

}



/* header */

.header {

  position: fixed;

  top: 0;

  left: 0;

  right: 0;

  display: flex;

  justify-content: space-between;

  align-items: center;

  padding: 0 3.125vw;

  font-size: 0;

  background-color: #fff;

  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);

  z-index: 9;

}

.header .logo img {

  display: block;

  height: 50px;

  transition: all .3s ease;

}

.header .nav li {

  display: inline-block;

  vertical-align: top;

  position: relative;

}

.header .nav li a.single {

  display: block;

  padding: 0 24px;

  position: relative;

  font-size: 18px;

  line-height: 100px;

  color: #000;

  transition: all .3s ease;

}

.header .nav li a.single:after {

  content: '';

  width: 100%;

  height: 4px;

  background-color: #3f3480;

  position: absolute;

  bottom: 0;

  left: 0;

  transform: scaleX(0);

  transform-origin: left top;

  transition: transform .3s ease;

}

.header .nav li .drop {

  background-color: #fff;

  position: absolute;

  top: 100%;

  left: 50%;

  transform: translateX(-50%);

  width: 240px;

  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);

  text-align: center;

  opacity: 0;

  visibility: hidden;

}

.header .nav li .drop a {

  position: relative;

  display: block;

  font-size: 14px;

  padding: 20px 30px;

  color: #595757;

  transition: all .3s ease;

}

.header .nav li .drop a:after {

  content: '';

  position: absolute;

  bottom: 0;

  left: 30px;

  right: 30px;

  height: 1px;

  background-color: #e6e6e6;

  transition: all .3s ease;

}

@media screen and (min-width: 1025px) {

  .header .nav li .drop a:hover {

    background-color: #3f3480;

    color: #fff;

  }

  .header .nav li .drop a:hover:after {

    opacity: 0;

  }

}

@media screen and (min-width: 1025px) {

  .header .nav li:hover a.single {

    color: #3f3480;

  }

  .header .nav li:hover .drop {

    opacity: 1;

    visibility: visible;

    transition: all .3s ease;

  }

  .header .nav li.active a.single {

    color: #3f3480;

  }

  .header .nav li.active a.single:after {

    transform: scaleX(1);

  }

}

.header .lang {

  display: inline-block;

  vertical-align: middle;

  margin: 0 1vw;

  position: relative;

}

.header .lang span {

  display: block;

  font-size: 14px;

  color: #000;

  cursor: pointer;

  transition: all .3s ease;

}

.header .lang span:before {

  content: '';

  width: 16px;

  height: 16px;

  display: inline-block;

  vertical-align: middle;

  margin: -2px 10px 0 0;

  background-position: center;

  background-repeat: no-repeat;

  background-size: contain;

  background-image: url("../image/icon-1.png");

  transition: all .3s ease;

}

.header .lang span:after {

  content: '';

  width: 0;

  height: 0;

  border-left: 3px solid transparent;

  border-right: 3px solid transparent;

  border-top: 4px solid #000;

  display: inline-block;

  vertical-align: middle;

  margin: -3px 0 0 5px;

  transition: all .3s ease;

}

.header .lang .hide {

  position: absolute;

  width: 90px;

  top: 100%;

  left: 50%;

  margin-left: -45px;

  padding-top: 20px;

  opacity: 0;

  visibility: hidden;

}

.header .lang .hide:before {

  content: '';

  width: 0;

  height: 0;

  border-left: 10px solid transparent;

  border-right: 10px solid transparent;

  border-bottom: 10px solid #333;

  position: absolute;

  top: 10px;

  left: 0;

  right: 0;

  margin: 0 auto;

}

.header .lang .hide a {

  display: block;

  font-size: 12px;

  line-height: 30px;

  color: #fff;

  margin-bottom: 1px;

  text-align: center;

  background-color: #333;

  box-shadow: 0 0 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;

}

@media screen and (min-width: 1025px) {

  .header .lang .hide a:hover {

    background-color: #3f3480;

  }

}

.header .lang:hover .hide {

  opacity: 1;

  visibility: visible;

}

.header .search {

  display: inline-block;

  vertical-align: middle;

  width: 18px;

  height: 18px;

  background-position: center;

  background-repeat: no-repeat;

  background-size: contain;

  background-image: url("../image/icon-2.png");

  margin-left: 2vw;

  cursor: pointer;

}

.header.down .logo img {

  height: 40px;

}

.header.down .nav li a.single {

  line-height: 70px;

}



.head-nav {

  position: fixed;

  top: 100px;

  left: 0;

  right: 0;

  bottom: 0;

  font-size: 0;

  background-color: rgba(0, 0, 0, 0.2);

  z-index: 9;

  display: none;

}

.head-nav.down {

  top: 70px;

}

.head-nav .main {

  height: calc(100vh - 100px);

  max-height: 600px;

  background-color: #fff;

  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);

}

.head-nav .wrap {

  height: 100%;

}

.head-nav .block {

  height: 100%;

  display: flex;

}

.head-nav .left-box {

  width: 240px;

  background-color: #3f3480;

}

.head-nav .left-box a {

  position: relative;

  display: block;

  font-size: 14px;

  color: #fff;

  padding: 20px 30px;

  border-bottom: 1px solid rgba(255, 255, 255, 0.2);

  transition: all .3s ease;

}

.head-nav .left-box a:after {

  content: '';

  width: 11px;

  height: 16px;

  background-position: center;

  background-repeat: no-repeat;

  background-size: contain;

  background-image: url("../image/icon-5.png");

  position: absolute;

  right: 30px;

  top: 50%;

  margin-top: -8px;

}

.head-nav .left-box a.active {

  background-color: #fff;

  color: #3f3480;

}

.head-nav .left-box a.active:after {

  opacity: 1;

}

.head-nav .right-box {

  width: calc(100% - 240px);

}

.head-nav .right-box .child {

  width: 100%;

  height: 100%;

  background-color: #fff;

  background-position: right center;

  background-repeat: no-repeat;

  background-size: auto 100%;

  display: none;

  overflow: auto;

}

.head-nav .right-box .child.active {

  display: block;

}

.head-nav .right-box .b-box {

  min-height: 100%;

  padding: 3.125vw 5vw;

  display: flex;

  flex-wrap: wrap;

}

.head-nav .right-box .list {

  width: 33.33%;

  display: inline-block;

  vertical-align: top;

  padding-right: 2vw;

}

.head-nav .right-box h3 {

  font-size: 20px;

  color: #666;

}

.head-nav .right-box ul {

  margin-top: 2vw;

}

.head-nav .right-box li {

  margin-top: 2vw;

}

.head-nav .right-box li:nth-of-type(1) {

  margin-top: 0;

}

.head-nav .right-box li a {

  display: inline-block;

  vertical-align: middle;

  font-size: 14px;

  color: #000;

  padding-right: 40px;

  position: relative;

}

.head-nav .right-box li a:hover {

  color: #3f3480;

}

.head-nav .right-box li.new a:after, .head-nav .right-box li.hot a:after {

  content: '';

  width: 30px;

  height: 21px;

  background-position: center;

  background-repeat: no-repeat;

  background-size: contain;

  position: absolute;

  top: 0;

  right: 0;

}

.head-nav .right-box li.new a:after {

  background-image: url("../image/new.png");

}

.head-nav .right-box li.hot a:after {

  background-image: url("../image/hot.png");

}



.m-navbox {

  width: 100%;

  height: 100vh;

  position: fixed;

  top: 0;

  left: 0;

  background-color: #fff;

  padding: 80px 0;

  z-index: 7;

  overflow: auto;

  opacity: 0;

  visibility: hidden;

  transition: all .3s ease;

  display: none;

}

.m-navbox ul li {

  position: relative;

  margin: 0 20px;

  border-bottom: 1px solid #e5e5e5;

}

.m-navbox ul li:last-of-type {

  border: none;

}

.m-navbox ul li .line {

  display: flex;

  justify-content: space-between;

  align-items: center;

}

.m-navbox ul li a {

  display: inline-block;

  font-size: 16px;

  line-height: 1.5;

  padding: 15px 0;

  color: #333;

}

.m-navbox ul li i {

  width: 11px;

  height: 16px;

  background-position: center;

  background-repeat: no-repeat;

  background-image: url("../image/icon-5.png");

  transition: transform .3s ease;

}

.m-navbox ul li.active > .line a {

  color: #3f3480;

}

.m-navbox ul li.active > .line i {

  transform: rotate(90deg);

}

.m-navbox .menu-2,

.m-navbox .menu-3,

.m-navbox .menu-4,

.m-navbox .menu-5 {

  display: none;

}

.m-navbox.active {

  opacity: 1;

  visibility: visible;

}



/* search */

.fixed-search {

  position: fixed;

  top: 0;

  left: 0;

  right: 0;

  bottom: 0;

  z-index: 15;

  display: none;

}

.fixed-search .bg {

  position: absolute;

  top: 0;

  left: 0;

  right: 0;

  bottom: 0;

  background: rgba(0, 0, 0, 0.6);

  z-index: 1;

}

.fixed-search form {

  position: absolute;

  left: 3.125vw;

  right: 3.125vw;

  background: #fff;

  padding: 0 70px;

  top: 120px;

  z-index: 2;

}

.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("../image/icon-2.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;

}



/* footer */

.footer {

  font-size: 0;

}

.footer .top-block {

  border-top: 2px solid #3f3480;

  background-position: center top;

  background-repeat: no-repeat;

  background-image: url("../image/img-1.jpg");

  background-size: 100% auto;

}

.footer .top-box {

  padding: 4vw 0 3vw;

  display: flex;

  justify-content: space-between;

  align-items: center;

}

.footer .top-box .logo img {

  display: block;

  height: 60px;

}

.footer .top-box .share span {

  display: inline-block;

  vertical-align: middle;

  font-size: 16px;

  color: #333333;

}

.footer .top-box .share a {

  display: inline-block;

  vertical-align: middle;

  float: none;

  width: 48px;

  height: 48px;

  padding: 0;

  margin: 0 20px 0 0;

  border-radius: 50%;

  border: 1px solid #e6e6e6;

  background-position: center;

  background-repeat: no-repeat;

  transition: all .3s ease;

}

.footer .top-box .share a.weixin {

  background-image: url("../image/share-1.png");

}

.footer .top-box .share a.weixin:hover {

  background-image: url("../image/share-1-on.png");

}

.footer .top-box .share a.tsina {

  background-image: url("../image/share-2.png");

}

.footer .top-box .share a.tsina:hover {

  background-image: url("../image/share-2-on.png");

}

.footer .top-box .share a.sqq {

  background-image: url("../image/share-3.png");

}

.footer .top-box .share a.sqq:hover {

  background-image: url("../image/share-3-on.png");

}

.footer .top-box .share a:last-of-type {

  margin-right: 0;

}

.footer .top-box .share a:hover {

  border-color: #3f3480;

}

.footer .mid-box {

  border-top: 1px solid #e6e6e6;

  padding: 2vw 0 3.5vw;

  display: flex;

  justify-content: space-between;

}

.footer .mid-box h3 {

  font-size: 16px;

  color: #333333;

}

.footer .mid-box h3:after {

  content: '';

  display: block;

  width: 24px;

  height: 2px;

  background-color: #3f3480;

  margin: 20px 0;

}

.footer .mid-box .link a {

  display: block;

  font-size: 14px;

  color: #808080;

  margin-top: 20px;

  transition: color .3s ease;

}

@media screen and (min-width: 1025px) {

  .footer .mid-box .link a:hover {

    color: #3f3480;

  }

}

.footer .mid-box .ewm {

  text-align: center;

}

.footer .mid-box .ewm .img {

  width: 150px;

  border: 1px solid #e6e6e6;

}

.footer .mid-box .ewm img {

  display: block;

  width: 100%;

}

.footer .mid-box .ewm p {

  font-size: 14px;

  color: #333333;

  opacity: .3;

  margin-top: 20px;

}

.footer .bot-box {

  padding: 2vw 0;

  border-top: 1px solid #e6e6e6;

  display: flex;

  justify-content: space-between;

  align-items: center;

}

.footer .bot-box .info {

  padding-left: 60px;

  position: relative;

  margin-top: 1vw;

}

.footer .bot-box .info:nth-of-type(1) {

  margin-top: 0;

}

.footer .bot-box .info:before {

  content: '';

  width: 38px;

  height: 38px;

  background-position: center;

  background-repeat: no-repeat;

  background-size: contain;

  position: absolute;

  top: 0;

  left: 0;

}

.footer .bot-box .info p {

  font-size: 16px;

  line-height: 26px;

  color: #333333;

}

.footer .bot-box .info span {

  font-size: 18px;

  font-family: 'DINPro-Regular';

}

.footer .bot-box .info.info-1:before {

  background-image: url("../image/icon-3.png");

}

.footer .bot-box .info.info-2:before {

  background-image: url("../image/icon-3-1.png");

}

.footer .bot-box .ewm {

  display: inline-block;

  vertical-align: top;

  margin-left: 24px;

  text-align: center;

}

.footer .bot-box .ewm:nth-of-type(1) {

  margin-left: 0;

}

.footer .bot-box .ewm .img-box {

  border: 1px solid #e6e6e6;

}

.footer .bot-box .ewm p {

  font-size: 14px;

  color: #808080;

  margin-top: 10px;

}

.footer .bot-block {

  background-color: #3f3480;

  padding: 2vw 0;

}

.footer .bot-block .flex {

  display: flex;

  justify-content: space-between;

}

.footer .bot-block a, .footer .bot-block span {

  font-size: 14px;

  line-height: 24px;

  color: rgba(255, 255, 255, 0.3);

}

.footer .bot-block a:before, .footer .bot-block span:before {

  content: '';

  width: 1px;

  height: 12px;

  background-color: rgba(255, 255, 255, 0.3);

  display: inline-block;

  vertical-align: middle;

  margin: 0 15px;

}

.footer .bot-block a:nth-of-type(1):before, .footer .bot-block span:nth-of-type(1):before {

  display: none;

}

.footer .bot-block a {

  transition: color .3s ease;

}

.footer .bot-block a:hover {

  color: #fff;

}



/* fixed-right */

.fixed-right {

  position: fixed;

  right: 2px;

  bottom: 100px;

  z-index: 11;

}

.fixed-right .block {

  margin-top: 2px;

  width:70px;

  height:70px;

  position: relative;

}

.fixed-right .block a {

  position: absolute;

  right: 0;

  top: 0;

  display: block;

  width:70px;

  height:70px;

  text-align: center;

  border-radius: 3px;

  background-color: #3f3480;

  white-space: nowrap;

  transition: width .3s ease;

}

.fixed-right .block i {
  display:block;
  width:70px;
  height:20px;
  background-position: center;
  background-repeat: no-repeat;
  transition: width .3s ease;
}

.fixed-right .block span {
  display:block;
  width:70px;
  font-size: 12px;
  color: #fff;
  margin-left:0px;
  text-align:center;
  white-space: normal;
}

.fixed-right .block:nth-of-type(1) {

  margin-top: 0;

}

.fixed-right .block.download i {

  background-image: url("../image/fixed-1.png");

}

.fixed-right .block.obtain i {

  background-image: url("../image/fixed-2.png");

}

.fixed-right .block.tel i {

  background-image: url("../image/fixed-3.png");

}

.fixed-right .block.top i {

  background-image: url("../image/fixed-4.png");

}





.fixed-form {

  position: fixed;

  top: 0;

  left: 0;

  right: 0;

  bottom: 0;

  z-index: 12;

  display: none;

}

.fixed-form .bg {

  position: absolute;

  top: 0;

  left: 0;

  right: 0;

  bottom: 0;

  background-color: rgba(0, 0, 0, 0.6);

  z-index: 1;

}

.fixed-form .main {

  width: 90%;

  max-width: 640px;

  position: absolute;

  top: 50%;

  left: 50%;

  transform: translate(-50%, -50%);

  background-color: #fff;

  border-radius: 5px;

  padding: 3.125vw 4vw;

  z-index: 2;

}

.fixed-form .close {

  width: 32px;

  height: 32px;

  position: absolute;

  right: 20px;

  top: 20px;

  background-position: center;

  background-repeat: no-repeat;

  background-size: contain;

  background-image: url("../image/close-1.png");

  z-index: 2;

  transition: transform .3s ease;

  cursor: pointer;

}

@media screen and (min-width: 1025px) {

  .fixed-form .close:hover {

    transform: rotate(90deg);

  }

}

.fixed-form .box {

  margin-top: 20px;

}

.fixed-form .box:nth-of-type(1) {

  margin-top: 0;

}

.fixed-form input {

  display: block;

  width: 100%;

  height: 60px;

  padding: 0 20px;

  font-size: 16px;

  color: #808080;

  border: 1px solid #e5e5e5;

  transition: all .3s ease;

}

.fixed-form input:focus {

  border-color: #3f3480;

}

.fixed-form textarea {

  display: block;

  width: 100%;

  height: 120px;

  padding: 15px 20px;

  font-size: 16px;

  color: #808080;

  border: 1px solid #e5e5e5;

  resize: none;

  transition: all .3s ease;

}

.fixed-form textarea:focus {

  border-color: #3f3480;

}

.fixed-form button {

  display: block;

  width: 100%;

  height: 60px;

  font-size: 24px;

  background-color: #3f3480;

  color: #fff;

  margin: 0 auto;

  cursor: pointer;

}



/* media */

@media screen and (max-width: 1600px) {

  body {

    padding-top: 80px;

  }



  .header .logo img {

    height: 40px;

  }



  .header .nav li a.single {

    font-size: 16px;

    line-height: 80px;

  }


  .head-nav {

    top: 80px;

  }



  .head-nav .left-box a {

    font-size: 16px;

  }



  .head-nav .right-box li a {

    font-size: 15px;

  }



  .footer .top-box .logo img {

    height: 50px;

  }



  .footer .mid-box .ewm .img {

    width: 120px;

  }



  .footer .bot-box .info p {

    font-size: 14px;

  }



  .footer .bot-box .info span {

    font-size: 16px;

  }

}

@media screen and (max-width: 1366px) {

  .header .nav li a.single {

    padding: 0 15px;

  }



  .fixed-form input {

    height: 50px;

  }



  .fixed-form button {

    height: 50px;

    font-size: 20px;

  }



  .fixed-form .close {

    top: 15px;

    right: 15px;

  }

}

@media screen and (max-width: 1024px) {

  body {

    padding-top: 60px;

  }



  .wrapper {

    width: 90%;

  }



  .header {

    height: 60px;

    padding: 0 20px;

  }



  .header .nav {

    display: none;

  }



  .header .lang {

    margin: 0;

  }



  .header .search {

    margin: 0 40px 0 15px;

  }



  .mNavBtn {

    display: block;

    width: 24px;

    height: 16px;

    right: 20px;

    top: 22px;

    position: fixed;

    cursor: pointer;

    z-index: 4;

  }

  .mNavBtn.active .line2 {

    display: none;

  }

  .mNavBtn.active .line1 {

    -webkit-transform: rotate(45deg);

    -moz-transform: rotate(45deg);

    -ms-transform: rotate(45deg);

    transform: rotate(45deg);

    top: 7px;

  }

  .mNavBtn.active .line3 {

    -webkit-transform: rotate(-45deg);

    -moz-transform: rotate(-45deg);

    -ms-transform: rotate(-45deg);

    transform: rotate(-45deg);

    bottom: 7px;

  }

  .mNavBtn span {

    position: absolute;

    left: 0;

    width: 24px;

    height: 2px;

    background: #3f3480;

    -webkit-transition: all 0.3s ease;

    -moz-transition: all 0.3s ease;

    -ms-transition: all 0.3s ease;

    transition: all 0.3s ease;

  }

  .mNavBtn span.line1 {

    top: 0;

  }

  .mNavBtn span.line2 {

    top: 7px;

  }

  .mNavBtn span.line3 {

    bottom: 0;

  }



  .m-navbox {

    display: block;

  }



  .fixed-right {

    display: none;

  }



  .footer .top-box {

    display: block;

  }



  .footer .top-box .logo img {

    margin: 0 auto;

  }



  .footer .top-box .share,

  .footer .mid-box {

    display: none;

  }



  .footer .top-box {

    padding: 20px 0;

  }



  .footer .bot-box {

    padding: 20px 0;

    display: block;

  }



  .footer .bot-box .info {

    margin-top: 20px;

    padding-left: 40px;

  }



  .footer .bot-box .info:before {

    width: 24px;

    height: 24px;

  }



  .footer .bot-box .info p {

    line-height: 24px;

  }



  .footer .bot-box .ewm-box {

    display: none;

  }



  .footer .bot-block {

    padding: 20px 0;

    text-align: center;

  }



  .footer .bot-block .link {

    display: none;

  }



  .fixed-form .main {

    padding: 40px 20px 20px;

  }



  .fixed-form .close {

    top: 5px;

    right: 10px;

  }



  .fixed-form textarea {

    height: 80px;

    padding: 5px 10px;

    font-size: 14px;

  }



  .fixed-form input {

    height: 40px;

    padding: 0 10px;

    font-size: 14px;

  }



  .fixed-form button {

    height: 40px;

    font-size: 16px;

  }



  .fixed-form .box {

    margin-top: 10px;

  }

}

.lighter, .index-tit p {

  font-weight: lighter;

}



.index-tit h3 {

  font-size: 30px;

}

.index-tit p {

  font-size: 20px;

  line-height: 1.8;
  font-weight:bold;
  margin: 20px auto 0px;
  width:100%;

}

.index-tit a {

  font-size: 16px;

  color: #3f3480;

  display: inline-block;

  margin-top: 20px;

}

.index-tit a:after {

  content: '';

  width: 6px;

  height: 10px;

  background-position: center;

  background-repeat: no-repeat;

  background-size: contain;

  background-image: url("../image/icon-21.png");

  display: inline-block;

  vertical-align: middle;

  margin: -2px 0 0 10px;

}

.index-tit.center {

  text-align: center;

}

.index-tit.gray h3 {

  color: #000;

}

.index-tit.gray p {

  color: #808080;

}

.index-tit.white h3 {

  color: #fff;

}

.index-tit.white p {

  color: #fff;

}

.index-tit.black h3 {

  color: #000;

}

.index-tit.black p {

  color: #000;

}



.c-crumbs {

  position: sticky;

  top: 70px;

  z-index: 5;

  padding: 0 3.125vw;

  background-color: #fbfbfb;

  font-size: 0;

  border-top: 1px solid #e6e6e6;

  display: flex;

  justify-content: space-between;

}

.c-crumbs .left-box a {

  display: inline-block;

  vertical-align: middle;

}

.c-crumbs .left-box a:before {

  content: '';

  width: 7px;

  height: 10px;

  display: inline-block;

  vertical-align: middle;

  background-position: center;

  background-repeat: no-repeat;

  background-image: url("../image/icon-22.png");

  margin: -2px 15px 0;

}

.c-crumbs .left-box a.home {

  width: 14px;

  height: 16px;

  background-position: center;

  background-repeat: no-repeat;

  background-image: url("../image/icon-13.png");

}

.c-crumbs .left-box a.link {

  font-size: 14px;

  color: #808080;

  line-height: 60px;

}

.c-crumbs .left-box a:first-of-type:before {

  display: none;

}

.c-crumbs .right-box a {

  position: relative;

  display: inline-block;

  vertical-align: top;

  margin-left: 24px;

  font-size: 14px;

  line-height: 60px;

  color: #808080;

  transition: color .3s ease;

}

.c-crumbs .right-box a:before {

  content: '';

  position: absolute;

  bottom: 0;

  left: 0;

  right: 0;

  height: 2px;

  background-color: #3f3480;

  transform: scaleX(0);

  transition: transform .3s ease;

}

.c-crumbs .right-box a:nth-of-type(1) {

  margin-left: 0;

}

.c-crumbs .right-box a:hover, .c-crumbs .right-box a.active {

  color: #3f3480;

}

.c-crumbs .right-box a:hover:before, .c-crumbs .right-box a.active:before {

  transform: scaleX(1);

}



.comm-page {

  font-size: 0;

  text-align: center;

  margin-top: 2vw;

}

.comm-page li {

  display: inline-block;

  vertical-align: top;

  margin: 0 5px;

}

.comm-page li a {

  display: block;

  width: 40px;

  height: 40px;

  font-size: 14px;

  color: #666;

  line-height: 40px;

  text-align: center;

  border: 1px solid #e6e6e6;

  -webkit-transition: all 0.3s ease;

  -moz-transition: all 0.3s ease;

  -ms-transition: all 0.3s ease;

  transition: all 0.3s ease;

}

.comm-page li:first-of-type a, .comm-page li:last-of-type a {

  width: 60px;

}

.comm-page li:hover a, .comm-page li.active a {

  border-color: #3f3480;

  background-color: #3f3480;

  color: #fff;

}



.c-banner {

  position: relative;

}

.c-banner:after {

  content: '';

  position: absolute;

  top: 0;

  left: 0;

  right: 0;

  bottom: 0;

  background-color: rgba(0, 0, 0, 0.15);

  z-index: 2;

}

.c-banner .img-box {

  overflow: hidden;

}

.c-banner img {

  display: block;

  width: 100%;

}

.c-banner .txt-box {

  position: absolute;

  top: 0;

  left: 0;

  right: 0;

  bottom: 0;

  text-align: center;

  z-index: 3;

}

.c-banner h3 {

  font-size: 48px;

  color: #fff;

}

.c-banner h2 {

  font-size: 60px;

  color: #fff;

}

.c-banner p {

  font-size: 24px;

  color: #fff;

  margin-top: 20px;

  letter-spacing: 8px;

}

.c-banner .tip {

  position: absolute;

  font-size: 16px;

  color: #fff;

  right: 3.125vw;

  bottom: 24px;

  z-index: 3;

}



.c-link {

  font-size: 0;

  text-align: center;

}

.c-link a {

  display: inline-block;

  vertical-align: top;

  width: 200px;

  line-height: 44px;

  border: 2px solid #f0f0f0;

  font-size: 16px;

  margin: 0 12px;

  transition: all .3s ease;

}

.c-link a:hover, .c-link a.active {

  border-color: #3f3480;

  background-color: #3f3480;

  color: #fff;

}



.c-items-1 .item {

  position: relative;

  background-color: #f7f7f7;

  margin-top: 10px;

}

.c-items-1 .item:nth-of-type(1) {

  margin-top: 0;

}

.c-items-1 .item:before {

  content: '';

  position: absolute;

  top: 0;

  left: 0;

  right: 0;

  bottom: 0;

  background-color: #3f3480;

  background-position: center bottom;

  background-repeat: no-repeat;

  background-image: url("../image/img-7.jpg");

  background-size: 100% auto;

  opacity: 0;

  z-index: 1;

  transition: all .3s ease;

}

.c-items-1 .item a {

  display: flex;

  position: relative;

  z-index: 2;

}

.c-items-1 .item .date {

  width: 90px;

  height: 100%;

  padding: 10px 0;

  text-align: center;

}

.c-items-1 .item .date b, .c-items-1 .item .date span {

  display: block;

  line-height: 1;

  transition: color .3s ease;

}

.c-items-1 .item .date b {

  font-size: 48px;

  color: #3f3480;

  font-family: 'DINPro-Bold';

}

.c-items-1 .item .date span {

  font-size: 16px;

  color: #333;

  font-family: 'DINPro-Light';

  margin-top: 10px;

}

.c-items-1 .item .txt {

  width: calc(100% - 90px);

  border-left: 2px solid #fff;

}

.c-items-1 .item h3 {

  padding: 24px 9.375vw 24px 3.125vw;

  white-space: nowrap;

  overflow: hidden;

  text-overflow: ellipsis;

  font-size: 22px;

  color: #333;

  position: relative;

  transition: color .3s ease;

}

.c-items-1 .item.icon h3:after {

  content: '';

  width: 32px;

  height: 32px;

  background-position: center;

  background-repeat: no-repeat;

  background-size: contain;

  background-image: url("../image/icon-23.png");

  position: absolute;

  right: 3.125vw;

  top: 50%;

  margin-top: -16px;

}

@media screen and (min-width: 1025px) {

  .c-items-1 .item:hover:before {

    opacity: 1;

  }

  .c-items-1 .item:hover .date b {

    color: #fff;

  }

  .c-items-1 .item:hover .date span {

    color: rgba(255, 255, 255, 0.5);

  }

  .c-items-1 .item:hover h3 {

    color: #fff;

  }

}



.video-pop {

  position: fixed;

  top: 0;

  right: 0;

  bottom: 0;

  left: 0;

  z-index: 9;

  display: none;

}

.video-pop .bg {

  position: fixed;

  top: 0;

  right: 0;

  bottom: 0;

  left: 0;

  background: rgba(0, 0, 0, 0.9);

  z-index: 1;

}

.video-pop .close {

  width: 32px;

  height: 32px;

  position: absolute;

  right: 20px;

  top: 20px;

  background: url("../image/close.png") center no-repeat;

  -webkit-transition: all 500ms ease;

  -moz-transition: all 500ms ease;

  -ms-transition: all 500ms ease;

  transition: all 500ms 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%;

  max-height: 80vh;

  max-width: 75vw;

  z-index: 3;

  -webkit-transform: translate(-50%, -50%);

  -moz-transform: translate(-50%, -50%);

  -ms-transform: translate(-50%, -50%);

  transform: translate(-50%, -50%);

}



.index-s1 {

  position: relative;

}

.index-s1 .item {

  position: relative;

  height: calc(100vh - 100px);

  overflow: hidden;

}

.index-s1 .item a {

  display: block;

  width: 100%;

  height: 100%;

}

.index-s1 .item .img-box {

  height: 100%;

  overflow: hidden;

}

.index-s1 .item img {

  display: block;

  width: 100%;

  height: 100%;

  object-fit: cover;

}

.index-s1 .item img.svg {

  width:auto;
  height:auto;
  margin: 0 auto;
  max-width:88% 
}

.index-s1 .item video {

  height: 100%;

  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%);

  z-index: 1;

}

.index-s1 .item .video-bg {

  position: absolute;

  top: 0;

  left: 0;

  right: 0;

  bottom: 0;

  background-color: rgba(0, 0, 0, 0.3);

  z-index: 2;

}

.index-s1 .item .txt-box {

  position: absolute;

  left: 0;

  right: 0;

  top: 0;

  bottom: 0;

  text-align: center;

  z-index: 3;

}

.index-s1 .item .txt-box h3 {

  font-size: 80px;

  color: #fff;

  opacity: 0;

  transform: translateX(-100px);

  transition: opacity 1.2s, transform 1.2s;

}

.index-s1 .item .txt-box h4 {

  font-size: 60px;

  color: #fff;

  opacity: 0;

  letter-spacing: 10px;

  transform: translateX(-100px);

  transition: opacity 1.2s, transform 1.2s;

}

.index-s1 .item .txt-box p {

  font-size: 32px;

  color: #fff;

  margin-top: 20px;

  opacity: 0;

  transform: translateX(100px);

  transition: all 1.2s;

}

@media screen and (min-width: 1025px) {

  .index-s1 .item .txt-box p {

    letter-spacing: 10px;

  }

}

.index-s1 .item .txt-box .para {

  font-size: 24px;

  line-height: 1.5;

  color: #fff;

  margin-top: 20px;

  opacity: 0;

  transform: translateX(100px);

  transition: all 1.2s;

}

@media screen and (min-width: 1025px) {

  .index-s1 .item .txt-box .para {

    letter-spacing: 10px;

  }

}

.index-s1 .item.swiper-slide-active .txt-box h3, .index-s1 .item.swiper-slide-active .txt-box h4, .index-s1 .item.swiper-slide-active .txt-box p, .index-s1 .item.swiper-slide-active .txt-box .para {

  opacity: 1;

  transform: translateX(0);

  transition-delay: .5s;

}

.index-s1 .button {

  width: 14px;

  height: 18px;

  position: absolute;

  top: 50%;

  margin-top: -9px;

  background-position: center;

  background-repeat: no-repeat;

  background-size: contain;

  background-image: url("../image/next-1.png");

  opacity: .3;

  transition: all .3s ease;

  z-index: 2;

  cursor: pointer;

}

.index-s1 .button:hover {

  opacity: 1;

}

.index-s1 .button-prev {

  left: 3.125vw;

  transform: rotateY(180deg);

}

.index-s1 .button-next {

  right: 3.125vw;

}

.index-s1 .pagination {

  position: absolute;

  left: 0;

  right: 0;

  text-align: center;

  font-size: 0;

  bottom: 3.125vw;

  z-index: 2;

}

.index-s1 .pagination span {

  display: inline-block;

  vertical-align: top;

  width: 16px;

  height: 16px;

  margin: 0 8px;

  border: 1px solid #fff;

  background-color: transparent;

  transform: scale(0.75);

  transition: all .3s ease;

  cursor: pointer;

}

.index-s1 .pagination span.active {

  background-color: #fff;

  transform: scale(1);

}



.index-s2 {

  padding: 6.25vw 0;

  font-size: 0;

}

.index-s2 .items {

  margin-top: 2vw;

}

.index-s2 .item {

  width: 10.5%;

  height: 33.5vw;

  max-height: 640px;

  display: inline-block;

  vertical-align: top;

  position: relative;

  overflow: hidden;

  transition: width .3s ease;

}

.index-s2 .item:before {

  content: '';

  position: absolute;

  top: 20%;

  left: 0;

  right: 0;

  bottom: 0;

  background-image: linear-gradient(180deg, rgba(63, 52, 128, 0), #3f3480);

  opacity: 0;

  z-index: 1;

  transition: all .3s ease;

}

.index-s2 .item .img-box {

  width: 39vw;

  height: 100%;

  max-width: 690px;

  max-height: 640px;

  position: absolute;

  top: 50%;

  left: 50%;

  transform: translate(-50%, -50%);

  background-color: #333;

  overflow: hidden;

}

.index-s2 .item img {

  display: block;

  width: 100%;

  height: 100%;

  object-fit: cover;

  opacity: .3;

  filter: grayscale(1);

  transition: all .3s ease;

}

.index-s2 .item .show {

  position: absolute;

  top: 50%;

  left: 0;

  right: 0;

  font-size:18px;

  color: #fff;

  text-align: center;

  z-index: 2;

  transition: all .3s ease;

}

.index-s2 .item .hide {

  position: absolute;

  top: 0;

  left: 0;

  width: 100%;

  height: 100%;

  z-index: 3;

  padding: 6.25vw 3.125vw 0;

}

@media screen and (min-width: 769px) {

  .index-s2 .item .hide {

    display: none;

    opacity: 0;

    animation: opacity-1 .3s .3s ease forwards;

  }

}

.index-s2 .item h3 {

  font-size: 36px;

  color: #fff;

}

.index-s2 .item p {

  font-size: 20px;

  line-height: 1.8;

  color: #ffffff;

  position: absolute;

  bottom: 2.5vw;

  left: 3.125vw;

  right: 3.125vw;

  letter-spacing: .5px;

  text-align: justify;

}

.index-s2 .item a {

  display: block;

  width: 150px;

  font-size: 16px;

  line-height: 3;

  color: #3f3480;

  text-align: center;

  border-radius: 24px;

  margin-top: 2vw;

  background-color: #fff;

  transition: all .3s ease;

}

@media screen and (min-width: 1025px) {

  .index-s2 .item a:hover {

    transform: translateY(-5px);

    box-shadow: 0 10px 30px rgba(63, 52, 128, 0.3);

  }

}

.index-s2 .item.active {

  width: 47.5%;

}

.index-s2 .item.active:before {

  opacity: 1;

}

.index-s2 .item.active img {

  opacity: 1;

  filter: grayscale(0);

}

.index-s2 .item.active .show {

  opacity: 0;

}

.index-s2 .item.active .hide {

  display: block;

}



.index-s3 {

  height: 100vh;

  position: relative;

}

.index-s3 .tab-tit {

  position: absolute;

  right: 6.25vw;

  top: 50%;

  transform: translateY(-50%);

  z-index: 3;

}

.index-s3 .tab-tit span {

  position: relative;

  display: block;

  font-size: 24px;

  padding: 15px 0;

  color: #fff;

  opacity: .3;

  transition: opacity .3s ease;

  cursor: pointer;

}

.index-s3 .tab-tit span:before {

  content: '';

  width: 3.125vw;

  height: 1px;

  background-color: #fff;

  position: absolute;

  top: 50%;

  right: calc(100% + 1.5vw);

  transform-origin: right center;

  transform: scaleX(0);

  transition: transform .6s ease;

}

@media screen and (min-width: 1025px) {

  .index-s3 .tab-tit span:hover {

    opacity: 1;

  }

}

.index-s3 .tab-tit span.active {

  opacity: 1;

}

.index-s3 .tab-tit span.active:before {

  transform: scaleX(1);

}

.index-s3 .img-box {

  position: absolute;

  top: 0;

  left: 0;

  right: 0;

  bottom: 0;

  z-index: 1;

  background-color: #000;

}

.index-s3 .img-box .item {

  position: absolute;

  top: 0;

  left: 0;

  right: 0;

  bottom: 0;

  background-position: center;

  background-repeat: no-repeat;

  background-size: cover;

  background-attachment: fixed;

  opacity: 0;

  transition: all .3s ease;

}

.index-s3 .img-box .item.active {

  opacity: 1;

}

.index-s3 .txt-box {

  position: absolute;

  top: 0;

  left: 0;

  right: 0;

  bottom: 0;

  z-index: 2;

}

.index-s3 .txt-box .item {

  position: absolute;

  top: 0;

  left: 0;

  right: 0;

  bottom: 0;

  padding: 0 12.5vw;

  display: none;

}

.index-s3 .txt-box .item.active {

  display: block;

}

.index-s3 .txt-box .item h3, .index-s3 .txt-box .item p, .index-s3 .txt-box .item .btn {

  opacity: 0;

  animation: o-upfade-top 0.7s cubic-bezier(0.4, 0, 0.2, 1) forwards;

}

.index-s3 .txt-box .item h3 {

  font-size: 48px;

  color: #fff;

  animation-delay: .1s;

}

.index-s3 .txt-box .item p {

  font-size: 24px;

  color: #fff;

  line-height: 1.5;

  margin-top: 20px;

  animation-delay: .2s;

}

.index-s3 .txt-box .item .btn {

  margin-top: 3.1225vw;

  animation-delay: .3s;

}

.index-s3 .txt-box .item a {

  font-size: 16px;

  color: #fff;

}

.index-s3 .txt-box .item a:after {

  content: '';

  width: 6px;

  height: 10px;

  background-position: center;

  background-repeat: no-repeat;

  background-size: contain;

  background-image: url("../image/icon-14.png");

  display: inline-block;

  vertical-align: middle;

  margin: -2px 0 0 10px;

}

.index-s3 .buttons {

  position: absolute;

  bottom: 6.25vw;

  left: 12.5vw;

  font-size: 0;

  z-index: 4;

}

.index-s3 .button {

  width: 60px;

  height: 60px;

  display: inline-block;

  vertical-align: middle;

  background-position: center;

  background-repeat: no-repeat;

  background-size: contain;

  background-image: url("../image/next-2.png");

  cursor: pointer;

  opacity: .3;

  transition: all .3s ease;

}

@media screen and (min-width: 1025px) {

  .index-s3 .button:hover {

    opacity: 1;

  }

}

.index-s3 .button-prev {

  transform: rotateY(180deg);

  margin-right: 10px;

}



.index-s4 {

  position: relative;

  padding: 6.25vw 0 9vw;

  background-color: #d9eeff;

  background-position: center bottom;

  background-repeat: no-repeat;

  background-image: url("https://en.nantian.com.cn/statics/home/images/index/img-3.jpg");

  background-size: 100% auto;

}

.index-s4 .cloud {

  position: absolute;

  bottom: 0;

  left: 0;

  right: 0;

  z-index: 1;

  overflow: hidden;

  white-space: nowrap;

  font-size: 0;

}

.index-s4 .cloud span {

  display: inline-block;

  vertical-align: top;

  height: 25vw;

  width: 190vw;

  background-position: left bottom;

  background-repeat: repeat-x;

  background-image: url("https://en.nantian.com.cn/statics/home/images/index/cloud.png");

  background-size: 100% 100%;

  animation: o-cloud 150s linear infinite;

}

.index-s4 .data {

  margin-top: 3.125vw;

  padding: 0 3.125vw;

  display: flex;

  justify-content: space-between;

}

.index-s4 .data span {

  display: inline-block;

  vertical-align: bottom;

  font-family: 'DINPro-Light';

  font-size: 80px;

  line-height: 1;

  color: #000;

}

.index-s4 .data em {

  font-style: normal;

  font-size: 48px;

  line-height: 1;

  font-family: 'DINPro-Medium';

  display: inline-block;

  vertical-align: bottom;

}

.index-s4 .data i {

  font-style: normal;

  font-size: 20px;

  color: #000;

  display: inline-block;

  vertical-align: top;

  margin-left: 10px;

  transform: translateY(10px);

}

.index-s4 .data p {

  margin-top: 20px;

  font-size:16px;

  color: #000;

  margin-left: 15px;

}

.index-s4 a.more {

  display: block;

  width: 150px;

  font-size: 16px;

  line-height: 3;

  color: #fff;

  text-align: center;

  border-radius: 24px;

  margin: 4vw auto 0;

  background-color: #3f3480;

  transition: all .3s ease;

}

@media screen and (min-width: 1025px) {

  .index-s4 a.more:hover {

    transform: translateY(-5px);

    box-shadow: 0 10px 30px rgba(63, 52, 128, 0.3);

  }

}



.index-s5 {

  padding-bottom: 6.25vw;

}

.index-s5 .bot-block {

  position: relative;

  margin-top: 2vw;

}

.index-s5 .items {

  margin: -10px -20px 0;

  padding: 10px 20px 30px;

}

.index-s5 .item {

  transition: box-shadow .3s ease;

}

.index-s5 .item .img-box {

  overflow: hidden;

}

.index-s5 .item img {

  display: block;

  width: 100%;

  transition: transform .6s ease;

}

.index-s5 .item .txt-box {

  padding: 1.5vw;

}

.index-s5 .item h3 {

  font-size: 20px;

  line-height: 28px;

  height: 56px;

  color: #000;

  overflow: hidden;

}

.index-s5 .item .date {

  font-size: 18px;

  color: #808080;

  margin-top: 10px;

}

@media screen and (min-width: 769px) {

  .index-s5 .item:nth-of-type(even) {

    margin-top: 3.125vw;

  }

}

@media screen and (min-width: 1025px) {

  .index-s5 .item:hover {

    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);

  }

  .index-s5 .item:hover img {

    transform: scale(1.1);

  }

}

.index-s5 .button {

  width: 60px;

  height: 60px;

  position: absolute;

  top: 50%;

  margin-top: -30px;

  background-position: center;

  background-repeat: no-repeat;

  background-image: url("../image/prev-1.png");

  box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);

  border-radius: 50%;

  transition: all .3s ease;

  cursor: pointer;

}

@media screen and (min-width: 1025px) {

  .index-s5 .button:hover {

    background-color: #3f3480;

    background-image: url("../image/prev-2.png");

  }

}

.index-s5 .button-prev {

  left: 3.125vw;

}

.index-s5 .button-next {

  right: 3.125vw;

  transform: rotateY(180deg);

}

.index-s5 .pagination {

  margin-top: 2vw;

  font-size: 0;

  text-align: center;

}

.index-s5 .pagination span {

  display: inline-block;

  vertical-align: bottom;

  width: 24px;

  height: 2px;

  background-color: #c5c2d2;

  margin-left: 10px;

  cursor: pointer;

}

.index-s5 .pagination span:nth-of-type(1) {

  margin-left: 0;

}

.index-s5 .pagination span.active {

  background-color: #3f3480;

  width: 36px;

  height: 4px;

}



.index-s6 {

  padding: 6.25vw 0;

  background-position: center;

  background-repeat: no-repeat;

  background-size: cover;

  background-image: url("../image/img-6.jpg");

  background-attachment: fixed;

  font-size: 0;

}

.index-s6 .left-box {

  width: 30%;

  display: inline-block;

  vertical-align: middle;

  padding-right: 3.125vw;

}

.index-s6 .right-box {

  width: 70%;

  display: inline-block;

  vertical-align: middle;

  max-width: 1000px;

}

.index-s6 .right-box img {

  display: block;

  width: 100%;

}



.news-list-s1 {

  height: calc(100vh - 100px);

  position: relative;

  overflow: hidden;

  background-position: center;

  background-repeat: no-repeat;

  background-size: cover;

  background-image: url("../image/cC5xZO3aMk9dDf78PqaOvM3Ub7F5wP1iUrWNkEqN.jpg");

}

.news-list-s1 .items {

  position: absolute;

  top: 50%;

  left: 0;

  right: 0;

  transform: translateY(-50%);

}

.news-list-s1 .box {

  width: 80%;

  max-width: 960px;

  margin: 0 auto;

}

.news-list-s1 .box:before {

  content: '';

  width: 51px;

  height: 31px;

  background-position: center;

  background-repeat: no-repeat;

  background-size: contain;

  background-image: url("../image/icon-7.png");

  display: block;

  margin: 0 auto;

}

.news-list-s1 .box h3 {

  font-size: 48px;

  line-height: 1.25;

  color: #fff;

  text-align: center;

  margin: 3.125vw 0 6.25vw;

}

.news-list-s1 .box a {

  display: block;

  width: 150px;

  font-size: 16px;

  line-height: 3;

  color: #fff;

  text-align: center;

  background-color: #3f3480;

  border-radius: 24px;

  margin: 0 auto;

  transition: all .3s ease;

}

@media screen and (min-width: 1025px) {

  .news-list-s1 .box a:hover {

    transform: translateY(-5px);

    box-shadow: 0 10px 30px rgba(63, 52, 128, 0.3);

  }

}

.news-list-s1 .button {

  width: 60px;

  height: 60px;

  background-position: center;

  background-repeat: no-repeat;

  background-size: contain;

  background-image: url("../image/icon-8.png");

  position: absolute;

  top: 50%;

  margin-top: -30px;

  z-index: 2;

  cursor: pointer;

  opacity: .5;

  transition: all .3s ease;

}

@media screen and (min-width: 1025px) {

  .news-list-s1 .button:hover {

    opacity: 1;

  }

}

.news-list-s1 .button-prev {

  left: 3.125vw;

  transform: rotateY(180deg);

}

.news-list-s1 .button-next {

  right: 3.125vw;

}

.news-list-s1 .pagination {

  font-size: 0;

  text-align: center;

  display: none;

  position: absolute;

  left: 0;

  right: 0;

  z-index: 3;

  bottom: 20px;

}

.news-list-s1 .pagination span {

  display: inline-block;

  vertical-align: bottom;

  width: 24px;

  height: 2px;

  background-color: #fff;

  margin-left: 10px;

  cursor: pointer;

}

.news-list-s1 .pagination span:nth-of-type(1) {

  margin-left: 0;

}

.news-list-s1 .pagination span.active {

  background-color: #fff;

  width: 36px;

  height: 4px;

}



.news-list-s2 {

  padding: 6.25vw 3.125vw;

  background-color: #f5f5f5;

}

.news-list-s2 .title {

  display: flex;

  justify-content: space-between;

  align-items: center;

}

.news-list-s2 .title h3 {

  font-size: 36px;

  color: #000;

}

.news-list-s2 .title form {

  width: 560px;

  height: 60px;

  background-color: #fff;

  border: 1px solid #d9d9d9;

  border-radius: 30px;

  position: relative;

  padding-left: 60px;

}

.news-list-s2 .title form:before {

  content: '';

  width: 18px;

  height: 18px;

  background-position: center;

  background-repeat: no-repeat;

  background-size: contain;

  background-image: url("../image/icon-9.png");

  position: absolute;

  left: 30px;

  top: 50%;

  margin-top: -9px;

}

.news-list-s2 .title form input {

  display: block;

  width: 100%;

  height: 100%;

  font-size: 14px;

  color: #bfbfbf;

  padding: 0 20px;

  background-color: transparent;

}

.news-list-s2 .items {

  font-size: 0;

  margin: 3.125vw 0 2vw;

  display: flex;

  flex-wrap: wrap;

  overflow: hidden;

}

.news-list-s2 .item {

  position: relative;

  width: calc((100% - 6.25vw) / 3);

  padding-bottom: 6.25vw;

  margin-top: 3.125vw;

  margin-right: 3.125vw;

}

.news-list-s2 .item:after {

  content: '';

  position: absolute;

  bottom: 0;

  left: 0;

  right: -3.125vw;

  height: 1px;

  background-color: #d9d9d9;

}

.news-list-s2 .item .img-box {

  overflow: hidden;

}

.news-list-s2 .item img {

  display: block;

  width: 100%;

  transition: transform .6s ease;

}

.news-list-s2 .item .txt-box {

  padding: 2vw 2vw 0;

}

.news-list-s2 .item .date {

  font-size: 20px;

  color: #808080;

  font-family: 'DINPro-Light';

}

.news-list-s2 .item h3 {

  font-size: 24px;

  line-height: 36px;

  color: #000000;

  height: 72px;

  overflow: hidden;

  margin-top: 10px;

}

@media screen and (min-width: 769px) {

  .news-list-s2 .item:nth-of-type(1), .news-list-s2 .item:nth-of-type(2), .news-list-s2 .item:nth-of-type(3) {

    margin-top: 0;

  }

  .news-list-s2 .item:nth-of-type(3n) {

    margin-right: 0;

  }

}

@media screen and (min-width: 1025px) {

  .news-list-s2 .item:hover img {

    transform: scale(1.1);

  }

}



.news-detail-s1 {

  padding: 6.25vw 0;

  font-size: 0;

}

.news-detail-s1 .left-box {

  display: inline-block;

  vertical-align: top;

  width: calc(100% - 360px);

  padding-right: 6.25vw;

}

.news-detail-s1 .top-box h3 {

  font-size: 42px;

  color: #333333;

}

.news-detail-s1 .top-box .info {

  margin-top: 4vw;

  position: relative;

}

.news-detail-s1 .top-box .info span {

  display: inline-block;

  vertical-align: top;

  font-size: 24px;

  color: #808080;

  font-family: 'DINPro-Light';

  margin-left: 4vw;

}

.news-detail-s1 .top-box .info span:nth-of-type(1) {

  margin-left: 0;

}

.news-detail-s1 .top-box .info span:before {

  content: '';

  display: inline-block;

  vertical-align: middle;

  margin: -2px 10px 0 0;

  background-position: center;

  background-repeat: no-repeat;

  background-size: contain;

}

.news-detail-s1 .top-box .info span.date:before {

  width: 24px;

  height: 24px;

  background-image: url("../image/icon-31.png");

}

.news-detail-s1 .top-box .info span.view:before {

  width: 31px;

  height: 23px;

  background-image: url("../image/icon-4.png");

}

.news-detail-s1 .top-box .info .share {

  position: absolute;

  right: 0;

  top: 50%;

  transform: translateY(-50%);

}

.news-detail-s1 .top-box .info .share a {

  float: none;

  padding: 0;

  margin: 0;

  display: block;

  width: 30px;

  height: 24px;

  background-position: center;

  background-repeat: no-repeat;

  background-size: contain;

  background-image: url("../image/icon-51.png");

}

.news-detail-s1 .cont-box {

  margin-top: 30px;

  padding-top: 30px;

  border-top: 1px solid #e6e6e6;

}

.news-detail-s1 .other {

  margin-top: 3.125vw;

}

.news-detail-s1 .other .back {

  display: flex;

  justify-content: space-between;

  align-items: center;

}

.news-detail-s1 .other .back:before, .news-detail-s1 .other .back:after {

  content: '';

  width: calc((100% - 120px) / 2);

  height: 1px;

  background-color: #e6e6e6;

}

.news-detail-s1 .other .back a {

  position: relative;

}

.news-detail-s1 .other .back a:before {

  content: '';

  display: block;

  width: 60px;

  height: 60px;

  border: 1px solid #e8e8e8;

  border-radius: 50%;

  background-position: center;

  background-repeat: no-repeat;

  background-image: url("../image/icon-6.png");

}

.news-detail-s1 .other .back span {

  position: absolute;

  font-size: 14px;

  color: #cccccc;

  top: 100%;

  padding-top: 10px;

  white-space: nowrap;

  left: 50%;

  transform: translateX(-50%);

}

.news-detail-s1 .other .page {

  display: flex;

  margin-top: 10px;

  justify-content: space-between;

}

.news-detail-s1 .other .page a {

  width: 200px;

  line-height: 58px;

  text-align: center;

  font-size: 18px;

  color: #808080;

  border: 1px solid #e6e6e6;

  transition: all .3s ease;

}

@media screen and (min-width: 1025px) {

  .news-detail-s1 .other .page a:hover {

    border-color: #3f3480;

    background-color: #3f3480;

    color: #fff;

  }

}

.news-detail-s1 .right-box {

  width: 360px;

  display: inline-block;

  vertical-align: top;

  position: sticky;

  top: 150px;

}

.news-detail-s1 .right-box h3 {

  font-size: 24px;

  color: #808080;

  border-bottom: 1px solid #e6e6e6;

  padding-bottom: 24px;

}

.news-detail-s1 .right-box .link a {

  display: block;

  margin-top: 2vw;

  position: relative;

  font-size: 18px;

  line-height: 32px;

  color: #333333;

  padding-left: 15px;

}

.news-detail-s1 .right-box .link a:before {

  content: '';

  width: 4px;

  height: 4px;

  background-color: #e60012;

  border-radius: 50%;

  position: absolute;

  left: 0;

  top: 14px;

}



.inner-title {

  font-size: 36px;

}

.inner-title.white {

  color: #fff;

}

.inner-title.black {

  color: #000;

}

.inner-title.center {

  text-align: center;

}



.industry-page-s1 {

  position: relative;

}

.industry-page-s1 .img-box {

  overflow: hidden;

}

.industry-page-s1 img {

  display: block;

  width: 100%;

}

.industry-page-s1 .txt-box {

  position: absolute;

  bottom: 0;

  left: 0;

  right: 0;

  padding: 4.5vw 0;

  background-image: linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.9));

}

.industry-page-s1 h3:before {

  content: '';

  width: 4px;

  height: 36px;

  background-color: #3f3480;

  display: inline-block;

  vertical-align: middle;

  margin: -2px 30px 0 0;

}

.industry-page-s1 p {

  font-size: 24px;

  line-height: 1.4;

  color: #fff;

  margin-top: 20px;

  max-width: 640px;

  text-align: justify;

}



.industry-page-s2 {

  padding: 6.25vw 0;

  font-size: 0;

}

.industry-page-s2 .img-box {

  display: inline-block;

  vertical-align: middle;

  width: 50%;

  overflow: hidden;

}

.industry-page-s2 .img-box img {

  display: block;

  width: 100%;

  transition: transform .6s ease;

}

@media screen and (min-width: 1025px) {

  .industry-page-s2 .img-box:hover img {

    transform: scale(1.1);

  }

}

.industry-page-s2 .txt-box {

  width: 50%;

  display: inline-block;

  vertical-align: middle;

  padding-left: 2vw;

}

.industry-page-s2 .para {

  font-size: 18px;

  line-height: 2;

  color: #000;

  margin-top: 20px;

}



.industry-page-s3 {

  padding: 6.25vw 0;

  background-position: center;

  background-repeat: no-repeat;

  background-size: cover;

  background-image: url("../image/img-11.jpg");

}

.industry-page-s3 .items {

  padding-top: 2vw;

}

.industry-page-s3 .item {

  background-color: #fff;

  transition: transform .3s ease;

}

.industry-page-s3 .item .img-box {

  overflow: hidden;

}

.industry-page-s3 .item img {

  display: block;

  width: 100%;

  transition: transform .6s ease;

}

.industry-page-s3 .item .txt-box {

  padding: 2vw;

}

.industry-page-s3 .item .txt-box:after {

  content: '';

  display: block;

  width: 13px;

  height: 18px;

  background-position: center;

  background-repeat: no-repeat;

  background-size: contain;

  background-image: url("../image/icon-15.png");

  margin-top: 1.5vw;

  transition: transform .3s ease;

}

.industry-page-s3 .item h3 {

  font-size: 20px;

  color: #000;

}

.industry-page-s3 .item p {

  font-size: 16px;

  line-height: 28px;

  color: #808080;

  height: 84px;

  overflow: hidden;

  margin-top: 10px;

}

@media screen and (min-width: 1025px) {

  .industry-page-s3 .item:hover {

    transform: translateY(-10px);

  }

  .industry-page-s3 .item:hover img {

    transform: scale(1.1);

  }

  .industry-page-s3 .item:hover .txt-box:after {

    transform: translateX(10px);

  }

}

.industry-page-s3 .pagination {

  margin-top: 2vw;

  font-size: 0;

}

.industry-page-s3 .pagination span {

  display: inline-block;

  vertical-align: bottom;

  width: 24px;

  height: 2px;

  background-color: #c5c2d2;

  margin-left: 10px;

  cursor: pointer;

}

.industry-page-s3 .pagination span:nth-of-type(1) {

  margin-left: 0;

}

.industry-page-s3 .pagination span.active {

  background-color: #3f3480;

  width: 36px;

  height: 4px;

}



.industry-page-s4 {

  padding: 6.25vw 0;

  background-position: center;

  background-repeat: no-repeat;

  background-size: cover;

  background-attachment: fixed;

  overflow: hidden;

}

.industry-page-s4 .cont {

  position: relative;

  margin-top: 2vw;

}

.industry-page-s4 .items {

  padding-top: 10px;

}

.industry-page-s4 .item {

  height: auto;

  background-color: #fff;

  transition: transform .3s ease;

}

.industry-page-s4 .item a {

  display: block;

  padding: 3.125vw;

}

.industry-page-s4 .item h3 {

  font-size: 24px;

  color: #3f3480;

  padding-bottom: 24px;

  border-bottom: 1px solid #e6e6e6;

}

.industry-page-s4 .item p {

  font-size: 16px;

  line-height: 2;

  color: #808080;

  height: 96px;

  margin: 24px 0;

  overflow: hidden;

}

.industry-page-s4 .item span {

  display: inline-block;

  font-size: 14px;

  color: #3f3480;

}

.industry-page-s4 .item span:after {

  content: '';

  width: 7px;

  height: 10px;

  background-position: center;

  background-repeat: no-repeat;

  background-size: contain;

  background-image: url("../image/icon-24.png");

  display: inline-block;

  vertical-align: middle;

  margin: -2px 0 0 10px;

}

@media screen and (min-width: 1025px) {

  .industry-page-s4 .item:hover {

    transform: translateY(-10px);

  }

}

.industry-page-s4 .button {

  width: 60px;

  height: 60px;

  background-position: center;

  background-repeat: no-repeat;

  background-size: contain;

  background-image: url("../image/icon-32.png");

  position: absolute;

  top: 50%;

  margin-top: -30px;

  cursor: pointer;

  z-index: 2;

  opacity: .5;

  transition: all .3s ease;

}

@media screen and (min-width: 1025px) {

  .industry-page-s4 .button:hover {

    opacity: 1;

  }

}

.industry-page-s4 .button-prev {

  left: 3.125vw;

  transform: rotateY(180deg);

}

.industry-page-s4 .button-next {

  right: 3.125vw;

}

.industry-page-s4 .pagination {

  margin-top: 2vw;

  font-size: 0;

}

.industry-page-s4 .pagination span {

  display: inline-block;

  vertical-align: bottom;

  width: 24px;

  height: 2px;

  background-color: #fff;

  margin-left: 10px;

  cursor: pointer;

}

.industry-page-s4 .pagination span:nth-of-type(1) {

  margin-left: 0;

}

.industry-page-s4 .pagination span.active {

  background-color: #fff;

  width: 36px;

  height: 4px;

}



.industry-page-s5 {

  font-size: 0;

  padding: 7.5vw 0;

  background-color: #3f3480;

  background-position: center bottom;

  background-repeat: no-repeat;

  background-size: 100% auto;

  background-image: url("../image/img-2.jpg");

  text-align: center;

}

.industry-page-s5 a {

  display: inline-block;

  vertical-align: top;

  width: 320px;

  font-size: 20px;

  line-height: 56px;

  border: 2px solid #fff;

  border-radius: 30px;

  margin: 0 12px;

  transition: all .3s ease;

}

.industry-page-s5 a:nth-of-type(1) {

  background-color: #fff;

  color: #3f3480;

}

.industry-page-s5 a:nth-of-type(1):before {

  content: '';

  width: 24px;

  height: 24px;

  background-position: center;

  background-repeat: no-repeat;

  background-size: contain;

  background-image: url("../image/icon-41.png");

  display: inline-block;

  vertical-align: middle;

  margin: -2px 15px 0 0;

}

@media screen and (min-width: 1025px) {

  .industry-page-s5 a:hover {

    transform: translateY(-5px);

    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);

  }

}

.industry-page-s5 a:nth-of-type(2) {

  color: #fff;

}

.industry-page-s5 a:nth-of-type(2):before {

  content: '';

  width: 21px;

  height: 21px;

  background-position: center;

  background-repeat: no-repeat;

  background-size: contain;

  background-image: url("../image/icon-81.png");

  display: inline-block;

  vertical-align: middle;

  margin: -2px 15px 0 0;

}

@media screen and (min-width: 1025px) {

  .industry-page-s5 a:hover {

    transform: translateY(-5px);

    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);

  }

}



.industry-page-s6 {

  padding: 12.5vw 0;

  background-position: center;

  background-repeat: no-repeat;

  background-size: cover;

}

.industry-page-s6 .txt-box {

  width: 70%;

  max-width: 950px;

}



.industry-page-s7 {

  font-size: 0;

  padding: 6.25vw 0;

  background-position: center;

  background-repeat: no-repeat;

  background-size: cover;

  background-attachment: fixed;

}

.industry-page-s7 .items {

  padding-top: 10px;

}

.industry-page-s7 .item {

  padding-top: 50px;

  height: auto;

  display: inline-block;

  vertical-align: top;

  width: calc((100% - 24px) / 2);

  position: relative;

  margin-right: 24px;

  transition: transform .3s ease;

}

.industry-page-s7 .item:last-of-type {

  margin-right: 0;

}

.industry-page-s7 .item span {

  position: absolute;

  right: 0;

  top: 0;

  font-size: 80px;

  line-height: 1;

  font-family: 'DINPro-Bold';

  color: #fff;

  z-index: 1;

  opacity: 0;

  transition: opacity .3s ease;

}

.industry-page-s7 .item .box {

  height: 100%;

  padding: 2vw;

  background-color: #fff;

  border-top: 4px solid #3f3480;

  position: relative;

  z-index: 2;

}

.industry-page-s7 .item .box:before {

  content: '';

  position: absolute;

  top: 0;

  left: 0;

  right: 0;

  bottom: 0;

  background-position: center bottom;

  background-repeat: no-repeat;

  background-size: 100% auto;

  background-color: #3f3480;

  background-image: url("../image/img-12.jpg");

  z-index: 1;

  opacity: 0;

  transition: opacity .3s ease;

}

.industry-page-s7 .item .box:after {

  content: '';

  position: absolute;

  right: 0;

  left: 0;

  bottom: 0;

  height: 4px;

  background-color: #fff;

  z-index: 3;

  transform: scaleX(0);

  transform-origin: left center;

  transition: transform .6s ease;

}

.industry-page-s7 .item .txt {

  position: relative;

  z-index: 2;

}

.industry-page-s7 .item .img {

  position: relative;

  height: 3.75vw;

  max-height: 72px;

}

.industry-page-s7 .item img {

  display: block;

  height: 100%;

  transition: opacity .3s ease;

}

.industry-page-s7 .item img.hide {

  position: absolute;

  top: 0;

  left: 0;

  opacity: 0;

}

.industry-page-s7 .item h3 {

  margin-top: 6.25vw;

  font-size: 24px;

  color: #000;

  transition: color .3s ease;

}

.industry-page-s7 .item .para {

  font-size: 16px;

  line-height: 28px;

  color: #808080;

  margin-top: 10px;

  transition: color .3s ease;

}

@media screen and (min-width: 1025px) {

  .industry-page-s7 .item:hover {

    transform: translateY(-10px);

  }

  .industry-page-s7 .item:hover span {

    opacity: 1;

  }

  .industry-page-s7 .item:hover .box:before {

    opacity: 1;

  }

  .industry-page-s7 .item:hover .box:after {

    transform: scaleX(1);

  }

  .industry-page-s7 .item:hover img.show {

    opacity: 0;

  }

  .industry-page-s7 .item:hover img.hide {

    opacity: 1;

  }

  .industry-page-s7 .item:hover h3, .industry-page-s7 .item:hover .para {

    color: #fff;

  }

}

.industry-page-s7 .pagination {

  margin-top: 2vw;

  font-size: 0;

}

.industry-page-s7 .pagination span {

  display: inline-block;

  vertical-align: bottom;

  width: 24px;

  height: 2px;

  background-color: #fff;

  margin-left: 10px;

  cursor: pointer;

}

.industry-page-s7 .pagination span:nth-of-type(1) {

  margin-left: 0;

}

.industry-page-s7 .pagination span.active {

  background-color: #fff;

  width: 36px;

  height: 4px;

}



.industry-page-s8 {

  font-size: 0;

  padding: 6.25vw 0;

}

.industry-page-s8 .items {

  margin-top: 2vw;

}

.industry-page-s8 .item:nth-of-type(odd) {

  background-color: #fff;

}

.industry-page-s8 .item:nth-of-type(even) {

  background-color: #f0f2f4;

}

.industry-page-s8 .item .img-box {

  overflow: hidden;

}

.industry-page-s8 .item img {

  display: block;

  width: 100%;

  transition: transform .6s ease;

}

.industry-page-s8 .item .txt-box {

  padding: 2vw;

}

.industry-page-s8 .item .txt-box:after {

  content: '';

  width: 13px;

  height: 18px;

  background-position: center;

  background-repeat: no-repeat;

  background-size: contain;

  background-image: url("../image/icon-16.png");

  display: block;

  margin-top: 2vw;

}

.industry-page-s8 .item h3 {

  font-size: 20px;

  color: #000;

}

.industry-page-s8 .item p {

  font-size: 16px;

  line-height: 28px;

  color: #808080;

  margin-top: 10px;

}

@media screen and (min-width: 1025px) {

  .industry-page-s8 .item:hover img {

    transform: scale(1.1);

  }

}

.industry-page-s8 .pagination {

  margin-top: 2vw;

  font-size: 0;

}

.industry-page-s8 .pagination span {

  display: inline-block;

  vertical-align: bottom;

  width: 24px;

  height: 2px;

  background-color: #cac8d7;

  margin-left: 10px;

  cursor: pointer;

}

.industry-page-s8 .pagination span:nth-of-type(1) {

  margin-left: 0;

}

.industry-page-s8 .pagination span.active {

  background-color: #3f3480;

  width: 36px;

  height: 4px;

}



.industry-page-s9 {

  font-size: 0;

  padding: 6.25vw 0;

  background-position: center;

  background-repeat: no-repeat;

  background-size: cover;

  background-attachment: fixed;

  background-image: url("../image/img-21.jpg");

}

.industry-page-s9 .bot-block {

  position: relative;

}

.industry-page-s9 .items {

  padding-top: 2vw;

}

.industry-page-s9 .item {

  height: auto;

  display: inline-block;

  vertical-align: top;

  width: calc((100% - 48px) / 3);

  position: relative;

  margin-right: 24px;

  background-color: #fff;

  transition: transform .3s ease;

}

.industry-page-s9 .item:last-of-type {

  margin-right: 0;

}

.industry-page-s9 .item:before {

  content: '';

  position: absolute;

  top: 0;

  left: 0;

  right: 0;

  bottom: 0;

  background-position: center bottom;

  background-repeat: no-repeat;

  background-size: 100% auto;

  background-color: #3f3480;

  background-image: url("../image/img-31.jpg");

  z-index: 1;

  opacity: 0;

  transition: opacity .3s ease;

}

.industry-page-s9 .item a {

  display: block;

  padding: 3.125vw 2vw;

  border-top: 2px solid #3f3480;

  position: relative;

  z-index: 2;

}

.industry-page-s9 .item h3 {

  font-size: 24px;

  color: #000;

  transition: color .3s ease;

}

.industry-page-s9 .item p {

  font-size: 16px;

  line-height: 2;

  color: #808080;

  margin-top: 24px;

  padding-top: 24px;

  border-top: 1px solid #e6e6e6;

  transition: color .3s ease;

}

.industry-page-s9 .item span {

  font-size: 14px;

  color: #3f3480;

  display: inline-block;

  margin-top: 3.125vw;

  transition: color .3s ease;

}

.industry-page-s9 .item span:after {

  content: '';

  width: 10px;

  height: 10px;

  background-position: center;

  background-repeat: no-repeat;

  background-size: contain;

  background-image: url("../image/icon-25.png");

  display: inline-block;

  vertical-align: middle;

  margin: -2px 0 0 10px;

  transition: all .3s ease;

}

@media screen and (min-width: 1025px) {

  .industry-page-s9 .item:hover {

    transform: translateY(-10px);

  }

  .industry-page-s9 .item:hover:before {

    opacity: 1;

  }

  .industry-page-s9 .item:hover h3, .industry-page-s9 .item:hover p, .industry-page-s9 .item:hover span {

    color: #fff;

  }

  .industry-page-s9 .item:hover span:after {

    background-image: url("../image/icon-33.png");

  }

}

.industry-page-s9 .button {

  width: 60px;

  height: 60px;

  background-position: center;

  background-repeat: no-repeat;

  background-size: contain;

  background-image: url("../image/icon-32.png");

  position: absolute;

  top: 50%;

  margin-top: -30px;

  cursor: pointer;

  z-index: 2;

  opacity: .5;

  transition: all .3s ease;

}

@media screen and (min-width: 1025px) {

  .industry-page-s9 .button:hover {

    opacity: 1;

  }

}

.industry-page-s9 .button-prev {

  left: 3.125vw;

  transform: rotateY(180deg);

}

.industry-page-s9 .button-next {

  right: 3.125vw;

}

.industry-page-s9 .pagination {

  margin-top: 2vw;

  font-size: 0;

}

.industry-page-s9 .pagination span {

  display: inline-block;

  vertical-align: bottom;

  width: 24px;

  height: 2px;

  background-color: #cac8d7;

  margin-left: 10px;

  cursor: pointer;

}

.industry-page-s9 .pagination span:nth-of-type(1) {

  margin-left: 0;

}

.industry-page-s9 .pagination span.active {

  background-color: #3f3480;

  width: 36px;

  height: 4px;

}



.industry-detail-crumbs {

  font-size: 0;

  position: sticky;

  top: 70px;

  z-index: 5;

  background-color: #fff;

  border-bottom: 1px solid #e6e6e6;

}

.industry-detail-crumbs .flex {

  display: flex;

  justify-content: space-between;

}

.industry-detail-crumbs .left-box a {

  display: inline-block;

  vertical-align: top;

  font-size: 14px;

  color: #808080;

  line-height: 60px;

  position: relative;

  padding: 0 15px;

  margin-left: 2vw;

  transition: color .3s ease;

}

.industry-detail-crumbs .left-box a:nth-of-type(1) {

  margin-left: 0;

}

.industry-detail-crumbs .left-box a:before {

  content: '';

  position: absolute;

  bottom: 0;

  left: 0;

  right: 0;

  height: 2px;

  background-color: #3f3480;

  transform: scaleX(0);

  transition: transform .3s ease;

}

.industry-detail-crumbs .left-box a:hover, .industry-detail-crumbs .left-box a.active {

  color: #3f3480;

}

.industry-detail-crumbs .left-box a:hover:before, .industry-detail-crumbs .left-box a.active:before {

  transform: scaleX(1);

}

.industry-detail-crumbs .right-box .box {

  height: 100%;

  position: relative;

  display: inline-block;

  vertical-align: middle;

  margin-left: 1.5vw;

}

.industry-detail-crumbs .right-box .box:nth-of-type(1) {

  margin-left: 0;

  margin-right: 1.5vw;

  cursor: pointer;

}

.industry-detail-crumbs .right-box .box:nth-of-type(1):after {

  content: '';

  width: 1px;

  height: 18px;

  background-color: #e6e6e6;

  display: inline-block;

  vertical-align: middle;

  position: absolute;

  right: -1.5vw;

  top: 50%;

  margin-top: -9px;

}

@media screen and (min-width: 1025px) {

  .industry-detail-crumbs .right-box .box:hover .hide {

    opacity: 1;

    visibility: visible;

  }

}

.industry-detail-crumbs .right-box a.icon {

  display: inline-block;

  vertical-align: middle;

  background-position: center;

  background-repeat: no-repeat;

  background-size: contain;

}

.industry-detail-crumbs .right-box a.share {

  width: 17px;

  height: 19px;

  background-image: url("../image/icon-52.png");

}

.industry-detail-crumbs .right-box a.print {

  width: 19px;

  height: 19px;

  background-image: url("../image/icon-61.png");

}

.industry-detail-crumbs .right-box a.mail {

  width: 26px;

  height: 19px;

  background-image: url("../image/icon-71.png");

}

.industry-detail-crumbs .right-box .hide {

  position: absolute;

  bottom: 100%;

  left: 50%;

  transform: translateX(-50%);

  padding: 2px 0;

  width: 250px;

  text-align: center;

  opacity: 0;

  visibility: hidden;

  transition: all .3s ease;

}

.industry-detail-crumbs .right-box .hide a {

  float: none;

  display: inline-block;

  vertical-align: top;

  padding: 0;

  margin: 0 1px;

  background-position: center;

  background-repeat: no-repeat;

  background-color: #fff;

  border-radius: 3px;

  width: 60px;

  height: 60px;

  opacity: 1 !important;

  transition: all .3s ease;

}

.industry-detail-crumbs .right-box .hide a.weixin {

  background-image: url("../image/s-1.png");

}

.industry-detail-crumbs .right-box .hide a.weixin:hover {

  background-color: #46c000;

  background-image: url("../image/s-1-on.png");

}

.industry-detail-crumbs .right-box .hide a.qq {

  background-image: url("../image/s-5.png");

}

.industry-detail-crumbs .right-box .hide a.qq:hover {

  background-color: #00a0e9;

  background-image: url("../image/s-5-on.png");

}

.industry-detail-crumbs .right-box .hide a.linkedin {

  background-image: url("https://en.nantian.com.cn/statics/home/images/industry/s-2.png");

}

.industry-detail-crumbs .right-box .hide a.linkedin:hover {

  background-color: #2767c5;

  background-image: url("../image/s-2-on.png");

}

.industry-detail-crumbs .right-box .hide a.twi {

  background-image: url("../image/s-3.png");

}

.industry-detail-crumbs .right-box .hide a.twi:hover {

  background-color: #2f85e4;

  background-image: url("../image/s-3-on.png");

}

.industry-detail-crumbs .right-box .hide a.fbook {

  background-image: url("../image/s-4.png");

}

.industry-detail-crumbs .right-box .hide a.fbook:hover {

  background-color: #5971bf;

  background-image: url("../image/s-4-on.png");

}



.industry-detail-s1 {

  padding: 6.25vw 0;

  font-size: 0;

}

.industry-detail-s1 .img-box {

  display: inline-block;

  vertical-align: middle;

  width: 50%;

  overflow: hidden;

}

.industry-detail-s1 .img-box img {

  display: block;

  width: 100%;

  transition: transform .6s ease;

}

@media screen and (min-width: 1025px) {

  .industry-detail-s1 .img-box:hover img {

    transform: scale(1.1);

  }

}

.industry-detail-s1 .txt-box {

  display: inline-block;

  vertical-align: middle;

  width: 50%;

  padding-left: 2vw;

}

.industry-detail-s1 .para {

  font-size: 18px;

  line-height: 2;

  color: #808080;

  margin-top: 20px;

}



.industry-detail-s2 {

  padding: 9.375vw 0;

  background-position: center;

  background-repeat: no-repeat;

  background-size: cover;

  background-attachment: fixed;

  background-image: url("../image/detail-img-2.jpg");

}

.industry-detail-s2 .para {

  font-size: 18px;

  line-height: 2;

  color: #fff;

  text-align: center;

  margin-top: 20px;

}



.industry-detail-s3 {

  position: relative;

  font-size: 0;

  padding: 6.25vw 0;

  background-position: center;

  background-repeat: no-repeat;

  background-size: cover;

  background-image: url("../image/detail-img-4.jpg");

  z-index: 3;

}

.industry-detail-s3 .items {

  margin-top: 2vw;

}

.industry-detail-s3 .item {

  position: relative;

  display: inline-block;

  vertical-align: top;

  width: calc((100% - 74px) / 4);

  margin-right: 24px;

  margin-top: 24px;

  transition: transform .3s ease;

}

@media screen and (min-width: 769px) {

  .industry-detail-s3 .item:nth-of-type(1), .industry-detail-s3 .item:nth-of-type(2), .industry-detail-s3 .item:nth-of-type(3), .industry-detail-s3 .item:nth-of-type(4) {

    margin-top: 0;

  }

  .industry-detail-s3 .item:nth-of-type(4n) {

    margin-right: 0;

  }

}

.industry-detail-s3 .item:before {

  content: '';

  width: 3.125vw;

  height: 3.125vw;

  max-width: 60px;

  max-height: 60px;

  background-color: #dfdee5;

  position: absolute;

  right: -4px;

  z-index: 1;

}

.industry-detail-s3 .item:nth-of-type(odd):before {

  top: -4px;

}

.industry-detail-s3 .item:nth-of-type(even):before {

  bottom: -4px;

}

.industry-detail-s3 .item .box {

  padding: 2vw 1.5vw 3.125vw;

}

.industry-detail-s3 .item span {

  display: block;

  font-size: 36px;

  line-height: 1;

  font-family: 'DINPro-Bold';

}

.industry-detail-s3 .item h3 {

  font-size: 24px;

  margin-top: 4vw;

}

.industry-detail-s3 .item h3:after {

  content: '';

  display: block;

  width: 24px;

  height: 4px;

  margin-top: 15px;

}

.industry-detail-s3 .item .para {

  font-size: 14px;

  line-height: 26px;

  margin-top: 15px;

}

.industry-detail-s3 .item .show {

  position: relative;

  background-color: #fff;

  z-index: 2;

}

.industry-detail-s3 .item .show span {

  color: #e5e5e5;

}

.industry-detail-s3 .item .show h3 {

  color: #000;

}

.industry-detail-s3 .item .show h3:after {

  background-color: #3f3480;

}

.industry-detail-s3 .item .show .para {

  color: #808080;

  height: 78px;

  overflow: hidden;

}

.industry-detail-s3 .item .hide {

  position: absolute;

  left: 0;

  right: 0;

  top: 0;

  background-color: #3f3480;

  z-index: 3;

  opacity: 0;

  visibility: hidden;

  transition: all .3s ease;

}

.industry-detail-s3 .item .hide span {

  color: #fff;

}

.industry-detail-s3 .item .hide h3 {

  color: #fff;

}

.industry-detail-s3 .item .hide h3:after {

  background-color: #fff;

}

.industry-detail-s3 .item .hide .para {

  color: #fff;

}

@media screen and (min-width: 1025px) {

  .industry-detail-s3 .item:hover {

    transform: translateY(-1vw);

  }

  .industry-detail-s3 .item:hover:before {

    background-color: #e10115;

  }

  .industry-detail-s3 .item:hover .hide {

    opacity: 1;

    visibility: visible;

  }

}



.industry-detail-s4 {

  padding: 6.25vw 0;

}

.industry-detail-s4 .items {

  padding: 2vw 20px;

  margin: 0 -20px;

}

.industry-detail-s4 .item {

  height: auto;

  background-color: #3f3480;

  padding: 3.125vw 1vw 1vw 0;

  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);

  transition: transform .3s ease;

}

.industry-detail-s4 .item .box {

  height: 100%;

  background-color: #fff;

  background-position: center bottom;

  background-repeat: no-repeat;

  background-image: url("../image/detail-img-5.jpg");

  background-size: 100% auto;

  padding: 2vw;

  border-top-right-radius: 3.125vw;

}

.industry-detail-s4 .item span {

  display: block;

  font-size: 60px;

  line-height: 1;

  color: #3f3480;

  font-family: 'DINPro-Bold';

}

.industry-detail-s4 .item h3 {

  margin-top: 6.25vw;

  font-size: 24px;

  color: #000;

  line-height: 1.3;

}

@media screen and (min-width: 1025px) {

  .industry-detail-s4 .item:hover {

    transform: translateY(-10px);

  }

}

.industry-detail-s4 .pagination {

  font-size: 0;

}

.industry-detail-s4 .pagination span {

  display: inline-block;

  vertical-align: bottom;

  width: 24px;

  height: 2px;

  background-color: #c5c2d2;

  margin-left: 10px;

  cursor: pointer;

}

.industry-detail-s4 .pagination span:nth-of-type(1) {

  margin-left: 0;

}

.industry-detail-s4 .pagination span.active {

  background-color: #3f3480;

  width: 36px;

  height: 4px;

}



.industry-detail-s5 {

  padding: 6.25vw 0;

  background-position: center;

  background-repeat: no-repeat;

  background-size: cover;

  background-image: url("../image/detail-img-6.jpg");

}

.industry-detail-s5 .items {

  margin-top: 2vw;

}

.industry-detail-s5 .item {

  margin-top: 10px;

}

.industry-detail-s5 .item:nth-of-type(1) {

  margin-top: 0;

}

.industry-detail-s5 .item .show {

  position: relative;

  padding: 1.5vw 3.125vw;

  background-color: #fff;

  cursor: pointer;

  transition: all .3s ease;

}

.industry-detail-s5 .item .show h3 {

  font-size: 20px;

  line-height: 30px;

  color: #000;

  padding: 0 46px;

  position: relative;

  transition: all .3s ease;

}

.industry-detail-s5 .item .show h3:before {

  content: '';

  width: 27px;

  height: 25px;

  background-position: center;

  background-repeat: no-repeat;

  background-size: contain;

  background-image: url("../image/icon-91.png");

  position: absolute;

  left: 0;

  top: 50%;

  margin-top: -8px;

  transition: all .3s ease;

}

.industry-detail-s5 .item .show:after {

  content: '';

  position: absolute;

  right: 3.125vw;

  top: 50%;

  margin-top: -13px;

  width: 17px;

  height: 27px;

  background-position: center;

  background-repeat: no-repeat;

  background-size: contain;

  background-image: url("../image/icon-10.png");

  transition: all .3s ease;

}

.industry-detail-s5 .item .hide {

  padding: 2vw 3.125vw;

  background-color: #fff;

  display: none;

}

.industry-detail-s5 .item .para {

  font-size: 16px;

  line-height: 2;

  color: #808080;

}

.industry-detail-s5 .item.active {

  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);

}

.industry-detail-s5 .item.active .show {

  background-color: #3f3480;

}

.industry-detail-s5 .item.active .show h3 {

  color: #fff;

  font-size: 24px;

}

.industry-detail-s5 .item.active .show h3:before {

  background-image: url("../image/icon-9-on.png");

}

.industry-detail-s5 .item.active .show:after {

  background-image: url("../image/icon-10-on.png");

  transform: rotate(90deg);

}



.detail-dection .industry-page-s3 {

  background-image: none;

}

.detail-dection .industry-page-s3 .item {

  background-color: #f0f2f4;

}

.detail-dection .industry-page-s4 {

  background-image: url("../image/detail-img-3.jpg");

}



.recruit-page-s1 {

  position: relative;

}

.recruit-page-s1 .item {

  height: calc(100vh - 220px - 7vw);

  position: relative;

}

.recruit-page-s1 .item .img-box {

  overflow: hidden;

  height: 100%;

}

.recruit-page-s1 .item img {

  width: 100%;

  height: 100%;

  object-fit: cover;

}

.recruit-page-s1 .button {

  width: 60px;

  height: 60px;

  background-position: center;

  background-repeat: no-repeat;

  background-size: contain;

  background-image: url("../image/icon-8.png");

  position: absolute;

  top: 50%;

  margin-top: -30px;

  z-index: 2;

  cursor: pointer;

  opacity: .5;

  transition: all .3s ease;

}

@media screen and (min-width: 1025px) {

  .recruit-page-s1 .button:hover {

    opacity: 1;

  }

}

.recruit-page-s1 .button-prev {

  left: 3.125vw;

  transform: rotateY(180deg);

}

.recruit-page-s1 .button-next {

  right: 3.125vw;

}

.recruit-page-s1 .pagination {

  font-size: 0;

  text-align: center;

  display: none;

  position: absolute;

  left: 0;

  right: 0;

  z-index: 3;

  bottom: 20px;

}

.recruit-page-s1 .pagination span {

  display: inline-block;

  vertical-align: bottom;

  width: 24px;

  height: 2px;

  background-color: #fff;

  margin-left: 10px;

  cursor: pointer;

}

.recruit-page-s1 .pagination span:nth-of-type(1) {

  margin-left: 0;

}

.recruit-page-s1 .pagination span.active {

  background-color: #fff;

  width: 36px;

  height: 4px;

}



.recruit-page-s2 {

  padding: 1.5vw 0;

  background-color: #eeeeee;

  font-size: 0;

}

.recruit-page-s2 .flex {

  display: flex;

  justify-content: space-between;

  align-items: center;

}

.recruit-page-s2 .ewm .img-box {

  width: 100px;

  display: inline-block;

  vertical-align: middle;

}

.recruit-page-s2 .ewm img {

  display: block;

  width: 100%;

}

.recruit-page-s2 .ewm p {

  display: inline-block;

  vertical-align: middle;

  font-size: 18px;

  color: #000;

  font-weight: bold;

  margin-left: 20px;

}

.recruit-page-s2 .link a {

  display: inline-block;

  vertical-align: top;

  position: relative;

  border-radius: 5px;

  margin-left: 30px;

  overflow: hidden;

  transition: transform .3s ease;

}

.recruit-page-s2 .link a img {

  display: block;

  width: 100%;

}

.recruit-page-s2 .link a h3 {

  font-size: 20px;

  color: #fff;

  position: absolute;

  right: 20px;

  top: 20px;

}

.recruit-page-s2 .link a .en {

  font-size: 18px;

  color: rgba(255, 255, 255, 0.2);

  position: absolute;

  left: 10px;

  bottom: 10px;

  text-transform: uppercase;

  font-weight: bold;

  font-style: italic;

  font-family: 'Arial';

}

.recruit-page-s2 .link a:nth-of-type(1) {

  margin-left: 0;

  box-shadow: 0 0 15px rgba(0, 115, 221, 0.3);

}

.recruit-page-s2 .link a:nth-of-type(2) {

  box-shadow: 0 0 15px rgba(63, 52, 128, 0.3);

}

@media screen and (min-width: 1025px) {

  .recruit-page-s2 .link a:hover {

    transform: translateY(-5px);

  }

}



.recruit-page-s3 {

  background-color: #3f3480;

  padding: 2vw 0;

  text-align: center;

}

.recruit-page-s3 span {

  display: inline-block;

  vertical-align: top;

  font-size: 14px;

  line-height: 20px;

  color: rgba(255, 255, 255, 0.3);

}

.recruit-page-s3 span:before {

  content: '';

  width: 1px;

  height: 12px;

  background-color: rgba(255, 255, 255, 0.3);

  display: inline-block;

  vertical-align: middle;

  margin: 0 15px;

}

.recruit-page-s3 span:nth-of-type(1):before {

  display: none;

}



.investor-index a.more {

  display: block;

  margin-top: 2vw;

  width: 150px;

  line-height: 3;

  font-size: 16px;

  color: #fff;

  border-radius: 24px;

  background-color: #3f3480;

  text-align: center;

  transition: all .3s ease;

}

@media screen and (min-width: 1025px) {

  .investor-index a.more:hover {

    transform: translateY(-5px);

    box-shadow: 0 10px 30px rgba(63, 52, 128, 0.3);

  }

}




.investor-index-s1 {

  padding: 6.25vw 0;

  font-size: 0;

}

.investor-index-s1 .cont {

  margin-top: 2vw;

}

.investor-index-s1 .img-box {

  display: inline-block;

  vertical-align: middle;

  width: 50%;

  position: relative;

}

.investor-index-s1 .img-box:after {

  content: '';

  position: absolute;

  top: 6px;

  left: 6px;

  width: 100%;

  height: 100%;

  background-position: center;

  background-repeat: no-repeat;

  background-size: contain;

  background-image: url("../image/img-2.png");

}

.investor-index-s1 .img-box .img {

  overflow: hidden;

}

.investor-index-s1 .img-box img {

  display: block;

  width: 100%;

  transition: transform .6s ease;

}

@media screen and (min-width: 1025px) {

  .investor-index-s1 .img-box:hover img {

    transform: scale(1.1);

  }

}

.investor-index-s1 .txt-box {

  display: inline-block;

  vertical-align: middle;

  width: 50%;

  padding-left: 2vw;

}

.investor-index-s1 .txt-box a {

  display: flex;

  font-size: 18px;

  line-height: 80px;

  color: #000000;

  border-bottom: 1px solid #e6e6e6;

  transition: color .3s ease;

}

@media screen and (min-width: 1025px) {

  .investor-index-s1 .txt-box a:hover {

    color: #3f3480;

  }

}

.investor-index-s1 .txt-box h3 {

  display: inline-block;

  vertical-align: top;

  width: calc(100% - 140px);

  white-space: nowrap;

  overflow: hidden;

  text-overflow: ellipsis;

}

.investor-index-s1 .txt-box span {

  display: inline-block;

  vertical-align: top;

  width: 140px;

  text-align: right;

  font-family: 'DINPro-Light';

}



.investor-index-s2 {

  padding: 11.5vw 0;

  background-position: center;

  background-repeat: no-repeat;

  background-size: cover;

  background-attachment: fixed;

  background-image: url("../image/img-32.jpg");

}

.investor-index-s2 a.more {

  margin-top: 6.25vw;

}



.investor-index-s3 {

  padding: 6.25vw 0;

}

.investor-index-s3 .cont {

  position: relative;

}

.investor-index-s3 .items {

  padding: 2vw;

  margin: 0 -2vw;

}

.investor-index-s3 .item {

  background-color: #3f3480;

  transition: transform .3s ease;

  position: relative;

  box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);

}

.investor-index-s3 .item:after {

  content: '';

  position: absolute;

  bottom: 0;

  left: 0;

  right: 0;

  height: 2px;

  background-color: #3f3480;

  z-index: 2;

}

.investor-index-s3 .item a {

  display: block;

}

.investor-index-s3 .item .box {

  background-position: center;

  background-repeat: no-repeat;

  background-size: cover;

  padding: 3.125vw 2vw;

  background-image: url("../image/img-4.jpg");

  transition: all .3s ease;

}

.investor-index-s3 .item .date {

  font-size: 20px;

  color: #3f3480;

  font-family: 'DINPro-Light';

  transition: color .3s ease;

}

.investor-index-s3 .item .date span {

  display: block;

  font-size: 48px;

  line-height: 1;

  color: #3f3480;

  margin-top: 10px;

  font-family: 'DINPro-Bold';

  transition: color .3s ease;

}

.investor-index-s3 .item h3 {

  font-size: 24px;

  color: #000000;

  line-height: 36px;

  height: 72px;

  overflow: hidden;

  margin-top: 6.25vw;

  transition: color .3s ease;

}

@media screen and (min-width: 1025px) {

  .investor-index-s3 .item:hover {

    transform: translateY(-5px);

  }

  .investor-index-s3 .item:hover .box {

    background-image: url("../image/img-4-on.jpg");

  }

  .investor-index-s3 .item:hover .date {

    color: #fff;

  }

  .investor-index-s3 .item:hover .date span {

    color: #fff;

  }

  .investor-index-s3 .item:hover h3 {

    color: #fff;

  }

}

.investor-index-s3 .pagination {

  position: absolute;

  right: 0;

  bottom: -2vw;

  font-size: 0;

}

.investor-index-s3 .pagination span {

  display: inline-block;

  vertical-align: bottom;

  width: 24px;

  height: 2px;

  background-color: #c5c2d2;

  margin-left: 10px;

  cursor: pointer;

}

.investor-index-s3 .pagination span:nth-of-type(1) {

  margin-left: 0;

}

.investor-index-s3 .pagination span.active {

  background-color: #3f3480;

  width: 36px;

  height: 4px;

}



.investor-index-s4 {

  font-size: 0;

  padding: 6.25vw 0;

  background-position: center;

  background-repeat: no-repeat;

  background-size: cover;

  background-attachment: fixed;

  background-image: url("../image/img-5.jpg");

}

.investor-index-s4 .items {

  margin-top: 2vw;

  font-size: 0;

}

.investor-index-s4 .item {

  display: inline-block;

  vertical-align: top;

  width: calc(50% - 13px);

  margin-top: 24px;

  margin-right: 24px;

  background-color: #fff;

  position: relative;

  transition: transform .3s ease;

}

.investor-index-s4 .item:after {

  content: '';

  width: 36px;

  height: 36px;

  background-position: center;

  background-repeat: no-repeat;

  background-size: contain;

  background-image: url("../image/icon-17.png");

  position: absolute;

  right: 2vw;

  top: 50%;

  transform: translateY(-50%);

}

.investor-index-s4 .item a {

  display: block;

  padding: 15px;

}

.investor-index-s4 .item .date {

  width: 150px;

  height: 150px;

  display: inline-block;

  vertical-align: middle;

  background-color: #3f3480;

  color: #fff;

  text-align: center;

}

.investor-index-s4 .item .date b, .investor-index-s4 .item .date span {

  display: block;

  line-height: 1;

}

.investor-index-s4 .item .date b {

  font-size: 80px;

  font-family: 'DINPro-Bold';

}

.investor-index-s4 .item .date span {

  font-size: 24px;

  font-family: 'DINPro-Light';

  margin-top: 10px;

}

.investor-index-s4 .item h3 {

  width: calc(100% - 200px);

  display: inline-block;

  vertical-align: middle;

  font-size: 24px;

  color: #3f3480;

  padding-left: 2vw;

  white-space: nowrap;

  overflow: hidden;

  text-overflow: ellipsis;

}

.investor-index-s4 .item.zip:after {

  background-image: url("../image/icon-1-1.png");

}

@media screen and (min-width: 769px) {

  .investor-index-s4 .item:nth-of-type(1), .investor-index-s4 .item:nth-of-type(2) {

    margin-top: 0;

  }

  .investor-index-s4 .item:nth-of-type(even) {

    margin-right: 0;

  }

}

@media screen and (min-width: 1025px) {

  .investor-index-s4 .item:hover {

    transform: translateY(-5px);

  }

}



.investor-index-s5 {

  padding: 6.25vw 0;

  background-position: center;

  background-repeat: no-repeat;

  background-size: cover;

  background-attachment: fixed;

  background-image: url("../image/img-61.jpg");

  font-size: 0;

}

.investor-index-s5 .items {

  margin-top: 2vw;

  display: flex;

  flex-wrap: wrap;

}

.investor-index-s5 .item {

  width: calc(50% - 12px);

  background-color: #fff;

  margin-top: 24px;

  transition: transform .3s ease;

}

.investor-index-s5 .item a {

  display: block;

  padding: 1.5vw 2vw;

}

.investor-index-s5 .item a:before {

  content: '';

  width: 36px;

  height: 36px;

  background-position: center;

  background-repeat: no-repeat;

  background-size: contain;

  display: inline-block;

  vertical-align: middle;

  background-image: url("../image/icon-17.png");

}

.investor-index-s5 .item .txt {

  display: inline-block;

  vertical-align: middle;

  width: calc(100% - 40px - 1.5vw);

  margin-left: 1.5vw;

  padding-left: 1.5vw;

  position: relative;

}

.investor-index-s5 .item .txt:before {

  content: '';

  width: 1px;

  height: 60px;

  background-color: #e6e6e6;

  position: absolute;

  left: 0;

  top: 50%;

  transform: translateY(-50%);


}

.investor-index-s5 .item .date {

  font-size: 18px;

  color: #808080;

  line-height: 1;

}

.investor-index-s5 .item h3 {

  font-size: 18px;

  line-height: 30px;

  color: #000;

  margin-top: 10px;

}

@media screen and (min-width: 769px) {

  .investor-index-s5 .item:nth-of-type(1), .investor-index-s5 .item:nth-of-type(2) {

    margin-top: 0;

  }

  .investor-index-s5 .item:nth-of-type(even) {

    margin-left: 24px;

  }

}

@media screen and (min-width: 1025px) {

  .investor-index-s5 .item:hover {

    transform: translateY(-5px);

  }

}



.investor-list-s1 {

  padding: 6.25vw 0;

  font-size: 0;

}

.investor-list-s1 .c-items-1 {

  margin-bottom: 2vw;

}



.investor-huibao-s1 {

  padding: 6.25vw 0;

}

.investor-huibao-s1 table {

  width: 100%;

  border: 2px solid #fff;

  margin-top: 2vw;

}

.investor-huibao-s1 table th {

  background-color: #3f3480;

  font-size: 24px;

  color: #fff;

  font-weight: normal;

  padding: 1.5vw 20px;

}

.investor-huibao-s1 table th span {

  font-size: 16px;

}

.investor-huibao-s1 table td {

  font-size: 20px;

  color: #000;

  text-align: center;

  padding: 1.5vw;

}

.investor-huibao-s1 table td p {

  font-size: 14px;

  line-height: 24px;

}

.investor-huibao-s1 table td:nth-of-type(odd) {

  background-color: #f7f7f7;

}

.investor-huibao-s1 table td:nth-of-type(even) {

  background-color: #ededed;

}



.about-chengyuan-s1 {

  font-size: 0;

  padding: 6.25vw 0;

}

.about-chengyuan-s1 .items {

  margin-top: 2vw;

}

.about-chengyuan-s1 .item {

  position: relative;

  margin-top: 2vw;

}

.about-chengyuan-s1 .item:nth-of-type(1) {

  margin-top: 0;

}

.about-chengyuan-s1 .item .img-box {

  overflow: hidden;

}

.about-chengyuan-s1 .item img {

  display: block;

  width: 100%;

  transition: transform .6s ease;

}

.about-chengyuan-s1 .item .show {

  position: absolute;

  left: 0;

  right: 0;

  bottom: 0;

  padding: 3.125vw 6.25vw;

  background-image: linear-gradient(180deg, rgba(63, 52, 128, 0), #3f3480);

  font-size: 24px;

  color: #fff;

  z-index: 2;

  transition: all .3s ease;

}

.about-chengyuan-s1 .item .show:before {

  content: '';

  display: inline-block;

  vertical-align: top;

  width: 4px;

  height: 24px;

  background-color: #fff;

  margin: 4px 20px 0 0;

}

.about-chengyuan-s1 .item .hide {

  position: absolute;

  top: 0;

  left: 0;

  right: 0;

  bottom: 0;

  z-index: 3;

  padding: 3.125vw 6.25vw;

  background-color: rgba(63, 52, 128, 0.9);

  opacity: 0;

  visibility: hidden;

  transition: all .3s ease;

}

.about-chengyuan-s1 .item p {

  font-size: 16px;

  line-height: 2;

  color: #fff;

}

.about-chengyuan-s1 .item .para {

  margin: 1.5vw 0;

  height: 160px;

  overflow: auto;

  padding-right: 20px;

}

.about-chengyuan-s1 .item .info {

  position: relative;

  padding-right: 300px;

}

.about-chengyuan-s1 .item a {

  position: absolute;

  right: 0;

  top: 0;

  font-size: 16px;

  color: #3f3480;

  line-height: 48px;

  padding: 0 30px;

  background-color: #fff;

}

.about-chengyuan-s1 .item a:after {

  content: '';

  width: 15px;

  height: 15px;

  background-position: center;

  background-repeat: no-repeat;

  background-size: contain;

  background-image: url("../image/icon-18.png");

  display: inline-block;

  vertical-align: middle;

  margin: -2px 0 0 2vw;

}

@media screen and (min-width: 769px) {

  .about-chengyuan-s1 .item:hover img {

    transform: scale(1.1);

  }

  .about-chengyuan-s1 .item:hover .show {

    opacity: 0;

    visibility: hidden;

  }

  .about-chengyuan-s1 .item:hover .hide {

    opacity: 1;

    visibility: visible;

  }

}



.about-dangjian .c-banner:after,

.about-index .c-banner:after,

.about-intro .c-banner:after {

  display: none;

}



.about-dangjian-s1 {

  padding: 6.25vw 0;

  font-size: 0;

}

.about-dangjian-s1 .c-items-1 {

  margin: 2vw 0;

}



.about-dangjian-s2 {

  padding: 6.25vw 0;

  font-size: 0;

}

.about-dangjian-s2 .items {

  margin: 2vw 0;

}

.about-dangjian-s2 .item {

  position: relative;

  background-color: #fff;

  border: 1px solid #e5e5e5;

  margin-top: 10px;

  box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);

  transition: all .3s ease;

}

.about-dangjian-s2 .item:nth-of-type(1) {

  margin-top: 0;

}

.about-dangjian-s2 .item:before {

  content: '';

  position: absolute;

  top: 0;

  left: 0;

  right: 0;

  bottom: 0;

  background-color: #3f3480;

  background-position: center bottom;

  background-repeat: no-repeat;

  background-image: url("../image/img-22.jpg");

  background-size: 100% auto;

  opacity: 0;

  z-index: 1;

  transition: all .3s ease;

}

.about-dangjian-s2 .item a {

  padding: 1.5vw 3.125vw;

  display: flex;

  align-items: center;

  position: relative;

  z-index: 2;

}

.about-dangjian-s2 .item h3 {

  width: calc(100% - 160px);

  font-size: 24px;

  color: #000;

  white-space: nowrap;

  overflow: hidden;

  text-overflow: ellipsis;

  transition: color .3s ease;

}

.about-dangjian-s2 .item .date {

  width: 160px;

  font-size: 18px;

  color: #808080;

  font-family: 'DINPro-Light';

  text-align: right;

  transition: color .3s ease;

}

.about-dangjian-s2 .item .date:before {

  content: '';

  width: 18px;

  height: 18px;

  display: inline-block;

  vertical-align: middle;

  margin: -2px 10px 0 0;

  background-position: center;

  background-repeat: no-repeat;

  background-size: contain;

  background-image: url("../image/icon-26.png");

  transition: all .3s ease;

}

@media screen and (min-width: 1025px) {

  .about-dangjian-s2 .item:hover {

    box-shadow: 0 20px 40px rgba(63, 52, 128, 0.3);

  }

  .about-dangjian-s2 .item:hover:before {

    opacity: 1;

  }

  .about-dangjian-s2 .item:hover .date {

    color: #fff;

  }

  .about-dangjian-s2 .item:hover .date:before {

    background-image: url("../image/icon-34.png");

  }

  .about-dangjian-s2 .item:hover h3 {

    color: #fff;

  }

}



.about-dangjian-s3 {

  padding: 6.25vw 0;

}

.about-dangjian-s3 .cont {

  margin-top: 2vw;

  padding: 6.25vw;

  background-position: center;

  background-repeat: no-repeat;

  background-size: cover;

  background-image: url("../image/img-33.jpg");

  border: 1px solid #e0e0e0;

}

.about-dangjian-s3 form {

  margin-top: 2vw;

  display: flex;

  flex-wrap: wrap;

  justify-content: space-between;

}

.about-dangjian-s3 input, .about-dangjian-s3 textarea {

  font-size: 16px;

  color: #cccccc;

  background-color: #fff;

  border: 1px solid #fff;

  margin-bottom: 24px;

  transition: all .3s ease;

}

.about-dangjian-s3 input:focus, .about-dangjian-s3 textarea:focus {

  border-color: #3f3480;

  color: #3f3480;

}

.about-dangjian-s3 input {

  width: calc(50% - 12px);

  height: 60px;

  padding: 0 20px;

}

.about-dangjian-s3 textarea {

  width: 100%;

  height: 200px;

  padding: 15px 20px;

}

.about-dangjian-s3 button {

  width: 200px;

  height: 60px;

  background-color: #3f3480;

  font-size: 16px;

  color: #fff;

  cursor: pointer;

  transition: all .3s ease;

}

@media screen and (min-width: 1025px) {

  .about-dangjian-s3 button:hover {

    transform: translateY(-5px);

    box-shadow: 0 10px 30px rgba(63, 52, 128, 0.3);

  }

}



.about-qualification-s1 {

  padding: 6.25vw 0;

}

.about-qualification-s1 .items {

  margin-top: 2vw;

  font-size: 0;

  display: flex;

  justify-content: space-between;

  flex-wrap: wrap;

}

.about-qualification-s1 .item {


  width: calc((100% - 72px) / 4);

  margin-top: 2vw;

  transition: transform .3s ease;

}

@media screen and (min-width: 769px) {

  .about-qualification-s1 .item:nth-of-type(1), .about-qualification-s1 .item:nth-of-type(2), .about-qualification-s1 .item:nth-of-type(3), .about-qualification-s1 .item:nth-of-type(4) {

    margin-top: 0;

  }

}

.about-qualification-s1 .item .img-box {

  height: 220px;

  text-align: center;

  padding-top: 20px;

  background-position: center;

  background-repeat: no-repeat;

  background-size: cover;

  background-image: url("../image/img-8.jpg");

}

.about-qualification-s1 .item .img-box img {

  width: auto;

  max-width: 90%;

  max-height: 90%;

}

.about-qualification-s1 .item h3 {

  font-size: 16px;

  line-height: 24px;

  text-align: center;

  color: #000;

  padding: 20px 0;

}

@media screen and (min-width: 1025px) {

  .about-qualification-s1 .item:hover {

    transform: translateY(-10px);

  }

}



.about-qualification-s2 {

  padding-bottom: 6.25vw;

}

.about-qualification-s2 .items {

  border-top: 4px solid #3f3480;

  padding-top: 3.125vw;

  font-size: 0;

  display: flex;

  justify-content: space-between;

  flex-wrap: wrap;

}

.about-qualification-s2 .item {

  width: calc((100% - 6.25vw) / 2);

  font-size: 16px;

  color: #000;

  margin-top: 20px;

  padding-left: 30px;

  background-position: left center;

  background-repeat: no-repeat;

  background-image: url("../image/icon-42.png");

}

@media screen and (min-width: 769px) {

  .about-qualification-s2 .item:nth-of-type(1), .about-qualification-s2 .item:nth-of-type(2) {

    margin-top: 0;

  }

}



.about-honor-s1 {

  padding: 6.25vw 0;

  background-position: center;

  background-repeat: no-repeat;

  background-size: cover;

  background-image: url("../image/detail-img-7.jpg");

  background-attachment: fixed;

}

.about-honor-s1 .tree {

  margin-top: 6.25vw;

  position: relative;

}

.about-honor-s1 .tree:before, .about-honor-s1 .tree .line {

  width: 4px;

  position: absolute;

  top: 30px;

  left: 0;

}

.about-honor-s1 .tree:before {

  content: '';

  bottom: 0;

  background-color: #e6e6e6;

  z-index: 1;

}

.about-honor-s1 .tree .line {

  background-color: #3f3480;

  z-index: 2;

}

.about-honor-s1 ul {

  position: relative;

  z-index: 3;

}

.about-honor-s1 li {

  padding-left: 40px;

  margin-top: 5vw;

}

.about-honor-s1 li:nth-of-type(1) {

  margin-top: 0;

}

.about-honor-s1 li .year {

  font-size: 60px;

  line-height: 1;

  color: #cccccc;

  font-family: 'DINPro-Bold';

  position: relative;

  transition: color .3s ease;

}

.about-honor-s1 li .year:before {

  content: '';

  width: 24px;

  height: 24px;

  background-position: center;

  background-repeat: no-repeat;

  background-size: contain;

  background-image: url("../image/icon-11.png");

  transition: all .3s ease;

  position: absolute;

  left: -50px;

  top: 50%;

  margin-top: -12px;

}

.about-honor-s1 li .detail {

  margin-top: 3.125vw;

}

.about-honor-s1 li .box {

  margin-top: 20px;

  padding-left: 30px;

  position: relative;

}

.about-honor-s1 li .box:nth-of-type(1) {

  margin-top: 0;

}

.about-honor-s1 li .box:before {

  content: '';

  width: 14px;

  height: 14px;

  background-position: center;

  background-repeat: no-repeat;

  background-size: contain;

  background-image: url("../image/icon-12.png");

  position: absolute;

  left: 0;

  top: 5px;

}

.about-honor-s1 li .para {

  font-size: 16px;

  line-height: 1.5;

  color: #000000;

}

.about-honor-s1 li .img-box {

  margin-top: 20px;

  width: 40%;

  max-width: 480px;

}

.about-honor-s1 li .img-box img {

  display: block;

  width: 100%;

}

.about-honor-s1 li.active .year {

  color: #3f3480;

}

.about-honor-s1 li.active .year:before {

  background-image: url("../image/icon-11-on.png");

}



.about-index a.more {

  display: block;

  width: 150px;

  font-size: 16px;

  line-height: 44px;

  color: #fff;

  text-align: center;

  border: 2px solid transparent;

  background-color: #3f3480;

  border-radius: 24px;

  transition: all .3s ease;

}

@media screen and (min-width: 1025px) {

  .about-index a.more:hover {

    transform: translateY(-5px);

    box-shadow: 0 10px 30px rgba(63, 52, 128, 0.3);

  }

}



.about-index-s1 {

  padding: 6.25vw 0 0;

  font-size: 0;

}

.about-index-s1 .txt-box {

  width: 50%;

  display: inline-block;

  vertical-align: middle;

  padding-right: 3.125vw;

}

.about-index-s1 .para {

  font-size: 18px;

  line-height: 2;

  color: #000;

  margin: 2vw 0;

}

.about-index-s1 .img-box {

  width: 50%;

  display: inline-block;

  vertical-align: middle;

  overflow: hidden;

}

.about-index-s1 .img-box img {

  display: block;

  width: 100%;

  transition: transform .6s ease;

}

.about-index-s1 .img-box:hover img {

  transform: scale(1.1);

}

.about-index-s1 .bot-block {

  display: flex;

  justify-content: space-between;

}

.about-index-s1 .item {

  padding: 6.25vw 0;

  position: relative;

}

.about-index-s1 .item:before {

  content: '';

  position: absolute;

  top: 50%;

  left: 50%;

  transform: translate(-50%, -50%);

  width: 15vw;

  height: 15vw;

  max-width: 280px;

  max-height: 280px;

  transform: translate(-50%, -50%);

  filter: grayscale(100%);

  background-position: center;

  background-repeat: no-repeat;

  background-size: contain;

  background-image: url("../image/img-5.gif");

  opacity: 0;

  transition: all .3s ease;

  z-index: 1;

}

.about-index-s1 .item .box {

  position: relative;

  z-index: 2;

}

.about-index-s1 .item span, .about-index-s1 .item em, .about-index-s1 .item i {

  line-height: 1;

  color: #000;

}

.about-index-s1 .item span, .about-index-s1 .item em {

  transition: all .3s ease;

}

.about-index-s1 .item em, .about-index-s1 .item i {

  font-style: normal;

}

.about-index-s1 .item span {

  font-size: 80px;

  color: #000;

  font-family: 'DINPro-Medium';

}

.about-index-s1 .item em {

  font-size: 48px;

  font-family: 'DINPro-Medium';

}

.about-index-s1 .item i {

  font-size: 18px;

  display: inline-block;

  vertical-align: top;

  margin-top: 10px;

}

.about-index-s1 .item p {

  font-size: 18px;

  color: #000;

  margin-top: 10px;

}

@media screen and (min-width: 1025px) {

  .about-index-s1 .item:hover:before {

    opacity: .5;

  }

  .about-index-s1 .item:hover span, .about-index-s1 .item:hover em {

    color: #3f3480;

    text-shadow: 0 20px 10px rgba(63, 52, 128, 0.3);

  }

}



.about-index-s2 {

  padding: 6.25vw 0;

  background-position: center;

  background-repeat: no-repeat;

  background-size: cover;

  background-image: url("../image/img-62.jpg");

}

.about-index-s2 .cont {

  position: relative;

}

.about-index-s2 .items {

  padding: 2vw 0;

}

.about-index-s2 .item {

  height: auto;

  background-color: #fff;

  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);

}

.about-index-s2 .item .img-box {

  height: 16.6vw;

  max-height: 320px;

  text-align: center;

  padding-top: 20px;

  border-bottom: 1px solid #e6e6e6;

}

.about-index-s2 .item .img-box img {

  width: auto;

  max-width: 80%;

  max-height: 80%;

}

.about-index-s2 .item h3 {

  text-align: center;

  font-size: 18px;

  color: #000;

  line-height: 24px;

  padding: 20px;

}

.about-index-s2 a.more {

  margin: 0 auto;

}

.about-index-s2 .button {

  width: 60px;

  height: 60px;

  background-position: center;


  background-repeat: no-repeat;

  background-size: contain;

  background-image: url("../image/icon-32.png");

  position: absolute;

  top: 50%;

  margin-top: -30px;

  cursor: pointer;

  z-index: 2;

  opacity: .5;

  transition: all .3s ease;

}

@media screen and (min-width: 1025px) {

  .about-index-s2 .button:hover {

    opacity: 1;

  }

}

.about-index-s2 .button-prev {

  left: 3.125vw;

  transform: rotateY(180deg);

}

.about-index-s2 .button-next {

  right: 3.125vw;

}

.about-index-s2 .pagination {

  margin-bottom: 2vw;

  font-size: 0;

  text-align: center;

}

.about-index-s2 .pagination span {

  display: inline-block;

  vertical-align: bottom;

  width: 24px;

  height: 2px;

  background-color: #cac8d7;

  margin-left: 10px;

  cursor: pointer;

}

.about-index-s2 .pagination span:nth-of-type(1) {

  margin-left: 0;

}

.about-index-s2 .pagination span.active {

  background-color: #3f3480;

  width: 36px;

  height: 4px;

}



.about-index-s3 {

  padding: 6.25vw 0;

}

.about-index-s3 .items {

  padding: 2vw 0;

}

.about-index-s3 .item {

  background-color: #fff;

  border: 1px solid #e6e6e6;

  transition: transform .3s ease;

}

.about-index-s3 .item .img-box {

  overflow: hidden;

}

.about-index-s3 .item img {

  display: block;

  width: 100%;

  transition: transform .6s ease;

}

.about-index-s3 .item .txt-box {

  padding: 2vw;

  position: relative;

}

.about-index-s3 .item .date {

  position: absolute;

  left: 2vw;

  bottom: calc(100% - 10px);

  background-color: #3f3480;

  text-align: center;

  padding: 20px;

  font-size: 16px;

  font-family: 'DINPro-Light';

  color: #fff;

}

.about-index-s3 .item .date span {

  display: block;

  font-size: 36px;

  line-height: 1;

  font-family: 'DINPro-Regular';

}

.about-index-s3 .item h3 {

  font-size: 22px;

  color: #000;

  line-height: 1.5;

  height: 66px;

  overflow: hidden;

}

.about-index-s3 .item p {

  font-size: 16px;

  line-height: 2;

  color: #808080;

  height: 64px;

  overflow: hidden;

  margin-top: 10px;

}

@media screen and (min-width: 1025px) {

  .about-index-s3 .item:hover {

    transform: translateY(-10px);

  }

  .about-index-s3 .item:hover img {

    transform: scale(1.1);

  }

}

.about-index-s3 a.more {

  margin: 0 auto;

}

.about-index-s3 .pagination {

  margin-bottom: 2vw;

  font-size: 0;

  text-align: center;

}

.about-index-s3 .pagination span {

  display: inline-block;

  vertical-align: bottom;

  width: 24px;

  height: 2px;

  background-color: #cac8d7;

  margin-left: 10px;

  cursor: pointer;

}

.about-index-s3 .pagination span:nth-of-type(1) {

  margin-left: 0;

}

.about-index-s3 .pagination span.active {

  background-color: #3f3480;

  width: 36px;

  height: 4px;

}



.about-index-s4 {

  padding: 6.25vw 0;

  background-position: center;

  background-repeat: no-repeat;

  background-size: cover;

  background-image: url("../image/img-10.jpg");

  background-attachment: fixed;

}

.about-index-s4 .cont {

  position: relative;

}

.about-index-s4 .items {

  padding: 2vw 0;

}

.about-index-s4 .item {

  position: relative;

  transition: transform .3s ease, box-shadow .3s ease;

  z-index: 1;

}

.about-index-s4 .item .img-box {

  position: relative;

  overflow: hidden;

}

.about-index-s4 .item img {

  display: block;

  width: 100%;

  transition: all .3s ease;

}

.about-index-s4 .item img.hide {

  position: absolute;

  top: 0;

  left: 0;

  opacity: 0;

}

.about-index-s4 .item span {

  position: absolute;

  left: 0;

  right: 0;

  bottom: 2vw;

  text-align: center;

  font-size: 24px;

  line-height: 1;

  color: #fff;

  font-family: 'DINPro-Bold';

  opacity: 0;

  transition: all .3s ease;

  z-index: 2;

}

.about-index-s4 .item h3 {

  position: absolute;

  top: 50%;

  left: 0;

  right: 0;

  transform: translateY(-50%);

  font-size: 24px;

  line-height: 1.5;

  color: #000;

  text-align: center;

  padding: 0 2vw;

  transition: color .3s ease;

  z-index: 2;

}

@media screen and (min-width: 1025px) {

  .about-index-s4 .item:hover {

    transform: translateY(-10px);

    box-shadow: 0 10px 30px rgba(63, 52, 128, 0.5);

    z-index: 2;

  }

  .about-index-s4 .item:hover img.show {

    opacity: 0;

  }

  .about-index-s4 .item:hover img.hide {

    opacity: 1;

  }

  .about-index-s4 .item:hover span {

    opacity: 1;

  }

  .about-index-s4 .item:hover h3 {

    color: #fff;

  }

}

.about-index-s4 .button {

  width: 60px;

  height: 60px;

  background-position: center;

  background-repeat: no-repeat;

  background-size: contain;

  background-image: url("../image/icon-53.png");

  position: absolute;

  top: 50%;

  margin-top: -30px;

  cursor: pointer;

  z-index: 2;

  transition: all .3s ease;

}

@media screen and (min-width: 1025px) {

  .about-index-s4 .button:hover {

    background-image: url("../image/icon-62.png");

  }

}

.about-index-s4 .button-prev {

  left: 3.125vw;

  transform: rotateY(180deg);

}

.about-index-s4 .button-next {

  right: 3.125vw;

}

.about-index-s4 .pagination {

  margin-bottom: 2vw;

  font-size: 0;

  text-align: center;

}

.about-index-s4 .pagination span {

  display: inline-block;

  vertical-align: bottom;

  width: 24px;

  height: 2px;

  background-color: #fff;

  margin-left: 10px;

  cursor: pointer;

}

.about-index-s4 .pagination span:nth-of-type(1) {

  margin-left: 0;

}

.about-index-s4 .pagination span.active {

  background-color: #fff;

  width: 36px;

  height: 4px;

}

.about-index-s4 a.more {

  margin: 0 auto;

  background-color: transparent;

  border-color: #fff;

}



.about-intro-s1 {

  padding: 6.25vw 0;

}

.about-intro-s1 .para {

  font-size: 18px;

  line-height: 2;

  color: #000000;

  margin: 2vw 0;

}

.about-intro-s1 .video-box {

  display: flex;

  justify-content: space-between;

}

.about-intro-s1 .item {

  width: calc(50% - 12px);

  position: relative;

  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);

  border-radius: 3px;

  overflow: hidden;

  transition: all .3s ease;

}

.about-intro-s1 .item .img-box {

  overflow: hidden;

}

.about-intro-s1 .item img {

  display: block;

  width: 100%;

  transition: transform .6s ease;

}

.about-intro-s1 .item .txt-box {

  position: absolute;

  top: 0;

  left: 0;

  right: 0;

  bottom: 0;

  background-color: rgba(0, 0, 0, 0.5);

  text-align: center;

  transition: all .3s ease;

}

.about-intro-s1 .item a {

  display: inline-block;

  font-size: 20px;

  color: #fff;

}

.about-intro-s1 .item a:before {

  content: '';

  width: 72px;

  height: 72px;

  background-position: center;

  background-repeat: no-repeat;

  background-size: contain;

  background-image: url("../image/icon-72.png");

  display: block;

  margin: 0 auto 20px;

}

@media screen and (min-width: 1025px) {

  .about-intro-s1 .item:hover {

    transform: translateY(-10px);

    box-shadow: 0 20px 40px rgba(63, 52, 128, 0.3);

  }

  .about-intro-s1 .item:hover .txt-box {

    background-color: rgba(63, 52, 128, 0.95);

  }

}



.about-intro-s2 {

  font-size: 0;

}

.about-intro-s2 .bot-block {

  margin-top: 2vw;

  background-position: center;

  background-repeat: no-repeat;

  background-size: cover;

  background-image: url("../image/img-13.jpg");

  background-attachment: fixed;

}

.about-intro-s2 .item {

  position: relative;

  display: inline-block;

  vertical-align: top;

  width: 16.66%;

  height: 720px;

  border-right: 1px solid rgba(255, 255, 255, 0.3);

  transition: width .3s ease;

  cursor: pointer;

}

.about-intro-s2 .item:last-of-type {

  border-right: 1px solid rgba(255, 255, 255, 0.3);

}

.about-intro-s2 .item.active {

  width: 33.36%;

}

.about-intro-s2 .item:nth-of-type(1) i {

  background-image: url("../image/icon-9-1.png");

}

.about-intro-s2 .item:nth-of-type(2) i {

  background-image: url("../image/icon-9-4.png");

}

.about-intro-s2 .item:nth-of-type(3) i {

  background-image: url("../image/icon-9-3.png");

}

.about-intro-s2 .item:nth-of-type(4) i {

  background-image: url("../image/icon-9-2.png");

}

.about-intro-s2 .item:nth-of-type(5) i {

  background-image: url("../image/icon-9-5.png");

}

.about-intro-s2 .item i {

  display: block;

  background-repeat: no-repeat;

  background-size: contain;

}

.about-intro-s2 .item h3 {

  font-size: 32px;

  color: #fff;

}

.about-intro-s2 .item .show {

  padding: 0 2vw;

  height: 100%;

  transition: all .3s ease;

}

.about-intro-s2 .item .show i {

  height: 3.125vw;

  max-height: 60px;

  opacity: .2;

  background-position: center;

}

.about-intro-s2 .item .show h3 {

  text-align: center;

  margin-top: 3.125vw;

}

.about-intro-s2 .item .hide {

  padding: 0 3.125vw;

  height: 100%;

  position: absolute;

  top: 0;

  left: 0;

  right: 0;

  opacity: 0;

  visibility: hidden;

}

.about-intro-s2 .item .hide i {

  height: 4.8vw;

  width: 100px;

  max-height: 90px;

  background-position: left center;

}

.about-intro-s2 .item .hide h3 {

  margin-top: 6.25vw;

}

.about-intro-s2 .item .hide p {

  font-size: 18px;

  line-height: 2;

  color: #fff;

  margin-top: 20px;

}

.about-intro-s2 .item.active .show {

  opacity: 0;

}

.about-intro-s2 .item.active .hide {

  opacity: 1;

  visibility: visible;

  transition: all .3s ease;

  transition-delay: .3s;

}



.about-intro-s3 {

  font-size: 0;

  padding: 6.25vw 0;

  background-position: center;

  background-repeat: no-repeat;

  background-size: cover;

  background-image: url("../image/img-15.jpg");

}

.about-intro-s3 .cont {

  margin-top: 2vw;

  background-color: #fff;

  position: relative;

  padding: 4vw;

}

.about-intro-s3 .year-box {

  width: 320px;

  position: absolute;

  right: 4vw;

  top: -4vw;

  bottom: -4vw;

  padding: 80px 0;

  background-color: #3f3480;

  background-position: center;

  background-repeat: no-repeat;

  background-size: cover;

  background-image: url("../image/img-16.jpg");

  box-shadow: 0 0 2vw rgba(63, 52, 128, 0.3);

}

.about-intro-s3 .items {

  height: 100%;

}

.about-intro-s3 .item {

  cursor: pointer;

}

.about-intro-s3 .item h3 {

  text-align: center;

  font-size: 20px;

  color: #fff;

  font-family: 'DINPro-Medium';

  opacity: .2;

  transition: all .3s ease;

}

.about-intro-s3 .item.active h3 {

  opacity: 1;

  font-size: 32px;

}

.about-intro-s3 .button {

  width: 27px;

  height: 17px;

  background-position: center;

  background-repeat: no-repeat;

  background-size: contain;

  background-image: url("../image/icon-101.png");

  position: absolute;

  left: 0;

  right: 0;

  margin: 0 auto;

  opacity: .2;

  transition: all .3s ease;

  cursor: pointer;

}

@media screen and (min-width: 769px) {

  .about-intro-s3 .button:hover {

    opacity: 1;

  }

}

.about-intro-s3 .button-prev {

  top: 40px;

}

.about-intro-s3 .button-next {

  bottom: 40px;

  transform: rotateX(180deg);

}

.about-intro-s3 .child-box {

  width: calc(100% - 320px);

  padding-right: 3.125vw;

}

.about-intro-s3 .child {

  display: none;

}

.about-intro-s3 .child .left-box,

.about-intro-s3 .child .right-box {

  opacity: 0;

  animation: o-upfade-top 0.7s cubic-bezier(0.4, 0, 0.2, 1) forwards;

}

.about-intro-s3 .child .left-box {

  width: 30%;

  display: inline-block;

  vertical-align: top;

  animation-delay: .1s;

}

.about-intro-s3 .child .left-box .year {

  font-size: 72px;

  color: #3f3480;

  font-family: 'DINPro-Bold';

  text-shadow: 0 20px 15px rgba(63, 52, 128, 0.3);

}

.about-intro-s3 .child .left-box p {

  font-size: 16px;

  line-height: 24px;

  color: #cccccc;

  text-transform: uppercase;

  margin-top: 30px;

}

.about-intro-s3 .child .right-box {

  width: 70%;

  display: inline-block;

  vertical-align: top;

  padding-right: 3.125vw;

  overflow: auto;

  height: 320px;

  animation-delay: .2s;

}

.about-intro-s3 .child .right-box p {

  font-size: 16px;

  line-height: 2.25;

  color: #000;

}

.about-intro-s3 .child .right-box p:before {

  content: '';

  width: 14px;

  height: 14px;

  background-position: center;

  background-repeat: no-repeat;

  background-size: contain;

  background-image: url("../image/icon-42.png");

  display: inline-block;

  vertical-align: top;

  margin: 12px 20px 0 0;

}

.about-intro-s3 .child.active {

  display: block;

}



.about-intro-s4 {

  padding: 6.25vw 0;

  background-position: center;

  background-repeat: no-repeat;

  background-size: cover;

  background-image: url("../image/img-14.jpg");

  background-attachment: fixed;

  overflow: hidden;

}

.about-intro-s4 .items {

  margin: 2vw 0 0;

  font-size: 0;

}

.about-intro-s4 .item {

  display: inline-block;

  vertical-align: top;

  width: 33%;

  text-align: center;

  margin-top: 2vw;

}

.about-intro-s4 .item .img-box {

  width: 13.5vw;

  max-width: 251px;

  margin: 0 auto;

  position: relative;

}

.about-intro-s4 .item img {

  display: block;

  width: 100%;

  transition: all .3s ease;

}

.about-intro-s4 .item img.hide {

  position: absolute;

  top: 0;

  left: 0;

  opacity: 0;

}

.about-intro-s4 .item h3 {

  font-size: 24px;

  color: #000;

}

.about-intro-s4 .item p {

  font-size: 16px;

  line-height: 24px;

  color: #808080;

  margin-top: 15px;

}

@media screen and (min-width: 769px) {

  .about-intro-s4 .item:nth-of-type(1), .about-intro-s4 .item:nth-of-type(2), .about-intro-s4 .item:nth-of-type(3) {

    margin-top: 0;

  }

}

@media screen and (min-width: 1025px) {

  .about-intro-s4 .item:hover img.show {

    opacity: 0;

  }

  .about-intro-s4 .item:hover img.hide {

    opacity: 1;

  }

}



/* 2021-08-24 */

@keyframes o-scale1 {

  0% {

    opacity: 1;

    transform: scale(1);

  }

  80% {

    opacity: 1;

  }

  100% {

    opacity: 0;

    transform: scale(1.5);

  }

}

.index-s7 {

  position: relative;

}

.index-s7 .txt-box {

  position: absolute;

  top: 0;

  left: 0;

  width: 100%;

  padding-top: 6.25vw;

}

.index-s7 .img-box {

  overflow: hidden;

}

.index-s7 img {

  display: block;

  width: 100%;

}



.about-partner-s1 img {

  display: block;

  width: 100%;

}



.about-partner-s2 .item {

  position: relative;

}

.about-partner-s2 .item .bg-box {

  height: calc(100vh - 130px);

  background-position: center;

  background-repeat: no-repeat;

  background-size: cover;

  background-attachment: fixed;

}

.about-partner-s2 .item .txt-box {

  position: absolute;

  top: 0;

  left: 0;

  width: 100%;

  height: 100%;

}

.about-partner-s2 .item h3 {

  font-size: 46px;
  width:50%;
  color: #fff;

  position: absolute;

  top: 50%;

  transform: translateY(-50%);

}

.about-partner-s2 .item .box {

  display: inline-block;

  width: 640px;

  padding: 3.125vw;

  background-color: rgba(63, 52, 128, 0.8);

  text-align: left;

}

.about-partner-s2 .item span {

  display: block;


  font-size: 24px;

  color: #fff;

}

.about-partner-s2 .item span:after {

  content: '';

  width: 24px;

  height: 4px;

  background-color: #fff;

  display: block;

  margin-top: 20px;

}

.about-partner-s2 .item .para {

  font-size: 16px;

  color: #fff;

  line-height: 1.5;

  margin-top: 20px;

  margin-right: -20px;

  padding-right: 20px;

  max-height: 324px;

  overflow: auto;

}

@media screen and (min-width: 769px) {

  .about-partner-s2 .item:nth-of-type(odd) {

    text-align: right;

  }

  .about-partner-s2 .item:nth-of-type(odd) h3 {

    left: 0;

  }

  .about-partner-s2 .item:nth-of-type(even) h3 {

    right: 0;

  }

}



.about-partner-s3 {

  padding: 11vw 0;

  background-position: center;

  background-repeat: no-repeat;

  background-size: cover;

  background-attachment: fixed;

}

.about-partner-s3 .index-tit h3 {

  line-height: 2;

}



.about-culture-s1 {

  position: relative;

  height: 49vw;

  background-position: center;

  background-repeat: no-repeat;

  background-size: cover;

  background-image: url("../image/HDtU1hZ9ceiDl7Tbo492D67KBx7WcKx30bixJ0kq.jpg");

  padding-top: 6.25vw;

}

.about-culture-s1:before {

  content: '';

  width: 100%;

  height: 40%;

  position: absolute;

  bottom: 0;

  left: 0;

  background-image: linear-gradient(180deg, rgba(255, 255, 255, 0), #fff);

  z-index: 1;

}

.about-culture-s1 .cloud {

  position: absolute;

  bottom: 0;

  left: 0;

  right: 0;

  z-index: 1;

  overflow: hidden;

  white-space: nowrap;

  z-index: 2;

  font-size: 0;

}

.about-culture-s1 .cloud span {

  display: inline-block;

  vertical-align: top;

  height: 18vw;

  width: 100vw;

  background-position: left bottom;

  background-repeat: repeat-x;

  background-image: url("https://en.nantian.com.cn/statics/home/images/index/cloud.png");

  background-size: 100% 100%;

  animation: o-cloud 150s linear infinite;

}

.about-culture-s1 .title {

  font-size: 48px;

  color: #fff;

  font-weight: bold;

}

.about-culture-s1 .item {

  position: absolute;

}

.about-culture-s1 .item .range {

  position: absolute;

  top: 0;

  left: 0;

  width: 100%;

  height: 100%;

}

.about-culture-s1 .item .range i {

  position: absolute;

  top: 0;

  left: 0;

  width: 100%;

  height: 100%;

  border-radius: 50%;

  background-color: rgba(255, 255, 255, 0.1);

  animation: o-scale1 2s linear infinite;

}

.about-culture-s1 .item .range i:nth-of-type(2) {

  animation-delay: .7s;

}

.about-culture-s1 .item .range i:nth-of-type(3) {

  animation-delay: 1.4s;

}

.about-culture-s1 .item .txt {

  border-radius: 50%;

  position: absolute;

  top: 0;

  left: 0;

  width: 100%;

  height: 100%;

  background-color: rgba(255, 255, 255, 0.7);

  text-align: center;

  z-index: 2;

}

.about-culture-s1 .item h3 {
  width:68%;
  margin:0px auto;
  font-size: 20px;

  color: #3f3480;

}

.about-culture-s1 .item p {
  width:87%;
  font-size: 14px;

  line-height: 22px;

  color: #3f3480;

  margin: 10px auto 0px;

}

.about-culture-s1 .item:nth-of-type(1), .about-culture-s1 .item:nth-of-type(5) {

  width: 190px;

  height: 190px;

}

.about-culture-s1 .item:nth-of-type(2), .about-culture-s1 .item:nth-of-type(4) {

  width: 240px;

  height: 240px;

}

.about-culture-s1 .item:nth-of-type(1) {

  left: 1.5vw;

  top: 9vw;

}

.about-culture-s1 .item:nth-of-type(2) {

  left: 25vw;

  top: 2vw;

}

.about-culture-s1 .item:nth-of-type(3) {

  width: 220px;

  height: 220px;

  right: 1.5vw;

  top: 23vw;

}

.about-culture-s1 .item:nth-of-type(4) {

  left: 13vw;

  top: 21vw;

}

.about-culture-s1 .item:nth-of-type(5) {

  left: 38vw;

  top: 20vw;

}

.about-culture-s1 .item:nth-of-type(6) {

  width: 260px;

  height: 260px;

  
  top: 4.5vw;

  right: 9vw;

}



.about-culture-s2 {

  padding: 6.25vw 0;

}

.about-culture-s2 .item {

  margin-top: 6.25vw;

  position: relative;

}

.about-culture-s2 .item .img-box {

  overflow: hidden;

}

.about-culture-s2 .item img {

  display: block;

  width: 100%;

  transition: transform .6s ease;

}

.about-culture-s2 .item .txt-box {

  width: 480px;

  background-color: #3f3480;

  padding: 0 3.125vw;

  position: absolute;

  top: 4vw;

  bottom: 4vw;

}

.about-culture-s2 .item p {

  font-size: 14px;

  line-height: 1.9;

  color: #fff;

  margin-top:15px;

  text-align: justify;

}

.about-culture-s2 .item:nth-of-type(1) {

  margin-top: 0;

}

.about-culture-s2 .item:nth-of-type(1) .txt-box {

  left: -3.125vw;

}

.about-culture-s2 .item:nth-of-type(2) .txt-box {

  right: -3.125vw;

}

@media screen and (min-width: 1025px) {

  .about-culture-s2 .item:hover img {

    transform: scale(1.05);

  }

}



.about-culture-s3 .items {

  display: flex;

  flex-wrap: wrap;

  margin-top: 2vw;

}

.about-culture-s3 .item {

  width: 33.33%;

  position: relative;

}

.about-culture-s3 .item .img-box {

  overflow: hidden;

}

.about-culture-s3 .item img {

  display: block;

  width: 100%;

  transition: transform .6s ease;

}

.about-culture-s3 .item .title {

  position: absolute;

  bottom: 0;

  left: 0;

  right: 0;

  padding: 1.5vw;

  z-index: 2;

  background-image: linear-gradient(180deg, rgba(63, 52, 128, 0), #3f3480);

  transition: all .3s ease;

}

.about-culture-s3 .item .hide {

  position: absolute;

  top: 0;

  left: 0;

  width: 100%;

  height: 100%;

  background-color: rgba(63, 52, 128, 0.9);

  padding: 0 3.125vw;

  opacity: 0;

  visibility: hidden;

  transition: all .3s ease;

}

.about-culture-s3 .item h3 {

  font-size: 20px;

  color: #fff;

  text-align: center;

}

.about-culture-s3 .item p {

  font-size: 14px;

  line-height:1.6;

  color: #fff;

  text-align: center;

  margin-top: 20px;

}

.about-culture-s3 .item:last-of-type {

  width: 100%;

}

@media screen and (min-width: 1025px) {

  .about-culture-s3 .item:hover .title {

    opacity: 0;

  }

  .about-culture-s3 .item:hover .hide {

    opacity: 1;

    visibility: visible;

  }

}



.about-culture-s4 {

  position: relative;

}

.about-culture-s4 img {

  display: block;

  width: 100%;

}

.about-culture-s4 a {

  width: 240px;

  line-height: 48px;

  font-size: 16px;

  text-align: center;

  color: #fff;

  border-radius: 24px;

  background-color: #3f3480;

  box-shadow: 0 10px 30px rgba(63, 52, 128, 0.3);

  position: absolute;

  bottom: 4.5vw;

  left: 0;

  right: 0;

  margin: 0 auto;

  transition: all .3s ease;

}

@media screen and (min-width: 1025px) {

  .about-culture-s4 a:hover {

    transform: translateY(-5px);

  }

}



@media screen and (max-width: 1600px) {

  .about-index-s1 .item span,

  .index-s1 .item .txt-box h3,

  .index-s4 .data span,

  .investor-index-s4 .item .date b {

    font-size: 66px;

  }



  .about-intro-s3 .child .left-box .year {

    font-size: 58px;

  }



  .about-honor-s1 li .year,

  .index-s1 .item .txt-box h4,

  .c-banner h2,

  .industry-detail-s4 .item span {

    font-size: 50px;

  }



  .c-banner h3,

  .c-items-1 .item .date b,

  .about-index-s1 .item em,

  .index-s3 .txt-box .item h3,

  .index-s4 .data em,

  .investor-index-s3 .item .date span,

  .news-list-s1 .box h3 {

    font-size: 40px;

  }



  .index-tit h3,

  .about-index-s3 .item .date span,

  .index-s2 .item h3,

  .industry-detail-s3 .item span,

  .inner-title,

  .news-list-s2 .title h3 {

    font-size: 26px;

  }



  .about-intro-s2 .item h3,

  .about-intro-s3 .item.active h3,

  .index-s1 .item .txt-box p {

    font-size: 26px;

  }



  .about-chengyuan-s1 .item .show,

  .c-items-1 .item h3,

  .about-index-s3 .item h3,

  .about-index-s4 .item h3,

  .about-index-s4 .item span,

  .c-banner p,

  .about-intro-s4 .item h3,

  .about-dangjian-s2 .item h3,

  .index-s1 .item .txt-box .para,

  .index-s2 .item .show,

  .index-s3 .tab-tit span,

  .index-s3 .txt-box .item p,

  .industry-detail-s3 .item h3,

  .industry-detail-s4 .item h3,

  .industry-detail-s5 .item.active .show h3,

  .industry-page-s4 .item h3,

  .industry-page-s1 p,

  .investor-huibao-s1 table th,

  .investor-index-s3 .item h3,

  .investor-index-s4 .item .date span,

  .investor-index-s4 .item h3,

  .news-detail-s1 .top-box .info span,

  .news-detail-s1 .right-box h3,

  .news-list-s2 .item h3,

  .industry-page-s7 .item h3,

  .industry-page-s9 .item h3 {

    font-size: 20px;

  }



  .about-intro-s1 .item a,

  .about-intro-s3 .item h3,

  .index-tit p,

  .index-s2 .item p,

  .index-s4 .data i,

  .index-s4 .data p,

  .index-s5 .item h3,

  .industry-detail-s5 .item .show h3,

  .industry-page-s3 .item h3,

  .industry-page-s5 a,

  .investor-huibao-s1 table td,

  .investor-index-s3 .item .date,

  .news-list-s2 .item .date,

  .industry-page-s8 .item h3,

  .recruit-page-s2 .link a h3 {

    font-size: 18px;

  }



  .c-link a,

  .about-index-s1 .para,

  .about-index-s1 .item i,

  .about-index-s1 .item p,

  .about-index-s2 .item h3,

  .about-intro-s1 .para,

  .about-dangjian-s2 .item .date,

  .index-s5 .item .date,

  .industry-detail-s1 .para,

  .industry-detail-s2 .para,

  .industry-page-s2 .para,

  .investor-index-s1 .txt-box a,

  .investor-index-s5 .item .date,

  .investor-index-s5 .item h3,

  .news-detail-s1 .right-box .link a,

  .news-detail-s1 .other .page a,

  .recruit-page-s2 .ewm p,

  .about-intro-s2 .item .hide p,

  .recruit-page-s2 .link a .en {

    font-size: 16px;

  }



  .about-chengyuan-s1 .item p,

  .about-chengyuan-s1 .item a,

  .c-items-1 .item .date span,

  .about-honor-s1 li .para,

  .about-index a.more,

  .about-index-s3 .item .date,

  .about-index-s3 .item p,

  .about-intro-s3 .child .left-box p,

  .about-intro-s3 .child .right-box p,

  .about-intro-s4 .item p,

  .about-dangjian-s3 input,

  .about-dangjian-s3 textarea,

  .about-dangjian-s3 button,

  .about-qualification-s1 .item h3,

  .about-qualification-s2 .item,

  .index-s2 .item a,

  .index-s3 .txt-box .item a,

  .index-s4 a.more,

  .index-tit a,

  .industry-detail-s5 .item .para,

  .industry-page-s4 .item p,

  .industry-page-s3 .item p,

  .investor-huibao-s1 table th span,

  .investor-index a.more,

  .news-list-s1 .box a,

  .industry-page-s7 .item .para,

  .industry-page-s8 .item p,

  .industry-page-s9 .item p {

    font-size: 15px;

  }



  .about-chengyuan-s1 .item a {

    line-height: 45px;

    padding: 0 24px;

  }



  .about-index a.more {

    line-height: 40px;

  }



  .about-index-s3 .item h3 {

    height: 60px;

  }



  .about-index-s3 .item p {

    line-height: 24px;

    height: 48px;

  }



  .about-intro-s1 .item a:before {

    width: 60px;

    height: 60px;

  }



  .about-intro-s2 .item {

    height: 580px;

  }



  .about-intro-s3 .child .right-box {

    height: 280px;

  }



  .about-qualification-s1 .item .img-box {

    height: 200px;

  }



  .index-s1 .item,

  .news-list-s1 {

    height: calc(100vh - 80px);

  }



  .industry-detail-s5 .item .show:after {

    width: 12px;

    height: 20px;

    margin-top: -10px;

  }



  .industry-page-s4 .item p {

    height: 90px;

  }



  .investor-index-s1 .txt-box a {

    line-height: 60px;

  }



  .investor-index-s3 .item h3 {

    line-height: 30px;

    height: 60px;

  }



  .investor-index-s4 .item .date {

    width: 130px;

    height: 130px;

  }



  .news-detail-s1 .top-box h3 {

    font-size: 36px;

  }



  .news-detail-s1 .left-box {

    width: calc(100% - 320px);

  }



  .news-detail-s1 .right-box {

    width: 320px;

    top: 100px;

  }



  .news-detail-s1 .right-box .link a {

    margin-top: 15px;

    line-height: 24px;

    max-height: 48px;

    overflow: hidden;

  }



  .news-detail-s1 .right-box .link a::before {

    top: 10px;

  }



  .news-detail-s1 .other .page a {

    width: 160px;

    line-height: 48px;

  }



  .news-list-s2 .item h3 {

    line-height: 30px;

    height: 60px;

  }



  .recruit-page-s1 .item {

    height: 66vh;

  }

}

@media screen and (max-width: 1366px) {

  .about-index-s1 .item span,

  .index-s1 .item .txt-box h3,

  .index-s4 .data span,

  .investor-index-s4 .item .date b {

    font-size: 56px;

  }



  .about-intro-s3 .child .left-box .year {

    font-size: 50px;

  }



  .about-honor-s1 li .year,

  .index-s1 .item .txt-box h4,

  .c-banner h2,

  .industry-detail-s4 .item span {

    font-size: 40px;

  }



  .c-banner h3,

  .c-items-1 .item .date b,

  .about-index-s1 .item em,

  .index-s3 .txt-box .item h3,

  .index-s4 .data em,

  .investor-index-s3 .item .date span,

  .news-list-s1 .box h3 {

    font-size: 34px;

  }



  .index-tit h3,

  .about-index-s3 .item .date span,

  .index-s2 .item h3,

  .industry-detail-s3 .item span,

  .inner-title,

  .news-list-s2 .title h3 {

    font-size:18px;

  }



  .about-intro-s2 .item h3,

  .about-intro-s3 .item.active h3,

  .index-s1 .item .txt-box p {

    font-size: 22px;

  }



  .about-chengyuan-s1 .item .show,

  .c-items-1 .item h3,

  .about-index-s3 .item h3,

  .about-index-s4 .item h3,

  .about-index-s4 .item span,

  .c-banner p,

  .about-intro-s4 .item h3,

  .about-dangjian-s2 .item h3,

  .index-s1 .item .txt-box .para,

  .index-s2 .item .show,

  .index-s3 .tab-tit span,

  .index-s3 .txt-box .item p,

  .industry-detail-s3 .item h3,

  .industry-detail-s4 .item h3,

  .industry-detail-s5 .item.active .show h3,

  .industry-page-s4 .item h3,

  .industry-page-s1 p,

  .investor-huibao-s1 table th,

  .investor-index-s3 .item h3,

  .investor-index-s4 .item .date span,

  .investor-index-s4 .item h3,

  .news-detail-s1 .top-box .info span,

  .news-detail-s1 .right-box h3,

  .news-list-s2 .item h3,

  .industry-page-s7 .item h3,

  .industry-page-s9 .item h3 {

    font-size: 18px;

  }

.index-s2 .item .show{font-size:12px }

  .about-intro-s1 .item a,

  .about-intro-s3 .item h3,

  .index-tit p,

  .index-s2 .item p,

  .index-s4 .data i,

  .index-s4 .data p,

  .index-s5 .item h3,

  .industry-detail-s5 .item .show h3,

  .industry-page-s3 .item h3,

  .industry-page-s5 a,

  .investor-huibao-s1 table td,

  .investor-index-s3 .item .date,

  .news-list-s2 .item .date,

  .industry-page-s8 .item h3,

  .recruit-page-s2 .link a h3 {

    font-size: 16px;

  }



  .c-link a,

  .about-index-s1 .para,

  .about-index-s1 .item i,

  .about-index-s1 .item p,

  .about-index-s2 .item h3,

  .about-intro-s1 .para,

  .about-dangjian-s2 .item .date,

  .index-s5 .item .date,

  .industry-detail-s1 .para,

  .industry-detail-s2 .para,

  .industry-page-s2 .para,

  .investor-index-s1 .txt-box a,

  .investor-index-s5 .item .date,

  .investor-index-s5 .item h3,

  .news-detail-s1 .right-box .link a,

  .news-detail-s1 .other .page a,

  .recruit-page-s2 .ewm p,

  .about-intro-s2 .item .hide p,

  .recruit-page-s2 .link a .en {

    font-size: 15px;

  }
.about-intro-s2 .item .hide p{font-size:12px;line-height: 21px;}


  .about-chengyuan-s1 .item p,

  .about-chengyuan-s1 .item a,

  .c-items-1 .item .date span,

  .about-honor-s1 li .para,

  .about-index a.more,

  .about-index-s3 .item .date,

  .about-index-s3 .item p,

  .about-intro-s3 .child .left-box p,

  .about-intro-s3 .child .right-box p,

  .about-intro-s4 .item p,

  .about-dangjian-s3 input,

  .about-dangjian-s3 textarea,

  .about-dangjian-s3 button,

  .about-qualification-s1 .item h3,

  .about-qualification-s2 .item,

  .index-s2 .item a,

  .index-s3 .txt-box .item a,

  .index-s4 a.more,

  .index-tit a,

  .industry-detail-s5 .item .para,

  .industry-page-s4 .item p,

  .industry-page-s3 .item p,

  .investor-index a.more,

  .news-list-s1 .box a,

  .industry-page-s7 .item .para,

  .industry-page-s8 .item p,

  .industry-page-s9 .item p {

    font-size: 14px;

  }



  .c-link a {


    line-height: 40px;

  }



  .about-chengyuan-s1 .item p {

    line-height: 24px;

  }



  .about-chengyuan-s1 .item a {

    line-height: 40px;

    padding: 0 20px;

  }



  .about-honor-s1 li .box::before {

    top: 3px;

  }



  .about-index-s3 .item h3 {

    height: 54px;

  }



  .about-intro-s2 .item {

    height: 480px;

  }



  .about-intro-s3 .child .right-box p::before {

    margin-top: 10px;

  }



  .about-intro-s3 .child .right-box {

    height: 260px;

  }



  .about-dangjian-s3 input {

    height: 50px;

  }



  .about-dangjian-s3 textarea {

    height: 160px;

  }



  .about-dangjian-s3 button {

    width: 160px;

    height: 50px;

  }



  .industry-detail-crumbs .left-box a {

    line-height: 50px;

    margin-left: 1vw;

  }



  .industry-detail-s3 .item .para {

    line-height: 24px;

  }



  .industry-detail-s3 .item .show .para {

    height: 72px;

  }



  .industry-detail-s5 .item .para {

    line-height: 24px;

  }



  .industry-page-s4 .item p {

    line-height: 24px;

    height: 72px;

  }



  .industry-page-s3 .item p {

    line-height: 24px;

    height: 72px;

  }



  .investor-index-s1 .txt-box a {

    line-height: 50px;

  }



  .investor-index-s4 .item .date {

    width: 120px;

    height: 120px;

  }



  .industry-page-s7 .item .para {

    line-height: 24px;

  }



  .industry-page-s8 .item p {

    line-height: 24px;

  }



  .news-detail-s1 .top-box h3 {

    font-size: 30px;

  }

}

@media screen and (max-width: 1200px) {

  .recruit-page-s2 .link a {

    width: 240px;

  }



  .recruit-page-s2 .link a h3 {

    top: 15px;

  }

}

@media screen and (max-width: 1024px) {

  .about-chengyuan-s1 .item .para {

    height: 120px;

  }

  .index-s7 .txt-box{padding-top: 4.25vw;}
  .index-tit p{margin-top: 8px;}

  .about-index-s2 .button,

  .about-index-s4 .button,

  .industry-page-s4 .button,

  .index-s5 .button,

  .industry-page-s9 .button,

  .recruit-page-s1 .button {

    display: none;

  }



  .about-intro-s4 .items {

    margin: 2vw 0 0;

  }



  .index-s1 .item {

    height: 50vw;

  }



  .index-s2 .item .img-box {

    width: 44vw;

  }



  .index-s3 {

    height: 50vw;

  }

}

@media screen and (max-width: 768px) {

  .about-index-s1 .item span,

  .index-s4 .data span,

  .investor-index-s4 .item .date b {

    font-size: 36px;

  }



  .about-honor-s1 li .year,

  .industry-detail-s4 .item span {

    font-size: 30px;

  }



  .c-banner h2,

  .c-banner h3,

  .index-s1 .item .txt-box h3,

  .index-s1 .item .txt-box h4,

  .c-items-1 .item .date b,

  .about-index-s1 .item em,

  .investor-index-s3 .item .date span,

  .index-s3 .txt-box .item h3,

  .index-s4 .data em {

    font-size: 24px;

  }



  .index-tit h3,

  .about-index-s3 .item .date span,

  .index-s2 .item h3,

  .industry-detail-s3 .item span,

  .inner-title,

  .news-list-s2 .title h3,

  .news-list-s1 .box h3 {

    font-size: 20px;

  }



  .about-intro-s2 .item h3,

  .about-intro-s3 .item.active h3 {

    font-size: 18px;

  }



  .about-chengyuan-s1 .item .show,

  .c-items-1 .item h3,

  .about-index-s3 .item h3,

  .about-index-s4 .item h3,

  .about-index-s4 .item span,

  .c-banner p,

  .about-intro-s4 .item h3,

  .about-dangjian-s2 .item h3,

  .index-s2 .item .show,

  .index-s3 .tab-tit span,

  .index-s3 .txt-box .item p,

  .industry-detail-s3 .item h3,

  .industry-detail-s4 .item h3,

  .industry-detail-s5 .item.active .show h3,

  .industry-page-s4 .item h3,

  .investor-index-s3 .item h3,

  .investor-index-s4 .item .date span,

  .investor-index-s4 .item h3,

  .news-detail-s1 .top-box .info span,

  .news-detail-s1 .right-box h3,

  .news-list-s2 .item h3,

  .industry-page-s7 .item h3,

  .industry-page-s9 .item h3,

  .index-s1 .item .txt-box p {

    font-size: 16px;

  }



  .about-intro-s1 .item a,

  .about-intro-s3 .item h3,

  .index-tit p,

  .index-s2 .item p,

  .index-s4 .data i,

  .index-s4 .data p,

  .index-s5 .item h3,

  .industry-detail-s5 .item .show h3,

  .industry-page-s3 .item h3,

  .industry-page-s5 a,

  .investor-index-s3 .item .date,

  .news-list-s2 .item .date,

  .industry-page-s8 .item h3,

  .recruit-page-s2 .link a h3 {

    font-size: 15px;

  }



  .c-link a,

  .about-index-s1 .para,

  .about-index-s1 .item i,

  .about-index-s1 .item p,

  .about-index-s2 .item h3,

  .about-intro-s1 .para,

  .about-dangjian-s2 .item .date,

  .index-s1 .item .txt-box .para,

  .index-s5 .item .date,

  .industry-page-s1 p,

  .industry-detail-s1 .para,

  .industry-detail-s2 .para,

  .industry-page-s2 .para,

  .investor-index-s1 .txt-box a,

  .investor-index-s5 .item .date,

  .investor-index-s5 .item h3,

  .news-detail-s1 .right-box .link a,

  .news-detail-s1 .other .page a,

  .recruit-page-s2 .ewm p,

  .recruit-page-s2 .link a .en {

    font-size: 14px;

  }



  .c-banner p {

    letter-spacing: 0;

    margin-top: 10px;

  }



  .c-banner .tip {

    bottom: 20px;

    left: 20px;

    right: 20px;

    text-align: center;

    font-size: 14px;

  }



  .c-crumbs {

    padding: 0 5%;

    display: block;

    display: none;

  }



  .c-crumbs .left-box {

    display: none;

  }



  .c-crumbs .right-box {

    text-align: center;

  }



  .c-crumbs .right-box a {

    line-height: 24px;

    padding: 10px 0;

    margin-left: 15px;

  }



  .c-banner img {

    height: 50vw;

    object-fit: cover;

  }



  .c-link a {

    width: 130px;

    margin: 0 5px;

    border-width: 1px;

    line-height: 20px;
    padding:10px 0px
  }



  .about-chengyuan-s1 {

    padding: 40px 0;

  }



  .about-chengyuan-s1 .items {

    margin-top: 20px;

  }



  .about-chengyuan-s1 .item {

    margin-top: 20px;

  }



  .about-chengyuan-s1 .item .show {

    display: none;

  }



  .about-chengyuan-s1 .item .hide {

    position: static;

    opacity: 1;

    visibility: visible;

    padding: 20px;

  }



  .about-chengyuan-s1 .item .para {

    padding-right: 0;

    margin: 15px 0;

    height: auto;

  }



  .about-chengyuan-s1 .item .info {

    padding: 0;

  }



  .about-chengyuan-s1 .item a {

    position: static;

    display: inline-block;

    margin-top: 15px;

  }



  .about-dangjian-s1 {

    padding: 40px 0;

  }



  .about-dangjian-s1 .c-items-1 {

    margin: 20px 0;

  }



  .c-items-1 .item a {

    display: block;

    padding: 15px 20px;

  }



  .c-items-1 .item .date {

    width: 100%;

    text-align: left;

    padding: 0;

  }



  .c-items-1 .item .date b,

  .c-items-1 .item .date span {

    display: inline-block;

    vertical-align: middle;

  }



  .c-items-1 .item .date span {

    margin: 0 0 0 10px;

  }



  .c-items-1 .item .txt {

    width: 100%;

    border: none;

    margin-top: 10px;


  }



  .c-items-1 .item h3 {

    padding: 0 30px 0 0;

  }



  .comm-page li {

    margin: 0 1px;

  }



  .comm-page li a {

    width: 30px;

    height: 30px;

    line-height: 30px;

    font-size: 12px;

  }



  .comm-page li:first-of-type a,

  .comm-page li:last-of-type a {

    width: 40px;

  }



  .about-honor-s1 {

    padding: 40px 0;

  }



  .about-honor-s1 .tree {

    margin-top: 20px;

  }



  .about-honor-s1 .tree:before,

  .about-honor-s1 .tree .line {

    display: none;

  }



  .about-honor-s1 li {

    padding-left: 0;

    margin-top: 40px;

  }



  .about-honor-s1 li .detail {

    margin-top: 20px;

  }



  .about-honor-s1 li .box {

    margin-top: 10px;

  }



  .about-index-s1 {

    padding: 40px 0;

  }



  .about-index-s1 .txt-box {

    width: 100%;

    padding: 0;

  }



  .about-index-s1 .para {

    margin: 15px 0;

    line-height: 24px;

  }



  .about-index-s1 .img-box {

    width: 100%;

    margin-top: 20px;

  }



  .about-index a.more {

    width: 120px;

    line-height: 36px;

  }



  .about-index-s1 .bot-block {

    display: block;

    font-size: 0;

  }



  .about-index-s1 .item {

    width: 50%;

    display: inline-block;

    vertical-align: top;

    padding: 0;

    margin-top: 20px;

  }



  .about-index-s2 {

    padding: 40px 0;

  }



  .about-index-s2 .item {

    box-shadow: none;

  }



  .about-index-s2 .item .img-box {

    height: 240px;

  }



  .about-index-s2 .items {

    padding: 20px 0;

  }



  .about-index-s2 .pagination,

  .about-index-s3 .pagination,

  .about-index-s4 .pagination {

    margin-bottom: 20px;

  }



  .about-index-s2 .pagination span,

  .about-index-s3 .pagination span,

  .about-index-s4 .pagination span,

  .index-s5 .pagination span,

  .industry-detail-s4 .pagination span,

  .industry-page-s4 .pagination span,

  .industry-page-s3 .pagination span,

  .investor-index-s3 .pagination span,

  .news-list-s1 .pagination span,

  .industry-page-s7 .pagination span,

  .industry-page-s8 .pagination span,

  .industry-page-s9 .pagination span,

  .recruit-page-s1 .pagination span {

    width: 5px;

    margin-left: 5px;

  }



  .about-index-s2 .pagination span.active,

  .about-index-s3 .pagination span.active,

  .about-index-s4 .pagination span.active,

  .index-s5 .pagination span.active,

  .industry-detail-s4 .pagination span.active,

  .industry-page-s4 .pagination span.active,

  .industry-page-s3 .pagination span.active,

  .investor-index-s3 .pagination span.active,

  .news-list-s1 .pagination span.active,

  .industry-page-s7 .pagination span.active,

  .industry-page-s8 .pagination span.active,

  .industry-page-s9 .pagination span.active,

  .recruit-page-s1 .pagination span.active {

    width: 10px;

  }



  .about-index-s3 {

    padding: 40px 0;

  }



  .about-index-s3 .items {

    padding: 20px 0;

  }



  .about-index-s3 .item .txt-box {

    padding: 20px;

  }



  .about-index-s3 .item .date {

    left: 20px;

    padding: 10px;

  }



  .about-intro-s3 .child .left-box .year {

    font-size: 36px;

  }



  .about-index-s4 {

    padding: 40px 0;

  }



  .about-index-s4 .items {

    padding: 20px 0;

  }



  .about-index-s4 .item h3 {

    padding: 0 20px;

  }



  .about-intro-s1 {

    padding: 40px 0;

  }



  .about-intro-s1 .para {

    line-height: 24px;

    margin: 15px 0;

  }



  .about-intro-s1 .item {

    width: calc(50% - 5px);

  }



  .about-intro-s1 .item a:before {

    width: 30px;

    height: 30px;

    margin: 0 auto 10px;

  }



  .about-intro-s2 .bot-block {

    margin-top: 20px;

  }



  .about-intro-s2 .item {

    width: 100% !important;

    height: auto;

    border-right: none;

    border-bottom: 1px solid rgba(255, 255, 255, 0.3);

  }



  .about-intro-s2 .item .show {

    display: none;

  }



  .about-intro-s2 .item .hide {

    position: static;

    opacity: 1;

    visibility: visible;

    padding: 20px 5%;

  }



  .about-intro-s2 .item .hide i {

    height: 36px;

    width: 40px;

    float: left;

  }



  .about-intro-s2 .item .hide h3 {

    margin-top: 10px;

    margin-left: 60px;

  }



  .about-intro-s2 .item .hide p {

    font-size: 14px;

    line-height: 24px;

  }



  .about-intro-s3 {

    padding: 40px 0;

  }



  .about-intro-s3 .cont {

    margin-top: 20px;

    padding: 20px;

  }



  .about-intro-s3 .item h3 {

    line-height: 24px;

  }



  .about-intro-s3 .year-box {

    width: 100%;

    position: static;

    padding: 20px;

  }



  .about-intro-s3 .button {

    display: none;

  }



  .about-intro-s3 .child-box {

    width: 100%;

    padding: 0;

    margin-top: 20px;

  }



  .about-intro-s3 .child .left-box {

    width: 100%;

    display: none;

  }



  .about-intro-s3 .child .right-box {

    height: auto;

    width: 100%;

  }



  .about-intro-s3 .child .right-box p {

    line-height: 24px;

  }



  .about-intro-s3 .child .right-box p::before {

    margin: 5px 10px 0 0;

  }



  .about-intro-s4 {

    padding: 40px 0;

  }



  .about-intro-s4 .item {

    width: 33.33%;

  }



  .about-intro-s4 .items {

    margin: 20px 0 0;

  }



  .about-intro-s4 .item {

    margin-top: 20px;

    padding: 0 5px;

  }

  .about-intro-s4 .item:nth-of-type(1), .about-intro-s4 .item:nth-of-type(2), .about-intro-s4 .item:nth-of-type(3) {

    margin-top: 0;

  }



  .about-intro-s4 .item .img-box {

    width: 80px;

  }



  .about-intro-s4 .item p {

    font-size: 14px;

    line-height: 20px;

    margin-top: 10px;

  }



  .about-dangjian-s2 {

    padding: 40px 0;

  }



  .about-dangjian-s2 .items {

    margin: 20px 0;

  }



  .about-dangjian-s2 .item a {

    padding: 20px;

    display: block;

  }



  .about-dangjian-s2 .item h3 {

    width: 100%;

  }



  .about-dangjian-s2 .item .date {

    width: 100%;

    text-align: left;

    margin-top: 10px;

  }



  .about-dangjian-s3 {

    padding: 40px 0;

  }



  .about-dangjian-s3 .cont {

    margin-top: 20px;

    padding: 20px;

  }



  .about-dangjian-s3 form {

    margin-top: 20px;

  }



  .about-dangjian-s3 input {

    width: 100%;

  }



  .about-dangjian-s3 input {

    height: 40px;

    padding: 0 10px;

  }



  .about-dangjian-s3 input, .about-dangjian-s3 textarea {

    margin-bottom: 10px;

  }



  .about-dangjian-s3 textarea {

    height: 100px;

    padding: 5px 10px;

  }



  .about-dangjian-s3 button {

    width: 120px;

    height: 40px;

  }



  .about-qualification-s1 {

    padding: 40px 0;

  }



  .about-qualification-s1 .items {

    margin-top: 20px;

  }



  .about-qualification-s1 .item {

    width: 48%;

    margin-top: 20px;

  }

  .about-qualification-s1 .item:nth-of-type(1), .about-qualification-s1 .item:nth-of-type(2) {

    margin-top: 0;

  }



  .about-qualification-s1 .item h3 {

    padding: 10px 0;

    line-height: 20px;

  }



  .about-qualification-s2 {

    padding-bottom: 40px;

  }



  .about-qualification-s2 .items {

    padding-top: 20px;

  }



  .about-qualification-s2 .item {

    width: 100%;

  }

  .about-qualification-s2 .item:nth-of-type(1) {

    margin-top: 0;

  }



  .index-s1 .item img {

    width: 100%;

  }



  .index-s1 .item .txt-box h4 {

    letter-spacing: 5px;

  }



  .index-s1 .button {

    display: none;

  }



  .index-s1 .item .txt-box .para,

  .index-s1 .item .txt-box p {

    margin-top: 10px;

  }



  .index-s1 .pagination {

    bottom: 20px;

  }



  .index-s1 .pagination span {

    width: 10px;

    height: 10px;

    margin: 0 2px;

  }



  .index-s1 .item {

    height: 60vw;

  }



  .index-s2 {

    padding: 40px 0;

  }



  .index-tit p {

    margin-top: 15px;

    line-height: 24px;

  }



  .index-s2 .items {

    margin-top: 20px;

  }



  .index-s2 .item {

    width: 100% !important;

    height: auto;

    margin-top: 20px;

  }

  .index-s2 .item:nth-of-type(1) {

    margin-top: 0;

  }



  .index-s2 .item .show {

    display: none;

  }



  .index-s2 .item .hide {

    position: relative;

    padding: 40px 20px;

    opacity: 1;

    display: block;

  }



  .index-s2 .item .img-box {

    width: 100%;

    height: 102%;

  }



  .index-s2 .item p {

    position: static;

    line-height: 24px;

    margin: 15px 0;

  }



  .index-s2 .item:before {

    display: none;

  }



  .index-s2 .item a {

    width: 120px;

    line-height: 36px;

    margin-top: 0;

  }



  .index-s3 {

    height: 100vw;

  }



  .index-s3 .tab-tit {

    display: none;

  }



  .index-s3 .buttons {

    left: 5%;

    bottom: 20px;

  }



  .index-s3 .button {

    width: 40px;

    height: 40px;

  }



  .index-s3 .txt-box .item {

    padding: 0 5% 40px;

  }



  .index-s3 .txt-box .item p {

    margin-top: 10px;

  }



  .index-s3 .txt-box .item .btn {

    margin-top: 15px;

  }



  .index-s3 .img-box .item {

    background-attachment: inherit;

  }



  .index-s4 {

    padding: 40px 0;

  }



  .index-s4 .data {

    margin-top: 20px;

    padding: 0;

    font-size: 0;

    flex-wrap: wrap;

  }



  .index-s4 .data .item {

    width: 50%;

    margin-top: 20px;

  }

  .index-s4 .data .item:nth-of-type(1), .index-s4 .data .item:nth-of-type(2) {

    margin-top: 0;

  }



  .index-s4 .data p {

    margin: 10px 0 0 5px;

  }



  .index-s4 a.more {

    width: 120px;

    line-height: 36px;

    margin: 20px auto 0;

  }



  .index-tit a {

    margin-top: 15px;

  }



  .index-s5 {

    padding-bottom: 40px;

  }



  .index-s5 .bot-block {

    margin-top: 20px;

  }



  .index-s5 .items {

    margin: 0;

    padding: 0;

  }



  .index-s5 .pagination {

    margin-top: 20px;

  }



  .index-s5 .item .txt-box {

    padding: 15px 0 0;

  }



  .index-s5 .item h3 {

    line-height: 24px;

    height: 48px;

  }



  .index-s6 {

    padding: 40px 0;

  }



  .index-s6 .left-box {

    width: 100%;

    padding: 0;

  }



  .index-s6 .right-box {

    width: 100%;

    margin-top: 20px;

  }



  .industry-detail-crumbs {

    display: none;

  }



  .industry-detail-s1 {

    padding: 40px 0;

  }



  .industry-detail-s1 .img-box {

    width: 100%;

  }



  .industry-detail-s1 .txt-box {

    width: 100%;

    padding: 0;

    margin-top: 20px;

  }



  .industry-detail-s1 .para,

  .industry-detail-s2 .para {

    line-height: 24px;

    margin-top: 15px;

  }



  .industry-detail-s2 {

    padding: 40px 0;

  }



  .industry-detail-s3 {

    padding: 40px 0;

  }



  .industry-detail-s3 .items {

    margin-top: 20px;

  }



  .industry-detail-s3 .item {

    width: 100%;

    margin: 20px 0 0;

  }

  .industry-detail-s3 .item:nth-of-type(1) {

    margin-top: 0;

  }



  .industry-detail-s3 .item .box {

    padding: 20px;

  }



  .industry-detail-s3 .item h3 {

    margin-top: 15px;

  }



  .industry-detail-s3 .item .show .para {

    height: auto;

  }



  .industry-detail-s3 .item .hide {

    display: none;

  }



  .industry-detail-s3 .item:before {

    width: 40px;

    height: 40px;

  }



  .industry-detail-s4 {

    padding: 40px 0;

  }



  .industry-detail-s4 .items {

    margin: 0;

    padding: 20px 0;

  }



  .industry-detail-s4 .item {

    padding: 20px 10px 10px 0;

  }



  .industry-detail-s4 .item .box {

    padding: 20px;

  }



  .industry-detail-s4 .item h3 {

    margin-top: 40px;

  }



  .industry-detail-s5 {

    padding: 40px 0;

  }



  .industry-detail-s5 .items {

    margin-top: 20px;

  }



  .industry-detail-s5 .item .show h3 {

    line-height: 1.5;

  }



  .industry-detail-s5 .item .show {

    padding: 10px 20px;

  }



  .industry-detail-s5 .item .show:after {

    right: 20px;

  }



  .industry-detail-s5 .item .hide {

    padding: 15px 20px;

  }



  .industry-page-s4 {

    padding: 40px 0;

  }



  .industry-page-s4 .cont {

    margin-top: 20px;

  }



  .industry-page-s4 .items {

    padding-top: 0;

  }



  .industry-page-s4 .pagination {

    margin-top: 20px;

  }



  .industry-page-s4 .item a {

    padding: 20px;

  }



  .industry-page-s4 .item h3 {

    padding-bottom: 15px;

  }



  .industry-page-s4 .item p {

    margin: 15px 0;

  }



  .industry-page-s3 {

    padding: 40px 0;

  }



  .industry-page-s3 .items {

    padding-top: 20px;

  }



  .industry-page-s3 .pagination {

    margin-top: 20px;

  }



  .industry-page-s3 .item .txt-box {

    padding: 20px;

  }



  .industry-page-s3 .item .txt-box:after {

    margin-top: 10px;

  }



  .industry-page-s5 {

    padding: 40px;

  }



  .industry-page-s5 a {

    display: block;

    width: 280px;

    max-width: 90%;

    line-height: 46px;

    margin: 10px;

  }



  .industry-page-s1 img {

    height: 70vw;

    object-fit: cover;

  }



  .industry-page-s1 p {

    margin-top: 15px;

  }



  .industry-page-s2 {

    padding: 40px 0;

  }



  .industry-page-s2 .img-box {

    width: 100%;

  }



  .industry-page-s2 .txt-box {

    width: 100%;

    padding: 0;

    margin-top: 20px;

  }



  .industry-page-s2 .para {

    line-height: 24px;

    margin-top: 15px;

  }



  .industry-page-s1 .txt-box {

    padding: 20px 0;

  }



  .industry-page-s1 h3:before {

    width: 2px;

    height: 20px;

    margin: -2px 10px 0 0;

  }



  .investor-list-s1 {

    padding: 40px 0;

  }



  .investor-list-s1 .c-items-1 {

    margin-bottom: 20px;

  }



  .investor-huibao-s1 {

    padding: 40px 0;

  }



  .investor-huibao-s1 table {

    margin-top: 20px;

  }



  .investor-huibao-s1 table th {

    font-size: 14px;

  }



  .investor-huibao-s1 table th span {

    font-size: 12px;

    display: inline-block;

  }



  .investor-huibao-s1 table th,

  .investor-huibao-s1 table td {

    padding: 10px 5px;

  }



  .investor-huibao-s1 table td {

    font-size: 12px;

    line-height: 20px;

  }



  .investor-huibao-s1 table td p {

    font-size: 12px;

    line-height: 20px;

  }



  .investor-index-s1 {

    padding: 40px 0;

  }



  .investor-index-s1 .cont {

    margin-top: 20px;

  }



  .investor-index-s1 .img-box {

    width: 100%;

  }



  .investor-index-s1 .txt-box {

    width: 100%;

    padding-left: 0;

  }



  .investor-index-s1 .img-box:after {

    display: none;

  }



  .investor-index-s1 .txt-box span {

    width: 80px;

  }



  .investor-index-s1 .txt-box h3 {

    width: calc(100% - 80px);

  }



  .investor-index a.more {

    margin-top: 20px;

    width: 120px;

    line-height: 36px;

  }



  .investor-index-s2 {

    padding: 80px 0;

  }



  .investor-index-s3 {

    padding: 40px 0;

  }



  .investor-index-s3 .items {

    padding: 20px 10px;

    margin: 0 -10px;

  }



  .investor-index-s3 .pagination {

    bottom: 0;

  }



  .investor-index-s3 .item .box {

    padding: 20px;

  }



  .investor-index-s3 .item h3 {

    margin-top: 40px;

  }



  .investor-index-s3 .item h3 {

    line-height: 24px;

    height: 48px;

  }



  .investor-index-s4 {

    padding: 40px 0;

  }



  .investor-index-s4 .items {

    margin-top: 20px;

  }



  .investor-index-s4 .item {

    width: 100%;

    margin: 10px 0 0;

  }

  .investor-index-s4 .item:nth-of-type(1) {

    margin-top: 0;

  }



  .investor-index-s4 .item h3 {

    width: 100%;

    padding: 0 40px 0 0;

    margin-top: 10px;

  }



  .investor-index-s4 .item .date {

    width: 100%;

    height: auto;

    background-color: transparent;

    color: #333;

    text-align: left;

  }



  .investor-index-s4 .item .date b, .investor-index-s4 .item .date span {

    display: inline-block;

    vertical-align: middle;

  }



  .investor-index-s4 .item .date span {

    margin: 0 0 0 10px;

  }



  .investor-index-s4 .item:after {

    right: 20px;

    width: 24px;

    height: 24px;

  }



  .investor-index-s5 {

    padding: 40px 0;

  }



  .investor-index-s5 .items {

    margin-top: 20px;

  }



  .investor-index-s5 .item {

    width: 100%;

    margin-top: 20px;

  }

  .investor-index-s5 .item:nth-of-type(1) {

    margin-top: 0;

  }



  .investor-index-s5 .item a {

    padding: 20px;

  }



  .investor-index-s5 .item a:before {

    width: 24px;

    height: 24px;

  }



  .investor-index-s5 .item .txt {

    margin-left: 10px;

    padding-left: 10px;

  }



  .investor-index-s5 .item h3 {

    line-height: 24px;

  }



  .c-items-1 .item.icon h3:after {

    width: 20px;

    height: 20px;

    right: 0;

    margin-top: -10px;

  }



  .news-detail-s1 {

    padding: 20px 0 40px;

  }



  .news-detail-s1 .left-box {

    width: 100%;

    padding: 0;

  }



  .news-detail-s1 .top-box h3 {

    font-size: 20px;

  }



  .news-detail-s1 .top-box .info {

    margin-top: 20px;

  }



  .news-detail-s1 .top-box .info span.date:before {

    width: 16px;

    height: 16px;

  }



  .news-detail-s1 .top-box .info span.view:before {

    width: 20px;

    height: 16px;

  }



  .news-detail-s1 .top-box .info .share {

    display: none;

  }



  .news-detail-s1 .top-box .info span {

    margin-left: 20px;

  }



  .news-detail-s1 .cont-box {

    margin-top: 20px;

    padding-top: 20px;

  }



  .news-detail-s1 .other {

    margin-top: 20px;

  }



  .news-detail-s1 .other .back a:before {

    width: 40px;

    height: 40px;

    background-size: auto 20px;

  }



  .news-detail-s1 .other .page {

    margin-top: 40px;

  }



  .news-detail-s1 .other .page a {

    width: 120px;

    line-height: 36px;

  }



  .news-detail-s1 .right-box {

    width: 100%;

    margin-top: 40px;

  }



  .news-detail-s1 .right-box h3 {

    padding-bottom: 15px;

  }



  .news-list-s1 {

    height: 70vw;

  }



  .news-list-s1 .box:before {

    height: 20px;

  }



  .news-list-s1 .box h3 {

    margin: 10px 0 20px;

  }



  .news-list-s1 .button {

    display: none;

  }



  .news-list-s1 .box a {

    width: 120px;

    line-height: 36px;

  }



  .news-list-s1 .pagination,

  .recruit-page-s1 .pagination {

    display: block;

  }



  .news-list-s2 {

    padding: 40px 5%;

  }



  .news-list-s2 .title {

    display: block;

    text-align: center;

  }



  .news-list-s2 .title form {

    width: 100%;

    margin-top: 20px;

    height: 40px;

    padding-left: 50px;

  }



  .news-list-s2 .title form input {

    padding: 0 10px;

  }



  .news-list-s2 .title form:before {

    left: 20px;

  }



  .news-list-s2 .items {

    margin: 20px 0;

  }



  .news-list-s2 .item {

    width: 100%;

    margin-top: 20px;

    margin-right: 0;

    padding-bottom: 15px;

  }

  .news-list-s2 .item:nth-of-type(1) {

    margin-top: 0;

  }



  .news-list-s2 .item .txt-box {

    padding: 15px 0 0;

  }



  .news-list-s2 .item h3 {

    line-height: 24px;

    height: 48px;

  }



  .comm-page {

    margin-top: 20px;

  }



  .industry-page-s6 .txt-box {

    width: 100%;

  }



  .industry-page-s7 {

    padding: 40px 0;

  }



  .industry-page-s7 .items {

    padding-top: 20px;

  }



  .industry-page-s7 .item {

    padding-top: 0;

  }



  .industry-page-s7 .item .box {

    padding: 20px;

  }



  .industry-page-s7 .item .img {

    height: 36px;

  }



  .industry-page-s7 .item h3 {

    margin-top: 15px;

  }



  .industry-page-s7 .pagination {

    margin-top: 20px;

  }



  .industry-page-s8 {

    padding: 40px 0;

  }



  .industry-page-s8 .items {

    margin-top: 20px;

  }



  .industry-page-s8 .pagination {

    margin-top: 20px;

  }



  .industry-page-s8 .items {

    margin-top: 20px;

  }



  .industry-page-s8 .item .txt-box {

    padding: 20px;

  }



  .industry-page-s9 {

    padding: 40px 0;

  }



  .industry-page-s9 .pagination {

    margin-top: 20px;

  }



  .industry-page-s9 .items {

    padding-top: 20px;

  }



  .industry-page-s9 .item a {

    padding: 20px;

  }



  .industry-page-s9 .item p {

    padding-top: 15px;

    margin-top: 15px;

  }



  .recruit-page-s1 .item {

    height: 70vw;

  }



  .recruit-page-s2 {

    padding: 40px 0;

  }



  .recruit-page-s2 .flex {

    display: block;

  }



  .recruit-page-s2 .link a {

    width: 100%;

    margin: 20px 0 0 !important;

  }

}

/* 2021-08-24 */

@media screen and (max-width: 1600px) {

  .about-partner-s2 .item h3,

  .about-culture-s1 .title {

    font-size:36px;

  }



  .about-partner-s2 .item span {

    font-size: 24px;

  }



  .about-partner-s2 .item .box {

    width: 530px;

  }



  .about-partner-s2 .item .para {

    font-size: 16px;

    max-height: 288px;

  }



  .about-culture-s1 .item h3 {

    font-size:18px;

  }



  .about-culture-s1 .item p {
    width:82%;
    line-height:20px; 
    font-size: 14px;

  }



  .about-culture-s1 .item:nth-of-type(2), .about-culture-s1 .item:nth-of-type(4) {

    width: 220px;

    height: 220px;

  }



  .about-culture-s1 .item:nth-of-type(1), .about-culture-s1 .item:nth-of-type(5) {

    width: 170px;

    height: 170px;

  }



  .about-culture-s1 .item:nth-of-type(3) {

    width: 200px;

    height: 200px;

  }



  .about-culture-s1 .item:nth-of-type(6) {

    width: 240px;

    height: 240px;

  }



  .about-culture-s2 .item .txt-box {

    width: 420px;

  }



  .about-culture-s2 .item p {

    font-size: 14px;
    line-height: 1.7
  }



  .about-culture-s3 .item h3 {

    font-size: 20px;

  }



  .about-culture-s3 .item p {

    font-size: 15px;
    height: 120px;
    overflow-y: auto

  }

}

@media screen and (max-width: 1366px) {

  .about-partner-s2 .item h3{font-size:30px;width:45%}

  .about-culture-s1 .title {

    font-size: 34px;

  }



  .about-partner-s2 .item span {

    font-size: 20px;

  }



  .about-partner-s2 .item .para {

    font-size: 15px;

    max-height: 225px;

  }



  .about-culture-s1 .item h3 {

    font-size: 18px;

  }



  .about-culture-s1 .item p {

    font-size: 14px;

  }



  .about-culture-s1 .item:nth-of-type(2), .about-culture-s1 .item:nth-of-type(4) {

    width: 200px;

    height: 200px;

  }



  .about-culture-s1 .item:nth-of-type(1), .about-culture-s1 .item:nth-of-type(5) {

    width: 160px;

    height: 160px;

  }



  .about-culture-s1 .item:nth-of-type(3) {

    width: 180px;

    height: 180px;

  }



  .about-culture-s1 .item:nth-of-type(6) {

    width: 220px;

    height: 220px;

  }



  .about-culture-s2 .item p {
    height: 220px;
    overflow-y: auto;
    font-size: 14px;

    margin-top: 10px;

  }



  .about-culture-s3 .item h3 {

    font-size: 18px;

  }



  .about-culture-s3 .item p {

    font-size: 14px;

    margin-top: 10px;

  }

}
@media screen and (max-width:1280px){
.about-chengyuan-s1 .item .para{height:140px}
.about-partner-s2 .item h3{font-size:24px;width:36% }
}
@media screen and (max-width:1180px){
.about-chengyuan-s1 .item .para{height:110px}
.index-tit.white h3{font-size: 20px}
.about-culture-s2 .item p {height: 197px;}
}
@media screen and (max-width: 1024px) {
  .about-culture-s1 .title{font-size: 30px}    
  .about-partner-s2 .item .bg-box {

    height: 60vw;

  }

}

@media screen and (max-width: 768px) {

  .index-s7 .txt-box {

    position: static;

    padding: 40px 0 20px;

  }

  .about-culture-s3 .item p,.about-culture-s2 .item p{height: auto}

  .index-s7 .index-tit h3, .index-s7 .index-tit p {

    color: #333;

  }



  .about-partner-s2 .item {

    padding: 80px 0;

  }



  .about-partner-s2 .item .txt-box {

    position: relative;

    z-index: 2;

  }



  .about-partner-s2 .item .bg-box {

    width: 100%;

    height: 100%;

    position: absolute;

    top: 0;

    left: 0;

  }



  .about-partner-s2 .item h3 {

    position: static;
    width:100%;
    font-size: 20px;

    text-align: center;

    transform: none;

  }



  .about-partner-s2 .item .box {

    width: 100%;

    padding: 30px 20px;

    margin-top: 20px;

  }



  .about-partner-s2 .item span {

    font-size: 16px;

  }



  .about-partner-s2 .item span:after {

    height: 2px;

    margin-top: 10px;

  }



  .about-partner-s2 .item .para {

    font-size: 14px;

    margin-top: 15px;

    max-height: none;

  }



  .about-partner-s3 {

    padding: 80px 0;

  }



  .about-partner-s3 .index-tit h3 {

    font-size: 16px;

  }



  .about-culture-s1 {

    height: auto;

    padding: 40px 0 80px;

  }



  .about-culture-s1 .title {

    font-size: 20px;

  }



  .about-culture-s1 .item {

    position: static;

    width: 100% !important;

    height: auto !important;

    margin-top: 20px;

  }



  .about-culture-s1 .item .range {

    display: none;

  }



  .about-culture-s1 .item .txt {

    position: static;

    text-align: left;

    border-radius: 0;

    padding: 20px;

  }



  .about-culture-s2 {

    padding: 40px 0;

  }



  .about-culture-s2 .item {

    margin-top: 20px;

  }



  .about-culture-s2 .item .txt-box {

    width: 100%;

    padding: 20px;

    position: static;

  }



  .about-culture-s3 {

    padding: 0 5vw 40px;

  }



  .about-culture-s3 .items {

    margin-top: 20px;

    display: block;

  }



  .about-culture-s3 .item {

    width: 100%;

    margin-top: 20px;

  }

  .about-culture-s3 .item:nth-of-type(1) {

    margin-top: 0;

  }



  .about-culture-s3 .item .title {

    display: none;

  }



  .about-culture-s3 .item .hide {

    position: static;

    padding: 20px;

    opacity: 1;

    visibility: visible;

  }



  .about-culture-s3 .item h3 {

    text-align: left;

  }



  .about-culture-s3 .item p {

    text-align: left;

  }



  .about-culture-s4 a {

    position: static;

    margin: 20px auto 40px;

    display: block;

    width: 160px;

    line-height: 40px;


    font-size: 14px;

  }

}





