.home-notice {
    position: relative;
    display: block;
    width: calc(100% - 24px);
    margin: 12px auto 16px;
    padding: 16px 18px 18px;
    overflow: hidden;
    border: 1px solid #f2d6df !important;
    border-radius: 14px !important;
    background: linear-gradient(135deg, #fff8fa 0%, #ffffff 58%, #fff4f6 100%) !important;
    box-shadow: 0 8px 22px rgba(170, 65, 96, .12) !important;
    box-sizing: border-box;
}
.home-notice::before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #ff3158, #d10f32, #ff8da3);
    content: '';
}
.home-notice-title {
    position: relative;
    display: flex;
    align-items: center;
    margin: 0 0 13px;
    color: #7e2542;
    font-size: 17px;
    line-height: 24px;
    font-weight: bold;
}
.home-notice-title::before {
    display: inline-block;
    width: 24px;
    height: 24px;
    margin-right: 8px;
    border-radius: 8px;
    background: #ffe0e7;
    color: #d10f32;
    content: '!';
    font-size: 16px;
    line-height: 24px;
    text-align: center;
}
.home-notice-window {
    position: relative;
    height: 128px;
    overflow: hidden;
    border-radius: 9px;
    background: rgba(255, 255, 255, .72);
}
.home-notice-track {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 10px 14px 0;
    box-sizing: border-box;
    animation: homeNoticeScroll 30s linear infinite;
}
.home-notice-item {
    display: block;
    margin: 0 0 10px;
    padding: 7px 10px;
    border: 1px solid #f6e2e7;
    border-radius: 8px;
    background: rgba(255, 255, 255, .88);
    color: #55434a;
    font-size: 14px;
    line-height: 22px;
    text-align: left;
    overflow-wrap: anywhere;
    word-break: break-word;
    box-sizing: border-box;
}
.home-notice-item a {
    color: #b12d52;
    font-weight: bold;
    text-decoration: none;
}
.home-notice-item a:active {
    color: #d10f32;
}
@keyframes homeNoticeScroll {
    from { transform: translateY(0); }
    to { transform: translateY(-50%); }
}
@media (min-width: 768px) {
    .home-notice {
        width: 100%;
        margin: 18px auto 22px;
        padding: 16px 24px;
        border-radius: 0 !important;
        background: #fffafb !important;
        box-shadow: none !important;
    }
    .home-notice::before {
        width: 4px;
        height: 100%;
        background: #fd113a;
    }
    .home-notice-title {
        margin-bottom: 8px;
        padding-left: 0;
        color: #9b294b;
        font-size: 18px;
    }
    .home-notice-title::before {
        display: none;
    }
    .home-notice-window {
        height: 34px;
        border-radius: 0;
        background: transparent;
    }
    .home-notice-track {
        padding: 0;
        animation-duration: 28s;
    }
    .home-notice-item {
        margin-bottom: 8px;
        padding: 0;
        border: 0;
        border-radius: 0;
        background: transparent;
        color: #55434a;
        font-size: 15px;
        line-height: 26px;
        text-align: left;
    }
    .home-notice-item a {
        color: #d10f32;
    }
}
@media (prefers-reduced-motion: reduce) {
    .home-notice-track { animation: none; }
}
