/* 首页公告横幅 */
.vape-announcement-bar {
    width: 100%;
    height: 42px;
    background: #0D0D0D;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 24px;
    text-align: center;
    position: relative;
    z-index: 1000;
}

.vape-announcement-link,
.vape-announcement-text {
    font-family: var(--vape-font-brand);
    font-weight: 700;
    font-size: 14px;
    line-height: 22px;
    letter-spacing: 0;
    color: #2EF0D6;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    max-width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.vape-announcement-bar .vape-announcement-link,
.vape-announcement-bar .vape-announcement-link:hover,
.vape-announcement-bar .vape-announcement-link:focus,
.vape-announcement-bar .vape-announcement-link:visited,
.vape-announcement-bar .vape-announcement-link:active {
    color: #2EF0D6;
    text-decoration: none;
    background: transparent;
    opacity: 1;
}

@media (max-width: 768px) {
    .vape-announcement-bar {
        height: 34px;
        padding: 0 14px;
        font-size: 12px;
    }
}