.contact {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-top: 80rem;
}
.contact-title {
  font-size: 20rem;
  font-weight: bold;
  margin-bottom: 40rem;
}
.contact-desc {
  font-size: 18rem;
  line-height: 30rem;
}
.contact-desc span {
  font-weight: bold;
  color: #138db1;
}

@media screen and (max-width: 1200px) {
  .contact {
    display: block;
    padding: 10rem;
    margin-top: 20rem;
  }
  .contact-item + .contact-item {
    margin-top: 20rem;
  }
  .contact-title {
    font-size: 16rem;
    margin-bottom: 10rem;
  }
  .contact-desc {
    font-size: 14rem;
  }
}
.address-map {
  height: 500rem;
}

.company-info {
  border: 1rem solid #ccc;
  padding: 15rem;
  position: relative;
  background: #fff;
  width: 360rem;
}
.company-info div {
  border-bottom: 1rem solid #333;
  padding-bottom: 10rem;
  margin-bottom: 10rem;
}
.company-info span {
  font-weight: bold;
}
.company-info i {
  float: right;
  cursor: pointer;
}

.marker-icon {
  width: 28rem;
  height: 43rem;
  background: url(//a.amap.com/lbs-dev-yuntu/static/web/image/tools/showmap/map.png) 0 -100rem no-repeat;
}

.form-content {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  row-gap: 20rem;
  -webkit-column-gap: 40rem;
     -moz-column-gap: 40rem;
          column-gap: 40rem;
  margin-top: 60rem;
}

.label {
  font-size: 14rem;
  margin-bottom: 10rem;
}

.input {
  padding: 15rem 60rem;
  border: 1rem solid #ccc;
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.top {
  display: block;
  margin-top: 20rem;
}

.textarea {
  width: 100%;
  height: 200rem;
  padding: 15rem 60rem;
  resize: none;
  border: 1rem solid #ccc;
  outline: none;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.button {
  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: 300rem;
  height: 60rem;
  background-color: #138db1;
  color: white;
  margin: 0 auto;
  margin-top: 40rem;
  font-size: 18rem;
  cursor: pointer;
}

@media screen and (max-width: 1200rem) {
  .input,
  .textarea {
    padding: 10rem;
  }
  .textarea {
    height: 120rem;
  }
  .button {
    height: 50rem;
    width: 240rem;
    font-size: 14rem;
    margin-top: 20rem;
  }
}