/* html{
  font-size: 12px;
} */
::-webkit-scrollbar {
  width: 3px;
  height: 3px;
}
::-webkit-scrollbar-track {
  background: none;
  border-radius: 4px;
}
::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: #999;
}
* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    outline: none;
}
html{
  overflow-x:hidden;

}
html,
body {
  height: 100%;
  background-color: #F9F9F9;
  /* font: 12px/1.5 PingFangSC-Regular, PingFang SC, tahoma,arial,'Hiragino Sans GB',\5b8b\4f53,sans-serif; */
  /* font: 12px/1.5 Helvetica Neue, Helvetica, PingFang SC, Hiragino Sans GB, Microsoft YaHei, Arial, sans-serif; */
  font: 12px/1.5 "微软雅黑","Microsoft Yahei";
  color:#333;
}
input,
textarea,
select {
  outline: none;
}
a {
  text-decoration: none;
  color: #424242;
}
body,
h1,
h2,
h3,
h4,
h5,
h6,
hr,
p,
blockquote,
dl,
dt,
dd,
ul,
ol,
li,
pre,
form,
fieldset,
legend,
button,
input,
textarea,
th,
td {
  margin: 0;
  padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 100%;
}
address,
cite,
dfn,
em,
var {
  font-style: normal;
}

small {
  font-size: 12px;
}
ul,
ol {
  list-style: none;
}
legend {
  color: #000;
}
fieldset,
img {
  border: 0;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

.fl {
  float: left;
}
.fr {
  float: right;
}
.clearfix:after {
  content: "";
  display: block;
  clear: both;
  width: 100%;
}
.hide {
  display: none;
}
input:not([type="radio"]):not([type="checkbox"]):focus,
select:focus,
textarea:focus {
  outline: none;
}
input:not([type="radio"]):not([type="checkbox"]).error,
select.error,
textarea.error {
  -webkit-animation: form-error-alert 0.5s forwards;
  animation: form-error-alert 0.5s forwards;
}
textarea {
  padding: 6px 10px;
  line-height: 1.6;
  resize: none;
  word-break: break-all;
}
input:not([type="radio"]):not([type="checkbox"]):read-only {
  cursor: default;
}
input:not([type="radio"]):not([type="checkbox"]):read-only:focus {
  box-shadow: none;
  border-color: #ccc;
}
input[type="radio"]:after,
input[type="checkbox"]:after {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  background-color: #80bdff;
  border-radius: 50%;
  top: 4px;
  left: 4px;
  opacity: 0;
  -webkit-transform: scale(0);
  transform: scale(0);
  -webkit-transition: 0.15s;
  transition: 0.15s;
}
input[type="radio"]:checked,
input[type="checkbox"]:checked {
  border-color: #80bdff;
  background-color: #ffffff;
  box-shadow: 0 0 0 3px rgba(128, 189, 255, 0.5);
}
input[type="radio"]:checked:after,
input[type="checkbox"]:checked:after {
  opacity: 1;
  -webkit-transform: scale(1);
  transform: scale(1);
}
input[type="radio"]:disabled,
input[type="checkbox"]:disabled {
  background-color: #ddd;
}
input[type="checkbox"] {
  border-radius: 4px;
  vertical-align: -6px;
}
input[type="checkbox"]:after {
  content: "✔";
  color: #80bdff;
  font-weight: bold;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  line-height: 18px;
  background: none;
  text-align: center;
}
input[type="checkbox"].switcher {
  background-color: transparent;
  width: 50px;
  height: 24px !important;
  border-radius: 12px;
  border: solid #666 1px;
  box-sizing: content-box;
}
input[type="checkbox"].switcher:after {
  content: "";
  width: 22px;
  height: 22px;
  border-radius: 50%;
  position: absolute;
  top: 1px;
  left: 1px;
  background-color: #666;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
  opacity: 1;
  -webkit-transform: scale(1);
  transform: scale(1);
}
input[type="checkbox"].switcher:before {
  content: attr(data-off);
  position: absolute;
  top: 0;
  left: 24px;
  width: calc(100% - 24px);
  text-align: center;
  color: #666;
  line-height: 24px;
}
input[type="checkbox"].switcher:checked {
  border-color: #007bff;
  background-color: #007bff;
}
input[type="checkbox"].switcher:checked:after {
  left: calc(100% - 25px);
  background-color: #fff;
}
input[type="checkbox"].switcher:checked:before {
  content: attr(data-on);
  left: 0;
  color: #fff;
}
/* 主题颜色 */
.theme-color {
  color: #00A1A2;
}
.theme-bg {
  background-color: #44DED3;
}
.form.inline .form-item {
  display: -webkit-box;
  display: flex;
}
.form.inline .form-item > span {
  display: inline-block;
  width: 120px;
  text-align: right;
  margin-bottom: 0;
  line-height: 38px;
}
.form.inline .form-item .inp {
  width: 400px;
  line-height: 38px;
}
.form.inline .form-item .inp .switcher {
  margin-top: 6px;
}
.form.inline .form-item .text-counter {
  margin-top: -10px;
}
.form .form-item {
  margin-bottom: 15px;
}
.form .form-item.required > span:before {
  content: "*";
  color: #f00;
}
.form .form-item > span {
  margin-bottom: 10px;
  display: block;
}
.form .form-item .inp {
  position: relative;
}
.form .text-counter {
  text-align: right;
  color: #666666;
  line-height: 16px;
}
.form label + label {
  margin-left: 30px;
}
.form-tips {
  background-color: #666;
  color: #fff;
  padding: 8px 15px;
  position: absolute;
  z-index: 10000;
  border-radius: 4px;
  font-size: 14px;
  line-height: 20px;
  opacity: 0;
  -webkit-transform: translate(0, -60px);
  transform: translate(0, -60px);
  -webkit-transition: 0.15s;
  transition: 0.15s;
  white-space: nowrap;
}
.form-tips.bottom {
  -webkit-transform: translate(0, 20px);
  transform: translate(0, 20px);
}
.form-tips.bottom:after {
  border-top-color: transparent;
  border-bottom-color: #666;
  top: -12px;
  bottom: auto;
}
.form-tips.bottom.show {
  -webkit-transform: translate(0, 10px);
  transform: translate(0, 10px);
}
.form-tips:after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border: 6px solid transparent;
  border-top-color: #666;
  bottom: -12px;
  left: 50%;
  margin-left: -6px;
}
.form-tips.show {
  opacity: 1;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
@-webkit-keyframes form-error-alert {
  0%,
  20%,
  60%,
  100% {
    border-color: #dc3545;
    box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.5);
  }
  40%,
  80% {
    border-color: #80bdff;
    box-shadow: 0 0 0 3px rgba(128, 189, 255, 0.5);
  }
}
@keyframes form-error-alert {
  0%,
  20%,
  60%,
  100% {
    border-color: #dc3545;
    box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.5);
  }
  40%,
  80% {
    border-color: #80bdff;
    box-shadow: 0 0 0 3px rgba(128, 189, 255, 0.5);
  }
}
.btn {
  display: inline-block;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  border-radius: 4px;
  padding: 0 15px;
  background-color: #ffffff;
  border: none;
  color: #000000;
  height: 36px;
  line-height: 36px;
  border: 1px solid #ccc;
  cursor: pointer;
  -webkit-transition: 0.15s;
  transition: 0.15s;
  box-shadow: 0 2px 10px rgba(204, 204, 204, 0.3);
}
.btn:hover {
  box-shadow: 0 2px 15px rgba(204, 204, 204, 0.9);
}
.btn:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(204, 204, 204, 0.7);
}
.btn:disabled {
  color: #ccc;
  cursor: default;
  pointer-events: none;
}
.btn-primary {
  color: #ffffff;
  background-color: #007bff;
  border-color: #007bff;
  box-shadow: 0 2px 10px rgba(0, 123, 255, 0.3);
}
.btn-primary:hover {
  background-color: #0062cc;
  box-shadow: 0 2px 15px rgba(0, 123, 255, 0.5);
}
.btn-primary:focus {
  box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.5);
}
.btn-primary:disabled {
  background-color: #66b0ff;
}
.btn-danger {
  color: #ffffff;
  border-color: #dc3545;
  background-color: #dc3545;
  box-shadow: 0 2px 10px rgba(220, 53, 69, 0.3);
}
.btn-danger:hover {
  background-color: #bd2130;
  box-shadow: 0 2px 15px rgba(220, 53, 69, 0.5);
}
.btn-danger:focus {
  box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.5);
}
.btn-danger:disabled {
  background-color: #eb8c95;
}
.btn-warning {
  border-color: #ffc107;
  background-color: #ffc107;
  box-shadow: 0 2px 10px rgba(255, 193, 7, 0.3);
}
.btn-warning:hover {
  background-color: #d39e00;
  box-shadow: 0 2px 15px rgba(255, 193, 7, 0.5);
}
.btn-warning:focus {
  box-shadow: 0 0 0 3px rgba(255, 193, 7, 0.5);
}
.btn-warning:disabled {
  background-color: #ffdb6d;
}
.btn-select {
  position: absolute;
  top: 0;
  right: 0;
  height: 38px;
  border-radius: 0 4px 4px 0;
}
.btn-select + input {
  padding-right: 70px !important;
  text-overflow: ellipsis;
}
.btn-back {
  position: absolute;
  top: 5px;
  right: 15px;
  z-index: 5;
}
.search-area {
  border: 1px solid #ddd;
  padding: 15px;
  border-radius: 4px;
  margin-bottom: 20px;
}
.search-area .form-item {
  display: inline-block;
  margin: 0 20px 10px 0;
}
.search-area .inp {
  display: inline-block;
  width: 180px;
  position: relative;
}
.search-area .btns {
  text-align: right;
}
.search-area .btns .btn {
  margin-left: 5px;
}
.act-area {
  padding: 0 0 10px;
}
.list-area {
  position: relative;
  min-height: 100px;
}
.list-area:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.5) url(../images/loading.gif) 50% 50% / 30px
    30px no-repeat;
  display: none;
}
.list-area.loading:after {
  display: block;
}
.image-item {
  width: 80px;
  height: 80px;
  float: left;
  position: relative;
  margin: 0 15px 15px 0;
  overflow: visible;
  box-shadow: inset 0 0 0 1px #ccc;
  display: none;
}
.image-item .image {
  height: 80px;
  border-radius: 4px;
  overflow: hidden;
  position: relative;
}
.image-item.show {
  display: block;
}
.image-item img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  max-width: calc(100% - 2px);
  max-height: calc(100% - 2px);
}
.image-item .del {
  width: 18px;
  height: 18px;
  background-color: #ff3300;
  position: absolute;
  top: -9px;
  right: -9px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 20;
}
.image-item .del:hover:before {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  margin-top: 0;
}
.image-item .del:hover:after {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.image-item .del:before,
.image-item .del:after {
  content: "";
  position: absolute;
  width: 12px;
  height: 1px;
  background-color: #ffffff;
  top: 50%;
  left: 3px;
  -webkit-transition: 0.25s;
  transition: 0.25s;
}
.image-item .del:before {
  margin-top: -1px;
}
.image-meta {
  color: #999999;
  padding-top: 5px;
  clear: both;
  line-height: 16px;
}
@-webkit-keyframes image-uploader-loading {
  to {
    height: 5%;
  }
}
@keyframes image-uploader-loading {
  to {
    height: 5%;
  }
}
.selector {
  -webkit-user-select: none;
  user-select: none;
  line-height: 38px;
}
.selector.single .selector-drop-down li:after {
  display: none;
}
.selector.single .selector-drop-down .infos {
  display: none;
}
.selector.open .selector-selected {
  border-radius: 4px 4px 0 0;
  box-shadow: 0 0 0 3px rgba(128, 189, 255, 0.5);
}
.selector.open .selector-selected:before {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.selector.open .selector-selected:after {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.selector.open .selector-drop-down {
  -webkit-transition: 0.5s;
  transition: 0.5s;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  visibility: visible;
}
.selector.open .selector-drop-down ul {
  -webkit-transition: 0.5s;
  transition: 0.5s;
  opacity: 1;
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
}
.selector-selected {
  padding: 0 35px 0 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
  position: relative;
  cursor: default;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  height: 38px;
  -webkit-transition: 0.15s;
  transition: 0.15s;
}
.selector-selected.placeholder {
  color: #999999;
}
.selector-selected:before,
.selector-selected:after {
  content: "";
  width: 8px;
  height: 1px;
  background-color: #000;
  position: absolute;
  top: 50%;
  right: 10px;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.selector-selected:before {
  right: 16px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.selector-drop-down {
  border: solid #ccc 1px;
  border-top-color: #ddd;
  position: absolute;
  top: 39px;
  left: 0;
  right: 0;
  background-color: #ffffff;
  z-index: 10;
  border-radius: 0 0 4px 4px;
  visibility: hidden;
}
.selector-drop-down .infos {
  color: #999999;
  padding-left: 10px;
}
.selector-drop-down .infos a {
  padding: 0 15px 0 18px;
  cursor: pointer;
}
.selector-drop-down .infos .total {
  position: absolute;
  top: 0;
  right: 10px;
}
.selector-drop-down .list {
  overflow-x: hidden;
  overflow-y: auto;
  max-height: 190px;
}
.selector-drop-down ul {
  opacity: 0;
  -webkit-transform: translate(0, -10px);
  transform: translate(0, -10px);
}
.selector-drop-down li {
  cursor: default;
  position: relative;
  padding: 0 10px;
}
.selector-drop-down li:hover {
  background-color: rgba(0, 123, 255, 0.1);
}
.selector-drop-down li:after {
  content: "\2714";
  position: absolute;
  top: 0;
  right: 10px;
  color: #007bff;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translate(10px, 0);
  transform: translate(10px, 0);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.selector-drop-down li.selected {
  color: #007bff;
}
.selector-drop-down li.selected:after {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
}
.selector-drop-down li.disabled,
.selector-drop-down li.not-allowed {
  opacity: 0.5;
}
.selector-drop-down li.disabled:hover,
.selector-drop-down li.not-allowed:hover {
  background: none;
}
select.error ~ .selector .selector-selected {
  -webkit-animation: form-error-alert 0.5s forwards;
  animation: form-error-alert 0.5s forwards;
}
.search-area .selector {
  display: inline-block;
  width: 100%;
  vertical-align: middle;
}
.search-area .selector .btns {
  text-align: left;
}