@charset "utf-8";
/* CSS Document */


 .pop{ position: fixed; top: 0; left: 0; width: 100%; height: 100vh; background: rgba(0,0,0,.5); z-index: 999;display: none;}
        .pop-content{ position: fixed; top: 50%; left: 50%; transform: translate(-50%,-50%); background: #fff; padding: 20px; border-radius: 10px; box-shadow: 0 0 10px rgba(0,0,0,.5); text-align: center;}
        .pop-title{ font-size: 22px; color: #333; margin-bottom: 20px;}
        .pop-text {
            margin-bottom: 20px;
            font-size: 18px;
            text-wrap: nowrap;
        }
        .pop-btn {
            max-width: 250px;
            background-color: #07c160;
            color: #ffffff;
            text-align: center;
            padding: 5px;
            border-radius: 36px;
            font-size: 16px;
            cursor: pointer;
            margin-top: 10px;
        }
        .pop-btn a{
            color: #fff;
        }
        .pop-close{
            position: absolute;
            top: 10px;
            right: 10px;
            cursor: pointer;
            width: 25px;
            height: 25px;
        }
        .pop-close img{
            width: 100%;
            height: 100%;
            object-fit: contain;
        }