#kami{
    font-size: 14px;
    padding: 8px;
    font-weight: bold;
    text-align: center;
    margin-top: 20px;
    margin-bottom: 20px;
    border-radius: 10px;
    width: 155px;
}
#drop_zone {
    /* width: 200px; */
    height: 200px;
    /* border: 2px dashed #ccc; */
    text-align: center;
    /* line-height: 200px; */
    font-size: 16px;
    
}
/* 提示框css */
.custom-alert {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 15px;
    background-color: #5d85e8;
    color: #fff;
    border-radius: 5px;
    width: 300px;
    text-align: center;
    z-index: 9999;
    cursor: pointer;
}

.modal .modal-content {
    position: fixed;
    width: 376px;
    text-align: center;
    overflow: hidden;
    border: none;
    -webkit-border-radius: 3px;
    border-radius: 3px;
    background-color: #fff;
    -webkit-box-shadow: 0 0 10px 3px rgba(0, 0, 0, .2);
    box-shadow: 0 0 10px 3px rgba(0, 0, 0, .2);
    top: 40%;
    left: 40%;
    z-index: 9999;
}

.modal .modal-body {
    position: relative;
    padding: 15px;
    min-height: 194px;
    text-align: center;
    font-size: 14px;
    color: #000;
}

.modal .modal-footer .btn {
    display: inline-block;
    margin: 0;
    padding: 0;
    width: 100%;
    height: 62px;
    line-height: 62px;
    letter-spacing: 2px;
    font-size: 18px;
    border-radius: 0;
    display: inline;
    zoom: 1;
}
.btn-primary {
    color: #fff;
    border-color: #5d85e8;
    background-color: #5d85e8;
}
.modal .modal-body .u-title {
    margin-bottom: 15px;
    font-weight: 700;
    font-size: 18px;
}
.btn-primary:hover, .btn-submit:active {
    background-color: #6893ff;
    cursor: pointer;
}
#alertFram > div > div > div.modal-body > div > p{
    margin-top: 10px;
    font-size: 16px;
    color: #000;
    /* 设置字体间距 */
    letter-spacing: 1px;
}



/* 输入框 */
.input-container {
    position: relative;
    margin: 0 auto;
    /* 设置为一行 */
    /* display: inline-block; */
}

input {
    width: 140px;
    padding: 10px;
    border: 2px solid #5d85e8;
    border-radius: 5px;
    outline: none;
    font-size: 16px;
    height: 41px;
}

input:focus {
    border-color: #6893ff;
}

label {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #7f8c8d;
    transition: 0.3s;
    pointer-events: none; /* 禁用标签的点击事件 */
    white-space: nowrap; /* 防止文本换行 */
    overflow: hidden; /* 隐藏溢出部分 */
    text-overflow: ellipsis; /* 显示省略号 */
}

input:focus + label, input:valid + label {
    top: -15px;
    font-size: 12px;
    color: #5d85e8;
}

button {
    padding: 10px 20px;
    background-color: #5d85e8;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    height: 41px;
    /* margin-top: 10px; */
}

button:hover {
    background-color: #6893ff;
}


/*  */
.delBtn{
    color: red;
}

.disabled{
    color: #7f8c8d;
    cursor: not-allowed;
}

th{
    text-align: center;
}

.flex-container {
    display: flex;
    align-items: center;
}