.view-notice {
    position: fixed;
    z-index: 999;
    text-align: center;
    bottom: 52px;
    left: 0;
    right: 0;
    margin: auto
}

.view-notice .view-inner {
    display: inline-block;
    position: relative;
    min-width: 420px;
    max-width: 750px;
    border-radius: 4px;
    background-color: rgba(51, 51, 51, .95);
    box-shadow: 0 8px 16px 0 rgba(0, 0, 0, .5);
    padding: 12px 20px;
    color: #fff;
    text-align: justify;
    font-size: 14px
}

.view-notice .notice-icon {
    position: absolute;
    color: #3cc8b4;
    font-size: 30px;
    left: 20px;
    top: -31px
}

.view-notice .notice-exit {
    display: block;
    position: absolute;
    right: -10px;
    top: -10px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background-color: #333;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, .2);
    border: 1px solid #666;
    font-size: 12px;
    line-height: 22px;
    text-align: center;
    color: #fff;
    letter-spacing: 0;
    cursor: pointer
}

.view-notice .notice-exit:before {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg)
}

.view-notice .notice-exit:after, .view-notice .notice-exit:before {
    content: "";
    position: absolute;
    top: 10px;
    left: 50%;
    width: 14px;
    height: 1px;
    background-color: currentColor;
    margin-left: -7px
}

.view-notice .notice-exit:after {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg)
}

.view-notice .notice-exit:hover {
    color: #3cc8b4
}

@media (max-width: 480px) {
    .view-notice {
        display: none
    }
}
