* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html,
body {
  position: relative;
  margin: 0;
  padding: 0;
  font-size: 12px;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
}

.left, .right {
  position: fixed;
  z-index: 0;
  width: 25vw;
  height: 25vw;
}

.left {
  top: 20%;
  left: -10%;
}

.right {
  bottom: 5%;
  right: -10%;
}

main {
  padding-top: 56px;
  position: relative;
  z-index: 2;
}

nav {
  position: fixed;
  background-color: #fff;
  bottom: 0;
  width: 100%;
  height: 56px;
  z-index: 2;
}

nav .navbar {
  height: 100%;
}

nav .navbar ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
}

nav .navbar ul li, nav .navbar ul a {
  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;
  font-size: 1rem;
  color: #9D9D9D;
  text-decoration: none;
}

nav .navbar ul li i, nav .navbar ul a i {
  font-size: 1.5rem;
  padding-bottom: 2px;
}

#topbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 56px;
  z-index: 999;
  background-color: #F9781A;
  font-size: 2.0rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 0 20px;
}

#topbar .logo_area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

#topbar .logo_area .back {
  margin-right: 10px;
  color: #fff;
}

#topbar .logo_area .logo {
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

#topbar .refresh {
  cursor: pointer;
  color: #fff;
}

main {
  padding-bottom: 70px;
}

main #register_form {
  padding: 18px 44px 0px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -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;
}

main #register_form * {
  font-family: Microsoft JhengHei;
}

main #register_form form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -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;
  width: 100%;
}

main #register_form form div {
  width: 100%;
  height: 56px;
  background-color: rgba(0, 0, 0, 0.16);
  border-radius: 4px;
  position: relative;
  margin-bottom: 20px;
}

main #register_form form div .input {
  font-size: 2rem;
  color: #757575;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 20px;
}

main #register_form form div .input-eyes {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 12px;
  cursor: pointer;
}

main #register_form form div input {
  width: 80%;
  height: 100%;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 50px;
  background-color: rgba(0, 0, 0, 0);
  outline: none;
  border: none;
  font-size: 1.1rem;
  color: #757575;
}

main #register_form form div .eye {
  font-size: 2rem;
  color: #757575;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 20px;
}

main #register_form form span {
  width: 100%;
  margin-bottom: 20px;
}

main #register_form form span label {
  font-size: 1.167rem;
}

main #register_form form button {
  width: 100%;
  height: 36px;
  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;
  letter-spacing: 1px;
  border-radius: 4px;
  outline: none;
  font-size: 1.2rem;
  margin-bottom: 12px;
  border: none;
  background-color: #f9781a;
  color: white;
  cursor: pointer;
}

main #register_form form .lastpage {
  color: #bcbcbc;
  text-decoration: none;
  font-size: 1.2rem;
  margin-bottom: 17px;
  width: 100%;
  height: 36px;
  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;
  letter-spacing: 1px;
  border-radius: 4px;
  outline: none;
  border: 1px solid #c3c3c3;
}

main #register_form .policy {
  text-decoration: none;
  font-size: 1.2rem;
  letter-spacing: 1px;
  color: #f9781a;
}

main #register_form .policy-privacy {
  margin-bottom: 17px;
}

main #register_form .policy-member,
main #register_form .policy-privacy {
  cursor: pointer;
}

main #register_form .step-text {
  font-size: 20px;
  color: #f9781a;
  margin-top: 0;
  margin-bottom: 15px;
}

main #register_form .step {
  background-color: white;
  border-radius: 0;
  width: 186px;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 30px;
}

main #register_form .step .step-img {
  width: 30px;
  height: 30px;
  background-color: #d1d1d1;
  border-radius: 100%;
  color: white;
  font-size: 20px;
  text-align: center;
  line-height: 30px;
  margin-bottom: 0px;
}

main #register_form .step .step-1 {
  background-color: #f9781a;
}

main #register_form .step .step-next {
  width: 18px;
  margin-bottom: 0px;
}

main #register_form .module-policy-privacy,
main #register_form .module-policy-member {
  height: 557px;
  width: 328px;
  position: fixed;
  border-radius: 10px;
  background-color: white;
  font-size: 20px;
  top: 94px;
  display: none;
}

main #register_form .module-policy-privacy .module-policy-privacy-title,
main #register_form .module-policy-privacy .module-policy-member-title,
main #register_form .module-policy-member .module-policy-privacy-title,
main #register_form .module-policy-member .module-policy-member-title {
  height: 50px;
  width: 100%;
  background-color: #f9781a;
  color: white;
  border-radius: 10px 10px 0 0;
  text-align: center;
  line-height: 50px;
}

main #register_form .module-policy-privacy .module-policy-privacy-detail,
main #register_form .module-policy-privacy .module-policy-member-detail,
main #register_form .module-policy-member .module-policy-privacy-detail,
main #register_form .module-policy-member .module-policy-member-detail {
  height: 467px;
  font-size: 18px;
  line-height: 22px;
  text-align: justify;
  border-right: 1px solid black;
  border-left: 1px solid black;
  padding: 22px 16px 13px;
  overflow: scroll;
}

main #register_form .module-policy-privacy .module-policy-privacy-close,
main #register_form .module-policy-privacy .module-policy-member-close,
main #register_form .module-policy-member .module-policy-privacy-close,
main #register_form .module-policy-member .module-policy-member-close {
  height: 40px;
  background-color: #f9781a;
  color: white;
  border-radius: 0 0 10px 10px;
  text-align: center;
  line-height: 40px;
  cursor: pointer;
}

main #register_form .module-policy-privacy .module-policy-member-detail,
main #register_form .module-policy-member .module-policy-member-detail {
  overflow-y: scroll;
}
/*# sourceMappingURL=Jimmy_register.css.map */