.noticeBg {
    width: 100vw;
    height: 100vh;
    position: fixed;
    left: 0;
    top: 0;
    background: rgba(0, 0, 0, .3);
    z-index: 999;
}

.noticeBg .notice {
    width: 1000px;
    height: 600px;
    padding: 40px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    background: #f0f0f0;
    position: relative;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.noticeBg .notice .scrollCtr {
    height: calc(100% - 50px);
    overflow-y: scroll;
}

.noticeBg .notice .noticeTitle {
    height: 40px;
    line-height: 40px;
    font-size: 28px;
    color: #e7374c;
    text-align: center;
    padding-bottom: 40px;
}

.noticeBg .noticeTitle:after,
.noticeBg .noticeTitle:before {
    content: "";
    display: inline-block;
    width: 18px;
    height: 2px;
    background: #c5c5c5;
    vertical-align: top;
    position: relative;
    top: 20px;
}

.noticeBg .noticeTitle:before {
    right: 20px;
}

.noticeBg .noticeTitle:after {
    left: 20px;
}

.noticeBg .noticeContent {
    font-size: 16px;
    color: #1a1a1a;
    line-height: 30px;
}

.noticeBg .noticeContent span {
    color: #e7374c;
}

.noticeBg .flexGroup {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 30px;
}

.noticeBg .notice .remindImg {
    display: block;
    width: 45%;
    cursor: pointer;
}

.noticeBg .notice .comp {
    font-size: 16px;
    color: #999;
    text-align: right;
    position: relative;
    top: -20px;
}

.noticeBg .notice .btnCloseFix {
    width: 200px;
    height: 50px;
    line-height: 50px;
    border-radius: 25px;
    text-align: center;
    font-size: 18px;
    color: #fff;
    background: #19191a;
    cursor: pointer;
    margin: 20px auto 0 auto;
}

.hide{
    display: none !important;
}