<!DOCTYPE html>
<html lang="ko">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>오시는 길</title>
<style>
  /* 기본 스타일 */
  #map_05 { 
    clear: both; 
    overflow: hidden; 
  }

  /* 지도섹션 각각 clearB 단위로 적용 */
  #map_05 > .clearB {
    clear: both; 
    overflow: hidden; 
    margin-bottom: 20px; /* 섹션 간격 조정 */
  }

  /* 지도 영역 왼쪽 플로팅, 폭 70% */
  #map_05 > .clearB > div.map {
    float: left;
    width: 70%;
    box-sizing: border-box;
  }

  /* 주소 및 안내 영역 오른쪽 플로팅, 폭 25% */
  #map_05 > .clearB > div.map2 {
    float: right;
    width: 25%;
    box-sizing: border-box;
    padding: 0;
    background-color: #fff;
  }

  /* 안내 제목 */
  #map_05 > .clearB > div.map2 h3 {
    font-size: 35px;
    color: #82ca9c;
    padding-top: 10px;
    padding-bottom: 15px;
    margin: 0;
  }

  /* 안내 목록 */
  #map_05 > .clearB > div.map2 ul {
    padding: 0;
    margin: 0;
    list-style-type: none;
    font-size: 15px;
  }

  #map_05 > .clearB > div.map2 ul li {
    margin-bottom: 8px;
    line-height: 1.5;

    /* 중국어 텍스트 줄바꿈 처리 */
    white-space: normal !important;
    overflow: visible !important;
    text-overflow: clip !important;
    word-break: break-word;
  }

  /* 타이틀 텍스트 */
  #map_05 > .clearB > div.map2 ul li span.tit {
    display: block;
    font-size: 20px;
    color: #aaa;
    margin-top: 15px;
    line-height: 45px;
    font-weight: normal;
  }

  /* 다음맵 iframe 등 전체 너비 및 높이 */
  .root_daum_roughmap, iframe.map {
    width: 100% !important;
    box-sizing: border-box !important;
    border: 0 !important;
    padding: 0 !important;
    border-radius: 0 !important;
  }

  iframe.map {
    height: 550px;
  }

  /* 중국 지도 이미지 스타일 */
  #map_05 > .clearB > div.map img {
    width: 100%;
    border-radius: 8px;
    display: block;
  }

  /* 모바일 반응형 */
  @media (max-width: 1023px) {
    #map_05 > .clearB > div.map,
    #map_05 > .clearB > div.map2 {
      float: none;
      width: 100%;
    }
    
    .wrap_map {
      height: 250px !important;
    }
    
    #map_05 > .clearB > div.map2 h3 {
      font-size: 22px;
      padding-bottom: 5px;
      padding-top: 20px;
    }
    
    #map_05 > .clearB > div.map2 ul li span.tit {
      font-size: 15px;
      margin-top: 0;
      line-height: 25px;
    }
  }
</style>
</head>
<body>

<h2 style="text-align:center; margin-bottom:40px;">오시는 길</h2>

<div id="map_05">
  <!-- 한국 지점 -->
  <div class="clearB">
    <div class="map">
      <!-- 카카오맵 iframe 예시 -->
      <iframe 
        class="map"
        src="https://map.kakao.com/link/map/대전서구갈마동1448" 
        frameborder="0" 
        allowfullscreen 
        scrolling="no"></iframe>
    </div>
    <div class="map2">
      <h3>Korea Branch Address</h3>
      <ul>
        <li><span class="tit">한국지사</span> [35265] 대전광역시 서구 갈마동 1448, 202호</li>
        <li><span class="tit">전화문의(한국)</span> 1544-8576</li>
        <li><span class="tit">메일문의</span> thf4452@huiduoda.com</li>
        <li><span class="tit">운영시간</span> 평일 09:00~18:00 / 토,일,공휴일 휴무</li>
      </ul>
    </div>
  </div>

  <!-- 중국 본사 -->
  <div class="clearB">
    <div class="map">
      <!-- 이미지로 대체하는 중국 지도 -->
      <img src="https://example.com/china-map.jpg" alt="중국 본사 위치 지도" />
    </div>
    <div class="map2">
      <h3>China Headquarters Address</h3>
      <ul>
        <li><span class="tit">中国总部</span> 中国黑龙江省哈尔滨市南岗区一曼街80号 国际大厦 4楼 C10室</li>
        <li><span class="tit">电话咨询（中国）</span> +86-176-0367-3962</li>
        <li><span class="tit">邮件咨询</span> thf4452@huiduoda.com</li>
        <li><span class="tit">营业时间</span> 工作日 08:30~17:30 / 周六、周日及法定节假日休息</li>
      </ul>
    </div>
  </div>
</div>

</body>
</html>