/* dialog */
.dialog {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 2000;
  display: none;
}
.dialog_panel {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 800px;
  transform: translate(-50%, -50%);
  background-color: #f9f9f9;
  border-radius: 5px;
  padding: 40px 40px 40px 10px;
  /* display: none; */
}
.dialog_title {
  font-size: 20px;
  font-weight: bold;
  color: #4e4f52;
  text-align: center;
  padding-bottom: 12px;
}
.dialog_close {
  position: absolute;
  right: 0;
  top: 0;
  width: 64px;
  height: 64px;
  background-image: url("../img/dialog/close_1.png");
  background-size: 30px;
  cursor: pointer;
}
.dialog_form dl {
  display: flex;
  align-items: center;
  margin: 15px 0;
}
.dialog_form dt {
  width: 90px;
  text-align: right;
}
.dialog_form dt span {
  font-size: 16px;
  color: #666;
}
.dialog_form dt i {
  font-size: 14px;
  color: #e60050;
  padding-left: 4px;
}
.dialog_form dd {
  flex: 1;
  border: 1px solid #d7d7d7;
  margin-left: 8px;
  border-radius: 4px;
  position: relative;
}
.dialog_form dd input {
  line-height: 38px;
  height: 38px;
  width: 100%;
  padding: 0 10px;
  display: block;
  box-sizing: border-box;
}
.dialog_form dd p {
  height: 38px;
  line-height: 38px;
  padding: 0 10px;
}
.dialog_form dd ul {
  position: absolute;
  left: 0;
  right: 0;
  top: 38px;
  z-index: 1;
  display: none;
}
.dialog_form dd ul li {
  background-color: #d7d7d7;
  font-size: 14px;
  color: #444;
  height: 38px;
  line-height: 38px;
  padding: 0 10px;
  cursor: pointer;
}
.dialog_form dd s {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 40px;
  background-image: url("../img/dialog/sel.png");
  background-size: 12px;
}
.dialog_form dd textarea {
  display: block;
  height: 150px;
  padding: 8px 12px;
}
.dialog_form dl.submit {
  margin-top: 44px;
  cursor: pointer;
}
.dialog_form dl.submit dd {
  margin-left: 100px;
  background-color: #222629;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .dialog_panel {
    left: 0;
    right: 0;
    width: auto;
    margin: 0 20px;
    transform: translate(0, -50%);
    padding: 20px 20px 20px 0;
  }
  .dialog_title {
    font-size: 16px;
    font-weight: bold;
    padding-bottom: 8px;
  }
  .dialog_close {
    width: 44px;
    height: 44px;
    background-size: 20px;
  }
  .dialog_form dl {
    margin: 8px 0;
  }
  .dialog_form dt {
    width: 80px;
  }
  .dialog_form dt span {
    font-size: 14px;
  }
  .dialog_form dt i {
    font-size: 12px;
  }
  .dialog_form dd input {
    line-height: 32px;
    height: 32px;
    border-radius: 2px;
  }
  .dialog_form dd p {
    height: 32px;
    line-height: 32px;
  }
  .dialog_form dd ul {
    top: 32px;
  }
  .dialog_form dd ul li {
    font-size: 12px;
    height: 32px;
    line-height: 32px;
  }
  .dialog_form dd textarea {
    height: 80px;
    padding: 4px 8px;
  }
  .dialog_form dl.submit {
    margin-top: 24px;
  }
  .dialog_form dl.submit dd {
    margin-left: 20px;
  }
}
