.modal-dialog {
    max-width: 1200px;
    /* 将最大宽度设置为1200px，使其在PC端更大 */
    margin: auto;
    /* 上下左右外边距自动调整以居中 */
    display: flex;
    align-items: center;
    /* 垂直居中 */
    justify-content: center;
    /* 水平居中 */
    min-height: 100vh;
    /* 确保模态框占满整个视口高度 */
}

.modal-body {
    padding: 0;
}

.modal-content .close {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 1051;
    color: #fff;
    /* 将按钮颜色设置为白色 */
    opacity: 1;
    /* 确保按钮完全不透明 */
    font-weight: 300;
    /* 设置字体粗细为300，使其更细 */
}