.fxdj-dialog {
  position: fixed;
  inset: 0;
  z-index: 3000;
  height: 100vh;
  width: 100vw;
}

.fxdj-dialog-mask {
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  opacity: .5;
  background: #000;
  z-index: 2000;
}

.fxdj-dialog-content {
  width: 700px;
  max-height: 500px;
  overflow-y: auto;
  position: relative;
  margin: 26vh auto;
  background: #fff;
  border-radius: 2px;
  box-sizing: border-box;
  box-shadow: 1px 1px 3px 0px rgba(48, 48, 77, 0.07);
  border-radius: 9px;
  padding: 10px;
  z-index: 9999;
}

.content-img {
  width: 14px;
  height: 14px;
  position: absolute;
  right: 16px;
  cursor: pointer;
}

.content-table {
  margin-top: 20px;
  width: 100%;
  table-layout: fixed;
}

.content-table thead, 
.content-table tr,
.content-table tbody tr{
  display: table;
  width: 100%;
  table-layout: fixed;
}

.content-table tbody {
  display: block;
  width: 100%;
  max-height: 300px;
  overflow-y: auto;
}

.content-table th {
  padding: 12px 2em;
  background: #005bac;
  color: #fff;
  position: sticky;
  top: 0;
}

.content-table td {
  text-align: center;
}