.floor_caption{
	font-size: 38px;
    color: #36475a;
}
.floor1{
	padding: 100px 0;
	background: #F3F5F7;
}

.pro_list{
	display: flex;
	justify-content: space-around;
}
.pro_list li{
	width:23%;
    background-color: #fff;
    box-shadow: 0 0 14px 0 rgba(60,66,85,.08);
    border-radius: 8px;
    cursor: pointer;
    padding: 15px ;
    overflow: hidden;
    transition: all .3s ease;
}
.pro_list li:hover{
    box-shadow: 0 15px 30px 10px rgba(0,0,0,.3);
    transform: translate3d(0,-2px,0);
}
.pro_list li .pro_img{
	height: 180px;
	line-height: 180px;
	text-align: center;
}
.pro_list li .pro_img img{
	max-width: 100%;
	max-height: 100%;
}

.pro_list li .pro_tit{
	height: 26px;
    line-height: 26px;
    font-size: 18px;
    color: #3c4255;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    clear: both;
    margin-bottom: 10px;
}
.pro_list li .pro_desc{
	height: 63px;
    font-size: 14px;
    line-height: 21px;
    color: rgba(60,66,85,.6);
	overflow : hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	margin-bottom: 15px;
}


/*新闻*/
.floor2{
	background: #E8F0F2;
	padding: 100px 0;
}

.floor2_tit{
	margin-bottom: 40px;
}
.floor2_tit h1{
    font-size: 32px;
    width: auto;
    margin: 0 10px;
    height: 38px;
    line-height: 42px;
    letter-spacing: 2px;
    color: #36475a;
}
.floor2_tit h6{
	font-size: 14px;
    padding-left: 10px;
    font-family: "PingFang SC", Helvetica, arial, sans-serif;
    color: #a5b1bf;
    text-transform: uppercase;
    text-align: center;
    letter-spacing: 2px;
}
.floor2_tit .floor2_line{
	width: 15px;
	height: 3px;
	background: #0080FF;
	margin: 10px auto 0;
}

.news_list li{
	width: 33.33%;
	float: left;
	padding: 0 40px 40px 40px;
	overflow: hidden;
}
.news_list li .news_tit{
    
    line-height: 42px;
    margin: 10px 0;
}
.news_list li .news_tit a{
	color: #36475a;
	font-weight: bold;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    font-size: 18px;
}
.news_list li .news_tit a:hover{
    color: #00A8EC;
}
.news_list li .news_desc{
	height: 95px;
    color: #6e798b;
    line-height: 32px;
    overflow: hidden;
}
.news_list li .news_info{
	overflow: hidden;
}
.news_list li .news_info .news_date{
	display: inline-block;
    width: 80px;
    height: 32px;
    line-height: 32px;
    margin: 20px 0;
    color: #a5b1bf;
    font-family: "Arial", Helvetica, Tahoma;
}
.news_list li .news_info .news_btn{
    display: block;
    width: 80px;
    height: 32px;
    line-height: 32px;
    border-radius: 30px;
    border: 1px #0080ff solid;
    text-align: center;
    background-color: transparent;
    color: #0080ff;
    margin: 20px 0;
    position: relative;
}
.news_list li .news_info .news_btn:hover{
	background: #00AAFF;
	border-color:#00AAFF;
	color: #fff;
}
.news_list li .news_info .news_btn::before{
	font-family: "宋体";
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    position: relative;
    content: ">";
    position: absolute;
    left: 130%;
    top: 48%;
    margin-top: -8px;
    height: 100%;
    font-size: 125%;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    transition: all 0.3s;
}
.news_list li .news_info .news_btn:hover:before{
	left: 80%;
}


@media screen and (max-width: 1000px){
	.index_banner{
		margin-top: 0;
	}
	.floor1 {
		padding: 50px 0;
	}
	.floor_caption {
		font-size: 30px;
	}
	.pro_list{
		flex-wrap: wrap;
	}
	.pro_list li{
		width: 100%;
		margin-bottom: 20px;
	}
	.floor2{
		padding: 50px 0;
	}
	.news_list li{
		width: 100%;
	}
}
