.message-box {
  display: flex;
  flex-wrap: wrap-reverse;
  font-size: 14px;
  padding: 100px 166px;
  margin-top: 20px;
  background: url('../img/assets/common/bg.png') no-repeat;
  background-color: 100% 100%;
}
.message-box h4 {
  color: #97866d;
  font-size: 22px;
}
.message-info,
.message-content {
  flex-basis: 50%;
}
.message-info input[type='text'] {
  width: 80%;
  margin: 20px 0;
  padding: 10px;
  box-sizing: border-box;
}
.message-info input[type='radio'] {
  margin-left: 40px;
  cursor: pointer;
}
.message-info .sex {
  margin-bottom: 20px;
}
.message-info .sex label {
  font-size: 14px;
  margin-left: 5px;
}
.message-textarea{
  position: relative;
  margin: 20px 0;
}
.message-textarea::after {
  content: '';
  display: block;
  padding-bottom: 100%;
}
.message-content textarea {
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  line-height: 24px;
  padding: 10px;
  resize: none;
  overflow: hidden;
}
.message-info input,
.message-content textarea {
  border-radius: 4px;
  border: 1px solid #adaca8;
  background-color: transparent;
}
.submit {
  display: block;
  height: 40px;
  width: 100px;
  line-height: 40px;
  text-align: center;
  border: none;
  background-color: #97866d;
  color: #fff;
  letter-spacing: 5px;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .message-box {
    padding: 0;
    background: none;
  }
  .message-info,
  .message-content {
    flex-basis: 100%;
  }
  .message-textarea {
    height: 100px;
  }
  .message-content textarea {
    box-sizing: border-box;
    height: 100%;
  }
  .message-box h4 {
    font-size: 16px;
  }
  .message-info input[type='text'],
  .message-content textarea {
    width: 100%;
    margin: 10px 0;
  }
  .message-info .sex {
    margin-bottom: 10px;
  }
  .submit{
    width: 100%;
  }
  .message-textarea::after {
    padding-bottom: 30%;
  }
}


/*联系方式*/

.contact-box{
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 3.5rem;
}
.contact-box-left{
  flex: 1;
  width: 65%;
}
.contact-box-left img{
  width: 100%;
  height: 100%;
}

.contact-box-rig{
  background:url("../img/assets/aboutus/contact.jpg") no-repeat;
  background-size: cover;
  overflow: hidden;
  padding: 2rem 10px;

}
.contact-box-rig ul {
  padding:  5rem 2rem;
  line-height: 3rem;
}
.contact-box-rig ul li {
  color: #000;
  font-size: 16px;
  font-weight: bold;
}
.my-map { margin: 0 auto; width:100%; height: auto; }
@media screen and (max-width: 768px) {
  .contact-box{
    margin: 2rem auto;
  }
  .contact-box-left{
    width: 100%;
    margin-bottom: 5px;
  }
  .contact-box-rig{
    padding: 5px;
  }
  .contact-box-rig ul {
    padding: 1.5rem;
    line-height: 2rem;
  }
  .my-map {height: 280px; }
}