@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

::-webkit-scrollbar {
  width: 5px;
}

::-webkit-scrollbar-track {
  border-radius: 10px;
}

::-webkit-scrollbar-thumb {
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.5);
}

body {
  font-family: "微軟正黑體";
  color: white;
}

hr {
  width: 90%;
  border: 0;
  height: 3px;
  min-height: 3px;
  margin: auto;
  background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 255, 255, 0)), color-stop(rgba(255, 255, 255, 0.75)), to(rgba(0, 255, 255, 0)));
  background-image: linear-gradient(to right, rgba(0, 255, 255, 0), rgba(255, 255, 255, 0.75), rgba(0, 255, 255, 0));
}

ul{
  margin: 0px;
  list-style:none;
}

.btnHover {
  position: relative;
  cursor: pointer;
}

.btnHover .front {
  position: relative;
  width: 100%;
  opacity: 1;
  -webkit-transition: 0.3s opacity;
  transition: 0.3s opacity;
}

.btnHover .back {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  -webkit-transition: 0.3s opacity;
  transition: 0.3s opacity;
}

.btnHover:hover .front {
  opacity: 0;
}

.btnHover:hover .back {
  opacity: 1;
}

img {
  width: 100%;
  height: 100%;
}

.container {
  height: 100%;
  background-image: url("../img/bg.png");
  background-size: cover;
  background-position: top;
  overflow: auto;
}

.ufo {
  position: fixed;
  top: 0;
  width: 80%;
  max-width: 600px;
}

.m-rl-auto {
  margin-left: auto;
  margin-right: auto;
}

.box {
  position: relative;
  border: 1px solid #00ffff;
  background-color: #02304b;
  width: 85%;
  max-width: 750px;
  line-height: 25px;
  text-align: justify;
  margin: auto;
  padding: 5% 7%;
  word-break: break-all;
}

.box-height {
  height: 80%;
  overflow: auto;
}
.title{
  word-break: initial;
}
.option{
  word-break: initial;
}
.A-E{
  word-break: initial;
}
.A-E::after {
  content: "";
  position: absolute;
  right: 5%;
  bottom: -11%;
  z-index: 5;
  width: 40%;
  min-height: 150px;
  height: 25%;
  background-image: url("../img/p0.png");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}

.startBtn {
  width: 50%;
  max-width: 150px;
  margin-bottom: 20%;
}

.progress-container {
  opacity: 0;
  pointer-events: none;
  position: relative;
  width: 85%;
  max-width: 750px;
  height: 50px;
  line-height: 25px;
  text-align: justify;
  margin: 10% auto 1.5%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
  -ms-flex: none;
      flex: none;
}

.progress-container .icon {
  position: relative;
  height: 100%;
  width: 50px;
}

.progress-container .icon .number {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: absolute;
  width: 100%;
  height: 100%;
  top: -60%;
  right: -110%;
  background-image: url("../img/1-8.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center 65%;
  font-size: 13px;
}

.progress-container .progress {
  width: 45%;
  height: 10px;
  margin: 0 0 5px 5px;
  background-color: #78a3bc;
  border-radius: 10px;
  overflow: hidden;
}

.progress-container .progress .progress-percentage {
  background-color: #00ffff;
  width: 0%;
  height: 100%;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.flex-column {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.flex-column input[type="text"] {
  line-height: 25px;
  background-color: #78a3bc;
  padding: 0 8px 0;
  border: 0;
}

.flex-column input[type="text"]::-webkit-input-placeholder {
  color: black;
}

.flex-column input[type="text"]:-ms-input-placeholder {
  color: black;
}

.flex-column input[type="text"]::-ms-input-placeholder {
  color: black;
}

.flex-column input[type="text"]::placeholder {
  color: black;
}

.flex-column select {
  height: 25px;
  background-color: #78a3bc;
  padding: 0 8px 0;
  border: 0;
}

.checkbox-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 5px 0px;
}

.checkbox-container input {
  margin: 6px 0 0 0;
}

.checkbox-container .convex-row {
  width: 92%;
}

.checkbox-round {
  width: 1em;
  height: 1em;
  background-color: transparent;
  border-radius: 50%;
  vertical-align: middle;
  border: 1px solid #78a3bc;
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  outline: none;
  cursor: pointer;
}

.title {
  font-weight: 900;
}

.checkbox-round:checked {
  background-color: #00ffff;
}

.btn-container {
  width: 100%;
  max-width: 400px;
  margin: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  margin: 25% 0 0 0;
}

.btn-container .btn {
  width: 45%;
  max-width: 150px;
}

.end {
  height: 350px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-pack: distribute;
      justify-content: space-around;
}

@media only screen and (min-width: 768px) {
  .progress-container {
    margin: 10% auto 1.5%;
  }
  .progress-container .icon {
    width: auto;
  }
  
  .startBtn {
    margin-bottom: 0%;
  }
  .A-E::after {
    content: "";
    right: 0;
    bottom: -10%;
    height: 10%;
  }
  .btn-container {
    margin: 5% auto 0;
  }
  .end {
    height: 500px;
  }
}

@media only screen and (min-width: 992px) {
  .container {
    background-size: contain;
  }
  .progress-container {
    margin: 6% auto 0.5%;
  }
  .box {
    padding: 3% 5%;
  }
  .btn-container {
    margin: 3% auto 0;
  }
}

@media only screen and (min-width: 1200px) {
  .progress-container {
    margin: 3% auto 0.5%;
  }
  .A-E::after {
    content: "";
    bottom: -5%;
    height: 10%;
  }
}
/*# sourceMappingURL=style.css.map */