/* common */
* {
  padding: 0;
  margin: 0;
}
ul,
li {
  list-style: none;
}
button,
input,
textarea,
select {
  outline: none;
  border: none;
}
.flex-xy {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.flex {
  display: flex;
}

select {
  border: 1px solid #ccc;
  height: 30px;
  width: 32%;
  margin-bottom: 4px;
}

/* index */
.toast-box {
  position: fixed;
  top: 9%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1200;
  background: rgba(40, 40, 40, 0.75);
  border-radius: 6px;
  font-size: 17px;
  line-height: 21px;
  padding: 0 10px;
  justify-content: center;
  background: #e1e1e1;
  min-width: 200px;
  height: 21px;
  display: flex;
  padding: 10px 16px;
  background: #fff;
  border-radius: 4px;
  box-shadow: 0 4px 12px rgb(0 0 0 / 15%);
  pointer-events: all;
  text-align: center;
  align-items: center;
}
.toast-box img {
  width: 25px;
  height: 25px;
  margin-right: 10px;
}

.wrap {
  width: 1200px;
  overflow-y: hidden;
  margin: 0 auto;
}
.top-introduce .text {
  font-size: 14px;
  color: #555;
  width: 64%;
  margin-top: 20px;
}
.top-introduce {
  padding: 10px;
}

.detail-box {
  margin-top: 20px;
  display: flex;
}
.detail-box img {
  width: 30%;
  margin-right: 2%;
  border: 6px solid #efd05ecc;
  margin-right: 40px;
}
.detail-text {
  width: 40%;
  line-height: 39px;
}
.detail-text > p {
  text-indent: 1rem;
}
.detail-text > p.de-title {
  text-indent: 0;
  font-weight: 600;
  color: #444;
}
.form-box {
  background: #fff;
}
.form-box .form {
  width: 90%;
  background: #fff;
  margin: 20px auto 40px;
  padding: 30px 0;
}
.form-box .form > ul > li {
  margin-bottom: 20px;
  display: flex;
  position: relative;
  width: 60%;
  margin-left: 7%;
}
.form-box .form > ul > li label {
  width: 30%;
}
.form-box .form li input[type="text"],
textarea {
  border: none;
  background: #f1f1f1;
  width: 100%;
  height: 30px;
  outline: none;
  padding-left: 10px;
}
.form-box .form li > div {
  width: 70%;
}

.code-btn {
  width: 49%;
  background: rgb(230, 93, 93);
  color: #fff;
  text-align: center;
  height: 30px;
  line-height: 30px;
}
.code-btn:disabled {
  background: #ccc;
  cursor: not-allowed;
}
.submit-btn {
  width: 100%;
  background: rgb(230, 93, 93);
  color: #fff;
  text-align: center;
  height: 30px;
  line-height: 30px;
}
.mode > div {
  margin-right: 10px;
}
.mode > div > input {
  margin-right: 6px;
}
.get-time input {
  text-align: center;
}
#schedule-box,
#schedule-box2 {
  position: absolute;
  z-index: 99;
  background: #fff;
  left: 0;
  top: 0;
}
@media screen and (max-width: 1200px) {
  .wrap {
    width: 1200px;
  }
}

@media screen and (max-width: 992px) {
  .wrap {
    width: 100%;
    font-size: 12px;
  }
}

@media screen and (max-width: 768px) {
  .wrap {
    width: 100%;
    font-size: 12px;
  }
  .form-box .form > ul > li {
    width: 100%;
    margin-left: 0;
  }
  .detail-box {
    display: block;
  }
  .detail-text {
    width: 100%;
    line-height: 20px;
  }
  .detail-box img {
    margin: 0 auto;
    display: block;
    margin-bottom: 10px;
  }
}

@media screen and (max-width: 480px) {
  .wrap {
    width: 100%;
    font-size: 12px;
  }

  .form-box .form > ul > li {
    width: 100%;
    margin-left: 0;
  }
  .detail-box {
    display: block;
  }
  .detail-text {
    width: 100%;
    line-height: 20px;
  }
  .detail-box img {
    margin: 0 auto;
    display: block;
    margin-bottom: 10px;
  }
}
