/* 隐藏遮罩层和模态框初始状态 */
.modal-backdrop {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999;
}

.inner .modal {
    display: none;
    position: absolute;
    top: 50%;
    left: 40%;
    transform: translate(-20%, -10%);
    background-color: white;
    padding: 20px;
    border-radius: 4px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    /* width: 80%; */
    width: 400px;
    height: 200px;
    max-width: 1500px;
}

/* 点击按钮打开模态框 */
.open-modal-btn {
    cursor: pointer;
}

.modal p {
    color: black;
}

a {
    text-decoration: none;
    }