.popupMask {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 10000;
  display: none;
}
.downloadPopup {
  background-color: #fff;
  position: fixed;
  left: 50%;
  top: 40%;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
  z-index: 10001;
  border-radius: 4px;
  display: none;
}
.downloadPopup .title {
  padding: 0 20px;
  line-height: 40px;
  height: 40px;
  display: flex;
  justify-content: space-between;
  background-color: #f8f8f8;
  border-radius: 4px 4px 0 0;
  align-items: center;
}
.downloadPopup .title span {
  font-size: 14px;
}
.downloadPopup .title button {
  width: 25px;
  height: 25px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.downloadPopup .title button:hover {
  background-color: #eee;
}
.downloadPopup .title button svg {
  width: 20px;
  height: 20px;
  fill: #999;
}
.downloadPopup .content {
  padding: 20px;
}
.downloadPopup .content > div {
  margin-bottom: 20px;
  display: flex;
  align-items: center;
}
.downloadPopup .content > div span {
  color: #333;
}
.downloadPopup .content > div input[type='text'],
.downloadPopup .content > div select {
  flex: 1;
  line-height: 30px;
  height: 30px;
  box-sizing: border-box;
  padding: 0 10px;
  border: solid 1px #eee;
  border-radius: 4px;
}
.downloadPopup .content > div a {
  margin-left: 10px;
  color: #F8A22B;
}
.downloadPopup .content > div .radio {
  margin-right: 15px;
  display: flex;
  align-items: center;
}
.downloadPopup .content > div .radio span {
  padding-left: 5px;
}
.downloadPopup .content p {
  color: #999;
}
.downloadPopup .handle {
  width: 100%;
  display: flex;
  justify-content: flex-end;
  padding: 20px;
}
.downloadPopup .handle button {
  width: 80px;
  height: 30px;
  font-size: 14px;
  box-sizing: border-box;
  border-radius: 4px;
  margin-left: 15px;
}
.downloadPopup .handle button:first-child {
  background-color: #FEA406;
  color: #fff;
}
.downloadPopup .handle button:last-child {
  border: solid 1px #ccc;
  color: #333;
}
