.relative {
  position: relative;
}

.absolute {
  position: absolute;
}
.result_hideing{
  display: none;
}

/* 【以上內容勿動!!!  有關基本樣式設定】 */
/* 開版設定 */
.wrap {
  max-width: 1000px;
  margin: 0 auto;
  /* 【超過】 開版範圍 就不呈現 */
  overflow: hidden;
}

.container {
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
}
.item12-1 {
  top: 79%;
  left: 8%;
  width: 40.6%;
  height: 6%;
}
.item12-2 {
  top: 81%;
  left: 57%;
  width: 31.1%;
}
.item12-3 {
  top: 85%;
  left: 50%;
  width: 46%;
}
.item13-1 {
  top: 75.8%;
  left: 18%;
  width: 28%;
}
.item13-2 {
  top: 75.8%;
  left: 62%;
  width: 28%;
}
.item13-3 {
  top: 81.8%;
  left: 8%;
  width: 41.8%;
}
.item13-4 {
  top: 81.8%;
  left: 52%;
  width: 41.8%;
}
.item14-1 {
  top: 79.8%;
  left: 57%;
  width: 32.8%;
  height: 16%;
}
/* ani */
.ani-scale {
  animation: scale 1s infinite ease-in-out;
}
@keyframes scale {
  0% {
    transform: scale(1, 1);
  }
  50% {
    transform: scale(1.1, 1.1);
  }
  100% {
    transform: scale(1, 1);
  }
}
/* 彈跳視窗S */
.popBG {
  position: fixed;
  width: 100vw;
  height: 100vh;
  left: 0%;
  top: 0%;
  z-index: 1000;
  background-color: rgb(0, 0, 0, 0.7);
  transition: all 0.5s;
  opacity: 0;
  visibility: hidden;
}
.popContain {
  opacity: 0;
  visibility: hidden;
  display: none;
}
.popControl--active {
  opacity: 1;
  visibility: visible;
  display: block;
}

.popContainer {
  max-width: 1000px;
  width: 100%;
  /* 這裡回推高度要跟【js-xmark】的字體大小一致 且要【負數】 */
  margin: -3rem auto 0 auto;
}

.xmarkControl {
  position: sticky;
  top: 2%;
  cursor: pointer;
  border-radius: 5px;
}

.js-xmark {
  position: absolute;
  right: 2%;
  font-size: 3rem;
  padding: 0 0.5%;
  border-radius: 5px;
  background-color: #000;
  color: #fff;
  transition: all 0.3s;
}

.js-xmark:hover {
  background-color: #fff;
  color: #000;
  rotate: 180deg;
}

@media (max-width: 768px) {
  .popContainer {
    width: 90%;
    /* 這裡回推高度要跟【js-xmark】的字體大小一致 且要【負數】 */
    margin: -2.5rem auto 0 auto;
  }

  .js-xmark {
    font-size: 2.5rem;
    padding: 0 1%;
  }
}
/* 彈跳視窗E */