.notice {
    width: 600px;/*单行显示，超出隐藏*/
    height: 35px;/*固定公告栏显示区域的高度*/
    padding: 2px;
    font-size:14px;
    overflow: hidden;
}
.notice ul li {
    list-style: none;
    line-height: 35px;
    /*以下为了单行显示，超出隐藏*/
    display: block;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}