.clearfix {
  display: block;
  zoom: 1;
}
.clearfix:after {
  content: " ";
  display: block;
  font-size: 0;
  height: 0;
  clear: both;
  visibility: hidden;
}
.link-default {
  text-decoration: none;
  outline: none;
}
.hide {
  opacity: 0;
  visibility: hidden;
}
.show {
  opacity: 1;
  visibility: visible;
}
/** animate **/
@-webkit-keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    -webkit-transform: translateY(0);
  }
  40% {
    -webkit-transform: translateY(-30px);
  }
  60% {
    -webkit-transform: translateY(-15px);
  }
}
@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-30px);
  }
  60% {
    transform: translateY(-15px);
  }
}
.flex {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
}
.scaleRotateAnimateDisplay {
  -webkit-transform: scale(1) rotate(180deg);
  -moz-transform: scale(1) rotate(180deg);
  -o-transform: scale(1) rotate(180deg);
  transform: scale(1) rotate(180deg);
}
.scaleRotateAnimateDisplayN {
  -webkit-transform: scale(0) rotate(0deg);
  -moz-transform: scale(0) rotate(0deg);
  -o-transform: scale(0) rotate(0deg);
  transform: scale(0) rotate(0deg);
}
.opacityDisplay {
  opacity: 0;
  visibility: hidden;
}
.couponBg {
  background: #ffbd27;
  background: -moz-linear-gradient(top, #ffbd27 0%, #ff6d00 99%);
  background: -webkit-linear-gradient(top, #ffbd27 0%, #ff6d00 99%);
  background: linear-gradient(to bottom, #ffbd27 0%, #ff6d00 99%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffbd27', endColorstr='#ff6d00', GradientType=0);
}
.material_checkbox {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  -o-flex-direction: row;
  flex-direction: row;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  -o-align-items: center;
  align-items: center;
  -webkit-justify-content: flex-start;
  -moz-justify-content: flex-start;
  -ms-justify-content: flex-start;
  -o-justify-content: flex-start;
  justify-content: flex-start;
  position: relative;
  cursor: pointer;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.material_checkbox .checkbox {
  position: relative;
  cursor: pointer;
  margin-right: 8px;
  border-radius: 0;
}
.material_checkbox .checkbox:before {
  content: "";
  position: absolute;
  left: 0;
  z-index: 1;
  width: 10px;
  height: 10px;
  border: 2px solid #363636;
  border-radius: 0;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.material_checkbox .checkbox:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 14px;
  height: 14px;
  background: #f2f2f2;
  border-radius: 0;
  box-shadow: none;
  border: 0;
  cursor: pointer;
}
.material_checkbox .checkbox:checked:before {
  height: 6px;
  border-color: #ffbd27;
  border-top-style: none;
  border-right-style: none;
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.material_radio input[type="radio"] {
  display: none;
}
.material_radio input[type="radio"] + label {
  cursor: pointer;
}
.material_radio input[type="radio"] + label::before {
  transition: all 250ms cubic-bezier(0.4, 0.25, 0.3, 1);
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #363636;
  border: 0px solid #363636;
  font-size: 0;
  position: absolute;
  bottom: 10px;
  left: 10px;
  transform: translate(-50%, 50%);
}
.material_radio input[type="radio"] + label::after {
  transition: all 250ms cubic-bezier(0.4, 0.25, 0.3, 1);
  content: "";
  width: 0;
  height: 0;
  border-radius: 50%;
  background-color: #363636;
  position: absolute;
  bottom: 10px;
  left: 10px;
  transform: translate(-50%, 50%);
}
.material_radio input[type="radio"]:checked + label::before {
  background-color: transparent;
  width: 16px;
  height: 16px;
  border-width: 2px;
}
.material_radio input[type="radio"]:checked + label::after {
  width: 8px;
  height: 8px;
}
.op_password_w:before {
  opacity: 1 !important;
  visibility: visible !important;
}
.op_password_w .windows_content {
  opacity: 1 !important;
  visibility: visible !important;
  -webkit-transform: translateY(0) !important;
  -moz-transform: translateY(0) !important;
  -o-transform: translateY(0) !important;
  transform: translateY(0) !important;
}
/***** 限制 z-index *****/
.picker {
  z-index: 997 !important;
}
/***** menu樣式 *****/
#password_windows {
  display: none;
  position: fixed;
  width: 100vw;
  height: 120%;
  top: -55px;
  z-index: 998;
}
#password_windows:before {
  content: "";
  position: absolute;
  background: rgba(0, 0, 0, 0.5);
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
#password_windows .windows_content {
  position: absolute;
  background: rgb(255, 255, 255);
  width: 400px;
  height: 300px;
  font-size: 14px;
  border-radius: 10px;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  overflow: hidden;
  z-index: 9998;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
#password_windows .windows_content .close_btn {
  position: absolute;
  right: 15px;
  top: 15px;
  background-color: transparent;
  border: 0;
  cursor: pointer;
  font-size: 18px;
  z-index: 2;
}
#password_windows .windows_content .close_btn:hover {
  color: rgb(255, 189, 39);
}
#password_windows .windows_content header {
  position: relative;
  font-size: 20px;
  margin-bottom: 12px;
  padding: 33px 0 20px 30px;
  z-index: 1;
  font-weight: bold;
}
#password_windows .windows_content .msg {
  width: 70%;
  margin: 30px auto 0;
}
#password_windows .windows_content .msg .user_data .item {
  position: relative;
  margin: 25px 0 15px;
}
#password_windows .windows_content .msg .user_data .item .icon {
  position: absolute;
  left: 0;
}
#password_windows .windows_content .msg .user_data .item .input_style {
  background: transparent;
  box-sizing: border-box;
  width: 100%;
  border: 0;
  border-bottom: 1px solid rgb(0, 0, 0);
  border-radius: 0;
  padding-left: 24px;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
#password_windows .windows_content .msg .user_data .item .input_style:focus,
#password_windows .windows_content .msg .user_data .item .input_style:active {
  border-bottom: 1px solid rgb(255, 189, 39);
}
#password_windows .windows_content .msg .user_data .pswd .input_style {
  padding-right: 24px;
}
#password_windows .windows_content .msg .user_data .pswd .show_pswd {
  position: absolute;
  cursor: pointer;
  right: 0;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
#password_windows .windows_content .msg .user_data .pswd .show_pswd:hover {
  color: rgb(255, 189, 39);
}
#password_windows .windows_content .msg .user_data .pswd #r_pwindicator {
  position: absolute;
  top: 1.5em;
  left: 10px;
}
#password_windows .windows_content .msg .user_data .pswd #r_pwindicator .bar {
  margin-bottom: 4px;
  height: 2px;
}
#password_windows .windows_content .msg .user_data .pswd #r_pwindicator .label {
  font-size: 12px;
}
#password_windows .windows_content .msg .user_data .pswd .pw-very-weak .bar {
  background: rgb(216, 35, 22);
  width: 30px;
}
#password_windows .windows_content .msg .user_data .pswd .pw-very-weak .label {
  color: rgb(216, 35, 22);
}
#password_windows .windows_content .msg .user_data .pswd .pw-weak .bar {
  background: rgb(216, 35, 22);
  width: 60px;
}
#password_windows .windows_content .msg .user_data .pswd .pw-weak .label {
  color: rgb(216, 35, 22);
}
#password_windows .windows_content .msg .user_data .pswd .pw-mediocre .bar {
  background: rgb(216, 35, 22);
  width: 90px;
}
#password_windows .windows_content .msg .user_data .pswd .pw-mediocre .label {
  color: rgb(216, 35, 22);
}
#password_windows .windows_content .msg .user_data .pswd .pw-strong .bar {
  background: rgb(216, 35, 22);
  width: 120px;
}
#password_windows .windows_content .msg .user_data .pswd .pw-strong .label {
  color: rgb(216, 35, 22);
}
#password_windows .windows_content .msg .user_data .pswd .pw-very-strong .bar {
  background: rgb(216, 35, 22);
  width: 150px;
}
#password_windows .windows_content .msg .user_data .pswd .pw-very-strong .label {
  color: rgb(216, 35, 22);
}
#password_windows .windows_content .msg .user_data .btn_style {
  background: rgb(255, 189, 39);
  border: 0;
  color: rgb(255, 255, 255);
  width: 100%;
  height: 40px;
  border-radius: 5px;
  margin-top: 24px;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
#password_windows .windows_content .msg .user_data .btn_style:hover {
  background: rgb(255, 234, 0);
}
#password_windows .windows_content .btn_group {
  position: absolute;
  bottom: 15px;
  right: 15px;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  -o-flex-direction: row;
  flex-direction: row;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  -o-align-items: center;
  align-items: center;
  -webkit-justify-content: space-around;
  -moz-justify-content: space-around;
  -ms-justify-content: space-around;
  -o-justify-content: space-around;
  justify-content: space-around;
  opacity: 0;
  visibility: hidden;
}
#password_windows .windows_content .btn_group .btn_style {
  flex: 1;
  cursor: pointer;
  text-align: center;
  padding: 8px 15px;
  border-radius: 10px;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
