/* reset */
* { margin:0; padding:0; }
body { font:12px/1.5 "Microsoft YaHei",Arial; background:#f0f0f0; }

/* 主窗口 300*150 */
.news-container {
    width:400px;
    height:150px;
    border:1px solid #0052D9;
    background:#fff;
    position:relative;
    overflow:hidden;
}

/* 头部 */
.news-header {
    height:26px;
    line-height:26px;
    background:#0052D9;
    color:#fff;
    text-align:center;
    font-weight:bold;
}

/* 滚动区 */
.news-scroll {
    height:124px;   /* 150-26 */
    position:relative;
    overflow:hidden;
}
.news-list {
    position:absolute;
    top:0;
    left:0;
    width:100%;
}

/* 单行 */
.news-item {
    height:25px;
    line-height:25px;
    padding-left:15px;
    white-space:nowrap;
    overflow:hidden;
    text-overflow:ellipsis;
    color:#333;
    cursor:pointer;
}
.news-item:hover { background:#e9f4ff; }
.news-item .dot {
    color:#ff6600;
    margin-right:6px;
}
.news-item .time {
    float:right;
    padding-right:10px;
    color:#999;
}