.bulletins-parent{
    display: flex;
    background: white;
    margin-left: 12px;
}

.bulletins-parent .bulletins-container{
    background: #FEF2E5;
    display: flex;
    flex-direction: row;
    height: 36px;
    border-radius: 4px;
    align-items: center;
    margin: 12px 15px 2px;
    width: calc(100% - 30px);
}

.bulletins-parent .bulletins-container .image-container{
    height: 36px;
    align-items: center;
    display: flex;
    margin: 0;
}

.bulletins-parent .bulletins-container .center-container{
    width: calc(100% - 80px);
    height: 100%;
}


.bulletins-parent .bulletins-container .image-container .notification-img {
    margin-left: 16px;
    margin-right: 10px;
}

.bulletins-parent .bulletins-container .image-container .close-img {
    margin-left: 10px;
    margin-right: 16px;
}


/**
* 跑马灯公告
*/
.bulletins-parent .marquee-container {
    width: 100%;
    height: 100%;
    overflow: hidden;
    white-space: nowrap;
    box-sizing: border-box;
    position: relative;
    display: flex;
    align-items: center;
}

.bulletins-parent .marquee-content {
    display: inline-block;
    position: relative;
    font-size: 14px;
    color: #FF8A00;
    left: 100%;
    cursor: pointer;
}

/**
* 轮播公告
*/
.carousel-parent{
    margin: 0;
    height: 100%;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.carousel-parent .announcement-container {
    width: 100%;
    height: 36px;
    line-height: 36px;
    overflow: hidden;
    position: relative;
    border: 1px solid #eee;
    padding: 0 10px;
}

.carousel-parent .announcement-list {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
}

.carousel-parent .announcement-item {
    width: 100%;
    height: 36px;
    line-height: 36px;
    font-size: 14px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    color: #FF8A00;
}

.carousel-parent .announcement-tooltip {
    display: none;
    position: absolute;
    padding: 8px 12px;
    background: #333;
    color: #fff;
    border-radius: 4px;
    z-index: 100;
    word-break: break-all;
    white-space: normal;
}

.frameshape .textscrollbox {
    background: #FEF2E5 !important;
}