@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+TC:wght@300;400;500;700&family=Roboto:wght@400;500&display=swap");
/*#0066cc*/
@-webkit-keyframes listShow {
  0% {
    -webkit-transform: translateY(5px);
            transform: translateY(5px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
}
@keyframes listShow {
  0% {
    -webkit-transform: translateY(5px);
            transform: translateY(5px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
}
@-webkit-keyframes pulse {
  0% {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
  }
  50% {
    opacity: 0.3;
  }
  100% {
    -webkit-transform: scale(1.5);
            transform: scale(1.5);
    opacity: 0;
  }
}
@keyframes pulse {
  0% {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
  }
  50% {
    opacity: 0.3;
  }
  100% {
    -webkit-transform: scale(1.5);
            transform: scale(1.5);
    opacity: 0;
  }
}
@-webkit-keyframes bounce {
  0%, 10% {
    top: 0;
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
  }
  80% {
    top: 10px;
    -webkit-transform: scaleX(1) scaleY(1);
            transform: scaleX(1) scaleY(1);
  }
  100% {
    top: 10px;
    -webkit-transform: scaleX(1.05) scaleY(0.9);
            transform: scaleX(1.05) scaleY(0.9);
  }
}
@keyframes bounce {
  0%, 10% {
    top: 0;
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
  }
  80% {
    top: 10px;
    -webkit-transform: scaleX(1) scaleY(1);
            transform: scaleX(1) scaleY(1);
  }
  100% {
    top: 10px;
    -webkit-transform: scaleX(1.05) scaleY(0.9);
            transform: scaleX(1.05) scaleY(0.9);
  }
}
.mainArea {
  padding: 0;
}
.mainArea .wrap {
  max-width: 100%;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.mainArea .left {
  line-height: 0;
}
.mainArea .right {
  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-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 30px 20px;
}
.mainArea .left,
.mainArea .right {
  width: 50%;
}
.mainArea .Img {
  position: relative;
  display: block;
  width: 100%;
}
.mainArea .Img img {
  width: 100%;
}
@media (min-width: 993px) {
  .mainArea .Img {
    height: 0;
    padding-bottom: 900px;
    overflow: hidden;
  }
  .mainArea .Img img {
    display: block;
    height: 100%;
    width: auto;
    max-width: none;
    max-height: none;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
}
@media (max-width: 992px) {
  .mainArea .wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .mainArea .left,
.mainArea .right {
    width: 100%;
  }
}

.loginArea {
  width: 100%;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 960px) {
  .loginArea {
    padding-bottom: 20px;
  }
}
.loginArea .welcomeText {
  margin-bottom: 30px;
  text-align: center;
}
.loginArea .welcomeText .en {
  margin-bottom: 30px;
  font-size: 30px;
  font-family: "Noto Sans TC";
  font-weight: 500;
  letter-spacing: 3px;
}
.loginArea .welcomeText .en span {
  color: #a09673;
}
.loginArea .welcomeText .text {
  font-size: 16px;
  letter-spacing: 0.8px;
  color: #9d9d9d;
}
.loginArea .separateTitle {
  display: table;
  white-space: nowrap;
  padding-top: 20px;
  padding-bottom: 25px;
}
.loginArea .separateTitle:before, .loginArea .separateTitle:after {
  content: "";
  width: 50%;
  height: 1px;
  display: table-cell;
  background: -webkit-gradient(linear, left top, left bottom, from(#dadada), to(#dadada)) repeat-x left center;
  background: linear-gradient(#dadada, #dadada) repeat-x left center;
  background-size: 1px 1px;
}
.loginArea .separateTitle span {
  color: #9d9d9d;
  font-size: 14px;
  line-height: 1.8;
  letter-spacing: 0.7px;
  padding: 0 40px;
}
@media (max-width: 480px) {
  .loginArea .separateTitle span {
    padding: 10px 0 20px;
  }
}
.loginArea input[type=text], .loginArea input[type=email], .loginArea input[type=password] {
  width: 100%;
  height: 60px;
  padding: 10px 10px 10px 80px;
  background: none;
  border: none;
  border-radius: 5px;
  border: 1px solid #d9d9d9;
  font-family: "Noto Sans TC";
  font-size: 16px;
  color: rgba(0, 0, 0, 0.7);
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.loginArea input[type=text]:focus, .loginArea input[type=text].hasValue, .loginArea input[type=email]:focus, .loginArea input[type=email].hasValue, .loginArea input[type=password]:focus, .loginArea input[type=password].hasValue {
  border-color: #d9d9d9;
}
.loginArea .btn_relog {
  font-size: 14px;
  letter-spacing: 0.05em;
  color: #454545;
}
.loginArea .icon {
  position: absolute;
  right: 10px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.loginArea .iconLock {
  width: 15px;
  height: 20px;
}
.loginArea .iconKey {
  width: 15px;
  height: 15px;
}
.loginArea .inputBox {
  position: relative;
  color: #353535;
  margin-bottom: 10px;
}
.loginArea .textBox {
  padding-top: 30px;
  text-align: center;
  font-size: 14px;
  color: #2d4564;
}
.loginArea .textBox a {
  color: #2d4564;
}
.loginArea .textBox a:hover {
  text-decoration: underline;
}
.loginArea .title {
  position: absolute;
  left: 24px;
  top: 50%;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
  font-size: 16px;
  font-family: "Noto Sans TC";
  letter-spacing: 0.05em;
  color: #353535;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.loginArea .btnBox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-top: 15px;
  margin-bottom: 25px;
}
.loginArea .btnBox a {
  color: #3a3a3a;
  font-weight: 500;
  font-size: 14px;
  padding: 0 18px;
  position: relative;
}
.loginArea .btnBox a:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  margin-top: -8px;
  width: 1px;
  height: 16px;
  background-color: #d3d3d3;
}
.loginArea .thirdPartyBox {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.loginArea .thirdPartyItem {
  margin-bottom: 25px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  background-repeat: no-repeat;
  background-size: 22px 22px;
  background-position: 18px 50%;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.loginArea .thirdPartyItem:hover {
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.15);
          box-shadow: 0 3px 6px rgba(0, 0, 0, 0.15);
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
}
.loginArea .thirdPartyItem a {
  display: block;
  font-size: 14px;
  letter-spacing: 0.05em;
  color: #454545;
}
.loginArea .thirdPartyItemGoogle {
  background-color: #f1f1f1;
  background-image: url("../images/google.svg");
}
.loginArea .thirdPartyItemFb {
  border-radius: 5px;
  background-color: #f7f7f7;
}
.loginArea .thirdPartyItemFb a {
  color: #758ab7;
}
.loginArea .thirdPartyItemFb a:before {
  content: "";
  width: 28px;
  height: 28px;
  display: inline-block;
  border-radius: 5px;
  background-color: #3b5998;
  background-image: url("../images/facebook.svg");
  background-repeat: no-repeat;
  background-position: calc(100% - 4px) bottom;
  background-size: 14px 22px;
  vertical-align: -8px;
  margin-right: 10px;
}
.loginArea .thirdPartyItemLine {
  background-image: url("../images/line.svg");
  border: 1px solid #c9c9c9;
}
.loginArea .forgetCheck,
.loginArea .resendCheck {
  display: none;
}
.loginArea .btn_relog {
  display: inline-block;
  padding-top: 15px;
  color: #808080;
}
.loginArea .btn_relog:hover {
  color: #a09673;
  border-bottom-color: #a09673;
}