#dropArea {
    position: absolute;       /* 使用绝对定位 */
    top: 30%;                 /* 垂直居中 */
    left: 50%;                /* 水平居中 */
    transform: translate(-50%, -50%); /* 将元素移动到正中心 */
    width: 300px;             /* 设置区域的宽度 */
    height: 200px;            /* 设置区域的高度 */
    border: 4px dashed #1285ff;
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    color: #1285ff;
    font-family: Arial, sans-serif;
    margin-top: 20px;
    height: 200px;
    width: 60%;
    z-index: 100;
    background-color: rgba(87, 87, 87, 0.388);
    /* blur-background */
    /* filter: blur(5px); */
}

#dropArea.dragover {
    background-color: #e9f5ff;
}

#fileList {
    margin-top: 20px;
    font-family: Arial, sans-serif;
}

.blur-background {
    filter: blur(5px);
}

#overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(46, 46, 46, 0.5);
    z-index: 99;
}