﻿.independent-dialog {
  position: fixed;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  z-index: 2000;
  text-align: left;
  display: none;
}

.independent-dialog .dialog-content {
  position: fixed;
  top: 50%;
  left: 50%;
  width: 28.8rem;
  height: 480px;
  margin-left: -14.4rem;
  margin-top: -240px;
  background: #fff;
  box-shadow: 0px 2px 6px 0px rgba(0, 0, 0, 0.2);
  border-radius: 2px;
}

.independent-dialog .dialog-content .dialog-header {
  box-sizing: border-box;
  height: 48px;
  padding: 16px 0.8rem;
  font-size: 16px;
  line-height: 16px;
  color: #000;
  border-bottom: 1px solid #ddd;
}

.independent-dialog .dialog-content .dialog-header .close-btn {
  float: right;
  cursor: pointer;
}

.independent-dialog .dialog-content .dialog-body {
  padding: 0.96rem 0.8rem;
  color: #666;
  font-size: 12px;
  line-height: 16px;
}

.independent-dialog .dialog-content .dialog-body .title {
  color: #333;
  font-size: 14px;
}

.independent-dialog .dialog-content .dialog-body .title:not(:first-of-type) {
  margin-top: 1.28rem;
}