.noticeBoard {
    border-bottom: 1px solid #E8E8E8;
}
.noticeBoard .notice_container {
    position: relative;
    height: 103px;
}
.noticeBoard .notice_icon {
    position: absolute;
    top: 50%;
    left: 0;
    width: 48px;
    height: 48px;
    transform: translateY(-50%);
}
.noticeBoard .notice_icon svg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.noticeBoard .notice_icon::after {
    position: absolute;
    content: "";
    top: 50%;
    right: -25px;
    width: 1px;
    height: 44px;
    background: #CE0E2D;
    transform: translateY(-50%);
}
.noticeBoard .notice_right {
    display: flex;
    height: 100%;
    margin-left: 97px;
    align-items: center;
    justify-content: flex-start;
}
.noticeBoard .notice_swiper_container {
    flex-grow: 1;
    height: 100%;
    margin-right: 64px;
    overflow: hidden;
    align-self: flex-start;
}
.noticeBoard .notice_swiper_container .swiper-slide {
    padding: 28px 0;
}
.noticeBoard .theme {
    display: flex;
    align-items: center;
    font-size: 16px;
    height: 24px;
    line-height: 24px;
}
.noticeBoard .theme a {
    color: #333333;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    vertical-align: middle;
    font-weight: 500;
}
.noticeBoard .tag {
    width: 48px;
    height: 16px;
    font-size: 12px;
    color: #CE0E2D;
    margin-left: 8px;
    line-height: 16px;
    border-radius: 8px;
    text-align: center;
    flex-shrink: 0;
    background: rgba(206, 14, 45, .1);
}
.noticeBoard .time {
    font-size: 12px;
    color: #333333;
    height: 16px;
    line-height: 16px;
    margin-top: 8px;
}
.noticeBoard .next {
    display: inline-flex;
    align-items: center;
}
.noticeBoard .next_text {
    font-size: 14px;
    color: #333333;
    line-height: 24px;
    margin-right: 8px;
    white-space: nowrap;
    font-weight: 500;
}
@media only screen and (max-width: 720px) {
    .noticeBoard .notice_container {
        height: 79px;
    }

    .noticeBoard .notice_swiper_container {
        margin-right: 24px;
    }

    .noticeBoard .notice_swiper_container .swiper-slide {
        padding: 14px 0;
    }
    
    .noticeBoard .notice_icon,
    .noticeBoard .next_text {
        display: none;
    }

    .noticeBoard .notice_right {
        margin-left: 0;
    }
}