/* General reset */
body {
    margin: 0;
    font-family: Arial, sans-serif;
}

.popup-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* 半透明灰色 */
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1080;
}


.popup-wrapper {
    background-color: #fff;
    border-radius: 8px;
    max-width: 400px;
    width: 90%;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    overflow: hidden;
}

.popup-body {
    /*padding: 0px 0px 0px 0px;*/
}

.popup-container {
    text-align: center;
}

.popup-image {
    width: 100%;
    /*height: 150px;*/
    background-color: #eee;
    margin-bottom: 16px;
}

/*.popup-image-restricted {*/
/*    background: url('restricted-image-placeholder.png') center/cover no-repeat;*/
/*}*/

.popup-text-frame {
    margin-bottom: 16px;
}

.popup-text-frame h4 {
    font-size: 18px;
    margin-bottom: 8px;
    color: #333;
}

.popup-text {
    font-size: 14px;
    color: #666;
}

.popup-foot {
    padding: 16px;
    border-top: 1px solid #ddd;
}

.popup-tool {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 8px;
    justify-content: center;
}

.popup-tool li {
    margin: 0;
}

.btn_c {
    display: inline-block;
    padding: 10px 16px;
    font-size: 14px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
    text-align: center;
    min-width: 100px;
}

.btn-red {
    background-color: #ff0000;
    color: #fff;
    border: 1px solid #ff0000;
}

.btn-red:hover {
    background-color: #cc0000;
    border-color: #cc0000;
}

.btn-outline-red {
    background-color: #fff;
    color: #ff0000;
    border: 1px solid #ff0000;
}

.btn-outline-red:hover {
    background-color: #ff0000;
    color: #fff;
}

.col-hf{
    display: none;
}