  /* 基础样式 */
    body {
      font-family: 'Segoe UI', 'Microsoft YaHei', sans-serif;
      background-color: #f5f9ff;
      color: #333;
      line-height: 1.6;
      margin: 0;
      padding: 0;
    }
    
    #contact-container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 40px 20px;
    }
    
    .contact-row {
      display: flex;
      flex-wrap: wrap;
      margin: 0 -15px 40px;
      align-items: stretch;
      gap: 20px;
    }
    
    /* 调整两侧占比 */
    .contact-map {
      flex: 1.2;
      min-width: 300px;
    }
    
    .contact-form {
      flex: 0.8;
      min-width: 300px;
    }
	
	
	
    h2 {
      color: #0d47a1;
      margin-bottom: 20px;
      font-size: 1.5em;
      position: relative;
      padding-bottom: 10px;
    }
    
    h2:after {
      content: "";
      position: absolute;
      bottom: 0;
      left: 0;
      width: 50px;
      height: 3px;
      background: linear-gradient(90deg, #1976d2, #0d47a1);
    }
    
    .map-wrapper {
      background: white;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 5px 15px rgba(0,0,0,0.1);
      height: 650px;
      display: flex;
      flex-direction: column;
    }
    
    .map-wrapper h2 {
      padding: 30px 30px 10px 30px;
      margin: 0;
    }
	
	.map-wrapper  h2:after {
	  content: "";
	  position: absolute;
	  margin-left: 30px;
	  bottom: 0;
	  left: 0;
	  width: 50px;
	  height: 3px;
	  background: linear-gradient(90deg, #1976d2, #0d47a1);
	}
    
    .map-wrapper img {
      width: 100%;
      height: calc(100% - 110px);
      object-fit: cover;
	  margin-top: 30px;
    }
    
    .address-info {
      padding: 15px 20px;
      background: #f8f9fa;
      display: flex;
      align-items: center;
      border-top: 1px solid #eee;
    }
    
    .form-wrapper {
      background: white;
      padding: 30px;
      border-radius: 10px;
      box-shadow: 0 5px 15px rgba(0,0,0,0.1);
      height: 650px;
      display: flex;
      flex-direction: column;
    }
    
    #contactForm {
      flex: 1;
      display: flex;
      flex-direction: column;
    }
    
    .form-group {
      margin-bottom: 15px;
    }
    
    label {
      display: block;
      margin-bottom: 8px;
      color: #555;
      font-weight: 500;
    }
    
    .required {
      color: #e53935;
    }
    
    input, textarea {
      width: 100%;
      padding: 12px 15px;
      border: 1px solid #ddd;
      border-radius: 6px;
      font-size: 16px;
      transition: all 0.3s;
      box-sizing: border-box;
    }
    
    input:focus, textarea:focus {
      border-color: #1976d2;
      box-shadow: 0 0 0 3px rgba(25, 118, 210, 0.2);
      outline: none;
    }
    
    textarea {
      resize: vertical;
      min-height: 100px;
      flex: 1;
    }
    
    .submit-btn-container {
      margin-top: auto;
      padding-top: 20px;
    }
    
    .submit-btn {
      width: 100%;
      padding: 14px;
      background: linear-gradient(135deg, #1976d2, #0d47a1);
      color: white;
      border: none;
      border-radius: 6px;
      font-size: 16px;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.3s;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    
    .submit-btn i {
      margin-right: 8px;
    }
    
    .submit-btn:hover {
      transform: translateY(-2px);
      box-shadow: 0 5px 15px rgba(25, 118, 210, 0.3);
    }
    
    /* 底部联系信息 - 修正版 */
    .contact-info-bottom {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      margin-top: 40px;
      gap: 15px;
      width: 100%;
    }
    
    .info-item {
      flex: 1 1 calc(33.333% - 30px); /* 三个项目均分宽度，考虑gap */
      min-width: 200px;
      background: white;
      padding: 25px;
      border-radius: 10px;
      box-shadow: 0 5px 15px rgba(0,0,0,0.05);
      text-align: center;
      transition: all 0.3s;
      box-sizing: border-box;
    }
    
    .info-item:hover {
      transform: translateY(-5px);
      box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    }
    
    .info-item i {
      font-size: 2em;
      color: #1976d2;
      margin-bottom: 15px;
    }
    
    .info-item h3 {
      color: #0d47a1;
      margin-bottom: 10px;
      font-size: 1.2em;
    }
    
    .info-item p {
      color: #555;
      margin: 0;
    }
    
    /* 响应式设计 */
    @media (max-width: 768px) {
      .info-item {
        flex: 1 1 100%;
        min-width: 100%;
      }
    }
    /* 响应式设计 */
    @media (max-width: 768px) {
      .contact-row {
        flex-direction: column;
        gap: 15px;
      }
      
      .contact-map, .contact-form {
        width: 100%;
      }
      
      .map-wrapper, .form-wrapper {
        height: auto;
      }
      
      .map-wrapper img {
        height: 350px;
      }
      
      .info-item {
        min-width: 100%;
      }
    }