#popup-wrapper {
    position: fixed;
    bottom: 0;
    box-sizing: border-box;
    left: 0;
    z-index: 1000;
    padding-top: 15px;
    padding-bottom: 15px;
    width: 100%;
    height: 79px;
    background-color: #00A0E9;
    box-shadow: 0 0 12px 0 rgba(0, 0, 0, 0.1);
    -webkit-transition: .3s;
    -moz-transition: .3s;
    -ms-transition: .3s;
    transition: .3s;
}

#popup-wrapper.scroll-hide {
    bottom: -100px;
}

#popup-content {
    position: relative;
    z-index: 1;
    margin-left: auto;
    margin-right: auto;
    width: 970px;
    color: #00A0E9;
}

#popup-text-content {
    float: left;
    margin-top: 18px;
    margin-left: 18px;
    line-height: 1;
    font-size: 16px;
    color: #FFFFFF;
}

#popup-link {
    float: right;
    font-family: 'PingFangSC-Light';
    font-size: 16px;
    margin-top: 4px;
    margin-right: 30px;
    padding-left: 24px;
    padding-right: 24px;
    height: 38px;
    color: #FFFFFF;
    text-decoration: none;
    text-align: center;
    line-height: 38px;
    border-radius: 19px;
    border: 1px solid #FFFFFF;
}

#close-popup {
    position: absolute;
    top: 32px;
    right: 100px;
    width: 16px;
    height: 16px;
    cursor: pointer;
    background: url(https://www.agora.io/img/popup/popup-close.svg);
}

@media (max-width: 1024px) {
    #popup-wrapper {
        display: none;
    }
}

@media (max-width: 1200px) {
    #close-popup {
        display: none;
    }
}
