.contact-container {
    max-width: 1400px;
    margin: 100px auto;
    padding: 60px 20px;
    background: #fff;
  }
  
  /* 顶部标题样式 */
  .contact-header {
    text-align: center;
    margin-bottom: 60px;
  }
  
  .contact-title {
    font-size: 36px;
    color: #333;
    margin-bottom: 15px;
  }
  
  .contact-subtitle {
    font-size: 18px;
    color: #666;
  }
  
  /* 主要内容区域 */
  .contact-content {
    display: flex;
    gap: 40px;
    margin-bottom: 60px;
  }
  
  /* 左侧联系信息 */
  .contact-info {
    flex: 1;
  }
  
  .info-card {
    padding: 30px;
    background: #f8f9fa;
    border-radius: 15px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
  }
  
  .info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  }
  
  .info-icon {
    width: 24px;
    height: 24px;
    object-fit: contain;
  }
  
  .info-details {
    width: 100%;
  }

  .info-header {
    display: flex;
    align-items: center;
    margin-bottom: 35px;
    gap: 15px;
  }
  
  
  .info-details h3 {
    font-size: 20px;
    color: #333;
    margin: 0;
  }
  
.info-details p {
  font-size: 16px;
  color: #666;
  margin: 5px 0;
  padding-left: 39px; /* 24px(图标宽度) + 15px(图标和标题的间距) */
}
  
  .service-time {
    font-size: 14px;
    color: #999;
  }
  
  /* 右侧平台区域 */
  .contact-platforms {
    flex: 1;
  }
  
  .platform-section {
    margin-bottom: 40px;
  }
  
  .platform-title {
    font-size: 24px;
    color: #333;
    margin-bottom: 20px;
    padding-left: 15px;
    border-left: 4px solid #00928c;
  }
  
  .platform-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
  
  .platform-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
  }
  
  .platform-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  }
  
  .platform-item img {
    width: 80px;
    height: 80px;
    margin-bottom: 10px;
  }
  
  .platform-item span {
    font-size: 16px;
    color: #333;
  }
  
  /* 底部地图 */
  .contact-map {
    height: 400px;
    border-radius: 15px;
    overflow: hidden;
  }
  
  #map {
    width: 100%;
    height: 100%;
  }
  
  /* 响应式设计 */
  @media (max-width: 992px) {
    .contact-content {
      flex-direction: column;
    }
  
    .platform-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  
  @media (max-width: 768px) {
    .contact-container {
      padding: 40px 15px;
    }
  
    .contact-title {
      font-size: 28px;
    }
  
    .contact-subtitle {
      font-size: 16px;
    }
  
    .info-card {
      padding: 20px;
    }
  
    .info-icon {
      width: 50px;
      height: 50px;
    }
  
    .info-details h3 {
      font-size: 18px;
    }
  
    .info-details p {
      font-size: 14px;
    }
  
    .platform-grid {
      grid-template-columns: 1fr;
    }
  
    .contact-map {
      height: 300px;
    }
  }
  
  /* 动画效果 */
  @keyframes slideInLeft {
    from {
      opacity: 0;
      transform: translateX(-50px);
    }
    to {
      opacity: 1;
      transform: translateX(0);
    }
  }
  
  @keyframes slideInRight {
    from {
      opacity: 0;
      transform: translateX(50px);
    }
    to {
      opacity: 1;
      transform: translateX(0);
    }
  }
  
  @keyframes fadeIn {
    from {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
  }

  /* 表单样式 */
.contact-form {
    margin-top: 60px;
    padding: 40px;
    background: #f8f9fa;
    border-radius: 15px;
  }
  
  .form-title {
    font-size: 24px;
    color: #333;
    margin-bottom: 30px;
    text-align: center;
  }
  
  .form-content {
    max-width: 800px;
    margin: 0 auto;
  }
  
  .form-group {
    margin-bottom: 25px;
  }
  
  .form-label {
    display: block;
    font-size: 16px;
    color: #333;
    margin-bottom: 8px;
  }
  
  /* 单选框组样式 */
  .radio-group {
    display: flex;
    gap: 30px;
  }
  
  .radio-item {
    display: flex;
    align-items: center;
    cursor: pointer;
  }
  
  .radio-item input[type="radio"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    width: 18px;
    height: 18px;
    border: 2px solid #ddd;
    border-radius: 50%;
    margin-right: 8px;
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
  }

  /* 选中状态的内部圆点 */
.radio-item input[type="radio"]:checked::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    background-color: #00928c;
    border-radius: 50%;
  }

  /* 悬停状态 */
.radio-item input[type="radio"]:hover {
    border-color: #00928c;
  }

  /* 选中状态的样式 */
.radio-item input[type="radio"]:checked {
    border-color: #00928c;
  }
  
  .radio-text {
    font-size: 16px;
    color: #333;
  }
  
  /* 输入框样式 */
  .form-input {
    width: 100%;
    height: 45px;
    padding: 0 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
    color: #333;
    transition: all 0.3s ease;
  }
  
  .form-input:focus {
    border-color: #00928c;
    box-shadow: 0 0 0 2px rgba(0,146,140,0.1);
    outline: none;
  }
  
  /* 文本域样式 */
  .form-textarea {
    width: 100%;
    height: 120px;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
    color: #333;
    resize: vertical;
    transition: all 0.3s ease;
  }
  
  .form-textarea:focus {
    border-color: #00928c;
    box-shadow: 0 0 0 2px rgba(0,146,140,0.1);
    outline: none;
  }
  
  /* 提交按钮样式 */
  .form-submit {
    display: block;
    width: 100%;
    max-width: 200px;
    height: 45px;
    margin: 40px auto 0;
    background: #00928c;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
  }
  
  .form-submit:hover {
    background: #007c77;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,146,140,0.2);
  }
  
  /* 响应式调整 */
  @media (max-width: 768px) {
    .contact-form {
      padding: 30px 20px;
    }
  
    .radio-group {
      flex-direction: column;
      gap: 15px;
    }
  
    .form-submit {
      max-width: 100%;
    }
  }
  
  /* 表单验证提示样式 */
  .form-input.error,
  .form-textarea.error {
    border-color: #ff4d4f;
  }
  
  .error-message {
    font-size: 14px;
    color: #ff4d4f;
    margin-top: 5px;
  }