@charset "UTF-8";
.padding_div {
  padding: 40px 10px;
  box-sizing: border-box;
  /* 禁止文本图标被鼠标拖动选中 */
  -moz-user-select: none;
  /*火狐*/
  -webkit-user-select: none;
  /*webkit浏览器*/
  -ms-user-select: none;
  /*IE10*/
  -khtml-user-select: none;
  /*早期浏览器*/
  user-select: none;
}

.padding_div .width_div {
  width: 80%;
}

.div_submit {
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  box-sizing: border-box;
  padding: 0 5%;
}
.div_submit > div > div > p {
  font-size: 20px;
  font-weight: bold;
}

.div_submit .userInof {
  display: flex;
  justify-content: space-between;
  width: 100%;
}

.div_submit .userInof > div {
  width: 48%;
  height: 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.div_submit .userInof > div > span {
  margin-right: 15px;
  font-size: 30px;
  color: #ff0000;
}

.div_submit .userInof > div > input {
  flex: 1;
  height: 100%;
  background: #FFFFFF;
  border: 1px solid #707070;
  border-radius: 8px;
  box-sizing: border-box;
  padding: 0 10px;
}

.div_submit .userInof > div > input:focus {
  outline: none;
  border-color: #2787DB;
}

.div_submit .describeContainer {
  width: 100%;
  margin-top: 20px;
}

.div_submit .describeContainer > div {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.div_submit .describeContainer > div > p {
  margin-right: 28px;
  margin-top: 5px;
}

.div_submit .describeContainer > div > textarea {
  flex: 1;
  height: 130px;
  background: #FFFFFF;
  border: 1px solid #707070;
  border-radius: 8px;
  box-sizing: border-box;
  padding: 14px 10px;
}

.div_submit .describeContainer > div > textarea:focus {
  outline: none;
  border-color: #2787DB;
}

.div_submit .button_div {
  width: 100%;
  height: 60px;
  margin-top: 60px;
  display: flex;
  justify-content: center;
}

.div_submit .button_div > button {
  width: 40%;
  height: 60px;
  background: linear-gradient(180deg, #9AD0FF 0%, #2787DB 100%);
  border: none;
  border-radius: 8px;
  font-size: 20px;
  font-family: PingFang SC;
  font-weight: 800;
  line-height: 60px;
  color: #FFFFFF;
}

.div_submit .button_div > button:focus {
  outline: none;
  background: linear-gradient(180deg, #85c5fd 0%, #1580dd 100%);
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
  .width_div {
    width: 70% !important;
  }
}

@media screen and (min-width: 575px) and (max-width: 768px) {
  .padding_div {
    padding: 30px 10px;
  }
  .padding_div .width_div {
    width: 70% !important;
  }
  .div_submit > div > div > p {
    font-size: 18px;
  }
  .div_submit .userInof {
    flex-direction: column;
  }
  .div_submit .userInof > div {
    width: 100%;
  }
  .div_submit .userInof > div:last-child {
    margin-top: 20px;
  }
  .div_submit .button_div > button {
    font-size: 18px;
  }
}

@media screen and (max-width: 575px) {
  .padding_div {
    padding: 20px 10px;
  }
  .padding_div .width_div {
    width: 80% !important;
  }
  .div_submit > div > div > p {
    font-size: 16px;
    white-space: nowrap;
  }
  .div_submit .userInof {
    flex-direction: column;
  }
  .div_submit .userInof > div {
    width: 100%;
    height: 40px;
  }
  .div_submit .userInof > div:last-child {
    margin-top: 15px;
  }
  .div_submit .userInof > div > span {
    margin-right: 8px;
    font-size: 24px;
  }
  .div_submit .describeContainer {
    margin-top: 15px;
  }
  .div_submit .describeContainer > div > p {
    margin-right: 19px;
  }
  .div_submit .button_div {
    height: 40px;
    margin-top: 30px;
  }
  .div_submit .button_div > button {
    width: 50%;
    height: 40px;
    font-size: 16px;
    line-height: 40px;
  }
}
