.content {
    display: flex;
    gap: 40px;
    padding: 40px;
    margin: 0 auto;
    background-color: #fff;
    border-radius: 8px;
 
}

.contact-info,
.contact-form {
      justify-content: center; /* 水平居中 */
      align-items: center; 
}

.contact-info h2 {
    color: #000;
    font-size: 32px;
    margin-bottom: 20px;
    font-weight: bold;
}

.contact-info p {
    line-height: 1.8;
    font-size: 14px;
    color: #555;
}

.icon {
    color: #e98e3d;
    margin-right: 8px;
}

.social-icons a {
    margin-right: 10px;
    color: #e98e3d;
    font-size: 18px;
}

.contact-form h3 {
    color: #e98e3d;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    font-size: 18px;
}

.contact-form h3 i {
    margin-right: 10px;
}

.input-group {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.input-group input {
    flex: 1;
    padding: 10px;
    border: 1px solid #e98e3d;
    border-radius: 4px;
    font-size: 14px;
}
.contact-form{
	  max-width: 600px;
	  margin: 0px auto;
	  padding: 20px;
	  background-color: #f9f9f9;
	  box-shadow: 0 10px 30px rgb(0 0 0 / 34%);
}
.contact-form input,
.contact-form textarea {
    width: 80%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #e98e3d;
    border-radius: 4px;
    font-size: 14px;
    color: #e98e3d;
}

.contact-form textarea {
    resize: none;
}

.contact-form button {
    background-color: white;
    color: #e98e3d;
    padding: 10px 20px;
    border: 1px solid #e98e3d;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 14px;
}

.contact-form button:hover {
    background-color: #ffdfce;
}
  @media (max-width: 768px) {
      .content {
        flex-direction: column;
      }

      .contact-info,
      .contact-form {
        width: 100%;
      }
    }

    @media (max-width: 480px) {
      .contact-form input,
      .contact-form button {
        font-size: 13px;
        padding: 10px;
      }

      .contact-info h2 {
        font-size: 20px;
        font-weight: bold;
      }
    }