@charset "UTF-8";
:root {
  --remBasicSize: 16px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  list-style: none;
}

body,
html {
  font-family: "Noto Sans TC", Helvetica, Arial, "黑體-繁", "Heiti TC", "儷黑", "LiHei", "微軟正黑體", "Microsoft JhengHei", sans-serif;
  background-color: #fff;
  color: #000;
}

input,
select,
textarea,
button,
option,
li {
  font-family: "Noto Sans TC", Helvetica, Arial, "黑體-繁", "Heiti TC", "儷黑", "LiHei", "微軟正黑體", "Microsoft JhengHei", sans-serif;
}

a,
button {
  text-decoration: none;
  transition: all ease-in-out 0.2s;
  appearance: none;
  cursor: pointer;
}
a:focus, a:hover, a:active,
button:focus,
button:hover,
button:active {
  outline: none;
  text-decoration: none;
}

::-webkit-scrollbar {
  display: none;
}

.ctr_both {
  clear: both;
}

.m_auto {
  display: block;
  margin: 0 auto;
}

.flex_r {
  display: flex;
  flex-direction: row;
}

.flex_c {
  display: flex;
  flex-direction: column;
}

/* -------------------------

      modal css

------------------------- */
.modal-open {
  overflow: hidden;
}
.modal-open .modal {
  overflow-x: auto;
  overflow-y: auto;
}

.modal {
  overflow: hidden;
  position: fixed;
  z-index: 1050;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: none;
  -webkit-overflow-scrolling: touch;
  outline: 0;
  background-color: rgba(255, 255, 255, 0.7);
}
.modal.fade .modal-dialog {
  -webkit-transform: translate(0, -25%);
  -ms-transform: translate(0, -25%);
  -o-transform: translate(0, -25%);
  transform: translate(0, -25%);
  -webkit-transition: -webkit-transform 0.3s ease-out;
  -o-transition: -o-transform 0.3s ease-out;
  transition: transform 0.3s ease-out;
}
.modal.in .modal-dialog {
  -webkit-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
  -o-transform: translate(0, 0);
  transform: translate(0, 0);
}
.modal .modal-dialog {
  position: relative;
  margin: 0 auto;
  top: calc(1.875 * var(--remBasicSize));
  filter: drop-shadow(calc(0.25 * var(--remBasicSize)) calc(0.25 * var(--remBasicSize)) calc(1.875 * var(--remBasicSize)) rgba(0, 0, 0, 0.2));
}
@media (min-width: 768px) {
  .modal .modal-dialog {
    width: calc(37.5 * var(--remBasicSize));
    margin: 0 auto;
  }
}
.modal .modal-dialog .close {
  cursor: pointer;
  position: absolute;
  z-index: 99;
  right: calc(-0.625 * var(--remBasicSize));
  top: calc(0.625 * var(--remBasicSize));
  width: calc(5 * var(--remBasicSize));
  height: calc(5 * var(--remBasicSize));
  background-color: transparent;
  transition: all 0.6s;
}
.modal .modal-dialog .close:before {
  position: absolute;
  content: "";
  z-index: 2;
  top: 50%;
  left: 10%;
  display: block;
  width: 80%;
  height: calc(0.25 * var(--remBasicSize));
  background: #e0547e;
  transform: rotate(45deg);
}
.modal .modal-dialog .close:after {
  position: absolute;
  content: "";
  z-index: 2;
  top: 10%;
  left: 50%;
  display: block;
  height: 80%;
  width: calc(0.25 * var(--remBasicSize));
  background: #e0547e;
  transform: rotate(45deg);
}
.modal .modal-dialog .close:hover, .modal .modal-dialog .close:focus {
  transform: rotate(180deg);
}
.modal .modal-content {
  position: relative;
  background-color: transparent;
  border-radius: 0;
  outline: 0;
}
.modal .modal-content .modal-body {
  position: relative;
  padding: calc(0.9375 * var(--remBasicSize));
}
.modal .modal-content .modal-body img {
  width: calc(37.5 * var(--remBasicSize));
  height: calc(45.875 * var(--remBasicSize));
  margin: 0 auto;
  display: block;
}
.modal .modal-backdrop {
  position: fixed;
  z-index: 1040;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: #000000;
}
.modal .modal-backdrop.fade {
  opacity: 0;
  filter: alpha(opacity=0);
}
.modal .modal-backdrop.in {
  opacity: 0.8;
  filter: alpha(opacity=80);
}
.modal .modal-scrollbar-measure {
  overflow: scroll;
  position: absolute;
  top: -9999px;
  width: calc(3.125 * var(--remBasicSize));
  height: calc(3.125 * var(--remBasicSize));
}

.dq-q {
  margin: 10px;
  padding: 10px;
}

.dq-q, .dq-r, .dq-r-container {
  display: none;
}

.dq-r-container {
  padding-top: calc(12.5 * var(--remBasicSize));
}

.dq-f-container {
  padding-top: calc(12.5 * var(--remBasicSize));
}

.dq-q.active {
  display: block;
}

.dq-q-ans {
  font-family: "Noto Serif TC", serif, "新細明體", "Times New Roman", Times;
  width: calc(32.6875 * var(--remBasicSize));
  height: calc(5 * var(--remBasicSize));
  line-height: calc(5 * var(--remBasicSize));
  margin: calc(1.5625 * var(--remBasicSize)) auto;
  background-color: #fff;
  font-size: calc(2 * var(--remBasicSize));
  border-radius: 20px;
  font-weight: 600;
  cursor: pointer;
}
.dq-q-ans span {
  user-select: none;
}

.btn_next {
  font-family: "Noto Serif TC", serif, "新細明體", "Times New Roman", Times;
  width: calc(32.6875 * var(--remBasicSize));
  height: calc(5 * var(--remBasicSize));
  line-height: calc(5 * var(--remBasicSize));
  display: block;
  margin: calc(0.625 * var(--remBasicSize)) auto;
  background-color: #e0547e;
  font-size: calc(2 * var(--remBasicSize));
  border-radius: 20px;
  color: #fff;
  letter-spacing: 0.1rem;
  font-weight: 600;
  cursor: pointer;
}

.dq-q-target {
  width: calc(28.6875 * var(--remBasicSize));
  height: calc(22.8125 * var(--remBasicSize));
  background: url(../images/game_bottom_start.gif) no-repeat;
  background-size: 100%;
  display: block;
  margin: 0 auto;
  margin-bottom: calc(3.75 * var(--remBasicSize));
  position: relative;
  z-index: 3;
}
.dq-q-target span {
  width: calc(33.0625 * var(--remBasicSize));
  height: calc(4.8125 * var(--remBasicSize));
  background: url(../images/round_bg.png) no-repeat;
  background-size: 100%;
  display: block;
  position: absolute;
  top: calc(20.3125 * var(--remBasicSize));
  left: calc(-2.1875 * var(--remBasicSize));
  z-index: -1;
  opacity: 0.7;
}

.correct .dq-q-target {
  background: url(../images/game_bottom_3.gif) no-repeat;
  background-size: 100%;
}

.wrong .dq-q-target {
  background: url(../images/game_bottom_2.gif) no-repeat;
  background-size: 100%;
}

.right {
  box-shadow: inset 0 0 calc(1.5625 * var(--remBasicSize)) rgb(255, 181, 5);
}

.dq-r-container, .drag-quiz, .game_cover {
  min-height: calc(62.5 * var(--remBasicSize));
}

#game {
  width: 100%;
  height: auto;
  min-height: calc(62.5 * var(--remBasicSize));
  position: relative;
  z-index: 2;
}
#game .game_cover {
  width: 100%;
  display: block;
}
#game .game_cover .game_p {
  font-family: "Noto Serif TC", serif, "新細明體", "Times New Roman", Times;
  font-size: calc(2 * var(--remBasicSize));
  line-height: calc(3.25 * var(--remBasicSize));
  letter-spacing: 0.02rem;
  text-align: center;
}
#game .game_cover .game_p span {
  display: inline-block;
  position: relative;
  z-index: 1;
}
#game .game_cover .game_p span.bar {
  background-color: #efe0b8;
  height: calc(1.25 * var(--remBasicSize));
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
}
#game .game_cover .game_p span.note {
  font-size: calc(1.625 * var(--remBasicSize));
  margin-top: calc(-0.625 * var(--remBasicSize));
  display: block;
}
#game .game_cover .game_info {
  width: calc(30.625 * var(--remBasicSize));
  font-family: "Noto Serif TC", serif, "新細明體", "Times New Roman", Times;
  text-align: left;
  font-size: calc(1.625 * var(--remBasicSize));
  letter-spacing: 0.02rem;
  line-height: calc(2.5 * var(--remBasicSize));
  margin: 0 auto;
  position: relative;
  padding-left: calc(1 * var(--remBasicSize));
}
#game .game_cover .game_info span {
  width: calc(0.3125 * var(--remBasicSize));
  height: calc(4.375 * var(--remBasicSize));
  background-color: #e0547e;
  position: absolute;
  top: calc(0.4375 * var(--remBasicSize));
  left: 0;
}
#game .game_cover .game_bottle {
  width: calc(33.9375 * var(--remBasicSize));
  height: calc(42.375 * var(--remBasicSize));
  background: url(../images/game_cover_bg.png) no-repeat;
  background-size: 100%;
  margin: 0 auto;
  padding-top: calc(18 * var(--remBasicSize));
  margin-top: calc(0.75 * var(--remBasicSize));
  position: relative;
}
#game .game_cover .game_bottle .game_cover_slogan {
  width: calc(13.9375 * var(--remBasicSize));
  height: calc(21.3125 * var(--remBasicSize));
  background: url(../images/game_cover_slogan.png) no-repeat;
  background-size: 100%;
  position: absolute;
  top: calc(6.75 * var(--remBasicSize));
  right: calc(-3.125 * var(--remBasicSize));
  animation: 4s ease infinite slogan;
}
#game .game_cover .game_start {
  margin-top: calc(1.875 * var(--remBasicSize));
}
#game .dq-q {
  text-align: center;
  font-family: "Noto Serif TC", serif, "新細明體", "Times New Roman", Times;
  position: relative;
}
#game .dq-q h3 {
  font-size: calc(1.9375 * var(--remBasicSize));
  letter-spacing: 0.1rem;
  color: #e0547e;
  display: flex;
  align-items: flex-end;
  position: relative;
  justify-content: center;
}
#game .dq-q h3 img {
  position: relative;
  bottom: 0;
}
#game .dq-q h3 .number1 {
  width: calc(1.5 * var(--remBasicSize));
  height: calc(2.625 * var(--remBasicSize));
}
#game .dq-q h3 .number2 {
  width: calc(2.0625 * var(--remBasicSize));
  height: calc(2.6875 * var(--remBasicSize));
}
#game .dq-q h3 .number3 {
  width: calc(2 * var(--remBasicSize));
  height: calc(2.8125 * var(--remBasicSize));
}
#game .dq-q h3 .number4 {
  width: calc(2 * var(--remBasicSize));
  height: calc(2.625 * var(--remBasicSize));
}
#game .dq-q h3 .number5 {
  width: calc(2.125 * var(--remBasicSize));
  height: calc(2.875 * var(--remBasicSize));
}
#game .dq-q .icon_down {
  width: calc(4.4375 * var(--remBasicSize));
  height: calc(1.375 * var(--remBasicSize));
  background: url(../images/icon_down.png) no-repeat;
  background-size: 100%;
  display: block;
  margin: 0 auto;
  margin-top: calc(0.9375 * var(--remBasicSize));
  margin-bottom: calc(0.4375 * var(--remBasicSize));
}
#game .dq-q p {
  font-size: calc(2.375 * var(--remBasicSize));
  line-height: calc(3.5 * var(--remBasicSize));
  letter-spacing: 0.02rem;
}
#game .dq-q p span {
  display: inline-block;
  position: relative;
  z-index: 1;
}
#game .dq-q p span.bar {
  background-color: #efe0b8;
  height: calc(1.25 * var(--remBasicSize));
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
}
#game .dq-q p span.note {
  font-size: calc(1.625 * var(--remBasicSize));
  margin-top: calc(-0.625 * var(--remBasicSize));
  display: block;
}
#game .dq-q .see_note {
  font-family: "Noto Sans TC", Helvetica, Arial, "黑體-繁", "Heiti TC", "儷黑", "LiHei", "微軟正黑體", "Microsoft JhengHei", sans-serif;
  width: calc(12.125 * var(--remBasicSize));
  height: calc(12.1875 * var(--remBasicSize));
  background: url(../images/see_note.png) no-repeat;
  background-size: 100%;
  position: absolute;
  top: calc(12.3125 * var(--remBasicSize));
  right: 0;
  font-size: calc(1.6875 * var(--remBasicSize));
  line-height: calc(2.25 * var(--remBasicSize));
  color: #2a2a2a;
  padding-top: calc(2.125 * var(--remBasicSize));
  padding-right: calc(0.5 * var(--remBasicSize));
  cursor: pointer;
}
#game .dq-q .question_pd {
  width: calc(11.25 * var(--remBasicSize));
  height: calc(16.75 * var(--remBasicSize));
  position: absolute;
  top: calc(20 * var(--remBasicSize));
  left: calc(3.5 * var(--remBasicSize));
  z-index: 4;
}
#game .dq-q .question_pd img {
  width: 100%;
}

.dq-r h2 {
  position: relative;
}
.dq-r h2 span {
  display: inline-block;
  position: relative;
  z-index: 1;
}
.dq-r h2 span.bar {
  background-color: #efe0b8;
  height: calc(1.25 * var(--remBasicSize));
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
}
.dq-r h2 .txt_l {
  width: calc(1.375 * var(--remBasicSize));
  height: calc(2.5625 * var(--remBasicSize));
  position: relative;
  background: url(../images/txt_l.png) no-repeat;
  background-size: 100%;
  display: inline-block;
  margin-right: calc(0.5 * var(--remBasicSize));
}
.dq-r h2 .txt_r {
  width: calc(1.4375 * var(--remBasicSize));
  height: calc(2.5 * var(--remBasicSize));
  position: relative;
  background: url(../images/txt_r.png) no-repeat;
  background-size: 100%;
  display: inline-block;
  margin-left: calc(0.5 * var(--remBasicSize));
}
.dq-r > p {
  margin-top: calc(2.875 * var(--remBasicSize));
  margin-bottom: calc(3.25 * var(--remBasicSize));
}
.dq-r .img_star {
  width: calc(14.125 * var(--remBasicSize));
  display: block;
  margin: 0 auto;
  margin-bottom: calc(2.8125 * var(--remBasicSize));
}

.dq-f-container h2 {
  font-size: calc(2.75 * var(--remBasicSize));
  line-height: calc(3.75 * var(--remBasicSize));
  letter-spacing: 0;
  color: #e0547e;
}
.dq-f-container p {
  font-size: calc(1.875 * var(--remBasicSize));
  letter-spacing: 0.18rem;
  margin-top: calc(1.5625 * var(--remBasicSize));
}
.dq-f-container .btn_tryagain {
  font-family: "Noto Serif TC", serif, "新細明體", "Times New Roman", Times;
  width: calc(18.75 * var(--remBasicSize));
  height: calc(4.125 * var(--remBasicSize));
  line-height: calc(3.75 * var(--remBasicSize));
  border: 1px solid #000;
  display: block;
  margin: 0 auto;
  background-color: transparent;
  font-size: calc(2 * var(--remBasicSize));
  letter-spacing: 0.1rem;
  margin-top: calc(3.125 * var(--remBasicSize));
  color: #000;
}

.data_group {
  width: calc(40.625 * var(--remBasicSize));
  margin: 0 auto;
  margin-top: calc(2.5 * var(--remBasicSize));
}
.data_group .p {
  margin-bottom: calc(2.5 * var(--remBasicSize));
}
.data_group .event-theme.el-form .el-form-item:nth-child(2) {
  border-bottom: none;
}

.btn_click {
  width: calc(25 * var(--remBasicSize));
  height: calc(3.125 * var(--remBasicSize));
  line-height: calc(3 * var(--remBasicSize));
  border: 1px solid #888;
  margin: 0 auto;
  display: block;
  margin-top: calc(1.875 * var(--remBasicSize));
  font-size: calc(1.5 * var(--remBasicSize));
  font-weight: 300;
  text-align: center;
  color: #333;
  cursor: pointer;
  border-radius: calc(0.25 * var(--remBasicSize));
  transition: 0.4s;
}
.btn_click:hover {
  background-color: #e0547e;
  color: #fff;
  border: 1px solid transparent;
  border-radius: calc(0.875 * var(--remBasicSize));
}/*# sourceMappingURL=game.css.map */