.container {
  position: relative;
}

.container .home {
  background: url("../../img/contact/contact_banner.png") no-repeat center;
  background-size: cover;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: start;
  position: relative;
  padding: 0 4rem;
}

.container .home .banner {
  color: #fff;
}

.container .home .banner span {
  display: block;
}

/* 联系我们部分样式 */
.container .contact_us {
  background: url("../../img/contact/contact_bg.png");
  background-size: 100% 100%;
  padding: 3rem 4rem;
  display: flex;
  gap: 1.25rem;
}

.container .contact_us .contact_us_left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: #fff;
  border-radius: .25rem;
  width: 19.375rem;
  height: 14.375rem;
}

.container .contact_us .contact_us_left .top {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.container .contact_us .contact_us_left .top span {
  font-size: .9rem;
  font-weight: 500;
  color: rgba(51, 51, 51, 1);
  margin-bottom: .75rem;
  font-family: 'HarmonyOS Sans SC', sans-serif;
}

.container .contact_us .contact_us_left .top a {
  text-decoration: none;
}


.container .contact_us .contact_us_left hr {
  width: 100%;
  border: 1px solid rgba(232, 232, 232, 1);
  margin: 1.625rem 0 1rem 0;
}

.container .contact_us .contact_us_left .bottom {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.container .contact_us .contact_us_left .bottom span {
  font-size: .65rem;
  font-weight: 700;
  color: rgba(51, 51, 51, 1);
  font-family: 'HarmonyOS Sans SC', sans-serif;
  margin: .8rem 0 .4rem 0;
}

.container .contact_us .contact_us_left .bottom span:last-child {
  font-size: .45rem;
  font-weight: 400;
  color: rgba(51, 51, 51, 1);
  font-family: 'HarmonyOS Sans SC', sans-serif;
  margin: 0;
}

.container .contact_us .contact_us_left .bottom img {
  width: 1.5rem;
  height: 1.5rem;
}

.container .contact_us .contact_us_right {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: #fff;
  border-radius: .25rem;
  width: 19.375rem;
  height: 14.375rem;
}

.container .contact_us .contact_us_right .title {
  font-size: .9rem;
  font-weight: 500;
  color: rgba(51, 51, 51, 1);
  font-family: 'HarmonyOS Sans SC', sans-serif;
  margin-bottom: 1.25rem;
}

.container .contact_us .contact_us_right .code {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.075rem;
}

.container .contact_us .contact_us_right .code .code_item {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: start;
  gap: .5rem;
}

.container .contact_us .contact_us_right .code .code_item span {
  font-size: .45rem;
  font-weight: 500;
  color: rgba(51, 51, 51, 1);
  font-family: 'HarmonyOS Sans SC', sans-serif;
}

.container .contact_us .contact_us_right .code .code_item img {
  width: 5.05rem;
  height: 5.05rem;
}

/* 表单 */
.container .section {
  position: relative;
}

.container .section .section_banner {
  background: url("../../img/contact/contact_banner.png") no-repeat center;
  background-size: cover;
  width: 100%;
  height: 17.5rem;
  margin-bottom: 18.725rem;

}

.container .section .form {
  background-color: #fff;
  border-radius: .25rem;
  width: 40rem;
  /* height: 21.975rem; */
  position: absolute;
  top: 1.05rem;
  left: 4rem;

  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .8rem;
  box-shadow: 0px 20px 60px 0px rgba(17, 23, 46, 0.05);
  padding-bottom: 2.1rem;

}

.container .section .form .title {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  gap: .6957rem;
  margin: 2.1rem 0 1.8927rem 0;
  font-size: .9rem;
  font-weight: 500;
  color: rgba(51, 51, 51, 1);
  font-family: 'HarmonyOS Sans SC', sans-serif;
}

.container .section .form .form_line {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.25rem;
  width: 32rem;
}

.container .section .form .form_line .form_item {
  flex: 1;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: start;
  gap: .25rem;
}

.container .section .form .form_line .form_item label {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: .125rem;
  font-size: .4rem;
  font-weight: 400;
  color: rgba(51, 51, 51, 1);
  font-family: 'HarmonyOS Sans SC', sans-serif;
}

.container .section .form .form_line .form_item label .required {
  font-size: .4rem;
  font-weight: 700;
  color: rgba(255, 0, 0, 1);
  font-family: 'HarmonyOS Sans SC', sans-serif;
}

.container .section .form .form_line .form_item input {
  width: 100%;
  height: 1.25rem;
  border: 1px solid rgba(232, 232, 232, 1);
  border-radius: .25rem;
  padding: 0 .5rem;
}

.container .section .form .form_line .form_item input:focus {
  outline: none;
}

.container .section .form .form_line .form_item textarea {
  width: 100%;
  height: 4.5rem;
  border: 1px solid rgba(232, 232, 232, 1);
  border-radius: .25rem;
  padding: .375rem;
}

.container .section .form .form_line .form_item textarea:focus {
  outline: none;
}

.container .section .form .submit {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: .4rem;
  margin-top: 1.5rem;
  width: 3.8rem;
  height: 1.1rem;
  border-radius: 2.475rem;
  font-size: .4rem;
  font-weight: 400;
  font-family: 'HarmonyOS Sans SC', sans-serif;
  border: 1px solid rgba(17, 23, 46, 1);
  cursor: pointer;
  background: transparent;
}

.container .section .form .submit:hover {
  background: rgba(0, 89, 255, 1);
  color: #fff;
  border: 1px solid rgba(0, 89, 255, 1);
}

.container .section .form .submit img {
  width: .5rem;
  height: .5rem;
}

.container .section .form .submit .normal {
  display: block;
}

.container .section .form .submit .active {
  display: none;
}

.container .section .form .submit:hover .normal {
  display: none;
}

.container .section .form .submit:hover .active {
  display: block;
}