/* 弹窗 */
.dlmodal {
    display: none; /* 默认隐藏 */
    position: fixed;
    z-index: 2147483646;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgb(0,0,0);
    background-color: rgba(0,0,0,0.4);
    -webkit-animation-name: fadeIn;
    -webkit-animation-duration: 0.4s;
    animation-name: fadeIn;
    animation-duration: 0.4s;
}

/* 弹窗内容 */
.dlmodal-content {
    position: fixed;
    bottom: 0;
    background-color: #fefefe;
    width: 100%;
    -webkit-animation-name: slideIn;
    -webkit-animation-duration: 0.4s;
    animation-name: slideIn;
    animation-duration: 0.4s;
    height:50%;
    min-height: 200px!important;
    border-radius: 30px 30px 0 0 ;
    z-index: 21474801;
}

/* 关闭按钮 */
.dlclose {
    color: white;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.dlclose:hover,
.dlclose:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
}

.dlmodal-header {
    height: 25%;
    min-height: 50px!important;
    background-color:#4f9bff;
    color: black;
    border-radius:30px 30px 0 0 ;
    display: flex;
}

.dlmodal-header h2{
    padding: 0;
    margin: 0;
    align-self: center;
    width: 90%;
}
.dlmodal-header span{
    width: 10%;
    align-self: center;
}

.dlmodal-body{
    width: 100%;
    height:75%;
    min-height: 150px!important;
display: flex;
}


.body-download{
    width: 75%;
    height: 70%;
    min-height: 140px!important;
    border: #4f9bff solid 2px;
    border-radius: 30px;
    margin: auto ;
    align-self: center;
    /*display: flex;*/
}
.filename{
    align-self: center;
    width: 80%;
}
.download-btn{
    align-self: center;
    width: fit-content;
}
/* 添加动画 */
@-webkit-keyframes slideIn {
    from {bottom: -300px; opacity: 0}
    to {bottom: 0; opacity: 1}
}

@keyframes slideIn {
    from {bottom: -300px; opacity: 0}
    to {bottom: 0; opacity: 1}
}

@-webkit-keyframes fadeIn {
    from {opacity: 0}
    to {opacity: 1}
}

@keyframes fadeIn {
    from {opacity: 0}
    to {opacity: 1}
}