.contact-container {
  display: flex;
  justify-content: space-between;
  margin-top: 0.24rem;
  padding: 1rem 1.32rem 1.2rem;
  background-color: #fff;
}
.contact-container .contact-img {
  width: 50%;
}
.contact-container .contact-img img {
  height: 4.8rem;
  font-size: 0;
  object-fit: contain;
}
.contact-container .contact-info-area {
  display: flex;
  padding-bottom: 0.2rem;
  width: 46%;
}
.contact-container .contact-info-area .contact-info {
  width: 45%;
  justify-content: space-between;
}
.contact-container .contact-info-area .contact-info:nth-child(2) {
  margin-left: 10%;
}
.contact-container .contact-info-area h3 {
  margin-bottom: 8px;
  font-size: max(0.2rem, 16px);
  font-family: Muli, Muli-Bold;
  font-weight: 700;
  text-align: left;
  color: #9f7829;
  line-height: 1.9;
}
.contact-container .contact-info-area h4 {
  margin-top: 0.24rem;
  font-size: max(0.18rem, 14px);
  font-family: Muli, Muli-Bold;
  font-weight: 700;
  color: #000000;
  line-height: 1.6;
}
.contact-container .contact-info-area h3 + h4 {
  margin-top: 0;
}
.contact-container .contact-info-area .info-part {
  margin-top: 0.24rem;
}
.contact-container .contact-info-area .c-email {
  position: relative;
  padding-left: 0.3rem;
  font-size: max(0.18rem, 14px);
  font-family: Muli, Muli-Regular;
  color: #003366;
  line-height: 1.6;
}
.contact-container .contact-info-area .c-email::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.1rem;
  width: max(0.16rem, 14px);
  height: max(0.16rem, 14px);
  background: url(../images/contact-us/email2x.png) no-repeat center/100% 100%;
}
.contact-container .contact-info-area .c-phone {
  position: relative;
  padding-left: 0.3rem;
  font-size: max(0.18rem, 14px);
  font-family: Muli, Muli-Regular;
  font-weight: 400;
  color: #000000;
  line-height: 1.6;
}
.contact-container .contact-info-area .c-phone::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.08rem;
  width: max(0.16rem, 14px);
  height: max(0.16rem, 14px);
  background: url(../images/contact-us/phone2x.png) no-repeat center/100% 100%;
}
.contact-container .contact-info-area .c-weixin {
  display: block;
  position: relative;
  padding-left: 0.3rem;
}
.contact-container .contact-info-area .c-weixin::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.1rem;
  width: max(0.16rem, 14px);
  height: max(0.16rem, 14px);
  background: url(../images/contact-us/weixin.png) no-repeat center/100% 100%;
}
.contact-container .contact-info-area .c-weixin img {
  margin-top: 5px;
  width: max(1.05rem, 100px);
  height: max(1.05rem, 100px);
}
.contact-container .contact-info-area h4 + .c-email {
  margin-top: 8px;
}
.contact-container .contact-info-area .c-email + .c-phone {
  margin-top: 8px;
}

@media screen and (max-width: 1200px) {
  .contact-container .contact-info-area {
    display: block;
  }
  .contact-container .contact-info-area .contact-info {
    width: 100%;
  }
  .contact-container .contact-info-area .contact-info:nth-child(2) {
    margin-left: 0;
  }
  .contact-container .c-email {
    padding-left: 20px;
  }
  .contact-container .c-email::before {
    top: 6px;
  }
  .contact-container .c-phone {
    padding-left: 20px;
  }
  .contact-container .c-phone::before {
    top: 4px;
  }
  .contact-container .c-weixin {
    padding-left: 20px;
  }
  .contact-container .c-weixin::before {
    top: 6px;
  }
}
@media screen and (max-width: 910px) {
  .contact-container {
    flex-direction: column;
    margin-top: 24px;
    padding: 30px 20px;
  }
  .contact-container .contact-img {
    width: 100%;
    height: 0;
  }
  .contact-container .contact-img img {
    height: 0;
  }
  .contact-container .contact-info-area {
    display: flex;
    margin-bottom: 20px;
    width: 100%;
  }
  .contact-container .contact-info-area h3 {
    font-size: 16px;
  }
  .contact-container .contact-info-area h4 {
    font-size: 14px;
  }
  .contact-container .contact-info-area .info-part {
    margin-top: 24px;
  }
  .contact-container .contact-info-area .c-email {
    font-size: 14px;
    padding-left: 20px;
  }
  .contact-container .contact-info-area .c-email::before {
    top: 6px;
    width: 14px;
    height: 14px;
  }
  .contact-container .contact-info-area .c-phone {
    font-size: 14px;
    padding-left: 20px;
  }
  .contact-container .contact-info-area .c-phone::before {
    top: 4px;
    width: 14px;
    height: 14px;
  }
  .contact-container .contact-info-area .c-weixin {
    font-size: 14px;
    padding-left: 20px;
  }
  .contact-container .contact-info-area .c-weixin::before {
    top: 6px;
    width: 14px;
    height: 14px;
  }
  .contact-container .contact-info-area .c-weixin img {
    margin-top: 5px;
    width: 100px;
    height: 100px;
  }
}
@media screen and (max-width: 610px) {
  .contact-container .contact-info-area {
    display: block;
  }
  .contact-container .contact-info-area .contact-info {
    width: 100%;
  }
  .contact-container .contact-info-area .contact-info:nth-child(2) {
    margin-left: 0;
  }
}

/*# sourceMappingURL=contact-us.css.map */
