.dl-mask {
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  position: fixed;
  display: flex;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}

.dl-modal {
  position: relative;
  width: 620px;
  background: white;
}

.dl-modal-header,
.dl-modal-content,
.dl-modal-footer {
  padding: 10px;
}

.dl-modal-header {
  display: flex;
  justify-content: space-between;
  padding: 30px 40px 10px 40px;
}

.dl-modal-title {
  font-size: 18px;
  font-weight: bold;
  line-height: 25px;
}

.dl-modal-close {
  background: url("./dlmodal-x.svg");
  width: 16px;
  height: 16px;
  cursor: pointer;
  position: absolute;
  top: 10px;
  right: 10px;
}

.dl-modal-content {
  padding: 5px 40px;
}

.dl-modal-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 16px;
}

.dl-modal-footer-btn {
  outline: none;
  border: none;
  padding: 12px 112px;
  background: #ee5b22;
  color: white;
}

.dl-modal-footer-btn:focus {
  outline: none;
}

.dl-modal-footer-btn:hover {
  background: #fa824b;
}
.dl-modal-footer-btn:active {
  background: #c73f12;
}
/* 设置滚动条的样式 */
.dl-modal ::-webkit-scrollbar {
    width: 5px;
}

/* 滚动槽 */
.dl-modal ::-webkit-scrollbar-track {
    border-radius: 10px;
}

/* 滚动条滑块 */
.dl-modal ::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background: rgba(0, 0, 0, 0.3);
}