/*新闻资讯 by leo wang*/
.news_container
{
width: 1400px;
height:auto;
margin-left:200px;
margin-right:40px;
margin-bottom:20px;
overflow: hidden;
padding: 15px 0px;
}

.news_container .row .list_box .list_news{
line-height: 40px;
font-size: 16px;
padding-left: 30px;
}

.list_news li {
color: #898989;
background: url(../img/right.png) no-repeat left 10px;
border-bottom: 1px dotted #fff;
line-height: 22px;
padding: 8px 0px;
padding-left: 25px;
border-bottom: 1px dashed #e3e2e2;
}

.list_news li a:hover {
font-weight: bold;
color:red;
}

.news_container .row .list_box .list_news .news_time{
color:#333;
margin-right:30px;
float: right;
}

.news_container .page {
clear: both;
margin: 100px 0px 0px 0px;
text-align: center;
}

.news_container .page a{
font-family: Arial;
border: #000 1px solid;
font-size: 13px;
padding: 5px 9px;
color: #000;
margin: 2px;
}

.page .current {
font-family: Arial;
border: #000 1px solid;
font-size: 13px;
padding: 5px 9px;
color: #fff;
margin: 2px;
background-color: #31363c;
}

.news_container .row .list_right_news{
text-align: center;
}

.news_container .row .list_right_news img {
    width: 70%;  /* 图片宽度 */
    height: auto;
    animation-name: rotate;  /* 动画名称 */
    animation-duration: 30s;  /* 动画持续时间 */
    animation-timing-function: linear; /* 动画速度曲线 */
    animation-iteration-count: infinite; /* 动画重复次数 */
}

/* 关键帧动画定义 */
@keyframes rotate {
     0% {
        transform: rotate(0deg); /* 初始角度 */
    }
    100% {
        transform: rotate(360deg); /* 最终角度 */
    }
}