﻿.header{
	width: 100%;
	height: 80px;
	box-sizing: border-box;
    background: rgba(0,0,0,.6);
    position: absolute;
    top: 0px;
    left: 0%;
    z-index: 2;
}
.header_ct{
	width: 1200px;
	margin: 0 auto;
	display: -webkit-flex;
	display: flex;
	-webkit-flex-wrap: nowrap;
	flex-wrap: nowrap;
	-webkit-justify-content: space-between;	
	justify-content: space-between;	
	-webkit-align-items: center;
	align-items: center;
	height:80px;
}
.logo{
    width:17%;
	min-width:280px;
}
.nav{
	width: 70%;
}
.nav ul{
	display: -webkit-flex;
	display: flex;
	flex-wrap: nowrap;
	justify-content: space-between;

}
.nav li{
	margin:0 10px;
	-webkit-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
    -webkit-transition: ease-in-out .3s;
    -o-transition: ease-in-out .3s;
    transition: ease-in-out .3s;
}
.nav li.navh{
	color: #ffffff;
    background: #3b85c6;
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
}
.nav li a{
	font-size: 1.6rem;
	color: #fcfcfc;
	line-height: 40px;
    display: block;
    text-align: center;
    letter-spacing: normal;
    white-space: nowrap;

}
.nav li:hover{
	color: #ffffff;
    background: #3b85c6;
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
}
.products{
	width: 1200px;
    height: 543px;
    position: absolute;
    top: 160px;
    left: calc(50% - 600px);
    z-index: 2;
}
.products_ct{
    padding:3% 0 0 0;
}
.products_ct ul{
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-justify-content: space-between; 
    justify-content: space-between; 
}
.products_ct li{
	width: 32%;
    border:5px solid #ddd;
    -webkit-transition: ease-in-out .5s;
    -o-transition: ease-in-out .5s;
    transition: ease-in-out .5s;
    overflow:hidden;
}
.products_ct li img{
     -webkit-transition: ease-in-out .5s;
    -o-transition: ease-in-out .5s;
    transition: ease-in-out .5s;
}
.products h3{
    box-sizing: border-box;
    font-family: Microsoft YaHei;
    text-align: center;
    color: #58a9ef;
    font-size: 3.5rem;
    line-height: 30px;
   font-weight:normal;
}
.products h4{
    box-sizing: border-box;
    color: #ffffff;
    font-size: 3rem;
    font-weight: bold;
    text-align: center;
    line-height: 2;
	text-shadow: 1px 1px 5px #888;
   /* font-weight:normal;*/
}
.products_ct li p{
    line-height:2.7;
    background: #000;
    text-align: center;
    color:#fff;
    font-size: 1.8rem;
      -webkit-transition: ease-in-out .5s;
    -o-transition: ease-in-out .5s;
    transition: ease-in-out .5s;
}
.products_ct li:hover{
    border-color: #2663b0;
}
.products_ct li:hover img{
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
   
}
.products_ct li:hover p{
    -webkit-transform:translateY(5px) scale(1.1);
    -moz-transform:translateY(5px) scale(1.1);
    -ms-transform:translateY(5px) scale(1.1);
    transform:translateY(5px) scale(1.1);
}
.more_button{
    width: 180px;
    background: #2663b0;
    margin: 5% auto;
    text-align: center;
    border-radius: 5px;
    overflow:hidden;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
.more_button a{
    display: block;
    line-height: 3;
    font-size: 1.6rem;
     color:#fff;
     position: relative;
     height:48px;
}
.more_button a::before{
    content: '';
    position: absolute;
    top:0;
    left:0;
    width:0;
    height:48px;
    z-index:2;
    -webkit-transition: ease-in-out .3s;
    -o-transition: ease-in-out .3s;
    transition: ease-in-out .3s;
}
.more_button a:hover::before{
    width: 100%;
    background: #990200;
}
.more_button span{
    display: block;
    width: 100%;
    height:48px;
}
.more_button a:hover span{
    position: absolute;
    z-index: 20;
}
.news{
    width: 1200px;
    position: absolute;
    top: 220px;
    left: calc(50% - 600px);
    z-index: 2;
}
.news h3{
    box-sizing: border-box;
    font-family: Microsoft YaHei;
    text-align: center;
    color: #58a9ef;
    font-size: 3.5rem;
    line-height: 30px;
   font-weight:normal;
}
.news h4{
    box-sizing: border-box;
    color: #ffffff;
    font-size: 3rem;
    font-weight: bold;
    text-align: center;
    line-height: 2;
   /* font-weight:normal;*/
}
.news_ct{
    padding-top: 4%;
}
.news_ct ul{
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-justify-content: space-between; 
    justify-content: space-between; 
}
.news_ct li{
   width:24%;
    -webkit-transition: ease-in-out .5s;
    -o-transition: ease-in-out .5s;
    transition: ease-in-out .5s;
    
}
.news_ct li div{
    overflow:hidden;
}
.news_ct li img{
     -webkit-transition: ease-in-out .5s;
    -o-transition: ease-in-out .5s;
    transition: ease-in-out .5s;
}
.news_ct li p{
    line-height:2.7;
    background: #000;
    text-align: center;
    color:#fff;
    font-size: 1.5rem;
      -webkit-transition: ease-in-out .5s;
    -o-transition: ease-in-out .5s;
    transition: ease-in-out .5s;
}
.news_ct li:hover{
    border-color: #2663b0;
}
.news_ct li:hover img{
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
   
}
.pro2{
    text-align: center;
}
.video{
    padding-top: 3%;
    width: 50vw;
    height: 50vh;
    margin: 0 auto;
   /* position: absolute;
    top:0;
    left:calc(50% - 500px);*/
}
.contact{
    width: 1200px;
    position: absolute;
    top: 30%;
    left: calc(50% - 600px);
}
.contact_left{
float: left;
width: 45%;
}
.contact_left h3{
    box-sizing: border-box;
    color: #ffffff;
    font-size: 22px;
    font-weight: normal;
    text-align: left;
    font-family: Microsoft YaHei;
    line-height: 30px;

}
.line{
    width: 12%;
    height:3px;
    background: #3B85C6;
    margin-top: 2%;
}
.contact_left p{
    margin-top: 4%;
    overflow : hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    box-sizing: border-box;
    font-family: Microsoft YaHei;
    font-size: 14px;
    color: #ffffff;
    line-height: 30px;
    text-indent: 2em;
}
.contact_right{
float: right;
width: 50%;
}
.contact_right h3{
    box-sizing: border-box;
    color: #ffffff;
    font-size: 22px;
    font-weight: normal;
    text-align: left;
    font-family: Microsoft YaHei;
    line-height: 30px;
}
.contact_right ul{
    -webkit-display: flex;
    -moz-display: flex;
    -ms-display: flex;
    display: flex;
	flex-direction: column;
    flex-wrap: wrap;
    padding-top:3%;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
.contact_right li{
    width: 100%;
        box-sizing: border-box;
    font-size: 18px;
    color: #ffffff;
    line-height: 50px;
}
.contact_right li img{
    vertical-align: middle;
    width: 5%;
    margin-right:10px;
}
.footer_nav ul{
    padding-top: 5%;
    -webkit-display: flex;
    -moz-display: flex;
    -ms-display: flex;
    display: flex;
    flex-wrap: nowrap;
    text-align: center;
    justify-content: center;
}
.footer_nav li{
    text-align: center;
    font-size: 14px;
    color:#fff;
    line-height: 2;
    padding:0 2.5%;
    position: relative;
}
.footer_nav li a{
    color:#fff;
    -webkit-transition: ease .3s;
    -o-transition: ease .3s;
    transition: ease .3s;
}
.footer_nav li a:hover{
    color:#3B85C6;
}
.copy{
 padding-top: 1%;
    font-size: 15px;
    color: #ffffff;
    line-height: 30px;
    text-align: center;
}
#fp-nav ul li a span, .fp-slidesNav ul li a span{
    width: 10px;
    height: 10px;
}
#fp-nav ul li a.active span, .fp-slidesNav ul li a.active span{
    background: rgba(255,255,255,.5);
}

.header2{
    position: inherit;
    background: #262626;
}
.aboutban{
    /*height: 450px;
    overflow: hidden;*/
}
.public_center{
    width: 1200px;
    margin:0 auto;
}
.products_tit{
    text-align: center;
}
.products_tit h3{
    font-size: 25px;
    font-weight: normal;
    color: #262626;
}
.products_tit p{
    color: #909090;
    font-size: 16px;
}
.about_page{
    padding:50px 0;
}
/*.about_pic{
    float: left;
    width: 49%;
}*/
.about_right{
    /*float: right;*/
    width: 100%;
}
.about_right h3{
    margin:48px 0 30px;
    font-size: 25px;
    color: #333;
    font-weight: normal;
    position: relative;
    line-height: 30px;
    padding-bottom: 14px;
}
.about_right h3:after{
    content: "";
    width: 49px;
    height: 4px;
    background: #3b85c6;
    position: absolute;
    bottom:0;
    left:0;
}
.about_right p{
    font-size: 16px;
    color: #848484;
    line-height: 1.8;
   
}
.contact_out{
    background:url("../images/banner5.jpg") center 15% no-repeat;
    -webkit-background-size: cover;
    background-size: cover;
    padding:63px 0 73px;
}
.contact2{
    position: inherit;
    margin:0 auto;
}
.contact_tit{
    width: 1000px;
    margin:0 auto;
    text-align: center;
}
.contact_tit h3{
    font-size: 25px;
    color: #262626;
    font-weight: normal;
    padding-bottom: 15px;
}
.contact_tit p{
    font-size: 16px;
    color: #909090;
    line-height: 28px;
}
.contact_page{
    padding:57px 0 40px;
}
.address{
    float: left;
    width: 31%;
}
.address h3{
    font-size: 25px;
    color: #333;
    position: relative;
    font-weight: normal;
    padding-bottom: 10px;
    margin-bottom: 15px;
}
.address h3:after{
    content: "";
    width: 49px;
    height: 4px;
    background: #3b85c6;
    position: absolute;
    bottom:0;
    left:0;
}
.address p{
    font-size: 20px;
    color: #565656;
    line-height: 36px;
}
.message{
    float: right;
    width: 65%;
}
.contact_item2{
    padding-top: 47px;
}
.message h3{
    text-align: center;
    font-size: 25px;
    color: #333;
    font-weight: normal;
    padding:20px 0 25px;
}
.message ul li{
    padding:5px;
    background: #f5f5f5;
    border:1px solid #eee;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    border-radius: 5px;
    margin-bottom: 4px;
}
.message ul li input,.message ul li textarea{
    background: none;
    line-height: 24px;
    width: 100%;
    font-size: 14PX;
    color: #333;
}
.message ul li textarea{
    height: 123px;
}
.message button{
    background:#3B85C6;
    font-size: 16px;
    color: #fff;
    width: 100%;
    cursor: pointer;
    display: block;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    border-radius: 5px;
    line-height: 40px;
    margin:3% 0;
}
.map{
    padding-bottom: 60px;
}
.news_item{
    padding:50px 0 50px;
}
.news_hot{
    padding-bottom: 30px;
}
.news_hot ul li{
    width: 23.6%;
    margin:.5%;
    display: inline-block;
    vertical-align: top;
    position: relative;
}
.news_hot ul li p{
    font-size: 14px;
    line-height: 1.1;
    padding:10px 10px;
    background: #4c4c4c;
    color: #fff;
    overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis;
position: absolute;
bottom:0;
left:0;
width: 100%;
}
.news_hot{
    padding-top: 30px;
}
.newspic{
    float: left;
    width: 478px;
    height: 225px;
    overflow: hidden;
}
.news_right{
    float: right;
    width: 690px;
}
.news_right h3{
    font-size: 24px;
    color: #333;
    padding-top: 30px;
    overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis;
}
.news_right p{
    font-size: 16px;
    color: #888;
    padding:20px 0 40px;
}
.news_right a.more{
    width: 146px;
    line-height: 40px;
    background: #3B85C6;
    font-size: 14px;
    text-align: center;
    display: block;
    color: #fff;
}
.newsmore_list ul li{
    margin-bottom: 30px;
}
.newsmore_list ul li:hover{
    -moz-box-shadow:2px 2px 11px #ccc; 
    -webkit-box-shadow:2px 2px 11px #ccc; 
    box-shadow:2px 2px 11px #ccc;
}
.newsdetail_tit{
    text-align: center;
}
.newsdetail_tit h3{
    font-size: 20px;
    padding-bottom: 22px;
    color: #333;
    font-weight: normal;
}
.newsdetail_tit span{
    color: #999;
    padding:0 15px;
}
.newsdetail{
    padding:50px 0;
}
.news_left_item{
    padding:18px;
    margin:30px 0;
    border:1px solid #e1e1e7;
    border-left: 4px solid #e1e1e7;
    line-height: 22px;
}
.newsdetail article{
    width: 870px;
    float: left;
}
.newsdiscribe{
    color: #333;
    line-height: 2;
}
.newsdetail aside{
    padding:14px 17px;
    width: 314px;
    float: right;
    padding-top: 20px;
    border:1px solid #e5e5e5;
}
.newsdetail aside h3{
    font-size: 16px;
    padding-bottom: 4px;
    color:#909090;
    text-align: center;
    font-weight: normal;
    line-height: 28px;
}
.newsdetail aside ul li{
    margin-top: 8px;
}
.newsdetail aside ul li p{
    font-size: 15px;
    color: #555;
    overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis;
line-height: 1.1;
padding:15px 10px;
}
.procusts_list ul li{
    width: 23.5%;
    margin:.5%;
    text-align: center;
    float: left;
}
.procusts_list ul li p{
    font-size: 16px;
    color: #fff;
    background: #3B85C6;
    line-height: 30px;
}
.procusts_list{
    padding-top: 30px;
}
.video_list{
    padding-top: 25px;
}
.video_list a{
    width: 23.5%;
    float: left;
    margin:.5%;
}
.menu{
    display: none;
}
.maxprophone{
    display: none;
}

.product_name{
    float: right;
}
.product_name{
    float: left;
    width: 40%;
    padding-left: 5%;
}
.product_name button{
    display: block;
    width: 130px;
    background: #3b85c6;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    border-radius: 5px;
    line-height: 40px;
    text-align: center;
    font-size: 16px;
    color: #fff;
    cursor: pointer;
}
.product_name h3{
    font-size: 26px;
    padding: 8% 0;
    
}
.menu_list{
    position:absolute;
    left:-100%;
    top:0;
    background:rgba(0,0,0,.9);
    width: 100%;
    height: 100%;
    z-index: 99;
}

.section2 .products h3{
    opacity: 0;
    filter: alpha(opacity=0);
    -webkit-transform: translateY(50px);
    -ms-transform: translateY(50px);
    -o-transform: translateY(50px);
    transform: translateY(50px);
}
.section2.active .products h3{
    opacity: 1;
    filter: alpha(opacity=100);
    -webkit-transform: translateY(0px);
    -ms-transform: translateY(0px);
    -o-transform: translateY(0px);
    transform: translateY(0px);
    -webkit-transition: all .8s ease-in-out;
    -moz-transition: all .8s ease-in-out;
    -ms-transition: all .8s ease-in-out;
    -o-transition: all .8s ease-in-out;
    transition: all .8s ease-in-out;
	text-transform:uppercase;
}
.section2 .products h4 {
    opacity: 0;
    filter: alpha(opacity=0);
    -webkit-transform: translateY(50px);
    -ms-transform: translateY(50px);
    -o-transform: translateY(50px);
    transform: translateY(50px);

}
.section2.active .products h4{
    opacity: 1;
    filter: alpha(opacity=100);
    -webkit-transform: translateY(0px);
    -ms-transform: translateY(0px);
    -o-transform: translateY(0px);
    transform: translateY(0px);
    -webkit-transition: all 1.1s ease-in-out ;
    -moz-transition: all 1.1s ease-in-out ;
    -ms-transition: all 1.1s ease-in-out ;
    -o-transition: all 1.1s ease-in-out ;
    transition: all 1.1s ease-in-out ;

}
.section2 .more_button {
    opacity: 0;
    filter: alpha(opacity=0);
    -webkit-transform: translateY(-50px);
    -ms-transform: translateY(-50px);
    -o-transform: translateY(-50px);
    transform: translateY(-50px);
}
.section2.active .more_button{
    opacity: 1;
    filter: alpha(opacity=100);
    -webkit-transform: translateY(0px);
    -ms-transform: translateY(0px);
    -o-transform: translateY(0px);
    transform: translateY(0px);
    -webkit-transition: all 1.1s ease-in-out ;
    -moz-transition: all 1.1s ease-in-out ;
    -ms-transition: all 1.1s ease-in-out ;
    -o-transition: all 1.1s ease-in-out ;
    transition: all 1.1s ease-in-out ;

}
.section3 .products h3{
    opacity: 0;
    filter: alpha(opacity=0);
    -webkit-transform: translateY(50px);
    -ms-transform: translateY(50px);
    -o-transform: translateY(50px);
    transform: translateY(50px);
}
.section3.active .products h3{
    opacity: 1;
    filter: alpha(opacity=100);
    -webkit-transform: translateY(0px);
    -ms-transform: translateY(0px);
    -o-transform: translateY(0px);
    transform: translateY(0px);
    -webkit-transition: all .8s ease-in-out;
    -moz-transition: all .8s ease-in-out;
    -ms-transition: all .8s ease-in-out;
    -o-transition: all .8s ease-in-out;
    transition: all .8s ease-in-out;
    transition-delay: .5s;
-moz-transition-delay: .5s; /* Firefox 4 */
-webkit-transition-delay: .5s; /* Safari 和 Chrome */
-o-transition-delay: .5s; /* Opera */
text-transform: uppercase;
}
.section3 .products h4 {
    opacity: 0;
    filter: alpha(opacity=0);
    -webkit-transform: translateY(50px);
    -ms-transform: translateY(50px);
    -o-transform: translateY(50px);
    transform: translateY(50px);
}
.section3.active .products h4{
    opacity: 1;
    filter: alpha(opacity=100);
    -webkit-transform: translateY(0px);
    -ms-transform: translateY(0px);
    -o-transform: translateY(0px);
    transform: translateY(0px);
    -webkit-transition: all 1.1s ease-in-out ;
    -moz-transition: all 1.1s ease-in-out ;
    -ms-transition: all 1.1s ease-in-out ;
    -o-transition: all 1.1s ease-in-out ;
    transition: all 1.1s ease-in-out ;
}
.section3 .service_page{
	color:#fff;
	line-height:1.7;
	padding-top:3%;
}
.section3 .service_top{
	top: 66px;
	height:auto;
}

.section3 .service_page{
    opacity: 0;
    filter: alpha(opacity=0);
    -webkit-transform: translateY(50px);
    -ms-transform: translateY(50px);
    -o-transform: translateY(50px);
    transform: translateY(50px);
}
.section3.active .service_page{
    opacity: 1;
    filter: alpha(opacity=100);
    -webkit-transform: translateY(0px);
    -ms-transform: translateY(0px);
    -o-transform: translateY(0px);
    transform: translateY(0px);
    -webkit-transition: all 1.1s ease-in-out ;
    -moz-transition: all 1.1s ease-in-out ;
    -ms-transition: all 1.1s ease-in-out ;
    -o-transition: all 1.1s ease-in-out ;
    transition: all 1.1s ease-in-out ;
     transition-delay: .3s;
-moz-transition-delay: .3s; /* Firefox 4 */
-webkit-transition-delay: .3s; /* Safari 和 Chrome */
-o-transition-delay: .3s; /* Opera */
}





.section4 .news h3 {
    opacity: 0;
    filter: alpha(opacity=0);
    -webkit-transform: translateY(50px);
    -ms-transform: translateY(50px);
    -o-transform: translateY(50px);
    transform: translateY(50px);
}
.section4.active .news h3{
    opacity: 1;
    filter: alpha(opacity=100);
    -webkit-transform: translateY(0px);
    -ms-transform: translateY(0px);
    -o-transform: translateY(0px);
    transform: translateY(0px);
    -webkit-transition: all 1.1s ease-in-out ;
    -moz-transition: all 1.1s ease-in-out ;
    -ms-transition: all 1.1s ease-in-out ;
    -o-transition: all 1.1s ease-in-out ;
    transition: all 1.1s ease-in-out ;
}
.section4 .news h4 {
    opacity: 0;
    filter: alpha(opacity=0);
    -webkit-transform: translateY(50px);
    -ms-transform: translateY(50px);
    -o-transform: translateY(50px);
    transform: translateY(50px);
	text-shadow:1px 1px 5px #888;
}
.section4.active .news h4{
    opacity: 1;
    filter: alpha(opacity=100);
    -webkit-transform: translateY(0px);
    -ms-transform: translateY(0px);
    -o-transform: translateY(0px);
    transform: translateY(0px);
    -webkit-transition: all 1.1s ease-in-out ;
    -moz-transition: all 1.1s ease-in-out ;
    -ms-transition: all 1.1s ease-in-out ;
    -o-transition: all 1.1s ease-in-out ;
    transition: all 1.1s ease-in-out ;
     transition-delay: .1s;
-moz-transition-delay: .1s; /* Firefox 4 */
-webkit-transition-delay: .1s; /* Safari 和 Chrome */
-o-transition-delay: .1s; /* Opera */
}
.section4 .more_button {
    opacity: 0;
    filter: alpha(opacity=0);
    -webkit-transform: translateY(-50px);
    -ms-transform: translateY(-50px);
    -o-transform: translateY(-50px);
    transform: translateY(-50px);
}
.section4.active .more_button{
    opacity: 1;
    filter: alpha(opacity=100);
    -webkit-transform: translateY(0px);
    -ms-transform: translateY(0px);
    -o-transform: translateY(0px);
    transform: translateY(0px);
    -webkit-transition: all 1.1s ease-in-out ;
    -moz-transition: all 1.1s ease-in-out ;
    -ms-transition: all 1.1s ease-in-out ;
    -o-transition: all 1.1s ease-in-out ;
    transition: all 1.1s ease-in-out ;
    transition-delay: .5s;
-moz-transition-delay: .5s; /* Firefox 4 */
-webkit-transition-delay: .5s; /* Safari 和 Chrome */
-o-transition-delay: .5s; /* Opera */
}
.section5 .contact_right{
    opacity: 0;
    filter: alpha(opacity=0);
    -webkit-transform: translateX(50px);
    -ms-transform: translateX(50px);
    -o-transform: translateX(50px);
    transform: translateX(50px);
}
.section5.active .contact_right{
    opacity: 1;
    filter: alpha(opacity=100);
    -webkit-transform: translateX(0px);
    -ms-transform: translateX(0px);
    -o-transform: translateX(0px);
    transform: translateX(0px);
    -webkit-transition: all 1.1s ease-in-out ;
    -moz-transition: all 1.1s ease-in-out ;
    -ms-transition: all 1.1s ease-in-out ;
    -o-transition: all 1.1s ease-in-out ;
    transition: all 1.1s ease-in-out ;
     transition-delay: .1s;
-moz-transition-delay: .1s; /* Firefox 4 */
-webkit-transition-delay: .1s; /* Safari 和 Chrome */
-o-transition-delay: .1s; /* Opera */
}
.section5 .copy{
    opacity: 0;
    filter: alpha(opacity=0);
    -webkit-transform: translateY(20px);
    -ms-transform: translateY(20px);
    -o-transform: translateY(20px);
    transform: translateY(20px);
}
.section5.active .copy{
    opacity: 1;
    filter: alpha(opacity=100);
    -webkit-transform: translateY(0px);
    -ms-transform: translateY(0px);
    -o-transform: translateY(0px);
    transform: translateY(0px);
    -webkit-transition: all 1.1s ease-in-out ;
    -moz-transition: all 1.1s ease-in-out ;
    -ms-transition: all 1.1s ease-in-out ;
    -o-transition: all 1.1s ease-in-out ;
    transition: all 1.1s ease-in-out ;
     transition-delay: .8s;
-moz-transition-delay: .8s; /* Firefox 4 */
-webkit-transition-delay: .8s; /* Safari 和 Chrome */
-o-transition-delay: .8s; /* Opera */
}
.section2 .products_ct{
    opacity: 0;
    filter: alpha(opacity=0);
    -webkit-transform: translateY(50px);
    -ms-transform: translateY(50px);
    -o-transform: translateY(50px);
    transform: translateY(50px);
}
.section2.active .products_ct{
    opacity: 1;
    filter: alpha(opacity=100);
    -webkit-transform: translateY(0px);
    -ms-transform: translateY(0px);
    -o-transform: translateY(0px);
    transform: translateY(0px);
    -webkit-transition: all 1.1s ease-in-out ;
    -moz-transition: all 1.1s ease-in-out ;
    -ms-transition: all 1.1s ease-in-out ;
    -o-transition: all 1.1s ease-in-out ;
    transition: all 1.1s ease-in-out ;
     transition-delay: .3s;
-moz-transition-delay: .3s; /* Firefox 4 */
-webkit-transition-delay: .3s; /* Safari 和 Chrome */
-o-transition-delay: .3s; /* Opera */
}
.section4 .news_ct{
    opacity: 0;
    filter: alpha(opacity=0);
    -webkit-transform: translateY(50px);
    -ms-transform: translateY(50px);
    -o-transform: translateY(50px);
    transform: translateY(50px);
}
.section4.active .news_ct{
    opacity: 1;
    filter: alpha(opacity=100);
    -webkit-transform: translateY(0px);
    -ms-transform: translateY(0px);
    -o-transform: translateY(0px);
    transform: translateY(0px);
    -webkit-transition: all 1.1s ease-in-out ;
    -moz-transition: all 1.1s ease-in-out ;
    -ms-transition: all 1.1s ease-in-out ;
    -o-transition: all 1.1s ease-in-out ;
    transition: all 1.1s ease-in-out ;
     transition-delay: .3s;
-moz-transition-delay: .3s; /* Firefox 4 */
-webkit-transition-delay: .3s; /* Safari 和 Chrome */
-o-transition-delay: .3s; /* Opera */
}
.page {
	margin-top: 10px;
	padding: 14px 0 15px;
	text-align: center;
}
.page a {
	border: 1px solid #CCCCCC;
	margin-right: 5px;
	padding: 4px 7px;
}
.page span {
	border: 1px solid #CCCCCC;
	margin-right: 5px;
	padding: 4px 7px;
}
.page span.current {
	background: #5280e0;
	border: 1px solid #5280e0;
	color: #FFFFFF;
	font-weight: bolder;
}
.inbanner_text{
    position: absolute;
}
.inslide1,.inslide2{
    position: relative;
}
.inbanner_text1{
    position: absolute;
    right:0;
    top:0;
}
.inbanner_text2{
    position: absolute;
    left:0;
    top:0;
}
.section1 .inbanner_text1{
    opacity: 0;
    filter: alpha(opacity=0);
    -webkit-transform: translateX(50px);
    -ms-transform: translateX(50px);
    -o-transform: translateX(50px);
    transform: translateX(50px);
}
.section1.active .inbanner_text1{
    opacity: 1;
    filter: alpha(opacity=100);
    -webkit-transform: translateX(0px);
    -ms-transform: translateX(0px);
    -o-transform: translateX(0px);
    transform: translateX(0px);
    -webkit-transition: all 1.1s ease-in-out ;
    -moz-transition: all 1.1s ease-in-out ;
    -ms-transition: all 1.1s ease-in-out ;
    -o-transition: all 1.1s ease-in-out ;
    transition: all 1.1s ease-in-out ;
     transition-delay: .3s;
-moz-transition-delay: .3s; /* Firefox 4 */
-webkit-transition-delay: .3s; /* Safari 和 Chrome */
-o-transition-delay: .3s; /* Opera */
}
.section1 .inbanner_text2{
    opacity: 0;
    filter: alpha(opacity=0);
    -webkit-transform: translateX(50px);
    -ms-transform: translateX(50px);
    -o-transform: translateX(50px);
    transform: translateX(50px);
}
.section1.active .inbanner_text2{
    opacity: 1;
    filter: alpha(opacity=100);
    -webkit-transform: translateX(0px);
    -ms-transform: translateX(0px);
    -o-transform: translateX(0px);
    transform: translateX(0px);
    -webkit-transition: all 1.1s ease-in-out ;
    -moz-transition: all 1.1s ease-in-out ;
    -ms-transition: all 1.1s ease-in-out ;
    -o-transition: all 1.1s ease-in-out ;
    transition: all 1.1s ease-in-out ;
     transition-delay: .3s;
-moz-transition-delay: .3s; /* Firefox 4 */
-webkit-transition-delay: .3s; /* Safari 和 Chrome */
-o-transition-delay: .3s; /* Opera */
}
.inslide1 {
	background-image:url("../images/index_banner_10.jpg");
	background-repeat: no-repeat;
  background-position: center;
  background-size:cover;
   /*  background:url("../images/indexBanner1.jpg") center top no-repeat; */

}
.inslide2 {
	background-image:url("../images/index_banner_11.jpg");
	background-repeat: no-repeat;
  background-position: center;
   background-size:cover;
    /* background:url("../images/indexBanner2.jpg") center top no-repeat; */

}



.inslide11 {
	background-image:url("../images/index_banner_en_10.jpg");
	background-repeat: no-repeat;
  background-position: center;
  background-size:cover;
   /*  background:url("../images/indexBanner11.jpg") center top no-repeat; */

}
.inslide22 {
	background-image:url("../images/index_banner_en_11.jpg");
	background-repeat: no-repeat;
  background-position: center;
   background-size:cover;
    /* background:url("../images/indexBanner22.jpg") center top no-repeat; */

}



.inbanner_text1{
  
    width: 100%;
    height: 100%;
}
.inbanner_text2{
    width: 100%;
    height: 100%;
    background: url("../images/inbanner_text1.png") center top no-repeat;
}



/*产品列表*/
.inpro_list li{
    width: calc(25% - 3.75px);
    margin-right: 5px;
    margin-bottom: 5px;
    border:1px solid #e5e5e5;
    background:#fff;
    padding:0;
    -webkit-transition: ease-in-out .5s;
    -o-transition: ease-in-out .5s;
    transition: ease-in-out .5s;
}
.inpro_list li:nth-child(4n){
    margin-right: 0;
}
.inpro_list li figure img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.inpro_list li figcaption{
    width: 100%;
    height:50px;
    padding:0 20px;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    background:#191919;
    position: relative;
}
.inpro_list li figcaption::after{
    content:'';
    position: absolute;
    height:100%;
    right:0;
    width:0;
    background: #3B85C6;
    z-index:1;
    opacity:0;
    -webkit-transition: ease-in-out .5s;
    -o-transition: ease-in-out .5s;
    transition: ease-in-out .5s;
}
.inpro_list li figcaption p{
    color: #fff;
    font-size: 20px;
    text-transform: uppercase;
    text-overflow:ellipsis;
    white-space:nowrap;
    overflow:hidden;
    position: relative;
    z-index: 3;
}
.inpro_list li figcaption i{
    color: #fff;
    display: block;
    -webkit-transform:rotateZ(-90deg);
    -ms-transform:rotateZ(-90deg);
    -o-transform:rotateZ(-90deg);
    transform:rotateZ(-90deg);
    font-size: 12px;
    position: relative;
    z-index: 3;
}
.inpro_list li:hover figcaption::after{
    left:0;
    width: 100%;
    opacity:1;
}
.inpro_list li:hover{
    border-color:#3B85C6;
}
.product_right{
    width:72.5%;
    margin-top: 40px;
}
.type_name{
    height:60px;
    line-height:60px;
    font-size: 34px;
    color: #000;
    font-weight: bold;
    border-bottom:1px solid #e1e1e1;
    position:relative;
}
.type_name::after{
    content:''; 
    position: absolute;
    width: 100px;
    height:3px;
    background:#3B85C6;
    left:0;
    top:100%;
    z-index: 1;
}
.product_nav{
    width:calc(27.5% - 50px);
    margin-top: 40px;
}
.product_nav li {
    margin-bottom:1px;
}
.product_nav li a{
    width: 100%;
    height:60px;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content:space-between;
    justify-content:space-between;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-align-items: center;
    align-items: center;
    background: #eeeeee;
    padding:0 15px 0 20px;
    cursor: pointer;
    -webkit-transition: ease-in-out .3s;
    -o-transition: ease-in-out .3s;
    transition: ease-in-out .3s;
}
.product_nav li a p{
    font-size: 16px;
    color: #444444;
    -webkit-transition: ease-in-out .3s;
    -o-transition: ease-in-out .3s;
    transition: ease-in-out .3s;
}
.product_nav li a i{
    display: block;
    font-size:12px;
    color: #444;
    -webkit-transform:rotateZ(0);
    -ms-transform:rotateZ(0);
    -o-transform:rotateZ(0);
    transform:rotateZ(0);
    -webkit-transition: ease-in-out .3s;
    -o-transition: ease-in-out .3s;
    transition: ease-in-out .3s;
}
.product_nav li dl dd{
    width: 100%;
    height:40px;
    margin-bottom: 1px;
}
.product_nav li dl dd a{
    padding-left:24px;
    display: block;
    font-size: 14px;
    color: #666666;
    line-height:45px;
    border-bottom:1px solid #eeeeee;
    position: relative;
    -webkit-transition: ease-in-out .3s;
    -o-transition: ease-in-out .3s;
    transition: ease-in-out .3s;
}
.product_nav li dl dd a::after{
    content:'';
    position: absolute;
    width:0;
    height: 1px; 
    background: #3B85C6;
    right:40px;
    top:50%;
    z-index: 1;
    -webkit-transition: ease-in-out .3s;
    -o-transition: ease-in-out .3s;
    transition: ease-in-out .3s;
}
.product_nav li dl dd a:hover{
    background:#fafafa;
}
.product_nav li dl dd a:hover::after{
    width: 40px;
    right:0;
}
.product_nav li dl dd.active a{
    background:#fafafa;
}
.product_nav li dl dd.active a::after{
    width: 40px;
    right:0;
}
.product_nav li dl{
    display:none;
}
.product_nav li.choose a{
    background: #3B85C6;
}
.product_nav li.choose a i{
    color: #fff;
}
.product_nav li.choose p{
    color: #fff;
}
.product_nav li:hover a{
    background: #3B85C6;
}
.product_nav li:hover a i{
    color: #fff;
}
.product_nav li:hover p{
    color: #fff;
}
.pro_down{
    font-size: 0;
}
.pro_down p{
    width: 85%;
    line-height:60px;
    background: #eeeeee;
    padding-left: 20px;
    font-size: 17px;
    color: #444444;
    display: inline-block;
    vertical-align: middle;
    text-overflow:ellipsis;
    white-space:nowrap;
    overflow:hidden;
}
.pro_down a{
    display: inline-block;
    vertical-align: middle;
    width: 15%;
    height:60px;
    line-height:60px;
    text-align: center;
    background: #3B85C6;
    font-size: 17px;
    color: #fff;
    text-transform: capitalize;
}
.product_list{
    margin-top:0;
}
.product_list li{
    width:calc(33.33% - 13.33px);
    margin-right: 20px;
    margin-bottom: 30px;
}
.product_list li:nth-child(4n){
    margin-right: 20px;
}
.product_list li:nth-child(3n){
    margin-right: 0;
}
.product_list li figure{
    height:230px;
}
.product_list li figcaption p{
    font-size: 16px;
}
.deta_page{
    padding-top:20px;
}
.product_list ul{
    -webkit-justify-content:flex-start;
    justify-content:flex-start;
}
.product_top figure{
    width: 450px;
    height: 450px;
}
.product_top figure img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border:1px solid #e5e5e5;
}
.product_top  figcaption{
    width: 380px;
}
.pro_title{
    font-size: 30px;
    color: #000000;
    font-weight: bold;
    height:55px;
    border-bottom:1px solid #e5e5e5;
    line-height:40px;
}
.pro_enitor{
    height:345px;
    width: 100%;
    padding-top:30px;
}
.view_contents2{
    display: none;
}
.team_list ul{
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
}
.team_list li{
    width:33.33%;
}
.team_list li img{
    -webkit-transition: ease-in-out .5s;
    -o-transition: ease-in-out .5s;
    transition: ease-in-out .5s;
}
.team_list li:hover img{
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
    transform: scale(1.1);
}
.team_list{
    margin-top: 40px;
}
.prodeatil li{
    list-style: none;
}
.left{
    float: left;
}
.right{
    float: right;
}
.news_left_item {
	
}
.news_left_item td{border:solid #efefef; border-width:0px 0px 0px 0px;}/*td表格颜色为efefef 左1px 下1px*/
.news_left_item table{border:solid #efefef; border-width:0px 0px 0px 0px;}/*table表格颜色为efefef 上1px 右1px*/

.fp-controlArrow.fp-next{
	border-width: 0;
	width:50px;
	height:50px;
}
.fp-controlArrow.fp-next:after{
	content:' ';
	width:50px;
	height:50px;
	display:block;
	background:url(../images/iconright.png) no-repeat center ;
	background-size:50px;
}
.fp-controlArrow.fp-prev{
	border-width: 0;
	width:50px;
	height:50px;
}
.fp-controlArrow.fp-prev:after{
	content:' ';
	width:50px;
	height:50px;
	display:block;
	background:url(../images/iconleft.png) no-repeat center ;
	background-size:50px;
}
.prodetail_edit{
	padding:2% 0;
	font-size:14px;
	line-height:1.8;
	color:#666;
}
