/* 引入 Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap');

/* 设置默认字体 */
body {
    font-family: "Roboto", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

/* 电脑端适配 */
@media (min-width: 1024px) {
  body {
    font-family: "Roboto", sans-serif;
  }
}

/* 手机端适配 */
@media (max-width: 768px) {
    body {
        font-family: "Roboto", sans-serif;
    }
}
body {
  width: 100%;
}
.main {
  overflow: hidden;
  width: 100%;
  display: block;
}
.content_box::after{
  clear: both;
}
.clear{
  clear: both;
}
.lineOne {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.bgc {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.morebtn{
  width: 150px;
  height: 43px;
  line-height: 43px;
  font-size: 18px;
  background: #244eaa;
  color: #ffffff;
  text-align: center;
  display: inline-block;
}

.index-more {
  -webkit-transform: perspective(1px) translateZ(0);
  -moz-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  -webkit-box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -moz-box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  position: relative;
  -webkit-transition-property: color;
  -o-transition-property: color;
  -moz-transition-property: color;
  transition-property: color;
  -webkit-transition-duration: 0.3s;
  -moz-transition-duration: 0.3s;
  -o-transition-duration: 0.3s;
  transition-duration: 0.3s;
  height: 60px;
  line-height: 60px;
  padding: 0;
}

.index-more:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: #0079c3;
  -webkit-border-radius: 8px ;
  -moz-border-radius: 8px ;
  border-radius: 8px ;
  -webkit-transform: scale(0);
  -moz-transform: scale(0);
  -ms-transform: scale(0);
  -o-transform: scale(0);
  transform: scale(0);
  -webkit-transition-property: transform;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  -o-transition-property: -o-transform;
  -moz-transition-property: transform, -moz-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform, -moz-transform, -o-transform;
  -webkit-transition-duration: 0.3s;
  -moz-transition-duration: 0.3s;
  -o-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-timing-function: ease-out;
  -moz-transition-timing-function: ease-out;
  -o-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}

.index-more a:hover {
  color: #ffffff;
  border-color: #ffffff;
}

.index-more a:hover:before {
  -webkit-transform: scaleY(1);
  -moz-transform: scaleY(1);
  -ms-transform: scaleY(1);
  -o-transform: scaleY(1);
  transform: scaleY(1);
}

.w1400 {
  max-width: 92%;
  margin: 0 auto;
  width: 1400px;
}
.header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 20;
  height: 103px;
  transition: all 0.5s;
}
.header .w1400 {
  position: relative;
  height: 100%;
  display: flex;
  justify-content: space-between;
}
.header .logo {
  width: 150px;
  height: 100%;
  display: block;
  position: relative;
  margin-left: 20px;
}
.header .logo img {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
}
.header .logo img.logoB {
  display: none;
}



.header .headerRight {
  height: 100%;
  flex: 1;
}

.header .headerRight .tel {
  width: 150px;
  height: 23px;
  background-position: left;
  padding-left: 35px;
  background-image: url("../images/tel_w.png");
  background-repeat: no-repeat;
  display: block;
  float: right;
  position: relative;
  top: 50%;
  font-size: 18px;
  color: #ffffff;
  font-weight: bold;
  transform: translateY(-50%);
}
.header .headerRight .nav {
  float: right;
  margin-right: 5px;
}
.header .headerRight .nav .bg {
  background-color: #f0f0f0;
  display: block;
  width: 100vw;
  height: 0;
  position: fixed;
  left: 0;
  z-index: 1;
  top: 96px;
}
.header .headerRight .nav .bg.on {
  height: 60px;
  transition: all 0.3s;
}
.header .headerRight .nav ul li {
  float: left;
  position: relative;
}
.header .headerRight .nav ul li .tits {
  font-size: 16px;
  line-height: 96px;
  color: #fff;
  display: block;
  padding: 0 40px;
  font-weight: bold;
  position: relative;
  z-index: 10;
}
.header .headerRight .nav ul li .tits:after {
  width: calc(100% - 36px);
  left: 18px;
  bottom: 0;
  height: 4px;
  background-color: #244eaa;
  content: '';
  position: absolute;
  opacity: 0;
  transition: opacity 0.2s;
}
.header .headerRight .nav ul li .mnav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  position: absolute;
  height: 60px;
  overflow: hidden;
  top: 100%;
  left: 18px;
  margin: 0;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all .3s linear;
  -o-transition: all .3s linear;
  transition: all .3s linear;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  width: 70vw;
}
.header .headerRight .nav ul li .mnav.lastNav {
  left: auto;
  right: 13px;
  justify-content: flex-end;
}
.header .headerRight .nav ul li .mnav dd {
  position: relative;
  z-index: 5;
  margin-right: 2.08333vw;
  top: -30px;
  transition: all 0.5s;
}
.header .headerRight .nav ul li .mnav dd:last-child {
  margin-right: 0;
}
.header .headerRight .nav ul li .mnav dd a {
  font-size: 16px;
  line-height: 60px;
  color: #666;
}
@media (min-width: 1024px) {
  .header .headerRight .nav ul li .mnav dd a:hover {
      color: #244eaa;
 }


  .header .headerRight .nav ul li:hover .tits {
      color: #244eaa !important;
 }
  .header .headerRight .nav ul li:hover .tits:after {
      opacity: 1;
 }
  .header .headerRight .nav ul li:hover .mnav {
      opacity: 1;
      top: 100%;
      visibility: initial;
      z-index: 99;
 }
  .header .headerRight .nav ul li:hover .mnav dd {
      top: 0;
 }
}
.header .headerRight .navClick {
  float: right;
  width: 22px;
  height: 18px;
  margin-top: 16px;
  display: none;
  margin-left: 10px;
}
.header .headerRight .navClick span {
  width: 100%;
  height: 2px;
  margin-bottom: 6px;
  background-color: #000;
  display: block;
  position: relative;
  transition: .3s;
  -webkit-transition: .3s;
}
.header .headerRight .navClick span:nth-child(3) {
  margin-bottom: 0;
}
.header .headerRight .navClick.on span:nth-child(1) {
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  top: 8px;
  right: 0px;
}
.header .headerRight .navClick.on span:nth-child(2) {
  display: none;
}
.header .headerRight .navClick.on span:nth-child(3) {
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  top: 0;
  right: 0;
}
@media (min-width: 1024px) {
  .header:hover {
      background-color: #fff;
      box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
 }
  .header:hover .logo img.logoB {
      display: block;
 }
  .header:hover .logo img.logoW {
      display: none;
 }


  .header:hover .headerRight .tel {
      background-image: url("../images/tel.png");
      color: #244eaa;
 }
  .header:hover .headerRight .nav ul li .tits {
      color: #000;
 }
  .header:hover .headerRight .nav ul li.on .tits {
      color: #244eaa;
 }
  .header:hover .headerRight .nav ul li.on .tits:after {
      opacity: 1;
 }
}
.header.open {
  background-color: #fff;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
}
.header.open .logo img.logoB {
  display: block;
}
.header.open .logo img.logoW {
  display: none;
}
.header.open .headerRight .search {
  background-image: url("../images/search.png");
}
.header.open .headerRight .tel {
  background-image: url("../images/tel.png");
}
.header.open .headerRight .nav ul li .tits {
  color: #000;
}
.header.open .headerRight .nav ul li.on .tits {
  color: #244eaa;
}

.header.open .headerRight .nav ul li.on .tits:after {
  opacity: 1;
}
.header.on {
  background-color: #fff;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  height: 80px;
}
.header.on .logo img.logoB {
  display: block;
}
.header.on .logo img.logoW {
  display: none;
}

.header.on .headerRight .search {
  background-image: url("../images/search.png");
}
.header.on .headerRight .tel {
  background-image: url("../images/tel.png");
  color: #244eaa;
}
.header.on .headerRight .nav .bg {
  top: 80px;
}
.header.on .headerRight .nav ul li .tits {
  color: #000;
  line-height: 80px;
}
.header.on .headerRight .nav ul li .mnav:before {
  top: 80px;
}
.header.on .headerRight .nav ul li.on .tits {
  color: #244eaa;
}
.header.on .headerRight .nav ul li.on .tits:after {
  opacity: 1;
}
@media (max-width: 1200px) {
  .header .headerRight .nav ul li .tits {
      padding: 0 12px;
      font-size: 15px;
 }
  .header .headerRight .search {
      margin-right: 0;
 }
}
@media (max-width: 1024px) {
  .header {
      height: 50px !important;
      background-color: #fff;
      box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
 }
  .header .logo {
      width: 80px;
 }
  .header .logo img.logoB {
      display: block;
 }
  .header .logo img.logoW {
      display: none;
 }
  .header .headerRight .search {
      width: 30px;
      background-image: url("../images/search.png");
 }
  .header .headerRight .tel {
      background-image: url("../images/tel.png");
      width: 30px;
 }
  .header .headerRight .nav {
      display: none;
      width: 100%;
      position: fixed;
      z-index: 15;
      border-top: 1px solid #eee;
      height: calc(100% - 50px);
      overflow-y: auto;
      box-sizing: border-box;
      top: 50px;
      left: 0;
      float: none;
      background-color: #fff;
 }
  .header .headerRight .nav ul {
      padding: 20px 4%;
 }
  .header .headerRight .nav ul li {
      width: 100%;
      float: none;
 }
  .header .headerRight .nav ul li .tits {
      color: #0c1729 !important;
      border-bottom: 1px solid #e5e5e5;
      padding: 0;
      height: auto;
      font-weight: 500;
      line-height: 40px !important;
      font-size: 16px;
 }
  .header .headerRight .nav ul li .tits:after {
      display: none !important;
 }
  .header .headerRight .nav ul li .mnav {
      display: block;
      position: relative;
      width: 100%;
      margin-left: 0 !important;
      left: 0;
      opacity: 1;
      visibility: inherit;
      height: auto;
      padding: 0;
      right: auto !important;
 }
  .header .headerRight .nav ul li .mnav dd {
      top: 0;
      display: inline-block;
      margin-right: 10px;
 }
  .header .headerRight .nav ul li .mnav dd a {
      color: #0c1729;
      line-height: 36px;
      font-size: 14px;
 }
  .header .headerRight .navClick {
      display: block;
 }
}

.index-banner {
  width: 100%;
  height: 768px;
  top: 0;
  left: 0;
  overflow: hidden;
}
.index-banner .bannerBox {
  width: 100%;
  height: 768px;
}
.index-banner .bannerBox .li {
  width: 100%;
  height: 768px;
  position: relative;
}
.index-banner .bannerBox .li .img {
  display: none;
  width: 100%;

}
.index-banner .bannerBox .li .video {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  object-fit: cover;
  z-index: 10;
}


.index-banner .bannerBox .p_info {
  position: absolute;
  top: 60%;
  left: 20%;
  padding-left: 10%;
  z-index: 22;
  display: block;
  transform: translate(-50%,-50%);
  box-sizing: border-box;
}

.index-banner .bannerBox .p_info_fivebox {
  width: 100%
}

.index-banner .bannerBox  .p_btitle {
  color: #fff;
  font-size: 2.2vw;
  line-height: 1.4;
  font-weight: bold;
  font-family: 'Impact';
  letter-spacing: 2px;
  text-shadow: 3px 0 10px rgba(0,0,0,0.2);

  text-align: left;
}



.index-banner .bannerBox  .p_cspan {
  position: relative;
  margin-top: 10px;
  font-size: 1.2vw;
  color: #fff;
  display: block;
  text-align: left;
}


.index-banner .scrollBox {
  position: absolute;
  left: 50%;
  bottom: 45px;
  transform: translateX(-50%);
}
.index-banner .scrollBox .t {
  font-size: 14px;
  line-height: 16px;
  font-family: 'MONR';
  color: #fff;
}
.index-banner .scrollBox .but {
  width: 24px;
  height: 38px;
  border-radius: 12px;
  border: 2px solid #fff;
  margin: 7px auto 0;
  position: relative;
  box-sizing: border-box;
}
.index-banner .scrollBox .but span {
  width: 2px;
  height: 10px;
  position: absolute;
  display: block;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #fff;
  animation: myScroll 1s linear infinite;
}
.index-banner .slick-dots li{
  width: 40px;
  height: 4px;
  border-radius: 0;
}
.index-banner .btns {
  position: absolute;
  bottom: 60px;
  left: 18%;
  z-index: 200;
  display: inline-flex;
}
.index-banner .btns .t {
  display: flex;
  align-items: center;
  opacity: 0.4;
  cursor: pointer;
}
.index-banner .btns .t span {
  width: 45px;
  text-align: center;
  display: inline-block;
  font-size: 16px;
  font-family: 'MONR';
  color: #fff;
}
.index-banner .btns .t i {
  width: 150px;
  height: 2px;
  background-color: #76797a;
  display: none;
  margin: 0 15px;
  position: relative;
  overflow: hidden;
  display: none;
}
.index-banner .btns .t i:after {
  width: 0;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: #fa0000;
  content: '';
}
.index-banner .btns .t.on {
  opacity: 1;
}
.index-banner .btns .t.on i:after {
  animation: myWidth 8s ease;
}

@media (max-width: 768px) {
  .index-banner {
      height: auto;
      margin-top: 50px;
      position: relative;
 }
  .index-banner .bannerBox {
      height: auto;
 }
  .index-banner .bannerBox .li {
      height: auto;
      background: none !important;
 }
  .index-banner .bannerBox .li .img {
      display: block;
 }
 .index-banner .bannerBox .p_info{
    left: 50%;
    padding-left: 0;
    width: 100%;
 }
 .index-banner .bannerBox .p_btitle{
  font-size: 5.2vw;
  text-align: center;
 }
 .index-banner .bannerBox .p_cspan{
  font-size: 3.5vw;
  text-align: center;
 }
  .index-banner .btns {
      bottom: 10px;
      left: 10px;
 }
  .index-banner .btns .t {
      margin-right: 15px;
 }
  .index-banner .btns .t span {
      font-size: 12px;
      width: auto;
 }
 
  .index-banner .scrollBox {
      bottom: 15px;
      display: none;
 }
  .index-banner .scrollBox .t {
      font-size: 12px;
 }
  .index-banner .scrollBox .but {
      width: 18px;
      height: 26px;
      border-radius: 9px;
      border-width: 1px;
 }
  .index-banner .scrollBox .but span {
      width: 1px;
 }
}


.indexTitle {
  text-align: left;
  color: #010101;
  border-left: 12px solid #296bef;
}
.indexTitle .tits {
  padding-left: 13px;
}
.indexTitle .tits .t{
  font-size: 36px;
  line-height: 45px;
  font-weight: bold;
  color: #000;
}
.indexTitle .tits .tx {
  font-size: 18px;
  line-height: 2;
  color: #000;
}

@media (max-width: 768px) {
  .indexTitle .tits {
      font-size: 22px;
      line-height: 24px;
 }
  .indexTitle .tit {
      font-size: 14px;
      line-height: 16px;
      margin-top: 5px;
 }
}

.index {
  width: 100%;
  background-color: #fff;
  z-index: 5;
  position: relative;
}
.index .box1 {
  /* padding-top: 4.2%;
  padding-bottom: 4.6%; */
  padding-top: 40px;
  padding-bottom: 30px;
}
.con-block {
	overflow: hidden;
	margin-top: 40px;
}
.con-block .fex-box {
  display: flex;
 
  justify-content: space-between;
}
.tabbox{
  margin-top: 20px;
}
.display-block{display:block;}
.display-none{display:none;}
.con-block .new-box{
	width: 45.71%;
  padding-top: 42px;
}
.con-block .new-box .new-titimg img{
  max-width: 100%;
}

.con-block .new-box .tabbox .tab-title{margin-bottom:10px;}
.con-block .new-box .tabbox .tab-title ul li{display:inline-block;font-weight:bold;cursor: pointer;margin-right: 10%;}
.con-block .new-box .tabbox .tab-title ul li.select{border-bottom:6px solid #1d51d2;color: #1d51d2;}
.con-block .new-box .tabbox .tab-title ul li.select a {color: #1d51d2;}
.con-block .new-box .tabbox .tab-title ul li:last-child{ margin-right: 0;}
.con-block .new-box .tabbox .tab-title ul li{padding: 12px 2px;font-size: 26px;}
.con-block .new-box .tabbox .tabbox .tab-title ul li{padding: 16px 30px;}
.con-block .new-box .news-list2 li{position: relative;padding-right: 90px;line-height: 2.7;}
.con-block .new-box .news-list2 li a {color: #333;}
.con-block .new-box .news-list2 li .title{white-space: nowrap;text-overflow: ellipsis;overflow: hidden;font-size: 20px; transition:.3s;}
.con-block .new-box .news-list2 li:hover .title a{color: #1d51d2;}
.con-block .new-box .news-list2 li .date{position: absolute;right: 0px;top: 10px;color: #929292;font-size: 14px;}
.con-block .about-box{
    width: 52.5%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.con-block  .about-box a{
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
  overflow: hidden;
  display: block;
}
.con-block  .about-box a img{
  width: 100%;
  max-height: 455px;
}

.con-block .about-box .rtext{
  background-color: #f6f6f6;
  padding: 4% 5%;
}

.con-block  .about-box .rtit{
  font-size: 24px;
  color: #333;
  line-height: 1.33;
}
.con-block  .about-box .rtit:hover{
  color: #244eaa;
}
.con-block  .about-box .rdesc{
  font-size: 20px;
  color: #666;
  font-family:Arial, Helvetica, sans-serif;
  line-height: 1.75;
  margin-top: 30px;
  overflow: hidden;
  overflow: hidden;
  text-overflow: ellipsis;
  display: box;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}
.con-block  .about-box .more{
  margin-top: 10px;
  line-height: 32px;
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
  font-size: 16px;
  display: inline-block;
  width: 120px;
  border: 2px solid #5375c0;
  text-align: center;
  color: #5375c0;
  transition:.3s linear;
}
.con-block .about-box .more:hover{
  background-color: #5375c0;
  color: #fff;
}
.con-block  .about-box .swiper-pagination{
  position: absolute;
  bottom: 55px;
  right: 50px;
  text-align: right;
  width: auto;
}
.con-block  .about-box .swiper-pagination-bullet{
  width: 15px;
  height: 2px;
  background-color: rgba(0, 0, 0, 1);
  border-radius: unset;
  -webkit-border-radius: unset;
  -moz-border-radius: unset;
  -ms-border-radius: unset;
  -o-border-radius: unset;
}
.con-block  .about-box .swiper-pagination-bullet.swiper-pagination-bullet-active{
  background-color: #5375c0;
}

.hover_img{
  overflow: hidden;
}
.hover_img:hover img{
  transform: scale(1.1);
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
}
.hover_img img{
  transition: all .5s;
  -webkit-transition: all .5s;
  -moz-transition: all .5s;
  -ms-transition: all .5s;
  -o-transition: all .5s;
}


.index .box2{
  background: url('../images/index_about_bg.jpg');
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
}

.index .box2 .content_box{
	padding-top: 100px;
}
.index .box2 .content_box .fex-box{
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	flex-direction: row;
  margin-top: 40px;
}
.index .box2 .content_box .fex-box .left {
	flex: 0 0 42.9%;
}
.index .box2 .content_box .fex-box .left .con .t1{
	font-size: 5vw;
  font-weight: bold;
  color: #244eaa;

  line-height: 1.2;
}
.index .box2 .content_box .fex-box .left .con .t2{
	font-size: 5vw;
  font-weight: bold;
  color: #000;

  line-height: 1.2;
  text-align: right;
}
.index .box2 .content_box .fex-box .left .con .t3{
	font-size: 5vw;
  font-weight: bold;
  color: #244eaa;

  line-height: 1.2;
  padding-left: 90px;
}
.index .box2 .content_box .fex-box .right {
	flex: 0 0 51.42%;
}
.index .box2 .content_box .fex-box .right .comp-content .tit{
  font-size: 30px;
  color: #000000;
  font-weight: 700;
  padding: 20px 0;
}
.index .box2 .content_box .fex-box .right .comp-content .desc{
  font-size: 20px;
  color: #000000;
  line-height: 2;
  text-indent: 2em;
  font-weight: 400;
  margin-top: 10px;
}

.index .box2 .content_box .fex-box .right .comp-content .more{
  margin-top: 10px;
  line-height: 32px;
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
  font-size: 16px;
  display: inline-block;
  width: 120px;
  border: 2px solid #5375c0;
  text-align: center;
  color: #5375c0;
  transition:.3s linear;
  margin-right: 10px;
  float: right;
}
.index .box2 .content_box .fex-box .right .comp-content .more:hover{
  background-color: #5375c0;
  color:#fff;
}

.index .box2 .content_box .con-img{
  height: 365px;
  padding-top: 50px;
  margin-bottom: 40px;
  background-image: url('../images/indexab.png');
  background-size: 100%;
  background-position: bottom center;
  background-repeat: no-repeat;
  position: relative;
  
}

.index .box2 .content_box .con-img img{
  max-width: 100%;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}


.index .box2 .numul{
  margin-top: 50px;
  display: flex;
  flex-direction: row;
}
.index .box2 .numul .li{
  float: left;
  width: 25%;
  position: relative;
}

.index .box2 .numul .li .liInner .num {
  font-size: 24px;
  line-height: 50px;
  color: #5a5959;
  text-align: center;
}
.index .box2 .numul .li .liInner .num .counter{
  font-size: 45px;
  color: #244eaa;
}
.index .box2 .numul .li .liInner p{
  color: #000;
  font-size: 20px;
  margin-top: 5px;
  text-align: center;
}
.index .box2 .numul .li:after{
  position: absolute;
  content: ' ';
  height: 100%;
  width: 1px;
  right: 0;
  top: 0;
  background: url('../images/line.png') no-repeat center;
  background-size: contain;
}
.index .box2 .numul li:nth-child(4):after{
  display: none;
}


.index .box2 .top{
  display: flex;
  justify-content: space-between
}
.index .box2 .top .leftpro {
  display: inline-block;
  width: 39.33%;
}
.index .box2 .top .leftpro .protitle{
  border-bottom: 1px solid #4f4f50;
  padding-bottom: 24px;
}
.index .box2 .top .leftpro .protitle .titen{
  width: 310px;
  height: 37px;
  background: url('../images/index_product_title.png');
  background-repeat: no-repeat;
}
.index .box2 .top .leftpro .protitle .tit{
  font-size: 45px;
  color: #000000;
  display: inline-block;
  height: 70px;
  line-height: 1;
}

.index .box2 .top .leftpro .prodesc{
  margin-top: 87px;
  margin-bottom: 70px;
}
.index .box2 .top .leftpro .prodesc .pname{
  font-size: 30px;
  color: #000000;
  height: 50px;
  line-height: 50px;
} 
.index .box2 .top .leftpro .prodesc .pdesc{
  font-size: 18px;
  color: #000000;
  line-height: 26px;
  width: 70%;
} 
.index .box2 .top .rightpro {
  width: 52.4%;
}
.index .box2 .top .rightpro .img{
  overflow: hidden;
  transition: all 600ms;
}
.index .box2 .top .rightpro .img:hover img{
  transform: scale(1.05);
}
.index .box2 .top .rightpro .img img{
   max-width: 100%;
   transition: all 600ms;
}


.index .box2 .proclass-swiper{
  overflow: hidden;
  margin-top: 40px;
  position: relative;
}

.index .box2 .proclass-swiper .swiper-button-prev{
  left: 0;
}
.index .box2 .proclass-swiper .swiper-button-next{
  right: 0;
}
.index .box2 .proclass-swiper .swiper-button-prev,.index .box2 .proclass-swiper .swiper-button-prev:after,
.index .box2 .proclass-swiper .swiper-button-next,.index .box2 .proclass-swiper .swiper-button-next:after
{
  width: 40px;
  height: 32px;
  font-size: 12px;
  text-align: center;
  line-height: 32px;
  background: #fff;
  color: #000;
}
.index .box2 .proclass-swiper .swiper-slide .img{
  overflow: hidden;
}
.index .box2 .proclass-swiper .swiper-slide:hover .img img {
  transform: scale(1.05);
}
.index .box2 .proclass-swiper .swiper-slide .img img{
  width: 100%;
  max-width: 100%;
  transition: all 600ms;
}
.index .box2 .proclass-swiper .swiper-slide .xx{
  height: 46px;
  line-height: 46px;
  font-size: 16px;
  color: #000000;
  background: #d6d6d8;
  padding: 0 30px 0 8px;
  display: flex;
  justify-content: space-between;
}
.index .box2 .proclass-swiper .swiper-slide .xx .desc{
  width: 70%;
  display: inline-block;
  overflow: hidden;
  transition: all 0.5s;
}
.index .box2 .proclass-swiper .swiper-slide:hover .xx {
  color: #244eaa;
}


.footer {
  background-color: #2b59b3;
  padding-top: 40px;
  position: relative;
  z-index: 15;
}

.footer  > .w1400 .container{
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  margin-bottom: 20px;
  justify-content: space-between;
}
.footer .container .left{
  width: 45%;
}
.footer .container .left h3{
  font-size: 30px;
  color: #fff;
  font-weight: bold;
  line-height: 1;
  padding-bottom: 10px;
}
.footer .container .left .nav {
  margin-top: 20px;
}
.footer .container .left .nav .nat {
  font-size: 22px;
  color: #fff;
  font-weight: bold;
  line-height: 2;

}
.footer .container .left .nav dl dt {
  font-size: 18px;
  display: inline-block;
  margin-right: 40px;
  position: relative;
}
.footer .container .left .nav:last-child dl dt{
  margin-right: 20px;
}

.footer .container .left .nav dl dd {
  line-height: 30px;
  font-size: 14px;
  color: #fff;
  opacity: 0.8;
 
}

.footer .container .left .nav dl dt a{
  color: #fff;
  line-height: 2;
  display: inline-block;
 
}
.footer .container .left .nav dl dt:hover:after{
  width: calc(100%);
  left: 0;
  bottom: 0;
  height: 1px;
  background-color: #fff;
  content: '';
  position: absolute;
  opacity: 1;
  transition: opacity 0.2s;
}
.footer .siteinfo{
  float: right;
  width: 45%;
  box-sizing: border-box;
  display: flex;
  margin-top: 20px;
  justify-content: space-around;
}
.footer .siteinfo .fl {
  margin-bottom: 20px;
  font-size: 30px;
  color: #fff;
}
.footer .siteinfo .fl .kh{
  line-height: 2;
  font-size: 30px;
  color: #fff;
}

.footer .siteinfo .fl .cet{
  font-size: 22px;
  line-height: 2;
  font-weight: bold;
  color: #fff;
}


.footer .siteinfo .fl dl dt{
  font-size: 16px;
  color: #fff;
  line-height: 2.5;
}

.footer .siteinfo .fr{
  display: flex;
  align-items: center;

}
.footer .siteinfo .fr .ewm img{
  max-width: 100%;
}

.footer .copyright-bg .container{
  margin-right: auto;
  margin-left: auto;
  padding: 15px;
  margin-bottom: 0;
}

.copyright-bg {
  background-color: #222;
  font-size: 18px;
  line-height: 2;
}
.copyright-bg .copyright  {
  text-align: center;
  color: #cccccc;
  font-size: 16px;
}
.copyright-bg .copyright  a{
  color: #cccccc;
  
}
.text-grayLight {
  color: #cccccc;
  text-align: center;
}
.text-grayLight a{
  color: #cccccc;
}
.banner {
  width: 100%;
  height: 25vw;
  position: relative;
  overflow: hidden;
  animation:myscale 5s infinite;
    -webkit-animation:myscale 5s infinite;
    animation-iteration-count:1;
    -webkit-animation-iteration-count:1;
}
@keyframes myscale{
  from{transform:scale(1.1);
      -webkit-transform:scale(1.1);
      -moz-transform:scale(1.1);
      -ms-transform:scale(1.1);
      -o-transform:scale(1.1);}
to{transform:scale(1);
  -webkit-transform:scale(1);
  -moz-transform:scale(1);
  -ms-transform:scale(1);
  -o-transform:scale(1);}
}
.banner .con {
  width: 100%;
  position: absolute;
  top: 14.5vw;
  left: 0;
  color: #fff;
  text-align: center;
}
.banner .con .subbanner_lg{
  display: inline-block;
  background: #ff6600;
  font-size: 1.8vw;
  line-height: 2.6vw;
  padding: 0 20px;
  font-weight: bold;
  border-radius: 25px;
  margin-bottom: 1vw;
}
.banner .con .subbanner_title{
  font-size: 2.5vw;
  line-height: 2.6vw;
  color: #fff;
  font-weight: 500;
}
.banner .con .subbanner_en{
  font-size: 1.2vw;
  line-height: 2.2vw;
  color: #fff;
  font-family: 'Impact';
}
.banner .inside_Nav{
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
}
.banner .inside_Nav a{
  font-size: 20px;
  font-weight: 100;
  line-height: 75px;
  color: #fff;
  margin-right: 5.98958vw;
  position: relative;
  display: inline-block;
}
.banner .inside_Nav a:after {
  width: 0;
  left: 50%;
  bottom: 0;
  height: 4px;
  content: '';
  background-color: #1b3c81;
  transition: 0.5s;
  position: absolute;
}

.banner .inside_Nav a.on:after {
  width: 100%;
  left: 0;
}
.banner .inside_Nav a:hover:after {
  width: 100%;
  left: 0;
}
.banner .inside_Nav{
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
}
.banner .inside_Nav a{
  font-size: 20px;
  font-weight: 100;
  line-height: 75px;
  color: #fff;
  margin-right: 5.98958vw;
  position: relative;
  display: inline-block;
}
.banner .inside_Nav a:after {
  width: 0;
  left: 50%;
  bottom: 0;
  height: 4px;
  content: '';
  background-color: #1b3c81;
  transition: 0.5s;
  position: absolute;
}

.banner .inside_Nav a.on:after {
  width: 100%;
  left: 0;
}
.banner .inside_Nav a:hover:after {
  width: 100%;
  left: 0;
}
/* 关于我们 */
.aboutContent .box1 {
  padding-top: 53px;
  padding-bottom: 120px;
}
.aboutContent .box1 .pageTitle{
  font-size: 36px;
  color: #000000;
  font-weight: 400;
  height: 96px;
  line-height: 96px;
  position: relative;
  margin-bottom: 30px;
}
.aboutContent .box1 .pageTitle:after{
  position: absolute;
  width: 84px;
  height: 7px;
  background: #244eaa;
  bottom: 0;
  left: 0;
  content:' '
}
.aboutContent p{
  line-height: 32px;
  font-size: 18px;
  letter-spacing: 2px;
}
.aboutContent .lbox{
  width: 50%;
  box-sizing: border-box;
  padding-right: 10px;
}
.aboutContent .lbox .numul{
  margin-top: 40px;
  display: flex;
  flex-direction: row;
}
.aboutContent .lbox .numul .item{
  float: left;
  width: 25%;
  position: relative;
}

.aboutContent .lbox .numul .item .liInner .num {
  font-size: 24px;
  line-height: 50px;
  color: #5a5959;
  text-align: center;
}
.aboutContent .lbox .numul .item .liInner .num .counter{
  font-size: 48px;
  color: #244eaa;
}
.aboutContent .lbox .numul .item .liInner p{
  color: #000;
  font-size: 20px;
  margin-top: 5px;
  text-align: center;
}
.aboutContent .lbox .numul .item:after{
  position: absolute;
  content: ' ';
  height: 100%;
  width: 1px;
  right: 0;
  top: 0;
  background: url('../images/line.png') no-repeat center;
  background-size: contain;
}
.aboutContent .lbox .numul .item:nth-child(4):after{
  display: none;
}
.aboutContent .rbox{
  width: 50%;
  box-sizing: border-box;
}
.aboutContent .rbox .aboutimg{
  overflow: hidden;
  margin-left: 53px;
}
.aboutContent .rbox .aboutimg img{
  width: 100%;
  transition: all .7s;
  -moz-transition: all .7s;
  -webkit-transition: all .7s;
}
.aboutContent .rbox .aboutimg:hover img{
  transform: scale(1.2);
  -moz-transform: scale(1.2);
  -webkit-transform: scale(1.2);
}
.aboutContent .rbox .abimg-listbox .abimg-swiper {
  overflow: hidden;
}
.aboutContent .rbox .abimg-listbox .swiper-slide .img {
  overflow: hidden;
}
.aboutContent .rbox .abimg-listbox .swiper-slide .img img{
  width: 100%;
  transition: all .7s;
  -moz-transition: all .7s;
  -webkit-transition: all .7s;
}
.aboutContent .rbox .abimg-listbox .swiper-slide:hover .img img{
  transform: scale(1.2);
  -moz-transform: scale(1.2);
  -webkit-transform: scale(1.2);
}
.aboutContent .rbox .abimg-listbox {
  margin-left: 50px;
  padding-left:40px;
  padding-right:40px;
  margin-top: 23px;
  overflow: hidden;
}
.aboutContent .rbox .abimg-listbox .next{
  width: 30px;
  height: 30px;
  border-radius: 50%;
  line-height: 30px;
  background: #d6d7dd;
  color: #ffffff;
  font-size: 20px;
  text-align: center;
  position: absolute;
  right: 0;
  top: 50%;
  background: url('../images/tab-next.png') center no-repeat;
}
.aboutContent .rbox .abimg-listbox .prev{
  width: 30px;
  height: 30px;
  border-radius: 50%;
  line-height: 30px;
  background: #d6d7dd;
  color: #ffffff;
  font-size: 20px;
  text-align: center;
  position: absolute;
  left: 0;
  top: 50%;
  background: url('../images/tab-prev.png') center no-repeat;
}

.aboutContent .box2{
  background: url('../images/whbg.jpg') no-repeat;
  padding-top: 130px;
  padding-bottom: 330px;
}
.aboutContent .box2 .pageTitle{
  font-size: 45px;
  color: #000000;
  font-weight: 200;
  height: 80px;
  line-height: 80px;
  text-align: center;
}
.aboutContent .box2 .pageDesc{
  font-size: 16px;
  color: #000000;
  font-weight: 200;
  height: 32px;
  line-height: 32px;
  text-align: center;
  opacity: 0.8;
}
.aboutContent .box2 .itemBox{
  display: flex;
  justify-content: space-between;
  margin-top: 85px;
}
.aboutContent .box2 .itemBox .item {
  width: 30.8%;
  position: relative;
}


.aboutContent .box2 .itemBox .item .img{
  width: 100%;
  overflow: hidden;
}
.aboutContent .box2 .itemBox .item .img img{
  width: 100%;
  transition: all .5s;
}

.aboutContent .box2 .itemBox .item .con{
  position: absolute;
  height: 162px;
  width: 90%;
  background: #ffffff;
  bottom: -122px;
  left: 5%;
  padding: 30px 20px;
  box-sizing: border-box;
  transition: all .7s;
  -moz-transition: all .7s;
  -webkit-transition: all .7s;
}


.aboutContent .box2 .itemBox .item .con .tits{
  font-size: 20px;
  color: #000000;
  line-height: 40px;
  position: relative;
  overflow: hidden;
}

.aboutContent .box2 .itemBox .item .con .tits:after {
  width: 100%;
  height: 2px;
  background-color: #cccccc;
  position: absolute;
  bottom: 0;
  left: 0;
  content: '';
}

.aboutContent .box2 .itemBox .item .con .tits:before {
  width: 100%;
  height: 2px;
  background-color: #244eaa;
  position: absolute;
  bottom: 0;
  left: -100%;
  content: '';
  z-index: 5;
  transition: 0.5s;
}
.aboutContent .box2 .itemBox .item:hover .con .tits:before {
  left: 0;
}

.aboutContent .box2 .itemBox .item .con .desc{
  font-size: 16px;
  color: #000000;
  line-height: 24px;
  height: 48px;
  overflow: hidden;
  margin: 16px 0;
}
.aboutContent .box2 .itemBox .item:hover .img img{
  transform: scale(1.2);
  -moz-transform: scale(1.2);
  -webkit-transform: scale(1.2);
}

.box3 {
  background: url('../images/server_bg.jpg') no-repeat top center;
  padding-top: 80px;
}
.white{
  border-left: 12px solid #ffffff;
  display: flex;
  justify-content: space-between;
}
.white .tits .t{
  color: #ffffff;
}
.white .tits .tx{
  color: #ffffff;
}

.white .more{
  display: flex;
  align-items: center;
}
.white .more i{
  width: 94px;
  height: 55px;
  text-align: center;
  line-height: 55px;
  background: #fff;
  background-image: url('../images/right2.png');
  background-repeat: no-repeat;
  background-position: center;
  border-bottom-left-radius: 10px;
  border-top-right-radius: 10px;
}

.white .more .fa-arrow-right:before{
  color: #2856b1;
  font-size: 40px;
}

.white .more .border{
  width: 80px;
  height: 1px;
  background: #ffffff;
  margin: 0 14px;
}
.white .more a{
  font-size: 24px;
  color: #ffffff;
  font-weight: bold;
  padding: 5px;
}
.server_block .list {
  margin-top: 125px;
  padding-bottom: 250px;
}
.server_block .list ul{
  display: flex;
  justify-content: space-between;
}
.server_block .list ul li {
    width: 24.9%;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #fff;
    padding: 4% 0;
    box-sizing: border-box;
    transition: all 500ms ease;
}

.server_block .con-link{
  padding: 10px 0;
}
.server_block .fa-angle-right{
  width: 41px;
  height: 41px;
  text-align: center;
  line-height: 41px;
  border-radius: 50%;
  border: 1px solid #000;
}

.server_block .fa-angle-right:before{
  color: #000;
  font-size: 40px;
}

.con-tit{
  font-size: 30px;
  color: #000;
  font-weight: 400;
  line-height: 1.5;
  transition: all 100ms ease;
}
.con-link img{
  width: 65px;
}

.server_block .list ul li:first-child{
  border-bottom-left-radius: 20px;
}
.server_block .list ul li:nth-last-child(1){
  border-top-right-radius: 20px;
}
.server_block .list ul li.on{
  background: #296cef;
}

.server_block .list ul li.on .con-tit{
  color: #fff;
  font-weight: bold;
}
.server_block .list ul li .wimg{
  display: none;
  transition:all ease 300ms; 
  -webkit-transition: all ease 300ms;
  
}
@-webkit-keyframes rotation{

  from {-webkit-transform: rotateY(0deg);}
  
  to {-webkit-transform: rotateY(360deg);}
  
  }
.server_block .list ul li .zimg{
  display: block;
  transition:all ease 300ms;
  -webkit-transition: all ease 300ms;
}
.server_block .list ul li.on .zimg{
  display: none;
}
.server_block .list ul li.on .wimg{
  display: block;
  animation: rotation 3s linear infinite;
  -moz-animation: rotation 2s linear infinite;
  -webkit-animation: rotation 2s linear infinite;
  -o-animation: rotation 2s linear infinite;
}
.server_block .list ul li.on .fa-angle-right{
  border: 1px solid #fff;
}
.server_block .list ul li.on .fa-angle-right:before{
  color: #fff;
}

.box4{
  position: relative;
}
.box4:after{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 60%;
  background: #244eaa;
}
.dtjs_block{
  position:sticky;
  z-index: 99;
}
.box4 .dtjs_block {
  padding: 50px 0;

}
.box4 .dtjs_block .dtjs_con{
  
  margin-top: 68px;
  position: relative;
  background: url('../images/wushu.png') no-repeat left center;
}
.box4 .dtjs_block .dtjs_con .w1400{

  padding-top: 90px;

}
.box4 .dtjs_block .dtjs_con::after {
  content: '';
  z-index: -1;
  position: absolute;
  top: 0;
  right: 11%;
  width: 100%;
  height: 100%;
  background: #fff;
  box-shadow: 5px 4px 10px #919191;
}
.box4 .dtjs_block .dtjs_con .top {
  display: flex;
  justify-content: space-between;
}
.box4 .dtjs_block .dtjs_con .top .left-box{
  width: 40%;
  padding: 8px;
}

.box4 .dtjs_block .dtjs_con .top .right-box{
  width: 57%;
  text-align: center;
  padding: 0 50px;
  box-sizing: border-box;
}
.box4 .dtjs_block .dtjs_con .top .right-box img{
  width: 648px;
  height: 410px;
  max-width: 100%;
}
.box4 .dtjs_block .dtjs_con .top .left-box .tit{
  margin-top: 70px;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
.box4 .dtjs_block .dtjs_con .top .left-box .tit a{
  font-size: 30px;
  color: #000000;
  font-weight: bold;
  line-height: 1.5;
 
}
.box4 .dtjs_block .dtjs_con .top .left-box .desc{
  font-size: 20px;
  color: #000000;
  line-height: 42px;
  margin-top: 32px;
}

.box4 .dtjs_block .dtjs_con .top .left-box .morebtn{
  font-size: 20px;
  color: #244eaa;
  line-height: 2;
  background: #fff;
  border: 1px solid #244eaa;
  margin-top: 32px;
  -webkit-transition: all 0.4s ease-out 0s;
  -moz-transition: all 0.4s ease-out 0s;
  -ms-transition: all 0.4s ease-out 0s;
  -o-transition: all 0.4s ease-out 0s;
  transition: all 0.4s ease-out 0s;
}
.box4 .dtjs_block .dtjs_con .top .left-box .morebtn:hover{
  background: #244eaa;
  color: #fff;
  border-color: #244eaa;
}
.box4 .dtjs_block .dtjs_con .list{
  padding: 108px 16px;
}
.box4 .dtjs_block .dtjs_con .list ul li{
   float: left;
   width: 30%;
   background: #fff;
   box-shadow:0px 2px 20px #a7b6c5;
   height: 205px;
   margin-right: 5%;
   padding: 60px 40px 25px;
   box-sizing: border-box;
}
.box4 .dtjs_block .dtjs_con .list ul li:nth-last-child(1){
  margin-right: 0;
}

.box4 .dtjs_block .dtjs_con .list ul li h5{
  font-size: 26px;
  font-weight: bold;
  color: #000;
  line-height: 2;
  white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
  position: relative;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.box4 .dtjs_block .dtjs_con .list ul li:hover h5{
  color: #244eaa;
}
.box4 .dtjs_block .dtjs_con .list ul li h5::after{
  content: '';
  display: block;
  width: 64px;
  height: 8px;
  background: #244eaa;
}
.box4 .dtjs_block .dtjs_con .list ul li .date{
  font-size: 24px;
  color: #585858;
  line-height: 1;
  margin-top: 20px;
}

/* 案例 */
.casesContent {
  padding-top: 115px;
  padding-bottom: 108px;
  background: url('../images/case_bg.jpg') no-repeat;
  background-position: top center;
  box-sizing: border-box;
}
.casesContent .pageTitle{
  font-size: 45px;
  color: #000000;
  font-weight: 100;
  height: 50px;
  line-height: 50px;
  text-align: center;
}
.casesContent .pageDesc{
  font-size: 16px;
  color: #000000;
  font-weight: 200;
  height: 32px;
  line-height: 32px;
  text-align: center;
  opacity: 0.8;
}
.casesContent .listbox {
  margin-top: 72px;
}
.casesContent .listbox .list{
 display: flex;
 flex-wrap: wrap;
 /* justify-content: space-between; */
}

.casesContent .listbox .list .item {
  width: 33%;
  display: inline-block;
  position: relative;
  margin-bottom: 5px;
  margin-right: 0.5%;
}
.casesContent .listbox .list .item:nth-child(3n+3) {
  margin-right: 0;
}
.casesContent .listbox .list .item .img{
  overflow: hidden;
}
.casesContent .listbox .list .item .img img{
  width: 100%;
  -webkit-transition: all 1s;
  -moz-transition: all 1s;
  -o-transition: all 1s;
  transition: all 1s;
}

.casesContent .listbox .list .item:hover .img img{
  transform: scale(1.2);
  -moz-transform: scale(1.2);
  -webkit-transform: scale(1.2);
}
.casesContent .listbox .list .item .con{
  height: 70px;
  line-height: 70px;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background-image: linear-gradient(transparent -20%,#000000);
}
.casesContent .listbox .list .item .con .tits{
  text-align: center;
  font-size: 17px;
  color: #ffffff;
}


/* 新闻 */
.newsContent {
  padding-top: 115px;
  padding-bottom: 108px;
}
.newsContent .pageTitle{
  font-size: 45px;
  color: #000000;
  font-weight: 100;
  height: 50px;
  line-height: 50px;
  text-align: center;
}
.newsContent .pageDesc{
  font-size: 16px;
  color: #000000;
  font-weight: 200;
  height: 32px;
  line-height: 32px;
  text-align: center;
  opacity: 0.8;
}
.newsContent .listbox{
  margin-top: 60px;
}
.newsContent .item {
  width: 100%;
  display: flex;
  position: relative;
  background-color: #f7f7f7;
  padding: 2.1% 14.72% 2.1% 2.1%;
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
  align-items: center;
  justify-content: space-between;
  box-sizing: border-box;


}
.newsContent .item:not(:first-child){
    margin-top: 30px;
}

.newsContent .item img{
  transition: all .5s;
  -webkit-transition: all .5s;
  -moz-transition: all .5s;
  -ms-transition: all .5s;
  -o-transition: all .5s;
  width: 100%;
}
.newsContent .item:hover img{
  transform: scale(1.1);
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
}
.newsContent .item:hover{
  box-shadow: 0 0 15px rgba(0, 0, 0, .2);
}

.newsContent .item .con{
  padding-left: 5%;
  flex: 1;
}
.newsContent .item .con .tits{
  font-size: 24px;
  color: #2e312c;
  font-weight: 400;
  position: relative;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.4;
}

.newsContent .item .con .desc{
  font-size: 16px;
  color: #666666;
  text-overflow: -o-ellipsis-lastline;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  line-height: 1.875;
}
.newsContent .item .con .time{
  font-size: 16px;
  color: #1c3f9b;
  margin: 20px 0 25px;
}
.newsContent .item .more{
  position: absolute;
  right: 30px;
  top: 50%;
  transform: translate(0,-50%);
  -webkit-transform: translate(0,-50%);
  -moz-transform: translate(0,-50%);
  -ms-transform: translate(0,-50%);
  -o-transform: translate(0,-50%);
  font-size: 16px;
  color: #333333;
  background-image: url(../images/more.png);
  background-position: center right;
  padding-right: 30px;
  background-repeat: no-repeat;
}

.newsContent .item:hover .more{
  color: #1c3f9b;
  background-image: url(../images/moreb.png);
}


.newsContent .item .cl{
  width: 23.8%;
}
.newsContent .item .img{
  overflow: hidden;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}
.newsContent .item .img img{
  width: 100%;
  height: 100%;
  -webkit-transition: all 1s;
  -moz-transition: all 1s;
  -o-transition: all 1s;
  transition: all 1s;
}
.newsContent .item:hover .img img{
  width: 100%;
  height: 100%;
  -webkit-transition: all 1s;
  -moz-transition: all 1s;
  -o-transition: all 1s;
  transition: all 1s;
}


/* 新闻列表2 */
.corrup01{
  padding-top: 115px;
  padding-bottom: 108px;
}
.corrup01 .pageTitle{
  font-size: 45px;
  color: #000000;
  font-weight: 700;
  height: 50px;
  line-height: 50px;
  text-align: center;
}
.corrup01 .pageDesc {
  font-size: 16px;
  color: #000000;
  font-weight: 200;
  height: 32px;
  line-height: 32px;
  text-align: center;
  opacity: 0.8;
}

.corrup01 .content{
  margin-top: 30px;
}

.corrup01 .clist{
  padding-top: 70px;
  padding-bottom: 60px;
}
.corrup01 .item{
  display: block;
  padding: 30px 130px 40px 30px;
  background-color: #f7f7f7;
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
  margin-bottom: 35px;
  display: flex;
  justify-content: space-between;
  padding-right: 130px;
  position: relative;
  align-items: center;
}
.corrup01 .item .more{
  position: absolute;
  right: 30px;
  top: 50%;
  width: 100px;
  background-image: url(../images/more.png);
  background-position: center right;
  background-repeat: no-repeat;
  transform: translate(0,-50%);
  -webkit-transform: translate(0,-50%);
  -moz-transform: translate(0,-50%);
  -ms-transform: translate(0,-50%);
  -o-transform: translate(0,-50%);
}
.corrup01 .item .cl{
  width: auto;
  padding: 0 30px;
  border-right: 1px solid #eee;
  
}
.corrup01 .item .con {
  flex: 1;
  padding-left: 30px;
  padding-right: 15px;
}
.corrup01 .item .con .tits {
  font-size: 24px;
  color: #2e312c;
  font-weight: 400;
}
.corrup01 .item  .day{
  font-size: 54px;
  font-weight: 700;
  line-height: 1;
  opacity: .5;
  color: #666666;
}
.corrup01 .item  .time{
  margin-top: 20px;
  font-size: 16px;
  color: #333333;
  line-height: 1;
  opacity: .5;
}

.corrup01 .item .desc{
  font-size: 16px;
  color: #666;
  font-family: "HarmonyOS_Sans_SC_Light";
  margin-top: 30px;
  max-width: 900px;

  display: -webkit-box;
  word-break: break-all;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}
.corrup01 .item:hover .more{
  background-image: url(../images/moreb.png);
  color: #1c3f9b;
}
.corrup01 .item:hover .day{
  color: #1c3f9b;
  opacity: 1;
}
.corrup01 .item:hover .time{
  color: #1c3f9b;
}
.corrup01 .item:hover .tits{
  color: #1c3f9b;
}



/* 地图 */
.map{
  background: #ffffff;
  padding-top: 132px;
  padding-bottom: 178px;
}
#allmap {
  width: 100%;
  height: 410px;
 
}
.base_source{
  padding: 80px 0;
}

.base_source .cbom{
  padding: 80px 0;
}
.base_source .btop{
  display: flex;
  align-items: center;
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
  background-color: #f7f7f7;
  margin-bottom: 60px;
}
.base_source .btop .bleft{
  width: 50%;
}
.base_source .btop .bright{
  width: 50%;
  padding: 5%;
  box-sizing: border-box;
}
.base_source .btop .fs{
  font-size: 32px;
  line-height: 1.2;
}
.base_source .btop .imgbox{
  padding: 5%;
  box-sizing: border-box;
}
.base_source .btop .imgbox img{
  max-width: 100%;
  border-radius: 15px;
}
.base_source .btop .edit{
  font-size: 16px;
  color: #333333;
  line-height: 1.875;
  margin-top: 12.2%;
}


.base_source .blist{
  display: flex;
  flex-wrap: wrap;
  padding: 80px 0;
}
.base_source .blist .bitem{
  width: 48%;
  margin-bottom: 30px;
}
.base_source .blist .bitem:not(:nth-child(2n+1)){
  margin-left: 4%;
}
.base_source .blist .bitem .tit{
  position: absolute;
  left: 30px;
  bottom: -45px;
  background-color: #1c3f9b;
  padding: 30px;
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
  color: #fff;
  font-size: 26px;
  line-height: 1.2;
}
.base_source .blist .bitem .bimg{
  position: relative;
}
.base_source .blist .bitem .bimg img{
  border: none;
  max-width: 100%;
  vertical-align: middle;
  transition: 0.3s;
}
.base_source .blist .bitem .cedit{
  margin-top: 90px;
  font-size: 16px;
  color: #333333;
  line-height: 1.875;
}



/* 子页当前位置 */
.home-cur {
  height: 56px;
  line-height: 56px;
  background: #ffffff;
}
.home-cur .position{
  float: right;
  font-size: 16px;
}
.home-cur .w1400:after{
  clear: both;
}
.home-cur .position a{
  color: #000; 
}


.productContent {
  /* background: #f5f5f5; */
  /* padding: 30px 0; */
}
.prolist{
  background: #f5f5f5;
  padding: 30px 0;
}

.go_top{
  width: 50px;
  height: 50px;
  background-color: #1c3f9b;
  position: fixed;
  right: 15px;
  bottom: 15px;
  border-radius: 50%;
  box-shadow: 0 0 2px 1px rgba(255,255,255,1);
  z-index: 20;
}
.go_top::before{
  content: '';
  display: block;
  position: absolute;
  top: 19px;
  border-bottom: 2px solid #fff;
  border-left: 2px solid #fff;
  right: 16px;
  width: 15px;
  height: 15px;
  transform: rotate(135deg);
  -webkit-transform: rotate(135deg);
  -moz-transform: rotate(135deg);
  -ms-transform: rotate(135deg);
  -o-transform: rotate(135deg);
}


/* 文章详情 */
.articleContent .top{
  padding-top: 20px;
  padding-bottom: 20px;
}
.articleContent .top .tits {
  font-size: 36px;
  line-height: 50px;
  color: #000;
  font-weight: 400;
  min-height: 72px;
  margin-top: 27px;
  text-align: center;
  padding: 0 15px;
}
/* .articleContent .top .tit {
  margin-top: 50px;
} */
.articleContent .top .tit .time {
  font-size: 18px;
  line-height: 30px;
  color: #343434;
  opacity: 0.7;
  text-align: center;
}
.articleContent .con{
  font-size: 18px;
  line-height: 40px;
  color: #333;
  /* font-weight: 100; */
  padding: 20px;
}
.articleContent .con img{
  max-width: 100%;
}
.articleContent .paging {
  border-top: 1px solid #e5e5e5;
  display: flex;
  margin-top: 65px;
  justify-content: center;
  padding: 35px 0;
}
.articleContent .paging .a {
  font-size: 16px;
  line-height: 36px;
  color: #1c1c1c;
  background-repeat: no-repeat;
  flex: 1;
  height: 36px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.articleContent .paging .a.left{
  padding-left: 30px;
  background-position: left center;
  background-image: url('../images/info_left.jpg');
}
.articleContent .paging .a.right{
  padding-right: 30px;
  background-position: right center;
  background-image: url('../images/info_right.jpg');
  text-align: right;
}
.articleContent .paging .return {
  padding-left: 30px;
  font-size: 16px;
  line-height: 36px;
  background-position: left center;
  background-repeat: no-repeat;
  background-image: url('../images/info_return.jpg');
  color: #999;
  margin: 0 30px;
}
.articleContent .paging .a:hover {
  color: #003c79;
}
.articleContent table {
  display: table;
  margin: 0 auto;
}

/* 分页 */

.navigation{
	text-align: center;
	font-size: 0;
	margin-top: 30px;
  margin-bottom: 30px;
  display: flex;
  clear: both;
  justify-content: center; 
}
.navigation h2{
	display: none;
}
.navigation a,.navigation span{
	font-size: 14px;
	width: 36px;
	height: 36px;
	line-height: 36px;
	display: inline-block;
	text-align: center;
	background: #f5f5f5;
	margin: 0 1px;
  color: #343434;
  border-radius: 5px;
}
.navigation span{
	background: #007bff;
	color: #ffffff;
}
.navigation a:hover,.navigation span:hover{
	background: #007bff;
	color: #ffffff;
}
.navigation a.next,.navigation a.prev{
	width: auto;
	padding: 0 15px;
}
@media screen and (max-width: 1845px) {
  .box4 .dtjs_block .dtjs_con::after{
    right: 10%;
  }
}
@media screen and (max-width: 1720px) {
  .box4 .dtjs_block .dtjs_con::after{
    right: 7%;
  }
}
@media screen and (max-width: 1580px) {
  .box4 .dtjs_block .dtjs_con::after{
    right: 4%;
  }
}
@media screen and (max-width: 1340px) {
  .footer .top .tel .t1{
    font-size: 24px;
  }
}
@media screen and (max-width: 1250px) {
  .footer .top{
    flex-wrap: wrap;
  }
  .problock .promenu li .s-img{
    margin-left: 15px;
  }
  .problock .promenu li .txts{
    width: 125px;
  }
  .problock .probox .sell_box .gridbox .box-btn .tel-box .teltext{
    font-size: 16px;
  }
  .box4 .content_box .homeSpT .left .tabGroup .tabOption:nth-child(2){
    padding-left: 0;
  }
  
  .box4 .content_box .homeSpT .left .tabGroup .tabOption .tabtitle{
    font-size: 18px;
    line-height: 40px;
    height: 40px;
  }
  .box4 .content_box .homeSpT .left .tabGroup{
    padding-right: 60px;
  }
  .box4 .content_box .homeSpT .left .tabGroup .tabOption .tabtitle .num{
    font-size: 26px;
  }
  
  
}


@media screen and (max-width: 1200px) {
  .problock .promenu li .bg{
    left: -70px;
  }
  .problock .probox .sell_box{
    padding: 40px 25px;
    width: 32%;
  }
  .problock .probox .sell_box .gridbox .tits{
    font-size: 26px;
    height: 48px;
    line-height: 48px;
  }
  
  
}
@media screen and (max-width: 1024px) {
  .banner {
      margin-top: 55px;
  }

  .header.on .headerRight .tel{
    display: none;
  }

  .indexTitle .tits .t{
    font-size: 30px;
    line-height: 45px;
  }
  .index .box1 .problock{
    display: flex;
    flex-direction: column;
  }
  .index .box1 .problock .promenu{
    width: 100%;
  }
  .index .box1 .problock .promenu li{
    float: left;
    width: 20%;
    height: 80px;

  }
  
  .index .box1 .problock .promenu li.cur{
    background: #244eaa;
  }
  .problock .promenu li a{
    border: 0;
    border-right: 1px solid #e3e3e3;
  }
  .problock .promenu li:last-child a{
    border: 0;
  }

  .index .box1 .problock .promenu li .txts{
    margin-left: 0;
    text-align: center;
    
  }


  .index .box1 .problock .promenu li .s-img{
    display: none;
  }
  .index .box1 .problock .promenu li .bg{
    display: none;
  }
  
  .problock .probox{
    width: 100%;
  }
  .problock .probox .product-img .img{
    width: 65%;
  }
  .problock .probox .product-img .img img{
    width: 100%;
  }
  .problock .probox .sell_box{
    position: static;
    width: 35%;
    padding: 20px 20px;
  }
  .problock .probox .sell_box .gridbox .tits{
    font-size: 24px;
  }
  
  .problock .probox .sell_box .gridbox .box-btn .tel-box .teltext{
    font-size: 16px;

  }
  .index .box2 .content_box{
    padding: 40px 20px;
  }
  .index .box2 .content_box .af_l{
    flex: 0 0 100%;
    background: #f6fbff80;
  }
  .index .box3 .indexTitle .tits .t{
    font-size: 24px;
  }
  .index .box3 .indexTitle .tits .tx{
    font-size: 18px;
  }
  .index .box3 .indexTitle .desc{
    font-size: 18px;
  }
  .index .box3 .content_box .appclass-content p{
    margin-top: 0px;
    font-size: 16px;
  }
  .box4 .dtjs_block .dtjs_con .list ul li{
    width: 32%;
    background: #fff;
    height: 174px;
    margin-right: 1%;
    padding: 30px 20px 20px;
    box-sizing: border-box;
  }
  .box4 .dtjs_block .dtjs_con::after{
    width: 100%;
  }
  .box4 .dtjs_block .dtjs_con .list ul li h5{
    font-size: 22px;
  }

  .box4 .dtjs_block .dtjs_con .list ul li .date{
    font-size: 20px;
  }

  .footer .top .topCenter{
    margin: 20px 0;
    padding: 0;
  }

  /* 公司简介 */
  .aboutContent .lbox{
    width: 100%;
  }
  .aboutContent .rbox{
    width: 100%;
  }
  .aboutContent .rbox .aboutimg{
    margin-left: 0;
  }

  .corrup01 .item {
    padding: 20px 130px 20px 20px;
    margin-bottom: 20px;
  }
  .corrup01 .item .tits {
    font-size: 18px;
  }
  .corrup01 .item .day {
    font-size: 36px;
  }
  .corrup01 .item .desc {
    font-size: 14px;
    margin-top: 10px;
  }

  .base_source .blist .bitem .cedit{
    font-size: 14px;
  }
}
@media (max-width: 886px){

  
  .index {
      margin-top: 0;
  }
  .banner {
    height: auto;
    margin-top: 50px;
    background: none !important;
  }
  .header .headerRight .tel{
    display: none;
  }
  .header .headerRight .nav .bg{
    display: none;
  }
  .index .box1{
    padding-top: 30px;
    padding-bottom: 30px;
  }


  .header .logo {
      margin-left: 0;
   }

   .index-banner .bannerBox .p_btitle{
    font-size: 4.2vw;
   }
   .index-banner .bannerBox .p_cspan{
    font-size: 2.2vw;
   }
    
  .index .box1 .content_box .af_l{
    width: 100%;
  }
  .index .box1 .content_box .af_r{
    width: 100%;
  }
  .index .box1 .content_box .af_r .profile-div{
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .index .box1 .content_box .af_r .profile-div .comp-h1{
    font-size: 26px;
  }
  .index .box1 .content_box .af_r .profile-div .comp-m a{
    width: 100px;
    height: 24px;
    line-height: 24px;
    font-size: 18px;
  }
  .index .box1 .content_box .af_r .comp-content{
    margin-top: 20px;
    font-size: 16px;
    height: 240PX;
    line-height: 26px;
  }
  .index .box1 .numul {
    margin-top: 40px;
  }
  
  .numul .li .liInner .num{
    font-size: 16px;
  }
  .index .box1 .numul .li .liInner .num .counter{
    font-size: 26px;
  }
  .index .box1 .numul .li .liInner p{
    font-size: 12px;
  }
  

  .con-block .fex-box{
    flex-direction: column;
  }
  .con-block .new-box{
    width: 100%;
  }
  .con-block .about-box{
    width: 100%;
  }
  
  .index .box2{
    padding-top: 32px;
    padding-bottom: 32px;
  }
  .index .box2 .top{
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .index .box2 .content_box .fex-box{
    flex-direction: column;
  }
  .index .box2 .content_box .fex-box .left .con {
    display: flex;
    justify-content: flex-start;
    align-items: flex-end;
    margin-top: 15px;
  }
  .index .box2 .content_box .fex-box .left .con .t3{
    padding-left: 5px;
    font-size: 6vw;
  }
  .index .box2 .content_box .fex-box .left{
    flex: 0 0 100%;
  }
  .index .box2 .content_box .fex-box .right{
    flex: 0 0 100%;
  }
  .index .box2 .top .leftpro{
    width: 100%;
    margin-bottom: 15px;
  }
  .index .box2 .top .rightpro{
    width: 100%;
  }
  .index .box2 .top .leftpro .protitle .tit{
    font-size: 30px;
    height: 40px;
  }
  .index .box3 {
    padding-bottom: 0vh;
  }
  .index .box3 .imgList{
    display: none;
  }
  .index .box3 .boxBottom {
    bottom: 15px;
  }
  .index .box3 .indexTitle .tits .tx{
    font-size: 22px;
  }
  .index .box3 .indexTitle .tits .tx{
    font-size: 14px;
  }
  .index .box3  .picList .txt .t {
    padding: 0 15px;
    box-sizing: border-box;
  }
  .cnimgBox .swiper-slide .con h5{
    font-size: 22px;
  }
  
  .index .box3 .picList .txt .t h1{
    font-size: 24px;
  }
  .index .box3 .picList .txt .t p{
    font-size: 16px;
  }
  .index .box3 .boxBottom .btnsBox .num {
    font-size: 20px;
  }
  .index .box3 .boxBottom .btnsBox .num i {
    font-size: 14px;
  }

  .index .box3 .content_box .lbox .l_item .box-btn{
    margin-bottom: 15px;
  }

  .index .box4{
    padding-top: 0;
    padding-bottom: 60px;
  }
  .index .box4 .caseitle .tit{
    font-size: 30px;
    height: 50px;
  }
  .index .box4 .case-swiper .swiper-slide .item .text{
    font-size: 20px;
  }
  .index .box4 .content_box .homeSpT .right{
    float: right;
    width: 100%;
  }
  .index .box4 .content_box .homeSpT .right .serviceSwiper{
    width: 100%;
  }
  .index .box4 .content_box .homeSpT .right .serviceSwiper .swiper-slide .con{
    width: 100%;
    padding:  0 24px;
  }
  .index .box4 .content_box .homeSpT .right .serviceSwiper .swiper-slide .con .tit{
    margin-bottom: 0px;
    margin-top: 50px;
  }
  .index .box4 .content_box .homeSpT .right .serviceSwiper .swiper-slide .con .desc{
    font-size: 18px;
  }
  .index .box4 .content_box .homeSpT .right .serviceSwiper .swiper-pagination{
    display: block;
  }
  .server_block .list{
    margin-top: 45px;
    padding-bottom: 70px;
  }
  .server_block .list ul{
    flex-wrap: wrap;
  }
  .server_block .list ul li{
    width: 49%;
    margin-bottom: 10px;
  }
  .server_block .list ul li:first-child{
    border-bottom-left-radius: 0;
  }
  .server_block .list ul li:nth-last-child(1){
    border-top-right-radius: 0;
  }
  .box4 .dtjs_block{
    padding: 20px 0;
  }
  .box4 .dtjs_block .dtjs_con{
    margin-top: 20px;
  }
  .box4 .dtjs_block .dtjs_con::after{
    right: 0;
  }
  .box4 .dtjs_block .dtjs_con .w1400{
    padding-top: 20px;
  }
  .box4 .dtjs_block .dtjs_con .top{
    flex-direction: column-reverse;
  }
  .box4 .dtjs_block .dtjs_con .top .right-box{
    width: 100%;
  }
  .box4 .dtjs_block .dtjs_con .top .left-box{
    width: 100%;
  }
  .box4 .dtjs_block .dtjs_con .top .left-box .tit{
    margin-top: 30px;
  }
  .box4 .dtjs_block .dtjs_con .top .left-box .tit a{
    font-size: 24px;
  }
  .box4 .dtjs_block .dtjs_con .top .left-box .desc{
    font-size: 18px;
    color: #000000;
    line-height: 40px;
    margin-top: 20px;
  }
  .box4 .dtjs_block .dtjs_con .top .left-box .morebtn{
    margin: 0 auto;
    margin-top: 24px;
    display: block;
  }
  .box4 .dtjs_block .dtjs_con .list{
    padding: 25px 0px;
  }
  .box4 .dtjs_block .dtjs_con .list ul li{
    width: 32%;
    margin-right: 1%;
    padding: 20px 10px 20px;
    height: 120px;
  }
  .box4 .dtjs_block .dtjs_con .list ul li h5{
    font-size: 18px;
  }
  .box4 .dtjs_block .dtjs_con .list ul li h5::after{
    height: 4px;
  }

  .box4 .dtjs_block .dtjs_con .list ul li .date{
    font-size: 16px;
  }
  

  .footer{
    padding-top: 30px;
    padding-bottom: 0;
  }
  
  .footer .siteinfo{
    margin: 0 auto;
  }
  .footer .footerIcon a .ewmHover{
    top: -155px;
  }
  .footer .beian{
    flex-direction: column;
  }
  .footer .beian .r_item{
    text-align: left;
  }

  .footer .siteinfo dl dd{
    font-size: 16px;
  }
  .footer .top .topCenter p{
    display: block;
    margin-bottom: 10px;
  }

  /* 关于我们 */
  .aboutContent .box1{
    padding-top: 30px;
    padding-bottom: 30px;
  }
  .aboutContent .box1 .pageTitle{
    font-size: 24px;
    height: 55px;
    line-height: 55px;
    margin-bottom: 30px; 
  }
  .aboutContent .lbox{
    width: 100%;
  }
  .aboutContent .rbox{
    width: 100%;
  }
  .aboutContent .lbox .numul{
    margin-top: 25px;
    margin-bottom: 25px;
  }
  .aboutContent .lbox .numul .item .liInner .num .counter{
    font-size: 24px;
  }
  .aboutContent .lbox .numul .item .liInner .num{
    font-size: 14px;
    line-height: 28px;
  }
  .aboutContent .lbox .numul .item .liInner p{
    font-size: 14px;
  }
  .aboutContent .rbox .aboutimg{
    margin-left: 0;
    padding-left: 0;
    padding-right: 0;
  }
  .aboutContent .rbox .abimg-listbox{
    margin-left: 0;
  }


  /* 企业文化 */
  .aboutContent .box2{
    padding-top: 30px;
    padding-bottom: 30px;
    background-size: cover;
  } 
  .aboutContent .box2 .pageTitle {
    font-size: 24px;
    height: 48px;
    line-height: 48px;
  }
  .aboutContent .box2 .pageDesc{
    font-size: 14px;
    height: 20px;
    line-height: 20px;
  }
  .aboutContent .box2 .itemBox{
    margin-top: 30px;
    flex-wrap: wrap;
    
  }
  .aboutContent .box2 .itemBox .item{
    width: 100%;
    margin-bottom: 30px;
  }
  .aboutContent .box2 .itemBox .item .con{
    background: #ffffffd6;
    top: 30px;
    bottom: 0;
  }

  

  /* 新闻中心 */
  .newsContent{
    padding-top: 30px;
    padding-bottom: 30px;
  }
  .newsContent .pageTitle{
    font-size: 24px;
    height: 48px;
    line-height: 48px;
  }
  .newsContent .pageDesc {
    font-size: 14px;
    height: 20px;
    line-height: 20px;
  }

  .newsContent .listbox{
    margin-top: 30px;
  }

  /* 文章详情 */
  .articleContent .top .tits {
    font-size: 20px;
    min-height: 32px;
    line-height: 32px;
    margin-top: 10px;
  }
  .articleContent .con{
    font-size: 16px;
    line-height: 32px;
    padding: 20px 0;
  }

  .corrup01 {
    padding-top: 30px;
    padding-bottom: 30px;
}
  .corrup01 .pageTitle {
    font-size: 24px;
    height: 48px;
    line-height: 48px;
  }
  .corrup01 .pageDesc {
    font-size: 14px;
    height: 20px;
    line-height: 20px;
  }
  .corrup01 .item .time{
    font-size: 14px;
    margin-top: 10px;
  }


  /* 联系我们 */
  .contactContent{
    padding-top: 30px;
  }
  .contactContent .con .lbox{
    flex: 0 0 100%;
    padding: 20px;
  }
  .contactContent .con .rbox{
    flex: 0 0 100%;
    padding: 20px;
  }
  .contactContent .pageTitle{
    font-size: 24px;
    height: 48px;
    line-height: 48px;
    text-align: center;
  }
  .contactContent .pageDesc{
    font-size: 14px;
    height: 20px;
    line-height: 20px;
    text-align: center; 
  }
  .contactContent .con .rbox .conbox .tit{
    font-size: 24px;
    color: #000000;
    line-height: 48px;
  }
  .contactContent .con{
    margin-top: 30px;
    box-sizing: border-box;
    margin-bottom: 30px;
  }
  .contactContent .con .lbox .sitebox .stitle{
    font-size: 24px;
    line-height: 55px;
  }
  .contactContent .con .lbox .sitem dd{
    margin-bottom: 15px;
  }
  .contactContent .con .rbox{
    width: 100%;
  }
  .contactContent .formblock .form-row .input .label{
    width: 87px;
  }
  .map{
    padding-top: 30px;
    padding-bottom: 30px;
  }

  /* 底部 */
  .footer .shareBox .share a:nth-child(1){
    margin-left: 0;
  }
  
}
@media (max-width: 768px){
  .newsContent .item:not(:first-child) {
      margin-top: 20px;
  }
  .newsContent .item .more{
      left: 15px;
      bottom: 15px;
      top: unset;
      transform: unset;
      -webkit-transform: unset;
      -moz-transform: unset;
      -ms-transform: unset;
      -o-transform: unset;
      font-size: 14px;
      width: 80px;
      padding-right: 15px;
  }
  .newsContent .item{
      padding-bottom: 45px;
  }
  .newsContent .item{
    flex-wrap: wrap;
    padding: 15px;
  }
  .newsContent .item{
    padding-bottom: 45px;
  }
  .newsContent .item .con .tits {
    font-size: 18px;
  }
  .newsContent .item .con .time{
    font-size: 14px;
    margin: 5px 0 10px;
  }
  .newsContent .item .cl{
      width: 100%;
      margin-bottom: 15px;
  }
  .newsContent .item .con{
      width: 100%;
      padding-left: 0;
  }
  .newsContent .item .more {
    left: 15px;
    bottom: 15px;
    top: unset;
    transform: unset;
    -webkit-transform: unset;
    -moz-transform: unset;
    -ms-transform: unset;
    -o-transform: unset;
    font-size: 14px;
    width: 80px;
    padding-right: 15px;
  }

  .corrup01 .item {
    flex-wrap: wrap;
    padding: 15px 15px 40px 15px;
  }
  .corrup01 .item .cl {
    display: flex;
    justify-content: space-between;
    width: 100%;
    margin-bottom: 15px;
    padding: 0;
  }
  .corrup01 .item .con{
    padding: 0;
  }
  .corrup01 .item .day {
    font-size: 36px;
  }
  .corrup01 .clist .time {
    font-size: 14px;
  }
  .corrup01 .item .con .tits{
    font-size: 16px;
  }
  .corrup01 .item .more {
    position: absolute;
    bottom: 15px;
    right: 15px;
    top: unset;
    transform: unset;
    -webkit-transform: unset;
    -moz-transform: unset;
    -ms-transform: unset;
    -o-transform: unset;
  }
  .base_source  {
    padding: 20px 0;
}
  .base_source .blist {
      padding: 20px 0;
  }
  .base_source .blist .bitem .tit {
    font-size: 16px;
    padding: 10px;
    bottom: -20px;
    left: 10px;
  }
  .base_source .blist .bitem .cedit {
    margin-top: 50px;
  }

  .base_source .cbom{
    padding: 20px 0;
  }
  .base_source .btop{
    flex-wrap:wrap;
    margin-bottom: 20px;
  }
  
  .base_source .btop:not(:nth-child(2n)){
    flex-direction: column-reverse;
  }
  .base_source .btop .bright, .base_source .btop .bleft{
    width: 100%;
  }
  .base_source .btop .bright .fs {
    font-size: 16px;
  }
  .base_source .btop .edit{
    margin-top:10px;
    font-size: 14px;
  }
  .box4 .dtjs_block .dtjs_con .top .right-box img{
    max-width: 100%;
  }

  .articleContent .top .tits{
    font-size: 22px;
  }
  .articleContent .con span {
      font-size: 16px !important;
  }

}
@media (max-width: 576px){
  
  .index .box1{
    padding-top: 20px;
    padding-bottom: 20px;
  }
  .con-block{
    margin-top: 10px;
  }
  .con-block .fex-box{
    flex-direction: column;
  }
  
  .con-block .new-box{
    width: 100%;
    padding-top: 20px
  }
  .con-block .new-box .tabbox .tab-title ul li{
    font-size: 18px;
    margin-right: 5%;
  }
  .con-block .new-box .tabbox .tab-title ul li.select{
    padding: 8px 2px;
    font-size: 18px;
  }

  .con-block .new-box .tabbox .tab-title ul li.select{
    border-bottom:2px solid #1d51d2;
    color: #1d51d2;
  }
  .con-block .new-box .news-list2 li {
    line-height: 2;
    padding-right: 25%;
  }
  .con-block .new-box .news-list2 li .title{
    font-size:16px;
  }
  .con-block .about-box{
    width: 100%;
    margin-top: 15px;
  }
  .con-block .about-box .rtit{
    font-size: 18px;
  }
  .con-block .about-box .rtext{
    padding: 5% 3%;
  }
  .con-block .about-box .rdesc{
    margin-top: 10px;
    font-size: 16px;
  }
  .con-block .about-box .swiper-pagination{
    bottom: 6%;
  }
  .con-block .about-box .more{
    z-index: 999;
    line-height:30px;
    width: 100px;
  }

  .con-block .new-box .news-list2 li .date{
    top: 0;
    
  }

  .index .box2{
    padding-top: 0;
    padding-bottom: 0;
  }

  .index .box2 .content_box{
    padding: 20px;
  }
  .indexTitle .tits .t{
    font-size: 22px;
    line-height: 32px;
  }
  
  .indexTitle .tits .tx{
    font-size: 12px;
  }
  .indexTitle .line::before{
    margin: 15px 0;
  }
  .index .box2 .content_box .fex-box{
    flex-direction: column;
    margin-top: 20px;
  }
  .index .box2 .content_box .fex-box .left{
    display: none;
  }
  .index .box2 .content_box .fex-box .right .comp-content .tit{
    font-size: 22px;
    line-height: 2;
    display: none;
    font-weight: 700;
    padding: 0;
  }
  .index .box2 .content_box .fex-box .right .comp-content .desc{
    font-size: 16px;
  }
  .index .box2 .content_box .fex-box .right .comp-content .more{
    float: none;
    margin: 10px auto;
    display: block;
  }
  .index .box2 .content_box .con-img{
    height: 150px;
    margin-bottom: 0;
  }

  .index .box3{
    padding-top: 20px;
  }
  .white .more{
    display: none;
  }
  .server_block .list{
    margin-top: 30px;
    padding-bottom: 30px;
  }
  .server_block .list ul li .con-img img{
    width: 70px;
  }

  .server_block .list ul li .con-tit{
    font-size: 18px;
  }
  .server_block .fa-angle-right{
    width: 30px;
    height: 30px;
    text-align: center;
    line-height: 30px;
  }
  .server_block .fa-angle-right:before{
    font-size: 24px;
  }
  .index .box4{
    padding-bottom: 10px;
  }
  .box4 .dtjs_block .dtjs_con{
    background-size: 100%;
  }
  .box4 .dtjs_block .dtjs_con::after{
    box-shadow:none;
  }

  
  .box4 .dtjs_block .dtjs_con .top .right-box img{
    width: 100%;
    height: auto;
  }
  .box4 .dtjs_block .dtjs_con .top .left-box .tit a{
    font-size: 18px;
  }
  .box4 .dtjs_block .dtjs_con .top .left-box .desc{
    font-size: 16px;
    line-height: 30px;
  }
  .box4 .dtjs_block .dtjs_con .top .left-box .morebtn{
    margin-top: 15px;
    font-size: 16px;
    width: 124px;
    height: 32px;
  }
  .box4 .dtjs_block .dtjs_con .list ul li{
    width: 100%;
    margin-right: 0;
    margin-bottom: 10px;
  }
  .box4 .dtjs_block .dtjs_con .list ul li .date{
    text-align: right;
  }
 
  .footer{
    padding-top: 20px;
    padding-bottom: 0;
  }
  .footer > .w1400 .container{
    flex-direction: column;
  }
  .footer .container .left{
    width: 100%;
    display: none;
  }
  .footer .siteinfo{
    float: none;
    width: 100%;
    flex-direction: column;
  }
  .footer .siteinfo .fl{
    float: none;
  }
  .footer .siteinfo .fr{
    float: none;
  }
  .footer .siteinfo .fl .khP{
    font-size: 24px;
  }
  .text-grayLight{
    font-size: 12px;
  }
  .copyright-bg .copyright{
    font-size: 12px;
  }

  .footer .siteinfo .fl .kh{
    font-size: 20px;
  }
  .footer .siteinfo .fl .cet{
    font-size: 20px;
    line-height: 1.7;
  }
  .footer .siteinfo .fl dl dt{
    font-size: 16px;
  }

  .base_source{
    padding: 20px 0;
  }
  .base_source .blist .bitem{
    width: 100%;
    margin-bottom: 5%;
  }
  .base_source .blist .bitem:not(:nth-child(2n+1)) {
      margin-left: 0;
  }
  .base_source .blist .bitem .cedit {
      margin-top: 25px;
  }
  .go_top{
    display: none;
  }

  .articleContent .top .tit .time {
    font-size: 12px;
    line-height: 24px;
  }

}
@-webkit-keyframes mymove4 {
  from {
      transform: scale(1.2);
 }
  to {
      transform: scale(1);
 }
}
@-webkit-keyframes myWidth {
  from {
      width: 0;
 }
  to {
      width: 100%;
 }
}
@-webkit-keyframes myScroll {
  0% {
      margin-top: -6px;
 }
  50% {
      margin-top: 6px;
 }
  100% {
      margin-top: -6px;
 }
}
@-webkit-keyframes picToLeft {
  from {
      clip-path: polygon(100% 0, 100% 0, 100% 100%, 90% 100%);
 }
  to {
      clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
 }
}
@-webkit-keyframes picToRight {
  from {
      clip-path: polygon(0 0, 0 0, 14% 100%, 0 100%);
 }
  to {
      clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
 }
}

@-webkit-keyframes ripple {
  0% {
      opacity: 0;
      -webkit-transform: scale(0.1, 0.1);
  }
  5% {
      opacity: 1;
  }
  100% {
      opacity: 0;
      -webkit-transform: scale(1)
  }
}

@-moz-keyframes ripple {
  0% {
      opacity: 0;
      -moz-transform: scale(0.1, 0.1);
  }
  5% {
      opacity: 1;
  }
  100% {
      opacity: 0;
      -moz-transform: scale(1)
  }
}

@-o-keyframes ripple {
  0% {
      opacity: 0;
      -o-transform: scale(0.1, 0.1);
  }
  5% {
      opacity: 1;
  }
  100% {
      opacity: 0;
      -o-transform: scale(1)
  }
}

@keyframes ripple {
  0% {
      opacity: 0;
      -webkit-transform: scale(0.1);
      -moz-transform: scale(0.1);
      -ms-transform: scale(0.1);
      transform: scale(0.1);
  }
  5% {
      opacity: 1;
  }
  100% {
      opacity: 0;
      -webkit-transform: scale(1);
      -moz-transform: scale(1);
      -ms-transform: scale(1);
      transform: scale(1);
  }
}