* {
  /* border: solid 1px magenta; */
}

svg {
  max-width: 1200px;
  height: 500px;
}

.container {
  max-width: 800px;
  margin: auto;
}

.mapael .map {
  position: relative;
}

/* 所有縮放按鈕 */
.mapael .zoomButton {
  background-color: #fff;
  border: 1px solid #ccc;
  color: #000;
  width: 25px;
  height: 25px;
  line-height: 25px;
  text-align: center;
  border-radius: 3px;
  cursor: pointer;
  position: absolute;
  top: 0;
  font-weight: bold;
  left: 10px;

  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -o-user-select: none;
  user-select: none;
}

/* 縮放／重設按鈕 */
.mapael .zoomReset {
  top: 10px;
}
.mapael .zoomIn {
  top: 40px;
}
.mapael .zoomOut {
  top: 70px;
}

.mapael .mapTooltip {
  position: absolute;
  background-color: #fff;
  -moz-opacity: 0.7;
  opacity: 0.7;
  filter: alpha(opacity=70);
  border-radius: 10px;
  padding: 10px;
  z-index: 1000;
  max-width: 200px;
  display: none;
  color: #232323;
}

/* 洲 */
.asia {
  background-image: url("images/asia.svg");
}
.europe {
  background-image: url("images/europe.svg");
  margin-bottom: 1em;
}
.oceania {
  background-image: url("images/oceania.svg");
}

/* 地理位置清單*/
.destination-title {
  text-align: center;
  margin: 2em 0;
  font-size: 30px;
  font-weight: normal;
  letter-spacing: 2px;
  line-height: 1.4;
}

.country-block {
  background-color: #000;
  border: solid 2px #ffc90e;
  margin: 0 2em;
  margin-bottom: 1em;
}

.continent {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  letter-spacing: 2px;
  line-height: 1.4;
  padding: 2em;
}

.continent:nth-child(even) {
  background: #1e1e1e;
}

.continent-area {
  padding: 0 2em;
}

.continent-area .continent-img {
  width: 10em;
  height: 10em;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.continent-area .continent-name {
  text-align: center;
  font-size: 25px;
  font-weight: bold;
}

.continent-area-list {
  letter-spacing: 1px;
  display: contents;
}
.continent-area-list > ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(10rem, 1fr));
  grid-gap: .5rem;
}

.continent-country-name {
  padding: 0 1em;
  padding-bottom: 0.5em;
  color: #ffc90e;
  transition: ease-in 0.3s;
  cursor: pointer;
  font-size: 18px;
}

.continent-country-name span:focus,
.continent-country-name:hover {
  color: #fff;
}

.continent-country-name span {
  margin-left: 1em;
}

.continent-country-airport {
  display: block;
}
.continent-country-airport ul {
  list-style-type: square;
  margin: 0;
}
.continent-country-airport ul > li {
  margin: 15px 0;
}
.continent-country-airport ul > li a {
  color: #fff;
}
.continent-country-airport ul > li a:hover {
  color: #ffc90e;
}

@media screen and (max-width: 767px) {
  .continent-area > .continent-img {
    width: 8em;
    height: 8em;
  }
  .destination-title {
    margin: 1.5em 0;
  }
  .continent-country-airport {
    display: none;
  }
}

@media screen and (max-width: 575px) {
  .destination-title {
    margin: 1em 0;
  }
  .continent {
    flex-direction: column;
    align-items: flex-start;
  }
  .continent-area {
    margin-bottom: 1em;
    padding: 0;
    display: flex;
    align-items: center;
    width: 100%;
    border-bottom: solid 1px #ffc90e;
  }
  .continent-area .continent-img {
    width: 8em;
    height: 8em;
  }
  .continent-country-airport {
    display: none;
  }
}
