﻿body {
      background: #f5f6fa;
    }
    .contact-container {
      max-width: 1100px;
      margin: 32px auto 40px auto;
      background: #fff;
      border-radius: 12px;
      box-shadow: 0 2px 8px rgba(0,0,0,0.04);
      padding: 48px 32px 32px 32px;
      display: flex;
      gap: 48px;
      flex-wrap: wrap;
    }
    .contact-info {
      flex: 1 1 320px;
      min-width: 320px;
    }
    .contact-info h2 {
      font-size: 2em;
      color: var(--primary);
      margin-bottom: 24px;
    }
    .contact-list {
      list-style: none;
      padding: 0;
      margin: 0 0 24px 0;
      font-size: 1.1em;
      color: #333;
    }
    .contact-list li {
      margin-bottom: 16px;
      display: flex;
      align-items: center;
    }
    .contact-list label {
      width: 90px;
      color: #888;
      font-weight: bold;
      margin-right: 10px;
      flex-shrink: 0;
    }
    .wechat-section {
      margin-top: 24px;
      text-align: center;
    }
    .wechat-section img {
      width: 120px;
      height: 120px;
      border-radius: 8px;
      border: 1px solid #eee;
      background: #fafafa;
      display: block;
      margin: 0 auto; /* 居中图片 */
    }
    .wechat-section span {
      display: block;
      margin-top: 8px;
      color: #888;
      font-size: 0.98em;
      text-align: center;
    }
    .contact-map {
      flex: 1 1 320px;
      min-width: 320px;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: flex-start;
    }
    .contact-map h3 {
      font-size: 1.15em;
      color: var(--primary);
      margin-bottom: 12px;
      font-weight: bold;
    }
    .contact-map iframe {
      width: 100%;
      min-width: 280px;
      height: 260px;
      border: none;
      border-radius: 8px;
      box-shadow: 0 1px 4px rgba(0,0,0,0.03);
    }
    @media (max-width: 900px) {
      .contact-container {
        flex-direction: column;
        padding: 24px 10px;
        gap: 24px;
      }
      .contact-map iframe {
        height: 180px;
      }
    }