* {
      margin: 0;
      padding: 0;
    }
    .header {
      background-color: blue;
    }
    .footer {
      height: 100px;
      background-color: blue;
    }
    .map-body {
      width: 1200px;
      height: 900px;
      margin: 0 auto;
      position: relative;
      /* transform: translate3d(0,0,0); */
      transition: 1s;
    }
    .map-body>iframe {
      width: 100%;
      height: 100%;
    }
    .map-body-mask {
      position: absolute;
      left: 0;
      top: 0;
      width: 100%;
      height: 100%;
      cursor: pointer;
    }
    .map-body-mask-title {
      pointer-events: none;
      position: fixed;
      display: none;
      z-index: 10;
      font-size: 12px;
    }

    .map-body-reset {
      position: absolute;
      /* width: 300px;
      height: 100px; */
      top: 0;
      left: 50%;
      transform: translateX(-50%);
     /* background-color: #000; */
      color: #fff;
      display: none;
    }

.map-body.fullScreen {
      width: 100vw;
      height: 100vh;
    }
    .map-body-right-reset {
      display: none;
      position: absolute;
      right: 0;
      top: 200px;
      width: 40px;
      height: 50px;
      border-radius: 50px 0 0 50px;
      background-color: #005a9f;
      cursor: pointer;
    }
    .map-body-right-reset>svg {
      fill: #fff;
      width: 24px;
      height: 24px;
      position: absolute;
      top: 50%;
      left: 66%;
      transform: translate(-50%, -50%);
    }
    @media (min-width: 780px)  {
      .map-body-right-reset {
        display: none !important;
      }
    }
    @media (max-width: 780px)  {
      .map-body {
        width: 100vw;
        height: 100vh;
      }
      .map-body-reset {
        display: none !important;
      }
    }