/**
 * H5UI (http://h5ui.io)
 * Copyright (C) 2017 H5UI.io
 * Licensed under the MIT license (https://mit-license.org)
 */
*,
*:before,
*:after {
  box-sizing: border-box;
}
html,
body {
  position: relative;
  height: 100%;
  width: 100%;
}
html {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-tap-highlight-color: transparent;
}
body {
  background: #F5F6F7;
  font-family: -apple-system-font, "Helvetica Neue", sans-serif;
  color: #222;
  margin: 0;
  padding: 0;
  font-size: 14px;
  line-height: 1.41176471;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  position: relative;
  text-align: left;
}
a {
  color: #222;
  text-decoration: none;
}
a,
input,
button,
textarea,
select {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  outline: 0;
}
textarea {
  resize: none;
  vertical-align: middle;
}
img {
  border: 0;
}
small {
  font-size: 80%;
}
.clearfix:before,
.clearfix:after {
  content: "";
  display: table;
}
.clearfix:after {
  clear: both;
}
.disabled,
[disabled] {
  opacity: 0.55;
  pointer-events: none;
}
.pull-left {
  float: left !important;
}
.pull-right {
  float: right !important;
}
.text-center {
  text-align: center !important;
}
.text-left {
  text-align: left !important;
}
.text-right {
  text-align: right !important;
}
.h5ui-page.top {
  padding-top: 15px;
}
.h5ui-page.bottom {
  padding-bottom: 15px;
}
.h5ui-page.spacing {
  padding: 0 15px;
}
.h5ui-page.spacing-cell {
  padding: 15px;
}
.modal-backdrop {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1040;
  background-color: #000;
}
.modal-backdrop.in {
  filter: alpha(opacity=40);
  opacity: .4;
}
.h5ui-group {
  margin-bottom: 15px;
}
.h5ui-group_title {
  margin: 0;
  padding: 0 15px 5px;
  font-size: 14px;
  color: #999;
  font-weight: 400;
}
.h5ui-form {
  background: #FFF;
  position: relative;
}
.h5ui-form:before {
  content: " ";
  -webkit-transform: scale(0.5);
  -ms-transform: scale(0.5);
      transform: scale(0.5);
  -webkit-transform-origin: 0 0;
  -ms-transform-origin: 0 0;
      transform-origin: 0 0;
  pointer-events: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 200%;
  height: 0;
  border-top: 1px solid #E5E5E5;
}
.h5ui-form:last-child:before {
  content: " ";
  -webkit-transform: scale(0.5);
  -ms-transform: scale(0.5);
      transform: scale(0.5);
  -webkit-transform-origin: 0 0;
  -ms-transform-origin: 0 0;
      transform-origin: 0 0;
  pointer-events: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 200%;
  bottom: 0;
  height: 200%;
  border-bottom: 1px solid #E5E5E5;
}
.h5ui-form-label {
  width: 100px;
  padding: 14px 0 14px 15px;
  line-height: 1.1333;
  font-size: 16px;
  font-weight: 400;
  margin: 0;
  color: #222;
  position: absolute;
}
.h5ui-form-input {
  width: 100%;
  border: 0;
  outline: 0;
  font-size: 16px;
  box-shadow: none;
  -webkit-box-shadow: none;
  -webkit-appearance: none;
  border-radius: 0;
  color: #222;
  padding: 10px 15px 10px 100px;
  background: #FFF;
}
.h5ui-input-cell {
  float: none;
  width: 100%;
  padding: 11px 15px;
  position: static;
}
.h5ui-input-cell small {
  color: #999;
}
.h5ui-form-static {
  font-size: 16px;
  width: 100%;
  padding: 12px 10px 12px 100px;
  margin-bottom: 0;
}
.h5ui-form-input_tip {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  font-size: 16px;
  line-height: 1.1333;
  color: #666;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
      align-items: center;
  padding: 0 15px;
}
.h5ui-form-input_tip .code-btn {
  padding: 14px 0;
  display: block;
  color: var(--main-color);
}
.h5ui-form-input_tip .code-btn:before {
  content: " ";
  -webkit-transform: scale(0.5);
  -ms-transform: scale(0.5);
      transform: scale(0.5);
  -webkit-transform-origin: 0 0;
  -ms-transform-origin: 0 0;
      transform-origin: 0 0;
  pointer-events: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 200%;
  height: 200%;
  border-left: 1px solid #E5E5E5;
}
.h5ui-form-error .h5ui-form-label {
  color: #EE780C;
}
.h5ui-form-error .icon-form_error {
  width: 16px;
  height: 16px;
  background: url("../img/icon-error.png?201612131627") 0 0 no-repeat;
  background-size: 16px;
  display: block;
}
.h5ui-form_tip {
  font-size: 13px;
  padding: 0 15px;
  color: #999;
  position: relative;
  top: -10px;
}
input[disabled] {
  background: #FFF;
}
input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
  color: #CCC;
}
.h5ui-select {
  position: relative;
  width: 100%;
  padding-left: 100px;
}
.h5ui-select > select {
  -webkit-appearance: none;
  border-radius: 0;
  border: 0;
  outline: 0;
  width: 100%;
  padding: 0;
  height: 40px;
  font-size: 16px;
  margin: 2px 0;
  background: #FFF;
  color: #222;
}
.h5ui-select:after {
  content: "";
  top: 15px;
  right: 17px;
  position: absolute;
  display: inline-block;
  font-size: 0;
  border-top: 2px solid rgba(0, 0, 0, 0.2);
  border-left: 2px solid rgba(0, 0, 0, 0.2);
  width: 8px;
  height: 8px;
  background-color: transparent;
  -webkit-transform: rotate(225deg);
}
.h5ui-select.select-cell {
  padding-left: 15px;
}
.h5ui-select.date-select {
  position: static;
  padding-left: 0;
  min-height: 44px;
}
.h5ui-switch {
  padding: 10px 15px;
}
.h5ui-switch .h5ui-switch-text {
  padding: 4px 0;
  margin: 0;
  font-size: 16px;
  text-indent: 0 !important;
}
.h5ui-switch .h5ui-switch-text small {
  color: #999;
}
.h5ui-switch > input[type="checkbox"] {
  display: none;
}
.h5ui-switch > label {
  margin-bottom: 0;
}
.h5ui-switch .h5ui-switch_radius {
  position: relative;
  display: inline-block;
  color: #FFF;
  width: 50px;
  height: 32px;
  background: #fff;
  border-radius: 100px;
  cursor: pointer;
  box-shadow: inset 0 0 0 1px #e9e9e9;
  -webkit-box-shadow: inset 0 0 0 1px #e9e9e9;
  transition: all 0.4s cubic-bezier(0.17, 0.67, 0.43, 0.98);
  -webkit-transition: all 0.4s cubic-bezier(0.17, 0.67, 0.43, 0.98);
  float: right;
}
.h5ui-switch .h5ui-switch_radius:active {
  box-shadow: inset 0 0 0 1.2em #e9e9e9;
  -webkit-box-shadow: inset 0 0 0 1.2em #e9e9e9;
}
.h5ui-switch .h5ui-switch_radius:before {
  width: 30px;
  height: 30px;
  border-radius: 100px;
  transition: margin-left 0.2s ease 0s;
  -webkit-transition: margin-left 0.2s ease 0s;
  margin: 1px;
  background: #fff;
  box-shadow: inset 0 0 0 0.03em rgba(0, 0, 0, 0.1), 0 0 0.05em rgba(0, 0, 0, 0.05), 0 0.1em 0.2em rgba(0, 0, 0, 0.2);
  -webkit-box-shadow: inset 0 0 0 0.03em rgba(0, 0, 0, 0.1), 0 0 0.05em rgba(0, 0, 0, 0.05), 0 0.1em 0.2em rgba(0, 0, 0, 0.2);
}
.h5ui-switch .h5ui-switch_radius:before,
.h5ui-switch .h5ui-switch_radius:after {
  position: absolute;
  content: "";
}
.h5ui-switch > input:checked + label {
  background: var(--main-color);
  transition: all 0.15s ease-out;
  -webkit-transition: all 0.15s ease-out;
  box-shadow: inset 0 0 0 1.2em var(--main-color);
  -webkit-box-shadow: inset 0 0 0 1.2em var(--main-color);
}
.h5ui-switch > input:checked + label:active {
  box-shadow: inset 0 0 0 1.2em var(--main-color);
  -webkit-box-shadow: inset 0 0 0 1.2em var(--main-color);
}
.h5ui-switch > input:checked + label:before {
  margin-left: 19px;
}
.h5ui-checkbox .btn,
.h5ui-radio .btn {
  margin: 0;
  padding: 12px 15px;
  font-size: 16px;
  color: #222;
  text-align: left;
  border-radius: 0;
  width: 100%;
  border: none;
  background: #FFF;
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
      align-items: center;
}
.h5ui-checkbox .btn:before,
.h5ui-radio .btn:before {
  content: " ";
  -webkit-transform: scale(0.5);
  -ms-transform: scale(0.5);
      transform: scale(0.5);
  -webkit-transform-origin: 0 0;
  -ms-transform-origin: 0 0;
      transform-origin: 0 0;
  pointer-events: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 200%;
  height: 0;
  border-top: 1px solid #E5E5E5;
}
.h5ui-checkbox .btn:last-child:before,
.h5ui-radio .btn:last-child:before {
  content: " ";
  -webkit-transform: scale(0.5);
  -ms-transform: scale(0.5);
      transform: scale(0.5);
  -webkit-transform-origin: 0 0;
  -ms-transform-origin: 0 0;
      transform-origin: 0 0;
  pointer-events: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 200%;
  bottom: 0;
  height: 200%;
  border-bottom: 1px solid #E5E5E5;
}
.h5ui-checkbox .btn:active,
.h5ui-radio .btn:active {
  background: #F5F5F5;
}
.h5ui-checkbox_hd,
.h5ui-radio_hd {
  display: block;
  margin-right: 15px;
}
.h5ui-checkbox_bd,
.h5ui-radio_bd {
  width: 100%;
  font-size: 16px;
  display: block;
  position: relative;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
      flex: 1;
}
.h5ui-checkbox_bd small,
.h5ui-radio_bd small {
  color: #999;
}
.h5ui-radio .btn .h5ui-radio_ft,
.h5ui-checkbox .btn .h5ui-checkbox_ft {
  width: 24px;
  height: 24px;
  display: inline-block;
}
.h5ui-radio .btn .h5ui-radio_ft:after,
.h5ui-checkbox .btn .h5ui-checkbox_ft:after,
.h5ui-radio .btn .h5ui-radio_ft:before,
.h5ui-checkbox .btn .h5ui-checkbox_ft:before {
  position: absolute;
  display: block;
  content: "";
  height: 2px;
}
.h5ui-radio .btn.active .h5ui-radio_ft:after {
  -webkit-transform: rotate(-45deg) translate3d(10px, 0, 0);
  transform: rotate(-45deg) translate3d(10px, 0, 0);
  margin-top: 19px;
  width: 18px;
  background: var(--main-color);
}
.h5ui-radio .btn.active .h5ui-radio_ft:before {
  -webkit-transform: rotate(45deg) translate3d(10px, 5px, 0);
  transform: rotate(45deg) translate3d(10px, 5px, 0);
  margin-top: 4px;
  width: 8px;
  background: var(--main-color);
}
.h5ui-checkbox .btn .h5ui-checkbox_ft {
  border-radius: 100%;
  -webkit-border-radius: 100%;
  background: #FFF;
  border: 1px solid #ddd;
}
.h5ui-checkbox .btn.active .h5ui-checkbox_ft {
  background: var(--main-color);
  border-color: var(--main-color);
}
.h5ui-checkbox .btn.active .h5ui-checkbox_ft:after {
  -webkit-transform: rotate(-45deg) translate3d(10px, 0, 0);
  transform: rotate(-45deg) translate3d(10px, 0, 0);
  margin-top: 18px;
  width: 12px;
  background: #FFF;
}
.h5ui-checkbox .btn.active .h5ui-checkbox_ft:before {
  -webkit-transform: rotate(45deg) translate3d(11px, 4px, 0);
  transform: rotate(45deg) translate3d(11px, 4px, 0);
  margin-top: 2px;
  width: 5px;
  background: #FFF;
}
[data-toggle="buttons"] > .btn input[type="radio"],
[data-toggle="buttons"] > .btn input[type="checkbox"] {
  clip: rect(0, 0, 0, 0);
  pointer-events: none;
  position: absolute;
  width: 100%;
  height: 100%;
  left: -5px;
  top: 0;
}
.h5ui-uploader {
  padding: 15px 15px 0 5px;
  background: #FFF;
  position: relative;
}
.h5ui-uploader:before {
  content: " ";
  -webkit-transform: scale(0.5);
  -ms-transform: scale(0.5);
      transform: scale(0.5);
  -webkit-transform-origin: 0 0;
  -ms-transform-origin: 0 0;
      transform-origin: 0 0;
  pointer-events: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 200%;
  height: 0;
  border-top: 1px solid #E5E5E5;
}
.h5ui-uploader:after {
  content: " ";
  -webkit-transform: scale(0.5);
  -ms-transform: scale(0.5);
      transform: scale(0.5);
  -webkit-transform-origin: 0 0;
  -ms-transform-origin: 0 0;
      transform-origin: 0 0;
  pointer-events: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 200%;
  bottom: 0;
  height: 200%;
  border-bottom: 1px solid #E5E5E5;
}
.h5ui-uploader_title {
  padding: 0 0 14px 15px;
  line-height: 1.1333;
  font-size: 16px;
  font-weight: 400;
  margin: 0;
  color: #222;
}
.h5ui-uploader_files {
  list-style: none;
  padding: 0;
  margin: 0;
}
.h5ui-uploader_files .h5ui-uploader_files_item {
  width: 75px;
  height: 75px;
  float: left;
  margin-left: 10px;
  margin-bottom: 15px;
}
.h5ui-uploader_files .h5ui-uploader_files_item a,
.h5ui-uploader_files .h5ui-uploader_files_item img {
  display: block;
}
.h5ui-uploader_btn {
  float: left;
  position: relative;
  width: 75px;
  height: 75px;
  margin-left: 10px;
  margin-bottom: 15px;
}
.h5ui-uploader_btn .h5ui-uploader_btn_border {
  float: left;
  width: 100%;
  height: 100%;
  background: #fff;
  border: 1px dashed #D8D7DA;
  border-radius: 6px;
  display: block;
  position: relative;
  text-align: center;
}
.h5ui-uploader_btn .h5ui-uploader_btn_border:before,
.h5ui-uploader_btn .h5ui-uploader_btn_border:after {
  content: " ";
  position: absolute;
  background: #D8D7DA;
  display: block;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
      transform: translate(-50%, -50%);
}
.h5ui-uploader_btn .h5ui-uploader_btn_border:after {
  width: 2px;
  height: 37px;
}
.h5ui-uploader_btn .h5ui-uploader_btn_border:before {
  width: 37px;
  height: 2px;
}
.h5ui-uploader_btn input {
  opacity: 0;
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
}
.h5ui-modal_share {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1050;
  display: none;
  overflow: hidden;
  -webkit-overflow-scrolling: touch;
  outline: 0;
}
.h5ui-modal_share .modal-header {
  padding: 17px 15px;
  font-size: 18px;
  text-align: center;
}
.h5ui-modal_share .modal-body {
  position: relative;
  padding: 0 15px 15px;
  font-size: 16px;
  color: #666;
  text-align: center;
  padding: 0;
  width: 100%;
  margin-bottom: 10px;
  display: table;
}
.h5ui-modal_share .modal-body .item {
  display: table-cell;
  vertical-align: middle;
  text-align: center;
  color: #666;
  font-size: 12px;
  padding-bottom: 10px;
}
.h5ui-modal_share .modal-body .item .icon {
  width: 60px;
  height: 60px;
  border-radius: 50px;
  -webkit-border-radius: 50px;
  display: block;
  margin: 5px auto;
  background: #FFF;
}
.h5ui-modal_share .modal-dialog {
  width: 100%;
  position: fixed;
  margin: 0;
  left: 0;
  bottom: 0;
  -webkit-animation: fade-in-up 300ms 0ms ease-in-out both;
  animation: fade-in-up 300ms 0ms ease-in-out both;
}
@-webkit-keyframes fade-in-up {
  0% {
    -webkit-transform: translateY(200px);
    transform: translateY(200px);
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
.h5ui-modal_share .modal-content {
  position: relative;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  background: #FFF;
  background: #F3F4F6;
}
.h5ui-modal_share .modal-content .btn-default {
  background-color: #FFF;
}
.h5ui-modal_share .modal-content .btn-lg {
  font-size: 17px;
  padding: 12px 16px;
  border-radius: 0;
  border: none;
}
.h5ui-modal_share .modal-content .btn-lg:before {
  display: none;
}
.h5ui-modal_share .modal-footer .h5ui-btn {
  background: #FFF;
  border-radius: 0;
  padding: 12px 16px;
}
.h5ui-modal_share .modal-footer .h5ui-btn:before {
  display: none;
}
.h5ui-modal_share .modal-footer .h5ui-btn:active {
  background: #F5F5F5;
}
@supports (-webkit-backdrop-filter: none) {
  .h5ui-modal_share .modal-content {
    -webkit-backdrop-filter: blur(18px);
    background: rgba(243, 244, 246, 0.95);
  }
}
.h5ui-modal_actionsheet {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1050;
  display: none;
  overflow: hidden;
  -webkit-overflow-scrolling: touch;
  outline: 0;
}
.h5ui-modal_actionsheet .modal-header {
  padding: 17px 15px;
  font-size: 18px;
  text-align: center;
}
.h5ui-modal_actionsheet .modal-dialog {
  width: 100%;
  position: fixed;
  margin: 0;
  left: 0;
  bottom: 0;
  -webkit-animation: fade-in-up 300ms 0ms ease-in-out both;
  animation: fade-in-up 300ms 0ms ease-in-out both;
}
@-webkit-keyframes fade-in-up {
  0% {
    -webkit-transform: translateY(200px);
    transform: translateY(200px);
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
.h5ui-modal_actionsheet .modal-content {
  position: relative;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  background: #FFF;
  background: #F3F4F6;
}
.h5ui-modal_actionsheet .modal-content .btn-default {
  background-color: #FFF;
}
.h5ui-modal_actionsheet .modal-content .btn-lg {
  font-size: 17px;
  padding: 12px 16px;
  border-radius: 0;
  border: none;
}
.h5ui-modal_actionsheet .modal-content .btn-lg:before {
  display: none;
}
.h5ui-modal_actionsheet .modal-body {
  position: relative;
  padding: 0 15px 15px;
  font-size: 16px;
  color: #666;
  text-align: center;
  padding: 0;
}
.h5ui-modal_actionsheet .modal-body .h5ui-btn {
  background: #FFF;
  position: relative;
  border-radius: 0;
  padding: 12px 16px;
}
.h5ui-modal_actionsheet .modal-body .h5ui-btn:active {
  background: #F5F5F5;
}
.h5ui-modal_actionsheet .modal-body .h5ui-btn:before {
  display: none;
}
.h5ui-modal_actionsheet .modal-body .h5ui-btn:after {
  content: " ";
  -webkit-transform: scale(0.5);
  -ms-transform: scale(0.5);
      transform: scale(0.5);
  -webkit-transform-origin: 0 0;
  -ms-transform-origin: 0 0;
      transform-origin: 0 0;
  pointer-events: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 200%;
  bottom: 0;
  height: 200%;
  border-bottom: 1px solid #E5E5E5;
}
.h5ui-modal_actionsheet .modal-body .h5ui-btn:last-child:after {
  display: none;
}
.h5ui-modal_actionsheet .modal-footer {
  margin-top: 8px;
}
.h5ui-modal_actionsheet .modal-footer .h5ui-btn {
  background: #FFF;
  border-radius: 0;
  padding: 12px 16px;
}
.h5ui-modal_actionsheet .modal-footer .h5ui-btn:active {
  background: #F5F5F5;
}
.h5ui-modal_actionsheet .modal-footer .h5ui-btn:before {
  display: none;
}
.h5ui-dialog {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1050;
  display: none;
  overflow: hidden;
  -webkit-overflow-scrolling: touch;
  outline: 0;
}
.h5ui-dialog .modal-header {
  padding: 17px 15px;
  font-size: 18px;
  text-align: center;
}
.h5ui-dialog .modal-body {
  position: relative;
  padding: 0 15px 15px;
  font-size: 16px;
  color: #666;
  text-align: center;
}
.h5ui-dialog .modal-dialog {
  width: 100%;
  position: fixed;
  margin: 0;
  left: 0;
  padding: 0 15px;
  top: 30%;
  -webkit-animation: bounce-in 300ms 0ms ease both;
  animation: bounce-in 300ms 0ms ease both;
}
@-webkit-keyframes bounce-in {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.5);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
  }
}
.h5ui-dialog .modal-content {
  position: relative;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  background: #FFF;
  border-radius: 4px;
  max-width: 300px;
  margin-left: auto;
  margin-right: auto;
}
.h5ui-dialog .modal-content .btn-default {
  background-color: #FFF;
}
.h5ui-dialog .modal-content .btn-lg {
  font-size: 17px;
  padding: 12px 16px;
  border-radius: 0;
  border: none;
}
.h5ui-dialog .modal-content .btn-lg:before {
  display: none;
}
.h5ui-dialog .modal-footer {
  padding: 0;
  position: relative;
}
.h5ui-dialog .modal-footer:before {
  content: " ";
  -webkit-transform: scale(0.5);
  -ms-transform: scale(0.5);
      transform: scale(0.5);
  -webkit-transform-origin: 0 0;
  -ms-transform-origin: 0 0;
      transform-origin: 0 0;
  pointer-events: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 200%;
  height: 0;
  border-top: 1px solid #E5E5E5;
}
.h5ui-dialog .modal-footer .btn {
  margin: 0;
  border: none;
  background: none;
  padding: 12px;
  width: 50%;
  text-align: center;
  float: left;
  color: #222;
  font-size: 17px;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 0;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  box-shadow: none;
  position: relative;
}
.h5ui-dialog .modal-footer .btn:before {
  display: none;
}
.h5ui-dialog .modal-footer .btn.active {
  color: var(--main-color);
  font-weight: 600;
}
.h5ui-dialog .modal-footer .btn:active {
  background: rgba(0, 0, 0, 0.05);
}
.h5ui-dialog .modal-footer .btn + .btn {
  margin-left: 0;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 4px;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
.h5ui-dialog .modal-footer .btn + .btn:after {
  content: " ";
  -webkit-transform: scale(0.5);
  -ms-transform: scale(0.5);
      transform: scale(0.5);
  -webkit-transform-origin: 0 0;
  -ms-transform-origin: 0 0;
      transform-origin: 0 0;
  pointer-events: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 200%;
  height: 200%;
  border-left: 1px solid #E5E5E5;
}
.h5ui-dialog .modal-footer .btn-block {
  width: 100%;
  border-bottom-left-radius: 3px;
  border-bottom-right-radius: 3px;
}
.h5ui-dialog .h5ui-form-input {
  height: 36px;
  padding: 8px 10px;
}
.form-hairlines {
  position: relative;
}
.form-hairlines:before {
  content: " ";
  -webkit-transform: scale(0.5);
  -ms-transform: scale(0.5);
      transform: scale(0.5);
  -webkit-transform-origin: 0 0;
  -ms-transform-origin: 0 0;
      transform-origin: 0 0;
  pointer-events: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 200%;
  height: 200%;
  border: 1px solid #E5E5E5;
  border: 1px solid #ccc;
  border-radius: 8px;
  -webkit-border-radius: 8px;
}
.form-hairlines input,
.form-hairlines textarea {
  border: none;
  border-radius: 4px;
}
.h5ui-modal {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1050;
  display: none;
  overflow: hidden;
  -webkit-overflow-scrolling: touch;
  outline: 0;
}
.h5ui-modal .modal-header {
  padding: 17px 15px;
  font-size: 18px;
  text-align: center;
  padding: 15px 15px 10px;
}
.h5ui-modal .modal-content {
  position: relative;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  border-radius: 4px;
  max-width: 320px;
  margin: 15px auto;
  background: #FFF;
}
.h5ui-modal .modal-content .btn-default {
  background-color: #FFF;
}
.h5ui-modal .modal-content .btn-lg {
  font-size: 17px;
  padding: 12px 16px;
  border-radius: 0;
  border: none;
}
.h5ui-modal .modal-content .btn-lg:before {
  display: none;
}
.h5ui-modal .modal-dialog {
  width: 100%;
  position: fixed;
  margin: 0;
  left: 0;
  padding: 0 15px;
  top: 8%;
  -webkit-animation: bounce-in 300ms 0ms ease both;
  animation: bounce-in 300ms 0ms ease both;
}
@-webkit-keyframes bounce-in {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.5);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
  }
}
.h5ui-modal .modal-body {
  position: relative;
  padding: 0 15px 15px;
  font-size: 16px;
  color: #666;
  text-align: center;
  padding: 0 15px;
  max-height: 320px;
  overflow-y: auto;
  text-align: left;
}
@media (max-width: 375px) {
  .h5ui-modal .modal-body {
    max-height: 280px;
  }
}
@media (max-width: 320px) {
  .h5ui-modal .modal-body {
    max-height: 240px;
  }
}
.h5ui-modal .modal-body p {
  margin-top: 0;
}
.h5ui-modal .modal-footer {
  padding: 0;
  text-align: center;
  position: relative;
}
.h5ui-modal .modal-footer:before {
  content: " ";
  -webkit-transform: scale(0.5);
  -ms-transform: scale(0.5);
      transform: scale(0.5);
  -webkit-transform-origin: 0 0;
  -ms-transform-origin: 0 0;
      transform-origin: 0 0;
  pointer-events: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 200%;
  height: 0;
  border-top: 1px solid #E5E5E5;
}
.h5ui-modal .modal-footer:after {
  content: " ";
  position: absolute;
  top: -20px;
  left: 0;
  width: 97%;
  height: 20px;
  background: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADIAAAAUCAYAAADPym6aAAAAAXNSR0IArs4c6QAAAKVJREFUSA3tltEKgCAMRc0KKqKi+oz+//Oy3QehXpyYwRwNBMM7vcc5qHLOHUZBNMTQKeAwABm1gEw/iKAbwNNaBflJtgKQLTmbTzxJYm8yfH8RFiB7YGfuYG+S0wWOyLP0dUXyuIzYRRXIEgEsXoKKDDRq8U4ZgwDpafimZeSPZeSKCZiZxbh5YQQgan4ai+8PFBIVaTEpPQCS0ujiuFVA4FbVgFxHFwhNXnJVIwAAAABJRU5ErkJggg==") repeat-x;
}
.h5ui-modal .modal-footer .h5ui-btn {
  color: var(--main-color);
  font-weight: 600;
  border-radius: 0;
  padding: 12px 15px;
}
.h5ui-modal .modal-footer .h5ui-btn:before {
  display: none;
}
.h5ui-modal .modal-footer .h5ui-btn:active {
  background: #F5F5F5;
}
.h5ui-btn {
  display: inline-block;
  padding: 10px 16px;
  font-size: 17px;
  margin-bottom: 0;
  font-weight: normal;
  line-height: 1.42857143;
  border: none;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  min-width: 140px;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  -ms-touch-action: manipulation;
      touch-action: manipulation;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
   -ms-user-select: none;
       user-select: none;
  background-image: none;
  -webkit-appearance: none;
  position: relative;
  width: 100%;
}
.h5ui-btn:before {
  content: " ";
  -webkit-transform: scale(0.5);
  -ms-transform: scale(0.5);
      transform: scale(0.5);
  -webkit-transform-origin: 0 0;
  -ms-transform-origin: 0 0;
      transform-origin: 0 0;
  pointer-events: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 200%;
  height: 200%;
  border: 1px solid #E5E5E5;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 10px;
  -webkit-border-radius: 10px;
}
.h5ui-btn:active {
  color: inherit;
  background-image: none;
}
.h5ui-btn.disabled,
.h5ui-btn[disabled],
fieldset[disabled] .btn {
  cursor: not-allowed;
  filter: alpha(opacity=65);
  opacity: .65;
}
.btn-outlined {
  width: auto;
  display: inline-block;
}
.h5ui-btn_primary {
  color: #FFF;
  background-color: var(--main-color);
}
.h5ui-btn_primary:active {
  color: #FFF;
  background-color: #3c9a3c;
}
.h5ui-btn_primary.btn-outlined {
  background: none;
  color: var(--main-color);
}
.h5ui-btn_primary.btn-outlined:before {
  border-color: var(--main-color);
}
.h5ui-btn_primary.btn-outlined:active {
  color: #3c9a3c;
}
.h5ui-btn_primary.btn-outlined:active:before {
  border-color: #3c9a3c;
}
.h5ui-btn_default {
  color: #222;
  background-color: #F7F7F7;
  position: relative;
}
.h5ui-btn_default:active {
  background-color: #e8e8e8;
}
.h5ui-btn_default.btn-outlined {
  background: none;
  color: #222;
}
.h5ui-btn_default.btn-outlined:before {
  border: 1px solid rgba(0, 0, 0, 0.2);
}
.h5ui-btn_default.btn-outlined:active {
  background-color: #F7F7F7;
}
.h5ui-btn_danger {
  color: #FFF;
  background-color: #EE780C;
}
.h5ui-btn_danger:active {
  color: #FFF;
  background-color: #ea393f;
}
input[type="submit"].btn-block,
input[type="reset"].btn-block,
input[type="button"].btn-block {
  width: 100%;
}
.h5ui-list {
  padding: 12px 15px 12px 15px;
  vertical-align: middle;
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
      align-items: center;
  color: #222;
  background: #FFF;
  font-size: 17px;
}
.h5ui-list:before {
  content: " ";
  -webkit-transform: scale(0.5);
  -ms-transform: scale(0.5);
      transform: scale(0.5);
  -webkit-transform-origin: 0 0;
  -ms-transform-origin: 0 0;
      transform-origin: 0 0;
  pointer-events: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 200%;
  height: 0;
  border-top: 1px solid #E5E5E5;
}
.h5ui-list:last-child:before {
  content: " ";
  -webkit-transform: scale(0.5);
  -ms-transform: scale(0.5);
      transform: scale(0.5);
  -webkit-transform-origin: 0 0;
  -ms-transform-origin: 0 0;
      transform-origin: 0 0;
  pointer-events: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 200%;
  bottom: 0;
  height: 200%;
  border-bottom: 1px solid #E5E5E5;
}
.h5ui-list_hd {
  width: 20px;
  height: 20px;
  margin-right: 10px;
  display: block;
}
.h5ui-list_bd {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
      flex: 1;
}
.h5ui-list_ft {
  text-align: right;
  padding-left: 10px;
}
.h5ui-list_ft .h5ui-badge {
  position: relative;
  top: -1px;
}
.h5ui-list_ft small {
  font-size: 16px;
  color: #999;
}
.h5ui-list_ft_arrow {
  display: inline-block;
  width: 9px;
  height: 9px;
  border-bottom: solid 2px rgba(0, 0, 0, 0.2);
  border-right: solid 2px rgba(0, 0, 0, 0.2);
  -webkit-transform: rotate(315deg);
  -ms-transform: rotate(315deg);
  transform: rotate(315deg);
  margin-right: 2px;
  margin-bottom: 1px;
}
a.h5ui-list:active {
  background: #F5F5F5;
}
.h5ui-slider {
  padding: 0;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
      flex: 1;
}
.h5ui-slider .slider {
  display: inline-block;
  vertical-align: middle;
  position: relative;
}
.h5ui-slider .slider.slider-horizontal,
.h5ui-slider .slider.slider-horizontal .slider-track {
  width: 100%;
  height: 6px;
}
.h5ui-slider .slider.slider-horizontal .slider-selection,
.h5ui-slider .slider.slider-horizontal .slider-track-low,
.h5ui-slider .slider.slider-horizontal .slider-track-high {
  height: 100%;
}
.h5ui-slider .slider.slider-horizontal .slider-tick,
.h5ui-slider .slider.slider-horizontal .slider-handle {
  margin-left: -10px;
}
.h5ui-slider .slider.slider-horizontal .slider-tick.triangle,
.h5ui-slider .slider.slider-horizontal .slider-handle.triangle {
  -ms-transform: translateY(-50%);
      transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  border-width: 0 10px 10px 10px;
  width: 0;
  height: 0;
  border-bottom-color: var(--main-color);
  margin-top: 0;
}
.h5ui-slider .slider.slider-horizontal .slider-tick-container {
  white-space: nowrap;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}
.h5ui-slider .slider.slider-horizontal .slider-tick-label-container {
  white-space: nowrap;
  margin-top: 20px;
}
.h5ui-slider .slider.slider-horizontal .slider-tick-label-container .slider-tick-label {
  padding-top: 4px;
  display: inline-block;
  text-align: center;
}
.h5ui-slider .slider.slider-vertical {
  height: 210px;
  width: 20px;
}
.h5ui-slider .slider.slider-vertical .slider-track {
  width: 10px;
  height: 100%;
  left: 25%;
}
.h5ui-slider .slider.slider-vertical .slider-selection {
  width: 100%;
  left: 0;
  top: 0;
  bottom: 0;
}
.h5ui-slider .slider.slider-vertical .slider-track-low,
.h5ui-slider .slider.slider-vertical .slider-track-high {
  width: 100%;
  left: 0;
  right: 0;
}
.h5ui-slider .slider.slider-vertical .slider-tick.triangle,
.h5ui-slider .slider.slider-vertical .slider-handle.triangle {
  border-width: 10px 0 10px 10px;
  width: 1px;
  height: 1px;
  border-left-color: #358735;
  margin-left: 0;
}
.h5ui-slider .slider.slider-vertical .slider-tick-label-container {
  white-space: nowrap;
}
.h5ui-slider .slider.slider-vertical .slider-tick-label-container .slider-tick-label {
  padding-left: 4px;
}
.h5ui-slider .slider input {
  display: none;
}
.h5ui-slider .slider .tooltip.top {
  display: none;
}
.h5ui-slider .slider .tooltip-inner {
  white-space: nowrap;
  max-width: none;
}
.h5ui-slider .slider .hide {
  display: none;
}
.h5ui-slider .slider-track {
  position: absolute;
  cursor: pointer;
  background: #F5F5F5;
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.15);
  -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.15);
  border-radius: 10px;
}
.h5ui-slider .slider-selection {
  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.1);
  border-radius: 4px;
  background-color: var(--main-color);
}
.h5ui-slider .slider-track-low,
.h5ui-slider .slider-track-high {
  position: absolute;
  background: transparent;
  box-sizing: border-box;
  border-radius: 4px;
}
.h5ui-slider .slider-handle {
  position: absolute;
  top: -12px;
  width: 30px;
  height: 30px;
  background: #FFF;
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#FFF), to(#f9f9f9));
  background-image: -webkit-linear-gradient(top, #FFF, #f9f9f9);
  background-image: linear-gradient(to bottom, #FFF, #f9f9f9);
  background-repeat: repeat-x;
  cursor: pointer;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
  -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
}
.h5ui-slider .slider-handle:before,
.h5ui-slider .slider-handle:after {
  width: 2px;
  height: 12px;
  display: block;
  background: rgba(0, 0, 0, 0.25);
  content: "";
  position: absolute;
  top: 9px;
}
.h5ui-slider .slider-handle:before {
  left: 11px;
}
.h5ui-slider .slider-handle:after {
  left: 17px;
}
.h5ui-slider .slider-handle.round {
  border-radius: 50%;
  -webkit-border-radius: 50%;
}
.h5ui-slider .slider-handle.triangle {
  background: transparent none;
}
.h5ui-slider_title {
  margin: 0;
  padding-bottom: 10px;
  font-size: 14px;
  font-weight: 400;
  color: #999;
  background: #FFF;
  position: relative;
  top: -5px;
}
.h5ui-slider_group {
  background: #FFF;
  position: relative;
  padding: 20px;
  margin-bottom: 15px;
}
.h5ui-slider_group:before {
  content: " ";
  -webkit-transform: scale(0.5);
  -ms-transform: scale(0.5);
      transform: scale(0.5);
  -webkit-transform-origin: 0 0;
  -ms-transform-origin: 0 0;
      transform-origin: 0 0;
  pointer-events: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 200%;
  bottom: 0;
  height: 200%;
  border-bottom: 1px solid #E5E5E5;
}
.h5ui-slider_group:after {
  content: " ";
  -webkit-transform: scale(0.5);
  -ms-transform: scale(0.5);
      transform: scale(0.5);
  -webkit-transform-origin: 0 0;
  -ms-transform-origin: 0 0;
      transform-origin: 0 0;
  pointer-events: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 200%;
  height: 0;
  border-top: 1px solid #E5E5E5;
}
.h5ui-slider_group_body {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
      align-items: center;
}
.h5ui-tab {
  background: #FFF;
  position: relative;
  width: 100%;
  display: block;
}
.h5ui-tab:before {
  content: " ";
  -webkit-transform: scale(0.5);
  -ms-transform: scale(0.5);
      transform: scale(0.5);
  -webkit-transform-origin: 0 0;
  -ms-transform-origin: 0 0;
      transform-origin: 0 0;
  pointer-events: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 200%;
  bottom: 0;
  height: 200%;
  border-bottom: 1px solid #E5E5E5;
}
.h5ui-tab .tab-item {
  padding: 0;
  margin: 0;
  list-style: none;
  position: relative;
}
.h5ui-tab .tab-item a {
  display: inline-block;
  padding: 13px 0;
  color: #636775;
  font-size: 16px;
  text-align: center;
}
.h5ui-tab .tab-item .active {
  position: relative;
  bottom: 0;
}
.h5ui-tab .tab-item .active a {
  border-bottom: 2px solid var(--main-color);
  padding: 12px 0 11px;
  color: var(--main-color);
  position: relative;
  font-weight: 600;
}
.h5ui-tab .tab-item li {
  display: table-cell;
  width: 1%;
  text-align: center;
  position: relative;
}
.h5ui-tab .tab-item li .badge {
  padding: 0 4px;
  position: relative;
  top: -1px;
  margin-left: 2px;
}
.h5ui-tab .tab-item li small {
  color: #999;
}
.h5ui-tab.tab-fixed {
  position: fixed !important;
  right: 0;
  left: 0;
  z-index: 10;
}
.tab-content > .tab-pane {
  display: none;
}
.tab-content > .active {
  display: block;
}
.h5ui-bar {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  background-color: rgba(255, 255, 255, 0.96);
  width: 100%;
  display: block;
  position: relative;
  z-index: 10;
}
.h5ui-bar.bar-fixed {
  position: fixed !important;
  right: 0;
  left: 0;
  z-index: 10;
}
header.h5ui-bar.bar-fixed {
  top: 0;
}
header.h5ui-bar:before {
  content: " ";
  -webkit-transform: scale(0.5);
  -ms-transform: scale(0.5);
      transform: scale(0.5);
  -webkit-transform-origin: 0 0;
  -ms-transform-origin: 0 0;
      transform-origin: 0 0;
  pointer-events: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 200%;
  bottom: 0;
  height: 200%;
  border-bottom: 1px solid #E5E5E5;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  top: auto;
  bottom: -1px;
}
header.h5ui-bar:before,
header.h5ui-bar:after {
  content: "";
  display: table;
}
header.h5ui-bar:after {
  clear: both;
}
header.h5ui-bar .h5ui-bar_title {
  display: block;
  font-size: 18px;
  font-weight: bold;
  width: 100%;
  position: absolute;
  text-align: center;
  line-height: 46px;
  margin: 0;
  padding: 0;
  white-space: nowrap;
}
header.h5ui-bar .h5ui-bar_title a {
  color: inherit;
}
header.h5ui-bar .h5ui-bar_item {
  padding: 0 15px;
  font-size: 17px;
  line-height: 46px;
  position: relative;
  z-index: 10;
  color: var(--main-color);
}
header.h5ui-bar .h5ui-bar_item .h5ui-bar_arrow_left {
  display: inline-block;
  width: 12px;
  height: 12px;
  border-bottom: solid 2px var(--main-color);
  border-right: solid 2px var(--main-color);
  margin-left: 2px;
  margin-right: -2px;
  -webkit-transform: rotate(135deg);
  -ms-transform: rotate(135deg);
  transform: rotate(135deg);
}
header.h5ui-bar.bar-green {
  border: none;
  background: var(--main-color);
  color: #FFF;
}
header.h5ui-bar.bar-green:before {
  display: none;
}
header.h5ui-bar.bar-green .h5ui-bar_item {
  color: #FFF;
}
header.h5ui-bar.bar-green .h5ui-bar_item .h5ui-bar_arrow_left {
  border-bottom: solid 2px #FFF;
  border-right: solid 2px #FFF;
}
footer.h5ui-bar {
  height: 50px;
  display: table;
  position: relative;
}
footer.h5ui-bar.bar-fixed {
  bottom: 0;
}
footer.h5ui-bar:before {
  content: " ";
  -webkit-transform: scale(0.5);
  -ms-transform: scale(0.5);
      transform: scale(0.5);
  -webkit-transform-origin: 0 0;
  -ms-transform-origin: 0 0;
      transform-origin: 0 0;
  pointer-events: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 200%;
  height: 0;
  border-top: 1px solid #E5E5E5;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}
footer.h5ui-bar .h5ui-bar_item {
  display: table-cell;
  text-align: center;
  vertical-align: middle;
  height: inherit;
  color: #999;
  font-size: 11px;
}
footer.h5ui-bar .h5ui-bar_item .h5ui-bar_icon {
  width: 24px;
  height: 24px;
  display: inline-block;
  margin: 3px auto 0;
  position: relative;
}
footer.h5ui-bar .h5ui-bar_item .h5ui-bar_icon .h5ui-badge {
  position: absolute;
  top: -2px;
  right: -10px;
}
footer.h5ui-bar .h5ui-bar_item .h5ui-bar_icon .h5ui-badge.h5ui-badge_dot {
  right: -7px;
}
footer.h5ui-bar .h5ui-bar_item span {
  display: block;
  line-height: 1;
}
footer.h5ui-bar .h5ui-bar_item.active {
  color: var(--main-color);
}
@supports (-webkit-backdrop-filter: none) {
  .h5ui-bar {
    -webkit-backdrop-filter: blur(18px);
    background-color: rgba(255, 255, 255, 0.68);
  }
}
.h5ui-alert {
  line-height: 2;
  font-size: 16px;
  text-align: center;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 18888;
  color: #FFF;
  display: none;
  padding: 6px 10px;
  -webkit-animation: fade-in-down 500ms 0ms ease both;
  animation: fade-in-down 500ms 0ms ease both;
}
@-webkit-keyframes fade-in-down {
  0% {
    -webkit-transform: translateY(-40px);
  }
  100% {
    -webkit-transform: translateY(0);
  }
}
.h5ui-alert i {
  width: 20px;
  height: 20px;
  display: inline-block;
  margin-right: 7px;
  vertical-align: middle;
  background: url("../img/icon-alert.png?201612081905") no-repeat;
  background-size: 20px;
}
.h5ui-alert i.h5ui-alert_success_icon {
  background-position: 0 0;
}
.h5ui-alert i.h5ui-alert_error_icon {
  background-position: 0 -20px;
}
.h5ui-alert i.h5ui-alert_warning_icon {
  background-position: 0 -40px;
}
.h5ui-alert span {
  vertical-align: middle;
}
.h5ui-alert.h5ui-alert_success {
  background: rgba(67, 172, 67, 0.95);
}
.h5ui-alert.h5ui-alert_error {
  background: rgba(242, 91, 75, 0.95);
}
.h5ui-alert.h5ui-alert_warning {
  background: rgba(250, 241, 165, 0.95);
  color: #222;
}
.h5ui-alert.h5ui-alert_warning > a {
  color: #222;
  display: block;
}
.h5ui-toptips {
  font-size: 14px;
  width: 100%;
  z-index: 18888;
  padding: 10px;
  -webkit-animation: fade-in-down 500ms 0ms ease both;
  animation: fade-in-down 500ms 0ms ease both;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
      align-items: center;
}
@-webkit-keyframes fade-in-down {
  0% {
    -webkit-transform: translateY(-40px);
  }
  100% {
    -webkit-transform: translateY(0);
  }
}
.h5ui-toptips:before {
  content: " ";
  -webkit-transform: scale(0.5);
  -ms-transform: scale(0.5);
      transform: scale(0.5);
  -webkit-transform-origin: 0 0;
  -ms-transform-origin: 0 0;
      transform-origin: 0 0;
  pointer-events: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 200%;
  bottom: 0;
  height: 200%;
  border-bottom: 1px solid #E5E5E5;
  border-bottom: 1px solid rgba(0, 0, 0, 0.07);
}
.h5ui-toptips i {
  width: 16px;
  height: 16px;
  min-width: 16px;
  display: inline-block;
  margin-right: 7px;
  background: url("../img/icon-error.png?201612131627") no-repeat;
  background-size: 16px;
  overflow: hidden;
}
.h5ui-toptips i.h5ui-toptips_error_icon {
  background-position: 0 0;
}
.h5ui-toptips i.h5ui-toptips_warning_icon {
  background-position: 0 -20px;
}
.h5ui-toptips.h5ui-toptips_warning {
  background: #FEFCEC;
  color: #E5A025;
}
.h5ui-toptips.h5ui-toptips_warning > a {
  color: #E5A025;
}
.h5ui-toptips.h5ui-toptips_error {
  background: #FDEDEE;
  color: #EE780C;
}
.h5ui-toptips.h5ui-toptips_error > a {
  color: #EE780C;
}
.h5ui-toast {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1050;
  overflow: hidden;
  -webkit-overflow-scrolling: touch;
  outline: 0;
  text-align: center;
  display: none;
}
.h5ui-toast_dialog {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
      justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
      align-items: center;
}
.h5ui-toast_backdrop {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1040;
}
.h5ui-toast_content {
  position: relative;
  min-width: 120px;
  display: inline-block;
  background: rgba(17, 17, 17, 0.7);
  text-align: center;
  border-radius: 5px;
  color: #FFF;
  font-size: 16px;
}
.h5ui-toast_content > span {
  padding: 15px;
  display: block;
}
.h5ui-toast_success .h5ui-toast_content {
  min-height: 120px;
}
.h5ui-toast_success .h5ui-toast_content .h5ui-toast_success_icon {
  width: 48px;
  height: 48px;
  display: block;
  margin: 7px auto;
  background: url("../img/icon-toast_success.png?201703271330") no-repeat;
  background-size: 48px;
}
.h5ui-toast_loading .h5ui-toast_content {
  min-height: 120px;
}
.h5ui-toast_loading .h5ui-toast_content span {
  font-size: 14px;
}
.h5ui-toast_loading_icon {
  position: relative;
  width: 44px;
  height: 44px;
  display: block;
  margin: 10px auto;
}
.loading-icon-leaf {
  position: absolute;
  opacity: 0.25;
  left: 21px;
  top: 21px;
}
.loading-icon-leaf:before {
  content: " ";
  position: absolute;
  width: 8.14px;
  height: 3.08px;
  background: #d1d1d5;
  box-shadow: rgba(0, 0, 0, 0.0980392) 0px 0px 1px;
  border-radius: 1px;
  -webkit-transform-origin: left 50% 0px;
      -ms-transform-origin: left 50% 0px;
          transform-origin: left 50% 0px;
}
.loading-icon-leaf_0 {
  -webkit-animation: opacity-60-25-0-12 1.25s linear infinite;
  animation: opacity-60-25-0-12 1.25s linear infinite;
}
.loading-icon-leaf_0:before {
  -webkit-transform: rotate(0deg) translate(7.92px, 0px);
  -ms-transform: rotate(0deg) translate(7.92px, 0px);
      transform: rotate(0deg) translate(7.92px, 0px);
}
.loading-icon-leaf_1 {
  -webkit-animation: opacity-60-25-1-12 1.25s linear infinite;
  animation: opacity-60-25-1-12 1.25s linear infinite;
}
.loading-icon-leaf_1:before {
  -webkit-transform: rotate(30deg) translate(7.92px, 0px);
  -ms-transform: rotate(30deg) translate(7.92px, 0px);
      transform: rotate(30deg) translate(7.92px, 0px);
}
.loading-icon-leaf_2 {
  -webkit-animation: opacity-60-25-2-12 1.25s linear infinite;
  animation: opacity-60-25-2-12 1.25s linear infinite;
}
.loading-icon-leaf_2:before {
  -webkit-transform: rotate(60deg) translate(7.92px, 0px);
  -ms-transform: rotate(60deg) translate(7.92px, 0px);
      transform: rotate(60deg) translate(7.92px, 0px);
}
.loading-icon-leaf_3 {
  -webkit-animation: opacity-60-25-3-12 1.25s linear infinite;
  animation: opacity-60-25-3-12 1.25s linear infinite;
}
.loading-icon-leaf_3:before {
  -webkit-transform: rotate(90deg) translate(7.92px, 0px);
  -ms-transform: rotate(90deg) translate(7.92px, 0px);
      transform: rotate(90deg) translate(7.92px, 0px);
}
.loading-icon-leaf_4 {
  -webkit-animation: opacity-60-25-4-12 1.25s linear infinite;
  animation: opacity-60-25-4-12 1.25s linear infinite;
}
.loading-icon-leaf_4:before {
  -webkit-transform: rotate(120deg) translate(7.92px, 0px);
  -ms-transform: rotate(120deg) translate(7.92px, 0px);
      transform: rotate(120deg) translate(7.92px, 0px);
}
.loading-icon-leaf_5 {
  -webkit-animation: opacity-60-25-5-12 1.25s linear infinite;
  animation: opacity-60-25-5-12 1.25s linear infinite;
}
.loading-icon-leaf_5:before {
  -webkit-transform: rotate(150deg) translate(7.92px, 0px);
  -ms-transform: rotate(150deg) translate(7.92px, 0px);
      transform: rotate(150deg) translate(7.92px, 0px);
}
.loading-icon-leaf_6 {
  -webkit-animation: opacity-60-25-6-12 1.25s linear infinite;
  animation: opacity-60-25-6-12 1.25s linear infinite;
}
.loading-icon-leaf_6:before {
  -webkit-transform: rotate(180deg) translate(7.92px, 0px);
  -ms-transform: rotate(180deg) translate(7.92px, 0px);
      transform: rotate(180deg) translate(7.92px, 0px);
}
.loading-icon-leaf_7 {
  -webkit-animation: opacity-60-25-7-12 1.25s linear infinite;
  animation: opacity-60-25-7-12 1.25s linear infinite;
}
.loading-icon-leaf_7:before {
  -webkit-transform: rotate(210deg) translate(7.92px, 0px);
  -ms-transform: rotate(210deg) translate(7.92px, 0px);
      transform: rotate(210deg) translate(7.92px, 0px);
}
.loading-icon-leaf_8 {
  -webkit-animation: opacity-60-25-8-12 1.25s linear infinite;
  animation: opacity-60-25-8-12 1.25s linear infinite;
}
.loading-icon-leaf_8:before {
  -webkit-transform: rotate(240deg) translate(7.92px, 0px);
  -ms-transform: rotate(240deg) translate(7.92px, 0px);
      transform: rotate(240deg) translate(7.92px, 0px);
}
.loading-icon-leaf_9 {
  -webkit-animation: opacity-60-25-9-12 1.25s linear infinite;
  animation: opacity-60-25-9-12 1.25s linear infinite;
}
.loading-icon-leaf_9:before {
  -webkit-transform: rotate(270deg) translate(7.92px, 0px);
  -ms-transform: rotate(270deg) translate(7.92px, 0px);
      transform: rotate(270deg) translate(7.92px, 0px);
}
.loading-icon-leaf_10 {
  -webkit-animation: opacity-60-25-10-12 1.25s linear infinite;
  animation: opacity-60-25-10-12 1.25s linear infinite;
}
.loading-icon-leaf_10:before {
  -webkit-transform: rotate(300deg) translate(7.92px, 0px);
  -ms-transform: rotate(300deg) translate(7.92px, 0px);
      transform: rotate(300deg) translate(7.92px, 0px);
}
.loading-icon-leaf_11 {
  -webkit-animation: opacity-60-25-11-12 1.25s linear infinite;
  animation: opacity-60-25-11-12 1.25s linear infinite;
}
.loading-icon-leaf_11:before {
  -webkit-transform: rotate(330deg) translate(7.92px, 0px);
  -ms-transform: rotate(330deg) translate(7.92px, 0px);
      transform: rotate(330deg) translate(7.92px, 0px);
}
@-webkit-keyframes opacity-60-25-0-12 {
  0% {
    opacity: 0.25;
  }
  0.01% {
    opacity: 0.25;
  }
  0.02% {
    opacity: 1;
  }
  60.01% {
    opacity: 0.25;
  }
  100% {
    opacity: 0.25;
  }
}
@-webkit-keyframes opacity-60-25-1-12 {
  0% {
    opacity: 0.25;
  }
  8.34333% {
    opacity: 0.25;
  }
  8.35333% {
    opacity: 1;
  }
  68.3433% {
    opacity: 0.25;
  }
  100% {
    opacity: 0.25;
  }
}
@-webkit-keyframes opacity-60-25-2-12 {
  0% {
    opacity: 0.25;
  }
  16.6767% {
    opacity: 0.25;
  }
  16.6867% {
    opacity: 1;
  }
  76.6767% {
    opacity: 0.25;
  }
  100% {
    opacity: 0.25;
  }
}
@-webkit-keyframes opacity-60-25-3-12 {
  0% {
    opacity: 0.25;
  }
  25.01% {
    opacity: 0.25;
  }
  25.02% {
    opacity: 1;
  }
  85.01% {
    opacity: 0.25;
  }
  100% {
    opacity: 0.25;
  }
}
@-webkit-keyframes opacity-60-25-4-12 {
  0% {
    opacity: 0.25;
  }
  33.3433% {
    opacity: 0.25;
  }
  33.3533% {
    opacity: 1;
  }
  93.3433% {
    opacity: 0.25;
  }
  100% {
    opacity: 0.25;
  }
}
@-webkit-keyframes opacity-60-25-5-12 {
  0% {
    opacity: 0.270958333333333;
  }
  41.6767% {
    opacity: 0.25;
  }
  41.6867% {
    opacity: 1;
  }
  1.67667% {
    opacity: 0.25;
  }
  100% {
    opacity: 0.270958333333333;
  }
}
@-webkit-keyframes opacity-60-25-6-12 {
  0% {
    opacity: 0.375125;
  }
  50.01% {
    opacity: 0.25;
  }
  50.02% {
    opacity: 1;
  }
  10.01% {
    opacity: 0.25;
  }
  100% {
    opacity: 0.375125;
  }
}
@-webkit-keyframes opacity-60-25-7-12 {
  0% {
    opacity: 0.479291666666667;
  }
  58.3433% {
    opacity: 0.25;
  }
  58.3533% {
    opacity: 1;
  }
  18.3433% {
    opacity: 0.25;
  }
  100% {
    opacity: 0.479291666666667;
  }
}
@-webkit-keyframes opacity-60-25-8-12 {
  0% {
    opacity: 0.583458333333333;
  }
  66.6767% {
    opacity: 0.25;
  }
  66.6867% {
    opacity: 1;
  }
  26.6767% {
    opacity: 0.25;
  }
  100% {
    opacity: 0.583458333333333;
  }
}
@-webkit-keyframes opacity-60-25-9-12 {
  0% {
    opacity: 0.687625;
  }
  75.01% {
    opacity: 0.25;
  }
  75.02% {
    opacity: 1;
  }
  35.01% {
    opacity: 0.25;
  }
  100% {
    opacity: 0.687625;
  }
}
@-webkit-keyframes opacity-60-25-10-12 {
  0% {
    opacity: 0.791791666666667;
  }
  83.3433% {
    opacity: 0.25;
  }
  83.3533% {
    opacity: 1;
  }
  43.3433% {
    opacity: 0.25;
  }
  100% {
    opacity: 0.791791666666667;
  }
}
@-webkit-keyframes opacity-60-25-11-12 {
  0% {
    opacity: 0.895958333333333;
  }
  91.6767% {
    opacity: 0.25;
  }
  91.6867% {
    opacity: 1;
  }
  51.6767% {
    opacity: 0.25;
  }
  100% {
    opacity: 0.895958333333333;
  }
}
.h5ui-badge {
  display: inline-block;
  padding: 2px 5px;
  z-index: 2;
  min-width: 8px;
  background: #EE780C;
  font-weight: 400;
  border-radius: 50px;
  -webkit-border-radius: 50px;
  color: #FFF !important;
  font-size: 12px !important;
  line-height: 1 !important;
  text-align: center;
  white-space: nowrap;
  font-style: normal;
}
.h5ui-badge_dot {
  width: 9px;
  height: 9px;
  padding: 0;
  min-width: 0;
}
.h5ui-msg {
  min-height: 100%;
  height: auto !important;
  background: #FFF;
  overflow-y: auto;
}
.h5ui-msg_content {
  text-align: center;
  padding: 15px;
  display: block;
}
.h5ui-msg_content .h5ui-msg_icon {
  width: 100px;
  height: 100px;
  display: block;
  margin: 30px auto;
}
.h5ui-msg_content h4 {
  font-size: 20px;
  margin: 5px 10px;
  color: #222;
  font-weight: 400;
}
.h5ui-msg_content p {
  font-size: 14px;
  line-height: 1.4;
  color: #999;
  margin-bottom: 30px;
  margin-top: 0;
}
.h5ui-msg_content .h5ui-btn {
  margin-top: 15px;
}
.h5ui-msg_icon {
  background: url("../img/icon-msg.png?201612081905") no-repeat;
  background-size: 100px;
}
.h5ui-msg_success .h5ui-msg_icon {
  background-position: 0 0;
}
.h5ui-msg_error .h5ui-msg_icon {
  background-position: 0 -100px;
}
.h5ui-msg_loading .h5ui-msg_icon {
  background-position: 0 -200px;
}
.h5ui-msg_failure {
  min-height: inherit;
  background: none;
  overflow-y: auto;
}
.h5ui-msg_failure .h5ui-msg_icon {
  width: 100px;
  height: 100px;
  background: url("../img/icon-msg_failure.png?201612061623") no-repeat;
  background-size: 100px;
  margin: 100px auto 10px;
}
.h5ui-grid .h5ui-grid_item {
  width: 33.3333%;
  background: #FFF;
  display: block;
  text-align: center;
  float: left;
  padding: 20px 0;
  color: #666;
  font-size: 14px;
  position: relative;
}
.h5ui-grid .h5ui-grid_item:after {
  content: " ";
  -webkit-transform: scale(0.5);
  -ms-transform: scale(0.5);
      transform: scale(0.5);
  -webkit-transform-origin: 0 0;
  -ms-transform-origin: 0 0;
      transform-origin: 0 0;
  pointer-events: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 200%;
  height: 200%;
  border-right: 1px solid #E5E5E5;
}
.h5ui-grid .h5ui-grid_item:before {
  content: " ";
  -webkit-transform: scale(0.5);
  -ms-transform: scale(0.5);
      transform: scale(0.5);
  -webkit-transform-origin: 0 0;
  -ms-transform-origin: 0 0;
      transform-origin: 0 0;
  pointer-events: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 200%;
  height: 0;
  border-top: 1px solid #E5E5E5;
}
.h5ui-grid .h5ui-grid_item .h5ui-grid_item_icon {
  width: 32px;
  height: 32px;
  display: block;
  margin: 10px auto 5px;
}
.h5ui-grid .h5ui-grid_item:active {
  background: #F5F5F5;
}
.h5ui-grid .h5ui-grid_item:nth-child(3n):after {
  border-right: none;
}
.h5ui-grid .h5ui-grid_item:nth-last-child(-n+3):before {
  content: " ";
  -webkit-transform: scale(0.5);
  -ms-transform: scale(0.5);
      transform: scale(0.5);
  -webkit-transform-origin: 0 0;
  -ms-transform-origin: 0 0;
      transform-origin: 0 0;
  pointer-events: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 200%;
  bottom: 0;
  height: 200%;
  border-bottom: 1px solid #E5E5E5;
}
.h5ui-timeline .h5ui-timeline_item {
  position: relative;
  padding-left: 40px;
  padding-bottom: 30px;
  font-size: 16px;
  color: #666;
}
.h5ui-timeline .h5ui-timeline_item small {
  display: block;
  font-size: 13px;
  color: #999;
}
.h5ui-timeline .h5ui-timeline_item:last-child:after {
  display: none;
}
.h5ui-timeline .h5ui-timeline_item:before {
  position: absolute;
  content: " ";
  top: 6px;
  left: 10px;
  display: block;
  width: 11px;
  height: 11px;
  background: #EAECEE;
  border-radius: 50%;
  z-index: 2;
}
.h5ui-timeline .h5ui-timeline_item:after {
  position: absolute;
  content: " ";
  top: 6px;
  left: 15px;
  display: block;
  width: 1px;
  height: 100%;
  background: #EAECEE;
}
.h5ui-timeline .h5ui-timeline_item.success {
  color: var(--main-color);
}
.h5ui-timeline .h5ui-timeline_item.success:after,
.h5ui-timeline .h5ui-timeline_item.success:before {
  background: #59be59;
}
.h5ui-timeline .h5ui-timeline_item.active {
  color: var(--main-color);
  font-weight: 600;
}
.h5ui-timeline .h5ui-timeline_item.active small {
  font-weight: 400;
}
.h5ui-timeline .h5ui-timeline_item.active:before {
  top: 3px;
  left: 7px;
  width: 17px;
  height: 17px;
  background: #59be59;
  border: 3px solid #d6efd6;
}
.h5ui-agree {
  font-size: 12px;
  color: #999;
}
.h5ui-agree a {
  color: var(--main-color);
}
.h5ui-agree .h5ui-agree_icon {
  width: 14px;
  height: 14px;
  display: inline-block;
  vertical-align: middle;
  margin-right: 5px;
  border-radius: 100%;
  -webkit-border-radius: 100%;
  background: var(--main-color);
  position: relative;
  overflow: hidden;
}
.h5ui-agree .h5ui-agree_icon:after,
.h5ui-agree .h5ui-agree_icon:before {
  position: absolute;
  display: block;
  content: "";
  height: 1px;
}
.h5ui-agree .h5ui-agree_icon:after {
  -webkit-transform: rotate(-45deg) translate3d(10px, 0, 0);
  transform: rotate(-45deg) translate3d(10px, 0, 0);
  margin-top: 14px;
  margin-left: -2px;
  width: 8px;
  background: #FFF;
}
.h5ui-agree .h5ui-agree_icon:before {
  -webkit-transform: rotate(45deg) translate3d(11px, 4px, 0);
  transform: rotate(45deg) translate3d(11px, 4px, 0);
  margin-top: -2px;
  margin-left: -2px;
  width: 4px;
  background: #FFF;
}
.h5ui-agree span {
  vertical-align: middle;
}
.h5ui-searchbar {
  background: rgba(229, 229, 232, 0.95);
  border-bottom: none !important;
  position: relative;
  display:-webkit-box;
  display:-webkit-flex;
  display:-ms-flexbox;
  display:flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.searchbar-content {
  padding: 7px 10px;
  -webkit-box-flex:1;
  -webkit-flex:1;
      -ms-flex:1;
          flex:1;
}
.searchbar-content .h5ui-form-input {
  height: 32px;
  padding: 0 10px 0 30px;
  background: #fff url("/static/img/icon-search_bar.png?201612081905") 8px 50% no-repeat;
  background-size: 18px;
  display: block;
  border-radius: 3px;
  font-size: 14px;
}
.searchbar-content.focus {
  padding: 7px 60px 7px 10px;
}
.searchbar-cancel {
  top: 7px;
  right: 0;
  line-height: 1;
  font-size: 16px;
  color: #333333;
  text-align: center;
  margin-right: 5px;
}
.h5ui-loading {
  font-size: 13px;
  text-align: center;
  display: block;
  margin: 15px 0;
  color: #666;
}
.h5ui-loading a {
  color: #666;
  display: block;
}
.h5ui-loading span.loading-line {
  text-align: center;
  background: #F5F6F7;
  display: inline-block;
  position: relative;
  top: 10px;
  padding: 0 20px;
}
.h5ui-loading span.loading-line:before,
.h5ui-loading span.loading-line:after {
  content: " ";
  position: absolute;
  top: 6px;
  width: 5px;
  height: 5px;
  background: #E5E8EC;
  border-radius: 50px;
}
.h5ui-loading span.loading-line:before {
  left: 0;
}
.h5ui-loading span.loading-line:after {
  right: 0;
}
.h5ui-loading.processing span {
  vertical-align: middle;
}
.h5ui-loading.processing .loading-processing_icon {
  width: 16px;
  height: 16px;
  margin-right: 5px;
  display: inline-block;
  vertical-align: middle;
  background: url("../img/icon-loading_processing.gif?201612131805") no-repeat;
  background-size: 16px;
}
.h5ui-loading.success,
.h5ui-loading.error {
  border-bottom: 1px solid #E5E8EC;
  position: relative;
  text-align: center;
  margin-bottom: 20px;
  padding-top: 10px;
  color: #999;
}
.h5ui-content_empty {
  margin: 20px auto;
}
.h5ui-content_empty .h5ui-content_empty_icon {
  width: 80px;
  height: 80px;
  display: block;
  background: url("/static/img/icon-content_empty.png?201612061623") no-repeat;
  background-size: 80px;
  margin: 0 auto;
}
.h5ui-content_empty p {
  text-align: center;
  font-size: 14px;
  color: #999;
  margin: 0;
}
