  .mapView {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;

    .leftContent {
      width: calc(100% - 360px);
      height: 100%;
      position: relative;
      display: inline-block;
      .switchButtons {
        position: absolute;
        z-index: 1;
        left: 50%;
        top: 20px;
        transform: translate(-50%);
      }
    }
    .rightContent {
      display: inline-block;
      width: 360px;
      height: 100%;
      background: rgba(20, 23, 49, 0.85);
    }
  }