.form-box {
  padding-left: 5vw;
  padding-right: 5vw;
  margin-left: auto;
  margin-right: auto;
  max-width: 700px;
}
.form-item {
  margin-bottom: 30px;
  width: 100%;
}
.form-item .label {
  margin-bottom: 5px;
  font-size: 18px;
}
.form-item .input {
  padding: 10px;
  width: 100%;
  height: 50px;
  line-height: 50px;
  border-radius: 2px;
  box-sizing: border-box;
  border: 1px solid #707070;
  font-size: 16px;
}
.form-item.col-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.form-item .textarea {
  padding: 10px;
  width: 100%;
  height: 200px;
  font-size: 16px;
  border-radius: 2px;
  box-sizing: border-box;
  border: 1px solid #707070;
}
.form-item .select {
  width: 100%;
  height: 50px;
}
.form-item .check-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
}
.form-item .check-list .check-item {
  margin-bottom: 20px;
  font-size: 16px;
}
.form-item .check-list .check-item .checkbox {
  width: 20px;
  height: 20px;
  cursor: pointer;
}
.form-item .check-list .check-item label {
  margin-left: 10px;
  width: calc(100% - 30px);
  cursor: pointer;
}
.form-item .upload-box {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
  gap: 15px;
}
.form-item .upload-box .btn-upload {
  width: 100px;
  height: 100px;
  border: 1px dotted #565656;
  border-radius: 5px;
  position: relative;
  cursor: pointer;
}
.form-item .upload-box .btn-upload .icon {
  font-size: 100px;
  color: #565656;
}
.form-item .upload-box .btn-upload .upload-input {
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
}
.form-item .upload-box .upload-img-box {
  width: 100px;
  height: 100px;
  position: relative;
}
.form-item .upload-box .upload-img-box .upload-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.form-item .upload-box .upload-img-box .btn-delete {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.6);
  cursor: pointer;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
}
.form-item .upload-box .upload-img-box .btn-delete .icon {
  font-size: 24px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.tips {
  color: #ED0000;
  font-size: 14px;
  line-height: 1.6;
  display: none;
}
/*# sourceMappingURL=contactUs.css.map */