.popup {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.4);
}

.popup-content {
    background-color: #fefefe;
    margin: 25% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 40%;
    height: 200px;
    border-radius: 10px;
    font-size: var(--news-title-font-size);
    position: relative;
}

.popup-content p{
    margin-top: 10px;
    font-size: var(--conten-font-size);
}

.h2{
    font-size: var( --hot-news-font-title-size);

}
.bottom{
    position: absolute;
    bottom: 20px;
    right: 20px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    width: 100%;
}

.bottom .goLogin{
    cursor: pointer;
    background-color: var(--main-font-color);
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 200px;
    padding: 7px;
    color: #ffffff;
    font-size: var(--hot-news-font-title-size);
}
.cancle{
    margin-left: 20px;
    background-color: rgba(120, 51, 30, .6) !important;
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}



@media screen and (max-width: 991px) {
    .popup-content {
    background-color: #fefefe;
    margin: 60% 20px;
    padding: 20px;
    border: 1px solid #888;
    width: auto;
    height: 200px;
    border-radius: 10px;}
    .bottom .goLogin{
        width: calc((100% - 58px) / 2);
    }
}
