/*置頂快訊*/
.top-message-bar {
    position: relative;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    padding: 10px 15px;
    background-color: #e61514;
    color: #fff;
    text-align: center;
}

.top-message-bar section {
    padding: 0 15px;
    font-size: 16px;
}

.top-message-bar a {
    color: #fff;
}

.top-message-bar a:hover {
    opacity: 0.8;
}

.top-message-bar button {
    position: absolute;
    right: 15px;
    color: #fff;
    font-size: 18px;
    top: calc(50% - 15px);

}

@media (max-width: 992px) {
    .top-message-bar section {
        font-size: 14px;
    }

    .top-message-bar.pc {
        display: none;
    }

}