﻿@charset "utf-8";
body{
    background-color: #fff;color:#000;
    padding-bottom:30px;
}
.width100{
    width:100%;
}
/*新闻列表*/
.newslist{
    width:1200px;margin:20px auto;
}
/*单个新闻*/
.newsItem{
	cursor:pointer;
    padding:20px 0;position: relative;
    border-bottom: 1px solid #dcdcdc;
    -webkit-transition: all .36s ease-out;
    -moz-transition: all .36s ease-out;
    transition: all .36s ease-out;
}

.newsItem:before{
    content:"";color:#fff;position: absolute;width:26px;height:18px;
    background: url(../image/newsArrow1.png) no-repeat center;
    right:150px;top:50%;
    -webkit-transition: all .36s ease-out;
    -moz-transition: all .36s ease-out;
    transition: all .36s ease-out;
}
.newsItem:after{
    content: "";display: block;clear:both;
}
/*新闻列表图片*/
.itemImg{
    width:340px;height:200px;float: left;margin-right:10px;overflow: hidden;
}
.itemImg img{
    width:100%;
}
/*新闻列表文字*/
.itemFont{
    width:500px;float:left;margin-left:30px;padding-top:15px;
    color:#2d2d2d;
}
.itemFont a{
	color:#2d2d2d;
}
 
.itemFont p.title{
    font-size: 16px;
}
.itemFont p.time{
    font-size: 12px;
}
.itemFont div.description{
    margin-top:10px;line-height: 26px;height: 52px;overflow: hidden;text-overflow: ellipsis;display: -webkit-box;
    -webkit-line-clamp:2;-webkit-box-orient:vertical;
   
}
.itemFont div.description p span{
	/* font-size: 13px!important;*/
}
.description p{
	display:none;
}
.description p:first-child{
	display:block;
}
.newsItem:hover{
    background-color: #8d4549;
    padding-left:40px;
}
.newsItem:hover:before{
    right:100px;
}
.newsItem:hover .itemFont,.newsItem:hover .itemFont a,.newsItem:hover .itemFont span{color:#fff!important;}


.page{
    margin-top:40px;
}