@charset "UTF-8";
@-webkit-keyframes txtMask {
  0% {
    width: 0%;
    opacity: 0;
  }
  100% {
    width: 105%;
    opacity: 1;
  }
}
@keyframes txtMask {
  0% {
    width: 0%;
    opacity: 0;
  }
  100% {
    width: 105%;
    opacity: 1;
  }
}
@-webkit-keyframes rerotate {
  from {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(-360deg);
            transform: rotate(-360deg);
  }
}
@keyframes rerotate {
  from {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(-360deg);
            transform: rotate(-360deg);
  }
}
@-webkit-keyframes rotate {
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@keyframes rotate {
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@-webkit-keyframes dotAni {
  0% {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  80% {
    opacity: 0.3;
    -webkit-transform: scale(1.4);
            transform: scale(1.4);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(1.45);
            transform: scale(1.45);
  }
}
@keyframes dotAni {
  0% {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  80% {
    opacity: 0.3;
    -webkit-transform: scale(1.4);
            transform: scale(1.4);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(1.45);
            transform: scale(1.45);
  }
}
.contentBox .leftBox {
  padding-right: 50px;
}
@media (max-width: 1024px) {
  .contentBox .leftBox {
    padding: 0;
  }
}

.titleBox {
  margin-bottom: 30px;
}

.loginArea {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  max-width: 1060px;
  margin: 60px auto 30px;
  background-color: #fff;
  padding: 90px;
  border: 1px solid #f1f1f1;
  -webkit-box-shadow: 0px 0px 15px 0px rgba(4, 4, 4, 0.1);
          box-shadow: 0px 0px 15px 0px rgba(4, 4, 4, 0.1);
}
@media (max-width: 960px) {
  .loginArea {
    padding: 45px;
  }
}
@media (max-width: 767px) {
  .loginArea {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 30px 20px;
  }
}
@media (max-width: 640px) {
  .loginArea {
    border: none;
    -webkit-box-shadow: none;
            box-shadow: none;
    padding-left: 0;
    padding-right: 0;
  }
}
.loginArea .leftBox,
.loginArea .rightBox {
  position: relative;
  width: 50%;
}
@media (max-width: 767px) {
  .loginArea .leftBox,
.loginArea .rightBox {
    width: 100%;
  }
}
.loginArea .leftBox {
  padding-right: 90px;
}
@media (max-width: 960px) {
  .loginArea .leftBox {
    padding-right: 45px;
  }
}
@media (max-width: 767px) {
  .loginArea .leftBox {
    padding-right: 0;
    padding-bottom: 30px;
  }
}
.loginArea .rightBox {
  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;
  padding-left: 90px;
  border-left: 1px solid #eaeaea;
}
@media (max-width: 960px) {
  .loginArea .rightBox {
    padding-left: 45px;
  }
}
@media (max-width: 767px) {
  .loginArea .rightBox {
    padding-left: 0;
    padding-top: 30px;
    border-left: none;
    border-top: 1px solid #eaeaea;
  }
}
.loginArea .rightBox::before {
  content: "OR";
  position: absolute;
  left: -25px;
  top: 50%;
  margin-top: -25px;
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  letter-spacing: 0.05em;
  background-color: #fff;
}
@media (max-width: 767px) {
  .loginArea .rightBox::before {
    top: -25px;
    left: 50%;
    margin-left: -25px;
    margin-top: 0;
  }
}
.loginArea .welcomeText {
  margin-bottom: 50px;
  letter-spacing: 0.05em;
}
.loginArea .welcomeText .text {
  font-size: 22px;
  color: #111;
}
@media (max-width: 767px) {
  .loginArea .welcomeText .text {
    font-size: 20px;
  }
}
.loginArea input[type=text], .loginArea input[type=email], .loginArea input[type=password] {
  width: 100%;
  height: 42px;
  padding: 10px 50px 10px 0;
  background: none;
  border: none;
  border-bottom: 1px solid #555;
  font-size: 16px;
  color: #000;
  -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: #21a13d;
}
.loginArea input[type=text]:focus ~ .title, .loginArea input[type=text].hasValue ~ .title, .loginArea input[type=email]:focus ~ .title, .loginArea input[type=email].hasValue ~ .title, .loginArea input[type=password]:focus ~ .title, .loginArea input[type=password].hasValue ~ .title {
  top: -15px;
}
.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: #000;
  margin-bottom: 40px;
}
.loginArea .textBox {
  padding-top: 15px;
  text-align: center;
  font-size: 16px;
}
.loginArea .textBox a {
  color: #21a13d;
}
.loginArea .textBox a:hover {
  text-decoration: underline;
}
.loginArea .title {
  position: absolute;
  left: 0;
  top: 10px;
  font-size: 14px;
  letter-spacing: 0.05em;
  color: #808080;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.loginArea .btnBox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 15px;
}
.loginArea .btnBox a {
  position: relative;
  font-size: 14px;
  padding-right: 10px;
  margin-right: 10px;
}
.loginArea .btnBox a:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  margin-top: -7px;
  width: 1px;
  height: 14px;
  background-color: #808080;
}
.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 {
  background-image: url("../images/facebook.svg");
  background-color: #3b5781;
}
.loginArea .thirdPartyItemFb a {
  color: #fff;
}
.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;
  border-bottom: 1px solid #808080;
}
.loginArea .btn_relog:hover {
  color: #21a13d;
  border-bottom-color: #21a13d;
}

/*註冊頁面*/
.section {
  margin-bottom: 40px;
}
.section h3 {
  position: relative;
  clear: both;
  margin-bottom: 15px;
  padding: 8px 0;
  border-bottom: 1px solid #dadada;
  font-weight: 400;
  font-size: 20px;
}

.condition .textEditor {
  height: 250px;
  margin: 0;
  padding: 15px;
  border: 1px solid #ededed;
  font-size: 13px;
  background-color: #fff;
  overflow-y: scroll;
}
.condition .check {
  margin-top: 10px;
  font-size: 15px;
  color: #db1b60;
}
.condition .check label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.condition .check input[type=checkbox] {
  margin-right: 5px;
  width: 25px;
  height: 25px;
}

.formList {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-left: -20px;
  margin-right: -20px;
}
.formList li {
  width: 50%;
  padding-left: 20px;
  padding-right: 20px;
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .formList li {
    width: 100%;
  }
}
.formList li.newsletter .right {
  padding-top: 15px;
}
@media (max-width: 640px) {
  .formList li.newsletter .right {
    padding-top: 5px;
  }
}
.formList .full {
  width: 100%;
}
.formList .noteTxt {
  margin-top: 10px;
  font-size: 14px;
  color: #888888;
  letter-spacing: 0.05em;
}
.formList .left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 12px;
  font-size: 16px;
  color: #3b3b3b;
  letter-spacing: 0.05em;
}
.formList .left em {
  font-style: normal;
  font-size: 16px;
  font-weight: 500;
  font-family: "Noto Sans TC", "新細明體", Verdana, Geneva, sans-serif;
  color: #21a13d;
  padding-left: 7px;
  /*星號的顏色*/
}
.formList .right {
  font-size: 16px;
  color: #3b3b3b;
  letter-spacing: 0.05em;
}
.formList .right a {
  font-size: 16px;
  color: #3b3b3b;
  letter-spacing: 0.05em;
}
.formList .right a:hover {
  text-decoration: underline;
}
.formList select {
  color: #979797;
  font-size: 15px;
  border: 0;
  padding-left: 10px;
  background-color: #f6f6f6;
  width: 100%;
  height: 50px;
}
.formList input[type=text], .formList input[type=password] {
  width: 100%;
  height: 55px;
  line-height: 55px;
  color: #979797;
  font-size: 15px;
  padding: 5px 15px;
  border: 0;
  border-radius: 0;
  background-color: #f6f6f6;
}
.formList .btn1 {
  padding-top: 20px;
}

#data_address {
  margin-top: 12px;
}

.error {
  border: 1px solid #f00 !important;
}

.orderTxt {
  font-size: 14px;
  letter-spacing: 0.05em;
  padding-bottom: 10px;
}

/*驗證碼*/
.checkArea {
  clear: both;
  padding-top: 25px;
}
.checkArea a {
  /*送出按鈕*/
  display: block;
  padding: 7px 15px;
  -webkit-box-shadow: 2px 2px 2px #ccc;
          box-shadow: 2px 2px 2px #ccc;
  font-size: 16px;
  color: #fff;
  cursor: pointer;
  border-radius: 3px;
}

/* radioStyle */
.radioStyle {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #7d7d7d;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.6px;
  cursor: pointer;
  margin-right: 10px;
}
.radioStyle:last-child {
  margin-right: 0;
}
.radioStyle .radioItem {
  position: relative;
  display: inline-block;
  margin-right: 5px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 1px solid #d4d4d4;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  vertical-align: -3px;
}
.radioStyle .radioItem:before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  margin-top: -4px;
  margin-left: -4px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  -webkit-transform: scale(0);
          transform: scale(0);
  background-color: #3fa756;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.radioStyle input[type=radio] {
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.radioStyle input[type=radio]:checked + span:before {
  -webkit-transform: scale(1);
          transform: scale(1);
}
.radioStyle .radioTitle {
  color: #7d7d7d;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.6px;
}

.checkArea .btn,
.sliderBox {
  display: inline-block;
  vertical-align: middle;
}

.sliderBox {
  position: relative;
  margin-right: 8px;
}

.note {
  /*向右滑動解鎖*/
  position: absolute;
  left: 55px;
  top: 7px;
  font-size: 15px;
  font-family: "微軟正黑體";
  color: #999;
}

.successTxt {
  color: #6a6a6a;
  font-size: 20px;
  letter-spacing: 0.3px;
  line-height: 2.06;
  text-align: center;
  padding-bottom: 50px;
}

/*history.php 歷史訂單列表*/
.orderList table {
  border-collapse: collapse;
  color: #222;
}
.orderList th {
  padding: 15px;
  letter-spacing: 0.1em;
  font-size: 15px;
  font-weight: 400;
  color: #fff;
  border: 1px solid #ececec;
  background-color: #bbb;
}
.orderList td {
  padding: 15px 10px;
  font-size: 13px;
  color: #434343;
  letter-spacing: 0.05em;
  background: #fff;
  border: 1px solid #ececec;
}
.orderList a {
  color: #21a13d;
}
.orderList a:hover {
  text-decoration: underline;
}

@media (max-width: 640px) {
  .formBox .left {
    display: block;
    float: none;
    width: 100%;
    margin: 0 0 10px 0;
    text-align: left;
  }
  .formBox input[type=text], .formBox input[type=password] {
    width: 100%;
  }
}