.contact-container {
  display: flex;
  max-width: 1500px;
  margin: 0 auto;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
  overflow: hidden;
}




.contact-info {
  flex: 1.1;
  padding: 36px 32px 36px 48px;
  background: #fff;
}

.contact-info h2 {
  color: #0d3e7c;
  font-size: 3rem;
  margin-bottom: 18px;
}

.contact-info h3 {
  color: #444;
  font-size: 1.1rem;
  margin-bottom: 8px;
  font-weight: 500;
  display: flex;
  text-align: center;
}

.contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.contact-list li {
  margin-bottom: 12px;
  font-size: 1.2rem;
  display: flex;
  align-items: flex-start;
}

.contact-list .icon img {
  width: 25px;
  height: 25px;
  margin-right: 10px;
  font-size: 0.8em;
  color: #ffd21c;
  flex-shrink: 0;
}

.contact-form-area {
  flex: 1;
  padding: 36px 48px 36px 32px;
  background: #f7f9fb;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-form {
  width: 100%;
  max-width: 370px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-form label {
  font-size: 1rem;
  color: #222;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.contact-form input,
.contact-form textarea {
  border: 1px solid #d0d6db;
  border-radius: 6px;
  padding: 8px 12px;
  font-size: 1rem;
  background: #f7f9fb;
  transition: border 0.2s;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border: 1.5px solid #ffd21c;
  outline: none;
}

.contact-form textarea {
  min-height: 80px;
  resize: vertical;
}

.captcha-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.captcha-img {
  height: 32px;
  border-radius: 4px;
  border: 1px solid #eee;
}

.submit-btn {
  width: 100px;
  background: #feca0a;
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: 10px 0;
  font-size: 1.1rem;
  font-weight: bold;
  cursor: pointer;
  margin-top: 8px;
}



.contact-form-label {
  position: relative;
}

.required {
  color: #e53935;
  font-size: 0.85em;
  top: 0;
  position: absolute;
}

.style_public_contact {
  width: 70%;
  margin: 0 auto;
  margin-bottom: 50px !important;
  margin-top: 10px !important;
  display: flex;
  justify-content: space-between;
}

.contact_AQ {
  width: 48%;
}

.contact_BQ {
  width: 48%;
}

.contact_AQ>div {
  display: flex;
  align-items: center;
  margin-bottom: 18px;
  font-size: 18px;
}

.contact_AQ img {
  width: 32px;
  height: 32px;
  margin-right: 10px;
}

.contact {
  font-size: 2rem;
  color: #0D3E7C;
  font-weight: bold;
  margin-bottom: 18px;
}

.contact_BQ form>div {
  margin-bottom: 14px;
}

.contact_BQ form>div i {
  color: #e53935;
}

.contact_BQ input,
.contact_BQ textarea {
  width: 100%;
  padding: 8px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
}

.contact_BQ button.submit {
  background: #feca0a;
  color: #fff;
  border: none;
  padding: 10px 30px;
  border-radius: 4px;
  font-size: 18px;
  cursor: pointer;
  transition: background 0.2s;
}

.contact_BQ button.submit:hover {
  background: #e0b200;
}

.Code {
  display: flex;
  align-items: center;
}

.Code img {
  margin-left: 10px;
  height: 32px;
}

.container {
  justify-content: center;
}

.footcopntainer {
  justify-content: center;
  gap: 15px;
  padding: 0 10vw;

}

.about-banner {
  margin-top: 90px;
}

.about-banner-img {
  width: 100%;
  max-width: 100%;
  height: auto;

  margin-bottom: 10px;
}

.title-box {
  text-align: center;
  margin: 0 auto;
}

.title-box h2 {
  font-size: 35px;
  font-weight: bold;
  color: #333;
  display: inline-block;
  border-bottom: none;
  position: relative;
}

.title-box h2::after {
  content: "";
  display: block;
  margin: 0 auto;
  margin-top: 8px;
  width: 35%;
  border-bottom: 6px solid rgb(254, 202, 10);
}

.breadcrumb {
  color: #666;
  font-size: 14px;
  padding: 8px 5px;
  width: 79.4%;
  border: 1px solid #eee;
  text-align: left;
}

.breadcrumb a {
  text-decoration: none;
  color: #666;
}

.breadcrumb a:hover {
  text-decoration: underline;
}



@media (max-width: 1200px) {
  .style_public_contact {
    width: 90% !important;
  }

  .about-banner {
    margin-top: 72px;
  }
}



@media (max-width: 900px) {
  .style_public_contact {
    flex-direction: column;
    width: 95% !important;
  }
  .breadcrumb {
    font-size: 12px;
    padding: 6px 4px;
}

  .contact_AQ,
  .contact_BQ {
    width: 100% !important;
    margin-bottom: 20px;
  }
}

/* 改进的表单元素样式 */
.contact_BQ input,
.contact_BQ textarea {
    width: 100%;
    padding: 12px 15px;
    font-size: 14px;
    border: 1px solid #ddd;
    border-radius: 5px;
    box-sizing: border-box;
    background: white;
    transition: all 0.3s ease;
}

.contact_BQ input:focus,
.contact_BQ textarea:focus {
    outline: none;
    border-color: #feca0a;
    box-shadow: 0 0 5px rgba(254, 202, 10, 0.3);
}

.contact_BQ textarea {
    min-height: 100px;
    resize: vertical;
    font-family: inherit;
}

.contact_BQ form > div {
    margin-bottom: 20px;
    position: relative;
}

.contact_BQ form > div > div:first-child {
    margin-bottom: 8px;
    font-weight: 500;
    color: #333;
}

.contact_BQ form > div i {
    color: #fa5d00;
    margin-left: 4px;
}

.Code {
    display: flex;
    align-items: flex-end;
    gap: 10px;
}

.Code input {
    flex: 1;
    height: 45px;
}

.Code img {
    height: 45px;
    border-radius: 5px;
    cursor: pointer;
    border: 1px solid #ddd;
    background: white;
    flex-shrink: 0;
}

.contact_BQ button.submit-btn {
    background: #feca0a;
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 20px;
    display: block;
    width: 100%;
}

.contact_BQ button.submit-btn:hover {
    background: #e0b200;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(254, 202, 10, 0.3);
}
@media (max-width: 900px){
  .contact_AQ>div {
    font-size: 14px;
  }

  .breadcrumb {

    width: 95%;

  }
  .title-box h2 {
    font-size: 20px;

  }

}