.BreakingNewsController {
    width: 100%;
    overflow: hidden;
    background: #FFF;
    height: auto;
    position: relative;
    margin-bottom: 45px;
    border-radius: 5px;
    box-shadow:0 2px 6px rgba(0,0,0,0.19);
}

.BreakingNewsController .bn-title {
    display: inline-block;
    float: left;
    padding: 4px 16px;
    background: var(--sub-color);
}
.BreakingNewsController .bn-title i{
    font-size: 24px;
      color: #fff;
      text-shadow:
        0 0 5px #0ff,    /* 小半径蓝色光 */
        0 0 10px #0ff,   /* 中半径蓝色光 */
        0 0 20px #0ff,   /* 大半径蓝色光 */
        0 0 40px #0ff;   /* 超大半径蓝色光 */
      animation: neon-blink 2s ease-in-out infinite;
}
@keyframes neon-blink {
    0%, 100% {
    opacity: 1;
    text-shadow: 0 0 5px #0ff, 0 0 10px #0ff, 0 0 20px #0ff, 0 0 40px #0ff; 
    }
    50% {
    opacity: 0.1;
    text-shadow: none;
    }
}
.BreakingNewsController ul {
    padding: 0;
    margin: 0;
    display: block;
    list-style: none;
    position: absolute;
    left: 180px;
    right: 50px;
}

.BreakingNewsController ul li {
    list-style: none;
    padding: 10px 20px;
    display: none;
     overflow:hidden;
    white-space:nowrap; 
    text-overflow:ellipsis;
}

.BreakingNewsController ul li a {
    text-decoration: none;
    color: var(--p-color);
    display: inline-block;
    overflow: hidden;
    padding: 0;
    font-size: 16px;
}
.BreakingNewsController ul li a:hover{
    color: var(--theme-color);
}

.BreakingNewsController .bn-arrows {
    display: inline-block;
    float: right;
    width: 50px;
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
}

.BreakingNewsController .bn-arrows span {
    display: block;
    width: 20px;
    position: absolute;
    top: 0;
    bottom: 0;
    cursor: pointer;
    opacity: 0.2;
}

.BreakingNewsController .bn-arrows span:hover {
    opacity: 1;
}

.BreakingNewsController .bn-arrows-left {
    left: 0;
    background: url(../images/bn-arrows.png) left center no-repeat;
}

.BreakingNewsController .bn-arrows-right {
    right: 10px;
    background: url(../images/bn-arrows.png) right center no-repeat;
}

.BreakingNewsController.easing a,
.BreakingNewsController.easing span {
    transition: .25s linear;
    -moz-transition: .25s linear;
    -webkit-transition: .25s linear;
}