.banner-anim {
  position: relative;
  overflow: hidden;
  min-height: 100px; }

.banner-anim-elem {
  height: 100%; }

.banner-anim-elem > * {
  position: relative; }

.banner-anim-elem-mask {
  position: relative;
  overflow: hidden;
  width: 100%; }

.banner-anim-arrow {
  cursor: pointer;
  position: absolute;
  z-index: 10; }

.banner-anim-arrow-default {
  position: absolute;
  width: 20px;
  height: 60px;
  margin-top: -30px;
  background: rgba(0, 0, 0, 0.3); }

.banner-anim-arrow-default.next {
  right: 0; }

.banner-anim-arrow-default.next:before,
.banner-anim-arrow-default.prev:before,
.banner-anim-arrow-default.next:after,
.banner-anim-arrow-default.prev:after {
  width: 2px;
  height: 15px;
  background: #fff;
  display: block;
  content: ' ';
  position: absolute; }

.banner-anim-arrow-default.next:before {
  transform: rotate(-40deg);
  top: 18px;
  left: 10px; }

.banner-anim-arrow-default.next:after {
  transform: rotate(40deg);
  bottom: 17px;
  left: 10px; }

.banner-anim-arrow-default.prev:before {
  transform: rotate(40deg);
  top: 18px;
  left: 8px; }

.banner-anim-arrow-default.prev:after {
  transform: rotate(-40deg);
  bottom: 17px;
  left: 8px; }

.banner-anim-thumb {
  position: absolute;
  bottom: 0;
  margin: 0;
  padding: 0;
  width: 100%;
  text-align: center;
  pointer-events: none;
  z-index: 10; }

.banner-anim-thumb > span {
  pointer-events: auto;
  cursor: pointer;
  display: inline-block;
  list-style: none; }

.banner-anim-thumb-default {
  height: 40px;
  line-height: 40px; }

.banner-anim-thumb-default span {
  width: 8px;
  height: 8px;
  border-radius: 8px;
  margin: 0 5px;
  background: rgba(102, 102, 102, 0.35);
  transition: background .3s;
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.25); }

.banner-anim-thumb-default span:active,
.banner-anim-thumb-default span.active {
  background: #fff; }
@charset "UTF-8";
input {
  -webkit-appearance: none; }

input[type=number] {
  -moz-appearance: textfield; }

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0; }

input::-webkit-credentials-auto-fill-button {
  display: none !important;
  visibility: hidden;
  pointer-events: none;
  position: absolute;
  /* 避免占用 input 元素额外的 padding，正常情况下存在 display: none!; 就可以了 */
  right: 0; }

html, body, #root {
  height: 100%; }

a[href] {
  color: #FF4600; }

a.m1-btn-primary {
  color: #fff; }

h1, h2, h3, h4, h5, h6 {
  color: #222222;
  font-weight: bold; }

h2 {
  font-size: 16px; }

h3 {
  font-size: 14px; }

.icon.diamond {
  color: #1DACFD; }

.icon.gold {
  color: #F9BB00; }

.icon.base {
  color: #00D081; }

.icon.free {
  color: #7ED321; }

input:disabled ~ label {
  cursor: not-allowed;
  opacity: 0.5; }

.container:before, .container:after {
  content: " ";
  display: table; }

.container:after {
  clear: both; }

.m1-btn:not(:last-of-type) {
  margin-right: 16px; }

.m1-btn-group .m1-btn {
  margin-right: 0; }

.btn-icon {
  display: inline-block;
  width: 24px;
  height: 24px;
  text-align: center;
  margin-right: 10px;
  font-size: 14px;
  cursor: pointer;
  background-color: #f7f7f9;
  padding: 2px;
  border-radius: 4px;
  vertical-align: middle; }
  .btn-icon:hover {
    color: #FF4600; }
  .btn-icon.disabled {
    cursor: not-allowed; }
    .btn-icon.disabled .iconfont {
      color: #E1E1E1; }

.btn-icon-add {
  display: inline-block;
  width: 20px;
  height: 20px;
  padding: 0;
  margin: 0;
  border-radius: 50%;
  border: 1px solid #444444;
  font-size: 14px;
  line-height: 18px;
  text-align: center;
  background-color: #fff;
  cursor: pointer; }
  .btn-icon-add:hover {
    color: #FF4600;
    border-color: #FF4600; }

.icon-operation {
  display: inline-block; }
  .icon-operation .btn-icon:last-child {
    margin-right: 0; }

.dropdown-panel-wrap {
  position: relative;
  display: inline-block; }

.dropdown-panel {
  display: none;
  position: absolute;
  top: 100%;
  z-index: 100;
  padding: 10px;
  border: 1px solid #EEEEEE;
  border-radius: 4px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
  background-color: #fff; }
  .dropdown-panel.open {
    display: block; }

.btn-icon-panel {
  position: relative;
  display: inline-block; }
  .btn-icon-panel:hover .dropdown-panel {
    display: block;
    color: initial; }
  .btn-icon-panel:hover > .m1-dropdown-menu {
    display: block; }
  .btn-icon-panel .m1-dropdown-menu {
    min-width: 150px;
    overflow: visible; }
    .btn-icon-panel .m1-dropdown-menu li {
      line-height: initial; }
      .btn-icon-panel .m1-dropdown-menu li > a {
        line-height: 18px; }

.dropdown-panel-nav {
  padding: 5px 0;
  min-width: 100px;
  text-align: left;
  font-size: 13px; }
  .dropdown-panel-nav.right {
    right: 0; }
  .dropdown-panel-nav > .m1-nav > li a {
    border-radius: 0; }
    .dropdown-panel-nav > .m1-nav > li a:hover {
      color: #fff;
      background-color: #FF4600; }

.tag-link {
  display: inline-block;
  position: relative;
  border: 1px solid #EEEEEE;
  border-radius: 4px;
  margin-right: 16px; }

.tag-link-label {
  margin-right: 10px; }

.m1-alert {
  padding: 10px 20px; }
  .m1-alert h4 {
    font-size: 14px; }
  .m1-alert ol li, .m1-alert ul li {
    position: relative;
    padding-left: 15px;
    line-height: 24px; }
    .m1-alert ol li:before, .m1-alert ul li:before {
      position: absolute;
      left: 0;
      top: 10px; }

.m1-modal .m1-table tr > th:first-child, .m1-modal .m1-table tr > td:first-child {
  padding-left: 0;
  text-align: left; }

.m1-modal .m1-table tr > th:last-child, .m1-modal .m1-table tr > td:last-child {
  padding-right: 0; }

.m1-table > thead > tr > th {
  font-size: 14px; }

.m1-modal .m1-table tr > th, .m1-modal .m1-table tr > td {
  padding: 0 7px; }

.m1-tgl > label:nth-of-type(n + 2) {
  margin-left: 6px; }

.m1-body {
  max-width: 1500px; }
  .m1-body::before, .m1-body::after {
    content: ' ';
    display: block; }
  .m1-body::after {
    clear: both; }

.m1-right {
  margin-left: 242px;
  max-width: 1200px; }

@media screen and (max-width: 1280px) {
  .m1-body {
    padding-right: 42px; } }

.m1-nav > li > a {
  padding-left: 14px;
  padding-right: 14px;
  font-weight: normal;
  line-height: 22px;
  color: #888888; }
  .m1-nav > li > a > i {
    float: right;
    font-size: 10px;
    color: #888888; }
  .m1-nav > li > a.active {
    color: #222222;
    background-color: #FFECE4; }
    .m1-nav > li > a.active > i {
      color: #222222; }

.m1-panel-header {
  padding-top: 10px;
  padding-bottom: 10px;
  height: 58px; }
  .m1-panel-header h2 {
    line-height: 18px; }

.m1-panel-content {
  padding: 50px; }

.form-error {
  position: absolute;
  color: #FF5350;
  font-size: 12px;
  line-height: 12px;
  margin-top: 3px; }

.m1-form-label {
  color: #222222; }

.m1-form-label-input {
  display: block;
  height: 36px;
  padding: 0 10px 10px 10px;
  border-bottom: 1px solid transparent; }
  .m1-form-label-input span {
    color: #E1E1E1; }

.m1-form-input.error {
  border-bottom-color: #FF5350;
  box-shadow: 0 1px 0 rgba(255, 83, 80, 0.3), 0 3px 0 rgba(255, 83, 80, 0.1); }

textarea.m1-form-input.error {
  border-color: #FF5350;
  box-shadow: 0 1px 0 rgba(255, 83, 80, 0.3), 0 3px 0 rgba(255, 83, 80, 0.1); }

.m1-input-number {
  display: inline; }
  .m1-input-number input {
    width: 40px;
    padding: 10px 5px;
    text-align: center;
    font-size: 16px;
    font-weight: 400;
    border: none;
    box-shadow: none; }
  .m1-input-number span {
    color: #888888;
    padding: 10px 2px;
    font-size: 10px; }

.m1-search-group {
  position: relative;
  display: inline-block; }
  .m1-search-group .m1-input-group {
    width: 100%; }
    .m1-search-group .m1-input-group input {
      width: 280px;
      padding: 0 10px; }
  .m1-search-group > .m1-nav,
  .m1-search-group > .m1-dropdown-menu {
    width: 100%;
    position: absolute;
    max-height: 300px;
    margin-top: 4px;
    overflow-y: scroll; }
    .m1-search-group > .m1-nav.open,
    .m1-search-group > .m1-dropdown-menu.open {
      display: block; }
    .m1-search-group > .m1-nav li > a .icon,
    .m1-search-group > .m1-dropdown-menu li > a .icon {
      margin-right: 4px; }
    .m1-search-group > .m1-nav li > a .size,
    .m1-search-group > .m1-dropdown-menu li > a .size {
      float: right;
      margin-left: 10px; }
    .m1-search-group > .m1-nav li > a .m1-dropdown-check,
    .m1-search-group > .m1-dropdown-menu li > a .m1-dropdown-check {
      margin-right: -6px; }
    .m1-search-group > .m1-nav li.active > a,
    .m1-search-group > .m1-nav li > a.active,
    .m1-search-group > .m1-dropdown-menu li.active > a,
    .m1-search-group > .m1-dropdown-menu li > a.active {
      background-color: #e7f6ff; }
    .m1-search-group > .m1-nav li[disabled] > a,
    .m1-search-group > .m1-nav li > a[disabled],
    .m1-search-group > .m1-dropdown-menu li[disabled] > a,
    .m1-search-group > .m1-dropdown-menu li > a[disabled] {
      color: #E1E1E1;
      cursor: not-allowed; }
  .m1-search-group > .m1-nav.m1-dropdown-menu > li > a {
    color: #222222; }
    .m1-search-group > .m1-nav.m1-dropdown-menu > li > a:hover {
      background-color: #fff; }
    .m1-search-group > .m1-nav.m1-dropdown-menu > li > a .iconfont {
      float: initial;
      display: inline-block;
      margin-right: 4px;
      font-size: 14px;
      color: #C9CACD; }
  .m1-search-group .item-loading {
    text-align: center;
    line-height: 200px; }
    .m1-search-group .item-loading .m1-loading, .m1-search-group .item-loading .m1-loading i {
      font-size: 18px;
      color: #E1E1E1; }
  .m1-search-group .m1-subnav {
    margin-left: 0; }
    .m1-search-group .m1-subnav li > a {
      padding-left: 20px;
      padding-right: 20px;
      border-radius: 0; }
      .m1-search-group .m1-subnav li > a:hover {
        color: #ffffff;
        background-color: #1dacfd; }
    .m1-search-group .m1-subnav li[disabled] > a,
    .m1-search-group .m1-subnav li > a[disabled] {
      color: #E1E1E1;
      cursor: not-allowed; }
      .m1-search-group .m1-subnav li[disabled] > a:hover,
      .m1-search-group .m1-subnav li > a[disabled]:hover {
        color: #E1E1E1;
        cursor: not-allowed;
        background-color: #fff; }

.body-container {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto; }

.panel-nostyle {
  padding: 0;
  box-shadow: none;
  background-color: transparent; }

.empty-list {
  height: 300px;
  line-height: 300px;
  font-size: 25px;
  color: #888888;
  text-align: center; }

.title-describe {
  font-size: 13px;
  color: #888888;
  margin-left: 14px; }

.right-border {
  width: 0;
  height: 70px;
  border-right: 1px solid #EEEEEE; }

.wxqrcode-container {
  text-align: center; }

.wxqrcode-header {
  font-size: 16px;
  margin-bottom: 20px; }

.wxqrcode-footer {
  margin-top: 10px; }

.add-email-list input {
  width: 200px;
  margin-right: 14px;
  margin-top: 16px; }

.add-email-list button {
  margin-top: 17px; }
  .add-email-list button.btn-add-email {
    padding: 8px 15px; }

.add-email-list .m1-tag {
  margin-top: 20px; }

.radio-mix {
  display: inline-block;
  margin-right: 30px;
  font-size: 16px; }
  .radio-mix .radio-mix-box:hover, .radio-mix.selected .radio-mix-box {
    border-color: #FF4600; }
  .radio-mix .radio-mix-box {
    display: inline-block;
    padding: 5px 20px;
    margin-left: 10px;
    border-radius: 5px;
    border: 1px solid #eceeef;
    cursor: pointer;
    height: 50px;
    min-width: 140px;
    min-height: 50px;
    text-align: center;
    line-height: 40px; }
    .radio-mix .radio-mix-box .icon {
      float: left;
      height: 35px; }
      .radio-mix .radio-mix-box .icon i {
        height: inherit;
        font-size: 35px; }
      .radio-mix .radio-mix-box .icon img {
        max-width: 45px;
        height: 28px;
        transform: translateY(-2px); }
    .radio-mix .radio-mix-box .text {
      line-height: 40px; }
  .radio-mix.selected .radio-mix-box {
    box-shadow: 0 0 5px #FF4600; }
  .radio-mix.alipay .icon {
    color: #009fe8; }
  .radio-mix.wxpay .icon {
    color: #00c801; }
  .radio-mix.payway .radio-mix-box {
    line-height: 40px; }
  .radio-mix input {
    border-bottom: none;
    box-shadow: none; }
  .radio-mix .money-number {
    font-size: 22px;
    margin-left: 5px;
    margin-right: 5px;
    font-weight: normal;
    line-height: 20px;
    position: relative;
    bottom: -2px; }
  .radio-mix .gift {
    color: #FF5350;
    margin-left: 10px;
    font-size: 14px; }
  .radio-mix .icon {
    margin-right: 10px; }
  .radio-mix .m1-input-number {
    margin-right: 15px; }
  .radio-mix.wrapper {
    border: 1px solid #E1E1E1;
    border-radius: 4px;
    padding: 10px 16px; }
    .radio-mix.wrapper:hover {
      border-color: #FF4600; }
    .radio-mix.wrapper.selected {
      border-color: #FF4600; }
      .radio-mix.wrapper.selected .radio-mix-box {
        box-shadow: none; }
    .radio-mix.wrapper .radio-mix-box {
      border: none; }

.primary {
  color: #FF4600; }

.success {
  color: #00D066; }

.danger {
  color: #FF5350; }

.warning {
  color: #F9BB00; }

.ignore {
  color: #888888; }

.m1-mark-circle {
  display: inline-block;
  width: 22px;
  height: 22px;
  line-height: 22px;
  border-radius: 50%;
  text-align: center;
  font-size: 10px;
  color: #fff; }

.m1-mark-circle-primary {
  background-color: #FF4600; }

.m1-mark-circle-success {
  background-color: #00D066; }

.m1-mark-circle-danger {
  background-color: #FF5350; }

.m1-mark-circle-warning {
  background-color: #F9BB00; }

.m1-mark-circle-ignore {
  background-color: #E1E1E1; }

.m1-mark-circle-tag-primary {
  color: #FF4600;
  background-color: #FFECE4; }

.m1-mark-circle-tag-success {
  color: #00D066;
  background-color: #ECFCF6; }

.m1-mark-circle-tag-danger {
  color: #FF5350;
  background-color: #FEEAEE; }

.m1-box {
  padding: 30px;
  border-radius: 4px;
  background-color: #fff;
  -webkit-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1); }

.m1-tab-nav > li > a {
  font-size: 14px; }

.container:after {
  display: block;
  content: ' ';
  clear: both; }

.m1-dropdown .m1-btn > .text-wrap {
  display: inline-block;
  width: calc(100% - 20px);
  overflow: hidden;
  text-overflow: ellipsis;
  vertical-align: middle;
  word-break: keep-all;
  white-space: nowrap; }

.m1-dropdown-menu {
  position: absolute;
  min-width: 100%; }
  .m1-dropdown-menu ul > li {
    position: relative; }
    .m1-dropdown-menu ul > li > a > .text-wrap {
      display: inline-block;
      width: calc(100% - 30px);
      overflow: hidden;
      text-overflow: ellipsis;
      vertical-align: middle;
      word-break: keep-all;
      white-space: nowrap; }
    .m1-dropdown-menu ul > li > a > .icon-m1-unfold-right {
      float: right;
      font-size: 12px; }
    .m1-dropdown-menu ul > li:hover > .m1-dropdown-menu {
      display: block; }
    .m1-dropdown-menu ul > li > .m1-dropdown-menu {
      top: 0;
      left: 100%; }
      .m1-dropdown-menu ul > li > .m1-dropdown-menu.left {
        left: initial;
        right: 100%; }
  .m1-dropdown-menu .empty-content {
    padding: 10px 0;
    color: #E1E1E1; }

.m1-dropdown-form .m1-btn {
  width: 100%;
  text-align: left;
  padding: 0 0 10px 0;
  border: none;
  border-bottom: 1px solid #EEEEEE;
  background-color: transparent; }
  .m1-dropdown-form .m1-btn .m1-caret {
    float: right; }

.m1-dropdown-form.full {
  width: 100%; }

.m1-dropdown-search > input {
  width: 100%; }

.m1-panel-section {
  padding-left: 20px;
  margin: 50px 0; }
  .m1-panel-section:after {
    display: block;
    content: '';
    clear: both; }

.m1-input-group-form {
  display: inline-block;
  position: relative;
  background-color: #ffffff; }
  .m1-input-group-form input {
    padding-left: 20px; }
  .m1-input-group-form .iconfont {
    position: absolute;
    left: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    transform: translateY(-50%);
    color: #E1E1E1; }
  .m1-input-group-form.right input {
    padding-left: 10px;
    padding-right: 20px; }
  .m1-input-group-form.right .iconfont {
    left: initial;
    right: 0; }

.table-body {
  overflow-y: scroll;
  max-height: 600px; }

.time-picker {
  display: inline-block; }
  .time-picker .m1-dropdown {
    margin-right: 16px;
    min-width: 50px; }
    .time-picker .m1-dropdown:last-child {
      margin-right: 0; }

.empty-content {
  padding: 30px 0;
  text-align: center; }

.empty-holder {
  text-align: center; }
  .empty-holder img {
    max-width: 200px;
    height: 200px; }
  .empty-holder h2, .empty-holder .title {
    font-size: 16px;
    font-weight: 400; }
  .empty-holder p, .empty-holder .describe {
    margin-top: 10px;
    color: #888888; }

.tag-btn {
  padding: 2px;
  border: 1px solid #FF4600;
  color: #FF4600;
  line-height: 1;
  font-size: 12px;
  border-radius: 4px;
  cursor: pointer; }
  .tag-btn:hover {
    color: #ff6b33;
    border-color: #ff6b33; }

.empty-placeholder {
  display: inline-block;
  width: 100%;
  height: 100%; }

.component-loading {
  margin-top: 10%;
  text-align: center; }
  .component-loading .box-loading {
    display: inline-block;
    width: 60px;
    height: 60px;
    border-radius: 4px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
    line-height: 60px;
    text-align: center;
    background-color: #fff; }
    .component-loading .box-loading .m1-loading {
      color: #FF4600; }

.m1-table > tbody > tr > td:nth-child(2) > a {
  color: #444444; }
  .m1-table > tbody > tr > td:nth-child(2) > a:hover {
    color: #FF4600; }

.__react_component_tooltip {
  line-height: 1.7; }

.fade {
  opacity: 0;
  -webkit-transition: opacity .15s linear;
  transition: opacity .15s linear; }

.fade.in {
  opacity: 1; }

.m1-modal-backdrop.fade {
  opacity: 0;
  filter: alpha(opacity=0); }

.m1-modal-backdrop.in {
  opacity: .5;
  filter: alpha(opacity=50); }

.m1-modal-backdrop {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 90;
  background-color: #000; }

.m1-modal, .modal-open {
  overflow: hidden; }

.m1-modal {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 90;
  -webkit-overflow-scrolling: touch;
  outline: 0; }

.modal-open .m1-modal {
  overflow-x: hidden;
  overflow-y: auto; }

.m1-modal-dialog {
  position: relative;
  width: auto;
  margin: 100px 10px; }

@media (min-width: 768px) {
  .m1-modal-dialog {
    width: 500px;
    margin: 120px auto; } }

.m1-modal.in.center .m1-modal-dialog {
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: 0;
  margin-bottom: 0;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%); }

.m1-modal-content {
  position: relative;
  background-color: #fff;
  border-radius: 6px;
  box-shadow: 0 0 0 rgba(0, 0, 0, 0.175);
  background-clip: padding-box;
  outline: 0; }

.m1-modal-close {
  position: absolute;
  top: -15px;
  right: -15px;
  height: 30px;
  width: 30px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  line-height: 31px;
  font-size: 20px;
  text-align: center;
  cursor: pointer;
  color: #FF4600;
  background-color: #FFECE4;
  font-family: "iconfont" !important;
  font-style: normal;
  font-variant-ligatures: normal;
  font-variant-caps: normal;
  font-variant-numeric: normal;
  font-weight: normal;
  font-stretch: normal;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  border: none; }
  .m1-modal-close:hover {
    color: #fff;
    background-color: #FF4600; }
  .m1-modal-close:before {
    content: "\E63A"; }

.m1-modal-header {
  padding: 30px 30px 0px;
  margin-bottom: 30px; }

.m1-modal-body {
  position: relative;
  padding: 0px 30px;
  margin: 30px 0; }

.m1-modal-footer {
  padding: 0px 30px 30px;
  margin-top: 30px;
  text-align: center; }

.m1-modal-title {
  margin: 0;
  font-size: 16px;
  line-height: 16px;
  text-align: center; }

.banner-user, .banner-anim {
  height: 100%; }

.banner-anim-elem.banner-user-elem {
  color: #fff; }
  .banner-anim-elem.banner-user-elem h1, .banner-anim-elem.banner-user-elem h2, .banner-anim-elem.banner-user-elem h3, .banner-anim-elem.banner-user-elem h4, .banner-anim-elem.banner-user-elem h5, .banner-anim-elem.banner-user-elem h6, .banner-anim-elem.banner-user-elem p {
    color: #fff; }

.banner-user-content {
  padding: 50px; }

ul, li {
  list-style: none;
  margin: 0;
  padding: 0; }

.banner-thumb-bottom .banner-anim-elem {
  height: 560px; }

.banner-thumb-bottom .banner-anim-thumb {
  background: #999; }

.banner-anim-elem .bg {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden; }

.banner-anim-thumb-default {
  height: 120px;
  line-height: 120px; }
  .banner-anim-thumb-default span {
    display: inline-block;
    width: 40px;
    height: 13px;
    border-radius: unset;
    background-color: transparent;
    box-shadow: none; }
    .banner-anim-thumb-default span:before {
      display: block;
      content: ' ';
      margin-top: 5px;
      height: 3px;
      background-color: rgba(225, 225, 225, 0.5);
      box-shadow: 0 0 3px rgba(0, 0, 0, 0.25); }
    .banner-anim-thumb-default span:active, .banner-anim-thumb-default span.active {
      background-color: transparent; }
      .banner-anim-thumb-default span:active:before, .banner-anim-thumb-default span.active:before {
        background-color: #FF4600; }

.active-email-header button {
  float: right; }

.active-email-content {
  max-width: 630px;
  margin: 60px auto 80px;
  text-align: center; }
  .active-email-content h3 {
    font-size: 20px; }
  .active-email-content p {
    margin-bottom: 0;
    line-height: 22px; }
  .active-email-content .btns {
    margin-top: 50px;
    margin-bottom: 50px; }
    .active-email-content .btns .m1-btn {
      min-width: 116px; }
  .active-email-content .m1-loading {
    color: #E1E1E1;
    font-size: 34px; }

.active-status-image {
  margin-bottom: 20px; }

.sign-container {
  position: relative;
  margin: 0 auto;
  background-color: #fff; }

.sign-left {
  position: absolute;
  height: 100%;
  width: 320px;
  overflow-y: scroll; }

.sign-right {
  float: right;
  width: calc(100% - 320px);
  height: 100%;
  background-color: #FEF9F7; }

.sign-form {
  padding-top: 60px; }

.sign-login .sign-form {
  padding-top: 100px; }

.sign-register .sign-form {
  padding-top: 30px; }

.sign-form-header {
  position: absolute;
  top: 0;
  right: 0;
  padding: 30px;
  text-align: right; }

.sign-logo {
  text-align: center;
  color: #FF4600; }
  .sign-logo a {
    color: #FF4600; }

.sign-form-content .m1-form {
  width: 220px;
  margin: 30px auto; }
  .sign-form-content .m1-form.login-form {
    margin-top: 50px; }

.sign-form-content .m1-form-content {
  margin-left: 0;
  text-align: center; }
  .sign-form-content .m1-form-content .iconfont {
    position: absolute;
    left: 0;
    top: 0;
    color: #E1E1E1;
    font-size: 16px; }
  .sign-form-content .m1-form-content input {
    padding-left: 28px; }
    .sign-form-content .m1-form-content input:-webkit-autofill {
      -webkit-box-shadow: 0 0 0px 1000px white inset; }

.sign-form-content .form-icon-right {
  position: absolute;
  right: 0;
  top: 0;
  cursor: pointer; }
  .sign-form-content .form-icon-right .iconfont {
    position: static; }
    .sign-form-content .form-icon-right .iconfont:hover {
      color: #888888; }
  .sign-form-content .form-icon-right .m1-loading {
    color: #E1E1E1; }

.sign-form-content p {
  margin-bottom: 0;
  text-align: center;
  color: #888888;
  line-height: 13px; }

.sign-form-content .geetest_holder.geetest_wind {
  min-width: 220px; }

@media screen and (max-width: 899px) {
  body {
    background-color: #fff; }
  .sign-left {
    position: static;
    height: initial;
    width: initial;
    min-width: initial;
    overflow-y: initial; }
  .sign-right {
    display: none; } }

@media screen and (min-width: 560px) and (max-width: 899px) and (min-height: 1000px) {
  .sign-left {
    height: 100vh; }
  .sign-form {
    position: absolute;
    width: 100%;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%); } }

@media screen and (min-width: 900px) {
  .sign-container {
    width: 900px;
    height: 560px;
    -moz-box-shadow: 0 0 55px 11px rgba(222, 221, 221, 0.6);
    -webkit-box-shadow: 0 0 55px 11px rgba(222, 221, 221, 0.6);
    -o-box-shadow: 0 0 55px 11px rgba(222, 221, 221, 0.6);
    box-shadow: 0 0 55px 11px rgba(222, 221, 221, 0.6);
    border-radius: 5px;
    overflow: hidden; } }

@media screen and (min-width: 1280px) {
  .sign-container {
    width: 1000px;
    height: 700px; }
    .sign-container.sign-login {
      height: 650px; }
  .sign-left {
    width: 335px; }
  .sign-right {
    width: calc(100% - 335px); } }

@media screen and (min-width: 900px) and (max-width: 1279px) and (min-height: 500px) {
  .sign-container {
    margin-top: calc((100vh - 560px) / 2); } }

@media screen and (min-width: 1280px) and (min-height: 625px) {
  .sign-container {
    margin-top: calc((100vh - 700px) / 2); } }

.login-box .m1-btn {
  float: right; }

.login-box.full .m1-btn {
  width: 100%; }

.forget-pwd {
  line-height: 16px;
  color: #444444; }
  .forget-pwd .m1-tgl {
    float: left;
    margin-right: 10px; }
  .forget-pwd a {
    float: right;
    margin-left: 10px; }

.no-account {
  text-align: center;
  color: #E1E1E1; }
  .no-account a {
    margin-left: 5px; }

.separator {
  position: relative;
  margin: 30px 0;
  color: #E1E1E1; }
  .separator hr {
    border-bottom: 1px dashed #EEEEEE; }
  .separator .or {
    display: inline-block;
    position: absolute;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    line-height: 13px;
    background-color: #FAFBFC;
    text-align: center; }

.three-bind-login {
  margin-bottom: 30px;
  text-align: center; }
  .three-bind-login a {
    display: inline-block;
    margin-right: 10px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #ccc;
    color: #fff;
    line-height: 40px;
    text-align: center;
    font-size: 22px; }
    .three-bind-login a.sina:hover {
      background-color: #D70000; }
    .three-bind-login a.wechat:hover {
      background-color: #00c801; }
    .three-bind-login a.qq:hover {
      background-color: #4985EF; }
    .three-bind-login a.mingdao:hover {
      background-color: #3292e6; }
  .three-bind-login.fixed {
    position: absolute;
    bottom: 0;
    width: calc(100% - 10px);
    background-color: rgba(255, 255, 255, 0.8);
    margin: 5px;
    padding: 16px 0;
    border-radius: 5px; }
    .three-bind-login.fixed a.sina {
      background-color: #D70000; }
    .three-bind-login.fixed a.wechat {
      background-color: #00c801; }
    .three-bind-login.fixed a.qq {
      background-color: #4985EF; }
    .three-bind-login.fixed a.mingdao {
      background-color: #3292e6; }

.three-bind-box {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5); }

.login-bottom {
  margin-top: 50px; }
  .login-bottom a:first-child {
    float: left; }
  .login-bottom a:last-child {
    float: right; }

.code-text {
  margin-top: 30px;
  margin-bottom: 0;
  cursor: pointer; }

.register-box {
  margin: 30px 0 20px; }
  .register-box .m1-btn {
    width: 100%; }

.sign-form-bottom {
  text-align: center; }

.has-account {
  margin-bottom: 50px; }

.verify-code .m1-form-content:after {
  content: ' ';
  display: block;
  clear: both; }

.verify-code .input-content {
  float: left;
  width: calc(100% - 105px); }

.verify-code .m1-form-input {
  float: left;
  width: calc(100% - 135px); }

.verify-code .m1-btn {
  float: right;
  margin-top: -6px;
  padding: 8px; }

.register-industry .m1-dropdown-form {
  width: 100%; }
  .register-industry .m1-dropdown-form > .m1-btn {
    padding-left: 30px; }

.sign-banner {
  height: 100%; }

.banner-container {
  height: 100%; }

.sign-banner-loading {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%; }
