@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  outline: 0;
  vertical-align: baseline;
  -webkit-tap-highlight-color: transparent;
}

img {
  border: 0 none;
  vertical-align: top;
}

ol, ul {
  list-style: none;
}

input, select, button, h1, h2, h3, h4, h5, h6 {
  font-size: 100%;
  font-family: inherit;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

a {
  text-decoration: none;
  color: #333;
}

input[type="text"], textarea {
  font-family: -apple-system, BlinkMacSystemFont, 'PingFang SC', 'Helvetica Neue', STHeiti, Tahoma, sans-serif;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

input:-webkit-autofill {
  -webkit-box-shadow: 0 0 0 1000px #fff inset;
}

input {
  -webkit-appearance: none;
}

body {
  margin: 0 auto;
  min-width: 320px;
  max-width: 640px;
  font-family: -apple-system, BlinkMacSystemFont, 'PingFang SC', 'Helvetica Neue', STHeiti, Tahoma, sans-serif;
  font-size: 14px;
  line-height: 1.5;
  color: #333;
  -webkit-text-size-adjust: 100% !important;
  -moz-text-size-adjust: 100% !important;
  -ms-text-size-adjust: 100% !important;
  text-size-adjust: 100% !important;
}

body {
  padding: 40px 0 67px;
}

.bodybg {
  background-color: #f1f1f1;
}

.topbar {
  position: fixed;
  top: 0;
  z-index: 9999;
  min-width: 320px;
  max-width: 640px;
  width: 100%;
  height: 40px;
  background-color: #1468e5;
}

.topbar .bar {
  position: relative;
  height: 100%;
}

.topbar .menu-btn {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 5px 0;
  width: 20px;
  height: 2px;
  border-top: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  background-color: currentColor;
  background-clip: content-box;
  color: #fff;
  -webkit-transition: .5s;
  transition: .5s;
}

.topbar .menu-btn::after {
  position: absolute;
    top: -5px;
    left: 26px;
    content: '菜单';
    width: 40px;
}

.topbar .menu-btn.on {
  -webkit-transform: rotateZ(-180deg);
  -ms-transform: rotate(-180deg);
  transform: rotateZ(-180deg);
  -webkit-transform-origin: center center;
  -ms-transform-origin: center center;
  transform-origin: center center;
}

.topbar .logo {
  display: block;
  height: 100%;
  background: url(../img/logo.png) center no-repeat;
  background-size: 110px;
}

.topbar .user {
  position: absolute;
  top: 9px;
  right: 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 13px;
  color: #fff;
}

.topbar .user::before {
  content: '';
  margin-right: 3px;
  width: 17px;
  height: 22px;
  background: url(../img/icon_user.png) -173px center no-repeat;
  background-size: 190px;
}

.topbar .user a {
  color: #fff;
  border: 1px solid #eee;
  width: 80px;
  display: block;
  text-align: center;
  margin-bottom: 1px;
}

.topbar .user .logout {
  color: #ffd013;
}

.user-select {
  display: none;
}

.user-state {
  display: none;
}

.user-show {
  display: block;
  position: absolute;
  top: 22px;
  right: 0;
}

.menu-content {
  position: fixed;
  top: 40px;
  bottom: 0;
  z-index: 10;
  min-width: 320px;
  max-width: 640px;
  width: 100%;
  visibility: hidden;
  overflow: hidden;
}

.menu-content .backdrop {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  opacity: 0;
  -webkit-transition: .3s;
  transition: .3s;
}

.menu-content nav {
  position: absolute;
  top: 0;
  left: 0;
  width: 60%;
  height: 100%;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  background-color: #262e38;
  -webkit-box-shadow: inset -2px -1px 10px rgba(255, 255, 255, 0.2);
  box-shadow: inset -2px -1px 10px rgba(255, 255, 255, 0.2);
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transform: translateX(-100%);
  -ms-transform: translateX(-100%);
  transform: translateX(-100%);
  -webkit-transition: .25s;
  transition: .25s;
}

.menu-content nav .item {
  display: block;
  padding-left: 15%;
  height: 40px;
  line-height: 40px;
  font-size: 16px;
  color: #fff;
  opacity: 0;
  border-top: 3px solid #1e252f;
  -webkit-transition: .25s;
  transition: .25s;
}

.menu-content.open {
  z-index: 999;
  visibility: visible;
}

.menu-content.open .backdrop {
  opacity: 1;
}

.menu-content.open nav {
  -webkit-transform: translateX(0);
  -ms-transform: translateX(0);
  transform: translateX(0);
}

.menu-content.open nav .item {
  opacity: 1;
}

.swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 2px;
}

.swiper-pagination-bullet {
  width: 12px;
  height: 5px;
  border-radius: 5px;
  opacity: 1;
  background-color: #fff;
  -webkit-transition: all .2s;
  transition: all .2s;
}

.swiper-pagination-bullet-active {
  width: 25px;
  background-color: #1468e5;
}

.common-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 0 12px;
  height: 38px;
  position: relative;
}

.common-title::after {
  content: '';
  position: absolute;
  bottom: -1px;
  right: 0;
  left: 12px;
  height: 1px;
  border-bottom: 1px solid #f1f1f1;
  -webkit-transform-origin: 0 0;
  -ms-transform-origin: 0 0;
  transform-origin: 0 0;
  -webkit-transform: scaleY(0.5);
  -ms-transform: scaleY(0.5);
  transform: scaleY(0.5);
}

.common-title h2 {
  position: relative;
  font-size: 15px;
  text-indent: 19px;
}

.common-title h2::before {
  content: '';
  position: absolute;
  top: 2px;
  left: 0;
  width: 16px;
  height: 16px;
  background: url(../img/icon.png) 0 center no-repeat;
  background-size: 128px;
}

.common-title .more-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 12px;
  color: #999;
}

.common-title .more-link::after {
  content: '';
  width: 16px;
  height: 16px;
  background: url(../img/icon.png) -48px center no-repeat;
  background-size: 128px;
}

.crumb {
  padding: 0 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 32px;
  font-size: 11px;
  color: #8a8a8a;
}

.crumb a {
  margin: 0 2px;
  color: #8a8a8a;
}

.crumb a:last-child {
  color: #1468e5;
}

.sites-footer {
  position: fixed;
  bottom: 0;
  left: 50%;
  z-index: 999;
  -webkit-transform: translate(-50%);
  -ms-transform: translate(-50%);
  transform: translate(-50%);
  min-width: 320px;
  max-width: 640px;
  width: 100%;
  height: 48px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  border-top: 1px solid #d2d2d2;
}

.sites-footer::after {
  position: absolute;
  top: -19px;
  left: 50%;
  content: '';
  -webkit-transform: translate(-50%);
  -ms-transform: translate(-50%);
  transform: translate(-50%);
  width: 60px;
  height: 60px;
  background-color: #fafafa;
  border-radius: 50%;
  border: 1px solid #d2d2d2;
}

.sites-footer .footer-nav {
  position: relative;
  z-index: 10;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: #fafafa;
}

.sites-footer .footer-link {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 14px;
  color: #8a8a8a;
}

.sites-footer .footer-link.current {
  color: #1468e5;
}

.sites-footer .footer-link.current:nth-child(1) .icon {
  background-position: 0 -22px;
}

.sites-footer .footer-link.current:nth-child(2) .icon {
  background-position: -30px -22px;
}

.sites-footer .footer-link.current:nth-child(3) .icon {
  background-position: -60px -22px;
}

.sites-footer .footer-link.current:nth-child(4) .icon {
  background-position: -90px -22px;
}

.sites-footer .footer-link.current:nth-child(5) .icon {
  background-position: -120px -22px;
}

.sites-footer .footer-link .icon {
  width: 30px;
  height: 22px;
  background: url(../img/icon_footer.jpg) no-repeat;
  background-size: 150px 44px;
}

.sites-footer .footer-link:nth-child(1) .icon {
  background-position: 0 0;
}

.sites-footer .footer-link:nth-child(2) .icon {
  background-position: -30px 0;
}

.sites-footer .footer-link:nth-child(3) .icon {
  background-position: -60px 0;
  -webkit-transform: scale(1.5) translateY(-4px);
  -ms-transform: scale(1.5) translateY(-4px);
  transform: scale(1.5) translateY(-4px);
}

.sites-footer .footer-link:nth-child(4) .icon {
  background-position: -90px 0;
}

.sites-footer .footer-link:nth-child(5) .icon {
  background-position: -120px 0;
}

.sites-zixun {
  position: fixed;
  bottom: 0;
  z-index: 9999;
  width: 100%;
  max-width: 480px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.sites-zixun p {
  height: 40px;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 16px;
}

.sites-zixun p a {
  color: #fff;
}

.sites-zixun p:first-child, .sites-zixun p:last-child {
  background-color: #f9ae3b;
}

.sites-zixun p:first-child i, .sites-zixun p:last-child i {
  width: 25px;
  height: inherit;
  background: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACIAAAAfCAYAAACCox+xAAADBklEQVR42sSYTUhUURTHRx2yUtMYMJCZCcy+TBNL+sAWihBSG5GYFkILaSe5aiIL94LtwkVgtTCohAwCkxZBWNRiNlGRGlPoGBFSoFSU0fj6H/tfOj7fzJuR5nXhx9x37sf5v3vvu/eeybMsy5dFqgXHwGGwC4TBBpZ9BwkwCZ6B++Blph3nZSBEHHWCLrCbtm/gFXgHvtBWAipBDSiibQIMgGsUmjqJkDR0gPfWnzQH+sAB4E/Txs86fWxjsY+OdL5SFZSCESWgCxS6iHaikG2NoBH2nZGQIJhgw2EQWIMAOwH2ZbHvoJuQChBng95/IMBOL/uO05ejkPUgxorRHIgwROkjRp+rhPSzwmAORRgG6avfLqQaJMFbUOyBkGL6Ep97tJA7VBjxQIQhQp/ie3lDq+COKFSBJZ83KR/EuTuH5aEdFIAhD0X46GuIvttFSAsLHvi8T8Zniwip48MLl0bVIAoO2uyloBtE5OzS5xg4Cc6ATSn6ND7rZNEsggWXhSWbz1cuLlnp9arssfU39Sj7BWUfT9O3+F6UEVmXwdqoVyeqtDnEvB80qnpHUuQbuRacUlI0SKc/QFmaipKeglnm58EY87/AsKp3U+Vvq/wtOlx1DeELJmVoZjh8O12mpwy0gi02ez5oBjUObcTWxDpOfVbSd0Ie7vLhtIebmeEUfY/J1DzhMJ34D59vG38fys4aQmaGBrnqTXskIsSrZsHyjs4hGuUQXfdwWq7S56g+9BpoXALbPRDRrPaYffb7yCMWhHIsIgw+0teA08VICqdzLCKorqLPQZFdSBULb+RQhEz/rAovtupyv207HuevrOQGcFRCH3AZLKzx65AArYeIvzfguPpSVwRY5g55ibHHvLUyfQIXncIAlxDirArQJN0Dm53qm5BzCuywvclPxrASQgaMbo6abIIxnj+faZczYxuvFU3EjPgHcJ4XoZQhZ7lSnABXQBsoURfdc2DSyj69ZqS30W0EZUTkDVozjN5rOb/7wV5QzpNb/xswxdM6q38DfgswAE2++A9M4NoIAAAAAElFTkSuQmCC") center no-repeat;
  background-size: 18px;
}

.sites-zixun p:nth-child(2) {
  background-color: #2dbd9a;
}

.sites-zixun p:nth-child(2) i {
  width: 28px;
  height: inherit;
  background: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAdCAYAAADYSS5zAAADkklEQVR42syXXUgUURTHd1fXFpSstEyTND8iQyoTK7MwUIhICnoJfShNCgn7eqyHrKB6CnoIIoh6CIpIDanoISoqQtuKNCwqUEzKxOxDXfOjcvof+k9dxtlx9gPxwI+Zuefcc849986dO05N0xw2JAZkgRSQyqswD8wGs0C0Yj8MhkA/8IFP4IPCe/AOdIAxq8BOkwRjQQHIActIutg6wi8ykNfgKfCCu0x+XIKJYDvYDFYAl4mzb6CT1fgIukEv6AM/Walh2npYdTcHHA/msuISaz6Y6Sfpt+AyOA+6JMF0jkDtIOV/DF6CVtId5upJwtlkCWdtoaLvEZ0keBY3VVwvJ8AVVioQWQrywQIgU9IOmjjAQEQqWwoOgemgRhJ8hZvFYAe4aNF5v+G5iU5kgGl++rSB3Rz8KoPutEWsCnABNEqCsm6msQJNfjrIWhrlfQtIBmf4XKPYtSgV1eUor9V8g3VdFNeumaxkLl9cTE7v4E+WGyrpNegHwXrlrS9mmypewywUWcTz8Bqnvq0RJttNGagDD9gme9smsIFrTZdOvlippM2wjjX2KQEDbGug7zLGUiXxf09N69X+yikQDyrBDTCijZcBWRLgOIgGR7SJRWxiwEn67DexGWFMiT0H3GR7ryR4wML5GPCCF3y+BzJl7yQeMGMCPIr9IvCIvrxkzCL+Qb3jYfCLjTLCWlAO8kAD8IFdwKkECxbxsRcMMU4OY9Uq1f3NijvVjslgDXDzeRs7NIK0MCRmRKrZDL6CrWxzM4cU3c6sYxy4pqxLt41gsm6qwTlSzbaJ+nloL3IJxBptjB1yQSfLX2qzEpVcAkbxUWfHx04wCtpBtr8ES8AP0AcKbDouVxIaBLfJoNJebtNXMePLwIqMCa7lCGQLWW3ToUzHdyYh6zRB0SWwTaNNrE2fhcxDyFcTbFX2LLuLvELZw5JM9EnKXloRgN9j7CM5/Tv3JfPaEcDJI4vXJ3JuM9F3Uafa2pF2NSdXCOc5/VMXaWETabANWEJJUD/r5YEME30GdY4gzoVhSVA+9p9ZpesgU9Flsi2SNg3BBokMIUEfT+J1PLa/Ac+py1UGX0XbSa+gSD3Ywv8HF6c0j/c91NWHEsBYwYggfMhU3gEbeVgVaQa3gqyc0yrB9BCm+yoJVZKttoE9/NeVH6kRx+RKFAu0T81J/3G/D9Y5ppY8BIX65yUDPNOmjnj1k/sfAQYABQLiDiCFAuIAAAAASUVORK5CYII=") center no-repeat;
  background-size: 20px;
}

.actionsheet {
  position: fixed;
  top: 0;
  bottom: 0;
  z-index: 99999;
  min-width: 320px;
  max-width: 640px;
  width: 100%;
}

.backdrop {
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
}

.action-list {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  font-size: 15px;
}

.action-list .list {
  margin: 5px;
  border-radius: 5px;
  background-color: #fff;
}

.action-list .list .item {
  display: block;
  padding: 10px;
  text-align: center;
  border-bottom: 1px solid #eee;
}

.action-list .list .item:last-child {
  border-bottom: 0;
}

.action-list .dismiss {
  display: block;
  padding: 10px;
  margin: 5px;
  border-radius: 5px;
  text-align: center;
  background-color: #fff;
}

.action-in {
  -webkit-animation: actionIn .3s forwards;
  animation: actionIn .3s forwards;
}

.action-out {
  -webkit-animation: actionOut .3s forwards;
  animation: actionOut .3s forwards;
}

.action-in .action-list {
  -webkit-animation: actionListIn .3s forwards;
  animation: actionListIn .3s forwards;
}

.action-out .action-list {
  -webkit-animation: actionListOut .3s forwards;
  animation: actionListOut .3s forwards;
}

@-webkit-keyframes actionIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes actionIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@-webkit-keyframes actionOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}

@keyframes actionOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}

@-webkit-keyframes actionListIn {
  from {
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
  }
  to {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes actionListIn {
  from {
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
  }
  to {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@-webkit-keyframes actionListOut {
  from {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  to {
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
  }
}

@keyframes actionListOut {
  from {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  to {
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
  }
}

#mobile_minchat_div {
  height: 60px !important;
}

/* 表单 */
.login-body {
  background-color: #f5f5f5;
}

.login-wrap {
  padding: 32px 29px 0;
}

.login-wrap.hide {
  display: none;
}

.form-control {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 0 20px;
  margin-bottom: 22px;
  height: 44px;
  border: 1px solid #c4c8cc;
  border-radius: 44px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  position: relative;
}

.form-control input {
  width: 80%;
  height: inherit;
  font-size: 14px;
  color: #333;
  border: none;
  background-color: transparent;
}

.form-control .yzmcode {
  width: 65%;
}

.form-control .tel {
  color: #484e54;
  font-size: 14px;
}

.form-control .tel:after {
  content: '';
  width: 0;
  height: 0;
  display: inline-block;
  border: 4px solid transparent;
  border-left: 6px solid #666;
  margin-left: 4px;
}

.form-control .codetxt {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  padding-left: 8px;
  height: 25px;
  font-size: 14px;
  color: #396df9;
  line-height: 25px;
  border-left: 1px solid #c4c8cc;
  background: none;
}

.form-control .codetxt.disabled {
  color: #999;
}

.form-control img {
  display: block;
  width: 100%;
}

.form-control .pwd_icon {
  width: 21px;
  height: 13px;
  display: inline-block;
  background: url(../img/pwd-icon.png);
  background-size: 100%;
}

.form-control .pwd_icon.open {
  background: url(../img/pwdopen-icon.png);
  background-size: 100%;
}

input:-webkit-autofill {
  -webkit-box-shadow: 0 0 0px 1000px #f5f5f5 inset;
}

.loginRegister_tips {
  font-size: 12px;
  text-align: center;
  margin-top: 250px;
}

.setPwd_tipsBox {
  padding-left: 21px;
  line-height: 20px;
  font-size: 14px;
  margin-bottom: 20px;
  color: #aaa;
}

.form-error {
  border-color: #c6213c !important;
}

.form_errorTips {
  position: absolute;
  left: 22px;
  bottom: -18px;
  color: #c6213c;
  font-size: 12px;
}

.error {
  margin-top: -18px;
  height: 15px;
  line-height: 15px;
  text-align: center;
  font-size: 11px;
  color: #c6213c;
}

.error-tips {
  font-size: 10px;
}

.btn {
  margin-top: 12px;
  width: 100%;
  cursor: pointer;
}

.login-switch {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-top: 20px;
}

.login-switch a {
  font-size: 12px;
  color: #484e54;
  cursor: pointer;
}

.login-switch a:active {
  color: #396df9;
}

.login-switch a:nth-child(2) {
  color: #999;
}

.login-help {
  margin-top: 20px;
  color: #484e54;
}

.login-help a {
  margin-left: 5px;
  color: #79a3e2;
}

.login-help a:active {
  color: #396df9;
}

.dialog_box {
  width: 100%;
  height: 0;
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 4;
  overflow: hidden;
  display: block;
  height: 100%;
}

.dialog_wrapper {
  width: 100%;
  height: 100%;
  display: table-cell;
  vertical-align: middle;
  text-align: center;
}

.dialog_container {
  background: #fff;
  border-radius: 8px;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  margin: auto;
  bottom: 0;
  text-align: center;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 0;
  height: 226px;
  width: 280px;
}

.dialog_title {
  line-height: 100px;
  font-size: 16px;
}

.dialog_nocode_reason {
  padding-left: 35px;
  color: #999;
  line-height: 26px;
  text-align: left;
  margin-top: -30px;
  font-size: 14px;
}

.dialog_nocode_close {
  font-size: 15px;
  margin-top: 12px;
  line-height: 40px;
  border-top: 1px solid #e6e6e6;
  color: #4a97ff;
  cursor: pointer;
}

.dialog_nocode_close:active {
  color: #177aff;
}

.dialog_nocode_item {
  font-size: 14px;
}

/* 按钮*/
.btn {
  margin-top: 12px;
  width: 100%;
  cursor: pointer;
}

.btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin: auto;
  width: 84.5%;
  height: 44px;
  font-size: 14px;
  color: #fff;
  border: 1px solid;
  border-radius: 44px;
}

.btn-middle {
  width: 50%;
  height: 30px;
  font-size: 13px;
}

.btn-small {
  width: 74px;
  height: 26px;
  font-size: 12px;
}

.btn.outlined {
  color: #396df9;
  background: #fff;
  -webkit-transition: all .2s linear;
  transition: all .2s linear;
}

.btn.outlined:active {
  color: #fff;
  background: #396df9;
}

.btn.disabled {
  opacity: .6;
  -webkit-transition: all .2s linear;
  transition: all .2s linear;
}

.btn.disabled::after {
  content: '';
  width: 30px;
  height: 30px;
  background: url(../img/loading.svg) no-repeat;
  background-size: 100%;
}

.btn-red {
  background: -webkit-gradient(linear, left top, right top, from(#ef585e), to(#c7223d));
  background: linear-gradient(to right, #ef585e, #c7223d);
  border-color: #e2797f;
}

.btn-red:active {
  background: #c80e2d;
}

.btn-blue {
  background: -webkit-gradient(linear, left top, right top, from(#3993f9), to(#396df9));
  background: linear-gradient(to right, #3993f9, #396df9);
  border-color: #79a3e2;
}

.btn-blue:active {
  background: #1c55ee;
}

.btn-yellow {
  background: -webkit-gradient(linear, left top, right top, from(#fa860b), to(#fd5907));
  background: linear-gradient(to right, #fa860b, #fd5907);
  border-color: #e2a379;
}

.btn-yellow:active {
  background: #e6530a;
}

.btn-purple {
  background: -webkit-gradient(linear, left top, right top, from(#8c7efc), to(#5b39fc));
  background: linear-gradient(to right, #8c7efc, #5b39fc);
  border-color: #8a81e4;
}

.btn-purple:active {
  background: #4a28ea;
}



.fix-bottom{
    height: 60px;
    width: 30%;
    position: fixed;
    bottom: 0;
    z-index: 1000000;
    right: 0;
}
.fix-bottom>li{
    position: relative;
    width: 100%;
    height: 60px;
}
.fix-bottom li span{
	background: url("../img/zixun.png") no-repeat;
	background-size: 28px 28px;
	width: 28px;
	height: 28px;
	position: absolute;
	left: 0.23rem;
	top: 50%;
        margin-top: -14px;
}
.fix-bottom li div{
  width: 1rem;
  height: 0.1rem;
  position: absolute;
  top: 0.5rem;
  left: 50%;
  transform: translate(-50%,0);
  border-top: 1px solid #CCCCCC;
  border-bottom: 1px solid #CCCCCC;
}
.fix-bottom .consult{
	background: #1798FC;
	color: #fff;
	padding:0 4px 0 8px;
	position: relative;
        width: 30%;
	height: 40px;
        font-size: 15px;
	line-height: 40px;;
        text-align: center;
}
.fix-bottom .consult a{
  color: #FFF;
}
.fix-bottom .consult div{
	width: 0.9rem;
	height: 0.9rem;
	border-radius: 50%;
	background: #FF311A;
	position: absolute;
	text-align: center;
	line-height: 0.9rem;
	top:0.04rem;
	left: 2rem;
	font-size: 0.6rem;
	display: none;
        border: 0;
}
.fix-bottom ul{
  width: 120%;
  display: none;
  position: absolute;
  bottom: 66px;;
  right: 6px;
  background: #fff;
  border: 1px solid #E8E8ED;
}
.fix-bottom ul li{
  width: 92%;
  margin: 0 auto;
  font-size: 13px;
  line-height: 40px;
  border-left: 0;
    text-align: center;
}
.fix-bottom .toggle{
  display: block;
}
.fix-bottom .toggle:after{
  content: "";
  width: 0;
  height: 0;
  border-right: 5px solid transparent;
  border-left: 5px solid transparent;
  border-bottom: 0 solid white;
  border-top: 5px solid #fff;
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translate(-50%,0);
}
.fix-bottom .toggle .ud_line{
	box-shadow: inset 0 -1px 0 0 #E8E8ED;
}
.fix-bottom a{
	color: #333333;
	text-decoration: none;
}
.fix-bottom .Color{
	color: #1798FC;
}

.zhe{
  width:100%;
  height: 100%;
  position: fixed;
  left: 0;
  top: 0;
  display:none;
}

/*# sourceMappingURL=map/common.css.map */
