
  .uee-contact-wrap{
    max-width:1500px;
    margin:0 auto;
    padding:40px 20px;
    font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Arial,sans-serif;
    color:#1f2933;
  }

  .uee-contact-wrap h2{
    font-size:28px;
    font-weight:600;
    margin-bottom:30px;
  }

  /* 左右主结构 */
  .uee-contact-main{
    display:flex;
    gap:40px;
    height:500px;
  }

  /* 左侧信息 */
  .uee-contact-left{
    flex:0 0 50%;
    height:100%;
  }

  .uee-contact-list{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:24px 28px;
    height:100%;
  }

  .uee-contact-item{
    display:flex;
    gap:16px;
    padding:22px 24px;
    border:1px solid #e5e7eb;
    border-radius:10px;
    background:#fff;
  }

  .uee-contact-icon{
    flex:0 0 44px;
    width:44px;
    height:44px;
    border-radius:50%;
    background:#3aa0e6;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:20px;
    line-height:1;
  }

  .uee-contact-text{
    font-size:15px;
    line-height:1.6;
  }

  .uee-contact-text strong{
    display:block;
    font-weight:600;
    margin-bottom:6px;
  }

  /* 右侧地图 */
  .uee-contact-map{
    flex:0 0 50%;
    height:100%;
    border-radius:12px;
    overflow:hidden;
    border:1px solid #e5e7eb;
  }

  .uee-contact-map iframe{
    width:100%;
    height:100%;
    border:0;
    display:block;
  }

  /* 移动端适配 */
  @media(max-width:1024px){
    .uee-contact-main{
      flex-direction:column;
      height:auto;
    }

    .uee-contact-left,
    .uee-contact-map{
      flex:100%;
      height:auto;
    }

    .uee-contact-list{
      grid-template-columns:1fr;
    }

    .uee-contact-map iframe{
      height:360px;
    }
  }
