.mask {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 1000;
}

.dialog {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 715px;
  height: 676px;
  background-color: #fff;
  border-radius: 8px;
  -webkit-box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
          box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  z-index: 1001;
  padding: 20px 0 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  overflow-y: auto;
}
.dialog .title {
  font-weight: bold;
  font-size: 14px;
  color: #333333;
  line-height: 16px;
  margin: 0 0;
}
.dialog .title.global-title {
  padding-left: 15px;
}
.dialog .form-label {
  width: 62px;
  text-align: right;
  font-size: 14px;
  color: #333333;
  line-height: 30px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-right: 11px;
  position: relative;
}
.dialog .form-label::after {
  content: "*";
  color: #ff3d3d;
  position: absolute;
  top: 1px;
  left: -1px;
}
.dialog .dialog-content-wrapper {
  margin-top: 20px;
  height: 620px;
  overflow-y: auto;
  padding: 0 15px 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.dialog .dialog-content-wrapper::-webkit-scrollbar {
  width: 5px;
}
.dialog .dialog-content-wrapper::-webkit-scrollbar-thumb {
  background: #dddddd;
  border-radius: 3px 3px 3px 3px;
  width: 5px;
}
.dialog .dialog-content-wrapper::-webkit-scrollbar-track {
  background-color: #fff;
  position: absolute;
}
.dialog .content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.dialog .content .form-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}
.dialog .content .form-item:nth-of-type(1), .dialog .content .form-item:nth-of-type(2) {
  margin-bottom: 20px;
}
.dialog .content .form-item:nth-of-type(1), .dialog .content .form-item:nth-of-type(3) {
  width: 353px;
  margin-right: 20px;
}
.dialog .content .form-item:nth-of-type(2), .dialog .content .form-item:nth-of-type(4) {
  width: 292px;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
.dialog .content .form-item:nth-of-type(2) input, .dialog .content .form-item:nth-of-type(4) input {
  width: 219px;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
.dialog .content .form-item:nth-of-type(2) .form-label::after {
  left: 12px;
}
.dialog .content .form-item .code-btn {
  width: 88px;
  height: 28px;
  line-height: 28px;
  text-align: center;
  background: #fff7eb;
  border-radius: 6px 6px 6px 6px;
  border: 1px solid #fa9a00;
  font-size: 14px;
  color: #fa9a00;
  margin-left: 10px;
  cursor: pointer;
  will-change: auto;
}
.dialog .content .form-item .code-btn.disabled, .dialog .content .form-item .code-btn.wait {
  background: #eeeeee;
  border-radius: 6px 6px 6px 6px;
  border: 1px solid #dddddd;
  font-size: 14px;
  color: #999999;
}
.dialog .content .form-item input {
  width: 280px;
  height: 30px;
  background: #ffffff;
  border-radius: 6px 6px 6px 6px;
  border: 1px solid #eeeeee;
  outline: none;
  line-height: 30px;
  padding: 0 10px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.dialog .content .form-item input.name {
  width: 224px;
}
.dialog .content .form-item input.code {
  width: 124px;
}
.dialog .content .form-item input:focus {
  border: 1px solid #fa9a00;
}
.dialog .content .form-item input::-webkit-input-placeholder {
  font-size: 14px;
  color: #cccccc;
}
.dialog .content .form-item input::-moz-placeholder {
  font-size: 14px;
  color: #cccccc;
}
.dialog .content .form-item input:-ms-input-placeholder {
  font-size: 14px;
  color: #cccccc;
}
.dialog .content .form-item input::-ms-input-placeholder {
  font-size: 14px;
  color: #cccccc;
}
.dialog .content .form-item input::placeholder {
  font-size: 14px;
  color: #cccccc;
}
.dialog .content .form-item .error-tip {
  position: absolute;
  display: none;
  left: 73px;
  bottom: -16px;
  font-weight: 400;
  font-size: 12px;
  color: #ff3d3d;
  line-height: 13px;
}
.dialog .async-form {
  margin-top: 20px;
  border-bottom: 1px dashed #ddd;
  padding-bottom: 20px;
}
.dialog .async-form .form-label {
  position: relative;
  line-height: 17px;
}
.dialog .async-form .form-label .error-tip {
  position: absolute;
  display: inline-block;
  text-align: left;
  width: 200px;
  left: 72px;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  font-weight: 400;
  font-size: 12px;
  color: #ff3d3d;
  line-height: 13px;
  display: none;
}
.dialog .async-form .table-wrapper {
  border-radius: 0 0 6px 6px;
  margin-top: 10px;
}
.dialog .async-form table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
}
.dialog .async-form table .selector.application {
  width: 282px;
}
.dialog .async-form table .selector.plan {
  width: 157px;
}
.dialog .async-form table thead tr {
  height: 30px;
}
.dialog .async-form table thead tr th {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-size: 14px;
  font-weight: normal;
  color: #333333;
  text-align: center;
  line-height: 30px;
  background: #f5f5f5;
}
.dialog .async-form table thead tr th:nth-of-type(1) {
  width: 46px;
  border-radius: 6px 0 0 0;
}
.dialog .async-form table thead tr th:nth-of-type(2) {
  width: 290px;
}
.dialog .async-form table thead tr th:nth-of-type(3) {
  width: 165px;
}
.dialog .async-form table thead tr th:nth-last-of-type(1) {
  border-radius: 0 6px 0 0;
}
.dialog .async-form table tbody tr {
  height: 50px;
}
.dialog .async-form table tbody tr:nth-last-of-type(1) th:nth-of-type(1) {
  border-left: 1px solid #f5f5f5;
  border-radius: 0 0 0 6px;
}
.dialog .async-form table tbody tr:nth-last-of-type(1) th:nth-last-of-type(1) {
  border-right: 1px solid #f5f5f5;
  border-radius: 0 0 6px 0;
}
.dialog .async-form table tbody tr th {
  font-size: 0;
  height: 50px;
  padding: 0 4px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-bottom: 1px solid #f5f5f5;
}
.dialog .async-form table tbody tr th:nth-of-type(1) {
  border-left: 1px solid #f5f5f5;
}
.dialog .async-form table tbody tr th:nth-last-of-type(1) {
  padding-right: 10px;
  border-right: 1px solid #f5f5f5;
}
.dialog .async-form table tbody .no {
  width: 28px;
  height: 28px;
  display: inline-block;
  background: #ffffff;
  border-radius: 4px 4px 4px 4px;
  border: 1px solid #eeeeee;
  text-align: center;
  line-height: 28px;
  font-weight: 400;
  font-size: 14px;
  color: #333333;
}
.dialog .async-form table tbody .application {
  width: 100%;
}
.dialog .async-form table tbody .user-count-input {
  width: 114px;
  height: 30px;
  background: #ffffff;
  border-radius: 6px 6px 6px 6px;
  border: 1px solid #eeeeee;
  text-align: center;
  line-height: 30px;
  font-weight: 400;
  font-size: 14px;
  color: #333333;
  outline: none;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.dialog .async-form table tbody .user-count-input::-webkit-input-placeholder {
  color: #cccccc;
}
.dialog .async-form table tbody .user-count-input::-moz-placeholder {
  color: #cccccc;
}
.dialog .async-form table tbody .user-count-input:-ms-input-placeholder {
  color: #cccccc;
}
.dialog .async-form table tbody .user-count-input::-ms-input-placeholder {
  color: #cccccc;
}
.dialog .async-form table tbody .user-count-input::placeholder {
  color: #cccccc;
}
.dialog .async-form table tbody .user-count-input:focus {
  border: 1px solid #fa9a00;
}
.dialog .async-form table tbody .remove-btn {
  margin-left: 10px;
  font-weight: 400;
  font-size: 12px;
  color: #333333;
  display: inline-block;
  cursor: pointer;
}
.dialog .async-form table tbody .remove-btn:hover {
  opacity: 0.8;
  filter: alpha(opacity=80);
}

.selector {
  position: relative;
  background: #ffffff;
}
.selector.focus .input {
  border: 1px solid #fa9a00;
  border-radius: 6px 6px 6px 6px;
}
.selector.focus .options {
  display: block;
  width: 100%;
}
.selector.has-value .input {
  color: #333333;
}
.selector .input {
  border: none;
  width: 100%;
  height: 100%;
  outline: none;
  line-height: 30px;
  height: 30px;
  border-radius: 6px 6px 6px 6px;
  border: 1px solid #eeeeee;
  background: #ffffff;
  cursor: pointer;
  font-weight: 400;
  font-size: 14px;
  color: #cccccc;
  padding: 0 14px 0 10px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  text-align: left;
  white-space: nowrap;
  -o-text-overflow: ellipsis;
     text-overflow: ellipsis;
  overflow: hidden;
}
.selector .input:focus-visible {
  outline-offset: 0px;
}
.selector img {
  position: absolute;
  top: 12px;
  right: 10px;
  width: 8px;
  height: 6px;
}
.selector .options {
  position: absolute;
  display: none;
  left: 0;
  top: 30px;
  z-index: 100;
  min-width: 164px;
  margin: 0 0;
  padding: 6px 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background: #ffffff;
  -webkit-box-shadow: 0px 3px 6px 1px rgba(0, 0, 0, 0.16);
          box-shadow: 0px 3px 6px 1px rgba(0, 0, 0, 0.16);
  border-radius: 6px 6px 6px 6px;
}
.selector .options li {
  list-style: none;
  text-align: left;
  font-weight: 400;
  font-size: 14px;
  color: #333333;
  text-align: left;
  line-height: 28px;
  padding: 0 10px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  cursor: pointer;
  white-space: nowrap;
}
.selector .options li.active {
  background: #fff7eb;
  color: #fa9a00;
}
.selector .options li:hover {
  background: #fff7eb;
}

.toast-box {
  width: auto;
  height: auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 10px 10px;
  position: fixed;
  max-width: 640px;
  top: 20%;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  background-color: rgba(0, 0, 0, 0.66);
  z-index: 1010;
  color: #f5f5f5;
  font-size: 14px;
  line-height: 16px;
  border-radius: 6px 6px;
  text-align: center;
  display: none;
}

.operation-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 10px;
}
.operation-box .add-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  cursor: pointer;
}
.operation-box .add-btn:hover {
  opacity: 0.8;
  filter: alpha(opacity=80);
}
.operation-box .add-btn img {
  width: 15px;
  height: 15px;
  display: inline-block;
}
.operation-box .add-btn span {
  font-weight: 400;
  font-size: 14px;
  color: #fa9a00;
  line-height: normal;
  margin-left: 8px;
}
.operation-box .submit-btn {
  width: 130px;
  height: 36px;
  background: #fa9a00;
  border-radius: 6px 6px 6px 6px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 5px;
  cursor: pointer;
}
.operation-box .submit-btn img {
  width: 19px;
  height: 20px;
  display: inline-block;
  margin-right: 7px;
}
.operation-box .submit-btn span {
  font-weight: bold;
  font-size: 16px;
  color: #ffffff;
  line-height: 1;
}
.operation-box .submit-btn:hover {
  background: #fbae33;
}

.static-content {
  margin-top: 20px;
}
.static-content p.title {
  font-weight: bold;
  font-size: 14px;
  color: #333333;
  line-height: 16px;
  text-align: left;
  margin: 0 0;
}
.static-content .process {
  margin: 12px 0 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.static-content .process > img {
  width: 15px;
  height: 16px;
  display: inline-block;
}
.static-content .process .item {
  width: 113px;
  height: 46px;
  background: #ffffff;
  border-radius: 6px 6px 6px 6px;
  border: 1px solid #eeeeee;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.static-content .process .item img {
  width: 24px;
  height: 24px;
  display: inline-block;
}
.static-content .process .item div {
  margin-left: 14px;
}
.static-content .process .item div span {
  display: block;
  font-weight: 400;
  font-size: 12px;
  color: #333333;
  line-height: 13px;
}
.static-content .process .item div span:nth-of-type(1) {
  margin-bottom: 4px;
}
.static-content .tip {
  font-weight: 400;
  font-size: 14px;
  color: #333333;
  line-height: 17px;
  margin: 10px 0;
}
.static-content .goods {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.static-content .goods img {
  width: 150px;
  height: 150px;
  display: inline-block;
}

.close-btn {
  width: 12px;
  height: 12px;
  position: absolute;
  top: 22px;
  right: 20px;
  z-index: 10;
  cursor: pointer;
}

.less-subscribe-box {
  width: 280px;
  height: 152px;
  background: #ffffff;
  -webkit-box-shadow: 0px 0px 8px 1px rgba(0, 0, 0, 0.16);
          box-shadow: 0px 0px 8px 1px rgba(0, 0, 0, 0.16);
  border-radius: 6px 6px 6px 6px;
  position: fixed;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 1009;
  text-align: center;
  display: none;
}
.less-subscribe-box .wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 280px;
  height: 152px;
}
.less-subscribe-box .close-btn {
  position: absolute;
  width: 12px;
  height: 12px;
  top: 12px;
  right: 12px;
  z-index: 10;
}
.less-subscribe-box h3 {
  font-weight: bold;
  font-size: 16px;
  color: #333333;
  line-height: 22px;
  text-align: center;
  margin: 0 0;
}
.less-subscribe-box p {
  font-weight: 400;
  font-size: 14px;
  color: #333333;
  line-height: 22px;
  text-align: center;
  margin: 0 0;
}
.less-subscribe-box .subscribe-btn {
  width: 130px;
  height: 36px;
  background: #fa9a00;
  border-radius: 6px 6px 6px 6px;
  text-align: center;
  line-height: 36px;
  font-weight: bold;
  font-size: 16px;
  color: #ffffff;
  margin-top: 15px;
  cursor: pointer;
  display: inline-block;
  text-decoration: none;
}
.less-subscribe-box .subscribe-btn:hover {
  opacity: 0.8;
  filter: alpha(opacity=80);
}

.detail-dialog {
  display: none;
  width: 1000px;
  height: 616px;
  background: #ffffff;
  border-radius: 10px 10px 10px 10px;
  position: fixed;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background-color: #fff;
  border-radius: 8px;
  -webkit-box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
          box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  z-index: 1001;
  padding: 20px 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  overflow: hidden;
}
.detail-dialog .detail-close-btn {
  width: 12px;
  height: 12px;
  position: absolute;
  top: 20px;
  right: 20px;
  cursor: pointer;
}
.detail-dialog .detail-dialog-content-wrapper {
  overflow-y: auto;
  height: 560px;
  margin-top: 35px;
  padding: 0 15px 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  scrollbar-width: thin;
}
.detail-dialog .detail-dialog-content-wrapper::-webkit-scrollbar {
  width: 5px;
}
.detail-dialog .detail-dialog-content-wrapper::-webkit-scrollbar-thumb {
  background: #dddddd;
  border-radius: 3px 3px 3px 3px;
  width: 5px;
}
.detail-dialog .detail-dialog-content-wrapper::-webkit-scrollbar-track {
  background-color: #fff;
  position: absolute;
}
.detail-dialog .detail-dialog-content-wrapper .detail-content {
  padding: 20px 10px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background: #ffffff;
  border-radius: 6px 6px 6px 6px;
  border: 1px solid #eeeeee;
}
.detail-dialog .detail-dialog-content-wrapper .detail-content .content-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  text-align: center;
}
.detail-dialog .detail-dialog-content-wrapper .detail-content .content-head .logo {
  display: inline-block;
  width: 75px;
  height: 30px;
  margin-left: 10px;
}
.detail-dialog .detail-dialog-content-wrapper .detail-content .content-head .qrcode {
  width: 71px;
  height: 71px;
  display: inline-block;
  margin-right: 2px;
}
.detail-dialog .detail-dialog-content-wrapper .detail-content .content-head .title h2 {
  font-weight: bold;
  font-size: 24px;
  color: #333333;
  line-height: 26px;
  padding: 0 0;
  margin: 0 0;
}
.detail-dialog .detail-dialog-content-wrapper .detail-content .content-head .title .sub-title {
  font-weight: 400;
  font-size: 14px;
  color: #999999;
  line-height: 15px;
  margin: 0 0;
  margin-top: 10px;
}
.detail-dialog .detail-dialog-content-wrapper .detail-content .detail-table {
  margin-top: 18px;
}
.detail-dialog .detail-dialog-content-wrapper .detail-content .detail-table table {
  width: 100%;
  border-collapse: separate;
  border-width: 2px;
  border-spacing: 2px;
  text-align: center;
}
.detail-dialog .detail-dialog-content-wrapper .detail-content .detail-table table thead tr th {
  background: #f5f5f5;
  font-weight: 400;
  font-size: 12px;
  color: #333333;
  line-height: 30px;
  height: 30px;
  text-align: center;
}
.detail-dialog .detail-dialog-content-wrapper .detail-content .detail-table table thead tr th:nth-of-type(1) {
  border-radius: 6px 0px 0px 0px;
  width: 40px;
}
.detail-dialog .detail-dialog-content-wrapper .detail-content .detail-table table thead tr th:nth-of-type(2) {
  width: 288px;
}
.detail-dialog .detail-dialog-content-wrapper .detail-content .detail-table table thead tr th:nth-of-type(3) {
  width: 180px;
}
.detail-dialog .detail-dialog-content-wrapper .detail-content .detail-table table thead tr th:nth-of-type(4) {
  width: 60px;
}
.detail-dialog .detail-dialog-content-wrapper .detail-content .detail-table table thead tr th:nth-of-type(5) {
  width: 72px;
}
.detail-dialog .detail-dialog-content-wrapper .detail-content .detail-table table thead tr th:nth-of-type(6) {
  width: 78px;
}
.detail-dialog .detail-dialog-content-wrapper .detail-content .detail-table table thead tr th:nth-of-type(7) {
  width: 210px;
}
.detail-dialog .detail-dialog-content-wrapper .detail-content .detail-table table thead tr th:nth-last-of-type(1) {
  border-radius: 0 6px 0px 0px;
  width: 210px;
}
.detail-dialog .detail-dialog-content-wrapper .detail-content .detail-table table tbody tr {
  border: none;
}
.detail-dialog .detail-dialog-content-wrapper .detail-content .detail-table table tbody tr th {
  font-weight: 400;
  font-size: 12px;
  color: #333333;
  line-height: 34px;
  height: 34px;
  text-align: center;
  background: #f5f5f5;
  padding: 0 0;
  border: none;
  width: auto;
}
.detail-dialog .detail-dialog-content-wrapper .detail-content .detail-table table tbody tr.count-line2 th:nth-of-type(1) {
  border-radius: 0 0 0 6px;
}
.detail-dialog .detail-dialog-content-wrapper .detail-content .detail-table table tbody tr.count-line2 th:nth-last-of-type(1) {
  border-radius: 0 0 6px 0;
}
.detail-dialog .detail-dialog-content-wrapper .detail-content .detail-table .info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 0 77px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin-top: 20px;
}
.detail-dialog .detail-dialog-content-wrapper .detail-content .detail-table .info span {
  font-weight: 400;
  font-size: 14px;
  color: #333333;
  line-height: 15px;
}
.detail-dialog .detail-dialog-content-wrapper .detail-operation-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
  margin-top: 20px;
  padding-bottom: 53px;
  border-bottom: 1px dashed #ddd;
}
.detail-dialog .detail-dialog-content-wrapper .detail-operation-box img {
  display: inline-block;
  width: 16px;
  height: 16px;
  margin-right: 8px;
}
.detail-dialog .detail-dialog-content-wrapper .detail-operation-box .download-btn {
  width: 148px;
  height: 40px;
  background: #ffffff;
  border-radius: 6px 6px 6px 6px;
  border: 1px solid #fa9a00;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-weight: bold;
  font-size: 16px;
  color: #fa9a00;
  margin-right: 20px;
  cursor: pointer;
}
.detail-dialog .detail-dialog-content-wrapper .detail-operation-box .download-btn:hover {
  background: #fff7eb;
}
.detail-dialog .detail-dialog-content-wrapper .detail-operation-box .submit-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 150px;
  height: 42px;
  background: #fa9a00;
  border-radius: 6px 6px 6px 6px;
  font-weight: bold;
  font-size: 16px;
  color: #ffffff;
  line-height: 1;
  cursor: pointer;
  position: relative;
}
.detail-dialog .detail-dialog-content-wrapper .detail-operation-box .submit-btn:hover {
  background: #fbae33;
}
.detail-dialog .detail-dialog-content-wrapper .detail-operation-box .preview-download {
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  top: 54px;
  right: 341px;
  cursor: pointer;
}
.detail-dialog .detail-dialog-content-wrapper .detail-operation-box .preview-download span {
  font-weight: 400;
  font-size: 12px;
  color: #333333;
  line-height: normal;
  display: inline-block;
}
.detail-dialog .detail-dialog-content-wrapper .detail-operation-box .preview-download i {
  width: 14px;
  height: 14px;
  margin-right: 2px;
  display: inline-block;
  background-image: url(/contract/image/dialog/tip_light.png);
  background-size: 100% 100%;
  background-repeat: no-repeat;
}
.detail-dialog .detail-dialog-content-wrapper .detail-operation-box .preview-download:hover span {
  color: #fa9a00;
}
.detail-dialog .detail-dialog-content-wrapper .detail-operation-box .preview-download:hover i {
  background-image: url(/contract/image/dialog/tip.png);
}
.detail-dialog .process-box {
  margin: 24px 5px 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.detail-dialog .process-box p.title {
  font-weight: bold;
  font-size: 16px;
  color: #333333;
  text-align: center;
  margin: 0 0;
}
.detail-dialog .process-box .process {
  width: 100%;
  margin: 20px 0 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.detail-dialog .process-box .process > img {
  width: 15px;
  height: 16px;
  display: inline-block;
}
.detail-dialog .process-box .process .item {
  width: 113px;
  height: 46px;
  background: #ffffff;
  border-radius: 6px 6px 6px 6px;
  border: 1px solid #eeeeee;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.detail-dialog .process-box .process .item img {
  width: 24px;
  height: 24px;
  display: inline-block;
}
.detail-dialog .process-box .process .item div {
  margin-left: 14px;
}
.detail-dialog .process-box .process .item div span {
  display: block;
  font-weight: 400;
  font-size: 12px;
  color: #333333;
  line-height: 13px;
}
.detail-dialog .process-box .process .item div span:nth-of-type(1) {
  margin-bottom: 4px;
}

.loading-box {
  display: none;
  width: 88px;
  height: 88px;
  background: #ffffff;
  -webkit-box-shadow: 0px 0px 10px 1px rgba(0, 0, 0, 0.16);
          box-shadow: 0px 0px 10px 1px rgba(0, 0, 0, 0.16);
  border-radius: 10px 10px 10px 10px;
  position: fixed;
  z-index: 1009;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.loading-box img {
  width: 50px;
  height: 50px;
  display: inline-block;
  margin: 19px 19px;
}

.loading-box-mask {
  display: none;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background-color: transparent;
  z-index: 1008;
}