$section_margin_top: 81px;
$header_height: 36px;
.container {
  height: calc(100% - #{$section_margin_top});
  width: 100%;
  display: block;
  position: absolute;
  top: $section_margin_top;
  left: 0;
  z-index: 10;
}

.mask {
  position: absolute;
  background-color: rgba(0, 0, 0, 0.15);
  z-index: 10;
}

.modal {
  width: calc(100% - 40px);
  height: calc(100% - 44px);
  margin: 24px 20px 20px;
  max-height: none;
  display: block;
  background-color: #ffffff;
  box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.2);
  border-radius: 0;
  z-index: 10;
  position: absolute;
  .content {
    padding: 0;
    height: calc(100% - #{$header_height});
  }
  .title {
    color: #2f2f2f;
    font-size: 13px;
    font-weight: bold;
    height: $header_height;
    background-color: #f9f9f9;
    padding: 0 0 0 10px;
    margin: 0;
    line-height: $header_height;
  }
}

.closeBtn {
  position: absolute;
  right: 9px;
  top: 7px;
  cursor: pointer;
}
