@charset "utf-8";

/* CSS Document */

body {
  font: 14px "Helvetica Neue", Helvetica, Arial, "Microsoft Yahei", "Hiragino Sans GB", "Heiti SC", "WenQuanYi Micro Hei", sans-serif;
  height: 100%;
  min-width: 1260px;
  background: #fff;
  max-width: 100%;
  overflow: auto;
  color: #666;
  overflow-x: hidden;
  padding: 0px;
  margin: 0px;
}

a {
  color: #666;
  text-decoration: none;
  outline: none;
}

img {
  border: 0px;
  vertical-align: middle;
}

a:link {
  text-decoration: none;
  outline: none;
}

a:visited {
  text-decoration: none;
  outline: none;
}

a:hover {
  text-decoration: none;
  color: #333;
  outline: none;
}

ul,
p,
dl,
dt,
dd {
  padding: 0px;
  margin: 0px;
}

li {
  list-style-position: outside;
  list-style-type: none;
}

h1,
h2,
h3,
h4,
h5 {
  padding: 0px;
  margin: 0px;
}

input {
  margin: 0;
  padding: 0;
  outline: 0;

}

input::-webkit-input-placeholder {
  color: #ccc;
}

input::-ms-input-placeholder {
  color: #ccc;
}

input::-moz-placeholder {
  color: #ccc;
}

input[type=button],
input[type=submit] {
  cursor: pointer;
}

button[disabled],
input[disabled] {
  cursor: default;
}

input {
  background: transparent;
  padding: 0px;
  font-size: 14px;
  color: #888;
  border: 0px;
  outline: none;
}

em {
  font-style: normal;
}

i {
  font-style: normal;
}


/*清除浮动*/

.clear {
  clear: both;
  height: 0px;
  overflow: hidden;
}

.clearfix:after {
  content: ".";
  display: block;
  height: 0;
  visibility: hidden;
  clear: both;
}

.clearfix {
  /*兼容 IE*/
  zoom: 1;
}


/************全局样式************/

.fl {
  float: left;
}

.fr {
  float: right;
}


/*t图片样式*/

.center-block {
  display: block;
  margin-right: auto;
  margin-left: auto
}

img {
  border: 0px;
  vertical-align: middle;
}

.img-responsive {
  display: block;
  height: auto;
  margin-left: auto;
  margin-right: auto;
  max-width: 100%
}

.avatar {
  display: block;
  overflow: hidden;
  width: 100%;
}

.avatar img {
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

.avatar:hover img {
  transform: scale(1.1);
  transition: all 1s ease 0s;
  -webkit-transform: scale(1.1);
}


/*文字超出隐藏*/

.dot {
  display: block;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;

}

.dot2 {

  text-overflow: -o-ellipsis-lastline;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
}


/**/

.wal {
  width: 1200px;
  margin: 0px auto;

}

.dflex {
  display: flex;
}

.dflex_center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.dflex_start {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.dflex_end {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.dflex_stretch {
  display: flex;
  justify-content: center;
  align-content: center;
  align-items: stretch;
}

.dflex_space-between {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/*顶部导航*/


.fixed-top {

  z-index: 1030;
}


#header {

  transition: all 0.5s;
  z-index: 997;
  transition: all 0.5s;
  height: 90px;

}

.header-transparent {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}



#header.header-scrolled {
  background: #fff;
  border-bottom: 1px solid #fff;


}

#header.header-scrolled {
  box-shadow: 0 2px 16px 0 rgba(0, 78, 204, 0.1);
}

.top-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-box .logo {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 10%;
}

.pclogo {

}

.mlogo {
  display: none !important;
}

.pclogo2 {
  display: block !important;
}

/*导航菜单 */
.nav-menu {
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-menu {
  height: 90px;
}

.nav-menu  {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-menu li {
  text-align: center;
  position: relative;
}

.nav-menu a {
  display: block;
  white-space: nowrap;
color: #333;
  padding: 0 19px;
  height: 90px;
  line-height: 90px;
  transition: 0.3s;
  font-size: 16px;
  font-weight: bold;
}
.nav-menu a.on {
  border-bottom: 2px solid #11B980;
    color: #11B980;
}
.nav-menu a:after {
  position: absolute;
    width: 100%;
    background: #11B980 !important;
    height: 2px;
    bottom: -1px !important;
    left: 0;
    content: "";
    -webkit-transform-origin: right center;
    -ms-transform-origin: right center;
    transform-origin: right center;
    -webkit-transform: scaleX(0);
    -ms-transform: scaleX(0);
    transform: scaleX(0);
    transition: transform 0.25s cubic-bezier(0.37, 0.31, 0.2, 0.85), -webkit-transform 0.25s cubic-bezier(0.37, 0.31, 0.2, 0.85);
}

.nav-menu a:hover:after {
  -webkit-transform: scaleX(1);
    -ms-transform: scaleX(1);
    transform: scaleX(1);
    -webkit-transform-origin: left center;
    -ms-transform-origin: left center;
    transform-origin: left center;
    background: #11B980 !important; }

.nav-menu a:hover  {
   color: #333;
}


.top_tel {
  color: #333;
  font-size: 20px;
  background: url(../images/dianhua2.png) left no-repeat;
}

.top_tel span {
  padding-left: 35px;
  display: block;
}
.language { color: #fff;}
.language a{ color: #fff; font-size: 16px; font-family: Arial, Helvetica, sans-serif;padding: 0 10px; }
.language a:hover { color:#f29600 ;}


#header.header-scrolled .language a:hover { color:#f29600 ;}
#header.header-scrolled .pclogo {
  display: block !important;
}

#header.header-scrolled .pclogo2 {
  display: none !important;
}

#header.header-scrolled .top_tel {
  
  
}
#header.header-scrolled .language { color: #333;}
#header.header-scrolled .language a { color: #333;}
/* 二级菜单 */
.ejxl {
  background-color: #fff;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(15px);
  transform: translateY(15px);
  -webkit-transition: all .5s ease;
  transition: all .5s ease;
  border-top: 4px solid #11B980;
  position: absolute;
  top: 100%;
  left: -28%;
  width: 160% !important;
  flex-direction: column;
}

.nav-menu ul li .ejxl li {
  margin: 0 auto;
  display: block;
  padding: 0;
  width: 100%;
}

.nav-menu ul li .ejxl li:after {
  content: "";
  position: relative;
}

.nav-menu ul li .ejxl li a {
  display: block;
  color: #666;
  font-size: 15px;
  height: 45px;
  line-height: 45px;
  padding: 0;
  text-align: center;
  margin: 0 5px;
}

.nav-menu ul li .ejxl a:hover {
  color: #11B980;
}

.nav-menu ul li:hover .ejxl {

  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}


#header.header-scrolled .nav-menu a:after {
  position: absolute;
  width: 100%;
  background: #fff;
  height: 2px;
  bottom: 0px;
  left: 0;
  content: "";
  -webkit-transform-origin: right center;
  -ms-transform-origin: right center;
  transform-origin: right center;
  -webkit-transform: scaleX(0);
  -ms-transform: scaleX(0);
  transform: scaleX(0);
  transition: transform 0.25s cubic-bezier(0.37, 0.31, 0.2, 0.85), -webkit-transform 0.25s cubic-bezier(0.37, 0.31, 0.2, 0.85); }
  #header.header-scrolled .nav-menu a:hover {
  color: #fff; }
  #header.header-scrolled .nav-menu a:hover:after {
  -webkit-transform: scaleX(1);
  -ms-transform: scaleX(1);
  transform: scaleX(1);
  -webkit-transform-origin: left center;
  -ms-transform-origin: left center;
  transform-origin: left center;
  background: #fff; }
/*顶部导航 end*/

/*首页banner图*/
.banner-slider { position: relative;}

.banner-slide-item {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;

}


.banner-slide-bg {
  position:relative;

}
.banner-slide-bg .wal { position: absolute; top:25%;left: 0; right: 0;  width: 1200px;}


.banner-slide-content .subtitle {
  font-weight: 400;
  font-size: 24px;
  line-height: 1;
  display: block;
  margin-bottom: 60px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #fff;
  font-family: "Poppins", sans-serif;
}


.banner-slide-content .title {
  font-size: 50px;
  line-height: 1;
  font-weight: 500;
  color: #fff;
  display: block;
  margin-bottom: 50px;
  letter-spacing: -0.25px;
  text-transform: capitalize;
}


.banner-slide-content p {
  line-height: 1.7;
  font-size: 18px;
  font-family: "Poppins", sans-serif;
  color: #fff;
  max-width: 625px;
  margin-bottom: 53px;
}


.banner-slide-content .btn-link {
  font-size: 18px;
  line-height: 1;
  font-family: "Poppins", sans-serif;
  color: #fff;

  text-transform: uppercase;
  text-decoration: none;
  position: relative;
}

.banner-slide-content .btn-link::before {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  background: #fff;
  width: 100%;
  height: 1px;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.banner-slide-content .btn-link:hover {
  color: #11B980;
}

.banner-slide-content .btn-link:hover::before {
  background: #11B980;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}



.banner-slider .swiper-container {
  width: 100%;
  height: 100%;
  margin-left: auto;
  margin-right: auto;
}

.banner-slider .home-slider-prev, .banner-slider .home-slider-next {

  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  font-size: 50px;
  top: auto;
  bottom: 60px;
  background: none;
  color: #fff;
}


.banner-slider .home-slider-prev::after, .banner-slider .home-slider-next::after {
  display: none;
}

.banner-slider .home-slider-prev:hover, .banner-slider .home-slider-next:hover {
  color: #11B980;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.banner-slider .home-slider-prev:focus, .banner-slider .home-slider-next:focus {
  outline: 0;
  border: 0;
}

.banner-slider .home-slider-prev i, .banner-slider .home-slider-next i {
  line-height: 1;

  display: flex;
  align-items: center;
  justify-content: center;
  padding:10px 30px;
}
.banner-slider .home-slider-prev i:hover, .banner-slider .home-slider-next i:hover{  background: rgba(49,118,64, .7);}
.banner-slider .home-slider-prev {
  right:230px;
  left: auto;
}

.banner-slider .home-slider-next {
  right: 175px;
}

.banner-slider .home-slider-next::after {
  display: none;
}

.banner-slider .swiper-pagination {
  position: absolute;
  bottom: 30px;
  right: 30px;
  left: auto;
  text-align: end;
}

.banner-slide-content > * {
  -webkit-animation-duration: 1.5s;
          animation-duration: 1.5s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  -webkit-animation-name: fadeOutUp;
          animation-name: fadeOutUp;
}

.swiper-slide-active .banner-slide-content > * {
  -webkit-animation-name: fadeInUp;
          animation-name: fadeInUp;
}

.swiper-slide-active .banner-slide-content > *:nth-child(1) {
  -webkit-animation-delay: 0.9s;
          animation-delay: 0.9s;
}

.swiper-slide-active .banner-slide-content > *:nth-child(2) {
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
}

.swiper-slide-active .banner-slide-content > *:nth-child(3) {
  -webkit-animation-delay: 1.2s;
          animation-delay: 1.2s;
}

.swiper-slide-active .banner-slide-content > *:nth-child(4) {
  -webkit-animation-delay: 1.8s;
          animation-delay: 1.8s;
}

.swiper-slide-active .banner-slide-content > *:nth-child(5) {
  -webkit-animation-delay: 2.5s;
          animation-delay: 2.5s;
}

.swiper-slide-active .banner-slide-content > *:nth-child(6) {
  -webkit-animation-delay: 3s;
          animation-delay: 3s;
}
#page-1 { position: absolute; left: 0; bottom: 180px; }
/*首页banner图 end*/

.main_title {
  text-align: center
}

.main_title div {
  font-size: 42px;
  color: #333333;
  line-height: 60px;
}

.main_title div b {
  color: #11B980;
}
.main_title div strong { font-size: 28px;line-height: 35px;}
.main_title span {
  font-size: 18px;
  color: #333;
  font-weight: 500;
  line-height: 24px;
}
.main_title p {
  font-size: 20px;
  color: #333;
  font-weight: 500;
  line-height: 65px;
}

/*简介*/
.about_bg {


  padding-top: 60px;
  padding-bottom: 60px;
  background: #fff;
}

.about {
  position: relative;
}




.ab_txt p {
  font-size: 16px;
  line-height: 30px;
  margin-top: 20px;
  text-align: justify;
  color: #666;
}

.ab_more {
  display: flex;
  align-items: center;
  font-size: 14px;
  color: #fff;
  height: 47px;
  border: #D1D1D1 solid 1px;
  line-height: 45px;
  padding: 0 30px;
  transition: all 0.5s ease 0s;
  max-width: 90px;
  margin-top: 50px;
}

.ab_more i {
  color: #333;
  margin-right: 10px;
  transition: all 0.5s ease 0s;
}

.ab_more em {
  color: #333;
  font-style: normal;
}

.ab_more:hover {
  color: #333;
  background: #11B980;
  border: 1px solid #11B980;
  transition: all 0.5s ease 0s;
  padding-left: 50px;
  max-width: 100px;
}

.ab_more:hover i {
  color: #fff;
  transition: all 0.5s ease 0s;
}

.ab_more:hover em {
  color: #fff;
}

.ab_list2 {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  margin-top: 30px;
  margin-bottom: 30px;
  position: relative;
}

.ab_list2 li {
  cursor: pointer;
  color: #333;

  padding: 10px 0;
  text-align: center;
  -webkit-transition: transform .3s;
  transition: transform .3s;
  font-size: 18px;

}

.ab_list2 li b {
  display: block;
  font-size: 70px;
  color: #333;
  overflow: hidden;
}

.ab_list2 li i {
  font-size: 20px;
  color: #666;
  font-style: normal;
  font-weight: normal;
  padding-left: 5px;
  position: relative;

}

.ab_list2 li:hover {
  -webkit-transform: translate(0, -15px);
  transform: translate(0, -15px);
}

.culture {
  display: flex;
  align-items: stretch;
  justify-content: space-between;

  box-shadow: 0 0 10px #dedede;


}

.gszl {
  width: 50%;
  padding: 50px 100px;
  background: #11B980;

}

.gszl b {
  display: block;
  font-size: 30px;
  color: #fff;
  margin-bottom: 20px;
}

.gszl p {
  font-size: 16px;
  color: #fff;
  line-height: 28px;
}

.zl_con {
  display: flex;

}

.zl_con .zl_txt {
  padding: 25px 30px;

  line-height: 26px;
  font-size: 16px;
  width: 33.33%;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  margin-left: -1px;
  text-align: center;
  margin-top: 30px;
}

.zl_con .zl_txt:hover {
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
}

.jyln {
  width: 50%;
  padding: 50px 100px;
}

.jyln b {
  display: block;
  font-size: 30px;
  color: #333;
  margin-bottom: 20px;
}

.jyln .jyln_con {
  display: flex;
  justify-content: space-between;
  margin-top: 70px;
}

.jyln .jyln_con div {
  text-align: center;
  color: #333;
  cursor: pointer;
}

.jyln .jyln_con div img {
  transition: all 0.3s;

}

.jyln .jyln_con div p {
  line-height: 26px;
  margin-top: 10px;
  font-size: 18px;
}

.jyln .jyln_con div:hover img {
  transform: rotateZ(40deg);

}
/* 历程 */
.lc-bg{ background: url(../images/hisbg.jpg) no-repeat right; background-size: cover; padding: 60px 0; background-attachment: fixed; position: relative; }
.fzlc {
  position: relative;
  padding: 40px 0;

  margin: 0 auto;

  border-radius: 50px;
}

#fzlc-gallery .swiper-slide {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;

 

}

#fzlc-gallery .swiper-slide p {
  color: #333;
  font-size: 18px;
  line-height: 30px;
  margin: 10px 0;
}

#fzlc-gallery .fzlc-year {
  font-size: 80px;
  color: #333;
  font-weight: bold;
  font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
  margin: 20px 0;
  
}
#fzlc-gallery .fzlc-info { padding-left: 50px;}
.fzlc img {
  width: 100%;
}


.fzlc .swiper-button-prev {
  left: 0;
  top: calc(100% - 35px)
}

.fzlc .swiper-button-next {
  right: 0;
  top: calc(100% - 35px)
}

.fzlc .swiper-button-next,
.fzlc .swiper-button-prev {
  background: none;
  outline: none;
  color: #333;
  font-size: 30px;
  border-radius: 25px;
  width: 50px;
  height: 50px;
  text-align: center;
  line-height: 50px;
  background: #fff;
  box-shadow: 0 2px 16px 0 rgba(240,249,242, .8);

}

.fzlc .swiper-button-next:hover,
.fzlc .swiper-button-prev:hover {
  color: #fff;
  background: #11B980;
}

#fzlc-thumbs {

  width: 100%;
  padding-bottom: 20px;

}

.fzlc #fzlc-thumbs {
  position: relative;
  margin-top: 60px;

  background: url(../images/line.png) repeat-x left center;
  background-position: 0 45px;


}


.fzlc #fzlc-thumbs .swiper-slide {


  text-align: center;
  font-size: 22px;
  font-weight: bold;
  cursor: pointer;
  color: #333;

}

.fzlc #fzlc-thumbs .swiper-slide span {
  display: block;
  position: relative;
  width: 20px;
  height: 20px;
  border-radius: 20px;
  background: #ccc;

  margin: 0 auto;
  margin-top: 20px;
}




.fzlc .swiper-slide-thumb-active {

  color: #11B980 !important;

}

.fzlc .swiper-slide-thumb-active span {
  background: #11B980 !important;

}



.about_lx{
  width: 100%;
  
}
.about_lx ul{
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between; margin-top:30px;
}
.about_lx ul li{
  padding: 60px;
  width: calc(20% - 120px); 
  border-right: rgba(255,255,255,0.4);
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  overflow: hidden;
  position: relative;align-content: flex-start;
}
.about_lx ul li:nth-child(1){
  background: #11B980;
}
.about_lx ul li:nth-child(2){
  background: #53b45b;
}
.about_lx ul li:nth-child(3){
  background: #1ca7ba;
}
.about_lx ul li:nth-child(4){
  background: #32ac94;
}
.about_lx ul li:nth-child(5){
  background: #47b171;
}
.about_lx ul li p{
  width: 100%;
  font-size: 20px;
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  align-items: flex-start;
  color: #fff; padding-bottom:10px; font-weight:bold;
}

.about_lx ul li p img{
  padding-right: 10px;
}

.about_lx ul li b{
  width: 100%;
  font-size: 14px;
  font-weight:normal;
  font-family: Arial;
  text-align: center;
  color: #fff;
  line-height: 180%;
}

 .about_lx ul li:hover {
  opacity: 0.9;
  cursor: pointer;
 }
.hover-flash:before {
  content: ' ';
  position: absolute;
  background-image: linear-gradient(to right, rgba(255, 255, 255, 0),rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 1));
  width: 100px;
  height: 100%;
  top: 0;
  left: -800px;
  opacity: 0.2;
  -webkit-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
  -webkit-transform: skewX(-35deg);
  transform: skewX(-35deg);
}
.hover-flash:hover:before {
 width: 45px;
 left: 800px;
}
/*优势*/
.ys_box {

  background: #fff url(../images/bg2.jpg) no-repeat;
  padding: 60px 0;
}

.ys {
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 30px;
  background: #fff;
  box-shadow: 0 0 15px rgb(0 23 73 / 5%);

}

.ys ul {
  width: 100%;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.ys li {
  position: relative;
  overflow: hidden;
  width: 20%;
  padding: 30px;
  border-right: 1px solid #f2f2f2;

}

.ys li:last-child {
  border: none;
}

.ys li a {
  display: block;
}

.ys em {
  font-size: 18px;
  margin: 0;
  padding: 0;
  font-style: normal;
  display: block;
  text-align: center;
  color: #fff;
}

.ys .img_ar {
  width: 20%;
  height: 280px !important;
  display: flex;
  align-items: flex-start;
  justify-content: center;

 flex-direction: column;
}

.ys .img_ar span {
  display: block;
  margin-top: 50px;
  color: #D5D5D5;
  font-size: 18px;
}


.ys .img_ar b {

  display: block;
  color: #000;
  margin: 20px 0;
  font-size: 22px;
  font-weight: normal;
}

.ys .dec_ar p {
  margin-top: 5px;
}


.ys li .cont_ar {
  color: #fff;

  transition: all 0.5s;
 
  -webkit-transition: all 0.5s;
}
.ys li .cont_ar b { font-size: 18px;}

.ys li .dec_ar {
  line-height: 28px;
  height: 280px !important;
  position: absolute;
  z-index: 1;
  left: 0;
  padding: 30px;
  right: 0;
  bottom: 0;
  background:#11B980;
  color: #fff;
  opacity: 0;
  filter: alpha(opacity=0);
  transition: all 0.5s;
  -webkit-transition: all 0.5s;

}

.ys li .dec_ar em {
  font-size: 24px;
  margin-top: 15px;
  font-weight: bold;
}

.ys li .dec_ar p {
  color: #fff;
  font-size: 14px;
  line-height: 28px;

}

.ys li .more {
  text-align: center;
  color: #fff;
  margin-top: 15px;
}

.ys li.cur .cont_ar {
  background: rgba(255, 255, 255, 0);
  cursor: pointer;
}

.ys li.cur .ar_title {
  display: none;
}

.ys li.cur i {

  color: #11B980;
  font-size: 20px;
}

.ys li.cur .dec_ar {
  opacity: 1;
  filter: alpha(opacity=100);

  transition-delay: 0.3s;
  -webkit-transition-delay: 0.3s;
}

@keyframes rotation {
  from {
    -webkit-transform: rotate(0deg);
  }

  to {
    -webkit-transform: rotate(360deg);
  }
}

.ys li.cur .xuanz {
  -webkit-transform: rotate(360deg);
  transform: rotate(360deg);
  animation: rotation 3s linear infinite;
  -moz-animation: rotation 3s linear infinite;
  -webkit-animation: rotation 3s linear infinite;
  -o-animation: rotation 3s linear infinite;
}
/*  */

/*创新生态*/

.cxst {

  padding:60px 0 30px;
  background: url(../images/cxstbg.jpg) no-repeat;
  background-size: 100%;

}
.zzsc {
  width: 100%;
  height: auto;
  margin: 20px auto;
}
.zzsc .tab {
  overflow: hidden;
display: flex;
  padding-top: 30px;
}


.zzsc .tab a {
  display: block;
  font-size: 24px;
  width: 25%;
  padding:2%;
  border-right: 1px dashed #fff;
  color: #333;
  text-align: center;
  float: left;
  font-weight: bold;
  text-decoration: none;
}

.zzsc .tab a:last-child{ border-right: none;}

.zzsc .tab a.on  {

  color:#11B980;
}

.zzsc .co {
  overflow: hidden;
  box-shadow: 0 2px 16px 0 rgba(0, 78, 204, 0.1);
  margin-top: 30px;


}
.zzsc .co > ul {
  
  background: #ffffff;
  padding:40px ;
}
.zzsc .co li {
  display: none;
  width: 100%;
  list-style: none;
}
.ys_list {
  margin-top: 40px;
}
.ys_list_right {
  float: right;
  width: 55%;

}
.ys_list_left {
  float: left;
  width: calc(45% - 80px);
  padding: 20px 40px;
  line-height: 24px;
  font-size: 14px;
  color: #585657
}

.ys_list_left b{line-height:56px;color: #333;padding:48px 0 0;font-size:42px;position: relative; font-weight: 500; display: block; margin-top: 30px;}
.ys_list_left span { display: block; font-size: 26px; margin: 10px 0;}

.co li b:before{content: "01"; font-weight:bold;position: absolute;width: 100%;height: 48px;color:#11B980;font-size: 90px;left: 0;top: 0;overflow: hidden;line-height:80px;}
.co li:nth-child(2)  b:before{content: "02";}
.co li:nth-child(3)  b:before{content: "03";}
.co li:nth-child(4)  b:before{content: "04";}
.ys_list_left p {
  font-size: 16px;
  padding-top: 15px;
  line-height: 28px;
  color: #666;
}
.ys_list_left a{  display: block; padding-top: 10px; color: #11B980;}
.ys_list_left p img{ padding-right: 14px;}
.ysicon{   background: #fff;  margin-top: 30px;
}
.ysicon p{  color:#333;  padding:10px 0; text-align: left; float: left;
	-webkit-transition:transform .3s;transition:transform .3s; font-size: 18px; width: 33.3%;}

.ysicon p span{display: block;font-size: 58px;color: #000; line-height: 64px;}
.ysicon p i {
  font-size: 18px;
  width: 26px;
  height: 26px;
  line-height: 26px;
  background: #11B980;
  border-radius: 50%;
  text-align: center;
  font-style: normal;
  position: relative;
  top: -25px;
  left: -10px;
  color: #fff;
  display: inline-block;
}
/* 办公空间 */

.bgkj {
  position: relative;
 padding: 60px 0;

}
.bgkj ul{ display: flex; align-items: flex-start; justify-content: center;}
.bgkj ul li{width: calc(33.33% - 10px); flex: 1; margin: 5px;
  background: #fff;
  box-shadow: 0 2px 16px 0 rgba(0, 78, 204, 0.1);
}

.bgkjj ul li {width: calc(50% - 2%);}
.bgkj ul li img {
  display: block;
  height: auto;
  margin-left: auto;
  margin-right: auto;
  max-width: 100%;

}

.bgkj ul li a {

  display: block;

}

.bgkj .swiper-slide em {
  display: block;
  font-size: 20px;
  font-style: normal;
  padding: 10px 15px;
  color: #11B980;
  font-weight: bold;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.bgkj .swiper-slide span {  padding: 10px 20px; margin: 10px 15px; background: #11B980; color: #fff;}
.bgkj .swiper-slide:hover span { background: #f29600;}
.bgkj .swiper-slide i {
  padding: 10px 15px;
  color: #999;
  margin-top: 10px;
  display: block;
}

.bgkj ul li p {

  color: #333;
 text-align: center;
 font-size: 18px;
 padding: 20px;

}



.bgkj .swiper-button-next {
  position: absolute;
  top: 100px;
  left: calc(100% - 50px);
  border-radius: 20px;
  text-align: center;
  color: #333;
  background: #fff;
  cursor: pointer;
  overflow: hidden;
  z-index: 999;
  width: 40px;
  font-size: 30px;
  line-height: 40px;
  height: 40px;
  transition: all .5s ease;
  outline: none;
  box-shadow: 0 2px 16px 0 rgba(0, 78, 204, 0.1);
}

.bgkj .swiper-button-prev {
  position: absolute;
  top: 100px;
  left: calc(100% - 100px);
  border-radius: 20px;
  text-align: center;
  color: #333;
  background: #fff;
  cursor: pointer;
  overflow: hidden;
  z-index: 999;
  width: 40px;
  font-size: 30px;
  line-height: 40px;
  height: 40px;
  transition: all .5s ease;
  outline: none;
  box-shadow: 0 2px 16px 0 rgba(0, 78, 204, 0.1);
}


.bgkj ul li a:hover p {
  background: #11B980;
  color: #fff;
}
/* 师资队伍 */

.szdw{ background: #f1f1f1 url(../images/szbg.jpg) no-repeat; padding-top: 60px; margin-top: 40px;}
#ry {
	position: relative;
    width: 1200px;
	margin: 0 auto;

}

#ry .swiper-container {
	padding-bottom: 60px;
    margin-top: 30px;
}

#ry .swiper-slide {
	width: 320px;
	
	background:rgba(255,255,255,0.8);
	box-shadow: 0 8px 30px #ddd;
	position: relative;
}
#ry .swiper-slide img{
	display:block;
    width: 100%;
    margin-left: auto;
    margin-right: auto;

}
#ry .swiper-slide a{ display: block;}
#ry .swiper-slide p {
	line-height:60px;
	padding-top: 0;
	text-align: center;
	color: #636363;
	font-size: 20px;
	margin: 0;
}
#ry .swiper-slide-active .layer-mask {
    display: none;
}
.layer-mask {
    width: 100%;
    height: 100%;
    transition: all 0.5s;
    background:rgba(255,255,255,.5);
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
}



#ry .swiper-button-next {
	right: -60px;
	width: 55px;
    text-align: center;
	height: 55px;
    line-height: 55px;
    border: 2px solid #dedede;
    border-radius: 100%;
	--swiper-navigation-size: 0;
    color: #fff;
    background: rgba(0, 0, 0, 0.3);
    cursor: pointer;
    overflow: hidden;
    z-index: 10;
    font-size: 30px;
    transition: all .5s ease;
    outline: none;
    

}
#ry .swiper-button-prev {
	left: -60px;
    text-align: center;
	width: 55px;
    line-height: 55px;
	height: 55px;
    border: 2px solid #dedede;
    border-radius: 100%;
    --swiper-navigation-size: 0;
    color: #fff;
    background: rgba(0, 0, 0, 0.3);
    cursor: pointer;
    overflow: hidden;
    z-index: 10;
    font-size: 30px;
    transition: all .5s ease;
    outline: none;
    
}
#ry .swiper-button-prev:hover, #ry .swiper-button-next:hover { border: 2px solid #11B980; color: #fff; background: #11B980;}

/* 合作企业 */
.hz { padding: 80px 0;}

.hezuo {
  padding-bottom: 50px;
  padding-top: 30px;

}

.hezuo .swiper-slide a {
  background: #fff;
  display: block;
  margin: 10px;
  padding: 15px 10px;
  border: 1px solid #dedede; text-align:center; 
}


.hezuo .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  display: inline-block;
  border-radius: 100%;
  background: #999;
  opacity: 1;
}

.hezuo .swiper-pagination-bullet-active {
  background: #11B980;
}

/* 联系我们 */

.in_contact_box {position: relative; display: flex; align-items: stretch; }
.in_contact_box .in_contact_map { width: 52%; background: #F3F4F8;  display: flex; align-items: center; }
.in_contact_box .in_contact_txt { width: 48%; padding: 50px;  background: #fff url(../images/dtbg.jpg) no-repeat right;}
.in_contact_box .in_contact_txt .map_tit { font-size: 32px; font-weight: 700; color: #F44E50;}
.in_contact_box .in_contact_txt a { display: block; border-bottom: 1px solid #f1f1f1; padding: 20px 0;}
.in_contact_box .in_contact_txt .map_tit { font-size: 26px; font-weight: 700; color: #333;}
.in_contact_box .in_contact_txt a b {  color: #333; font-size: 18px; padding-bottom: 5px; display: block;  font-weight: normal;}
.in_contact_box .in_contact_txt a p{ padding: 7px 0; line-height: 24px; font-size: 16px; color: #666;}
.in_contact .contact_bottom { margin:60px 0;}
.in_contact .contact_bottom ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
  
}
.in_contact .contact_bottom ul li { background: #11B980; flex: 1; margin: 10px;  padding: 35px;}
.in_contact .contact_bottom  i {
  display: block;
  font-size:40px;
  color: #fff;
  margin-bottom: 20px;
  display: block;
}
.in_contact .contact_bottom p { font-size: 18px; color: #fff;}
/*返回顶部*/

.scroll {
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  position: fixed;
  right: 45px;
  bottom: 70px;
  color: #fff;
  cursor: pointer;
  background: #11B980;
  font-size: 26px;
  z-index: 99;
}

/*底部footer*/

.copyright {
  padding:30px 10px;

  color: #666;
  font-size: 14px;

 
}

.copyright a {
  color: #666;
  display: inline-block!important;
}