  .splash-notice-container {
    bottom: 0;
    right: 0;
    position: fixed;
    display: block;
    height: 100vh;
    width: 100vw;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 1000;
    box-sizing: border-box;
    -webkit-transition: background-color .3s;
    transition: background-color .3s;
}
.splash-notice-container .splash-notice {
    display: block;
    height: auto;
    max-height: 80vh;
    overflow: visible;
    width: 95vw;
    max-width: 980px;
    box-sizing: border-box;
    -webkit-border-radius: .5rem;
    border-radius: .5rem;
    padding: 5vw;
    background-color: #fff;
    margin: 0;
    position: fixed;
    bottom: 50%;
    right: 50%;
    -webkit-transform: translateY(50%) translateX(50%);
    transform: translateY(50%) translateX(50%);
    transition: all .3s;
}
.splash-notice-container.splash-minimized {
    z-index: 0;
    background-color: rgba(0, 0, 0, 0);
    height: 0;
}
.splash-notice-container.splash-minimized .splash-notice {
    width: 0;
    height: 0;
    bottom: 0;
    right: 0;
    padding: 0;
    /*transform: translateY(0) translateX(0);*/
    z-index: 1000;
}
.splash-notice-inner {
    display: block;
    position: relative;
    overflow-x: hidden;
    overflow-y: scroll;
    max-height: calc( 80vh - 10rem );
    transition: all .3s;
}
.splash-notice-container.splash-minimized .splash-notice-inner {
    height: 0;
    width:0;
}
i.toggle-splash-notice {
    height: 2rem;
    width: 2rem;
    display: block;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    border: 3px solid transparent;
    color: #000;
    background-color: #fff;
    cursor: pointer;
    text-align: center;
    box-sizing: border-box;
    position: absolute;
    top: -2vw;
    right: -2vw;
    left: auto;
    font-size: 1.5rem;
    font-style: normal;
    font-weight: 700;
    font-family: sans-serif;
    line-height: 1;
}
i.toggle-splash-notice:before {
    content: '\00D7';
}
.splash-notice-container.splash-minimized i.toggle-splash-notice {
    top: -2.5rem;
    left: -2.5rem;
    right: auto;
    line-height: 1.25;
    background-color: #fff;
    color: #000;
    border-color: #000;
}
.splash-notice-container.splash-minimized i.toggle-splash-notice:before {
    content: '!';
}