<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "utf-8";
/*
** 功能名称：响应式界面布局
** 修改时间：2017年12月19日15:29:21
*/

/* 新闻列表16 */

.container{
    width: 930px;
}
.container&gt;ul{
    overflow: hidden;
}
.container&gt;ul&gt;li{
    width: 294px;
    float: left;
    margin-right: 24px;
    margin-bottom: 24px;
}
.container&gt;ul&gt;li:nth-child(3n+3){
    margin-right: 0;
}
.container&gt;ul&gt;li .img{
    height: 169px;
    border: 1px solid #ededef;
    border-bottom: none;
    overflow: hidden;
}
.container&gt;ul&gt;li .img&gt;div{
    height: 169px;
    background-image: url(../images/cp_1.png);
    background-color: #ededef;
    background-position: center center;
    background-size: cover;
}
.container&gt;ul&gt;li:hover .img&gt;div{
    animation: scaleToFade 1s;
}
@keyframes scaleToFade {
    0%{
        transform: scale(1);
    }
    50%{
        transform: scale(1.2);
    }
    100%{
        transform: scale(1);
    }
}
.container&gt;ul&gt;li .title{
    height: 36px;
    line-height: 36px;
    text-align: center;
    background-color: #003580;
    color: #fff;
    font-size: 14px;
    padding:0 10px;
}
.container&gt;ul&gt;li .title&gt;div{
    overflow:hidden;
    text-overflow:ellipsis;
    white-space:nowrap
}
.container&gt;ul&gt;li:hover .title&gt;div{
    background: rgba(0,0,0,0.3);
}
/* end */

</pre></body></html>