/* news */
.classify a {
    font-size: 16px;
    color: #666;
    line-height: 80px;
}
.classify .active,
.classify a:hover {
    color: #005aab;
}
.classify .active {
    font-weight: bold;
}
.classify span {
    width: 1px;
    height: 14px;
    background: #eaeaea;
    margin: auto 10px;
}





/* news_list */
.news_list li {
    padding: 27px 28px;
    padding-right: 0;
    border-bottom: 1px solid #eee;
}
.news_list li .img_box {
    width: 270px;
    height: 174px;
    background: #f4f4f4;
    overflow: hidden;
    position: relative;
}
.news_list li .img_box img {
    position: absolute;
    transition: all .3s;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    max-width: 110%;
}
.news_list li .explain {
    width: 675px;
    margin-left: 35px;
}
.news_list li .explain_title {
    font-size: 16px;
    color: #333;
    margin-top: 15px;
    font-weight: bold;
}
.news_list li .explain_content {
    font-size: 14px;
	line-height: 22px;
    color: #777;
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
    max-height: 44px;
}
.news_list li a {
    width: 150px;
	height: 40px;
    background: none;
    text-align: center;
    line-height: 40px;
    border: 1px solid #dcdcdc;
    font-size: 16px;
	color: #666;
}
.news_list li a:hover {
    background: #005aab;
    border: 1px solid #005aab;
    color: #fff;
}
.news_list li .time {
    position: relative;
    padding-left: 25px;
    margin-left: 45px;
}
.news_list li .time .line {
    width: 1px;
    height: 40px;
    background: #eaeaea;
    position: absolute;
    left: 0;
    top: 55px;
}
.news_list li .time span:nth-of-type(1) {
    font-size: 26px;
    color: #aaa;
    margin-top: 48px;
    font-weight: 300;
}
.news_list li .time span:nth-of-type(2) {
    font-size: 18px;
	letter-spacing: 4px;
    color: #ddd;
    -webkit-transform: translateX(2px);
    transform: translateX(2px);
}
.news_list li:hover {
    background: #fff;
	box-shadow: 3px 4px 87px 0px 
		rgba(0, 0, 0, 0.1);
}
.news_list li:hover .explain_title {
    color: #005aab;
}
.news_list li:hover .img_box img {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}








/* news_detail */
.news_detail_title {
    text-align: center;
}
.news_detail_title .center {
    padding: 70px 0 30px;
    border-bottom: 1px dotted #eaeaea;
}
.news_detail_title h1 {
    font-size: 32px;
    color: #464646;
    margin-bottom: 10px;
}
.news_detail_title span {
    font-size: 14px;
    color: #888;
    margin: 0 5px;
}


.news_detail_main {
    padding: 30px 0;
}






/* news_control */
.news_control .center {
    font-size: 16px;
    color: #666;
    border-top: 1px solid #eaeaea;
    padding: 50px 0;
}
.news_control span {
    width: 45%;
}
.news_control .next_news {
    text-align: right;
}
.news_control a {
    display: inline;
    color: #005aab;
}
.news_control .no_news a {
    color: #666;
    cursor: text;
}





















