#news{
	height: 100%;
	padding: 50px 0;
	overflow: hidden;
}

#news h1{
    font-size: 32px;
    height: 100%;
    overflow: hidden;
    text-align: center;
    clear: both;
    margin-bottom: 50px;
}

#news h1 span{
    padding: 15px 0;
    display: inline-block;
    border-bottom: 1px solid #333;
}

#news-list{
	width: 1200px;
	height: 100%;
	overflow: hidden;
	margin: 0 auto;
}

.news-item{
	width: 562px;
	height: 100%;
	overflow: hidden;
	line-height: 28px;
	float: left;
	margin-right: 76px;
	padding: 20px 0;
}

.news-item:nth-child(2n){
	margin-right: 0;
}

.news-cover{
	width: 562px;
	height: 268px;
	display: block;
	overflow: hidden;
}

.news-cover a{
	width: 562px;
	height: 268px;
	display: block;
}

.news-cover a img{
	width: 100%;
	height: auto;
}

.news-item h2{
	font-size: 30px;
	line-height: 40px;
	text-align: center;
	padding: 10px 0;
}

.news-item h2 a:hover{
	color: #0d6cff;
}

.news-headline{
	height: 84px;
	overflow: hidden;	
	display: -webkit-box; 
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

.news-basic{
	color: #999;
	line-height: 40px;
	text-align: center;
}

.news-basic span{
	font-size: 15px;
	margin-right: 20px;
	display: block;
	text-align: center;
}

.news-basic span i{
	margin-right: 5px;
}

.news-reading{
	text-align: center;
	padding: 20px 0 20px 0;
}

.btn-reading{
	width: 180px;
	height: 38px;
	line-height: 38px;
	text-align: center;
	display: inline-block;
	border-radius: 20px;
	border: 1px solid #404e5f;
}

.btn-reading:hover{
	color: #fff;
	background: #404e5f;
}


/* 新闻详情 */
#news-detail{
	height: 100%;
	overflow: hidden;
	padding: 0 0 50px 0;
	border-top: 1px solid #f1f3f7;
}

#news-title{
	padding: 50px 0;
	background: #f1f3f7;
}

#news-title h1{
	width: 1200px;
    font-size: 32px;
    height: 100%;
    overflow: hidden;
    text-align: center;
    clear: both;
    margin: 0 auto;
}

#article-content{
	width: 1200px;
	margin: 0 auto;
	height: 100%;
	overflow: hidden;
}

#news-meta{
	color: #aaa;
	margin-top: 20px;
	text-align: center;
}

#news-meta span i{
	font-size: 16px;
	margin-right: 5px;
}

#article-lead{
	border-bottom: 1px solid #e9edf3;
	padding-bottom: 20px;
	margin-bottom: 20px;
}


#article-content article{
	line-height: 28px;
	padding: 20px 0;
	height: 100%;
	overflow: hidden;
	border-bottom: 1px dashed #e9edf3;
	clear: both;
}

#article-content article img:first{
	width: 100%;
	height: auto;
	margin-bottom: 20px;
}

#article-content article p{
	padding: 5px 0;
}

#article-content article a{
	color: #0d6cff;
	border-bottom: 1px dashed #0d6cff;
}

#news-siblings {
	color: #0d6cff;
	padding: 20px 0;
	line-height: 28px;
}

#news-siblings span{
	display: inline-block;
	text-align: right;
	margin-right: 15px;
}

/* 相关产品 */
#related-products{
	height: 100%;
	padding: 20px 0;
	overflow: hidden;
	background: #f1f3f7;
}

#related-products h2{
    font-size: 32px;
    height: 100%;
    overflow: hidden;
    text-align: center;
    clear: both;
    margin-bottom: 50px;
}

#related-products h2 span{
    padding: 15px 0;
    display: inline-block;
    border-bottom: 1px solid #333;
}

.product-list{
    width: 1200px;
    height: 100%;
    margin: 0 auto;
    overflow: hidden;
}

.product-list ul > li{
    width: 340px;
    height: 100%;
    overflow: hidden;
    display: block;
    float: left;
    padding: 20px;
    margin: 0 30px 30px 0;
    background: #fff;
    position: relative;
    transition: background .2s ease;
}

.product-list ul > li:nth-child(3n) {
    margin-right: 0;
}

.product-list ul > li:hover{   
    background: #e9edf3;
}

.product-image{
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.product-image a {
    width: 100%;
    height: 100%;
    display: block;
    position: relative;
}

.product-image a img{
    width: 100%;
    height: 100%;
    display: block;
}

.product-baisc{
    height: 48px;
    overflow: hidden;
    padding-top: 20px;    
}

.product-baisc h3{
    text-align: center;
    font-size: 18px;
}

.product-list ul{
    height: 100%;
    overflow: hidden;
}

.video{
    font-size: 24px;
    color: #424c7d;
    width: 32px;
    height: 32px;
    bottom: 0;
    left: 0;
    background: #e5e9f1;
    position: absolute;
    text-align: center;
}

@media (max-width: 960px){
	#news h1{
	    font-size: 2rem;
	    margin-bottom: 3rem;
	}

	#news h1 span{
	    padding: 1rem 0;
	}

	#news{
		width: auto;
		margin: 0 auto;
	}

	#news-list{
		width: auto;
		padding: 0 1rem;
	}

	.news-item{
		width: 100%;
		line-height: 2rem;
		margin-right: 0;
		padding: 1rem 0;
	}

	.news-item:nth-child(2n){
		margin-right: 0;
	}

	.news-cover{
		width: 100%;
		height: auto;
		display: block;
		overflow: hidden;
	}

	.news-cover a{
		width: auto;
		height: auto;
	}

	.news-cover a img{
		width: 100%;
	}

	.news-item h2{
		font-size: 2rem;
		line-height: 2.5rem;
		padding: 0.8rem 0;
	}

	.news-headline{
		height: 6rem;
		line-height: 2rem;
	}

	.news-basic{
		line-height: 3rem;
	}

	.news-basic span{
		font-size: 15px;
		margin-right: 20px;
		display: block;
		text-align: center;
	}

	.news-basic span i{
		margin-right: 5px;
	}

	.news-reading{
		text-align: center;
		padding: 1.5rem 0;
	}

	.btn-reading{
		width: 12rem;
		height: 2.6rem;
		line-height: 2.6rem;
		border-radius: 1.3rem;
	}


	/* 新闻详情 */
	#news-detail{
		padding: 0 0 4rem 0;
	}


	#news-title{
		padding: 2rem 1rem;
		background: #f1f3f7;
	}

	#news-title h1{
		font-size: 2rem;
		width: auto;
	}

	#article-content{
		width: auto;
		margin: 0 auto;
		padding: 0 1rem;
	}

	#news-meta{
		line-height: 3rem;
		margin-top: 1rem;
	}

	#news-meta span i{
		font-size: 1rem;
		margin-right: 0.4rem;
	}

	#article-lead{
		padding-bottom: 1.5rem;
		margin-bottom: 1.5rem;
	}

	#article-content article{
		line-height: 2rem;
		padding: 1.5rem 0;
	}

	#article-content article img{
		width: 100%;
		height: auto;
		margin-bottom: 1.5rem;
	}

	#article-content article p{
		padding: 0.8rem 0;
	}

	#news-siblings {
		padding: 1.5rem 0;
		line-height: 2rem;
	}

	#news-siblings span{
		margin-right: 1.2rem;
	}

	#related-products h2{
	    font-size: 2rem;
	    margin-bottom: 1rem;
	}

	#related-products h2 span{
	    padding: 1rem 0;
	}

	.product-list{
        width: auto;
        height: 100%;
        margin: 0 auto;
        overflow: hidden;
    }

    .product-list ul{
        height: 100%;
        overflow: hidden;
        padding: 0 1rem;
    }

    .product-list ul > li{
        width: 92%;
        padding: 2rem 4%;
        margin: 0 0 1rem 0;
    }

    .product-baisc{
        height: 100%;
        padding-top: 2rem;
    }

    .product-baisc h2{
        font-size: 1.2rem;
    }
}