/*图片滚动*/
.container{  
    width:1000px;  
    height: 240px;
    margin:0px auto;  
    overflow: hidden;  
    position: relative;  
    border: 1px solid #0068B9;
}  
.container .imgcss{  
    animation:scoll 20s linear 0s infinite;  
} 
.container ul {
    margin: 0;
    width:4160px;  
    left:0;  
    top:0;  
    position: absolute;  
}
.container ul:hover {
    animation-play-state: paused;
    list-style: none;
} 
.container ul li{  
    float:left;
    margin-left: 20px;
    list-style: none;
}  
@keyframes scoll{  
    from{  
        left:0;  
    }  
    to{  
        left:-2080px;  
    }  
}
.imgcss img {
    width: 240px;
    height: 240px;
}
/*图片滚动结束*/
/*内部导航*/
.list1 {

}
.pro_a {
    margin: 10px auto;
    width: 85%;
    background: #0068B9;
    border-radius: 5px;
    display: table;
}
.pro_a a {
    /*去掉下划线*/
    text-decoration: none;
    display: table-cell;
}