
  /* 基础容器设置，兼容UEE宽屏与窄屏主题 */
  .qsr-contact-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    color: #333;
    line-height: 1.6;
  }
  
  /* 头部横幅设计 */
  .qsr-contact-hero {
    text-align: center;
    padding: 50px 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 8px;
    margin-bottom: 40px;
  }
  .qsr-contact-hero h1 {
    font-size: 32px;
    color: #008a3e; /* 品牌绿色 */
    margin-bottom: 15px;
    font-weight: 700;
  }
  .qsr-contact-hero p {
    font-size: 18px;
    color: #555;
    max-width: 800px;
    margin: 0 auto;
  }

  /* 核心信息区左右布局 */
  .qsr-contact-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 40px;
  }
  
  /* 左侧：联系信息卡片 */
  .qsr-info-panel {
    flex: 1;
    min-width: 350px;
    background: #ffffff;
    padding: 35px;
    border: 1px solid #eaeaea;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  .qsr-info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px dashed #eee;
  }
  .qsr-info-item:last-of-type {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
  }
  .qsr-icon {
    min-width: 24px;
    margin-right: 18px;
    margin-top: 3px;
  }
  .qsr-text h3 {
    margin: 0 0 8px;
    font-size: 16px;
    color: #222;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }
  .qsr-text p {
    margin: 0;
    font-size: 15px;
    color: #666;
  }
  .qsr-text a {
    color: #008a3e;
    text-decoration: none;
    font-weight: bold;
  }
  .qsr-text a:hover {
    text-decoration: underline;
  }

  /* B2B 极速响应信任标语 */
  .qsr-trust-banner {
    margin-top: 25px;
    padding: 15px 20px;
    background: #e6f4ea; /* 浅绿底色 */
    border-left: 4px solid #008a3e; /* 左边绿色高亮 */
    border-radius: 0 4px 4px 0;
    font-size: 14px;
    color: #008a3e;
    font-weight: 600;
  }

  /* 右侧：地图面板 */
  .qsr-map-panel {
    flex: 1;
    min-width: 350px;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #eaeaea;
    background: #fafafa;
    min-height: 450px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
  }

  /* 底部B2B实力背书 */
  .qsr-b2b-features {
    border-top: 1px solid #eaeaea;
    padding-top: 40px;
    margin-bottom: 40px;
  }
  .qsr-b2b-features h2 {
    font-size: 24px;
    text-align: center;
    color: #222;
    margin-bottom: 30px;
  }
  .qsr-features-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
  }
  .qsr-feature-card {
    flex: 1;
    min-width: 220px;
    background: #fff;
    padding: 25px 20px;
    text-align: center;
    border: 1px solid #f0f0f0;
    border-radius: 6px;
    transition: transform 0.3s ease;
  }
  .qsr-feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
  }
  .qsr-feature-card h3 {
    font-size: 18px;
    color: #008a3e;
    margin: 15px 0 10px;
  }
  .qsr-feature-card p {
    font-size: 14px;
    color: #666;
    margin: 0;
  }

  /* 移动端适配 */
  @media (max-width: 768px) {
    .qsr-contact-hero { padding: 30px 15px; }
    .qsr-contact-hero h1 { font-size: 26px; }
    .qsr-info-panel { padding: 25px 15px; min-width: 100%; }
    .qsr-map-panel { min-height: 350px; min-width: 100%; }
  }
