html, body {
  position: relative;
  height: 100%;
}

body {
  background: #23313c;
  font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
  font-size: 14px;
  color: #000;
  margin: 0;
  padding: 0;
}

.swiper-container1 {
  width: 100%;
  height: 100%;
  margin-left: auto;
  margin-right: auto;
}

.swiper-container4 {
  width: 100%;
  height: 100%;
  margin-left: auto;
  margin-right: auto;
}

.swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;
  /* Center slide text vertically */
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}

.banner-1{
  position: relative;
  overflow: hidden;
  widows: 100%;
  height: 100%;
}

.banner-2{
  width: 100%;
  height: 100%;
}



nav {
  --transition-time: 500ms;
  position: fixed;
  width: 400px;
  right: 0;
  top: 0;
  height: 100%;
  display: flex;
  align-items: center;
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(20px);
  transform: translateX(100%);
  transition: all 800ms cubic-bezier(0.8, 0, 0.33, 1);
  z-index: 5;
}

nav a {
  text-transform: uppercase;
  font-size: 1.4rem;
  font-weight: 900;
  letter-spacing: 3px;
  text-decoration: none;
  user-select: none;
  color: #fff;
}

nav .nav-links {
  --link-height: 60px;
  position: relative;
  width: 100%;
}

nav .nav-links li {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 100%;
  height: var(--link-height);
  list-style: none;
  opacity: 0;
  transform: translateX(50%);
  transition: all var(--transition-time) cubic-bezier(0.8, 0, 0.33, 0.9);
  transition-delay: calc(20ms + var(--delay));
  cursor: pointer;
  z-index: 8;
}

nav .nav-links li:hover {
  color: rgba(255, 255, 255, 0.85);
}

nav .nav-links li a {
  pointer-events: none;
  font-size: 18px ;
  font-weight: 600;
}

nav .nav-links li ol {
  display: none;
}

nav .nav-links .hover-el {
  position: absolute;
  width: 100%;
  height: var(--link-height);
  top: var(--y);
  left: var(--x);
  opacity: 0;
  background: radial-gradient(circle at var(--mousex) var(--mousey), rgba(0, 0, 0, 0.15) 0%, rgba(0, 0, 0, 0.45) 100%);
  transition: all 250ms cubic-bezier(0.215, 0.61, 0.355, 1);
  pointer-events: none;
  z-index: 5;
}

nav .sub-menu {
  --link-height: 60px;
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  transform: translateY(-50%);
}

nav .sub-menu ol {
  list-style: none;
}

nav .sub-menu ol li {
  display: flex;
  justify-content: center;
  align-items: center;
  height: var(--link-height);
  transition: all var(--transition-time) ease;
  transition-delay: calc(80ms + var(--delay));
  cursor: pointer;
}

nav .sub-menu ol li:hover {
  background: rgba(0, 0, 0, 0.25);
}

nav .sub-menu ol li.off-menu {
  opacity: 0;
  transform: translateY(30%);
}

nav .sub-menu ol li.on-menu {
  opacity: 1;
  transform: translateY(0%);
}

nav .sub-menu ol li a {
  font-size: 1.8rem;
  font-weight: normal;
  display: block;
}

nav .sub-menu-btn {
  --icon-width: 40px;
  position: absolute;
  top: 6%;
  right: 10%;
  width: var(--icon-width);
  height: var(--icon-width);
  background: rgba(0, 0, 0, 0.25);
  border-radius: 5px;
  opacity: 0;
  transform: translateX(-100%);
  transition: all var(--transition-time) cubic-bezier(0.8, 0, 0.33, 1.25);
  cursor: pointer;
  z-index: 8;
}

nav .sub-menu-btn .line {
  width: calc(var(--icon-width) - 28px);
  height: 2px;
  background: #fff;
  display: flex;
  flex-direction: column;
  margin: 12px 10px;
}

nav .sub-menu-btn .line__1 {
  transform-origin: left;
  transform: rotate(-35deg) translate(-1px, 8px);
}

nav .sub-menu-btn .line__2 {
  transform-origin: left;
  transform: rotate(35deg) translate(-1px, -8px);
}

nav .menu-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  --icon-width: 25px;
  position: absolute;
  top: 2%;
  left: -30%;
  width: calc(var(--icon-width) + 25px);
  height: calc(var(--icon-width) + 25px);
  flex-direction: column;
  transition: all calc(100ms + var(--transition-time)) cubic-bezier(0.8, 0, 0.33, 1.25);
  cursor: pointer;
  z-index: 10;
}

nav .menu-btn.close .line__1 {
  transform: rotate(45deg) translate(2px, -3px);
}

nav .menu-btn.close .line__2 {
  transform: rotate(-45deg);
}

nav .menu-btn.close .line__3 {
  transform: rotate(45deg) translate(-2px, 3px);
}

nav .menu-btn .line {
  width: var(--icon-width);
  background: #fff;
  height: 2px;
  margin: 3px 0;
  transition: all calc(var(--transition-time) + 100ms) cubic-bezier(0.9, 0, 0.33, 1);
  box-shadow: 0px 0px 5px 0px rgba(255, 255, 255, 0.52);
}

nav .menu-btn .line__1 {
  width: var(--icon-width);
  transform-origin: left;
}

nav .menu-btn .line__2 {
  width: var(--icon-width);
  transform-origin: center;
}

nav .menu-btn .line__3 {
  width: var(--icon-width);
  transform-origin: right;
}

nav.nav-open {
  transform: translateX(0%);
}

nav.nav-open .menu-btn {
  right: 10%;
}

nav.nav-open .nav-links li {
  transform: translateX(0);
  opacity: 1;
}

nav.sub-menu-open .sub-menu-btn {
  opacity: 1;
  transform: translateX(0);
}

nav.sub-menu-open .nav-links li {
  pointer-events: none;
  opacity: 0;
  transform: translateY(-10%);
}

nav.sub-menu-open .nav-links .hover-el {
  opacity: 0;
}

.index-1 {
  background-color: #000;
  height: 100%;
  width: 100%;
  overflow: hidden;
  position: relative;
}

.nav-box {
  position: fixed;
  z-index: 4;
  height: 94px;
  width: 90%;
  padding: 0 5% 20px 4%;
  /* background-color: rgba(0, 0, 0, .2);
  border-bottom: solid 1px #4e4e4e; */
}

.swiper-pagination-bullet {
  width: 16px!important;
  height: 16px;
}

:root {
  --swiper-theme-color: #4b926e;
}

.logo-box {
  margin-top: 20px;
  left: 3%;
  width: 26%;
  float: left;
}

.lx-dh img{
width: 33px;  
margin-top: 2px;
}

.lx-dh{
  float: right;
  margin-top: 28px;
  margin-right: 50px;
}

.lx-dh span{
  font-size:24px ;
  color: #fff;
  margin-left: 10px;
}

.mp4-box {
  position: absolute;
  z-index: 10;
  width: 400px;
  bottom: -8px;
  right: 0;
  padding: 4px;
  background-color: #fff;
}

.mp4-box video{
  width: 100%;
}


.banner-qh{
  position: absolute;
  bottom: 2%;
  left: 0;
  width: 100%;
  text-align: center;
  height: 16px;
  display: flex;
  justify-content: center; 
}

.banner-qh a{
  display: block;
  width: 12px;
  height: 12px;
  border-radius: 8px;
  background-color: #fff;
  float: left;
  margin-left: 10px;
}

.banner-qh a:nth-child(1){
  background-color: #4b926e;
}

/* 第二屏 */

.index-2{
  overflow: hidden;
  width: 100%;
  height: 100%;
  position: relative;
}

.cp-kys{
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 10;
}

/* div .cp-kys = function (){
  modal.style.animation ="dispear 0.6s"
}

@keyframes dispear{
  from{
    transform: scale(1);
  }
  to{
    transform: scale(0);
  }
}

@-webkit-keyframes dispear{
  from{
    -webkit-transform: scale(1);
  }
  to{
    -webkit-transform: scale(0);
  }

} */
.besh-resim {
  width: 100%;
  height: 100%;
  overflow: hidden;
  padding-top:230px ;

}

.resim-isimler {
  float: left;
  width: 20%;
  height: 100%;
  margin: 0;
  padding: 0;
}

.resim-isim {
  position: relative;
  height: calc((100% - 100px)  / 8);
  line-height: 35px;
  list-style: none;
  background-color: #fff;
  border-bottom:solid 1px #ececec;
  display: table;
  width: 100%;
}

.resim-isim a{
  display: table-cell;
  vertical-align: middle;
  width: 100%;
}

.reng {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  overflow: hidden;
  line-height: 0;
  font-size: 0;
  z-index: 1;

}

.reng1 {
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background-color: #0057a2;
}

.reng2 {
  background-color: #0057a2;
}

.isim {
  display: block;
  position: relative;
  height: 100%;
  z-index: 2;
  padding-left: 30px;
  line-height: 35px;
  text-decoration: none;
  color: #1a1a1a;
  transition: all 1s;
}

.isim:hover{
  color: #fff;
}

.resimler {
  float: right;
  position: relative;
  width: 80%;
  height: 100%;
  background: #4e6d8d;
}

.resim-ulinish {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
  text-decoration: none;
  overflow: hidden;
}

.resim-ulinish:first-child {
  display: inline;
}

.yuklesh {
  display: block;
  position: relative;
  top: 70px;
  width: 70%;
  z-index: 1;
  margin: 0 auto;
  text-align: center;
  line-height: 20px;
  font-weight: bold;
  color: #ccc;
}

.resim {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 2;
  -webkit-animation-name: scaleDraw;
  /*关键帧名称*/
  -webkit-animation-timing-function: ease-in-out;
  /*动画的速度曲线*/
  -webkit-animation-iteration-count: infinite;
  /*动画播放的次数*/
  -webkit-animation-duration: 30s;
  /*动画所花费的时间*/
}

@keyframes scaleDraw {

  /*定义关键帧、scaleDrew是需要绑定到选择器的关键帧名称*/
  0% {
    transform: scale(1);
    /*开始为原始大小*/
  }

  25% {
    transform: scale(1.1);
    /*放大1.1倍*/
  }

  50% {
    transform: scale(1);
  }

  75% {
    transform: scale(1.1);
  }
}


.cp-wa{
  position: absolute;
  width: 80%;
  left: 0;
  right: 0;
  margin: 0 auto;
  bottom: 20%;
  z-index: 3;
  background-color: rgba(255, 255, 255, 0.9);
  padding: 20px;
  border-radius: 4px;
}

.cp-bt h1{
  font-size: 20px;
  font-weight:600 ;
  margin-bottom: 20px;
  color:#0057a2 ;
  border-bottom: solid 1px #d0d0d0;
  padding-bottom: 10px;
}

.cp-bt p{
  color: #6f6f6f;
  font-size: 16px;
}

.cp-bt a{
  width: 148px;
  line-height: 42px;
  display: block;
  margin: 0 auto;
  border: solid 1px #d0d0d0;
  border-radius: 4px;
  transition: all .5s;
  color: #fff;
  margin-top: 20px;
  font-size: 16px;
}

.cp-bt a:hover{
  background-color: #4b926e;
  color: #fff;
}

.index-3{
  overflow: hidden;
  background-color:#23313c;
}

.index-3 canvas{
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  height: 100%;
  width: 100%;
  background-color:#23313c;
}

.abou-1 {
position: relative; 
 z-index: 3;
 width: 100%;
 height: 100%;
}

.abou-1 .about-2{
  position: relative;
  width: 50%;
  float: left;
  z-index: 4;
  height: 100%;
}

/* .about-2 img{
  height: 100%;
} */

.abot-3{
  width: 50%;
  float: left;
  overflow: hidden;
  height: 100%;
}

.gs-jj{
  text-align: justify;
  padding: 12%;
  margin-top: 16%;
  position: relative;
  z-index: 6;
}

.gs-jj h1{
  font-size:32px;
  font-weight: 600;
  color:#fff;
  line-height: 32px;
}

.gs-jj h2{
  font-size: 28px;
  line-height: 74px;
  color: #fff;
  position: relative;
}

/* .gs-jj h2::before{
  position: absolute;
  content: "";
  width: 80px;
  height: 4px;
  background-color: #4c936f;
  bottom: -5px;
  left: 0;
  border-radius: 1px;
} */

.gs-jj p{
line-height: 42px;  
font-size: 16px ;
color: #fff;
margin-top: 20px;
text-align: justify;
}

.gs-jj a{
  position: relative;
  z-index: 6;
  width: 148px;
  line-height: 42px;
  display: block;
  border: solid 1px #d0d0d0;
  border-radius: 4px;
  color: #fff;
  margin-top: 20px;
  font-size: 16px;
  text-align: center;
  transition: all .5s;
}

.gs-jj a:hover{
  background-color:#4b926e;
  color: #fff;
}

.index-4{
  overflow: hidden;
  background-color: #f9f9f9;
  background: url(../img/hezuo.jpg) no-repeat center center / cover;
  background-size: 100% 100%;
}


.news-box{
  width: 100%;
  margin-top: 2%;
  padding: 0 30px;
  margin: 0 auto;
}

.swiper-button-prev{
  left:5% ;
}

.swiper-button-next{
  right: 5%;
}

.news-1{
  max-width: 1600px;
  margin: 0 auto;
  overflow: hidden;
  padding: 10px;
}

.news-2{
  padding: 16px;
  position: relative;
  transition: all 1s;
  border-radius: 4px;
}

.news-2:hover{
  transition: all 1s;

  box-shadow: 0px 0px 6px 0px rgba(0, 0, 0, 0.43);
}

.news-2 a{
  display: block;
  transition: all 1s;
}


.news-2 a:hover h1{
color: #4b926e;
}



.news-2 a:hover img{
  transform: scale(1.3);
}

.news-img{
  overflow: hidden;
}


.news-img img{
  transition: all 2s;
}

.news-txt{
  text-align: justify;

}

.news-txt p{
font-size: 16px;
color: #383838;
line-height: 32px;
margin-top: 20px;
height: 28px;
overflow: hidden;
transition: all 1s;
}

.news-2:hover p{
  height: 96px;
} 

.news-txt h2{
  color:#333 ;
  font-size: 14px;
  line-height: 36px;
  margin-top: 10px;
}

.news-txt h1{
  font-weight: 600;
  color: #1a1a1a;
  transition: all 1s;
}

.news-bt h1{
  font-size: 28px;
  color: #fff;
}

.news-bt{
margin-bottom: 30px;
}

.news-bt p{
  line-height: 46px;
  color: #fff;
}

.news-xq{
  margin-top: 40px;
}

.index-5{
  overflow: hidden;
  position: relative;
  background-color: #23313c;
}



.lxy{
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.index-5::before{
  position: absolute;
  width: 100%;
  height: 100%;
  content: "";
  left: 0;
  top: 0;
  backdrop-filter: blur(1px);
  z-index: 3;
}

.hz-box{
  width: 100%;
  position: relative;
  margin-top: 5%;
  z-index: 4;
}

.hz-img{
  position: relative;
  margin-top: 120px;
  padding: 0 100px;
}

.hz-img img{
  opacity: .6;
}

.hz-bt{
  position: absolute;
  top: -36px;
  width: 100%;
  text-align: center;
}

.hz-bt h1{
  font-size: 28px;
  color: #fff;
}

.hz-bt p{
  font-size: 18px;
  line-height: 46px;
  color: #fff;
}

.hz-bd{
  position: absolute;
 
}

.hz-1 {
  top:29%;
  left: 21%;
 
}

.hz-2{
  bottom: 38%;
  left: 32%;
  
}

.swiper-container3>.swiper-wrapper>.swiper-slide{
  border-radius: 4px;
}

.hz-3{
  bottom: 42%;
  left: 52%;
  
}

.hz-4{
  right: 17%;
  bottom: 32%;
 
}

.hz-5{
  right: 22%;
  top: 25%;
 
}

.hz-6{
  right: 44%;
  top: 16%;
 
}

.hz-7{
  left:35%;
  top: 13%;
 
}





@keyframes myfirst {  
  0% {  
      transform: translate(0px, 0px);  
  }  
  50% {  
      transform: translate(0px, -10px);  
  }  
  100% {  
      transform: translate(0px, 0px);  
  }  
}  

.hz-bd img{
  width: 38px;
}

.hz-bd p{
  background-color: #4b926e;
  padding: 2px 6px;
  font-size: 15px;
  color: #fff;
  margin-bottom: 6px;
}

.hz-logo{
  max-width: 1728px;
  margin: 0 auto;
  overflow: hidden;
}

.hz-logobox{
  border: solid 1px #e0e0e0;
  border-radius: 4px;
  overflow: hidden;
}

.index-6{
  overflow: hidden;
  position: relative;
  height: 100%;
  width: 100%;
}

.map-img{
position: absolute; 
width: 100%; 
top: 0;
left: 0;
height: 100%;
}

.map-img::before{
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  left: 0;
  z-index: 3;
  transition: all 1s;
}

.map-img:hover::before{
  opacity: 0;
z-index: -2;

}

.map-dt{
  position: relative;



}

.map-dt img{
  width: 1920px;
  position: absolute;
  left: 50%;
  margin-left: -960px;
  top: 50%;
  margin-top: -40px;
}






.foot-box{
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 6;
}

.ly-box{
  position: relative;
  height: 100%;
  background-color: #23313c;
}

.ly-box form{
  position: absolute;
  width: 88%;
  top: -120px;
  left: 0;
  right: 0;
  margin: 0 auto;
  background-color: #fff;
  padding: 10px;
  border-radius: 4px;
  box-shadow: 0px 0px 6px 0px rgba(0, 0, 0, 0.43);
}

.ly-l{
  float: left;
  width: 50%;
}

.ly-l input{
  width: 97%;
  padding: 10px;
  border: solid 1px #dcdcdc;
  color: #6f6f6f;
  border-radius: 4px;
  margin-bottom: 10px;
}

.ly-r{
  float: left;
  width: calc(48% - 20px);
  margin-left: 20px;
}

.ly-r textarea{
width: 100%;  
border: solid 1px #dcdcdc;
border-radius: 4px;
padding: 10px;
height: 190px;
}

.ly-l h1{
  line-height: 64px;
  font-weight: 600;
}

.ly-an{
  float: left;
  width: 100%;
}

.ly-an button{
  padding: 6px 26px;
  background-color: #4b926e;
  color: #fff;
  border-radius: 4px;
}

.ly-an input{
  padding: 6px 26px;
  background-color: #23313c;
  color: #fff;
  border-radius: 4px;
  margin-left: 10px;
}

.foot-1{
  max-width: 1728px;
  margin: 0 auto;
  padding: 0 10px;

}

.foot-1 ul li a{
display: block;
line-height: 42px;
color: #fff;
font-size: 15px;
}

.foot-1 ul li a:nth-child(1){
  font-weight: 600;
  font-size: 20px;
  color: #fff;
}

.foot-1 ul li {
float: left;  
width: 20%;
}

.foot-1 ul li p{
  text-align: justify;
  font-size: 16px;
  line-height: 34px;
  color: #fff;
  margin-top: 20px;
}

.foot-1 ul{
padding-top: 100px;
padding-bottom: 100px;
}

.ewm-1{
  float: left;
  width: 46%;
  margin-left: 4%;

}

.ewm-1 img{
  width: 80%;
}

.ewm-1 p{
  color: #fff;
  text-align: center!important;
}
.bq-box{
  position: absolute;
  width: 100%;
  bottom: 0;
  border-top: solid 1px #8a8a8a;
}

.bq-1{
  max-width: 1728px;
  margin: 0 auto;
}

.bq-1 p{
  float: left;
  color: #fff;
  line-height: 52px;
  font-size: 16px;
}

.bq-1 a{
  float: right;
  color: #fff;
  line-height: 52px;
  font-size: 16px;
}



.container {
  display: flex;
  width: 100%;  
  box-sizing: border-box;
  height: 100vh;
  background: url(../img/cpzx.jpg) no-repeat center center / cover;
}

.box {
  flex: 1;
  overflow: hidden;
  transition: .5s;
  line-height: 0;
  position: relative;
  border: solid 1px rgba(0, 0, 0, 0.3);
}

.box::before{
  position: absolute;
  width: 100%;
  height: 100%;
  content: "";
  display: block;
  background-color: rgba(0, 0, 0, 0.2);
  z-index:1;
  transition: all 1s;
}

.cp-1{
  position: relative;
  z-index: 2;
  top: 30%;
}

.cp-1 h1{
  line-height: 36px;
  background-color: #4c936f;
  color: #fff;
  margin: 0 46px;
  border-radius: 2px;
}

.box > img {
  width: 200%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: .5s;
}

.box > span {
  font-size: 3.8vh;
  display: block;
  text-align: center;
  height: 10vh;
  line-height: 2.6;
}

.box:hover {
  flex: 1 1 30%;
}

.box:hover > img {
  width: 100%;
  height: 100%;
}

.cp-img{
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, 0%);
  height: 100%;
  opacity: 0;
  transition: all 1s;
}

.box:hover .cp-img{
  opacity: 1;
}

.box:hover .cp-1{
  display: none;
}

.box:hover::before{
  opacity: 0;
}

.cp-img img{
  height: 100%;
  width: auto;
}

.cp-xq{
  position: absolute;
  bottom: 17%;
  display: block;
  background-color: rgba(255, 255, 255, 0.9);
  padding: 10px;
  margin: 0 20px;
  border-radius: 4px;
  z-index: 5;
  opacity: 0;
  transition: all 1s;
  width: calc(100% - 60px);
  box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.3);
}

.box:hover .cp-xq{
  opacity: 1;
  z-index: 10;
}

.cp-xq h1{
  line-height: 42px;
  font-weight: 600;
  font-size: 18px;
  border-bottom: solid 1px #d0d0d0;
}

.cp-xq p{
  line-height: 28px;
  font-size: 15px;
  margin-top: 10px;
}


.cp-xq a{
  line-height: 42px;
  padding:6px 18px;  
  background-color:#4b926e ;
  color: #fff;
  font-size: 15px;
  border-radius: 4px;
}

.cpzx-bt{
  position: absolute;
  top: 16%;
  z-index: 3;
  font-size: 18px;
  color: #fff;
  width: 100%;
}

.cpzx-bt h1{
  font-size: 28px;
}

.cpzx-bt  p{
  line-height: 48px;
}

.cpxq-qb{
  position: absolute;
  bottom: 5%;
  display: block;
  z-index: 3;
  width: 100%;  
  height: 80px;

}

.cpxq-qb a{
  background-color: #0057a2;
  padding: 14px 28px;
  color: #fff;
  border-radius: 4px;
}

.cp-mx{
  position: absolute;
  bottom: 0;
  height: 70px;
  width: 100%;
  z-index: 4;
  padding-top:40px ;
}

.cp-mx a{
  padding: 12px 32px;
  border: solid 1px #d0d0d0;
  border-radius: 4px;
  color: #d0d0d0;
  transition: all 1s;
}

.cp-mx a:hover{
  background-color: #4b926e;
  color: #fff;
}

.swiper-container2>.swiper-wrapper>.swiper-slide{
  border-radius: 4px;
}


.about-2-1{
  width: calc(100% / 3);
  height: 100%;
  position: relative;
  padding: 0 5%;
}

.about-2-3{
  position: relative;
  top: 40%;
}

.about-2-3 img{
  width: 80px;
  margin: 0 auto 30px auto;
  
}

.about-2-4 h1{
  color: #ffffff;
    font-size: 28px;
    margin-bottom: 30px;
}

.about-2-4 p{
  letter-spacing: 11px;
    color: #fff;
    margin-bottom: 80px;
    text-transform: uppercase;
    font-size: 12px;
}

.about-2-4 a{
  width: 180px;
  height: 50px;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
  border: solid 1px rgba(255, 255, 255, 0.2);
  text-align: center;
  color: #fff;
  font-size: 16px;
  letter-spacing: 2px;
  line-height: 48px;
  -webkit-transition: all .4s;
  -o-transition: all .4s;
  -moz-transition: all .4s;
  transition: all .4s;
  cursor: pointer;
  display: block;
  margin: 0 auto;
}

.about-2-4 a:hover{
  background-color: #4b926e;
  color: #fff;
}

.about-2-3 .line{
  width: 20px;
  height: 2px;
  background-color: #ffffff;
  margin: 0 auto 30px;
}



@media only screen and (max-width: 1440px){
  .cpzx-bt{
    top: 12%;
  }

  .cp-1{
    top: 34%;
  }

  .gs-jj{
    margin-top: 0;
  }

  .news-bt{
    padding-top: 8%;
  }

  .ly-box form{
    display: none;
  }

  .foot-1 ul{
    padding:60px 10px 80px 10px;
  }

  .swiper-button-next{
    right: 3%;
  }

  .swiper-button-prev{
    left: 3%;
  }

  .cp-xq{
    bottom: 12%;
  }
}
