/* 首页主区域 */
.index-page-main {
    background-color: #fff;
}

/* 公告栏 */
.notice-bar {
    display: flex;
    align-items: center;
    gap: 8px;
    height: 30px;
    padding: 0 12px;
    margin-bottom: 12px;
    background-color: #fff8f0;
    border: 1px solid #ffe0b2;
    border-radius: 6px;
    font-size: 13px;
    color: #666;
    overflow: hidden;
}

.notice-icon {
    flex-shrink: 0;
}

.notice-scroll {
    flex: 1;
    overflow: hidden;
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
}

.notice-text {
    white-space: nowrap;
    display: inline-block;
    animation: noticeScroll 15s linear infinite;
    padding-left: 100%;
}

@keyframes noticeScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}
