.modalx-layer {
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.5);
  top: 0;
  left: 0;
}

.modalx-wrapper {
  width: 1280px;
  height: 600px;
  background-color: #fff;
  margin: 130px auto;
  border-radius: 10px;
  box-shadow: 10px -10px 5px rgba(0, 0, 0, 0.25);
}

.modalx-header {
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  line-height: 29px;
  background-color: #b62929;
  color: #eee;
  padding: 5px 15px;
  height: 40px;
  border-bottom: 1px solid #c7c7c7;
}

.modalx-title {
  font-size: 16px;
}

.modalx-close {
  float: right;
  padding-left: 5px;
  padding-right: 5px;
  cursor: pointer;
  font-weight: bold;
}

.modalx-content {
  height: 560px;
}

.modalx-frame-container {
  height: 560px;
}

.modalx-tabs {
  height: 40px;
  list-style: none;
  border-bottom: 1px solid #c7c7c7;
  line-height: 39px;
  padding: 0 15px;
  font-size: 14px;
}

.modalx-tabs > li {
  display: inline-block;
  height: 39px;
  padding-left: 15px;
  padding-right: 15px;
  cursor: pointer;
}

.modalx-tabs > li:hover {
  color: #b62929;
}

.modalx-tabs > li.active {
  border-bottom: 1px solid #b62929;
  color: #b62929;
}

.modalx-frame-container.has-tabs {
  height: 520px;
}