/* 隐藏公告栏防止闪烁 */
.haoye-ab-hide {
    display: none !important;
}
/* haoye-announcement-bar.css — 中国风 */
.haoye-ab-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 20px;
    background-color: var(--haoye-ab-bg, #faf3e6);
    color: var(--haoye-ab-color, #6b5e4f);
    font-size: 15px;
    line-height: 1.6;
    text-align: center;
    border-bottom: 1px solid #d4c5b2;
    position: relative;
    z-index: 100;
    font-family: 'Noto Serif SC', 'SimSun', '宋体', serif;
}
.haoye-ab-bar a {
    color: inherit;
    text-decoration: underline;
    text-underline-offset: 3px;
}
.haoye-ab-bar a:hover {
    opacity: 0.8;
}
.haoye-ab-close {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    font-size: 20px;
    line-height: 1;
    cursor: pointer;
    color: inherit;
    opacity: 0.5;
    padding: 4px 8px;
    transition: opacity 0.2s;
}
.haoye-ab-close:hover {
    opacity: 0.8;
}
