.notice {
    position: fixed;
    bottom: 0;
    z-index: 999;
    right: 10px;
    border: 1px solid #f5f5f5;
    border-radius: 5px;
    background: #43413d;
    width: 300px;
    height: 180px;
    padding: 20px 15px 0;
}

.notice .close-icon {
    position: absolute;
    top: 0;
    right: 5px;
    color: #fff;
    z-index: 999;
    cursor: pointer;
    font-size: 20px;
}

.notice-con {
    display: flex;
    flex-direction: column;
    justify-items: center;
}

.notice-con>img {
    width: auto;
    max-height: 120px;
    border-radius: 5px;
}

.notice-con>p {
    margin-top: 10px;
    color: #fff;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}