body {
    background: #f6f6f6 !important;
}

/*新闻列表*/
.news-list {
}
.news-list ul {
}

.news-list ul li {
    float: left;
    width: 31%;
    margin: 1%;
}

.news-list ul li .pic {
    width: 100%;
    height: 0;
    padding-top: 69%;
    overflow: hidden;
    position: relative;
}
.news-list ul li .pic .news-pic {
	position: absolute;
    top: 0%;
    left: 0%;
	width:100%;
	height:100%;
}
.news-list ul li .pic .link {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,0);
    opacity: 0;
    filter: alpha(opacity=0);
    transition: all 0.6s ease;
}

.news-list ul li .pic .link .tit {
    color: #fff;
    font-size: 40px;
    line-height: 30px;
	font-family:"宋体";
}

.news-list ul li .pic img {
    width: 100%;
    display: block;
    transition: all 0.6s ease;
}

.news-list ul li .item {
    padding: 8% 5% 5%;
    background: #fff;
}
.news-list ul li .item h3 {
    width:100%;
    font-size: 20px;
    color: #555555;

    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;

}
.news-list ul li:hover .item h3 {
    color: #000;

}
.news-list ul li .item p {
    width:100%;
    height: 95px;
    line-height:26px;
    color: #999999;
    font-size: 14px;
    margin: 3% 0 10%;
    overflow: hidden;
}

.news-list ul li .item .more {
	border-top: 1px solid #eee;
    border-radius: 0 0 5px 5px;
    padding: 4% 2%;
    line-height: 30px;
    transition: 0.3s;
}
.news-list ul li .item .more time {
	color:#999;
}
.news-list ul li .item .more span {
	float: right;
    display: block;
    color: #0c3771;
    overflow: hidden;
    position: relative;
    z-index: 1;
}
.news-list ul li:hover .item .more span {
    color: #ffc006;
}
.news-list ul li .item .more span i {
    padding: 0 0 0 10px;
    font-family:"宋体";
    font-style: normal;
}


/*特效*/
.news-list ul li:hover {
    box-shadow: 0 5px 40px rgb(142 142 142 / 40%);
}
.news-list ul li:hover .pic .link {
    transform: translate(-50%,-50%);
    opacity: 1;
    filter: alpha(opacity=100);
}
.news-list ul li:hover .pic img {
    opacity: 1;
    filter: alpha(opacity=80);
    transform: scale(1.1);
}

/*自适应样式*/
@media screen and (max-width:1024px){
.news-list {
}
.news-list ul {
}
.news-list ul li {
    float: left;
    width: 98%;
    margin:5% 1%;
}

.news-list ul li .pic {
}
.news-list ul li .pic .news-pic {
}

.news-list ul li .pic .link {
	display:none;
}
.news-list ul li .pic img {
}

.news-list ul li .item {
    padding: 8% 5% 5%;
    background: #fff;
}
.news-list ul li .item h3 {
    font-size: 18px;
	color:#000;
}
.news-list ul li .item p {
    width:100%;
    height: 95px;
    line-height:1.6;
    font-size: 14px;
    margin: 3% 0 10%;
}
}
/*自适应样式 end*/

/*新闻详情页*/
.news-artilce {
    padding:2% 0;
}
.news-box {
    width:70%;
    padding:4% 8%;
    background:#fff;
}
.news-title{
    text-align: center;
    padding-bottom:3%;
    border-bottom: 1px solid #e5e5e5;
}
.news-title h1 {
    line-height: 40px;
    font-size: 28px;
    color: #000;
    font-weight: 600;
    margin-bottom: 1%;
    overflow: hidden;
}
.news-title span {
    display:inline-block;
    padding:0 20px;
}
.news-content {
    padding: 2.5% 0;
    max-width:1056px;
    margin: 0 auto;
    line-height: 30px;
    font-size: 15px;
    color: #777;
    overflow: hidden;
}
.news-content>p {
    padding: 0 0 1% 0;
}
.news-content span {display:inline;}
.news-content img {
    max-width:100% !important;
    height:auto !important;
}
.goback {
    margin: 2% 0 0 0;
}
.goback a {
    display: block;
    position: relative;
	max-width: 160px;
    line-height: 50px;
    margin: 0 auto;
    border: 1px solid #ddd;
    border-radius: 38px;
	font-size:14px;
    color: #999;
    text-align: center;
    overflow: hidden;
}
.goback a:hover {
    color: #fff;
}
.goback a:before {
    position: absolute;
    content: '';
    left: -5px;
    right: -5px;
    top: 0;
	z-index:-1;
    height: 100%;
    background: #0c3771;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    transform: scaleX(0);
    -webkit-transform: scaleX(0);
    -ms-transform: scaleX(0);
    transform-origin: right center;
}
.goback a:hover:before{
	transform-origin: left center;
	transform: scaleX(1);-webkit-transform: scaleX(1);
	-ms-transform: scaleX(1);
}
.goback a span {
	padding-left:10px;
    font-family: '宋体';
}


/*新闻详情页-推荐新闻*/
.hot-news-list {
    width:24%;
    padding:10px;
    background: #fff;
}
.hot-news-list h2 {
    font-size: 20px;
    color: #555;
    line-height: 27px;
    padding: 5%;
}
.hot-news-list ul {
}

.hot-news-list ul li {
    float: left;
    width: 98%;
    margin: 1%;
}

.hot-news-list ul li .pic {
    width: 100%;
    height: 0;
    padding-top: 69%;
    overflow: hidden;
    position: relative;
}
.hot-news-list ul li .pic .news-pic {
	position: absolute;
    top: 0%;
    left: 0%;
	width:100%;
	height:100%;
}
.hot-news-list ul li .pic .link {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,0);
    opacity: 0;
    filter: alpha(opacity=0);
    transition: all 0.6s ease;
}

.hot-news-list ul li .pic .link .tit {
    color: #fff;
    font-size: 40px;
    line-height: 30px;
	font-family:"宋体";
}

.hot-news-list ul li .pic img {
    width: 100%;
    display: block;
    transition: all 0.6s ease;
}

.hot-news-list ul li .item {
    padding: 8% 5% 5%;
    background: #fff;
}
.hot-news-list ul li .item h3 {
    width:100%;
    font-size: 20px;
    color: #555555;

    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;

}
.hot-news-list ul li .item p {
    width:100%;
    height: 95px;
    line-height:26px;
    color: #999999;
    font-size: 14px;
    margin: 3% 0 10%;
    overflow: hidden;
}

.hot-news-list ul li .item .more {
	border-top: 1px solid #eee;
    border-radius: 0 0 5px 5px;
    padding: 4% 2%;
    line-height: 30px;
    transition: 0.3s;
}
.hot-news-list ul li .item .more time {
	color:#999;
}
.hot-news-list ul li .item .more span {
	float: right;
    display: block;
    color: #0c3771;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.hot-news-list ul li .item .more span i {
    padding: 0 0 0 10px;
    font-family:"宋体";
    font-style: normal;
}

/*特效*/
.hot-news-list ul li:hover .pic .link {
    transform: translate(-50%,-50%);
    opacity: 1;
    filter: alpha(opacity=100);
}
.hot-news-list ul li:hover .pic img {
    opacity: 1;
    filter: alpha(opacity=80);
    transform: scale(1.1);
}

.hot-news-list ul li:hover .item span {
    color: #0c3771;
}
.hot-news-list ul li .item span i {
    padding: 0 0 0 10px;
    font-family:"宋体";
    font-style: normal;
}
.hot-news-list ul li .item span::after {
    content: '';
    width: 100%;
    height: 0%;
    background:#fff;
    position: absolute;
    top: 0%;
    left: 0%;
    z-index: -1;
    transition: all 0.6s ease;
}
.hot-news-list ul li:hover .item span::after {
    height:100%;
}
/*自适应样式*/
@media screen and (max-width:1024px){
.news-artilce {
    padding:2% 0;
}
.news-box {
    width:100%;
    padding:4% 4%;
    background:#fff;
}
.news-title{
    text-align: center;
    padding-bottom:3%;
    border-bottom: 1px solid #e5e5e5;
}
.news-title h1 {
    line-height: 30px;
    font-size: 18px;
    color: #000;
    font-weight: 1000;
    margin: 4% 1%;
    overflow: hidden;
}
.news-title span {
    display:inline-block;
    padding:0 0px;
}
.news-content {
    padding: 10% 0;
    max-width:1056px;
    margin: 0 auto;
    line-height: 30px;
    font-size: 16px;
    color: #777;
    overflow: hidden;
}
.news-content>p {
    padding: 0 0 1% 0;
}
.news-content span {display:inline;}
.news-content img {
    max-width:100% !important;
    height:auto !important;
}
.goback {
    margin: 2% 0 0 0;
}
.goback a {
	max-width: 120px;
    line-height: 40px;
    margin: 0 auto;
    border: 1px solid #ddd;
    border-radius: 38px;
	font-size:12px;
    color: #999;
    text-align: center;
    overflow: hidden;
}
.goback a:hover {
    color: #fff;
    background: #0c3771;
}


/*新闻详情页-推荐新闻*/
.hot-news-list {
    width:100%;
    padding:10px;
	margin-top:5%;
    background: #fff;
}
.hot-news-list h2 {
    font-size: 20px;
    color: #555;
    line-height: 27px;
    padding: 5%;
}
.hot-news-list {
}
.hot-news-list ul {
}
.hot-news-list ul li {
    float: left;
    width: 98%;
    margin:5% 1%;
}

.hot-news-list ul li .pic {
}
.hot-news-list ul li .pic .news-pic {
}

.hot-news-list ul li .pic .link {
	display:none;
}
.hot-news-list ul li .pic img {
}

.hot-news-list ul li .item {
    padding: 8% 5% 5%;
    background: #fff;
}
.hot-news-list ul li .item h3 {
    font-size: 18px;
	color:#000;
}
.hot-news-list ul li .item p {
    width:100%;
    height: 95px;
    line-height:1.6;
    font-size: 14px;
    margin: 3% 0 10%;
}
}
/*自适应样式 end*/