﻿/* 遮罩层样式 */
#overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    backdrop-filter: blur(2px);
}

/* 弹出层样式 */
.popup {
    background-color: #333;
    border-radius: 5px;
    color:#fff;
}


.popCloseBtn {
    position: absolute;
    top: 3px;
    right: 3px;
    font-size: x-large;
    background:#333;
    color:#fff;

}
.btn_one_day {
    position: absolute;
    top: 3px;
    left: 3px;
    font-size: x-large;
    background: #333;
    color: #fff;
}

.popup a {
    display: block;
    /*margin:auto;*/
    margin-top: 15px;
}




.popupContent {
    margin-top: 40px;
}