@charset "UTF-8";
* {
  font-family: "微軟正黑體";
  letter-spacing: 2px;
  position: relative;
}

* a {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

* button {
  border: 0;
  cursor: pointer;
}

* button:focus {
  outline: none;
}

* input {
  outline: none;
}

* ul {
  list-style: none;
}

html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  min-height: 100%;
  font-size: 16px;
  color: #313131;
  -webkit-text-size-adjust: none;
}

@media (max-width: 576px) {
  html, body {
    font-size: 14px;
  }
}

.wrapper {
  min-height: 100%;
}

.line-form {
  border: 1px solid #313131;
  border-radius: 10px;
}

@media (max-width: 768px) {
  .line-form {
    border: 0;
  }
}

.btn_blue {
  background-color: #50A4E0;
  color: #ffffff;
  border-radius: 10px;
  letter-spacing: 3px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.btn_blue:hover {
  background-color: #3a99dc;
}

.btn_linear {
  text-align: center;
  display: inline-block;
  background: -webkit-gradient(linear, left top, right top, from(#3B79C0), color-stop(26.56%, #478ED5), color-stop(53.12%, #50A4E0), color-stop(77.08%, #59BBEF), to(#5EC4EF));
  background: linear-gradient(90deg, #3B79C0 0%, #478ED5 26.56%, #50A4E0 53.12%, #59BBEF 77.08%, #5EC4EF 100%);
  border-radius: 20px;
}

.btn_linear::after {
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left top, right top, from(#59BBEF), to(#5EC4EF));
  background: linear-gradient(90deg, #59BBEF, #5EC4EF);
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 20px;
  opacity: 0;
}

.btn_linear:hover::after {
  opacity: 1;
  color: #313131;
}

header {
  width: 100%;
  padding: 28px 72px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media (max-width: 480px) {
  header {
    padding: 28px 40px;
  }
}

header .logo-block {
  width: 115px;
  height: auto;
}

header .logo-block img {
  width: 100%;
}

header .right-block {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

header .right-block .login_btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 88px;
  height: 40px;
  border-radius: 20px;
  border: 1px solid #313131;
  background-color: #ffffff;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

header .right-block .login_btn:hover {
  background-color: #E7E7E7;
}

@media (max-width: 480px) {
  header .right-block .login_btn {
    width: 80px;
    height: 36px;
    font-size: 14px;
  }
}

.payment-header {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media (max-width: 768px) {
  .payment-header {
    padding-left: 40px;
    padding-right: 40px;
  }
}

@media (max-width: 480px) {
  .payment-header {
    -ms-flex-pack: distribute;
        justify-content: space-around;
    padding-left: 0px;
    padding-right: 0px;
  }
}

.payment-header .cancel-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.payment-header .cancel-block span {
  display: inline-block;
  color: #A5A5A5;
}

@media (max-width: 530px) {
  .payment-header .cancel-block span {
    font-size: 14px;
  }
}

.payment-header .cancel-block .arrow {
  margin-right: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.payment-header .cancel-block .arrow .triangle {
  display: inline-block;
  height: 10px;
  width: 10px;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  -webkit-transform-origin: center center;
          transform-origin: center center;
  border-top: 1px solid #A5A5A5;
  border-left: 1px solid #A5A5A5;
  margin-left: -3px;
  margin-right: -3px;
}

@media (max-width: 480px) {
  .payment-header .cancel-block .text {
    display: none;
  }
}

.payment-header .display {
  width: 115px;
}

@media (max-width: 480px) {
  .payment-header .display {
    width: 10px;
  }
}

.firstface {
  width: 100%;
  height: 100vh;
}

@media (max-width: 576px) {
  .firstface .header {
    padding: 28px 40px;
  }
}

.firstface .firstface-right {
  opacity: 0;
  -webkit-animation-name: map-appear;
          animation-name: map-appear;
  -webkit-animation-duration: 3s;
          animation-duration: 3s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-delay: 0s;
          animation-delay: 0s;
}

.firstface .firstface-right .nav-item {
  margin-right: 30px;
}

.firstface .firstface-right .nav-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

@media (max-width: 768px) {
  .firstface .firstface-right .nav-text {
    display: none;
  }
}

.firstface .firstface-right .nav-text:hover {
  color: #3B79C0;
}

.firstface .firstface-right .login_btn {
  margin-right: 12px;
}

@media (max-width: 480px) {
  .firstface .firstface-right .login_btn {
    width: 88px;
    height: 40px;
  }
}

.firstface .firstface-right .signup_btn {
  width: 88px;
  height: 40px;
  line-height: 40px;
  color: #ffffff;
}

.firstface .firstface-right .signup_btn::after {
  content: "註冊";
}

.firstface .main {
  width: 100%;
  height: calc(100vh - 100px);
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.firstface .main::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../images/map.svg");
  background-repeat: no-repeat;
  background-position: left 50% top 30%;
  z-index: -1;
  opacity: 0;
  -webkit-animation-name: map-appear;
          animation-name: map-appear;
  -webkit-animation-duration: 2s;
          animation-duration: 2s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-delay: 0s;
          animation-delay: 0s;
}

@media (max-width: 768px) {
  .firstface .main::after {
    background-size: 100%;
  }
}

@media (max-width: 576px) {
  .firstface .main::after {
    background-position: left 50% top 20%;
  }
}

.firstface .main .title-block {
  text-align: center;
  top: -80px;
}

@media (max-width: 576px) {
  .firstface .main .title-block {
    top: -110px;
  }
}

.firstface .main .title-block .text {
  text-align: center;
  margin-bottom: 30px;
}

.firstface .main .title-block h1 {
  font-size: 3.75rem;
  letter-spacing: 10px;
  opacity: 0;
  -webkit-animation-name: title-In;
          animation-name: title-In;
  -webkit-animation-duration: 2s;
          animation-duration: 2s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-delay: 0.5s;
          animation-delay: 0.5s;
}

@media (max-width: 768px) {
  .firstface .main .title-block h1 {
    font-size: 3rem;
  }
}

.firstface .main .title-block h4 {
  font-size: 1.25rem;
  opacity: 0;
  -webkit-animation-name: title-In;
          animation-name: title-In;
  -webkit-animation-duration: 2s;
          animation-duration: 2s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-delay: 0.7s;
          animation-delay: 0.7s;
}

.firstface .main .title-block h5 {
  font-size: 1.125rem;
  font-weight: 500;
  opacity: 0;
  -webkit-animation-name: title-In;
          animation-name: title-In;
  -webkit-animation-duration: 2s;
          animation-duration: 2s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-delay: 0.9s;
          animation-delay: 0.9s;
}

.firstface .main .title-block .signup_btn_long {
  width: 180px;
  height: 48px;
  line-height: 48px;
  color: #ffffff;
  opacity: 0;
  -webkit-animation-name: title-In;
          animation-name: title-In;
  -webkit-animation-duration: 2s;
          animation-duration: 2s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-delay: 1.1s;
          animation-delay: 1.1s;
}

.firstface .main .title-block .signup_btn_long::after {
  content: "立即註冊";
}

.home-content .blueblock {
  top: -220px;
  margin-bottom: -220px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.home-content .blueblock .draw {
  width: 100%;
  height: 100%;
}

@media (max-width: 480px) {
  .home-content .blueblock .draw {
    height: 500px;
  }
  .home-content .blueblock .draw svg {
    height: 100%;
  }
}

.home-content .blueblock .blue-content {
  width: 100%;
  height: 80%;
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.home-content .blueblock .blue-content .title {
  font-size: 1.75rem;
  color: #ffffff;
  font-weight: 500;
  letter-spacing: 10px;
  top: 10%;
}

@media (max-width: 992px) {
  .home-content .blueblock .blue-content .title {
    font-size: 1.5rem;
  }
}

@media (max-width: 576px) {
  .home-content .blueblock .blue-content .title {
    font-size: 1.1rem;
    letter-spacing: 8px;
  }
}

.home-content .blueblock .blue-content .video-block {
  width: 60%;
  height: 60%;
  top: 10%;
}

.home-content .blueblock .blue-content .video-block .video {
  width: 100%;
  height: 100%;
}

.home-content .blueblock .blue-content .video-block .video iframe {
  width: 100%;
  height: 100%;
}

.home-content .intro-block {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.home-content .intro-block .intro {
  width: 100%;
  max-width: 1041px;
  padding: 68px 0px 134px 0px;
}

@media (max-width: 1140px) {
  .home-content .intro-block .intro {
    padding-left: 60px;
    padding-right: 60px;
  }
}

@media (max-width: 992px) {
  .home-content .intro-block .intro {
    padding-left: 120px;
    padding-right: 120px;
    padding-bottom: 68px;
  }
}

@media (max-width: 576px) {
  .home-content .intro-block .intro {
    padding-left: 60px;
    padding-right: 60px;
    padding-top: 30px;
  }
}

@media (max-width: 480px) {
  .home-content .intro-block .intro {
    padding-top: 68px;
    padding-bottom: 10px;
  }
}

.home-content .intro-block .intro .title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 88px;
  opacity: 0;
}

@media (max-width: 480px) {
  .home-content .intro-block .intro .title {
    margin-bottom: 60px;
  }
}

.home-content .intro-block .intro .title .polygon-group {
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.home-content .intro-block .intro .title .polygon-group svg {
  width: 100%;
}

@media (max-width: 576px) {
  .home-content .intro-block .intro .title .polygon-group svg {
    width: 60%;
  }
}

.home-content .intro-block .intro .title h3 {
  font-size: 1.75rem;
  font-weight: 700;
  letter-spacing: 10px;
}

@media (max-width: 992px) {
  .home-content .intro-block .intro .title h3 {
    font-size: 1.5rem;
  }
}

@media (max-width: 576px) {
  .home-content .intro-block .intro .title h3 {
    letter-spacing: 8px;
  }
}

.home-content .intro-block .intro .title h3::after {
  content: "";
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  top: 32px;
  width: 60px;
  height: 32px;
  border-bottom: 2px solid #313131;
}

.home-content .intro-block .intro .container .first-child {
  padding-left: 0px;
}

.home-content .intro-block .intro .container .last-child {
  padding-right: 0px;
}

@media (max-width: 992px) {
  .home-content .intro-block .intro .container .first-child {
    padding-left: 15px;
  }
  .home-content .intro-block .intro .container .last-child {
    padding-right: 15px;
  }
}

.home-content .intro-block .intro .container .features {
  width: 100%;
  height: 440px;
  overflow: hidden;
  background-color: #478ED5;
  opacity: 0;
}

@media (max-width: 1140px) {
  .home-content .intro-block .intro .container .features {
    height: 400px;
  }
}

@media (max-width: 992px) {
  .home-content .intro-block .intro .container .features {
    height: 360px;
  }
}

@media (max-width: 480px) {
  .home-content .intro-block .intro .container .features {
    height: 300px;
  }
}

.home-content .intro-block .intro .container .features .top, .home-content .intro-block .intro .container .features .bottom {
  width: 100%;
}

.home-content .intro-block .intro .container .features .top {
  height: 50%;
  width: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.home-content .intro-block .intro .container .features .top::after {
  content: "";
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  position: absolute;
  top: 0;
  left: 0;
}

.home-content .intro-block .intro .container .features .top .title {
  position: absolute;
  top: 64px;
  left: 60px;
  font-size: 1.5rem;
  color: #ffffff;
  z-index: 100;
  font-weight: 500;
}

@media (max-width: 1140px) {
  .home-content .intro-block .intro .container .features .top .title {
    left: 40px;
    font-size: 1.3rem;
  }
}

.home-content .intro-block .intro .container .features .top img {
  width: auto;
  height: 100%;
}

.home-content .intro-block .intro .container .features .bottom {
  height: 50%;
  padding: 0px 70px;
}

@media (max-width: 1140px) {
  .home-content .intro-block .intro .container .features .bottom {
    padding: 0px 50px;
  }
}

.home-content .intro-block .intro .container .features .bottom .content {
  width: 100%;
  height: 100%;
  top: -45px;
  left: 20px;
}

@media (max-width: 992px) {
  .home-content .intro-block .intro .container .features .bottom .content {
    top: -25px;
  }
}

.home-content .intro-block .intro .container .features .bottom .content::after {
  content: "";
  width: 100%;
  height: 100%;
  border-left: 2px solid #ffffff;
  position: absolute;
  top: -20px;
  left: -30px;
}

@media (max-width: 480px) {
  .home-content .intro-block .intro .container .features .bottom .content::after {
    height: 90%;
    top: 0px;
  }
}

.home-content .intro-block .intro .container .features .bottom .content .pic-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.home-content .intro-block .intro .container .features .bottom .content .pic-block .pic {
  width: 56px;
  height: 56px;
}

@media (max-width: 1140px) {
  .home-content .intro-block .intro .container .features .bottom .content .pic-block .pic {
    width: 45px;
    height: 45px;
  }
}

.home-content .intro-block .intro .container .features .bottom .content .pic-block span {
  color: #ffffff;
  margin-left: 12px;
}

.home-content .intro-block .intro .container .features .bottom .content p {
  color: #ffffff;
  line-height: 32px;
}

@media (max-width: 480px) {
  .home-content .intro-block .intro .container .features .bottom .content p {
    line-height: 24px;
  }
}

.home-content .intro-block .intro .container .feature1 .top {
  background-image: url("../images/intro1.jpg");
}

.home-content .intro-block .intro .container .feature2 {
  top: 66px;
}

@media (max-width: 992px) {
  .home-content .intro-block .intro .container .feature2 {
    top: 0;
  }
}

.home-content .intro-block .intro .container .feature2 .top {
  background-image: url("../images/intro2.jpg");
}

.home-content .intro-block .intro .container .feature3 .top {
  background-image: url("../images/intro3.jpg");
}

@media (max-width: 992px) {
  .home-content .intro-block .intro .container .feature1, .home-content .intro-block .intro .container .feature2 {
    margin-bottom: 60px;
  }
}

@media (max-width: 576px) {
  .home-content .intro-block .intro .container .feature1, .home-content .intro-block .intro .container .feature2 {
    margin-bottom: 30px;
  }
}

.home-content .intro-block .intro2 .title {
  opacity: 0;
}

.home-content .intro-block .intro2 .pic-block {
  height: 360px;
}

@media (max-width: 992px) {
  .home-content .intro-block .intro2 .pic-block {
    height: 280px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

@media (max-width: 480px) {
  .home-content .intro-block .intro2 .pic-block {
    height: 180px;
  }
}

.home-content .intro-block .intro2 .pic-block img {
  width: 100%;
  height: auto;
  position: absolute;
  bottom: 0;
}

@media (max-width: 992px) {
  .home-content .intro-block .intro2 .pic-block img {
    width: auto;
    height: 100%;
  }
}

@media (max-width: 480px) {
  .home-content .intro-block .intro2 .pic-block img {
    width: 100%;
    height: auto;
  }
}

.home-content .intro-block .intro2 .sec-child {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0px 40px;
}

@media (max-width: 992px) {
  .home-content .intro-block .intro2 .sec-child {
    padding: 0px 15px;
  }
}

.home-content .intro-block .intro2 .sec-child p {
  line-height: 40px;
  font-size: 1.25rem;
}

@media (max-width: 992px) {
  .home-content .intro-block .intro2 .sec-child p {
    line-height: 32px;
    font-size: 1.1rem;
    margin-bottom: 0px;
    margin-top: 30px;
  }
}

.home-content .intro-block .intro3 .col-12 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.home-content .intro-block .intro3 .col-12 img {
  width: auto;
  height: 180px;
}

@media (max-width: 576px) {
  .home-content .intro-block .intro3 .col-12 img {
    width: 150%;
    height: auto;
  }
}

@media (max-width: 992px) {
  .home-content .intro-block .intro2, .home-content .intro-block .intro3 {
    padding-bottom: 68px;
  }
}

@media (max-width: 480px) {
  .home-content .intro-block .intro2, .home-content .intro-block .intro3 {
    padding-bottom: 10px;
  }
}

.home-content .intro-block .intro2 .container, .home-content .intro-block .intro3 .container {
  opacity: 0;
}

.home-content .signup_btn_big-block {
  display: block;
  width: 100%;
  height: 220px;
  margin-top: 48px;
  margin-bottom: 100px;
  background: -webkit-gradient(linear, left top, right top, from(#3B79C0), color-stop(22.92%, #478ED5), color-stop(51.04%, #50A4E0), color-stop(78.65%, #59BBEF), to(#5EC4EF));
  background: linear-gradient(90deg, #3B79C0 0%, #478ED5 22.92%, #50A4E0 51.04%, #59BBEF 78.65%, #5EC4EF 100%);
}

.home-content .signup_btn_big-block::after {
  content: "立即註冊使用paypay";
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 1.25rem;
  letter-spacing: 5px;
  color: #ffffff;
  font-weight: 600;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left top, right top, from(#59BBEF), to(#5EC4EF));
  background: linear-gradient(90deg, #59BBEF, #5EC4EF);
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}

.home-content .signup_btn_big-block:hover::after {
  opacity: 1;
  color: #313131;
}

@media (max-width: 576px) {
  .home-content .signup_btn_big-block {
    height: 150px;
  }
}

.home-content .signup_btn_big-block .content {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.home-content .signup_btn_big-block .content h4 {
  font-size: 1.25rem;
  letter-spacing: 5px;
  color: #ffffff;
  font-weight: 600;
}

.main-content {
  width: 100%;
  padding-top: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.main-content h3 {
  text-align: center;
  letter-spacing: 3px;
  color: #313131;
  margin-bottom: 30px;
}

.main-content .line-form {
  width: 480px;
  padding: 56px 62px;
}

@media (max-width: 768px) {
  .main-content .line-form {
    width: 100%;
  }
}

.main-content .line-form input {
  width: 100%;
  height: 48px;
  border-radius: 10px;
  padding: 18px 20px;
  margin-bottom: 24px;
  border: 1px solid #313131;
}

.main-content .line-form input:focus {
  border: 1px solid #476F9E;
  border-radius: 10px;
}

.main-content .line-form input::-webkit-input-placeholder {
  color: #A5A5A5;
}

.main-content .line-form input:-ms-input-placeholder {
  color: #A5A5A5;
}

.main-content .line-form input::-ms-input-placeholder {
  color: #A5A5A5;
}

.main-content .line-form input::placeholder {
  color: #A5A5A5;
}

.main-content .line-form #btn_login, .main-content .line-form #btn_personalSignup, .main-content .line-form #btn_companySignup {
  width: 100%;
  height: 48px;
}

.main-content .line-form #btn_personalSignup {
  margin-bottom: 24px;
}

.main-content .line-form #btn_companySignup {
  border: 1px solid #A5A5A5;
  color: #A5A5A5;
  border-radius: 10px;
  background-color: #fff;
  cursor: auto;
}

.main-content .line-form .forgetpw {
  width: 100%;
  height: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.main-content .line-form .forgetpw a {
  color: #476F9E;
}

.main-content .line-form .forgetpw a:hover {
  opacity: 0.8;
}

.main-content .line-form .hrline {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 10px;
}

.main-content .line-form .hrline hr {
  border-top: 1px solid #B5C2CB;
  width: 100%;
}

.main-content .line-form .hrline span {
  background-color: #ffffff;
  color: #B5C2CB;
  position: absolute;
  padding: 0px 10px;
}

.main-content .line-form #btn_signup {
  width: 100%;
  height: 48px;
  border-radius: 10px;
  background-color: #B5C2CB;
  letter-spacing: 3px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.main-content .line-form #btn_signup:hover {
  background-color: #a6b6c0;
}

.main-content .line-form .postscript {
  color: #A5A5A5;
  font-size: 0.875rem;
  text-align: center;
  line-height: 28px;
  outline: none;
}

.main-content #success-block {
  border: 0;
}

.main-content #success-block .success-text {
  color: #50A4E0;
  font-weight: 700;
  font-size: 20px;
}

.main-content #success-block span {
  color: #313131;
  display: block;
  text-align: center;
  margin-bottom: 28px;
  font-size: 18px;
}

.main-content .progressBar {
  list-style: none;
  display: table;
  padding: 0;
  margin: 0 auto 40px;
}

.main-content .progressBar li {
  width: 160px;
  height: 44px;
  display: table-cell;
  text-align: center;
}

@media (max-width: 530px) {
  .main-content .progressBar li {
    width: 100px;
    height: 44px;
  }
}

.main-content .progressBar li .text {
  color: #313131;
}

.main-content .progressBar li span {
  display: inline-block;
  width: 20px;
  height: 20px;
  border-radius: 100%;
  border: 2px solid #50A4E0;
  background-color: #ffffff;
  z-index: 200;
}

.main-content .progressBar li:nth-child(1)::after, .main-content .progressBar li:nth-child(2)::after {
  content: " ";
  display: block;
  border-bottom: 2px solid #50A4E0;
  width: 160px;
  position: absolute;
  left: 50%;
  bottom: 15px;
}

@media (max-width: 530px) {
  .main-content .progressBar li:nth-child(1)::after, .main-content .progressBar li:nth-child(2)::after {
    width: 100px;
  }
}

.main-content .progressBar .progress-done p {
  color: #50A4E0;
  font-weight: 700;
}

.main-content .progressBar .progress-done span {
  background-color: #50A4E0;
}

.form-content {
  padding-top: 30px;
  padding-bottom: 120px;
}

@media (max-width: 768px) {
  .form-content .content-block {
    width: 100%;
  }
}

.form-content .signupForm, .form-content .signupConfirm {
  width: 720px;
  padding: 60px 80px;
  background-color: #EDEDED;
  border-radius: 10px;
}

@media (max-width: 768px) {
  .form-content .signupForm, .form-content .signupConfirm {
    width: 100%;
    border-radius: 0;
  }
}

@media (max-width: 530px) {
  .form-content .signupForm, .form-content .signupConfirm {
    padding: 60px 40px;
  }
}

.form-content .signupForm .infoInput, .form-content .signupConfirm .infoInput {
  padding: 10px 30px;
}

.form-content .signupForm .infoInput span, .form-content .signupConfirm .infoInput span {
  display: inline-block;
  width: 120px;
}

@media (max-width: 768px) {
  .form-content .signupForm .infoInput span, .form-content .signupConfirm .infoInput span {
    width: 20%;
  }
}

@media (max-width: 530px) {
  .form-content .signupForm .infoInput span, .form-content .signupConfirm .infoInput span {
    display: block;
    width: 100%;
    margin-bottom: 8px;
  }
}

.form-content .signupForm .infoInput input, .form-content .signupConfirm .infoInput input {
  border-radius: 5px;
  border: 1px solid #A5A5A5;
  padding: 8px 12px;
  color: #313131;
}

.form-content .signupForm .infoInput input:focus, .form-content .signupConfirm .infoInput input:focus {
  border: 2px solid #50A4E0;
}

.form-content .signupForm .infoInput .input_long, .form-content .signupConfirm .infoInput .input_long {
  width: 370px;
  min-height: 44px;
}

@media (max-width: 768px) {
  .form-content .signupForm .infoInput .input_long, .form-content .signupConfirm .infoInput .input_long {
    width: 80%;
  }
}

@media (max-width: 530px) {
  .form-content .signupForm .infoInput .input_long, .form-content .signupConfirm .infoInput .input_long {
    width: 100%;
  }
}

.form-content .signupForm .infoInput .input_short, .form-content .signupConfirm .infoInput .input_short {
  width: 220px;
  height: 44px;
}

@media (max-width: 768px) {
  .form-content .signupForm .infoInput .input_short, .form-content .signupConfirm .infoInput .input_short {
    width: 80%;
  }
}

@media (max-width: 530px) {
  .form-content .signupForm .infoInput .input_short, .form-content .signupConfirm .infoInput .input_short {
    width: 100%;
  }
}

.form-content .signupForm .infoInput .userId-remarks, .form-content .signupConfirm .infoInput .userId-remarks {
  padding-left: 120px;
  font-size: 0.9rem;
  color: #A5A5A5;
}

@media (max-width: 768px) {
  .form-content .signupForm .infoInput .userId-remarks, .form-content .signupConfirm .infoInput .userId-remarks {
    padding-left: 20%;
  }
}

@media (max-width: 530px) {
  .form-content .signupForm .infoInput .userId-remarks, .form-content .signupConfirm .infoInput .userId-remarks {
    padding-left: 0;
  }
}

.form-content .signupForm .infoInput .select_box, .form-content .signupConfirm .infoInput .select_box {
  display: inline-block;
}

.form-content .signupForm .infoInput .select_box::after, .form-content .signupConfirm .infoInput .select_box::after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 8px 5px 0 5px;
  border-color: #A5A5A5 transparent transparent transparent;
  position: absolute;
  color: #A5A5A5;
  font-size: 14px;
  right: 12px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.form-content .signupForm .infoInput .select_box #country, .form-content .signupConfirm .infoInput .select_box #country {
  width: 120px;
  height: 44px;
  border: 1px solid #A5A5A5;
  border-radius: 5px;
  padding: 10px 12px;
  color: #313131;
  background-color: #fff;
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
}

.form-content .signupForm .infoInput .emailCheck, .form-content .signupConfirm .infoInput .emailCheck {
  width: auto;
}

.form-content .signupForm .infoInput .emailCheck input, .form-content .signupConfirm .infoInput .emailCheck input {
  width: 220px;
  height: 44px;
}

.form-content .signupForm .infoInput .emailCheck .btn_blue, .form-content .signupConfirm .infoInput .emailCheck .btn_blue {
  margin-left: 10px;
  width: 70px;
  height: 44px;
}

@media (max-width: 768px) {
  .form-content .signupForm .infoInput .emailCheck input, .form-content .signupConfirm .infoInput .emailCheck input {
    width: calc(80% - 80px);
  }
}

@media (max-width: 576px) {
  .form-content .signupForm .infoInput .emailCheck input, .form-content .signupConfirm .infoInput .emailCheck input {
    width: calc(100% - 80px);
  }
}

.form-content .signupForm .infoLine, .form-content .signupConfirm .infoLine {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media (max-width: 530px) {
  .form-content .signupForm .infoLine, .form-content .signupConfirm .infoLine {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

@media (max-width: 768px) {
  .form-content .signupForm .infoLine span, .form-content .signupConfirm .infoLine span {
    width: 30%;
  }
}

@media (max-width: 530px) {
  .form-content .signupForm .infoLine span, .form-content .signupConfirm .infoLine span {
    width: 100%;
  }
}

.form-content .signupForm .infoLine .info, .form-content .signupConfirm .infoLine .info {
  line-height: 44px;
  padding-left: 10px;
  font-weight: 700;
}

@media (max-width: 530px) {
  .form-content .signupForm .infoLine .info, .form-content .signupConfirm .infoLine .info {
    padding-left: 0px;
  }
}

.form-content .signupForm .rule, .form-content .signupConfirm .rule {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.form-content .signupForm .rule .rule-remarks, .form-content .signupConfirm .rule .rule-remarks {
  display: inline-block;
  margin-left: 16px;
}

.form-content .signupForm .rule .rule-remarks a, .form-content .signupConfirm .rule .rule-remarks a {
  color: #50A4E0;
}

.form-content .signupForm .submit, .form-content .signupForm .confirm, .form-content .signupConfirm .submit, .form-content .signupConfirm .confirm {
  width: 100%;
  height: 80px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.form-content .signupForm .submit #btn_submit, .form-content .signupForm .submit #btn_confirm, .form-content .signupForm .confirm #btn_submit, .form-content .signupForm .confirm #btn_confirm, .form-content .signupConfirm .submit #btn_submit, .form-content .signupConfirm .submit #btn_confirm, .form-content .signupConfirm .confirm #btn_submit, .form-content .signupConfirm .confirm #btn_confirm {
  width: 320px;
  height: 48px;
}

.form-content .signupForm .confirm, .form-content .signupConfirm .confirm {
  margin-top: 30px;
}

.payment-content {
  -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;
}

@media (max-width: 768px) {
  .payment-content {
    padding-top: 30px;
  }
}

.payment-content .line-form {
  width: 780px;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 40px;
}

@media (max-width: 768px) {
  .payment-content .line-form {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

@media (max-width: 530px) {
  .payment-content .line-form {
    width: 80%;
  }
}

.payment-content .line-form .content {
  width: 50%;
}

@media (max-width: 768px) {
  .payment-content .line-form .content {
    width: 100%;
  }
}

.payment-content .line-form .left {
  padding: 70px 20px 70px 80px;
}

@media (max-width: 768px) {
  .payment-content .line-form .left {
    padding: 0px 80px 30px 80px;
  }
  .payment-content .line-form .left::after {
    content: " ";
    border-bottom: 1px dashed #A5A5A5;
    display: block;
    width: 100%;
    top: 20px;
  }
}

.payment-content .line-form .left h4 {
  color: #50A4E0;
  margin-bottom: 28px;
}

@media (max-width: 768px) {
  .payment-content .line-form .left h4 {
    text-align: center;
  }
}

.payment-content .line-form .left ul {
  padding-left: 0;
}

@media (max-width: 768px) {
  .payment-content .line-form .left ul {
    margin-bottom: 45px;
  }
}

.payment-content .line-form .left ul li {
  margin-bottom: 20px;
}

@media (max-width: 768px) {
  .payment-content .line-form .left ul li {
    text-align: center;
  }
}

.payment-content .line-form .left ul li .title {
  font-weight: 700;
  width: 100px;
}

.payment-content .line-form .left ul li .convert {
  color: #A5A5A5;
}

.payment-content .line-form .left ul li .sub_content {
  word-wrap: break-word;
  margin-top: 8px;
  display: block;
}

.payment-content .line-form .left ul li .amount, .payment-content .line-form .left ul li .coinType {
  color: #50A4E0;
}

@media (max-width: 768px) {
  .payment-content .line-form .left ul #payment_address {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .payment-content .line-form .left ul #payment_address input {
    width: 80%;
  }
}

.payment-content .line-form .left ul #payment_address #payment_address_content {
  width: 90%;
  height: 36px;
  margin-bottom: 10px;
  border: 1px solid #A5A5A5;
  color: #313131;
}

.payment-content .line-form .left ul #payment_address #payment_address_content:focus {
  border: 2px solid #50A4E0;
}

.payment-content .line-form .left ul #payment_address .far {
  cursor: pointer;
  color: #A5A5A5;
}

.payment-content .line-form .left ul #payment_address .text-copy {
  margin-left: 5px;
  color: #A5A5A5;
  font-size: 14px;
  font-weight: 700;
}

.payment-content .line-form .right {
  padding: 70px 80px 70px 40px;
}

@media (max-width: 768px) {
  .payment-content .line-form .right {
    padding: 15px 80px 0px 80px;
  }
}

.payment-content .line-form .right h4 {
  color: #50A4E0;
  text-align: center;
  margin-top: 0px;
  margin-bottom: 28px;
  line-height: 24px;
}

@media (max-width: 768px) {
  .payment-content .line-form .right h4 {
    margin-bottom: 0px;
  }
}

.payment-content .line-form .right .qrcode-block {
  height: 180px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.payment-content .line-form .right .qrcode-block #qrcode {
  width: 80%;
  height: auto;
}

@media (max-width: 768px) {
  .payment-content .line-form .right .qrcode-block #qrcode {
    width: auto;
    height: 100%;
  }
}

@media (max-width: 530px) {
  .payment-content .line-form .left, .payment-content .line-form .right {
    padding-left: 0px;
    padding-right: 0px;
  }
}

.payment-content .countdown-block, .payment-content .alreadyPay {
  width: 780px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.payment-content .countdown-block {
  margin-bottom: 40px;
}

.payment-content .countdown-block .countdown {
  color: #BA200A;
  font-weight: 700;
  font-size: 18px;
}

.payment-content .countdown-block .countdown span {
  letter-spacing: 3px;
}

.payment-content .alreadyPay #btn_alreadyPay {
  width: 320px;
  height: 48px;
}

.footer {
  position: absolute;
  bottom: 0;
}

.normal-footer {
  width: 100%;
  height: auto;
  background-color: #476F9E;
  color: #ffffff;
  padding: 16px 3rem 16px 3rem;
  font-size: 12px;
}

.normal-footer .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media (max-width: 530px) {
  .normal-footer .container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.normal-footer .container .info {
  text-align: center;
  margin-bottom: 10px;
}

.normal-footer .container .right_container {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  max-width: 100%;
}

@media (max-width: 530px) {
  .normal-footer .container .right_container {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

@media (max-width: 480px) {
  .normal-footer .container .right_container {
    -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;
  }
}

.normal-footer .container .right_container a {
  margin-right: 24px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.normal-footer .container .right_container a:hover {
  color: #e6e6e6;
}

@media (max-width: 768px) {
  .normal-footer .container .right_container a {
    margin-right: 16px;
  }
}

@media (max-width: 480px) {
  .normal-footer .container .right_container a {
    margin-right: 0px;
    margin-bottom: 10px;
  }
}

.nofix {
  position: relative;
}

@media (max-width: 768px) {
  .payment-footer {
    position: relative;
    margin-top: 60px;
  }
}

.home-footer {
  border-top: 1px solid #A5A5A5;
  background-color: #fff;
  color: #A5A5A5;
}

@-webkit-keyframes title-In {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-20%);
            transform: translateY(-20%);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0%);
            transform: translateY(0%);
  }
}

@keyframes title-In {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-20%);
            transform: translateY(-20%);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0%);
            transform: translateY(0%);
  }
}

@-webkit-keyframes map-appear {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes map-appear {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@-webkit-keyframes header-appear {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes header-appear {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@-webkit-keyframes normal-appear {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes normal-appear {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@-webkit-keyframes dash {
  0% {
    stroke-dashoffset: 300;
  }
  50% {
    stroke-dashoffset: 0;
  }
  100% {
    stroke-dashoffset: 300;
  }
}

@keyframes dash {
  0% {
    stroke-dashoffset: 300;
  }
  50% {
    stroke-dashoffset: 0;
  }
  100% {
    stroke-dashoffset: 300;
  }
}

.ani-title {
  -webkit-animation-name: title-In;
          animation-name: title-In;
  -webkit-animation-duration: 2s;
          animation-duration: 2s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-delay: 0s;
          animation-delay: 0s;
}

.ani-normal {
  -webkit-animation-name: normal-appear;
          animation-name: normal-appear;
  -webkit-animation-duration: 2s;
          animation-duration: 2s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
}
/*# sourceMappingURL=main.css.map */