/* 模态框背景样式 */
.modal1 {
    display: none; /* 初始状态下不显示 */
    position: fixed;
    z-index: 9999; /* 确保模态框在最上层 */
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* 半透明背景 */
}

/* 模态框内容区域 */
.modal-content1 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: white;
    padding: 20px;
    border-radius: 5px;
    width: 420px;
    text-align: center;
}

/* 关闭按钮样式 */
.close-btn1 {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 22px;
    cursor: pointer;
    opacity: 0.8;
}

/* 按钮容器 */
.modal-buttons1 {
    /* margin-top: 20px; */
    text-align: right;
}

/* 按钮样式 */
.modal-buttons1 button {
    margin: 5px;
    padding: 8px 16px;  /* 调整按钮的内边距 */
    font-size: 14px;     /* 设置字体大小 */
    cursor: pointer;
    border: 1px solid transparent;
    border-radius: 4px;
    transition: background-color 0.3s ease, transform 0.2s;
}

/* 按钮颜色 */
.modal-buttons1 button#confirmBtn {
    display: inline-block;
    line-height: 1;
    white-space: nowrap;
    cursor: pointer;
    -webkit-appearance: none;
    text-align: center;
    box-sizing: border-box;
    outline: none;
    margin: 0;
    transition: .1s;
    font-weight: 500;

    background-color: #409eff;
    border-color: #409eff;
    color: #fff;
}

.modal-buttons1 button#cancelBtn {
    color: #fff;
   
    background: #fff;
    border: 1px solid #dcdfe6;
    color: #606266;
    line-height: 1;
}

/* 按钮悬停效果 */
.modal-buttons1 button:hover {
    opacity: 0.9; /* 按钮悬停时变暗 */
}

/* 按钮按下效果 */
.modal-buttons1 button:active {
    transform: scale(0.98); /* 按钮按下时稍微缩小 */
}
.moadl_title1{
    text-align: left;
    font-size: 18px;
    font-weight: 600;
}
.modal_content1{
    font-size: 16px;
    text-align: left;
}