@charset "UTF-8";
@font-face {
  font-family: "myFont1";
  src: url("./../清松手寫體1.ttf");
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  position: relative;
}
body .fixed-image {
  min-height: 100vh;
  position: fixed;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: -5;
  opacity: 0.8;
}
body .filter {
  min-height: 100vh;
  background-color: rgba(138, 136, 136, 0.3);
}
body .filter header h1 {
  text-align: center;
  padding: 2rem;
  font-size: 4rem;
  font-weight: bold;
  font-family: monospace;
}
body .filter h4 {
  text-align: center;
  color: white;
  font-size: 3rem;
  font-family: "myFont1", sans-serif;
  cursor: pointer;
}
body .filter main {
  position: relative;
}
body .filter main .popup-area {
  min-height: 8rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
body .filter main .popup-area .popup {
  display: none;
  background: white;
  padding: 2rem 4rem;
  border-radius: 1.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  animation: pop 0.3s ease;
}
body .filter main .popup-area .popup h2 {
  font-size: 6rem;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
body .filter main .popup-area .popup.show {
  display: block;
}
@keyframes pop {
  from {
    transform: scale(0.7);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}
body .filter main .box-area {
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}
body .filter main .box-area .group {
  display: flex;
  justify-content: space-around;
  width: 80%;
  margin-bottom: 1.5rem;
}
body .filter main .box-area .group label {
  font-size: 1.5rem;
  font-weight: bold;
  font-family: monospace;
}
body .filter main .box-area .group input[type=checkbox] {
  transform: scale(1.5);
  margin-left: 0.5rem;
}
body .filter main .btn-area {
  margin-top: 1rem;
  display: flex;
  justify-content: center;
}
body .filter main .btn-area .btn {
  min-width: 6rem;
  min-height: 6rem;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  font-size: 2.1rem;
  font-weight: 600;
}
body .filter main .btn-area .btn:hover {
  transform: scale(0.9);
}
body .filter main .btn-area .btn:hover .p1 {
  display: none;
}
body .filter main .btn-area .btn:hover .p2 {
  display: block;
}
body .filter main .btn-area .btn .p2 {
  display: none;
  color: red;
}

/* 歷史彈跳視窗 */
.history-popup {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  max-height: 300px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 1rem;
  padding: 1rem 2rem;
  overflow-y: auto;
  font-size: 2.5rem;
  line-height: 2.8rem;
  display: none;
  z-index: 1000;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}
.history-popup .group {
  margin-bottom: 1rem;
  word-break: break-all;
}
.history-popup.show {
  display: block;
}

/* RWD */
@media (max-width: 768px) {
  .popup-area .popup h2 {
    font-size: 3.5rem;
  }
  .history-popup {
    font-size: 1.8rem;
    line-height: 2rem;
  }
}/*# sourceMappingURL=style.css.map */