@charset "utf-8";
/* CSS Document */
/***********通用基本类1************/

/*格式化样式*/
table {border-collapse:collapse;border-spacing:0;} 
fieldset,img {border:0} 
address,caption,cite,code,dfn,em,strong,th,var {font-style:normal;font-weight:normal} 
ol,ul {list-style:none} 
caption,th {text-align:left} 

q:before,q:after {content:''} 
abbr,acronym { border:0}

/*css定义超链接四个状态也有顺序的。*/

a:link, a:visited {text-decoration: none;color: #000000;}
a:hover, a:active {text-decoration: none;color: #ff9425;/* border: none; */}
/*以上语句分别定义了"链接、已访问过的链接、鼠标停在上方时、点下鼠标时"的样式。
注意，必须按以上顺序写，否则显示可能和你预想的不一样。记住它们的顺序是“LVHA”。*/
ul {
clear:both;
margin:0px;
padding: 0px;
}
ul, li {
list-style:none;
}

/***********通用基本类2************/

/* Copyright 2008 TSXMLOVE. All Rights Reserved. */
body,html{
	 font-size: 15px;
     font-family: Arial,"微软雅黑";
}
table {
border-collapse: collapse;
}


/*长度高度*/
.w1200{ width:1200px; margin:0 auto;}
.w100{ width:100%; text-align:center;}
.w50{ width:50%}

/*清除浮动*/
.clearfix:before,
.clearfix:after {
    content:"";
    display:table;
}
.clearfix:after {
    clear:both;
}
.clearfix {
    zoom:1; /* IE <8 */
}
.fl{ float:left;}
.fr{ float:right;}


/* 重置首页右侧小圆点 */
#fp-nav ul li a span, .fp-slidesNav ul li a span{    
    background-color: #555555;
    width: 5px;
    height: 5px;
    border: 0px;
    left: 4px;
    top: 4px;
}
#fp-nav ul li a.active span{    
    top: 0px;
    left: 0px;
    width: 11px;
    height: 11px;
    border: 1px solid white;
}

/* 首页头部 */
.header{
    position: fixed;
    z-index: 999;
    /* border-bottom: 1px solid white; */
    background: #00000029;
    width: 100%;
}
.header-box{
    width: 95%;
    margin: 0 auto;
    padding: 25px 0px;
  /*   min-width: 1366px; */
}
.he-logo{
   /*  width: 20%; */
    float: left;
    height: 40px;
    overflow: hidden;
}
.he-logo img{
    max-width: 100%;
    max-height: 100%;
}
.he-logo{
    padding: 10px 0px;
}
.he-nav{
    width: auto;
    float: right;
    margin-top: 10px;
}
.he-nav .heactive{color: #00945e !important}
.he-nav ul{}
.he-nav ul li{
    width: auto;
    float: left;
}
.he-nav ul li a{
    color: #dcdcdc;
    display: block;
    padding: 10px 35px;
    font-size: 15px;
}
.he-nav ul li a:hover{color: #00945e}
.he-nav ul li a.he-sear{    width: 37px;
    height: 37px;
    background: url(../images/sou.png) no-repeat center top 7px;
    overflow: hidden;
    padding: 0px;
    margin-top: 3px;}
.he-nav ul li a.he-sear:hover{background-position: 7px -22px;}
.he-form-dix{
    float: right;
    width: 100%;
    text-align: right;
    display: none;
    margin-top: 10px;
}
.he-form-dix .he-form-nr{
    background-color: #000000;
    border: 1px solid #00945e;
    height: 25px;
    width: 300px;
    color: #ccc;
    padding-left: 10px;
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
    padding: 1px 10px;
}
.he-form-dix .he-form-sub{
    background-color: #00945e;
    border: 0px;
    color: white;
    height: 29px;
    float: right;
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
    cursor: pointer;
}
.section-one-logo{
    position: absolute;
    z-index: 2;
    top: 20%;
    width: 100%;
    /*opacity: 0;*/
    /*-webkit-animation: bounce 1.0s ease-in-out;
     animation: bounce 1.0s ease-in-out;
     animation-delay: 0.8s;
     -webkit-animation-delay: 0.8s;
     animation-fill-mode: forwards;
     -webkit-animation-fill-mode: forwards;*/
}

@-webkit-keyframes tada {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1)
    }

    10%,20% {
        -webkit-transform: scale(0.9) rotate(-3deg);
        transform: scale(0.9) rotate(-3deg)
    }

    30%,50%,70%,90% {
        -webkit-transform: scale(1.1) rotate(3deg);
        transform: scale(1.1) rotate(3deg)
    }

    40%,60%,80% {
        -webkit-transform: scale(1.1) rotate(-3deg);
        transform: scale(1.1) rotate(-3deg)
    }

    100% {
        -webkit-transform: scale(1) rotate(0);
        transform: scale(1) rotate(0)
    }
}

@keyframes tada {
    0% {
        -webkit-transform: scale(1);
        -ms-transform: scale(1);
        transform: scale(1)
    }

    10%,20% {
        -webkit-transform: scale(0.9) rotate(-3deg);
        -ms-transform: scale(0.9) rotate(-3deg);
        transform: scale(0.9) rotate(-3deg)
    }

    30%,50%,70%,90% {
        -webkit-transform: scale(1.1) rotate(3deg);
        -ms-transform: scale(1.1) rotate(3deg);
        transform: scale(1.1) rotate(3deg)
    }

    40%,60%,80% {
        -webkit-transform: scale(1.1) rotate(-3deg);
        -ms-transform: scale(1.1) rotate(-3deg);
        transform: scale(1.1) rotate(-3deg)
    }

    100% {
        -webkit-transform: scale(1) rotate(0);
        -ms-transform: scale(1) rotate(0);
        transform: scale(1) rotate(0)
    }
}

.tada {
    -webkit-animation-name: tada;
    animation-name: tada
}


.section-one-logo img{width: 300px;height: 220px;}
.section-one-div{
    position: absolute;
    font-size: 60px;
    z-index: 2;
    top: 62%;
    font-weight: bold;
    width: 100%;
    -webkit-animation: tada 1.0s ease-in-out;
     animation: tada 1.0s ease-in-out;
     animation-delay: 0.8s;
     -webkit-animation-delay: 0.8s;
     animation-fill-mode: forwards;
     -webkit-animation-fill-mode: forwards;

}
@-webkit-keyframes bounce {
    0%,100%,20%,50%,80% {
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }

    40% {
        -webkit-transform: translateY(-30px);
        transform: translateY(-30px)
    }

    60% {
        -webkit-transform: translateY(-15px);
        transform: translateY(-15px)
    }
}

@keyframes bounce {
    0%,100%,20%,50%,80% {
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0)
    }

    40% {
        -webkit-transform: translateY(-30px);
        -ms-transform: translateY(-30px);
        transform: translateY(-30px)
    }

    60% {
        -webkit-transform: translateY(-15px);
        -ms-transform: translateY(-15px);
        transform: translateY(-15px)
    }
}

.bounce {
    -webkit-animation-name: bounce;
    animation-name: bounce
}


.section-one-div span{
    color: #01b170;
    font-weight: bold;
}

/*第一屏banner新效果*/


/* 第二屏幕 */
.section2-left{
    width: 20%;
    float: left;
   
}
.section2-left-d1{
    padding: 0px 20px;
}
.section2-left-d1 p:nth-child(1){
    writing-mode: tb-rl;
    float: left;
    text-transform: uppercase;
    font-size: 30px;
    text-align: left;
}
.section2-left-d1 p span{
    font-size: 50px;
    font-weight: bold;
}

.section2-left-d2{
    font-size: 15px;
    margin-top: 200px;
    padding: 0px 35px;
    color: #848484;
}
.section2-left-d2 a{
    color: #848484;
    padding: 5px 10px;
    transition: all ease-out .4s;
    -webkit-transition: all ease-out .4s;
    -moz-transition: all ease-out .4s;
    -ms-transition: all ease-out .4s;
    font-size: 14px;
}
.section2-left-d2 a:hover{
    color: #fff;

    
}
.section2-right{
    width: 80%;
    float: right;
    height: 100%;
    overflow: hidden;
}
.swiper-containerb{
		        width: 100%;
		        height: 100%;
		        margin-left: auto;
		        margin-right: auto;
		    }
		    .swiper-containerb .swiper-slide {
		        text-align: center;
		        font-size: 18px;
		        background: #181818;

		        /* 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;
		    }
.swiper-containerb .swiper-slide .megncheng{background-color: #00000047;position: absolute;z-index: 2;top: 0px;width: 100%;height: 100%;}
.swiper-containerb .swiper-slide .index-priimg{height: 100%;width: 100%;    transition: all 0.6s;}
.swiper-containerb .swiper-slide .index-priimg:hover{transform: scale(1.2);}
.swiper-containerb .swiper-slide .projsshow{
    position: absolute;
    height: 100%;
    display: none;
    width: 100%;
}
.swiper-containerb .swiper-slide .projsshow .projsshow-t{
    height: 75%;
    /* padding: 2%; */
    background-color: #f0f8ff00;
    border: 5px solid #01b170;
}
.swiper-containerb .swiper-slide .projsshow .projsshow-b{
    background-color: #01b170;
    height: 40%;
    position: absolute;
    bottom: 0px;
    width: 100%;
}
.swiper-containerb .swiper-slide .projsshow .projsshow-bb{
    padding: 110px 35px;
}
.swiper-containerb .swiper-slide .projsshow .projsshow-bb p{
    margin: 0;
    font-size: 20px;
    text-align: left;
}
.swiper-containerb .swiper-slide .projsshow .projsshow-bb p span{
    color: #00d687ed;
    text-transform: uppercase;
    font-size: 17px;
}
.swiper-containerb .swiper-slide .projsshow .projsshow-bb div{
    font-size: 14px;
    margin-top: 20px;
    height: 80px;
    line-height: 27px;
    text-align: justify;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    word-break: break-all;
    -webkit-line-clamp: 3;
}
.swiper-containerb .swiper-slide .projsshow .projsshow-bb img{
    margin-top: 25px;
    width: 70px;
    height: 70px;
    float: none;
}

/* 第三屏 */
.section3-left{
    width: 20%;
    float: left;
   
}
.section3-left-d1{
    padding: 0px 20px;
}
.section3-left-d1 p:nth-child(1){
    writing-mode: tb-rl;
    float: left;
    text-transform: uppercase;
    font-size: 30px;
    text-align: left;
}
.section3-left-d1 p span{
    font-size: 50px;
    font-weight: bold;
}
.section3-zhong{
    width: 70%;
    float: left;
    position: relative;
    overflow: hidden;
}
.section3-you{
    width: 10%;
    float: right;
    height: 100%;
    background-color: #00945e;
}


/* .swiper-containerc{width: 100%;height: 400px;margin: 50px auto;color: black;margin-top: 20%;position: relative;}
.swiper-containerc .swiper-slide {text-align: center;font-size: 18px;background: #181818;line-height: 300px;}
.swiper-containerc .swiper-pagination-progressbar{
background-color: #00945e;
} */
.xmcontainer .containerc-nr{
    line-height: 0px;
}
.xmcontainer .containerc-nr .containerc-nr-img{
    float: LEFT;
    width: 33%;
    line-height: 0px;
}
.xmcontainer .containerc-nr .containerc-nr-img img{width: 100%;}
.xmcontainer .containerc-nr .containerc-nr-div{
    float: left;
    width: 67%;
    line-height: 0px;
    text-align: left;
}
.xmcontainer .containerc-nr .containerc-nr-div h3{
    color: white;
    font-size: 20px;
    margin: 0;
    height: 20px;
    /*padding-left: 50px;*/
    margin-top: 80px;
}
.xmcontainer .containerc-nr .containerc-nr-div p{
    margin: 0px;
    color: #5d5d5d;
    height: 30px;
    /*padding-left: 50px;*/
    line-height: 30px;
    font-size: 16px;
    text-transform: uppercase;
}
.xmcontainer .containerc-nr .containerc-nr-div div{
    color: #8e8c8c;
    line-height: 28px;
    font-size: 15px;
    /*padding-left: 50px;*/
    height: 85px;
    width: 72%;
    text-overflow: ellipsis;
    display: -webkit-box;
    margin-top: 50px;
    line-clamp: 3;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.xmcontainer .containerc-nr .containerc-nr-div a{
    color: #b9b9b9;
    font-size: 15px;
    padding-left: 50px;
    margin-top: 50px;
    display: block;
}



@font-face {font-family: "iconfont";
    src: url('../../../../../at.alicdn.com/t/font_1457575_wc4kbab342e.eot%3Ft=1571103794780'); /* IE9 */
    src: url('../../../../../at.alicdn.com/t/font_1457575_wc4kbab342e.eot%3Ft=1571103794780') format('embedded-opentype'), /* IE6-IE8 */
    url('data:application/x-font-woff2;charset=utf-8;base64,d09GMgABAAAAAAQ0AAsAAAAACMAAAAPmAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHEIGVgCDMgqETIQbATYCJAMUCwwABCAFhG0HWRu4B8gehXEsLBShUansf34QD19r6Pu7exdglJGA46Oo44HAAilVYVtjO/UEwuX/dOp3TiETj7eViAQFMpxsGSJXOhdQLpCnEsEaAJyKOOa5yu3/71A1c1peaH6LxeUu+7LmpIQGYCgdQLXa3lgqWQtSUe8yNhm+gkz1HR8TaDauL93+9Lks5CnIVYG4LIV8kBf5lQ5paHTVlQeLeA/ZGtOLrAoA7/Tvxy8YHHkkVUZuPDg7LQgTv+o+9ENaRoOVkgLGw0UxeoyMVaAQN6vxy5Ctr0KaF6cztoFmjZJ0qOOyP/T+0C+TwVtuyNlM/+GRFSERNWJvxcztRuGrjmvJfM021By9wSvA0Q8aEl7XgzSjDR9A9AMRjLooq2Sp22szIuUggx41cA42cVLNnHTjDdzao9qxtEc4kXLzxw/6qIszyuoxg+nMwY2I1knSQFIbn+xr+sA3fxQa33MN7zYzwhoc3tz0IWhJHzt1VG9+efzMCYE9qkjqQJX0MY3lOIrwAa0pwMck7Gk6mpuFpqaNjPAGh9mGhhXGo8qPH3Sy0WPpO2fgNZ3IXrLCBtZrHDt6nQbC9klVPTnxIUMKufWH0xtAeFjJWd/YuPZ21s6KF3O2N1bu1avuxtf213ndDi08MDocHn3gIkMKufWL00nI7GjJxji7hXoxFhY/YTpSXcTkNRawFg0xWJpTvrzunf9a91bfW48nv9yvqyO2Cqs47BCtldaWN0MqbwhvqLABnpnwgvmbecm8apCVPWf+RRHCJxnUARdRYzO6jC6h2EV0YSG5hC7fNuKYrNKN7owndPnKBvdG8TIXuO+pVH74w/MTJrybgCd0TbgwgJ4OSwFOW9EN1ENf3oCeoIkA5E+6R3+Ov/F/+pzCNZax/xsNBXwunzYY5k41BvJzgG/YYWPjX8G44UpZmkmgKvNFbpgnK+tvoj0tdprxB0h36zqMs2/jYUKjPg9JgzHIGs1SC3MVKi3WoNZoC5qtmPF4ix4KJEoTlu1BEDo9gKTdR8g6VVILsxMq/b5DrTMQNDsMxwtbzIekn6IQHyVB7N+EpYBcILIQ1ZvRxSSUjPmU0KwVPFFUqYQH9R+YtmaQAqIc4hZ1fWgwpSIWFTmOp6PPkVhMxglFjpAA7R+mNDF6wACx9k39A3Ic9PYoCB+KCML8NsEkAbICotxO6bOfX4wISYrxUTqWLnR5hEIlHR0bpL+BG1Bn2As2WnopX1GtFzIYRYkwkUIWh01HUSJG6zIsUT8vggig+gvvUE0YbQDeJG5q7396Z/w9PgTNyMuqSJGjRBW15ouSr4DKyU3MaXDVfpuTsp6bQmeu9gEAAAA=') format('woff2'),
    url('../../../../../at.alicdn.com/t/font_1457575_wc4kbab342e.woff%3Ft=1571103794780') format('woff'),
    url('../../../../../at.alicdn.com/t/font_1457575_wc4kbab342e.ttf%3Ft=1571103794780') format('truetype'), /* chrome, firefox, opera, Safari, Android, iOS 4.2+ */
    url('../../../../../at.alicdn.com/t/font_1457575_wc4kbab342e.svg%3Ft=1571103794780') format('svg'); /* iOS 4.1- */
  }
  
  .iconfont {
    font-family: "iconfont" !important;
    font-size: 16px;
    font-style: normal;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }
  
  .icon-jiantouyou:before {
    content: "\e62a";
  }
  
  .icon-jiantou-zuo:before {
    content: "\e62d";
  }
  
  .icon-zuojiantou:before {
    /*content: "\e601";*/
  }
  
  .icon-jiantou:before {
    content: "\e605";
  }
  



.xmcontainer .button {
    /* position: absolute;
    cursor: pointer;
    top: 15%;
    font-size: 40px;
    color: #333; */

        position: absolute;
    cursor: pointer;
    height: 82px;
    font-size: 40px;
    color: #333;
    background-color: #00945e;
    z-index: 3;

}
.xmcontainer .prev {
    bottom: -44px;
    right: 40px;
    padding-top: 0px;
    background: url(../images/left.png) no-repeat center #00945e;
    width: 40px;
    height: 135px;

}
.xmcontainer .next {
    right: 0px;
    bottom: -44px;
    padding-top: 0px;
    background: url(../images/right01.png) no-repeat center #00945e;
    width: 40px;
    height: 135px;
}
.xmcontainer {
    width: 100%;
    margin: 0 auto;
    /* height: 500px; */
    position: relative;
    margin: 20% 0px;
}
.xmcontainer .slide_wrap  {
    overflow: hidden;
    position: relative;
        margin-top: 60px;
}
.xmcontainer .slide_wrap ul {
    position: relative;
    left: 0px;
        z-index: 1;
}
.xmcontainer .slide_wrap::after {
    width: 100%;
    height: 1px ;
    background-color: #999;
    content: '';
    position: absolute;
    top: 29px;
    left: 0px;
}
.xmcontainer .slide_items li{
    float: left;
    font-size: 20px;
    width: 200px;
    text-align: center;    
}
.xmcontainer .slide_items li a {
    display: block;
}
.xmcontainer .slide_items li.on {
    color: yellow;
    border-radius: 30px;
}
.xmcontainer .slide_items li.on div.circle{
        border: 1px solid white;
}

.xmcontainer .slide_items li div {
    display: inline-block;
    width: 16px;
    height: 16px;
    /* border: 1px solid white; */
    border-radius: 13px;
    padding: 2px;
    box-sizing: border-box;
    margin-top: 22px;
}
.xmcontainer .slide_items li i{
    display: block;
    width: 10px;
    height: 10px;
    background-color: white;
    border-radius: 5px;

}
.xmcontainer .slide_items li.on div {
    display: inline-block;
    width: 26px;
    height: 26px;
    background-color: #ffffff00;
    border-radius: 13px;
    padding: 7px;
    box-sizing: border-box;
    margin-top: 16px;
}

.xmcontainer .slide-content {
    margin-top: 200px;
}
.xmcontainer .slide-content img{
   width: 100%;
}
.xmcontainer .slide-content ul {
    display: none;
}
.xmcontainer .slide-content ul.on {
    display: block;
}


/* 第四屏 */
.section4-left{
    width: 20%;
    float: left;
    height: 100%;
    background-color: #00945e;
}
.section4-left-d1{
    padding: 0px 20px;
}
.section4-left-d1 p:nth-child(1){
    writing-mode: tb-rl;
    float: left;
    text-transform: uppercase;
    font-size: 30px;
    text-align: left;
}
.section4-left-d1 p span{
    font-size: 50px;
    font-weight: bold;
}
.section4-right{
    width: 80%;
    float: left;
    position: relative;
    overflow: hidden;
    background: url(../images/sibeijin.png) no-repeat center;
    background-size: 100% 100%;
    height: 100%;
}
.section4-box{
    padding: 20% 20%;
    line-height: 0px;
    text-align: left;
}
.section4-box h4{
    margin: 0px;
    font-size: 25px;
    height: 16px;
    font-weight: normal;
}
.section4-box-p{
    margin-top: 28px !important;
    color: #989898;
}

.section4-right p{

}
.section4-box-numbox-div-d1 p{
        margin: 0px;
    font-size: 15px;
   /* margin-top: 40px;*/
    text-transform: uppercase;
    height: 20px;
}
.section4-box-nr{
    -webkit-animation: fadeInRight 0.8s ease-in-out;
    animation: fadeInRight 0.8s ease-in-out;
    animation-delay: 0.6s;
    -webkit-animation-delay: 0.6s;
    animation-fill-mode: forwards;
    -webkit-animation-fill-mode: forwards;
}
.section4-right .section4-box-nr{
    margin-top: 30px;
    font-size: 15px;
    line-height: 33px;
    height: 162px;
    text-align: justify;
    color: #989898;
    overflow: hidden;
}
.section4-right .section4-box-numbox{
    display: flex;
    flex-direction: row;
    margin-top: 40px;
}
.section4-right .section4-box-numbox-div{
    text-align: left;
    width: 170px;
    margin-right: 60px;
}
.section4-right .section4-box-numbox-div-d1{
    width: auto;
    text-align: right;
    float: left;
}
.section4-right .section4-box-numbox-div-d2{
    width: auto;
    float: left;
    height: 10px;
    margin-top: 26px;
    font-size: 20px;
}
.section4-right .section4-box-numbox-div-d1 p:nth-child(1){
    font-size: 45px;
    font-weight: bold;
} 
.section4-right .section4-box-numbox-div-d1 p:nth-child(2){
    margin-top: 14px;
    text-align: center;
} 
.section4-right a{
    font-size: 16px;
    color: #9e9e9e;
    margin-top: 49px;
    display: block;
}


/* 第五屏 */
.section5-left{
    width: 20%;
    float: left;
    height: 100%;
    background-color: #00945e;
}
.section5-left-d1{
    padding: 0px 20px;
}
.section5-left-d1 p:nth-child(1){
    writing-mode: tb-rl;
    float: left;
    text-transform: uppercase;
    font-size: 30px;
    text-align: left;
}
.section5-left-d1 p span{
    font-size: 50px;
    font-weight: bold;
}
.section5-right{
    width: 80%;
    float: left;
    position: relative;
    overflow: hidden;
    height: 100%;
}

/* 焦点图效果 */
				.picBtnTop{width: 100%;height: 100%;/* border:1px solid #ccc; *//* padding:5px; */position:relative;overflow:hidden;zoom:1;}
				.picBtnTop .hd{width: 30%;height: 100%;position:absolute;right: 0px;overflow:hidden;}
				.picBtnTop .hd ul{height:100%;}
				.picBtnTop .hd ul li{width: 98%;text-align:center;height: 32.333%;/* border: 5px solid #ef0000; */    padding: 0.7%;background-color: #181818;}
				.picBtnTop .hd ul li img{width: 100%;height: 100%;display: none;cursor:pointer;vertical-align:bottom;}
				.picBtnTop .hd ul li.on{background-color: #00945e;}
				.picBtnTop .hd ul li.on img{display: block;/* border-color:#f60; *//* width: 100%; *//* height: 100%; */}
/* 				.picBtnTop .bd{width: 70%;height: 100%;position:relative;}
.picBtnTop .bd li{ position:relative; zoom:1; vertical-align:middle;}
.picBtnTop .bd li .pic{ position:relative; z-index:0;  }
.picBtnTop .bd li .pic img{width: 100%;height: 100%;vertical-align:bottom;}
.picBtnTop .bd li .bg{ width:400px; height:30px; position:absolute; left:0; bottom:0; z-index:1;  background:#000; filter:alpha(opacity=60);opacity:0.6;    }
.picBtnTop .bd li .title{ width:400px; height:30px; line-height:30px; left:0; bottom:0;   position:absolute; z-index:2;  }
.picBtnTop .bd li .title a{ color:#fff; padding-left:15px;  } */
				#demo1,#demo2{ margin-bottom:20px;  }

				/* tab选项切换效果 */
				.slideTxtBox{ width:510px; border:1px solid #ddd; text-align:left;  }
				.slideTxtBox .hd{ height:30px; line-height:30px; background:#f4f4f4; padding:0 20px; border-bottom:1px solid #ddd;  position:relative;  }
				.slideTxtBox .hd ul{ float:left; position:absolute; left:20px; top:-1px; height:32px;   }
				.slideTxtBox .hd ul li{ float:left; padding:0 15px; cursor:pointer;  }
				.slideTxtBox .hd ul li.on{ height:30px;  background:#fff; border:1px solid #ddd; border-bottom:2px solid #fff; }
				/* .slideTxtBox .bd ul{ padding:15px;  zoom:1;  }
				.slideTxtBox .bd li{ height:24px; line-height:24px;   }
				.slideTxtBox .bd li .date{ float:right; color:#999;  } */
				/* .bd .tempWrap{height: 100% !important;} */
				/* .bd .tempWrap li{height: 100% !important;} */
				.slideTxtBox .hd ul li.on img{display: block;}
				.sldemo1test{    width: 70%;position: relative;
    float: left;}
    			.sldemo1test ul{float: left;width: 100%;position: absolute}
    			.sldemo1test ul li{
    position: relative;
}
    			.sldemo1test ul li .pic{}
    			.sldemo1test ul li .pic img{display: block;}
    			.sldemo1test ul li .pic a{line-height:0px;}
    			.sldemo1test ul li .title{
    position: absolute;
    bottom: 52px;
    width: 100%;
}
				.sldemo1test ul li .title .title-box{
    width: 80%;
    margin: 0 auto;
}
    			.sldemo1test ul li img{width: 100%;}
    			.sldemo1test .title-d1{
    width: auto;
    float: left;
    line-height: 26px;
    font-size: 30px;
    text-align: right;
    padding: 10px 16px;
    border: 1px solid white;
}				.sldemo1test .title-d1 span{
    font-size: 20px;
}
    			.sldemo1test .title-d2{
    width: 70%;
    float: left;
    line-height: 26px;
    text-align: left;
    padding: 0px 20px;
}
.sldemo1test .title-d2 h4{
    margin: 0px;
    font-size: 23px;
    margin-top: 5px;
    font-weight: normal;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    word-break: break-all;
    -webkit-line-clamp: 1;
}
.sldemo1test .title-d2 p{
    margin-top: 10px;
    font-size: 16px;
    color: #c5c5c5;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    word-break: break-all;
    -webkit-line-clamp: 2;
}
.news-left-box{
    position: relative;
}
.news-left-box div{
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    text-align: center;
}
.news-left-box div h4{
    font-size: 20px;
    margin-top: 22%;
    margin-bottom: 0px;
    font-weight: normal !important;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    word-break: break-all;
    -webkit-line-clamp: 1;
}
.news-left-box div p{
    font-size: 15px;
    width: 85%;
    margin: 0 auto;
    margin-top: 20px;
    line-height: 25px;
    color: #a9a9a9;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    word-break: break-all;
    -webkit-line-clamp: 2;
}
.news-left-box a{color: white;}

/* d第六屏 */
.section6-left{
    width: 20%;
    float: left;
    height: 100%;
}
.section6-left-d1{
    padding: 0px 20px;
}
.section6-left-d1 p:nth-child(1){
    writing-mode: tb-rl;
    float: left;
    text-transform: uppercase;
    font-size: 30px;
    text-align: left;
}
.section6-left-d1 p span{
    font-size: 50px;
    font-weight: bold;
}
.section6-right{
	background: url(../images/fbg.png) no-repeat center;
	width: 80%;
	float: left;
	position: relative;
	overflow: hidden;
	height: 100%;
	background-size: 100% 100%;
}
.section6-right-d1{
    height: 100%;
    padding-top: 20%;
}
.section6-right-d1-dl{
    width: 25%;
    float: left;
    text-align: left;
    margin-left: 10%;
}
.section6-right-d1-dl h4{
    font-size: 20px;
}
.section6-right-d1-dl div{
    margin-top: 70px;
}
.section6-right-d1-dl div p{
    font-size: 15px;
    color: #ccc;
    line-height: 25px;
}
.section6-right-d1-dl div p a{
    color: #ccc;
}
.section6-right-d1-dl img{
    width: 120px;
    height: 120px;
    margin-top: 20px;
}
.section6-right-dr{
    width:55%;
    float: left;
    text-align: left;
    margin-top: 70px;
    -webkit-animation: fadeInUp 0.8s ease-out;
    animation: fadeInUp 0.8s ease-out;
    animation-delay: 0.4s;
    -webkit-animation-delay: 0.4s;
    animation-fill-mode: forwards;
    -webkit-animation-fill-mode: forwards;
}
.s6ibox{
    font-size: 15px;
    width: 30%;
    float: left;
    color: #ddd;
    padding-bottom: 10px;
    margin-right: 3%;
    border-bottom: 1px solid #d6d6d6;
}
.s6ibox input{
    background-color: initial;
    border: 0px;
        color: #fff;
    font-size: 15px;
}
.s6tbox{
    width: 100%;
    float: left;
    font-size: 15px;
    color: #ddd;
    margin-top: 10%;
}
.s6tbox textarea{
    margin-top: 10px;
    font-size: 15px;
    width: 95%;
    resize: none;
        color: #fff;
    background-color: initial;
    border: 0px;
    border-bottom: 1px solid #d6d6d6;
    height: 100px;
}
#formsub{
    background-color: initial;
    color: white;
    border: 2px solid #8a8a8a75;
    padding: 14px 60px;
    border-radius: 1px;
    margin-top: 60px;
    transition: all ease-out .4s;
    -webkit-transition: all ease-out .4s;
    -moz-transition: all ease-out .4s;
    -ms-transition: all ease-out .4s;
    
}
#formsub:hover{
    background-color: #fff;
    color: #000;
}


.swiper-container1 .swiper-slide .txt3{
font-size: 70px !important;
    font-weight: bold !important;
    margin:0 auto !important;
    width: 100% !important;
    top: 50% !important;

}


/*  !  */


@media (min-width: 700px) {
    .swiper-container1 .swiper-slide .txt3{top: 35%;}
    .swiper-container1 .swiper-slide .txt1, .swiper-container1 .swiper-slide .txt2{top: 57% !important;}
    .section2-left{margin-top: 15%;}
    .section3-left{margin-top: 15%;}
    .section4-left-d1{margin-top: 74%;}
    .section5-left-d1{margin-top: 74%;}
    .section6-left-d1{margin-top: 100%;}
    .section-one-div{top:33%;}
    /* .he-logo{width: 13%;} */
    .section4-right .section4-box-nr{    margin-top: 30px;line-height: 42px;}
    .swiper-containerb .swiper-slide .projsshow .projsshow-bb {padding: 35px 35px;}
    .xmcontainer{ margin: 15% 0px;}
    .section4-box {padding: 13% 20%;}
    .he-nav ul li a{padding: 10px 15px;}
    .xmcontainer .slide_wrap {margin-top: 36px;}
    .section4-right a{    margin-top:40px;}
    .section4-box-nr a p{    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    word-break: break-all;
    -webkit-line-clamp: 3;}
    .section2-left-d2 {margin-top: 80px;}
}

@media (min-width: 1024px){
    /* .duan{background-color: #007aff;} */
    .swiper-container1 .swiper-slide .txt3{top: 35%;}
    .swiper-container1 .swiper-slide .txt1, .swiper-container1 .swiper-slide .txt2{top: 57% !important;}
    .section2-left{margin-top: 16%;}
    .section3-left{margin-top: 16%;}
    .section4-left-d1{margin-top: 74%;}
    .section5-left-d1{margin-top: 74%;}
    .section6-left-d1{margin-top: 100%;}
    .section-one-div{top:33%;}
    /* .he-logo{width: 13%;} */
    .section4-right .section4-box-nr{    margin-top: 30px;line-height: 42px;}
    .swiper-containerb .swiper-slide .projsshow .projsshow-t{height: 90%;}
    .swiper-containerb .swiper-slide .projsshow .projsshow-bb {padding: 35px 35px;}
    .xmcontainer{ margin: 15% 0px;}
    .section4-box {padding: 13% 20%;}
    .he-nav ul li a{padding: 10px 15px;}
    .section4-right a{    margin-top:40px;}
    .xmcontainer .slide_wrap {margin-top: 36px;}
    .section4-box-nr a p{    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    word-break: break-all;
    -webkit-line-clamp: 3;}
    .section2-left-d2 {margin-top: 80px;}

} /*>=1024的设备*/

@media (min-width: 1100px) {
    .swiper-container1 .swiper-slide .txt3{top: 35%;}
    .swiper-container1 .swiper-slide .txt1, .swiper-container1 .swiper-slide .txt2{top: 57% !important;}
    .section2-left{margin-top: 16%;}
    .section3-left{margin-top: 16%;}
    .section4-left-d1{margin-top: 74%;}
    .section5-left-d1{margin-top: 74%;}
    .section6-left-d1{margin-top: 100%;}
    .section-one-logo{top: 12%;}
    .section-one-div{top:33%;}
    .section6-right-d1-dl div p{    line-height: 20px;}
    /* .he-logo{width: 13%;} */
    .section6-right-d1-dl div p{    font-size: 13px;}
    .section6-right-d1-dl h4{    font-size: 15px;}
    .section6-right-d1{padding-top: 11%;}
    .section4-right .section4-box-nr{margin-top: 2px;line-height: 33px;}

    .section4-right .section4-box-numbox-div-d1 p:nth-child(1){font-size: 28px;}
    .xmcontainer .slide-content{margin-top: 120px;}
    .swiper-containerb .swiper-slide .projsshow .projsshow-b{height: 42%;}
    .swiper-containerb .swiper-slide .projsshow .projsshow-t{height: 90%;}
    .swiper-containerb .swiper-slide .projsshow .projsshow-bb {padding: 35px 35px;}
    .xmcontainer{ margin: 15% 0px;}
    .section4-box {padding: 13% 20%;}
    .he-nav ul li a{padding: 10px 15px;}
    .xmcontainer .slide_wrap {margin-top: 36px;}
    .section4-right a{    margin-top:40px;}
    .section4-box-nr a p{    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    word-break: break-all;
    -webkit-line-clamp: 3;}
    .section2-left-d2 {margin-top: 80px;}
    
} /*>=1024的设备*/
@media (min-width: 1280px) {
    .swiper-container1 .swiper-slide .txt3{top: 35%;}
    .swiper-container1 .swiper-slide .txt1, .swiper-container1 .swiper-slide .txt2{top: 57% !important;}
    .section2-left{margin-top: 16%;}
    .section3-left{margin-top: 16%;}
    .section4-left-d1{margin-top: 82%;}
    .section5-left-d1{margin-top: 82%;}
    .section6-left-d1{margin-top: 82%;}
    .section-one-logo{top: 20%;}
    .section-one-div{top:33%;}
    .section6-right-d1-dl div p{    line-height: 20px;}
   /*  .he-logo{width: 15%;} */
    .section6-right-d1-dl div p{    font-size: 13px;}
    .section6-right-d1-dl h4{    font-size: 15px;}
    .section6-right-d1{padding-top: 11%;}
    .section4-right .section4-box-nr{margin-top: 2px;line-height: 29px;}
    
    .section4-right .section4-box-numbox-div-d1 p:nth-child(1){font-size: 28px;}
    .xmcontainer .slide-content{margin-top: 120px;}
    .swiper-containerb .swiper-slide .projsshow .projsshow-b{height: 36%;}
    .swiper-containerb .swiper-slide .projsshow .projsshow-t{height: 92%;}

    .swiper-containerb .swiper-slide .projsshow .projsshow-bb {padding: 40px 35px;}
    .xmcontainer{ margin: 15% 0px;}
    .section4-box{padding: 13% 20%;}
    .he-nav ul li a{padding: 10px 8px;}
    .section4-right a{    margin-top:53px;}
    .xmcontainer .slide_wrap {margin-top: 36px;}
    .section4-box-nr a p{    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    word-break: break-all;
    -webkit-line-clamp: 3;}
    .section2-left-d2 {margin-top: 40px;}
} 

@media (min-width: 1366px) {
    .swiper-container1 .swiper-slide .txt3{top: 35%;}
    .swiper-container1 .swiper-slide .txt1, .swiper-container1 .swiper-slide .txt2{top: 57% !important;}
    .section2-left{margin-top: 16%;}
    .section3-left{margin-top: 16%;}
    .section4-left-d1{margin-top: 82%;}
    .section5-left-d1{margin-top: 82%;}
    .section6-left-d1{margin-top: 82%;}
    .section-one-logo{top: 20%;}
    .section-one-div{top:33%;}
    .section6-right-d1-dl div p{    line-height: 20px;}
   /*  .he-logo{width: 15%;} */
    .section6-right-d1-dl div p{    font-size: 13px;}
    .section6-right-d1-dl h4{    font-size: 15px;}
    .section6-right-d1{padding-top: 11%;}
    .section4-right .section4-box-nr{margin-top: 2px;line-height: 29px;}
    
    .section4-right .section4-box-numbox-div-d1 p:nth-child(1){font-size: 28px;}
    .xmcontainer .slide-content{margin-top: 120px;}
    .swiper-containerb .swiper-slide .projsshow .projsshow-b{height: 51%;}
    .swiper-containerb .swiper-slide .projsshow .projsshow-t{height: 96%;}

    .swiper-containerb .swiper-slide .projsshow .projsshow-bb {padding: 15px 35px;}
    .xmcontainer{ margin: 15% 0px;}
    .section4-box{padding: 13% 20%;}
    .he-nav ul li a{padding: 10px 11px;}
    .section4-right a{    margin-top:53px;}
    .xmcontainer .slide_wrap {margin-top: 36px;}
    .section4-box-nr a p{    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    word-break: break-all;
    -webkit-line-clamp: 3;}
    .section2-left-d2 {margin-top: 40px;}

}  
@media (min-width: 1400px) {
    .swiper-container1 .swiper-slide .txt3{top: 35%;}
    .swiper-container1 .swiper-slide .txt1, .swiper-container1 .swiper-slide .txt2{top: 57% !important;}
    .section2-left{margin-top: 16%;}
    .section3-left{margin-top: 16%;}
    .section4-left-d1{margin-top: 82%;}
    .section5-left-d1{margin-top: 82%;}
    .section6-left-d1{margin-top: 82%;}
    .section-one-logo{top: 20%;}
    .section-one-div{top:33%;}
    .section6-right-d1-dl div p{    line-height: 20px;}
   /*  .he-logo{width: 15%;} */
    .section6-right-d1-dl div p{    font-size: 13px;}
    .section6-right-d1-dl h4{    font-size: 15px;}
    .section6-right-d1{padding-top: 11%;}
    .section4-right .section4-box-nr{margin-top: 2px;line-height: 29px;}
    
    .section4-right .section4-box-numbox-div-d1 p:nth-child(1){font-size: 28px;}
    .xmcontainer .slide-content{margin-top: 120px;}
    .swiper-containerb .swiper-slide .projsshow .projsshow-b{height: 35%;}
    .swiper-containerb .swiper-slide .projsshow .projsshow-t{height: 90%;}

    .swiper-containerb .swiper-slide .projsshow .projsshow-bb {padding: 35px 35px;}
    .xmcontainer{ margin: 15% 0px;}
    .section4-box{padding: 13% 20%;}
    .he-nav ul li a{padding: 10px 15px;}
    .section4-right a{    margin-top:40px;}
    .xmcontainer .slide_wrap {margin-top: 36px;}
    .section4-box-nr a p{    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    word-break: break-all;
    -webkit-line-clamp: 3;}
    .section2-left-d2 {margin-top: 110px;}

} 
@media (min-width: 1440px) {
    .swiper-container1 .swiper-slide .txt3{top: 35%;}
    .swiper-container1 .swiper-slide .txt1, .swiper-container1 .swiper-slide .txt2{top: 57% !important;}
    .section2-left{margin-top: 16%;}
    .section3-left{margin-top: 16%;}
    .section4-left-d1{margin-top: 82%;}
    .section5-left-d1{margin-top: 82%;}
    .section6-left-d1{margin-top: 82%;}
    .xmcontainer .slide-content{margin-top: 220px;}
    .section6-right-d1-dl h4{    font-size: 19px;}
    .swiper-containerb .swiper-slide .projsshow .projsshow-t{height: 90%;}
    .section-one-div{top:50%;}
    .section6-right-d1-dl div p{font-size: 14px;}
    .section4-right .section4-box-nr{    margin-top: 2px;line-height: 42px;}
    .section6-right-d1{    padding-top: 16%;}
    .section4-right a{    margin-top:43px;}
    /* .he-logo{width: 15%;} */
    
    .swiper-containerb .swiper-slide .projsshow .projsshow-b{height: 40%;}
    
    .swiper-containerb .swiper-slide .projsshow .projsshow-bb {padding: 19px 35px;}
    .xmcontainer{ margin: 15% 0px;}
    .section4-box {padding: 13% 20%;}
    .he-nav ul li a{padding: 10px 15px;}
    .xmcontainer .slide_wrap {margin-top: 60px;}
    .section4-box-nr a p{    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    word-break: break-all;
    -webkit-line-clamp: 3;}
    .section2-left-d2 {margin-top: 80px;}

} 
@media (min-width: 1600px) {
    .swiper-container1 .swiper-slide .txt3{top: 40%;}
    .swiper-container1 .swiper-slide .txt1, .swiper-container1 .swiper-slide .txt2{top: 65% !important;}
    .section2-left{margin-top: 16%;}
    .section3-left{margin-top: 16%;}
    .section4-left-d1{margin-top: 82%;}
    .section5-left-d1{margin-top: 82%;}
    .section6-left-d1{margin-top: 82%;}
    .xmcontainer .slide-content{margin-top: 220px;}
    .section6-right-d1-dl h4{    font-size: 19px;}
    .swiper-containerb .swiper-slide .projsshow .projsshow-t{height: 90%;}
    .section-one-div{top:50%;}
    .section6-right-d1-dl div p{font-size: 14px;}
    .section4-right .section4-box-nr{    margin-top: 5px;line-height: 42px;}
    .section6-right-d1{    padding-top: 16%;}
    .swiper-containerb .swiper-slide .projsshow .projsshow-b{height: 41%;}
    .swiper-containerb .swiper-slide .projsshow .projsshow-bb {
    padding: 12px 35px;}
    /* .he-logo{width: 15%;} */
    .xmcontainer{ margin: 20% 0px;}
    .section4-box {padding: 20% 20%;}
    .he-nav ul li a{padding: 10px 25px;}
    .xmcontainer .slide_wrap {margin-top: 60px;}
    .section4-right a{    margin-top:40px;}
    .section4-box-nr a p{    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    word-break: break-all;
    -webkit-line-clamp: 3;}
    .section2-left-d2 {margin-top: 80px;}
}
@media (min-width: 1680px) {
    .swiper-container1 .swiper-slide .txt3{top: 40%;}
    .swiper-container1 .swiper-slide .txt1, .swiper-container1 .swiper-slide .txt2{top: 65% !important;}
    .section2-left{margin-top: 16%;}
    .section3-left{margin-top: 16%;}
    .section4-left-d1{margin-top: 82%;}
    .section5-left-d1{margin-top: 82%;}
    .section6-left-d1{margin-top: 82%;}
    .xmcontainer .slide-content{margin-top: 220px;}
    .section6-right-d1-dl h4{    font-size: 19px;}
    .swiper-containerb .swiper-slide .projsshow .projsshow-t{height: 90%;}
    .section-one-div{top:50%;}
    .section6-right-d1-dl div p{font-size: 14px;}
    .section4-right .section4-box-nr{    margin-top: 5px;line-height: 42px;}
    .section6-right-d1{    padding-top: 16%;}
    .swiper-containerb .swiper-slide .projsshow .projsshow-b{height: 35%;}
    .swiper-containerb .swiper-slide .projsshow .projsshow-bb {
    padding: 35px 35px;}
    /* .he-logo{width: 15%;} */
    .xmcontainer{ margin: 20% 0px;}
    .section4-box {padding: 20% 20%;}
    .he-nav ul li a{padding: 10px 30px;}
    .section4-right a{    margin-top:50px;}
    .xmcontainer .slide_wrap {margin-top: 60px;}
    .section4-box-nr a p{    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    word-break: break-all;
    -webkit-line-clamp: 3;}
    .section2-left-d2 {margin-top: 200px;}
} 
@media (min-width: 1920px) {
    .swiper-container1 .swiper-slide .txt3{top: 50%;}
    .swiper-container1 .swiper-slide .txt1, .swiper-container1 .swiper-slide .txt2{top: 70% !important;}
    .section2-left{margin-top: 15%;}
    .section3-left{margin-top: 15%;}
    .section4-left-d1{margin-top: 74%;}
    .section5-left-d1{margin-top: 74%;}
    .section6-left-d1{margin-top: 74%;}
    .section-one-div{top:50%;}
    /* .he-logo{    width: 20%;} */
    .section4-right .section4-box-nr{     
        margin-top: 15px;
    line-height: 29px;}
    .xmcontainer .slide-content{    margin-top: 200px;}
    .section-one-logo{    top: 30%;}
    .section6-right-d1{    padding-top: 18%;}
    .section4-right .section4-box-numbox-div-d1 p:nth-child(1){font-size: 45px;}
    .section6-right-d1-dl h4{    font-size: 20px;}
    .section6-right-d1-dl div p{    font-size: 15px;    line-height: 20px;}

    .swiper-containerb .swiper-slide .projsshow .projsshow-t{height: 90%;}
    .swiper-containerb .swiper-slide .projsshow .projsshow-b{height: 35%;}
    .swiper-containerb .swiper-slide .projsshow .projsshow-bb {
    padding: 28px 35px;}
    .xmcontainer{ margin: 20% 0px;}
    .section4-box {padding: 20% 20%;}
    .section4-right a{    margin-top:50px;}
    .he-nav ul li a{padding: 10px 40px;}
    .xmcontainer .slide_wrap {margin-top: 60px;}
    .section4-box-nr a p{    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    word-break: break-all;
    -webkit-line-clamp: 4;}
    .section2-left-d2 {margin-top: 200px;}
}

@media (min-width: 2560px) {
    .swiper-container1 .swiper-slide .txt3{top: 50%;}
    .swiper-container1 .swiper-slide .txt1, .swiper-container1 .swiper-slide .txt2{top: 70% !important;}
    .section2-left{margin-top: 10%;}
    .section3-left{margin-top: 10%;}
    .section4-left-d1{margin-top: 74%;}
    .section5-left-d1{margin-top: 74%;}
    .section6-left-d1{margin-top: 82%;}
    .section-one-div{top:50%;}
   /*  .he-logo{    width: 20%;} */
    .section4-right .section4-box-nr{     
        margin-top: 15px;
    line-height: 29px;}
    .xmcontainer .slide-content{    margin-top: 200px;}
    .section-one-logo{    top: 30%;}
    .section6-right-d1{    padding-top: 18%;}
    .section4-right .section4-box-numbox-div-d1 p:nth-child(1){font-size: 45px;}
    .section6-right-d1-dl h4{    font-size: 20px;}
    .section6-right-d1-dl div p{    font-size: 15px;    line-height: 20px;}

    .swiper-containerb .swiper-slide .projsshow .projsshow-t{height: 90%;}
    .swiper-containerb .swiper-slide .projsshow .projsshow-bb {
    padding: 110px 35px;}
    .xmcontainer{ margin: 20% 0px;}
    .section4-box {padding: 20% 20%;}
    .he-nav ul li a{padding: 10px 40px;}
    .section4-right a{    margin-top:50px;}
    .xmcontainer .slide_wrap {margin-top: 60px;}
    .section4-box-nr a p{    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    word-break: break-all;
    -webkit-line-clamp: 4;}
    .section2-left-d2 {margin-top: 200px;}
}
/*固定的悬浮窗*/
.yb_conct {
    position: fixed;
    z-index: 99;
    top: 50%;
    right: -127px;
    cursor: pointer;
    transition: all .3s ease;
}
.yb_bar ul li {
    width: 180px;
    height: 53px;
    font: 16px/53px 'Microsoft YaHei';
    color: #fff;
    text-indent: 54px;
    margin-bottom: 3px;
    border-radius: 3px;
    transition: all .5s ease;
    overflow: hidden;
}
.yb_bar .yb_top {
    background: #00945e url(../images/fixCont.png) no-repeat 0 0;
}
.yb_bar .yb_phone {
    background: #00945e url(../images/fixCont.png) no-repeat 0 -57px;
}
.yb_bar .yb_QQ {
    text-indent: 0;
    background: #00945e url(../images/fixCont.png) no-repeat 0 -113px;
}
.yb_bar .yb_ercode {
    /*height:200px;*/

    background: #00945e url(../images/fixCont.png) no-repeat 0 -169px;
}
.hd_qr {
    padding: 0 29px 25px 29px;
}
.yb_QQ a {
    display: block;
    text-indent: 54px;
    width: 100%;
    height: 100%;
    color: #fff;
}