.newsbar{
    width:980px;
    height:29px;
    margin:12px auto 18px;
    display:flex;
    align-items:center;
    background:
        linear-gradient(
            to bottom,
            #fcfcfc,
            #f1f1f1
        );
    border:1px solid #d8d8d8;
    border-radius:3px;
    box-shadow:
        inset 0 1px 0 white;
}
.news-label {
    padding: 0 18px;
    font-family:
        "Myriad Pro",
        sans-serif;
    font-size: 13px;
    font-weight: bold;
    color: #444;
    white-space: nowrap;
    text-shadow:
        0 1px 0 #fff;
}
.news-divider {
    width: 1px;
    height: 16px;
    margin: 0 12px;
    background: #c9c9c9;
    box-shadow:
        1px 0 0 #fff;
}
.news-container {
    position: relative;
    flex: 1;
    height: 29px;
    overflow: hidden;
}

.headline {
    position: absolute;
    left: 18px;
    right: 18px;
    top: 0;
    height: 29px;
    line-height: 29px;
    font-family:
        "Lucida Grande",
        Helvetica,
        Arial,
        sans-serif;
    font-size: 13px;
    font-weight: normal;
    color: #666;
    text-decoration: none;
    text-shadow:
        0 1px 0 #fff;
    display: flex;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition:
        opacity .6s ease,
        transform .6s ease;
    transform: translateY(5px);
}
.headline.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.headline:hover{
    color:#0070C9;
}