@import "//at.alicdn.com/t/font_1431130_wrpldnt146h.css";

body {
  font-family: PingFang SC, Microsoft YaHei, WenQuanYi Micro Hei, sans-serif;
}

/* alert */
.alert {
  z-index: 9999;
  min-width: 380px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border-radius: 4px;
  border-width: 1px;
  border-style: solid;
  border-color: #ebeef5;
  position: fixed;
  left: 50%;
  top: 20px;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  background-color: #edf2fc;
  -webkit-transition: opacity 0.3s, top 0.4s, -webkit-transform 0.4s;
  transition: opacity 0.3s, top 0.4s, -webkit-transform 0.4s;
  transition: opacity 0.3s, transform 0.4s, top 0.4s;
  transition: opacity 0.3s, transform 0.4s, top 0.4s, -webkit-transform 0.4s;
  overflow: hidden;
  padding: 15px 15px 15px 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  opacity: 0;
  -webkit-transform: translate(-50%, -100%);
  transform: translate(-50%, -100%);
}
.alert--info {
  color: #909399;
}
.alert--success {
  background-color: #f0f9eb;
  border-color: #e1f3d8;
  color: #67c23a;
}
.alert--warning {
  background-color: #fdf6ec;
  border-color: #faecd8;
  color: #e6a23c;
}
.alert--error {
  background-color: #fef0f0;
  border-color: #fde2e2;
  color: #f56c6c;
}
.alert--active {
  transform: translate(-50%, 0);
  opacity: 1;
}

.login-panel .login-form {
  display: none;
  position: relative;
  margin: 0 50px;
  margin-top: 35px;
}

.login-panel .login-form.login-form--is-show {
  display: block;
}

/* login-form */
.login-form .area-code {
  cursor: pointer;
}

.login-form .area-code::after {
  transition: transform 0.5s;
}

.login-form .area-code.area-code--active::after {
  transform: rotate(180deg);
}

.login-form .area-code-option {
  z-index: 10;
  overflow-x: hidden;
  overflow-y: scroll;
  display: none;
  box-sizing: border-box;
  height: 274px;
  position: absolute;
  border-radius: 4px;
  box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.06);
  background-color: #fff;
  border: 1px solid #dfe2e8;
}

.login-form .get-verify-code-btn {
  cursor: pointer;
}

.login-form .get-verify-code-btn.get-verify-code-btn__disabled {
  cursor: not-allowed;
  color: #dddddd;
}

.login-form .login-btn {
  cursor: pointer;
}

.login-form .input-wrap {
  position: relative;
}
.login-form .input-wrap .input-wrap-icon {
  width: 20px;
  height: 20px;
  padding-right: 12px;
  box-sizing: content-box;
}
.login-form .input-wrap .input-wrap-icon img {
  width: 100%;
  height: 100%;
}

.login-form input::placeholder {
  color: #dddddd;
}

.login-form .input-wrap .error-msg {
  display: none;
  position: absolute;
  top: 50px;
  left: 0;
  font-size: 12px;
  color: #f5222d;
}

.login-form .input-wrap.input-wrap--is-error {
  border-color: #f5222d;
}

.login-form .input-wrap.input-wrap--is-error .error-msg {
  display: block;
}

/* login-form--phone */
.login-form--phone {
}

.login-form--phone .area-code-option.area-code-option--is-show {
  display: block;
}

.login-form--phone .area-code-option__title,
.login-form--phone .area-code-option__item {
  font-size: 12px;
  padding: 0 19px;
  height: 34px;
  line-height: 34px;
  display: flex;
  justify-content: space-between;
}

.login-form--phone .area-code-option__title {
  color: #999999;
}

.login-form--phone .area-code-option__item {
  color: #333333;
  cursor: pointer;
}

.login-form--phone .area-code-option__item:hover {
  background-color: #f8f8fa;
}

.login-form--phone .area-code-option__code {
  float: right;
}

/* login-form--pwd */
.login-form--pwd {
  margin-top: 0 !important;
  margin-bottom: 40px;
}
.login-form--pwd .toggle-password-visible {
  cursor: pointer;
  font-size: 18px;
  color: #999999;
}

.login-form--pwd .forget-pwd {
  position: absolute;
  color: #6aa2e4;
  right: 0;
  top: 68px;
  text-decoration: none;
  cursor: pointer;
}
.login-form--pwd .hr_tip {
  display: flex;
  align-items: center;
  color: #999999;
  font-size: 14px;
  height: 35px;
}
.login-form--pwd .hidden {
  visibility: hidden;
}
.login-form--pwd .hr_tip .warn_tip {
  width: 13px;
  height: 13px;
  padding-right: 4px;
  font-size: 12px;
}
.login-form--pwd .hr_tip .warn_tip img {
  width: 100%;
  display: block;
}

/* verify-code-panel */
.verify-code-panel {
  display: none;
  box-sizing: border-box;
  position: absolute;
  width: 340px;
  padding: 10px;
  z-index: 999;
  background-color: #fff;
  box-shadow: 0 0 10px #cccccc;
}

.verify-code-panel.verify-code-panel--is-show {
  display: block;
}

.verify-code-panel .verify-code-panel__header {
  display: flex;
  align-items: center;
  font-size: 16px;
  color: #333333;
}

.verify-code-panel .verify-code-panel__header b {
  color: #1c75e4;
}

.verify-code-panel .verify-code-panel__tips {
  width: 126px;
}

.verify-code-panel .verify-code-panel__body {
  position: relative;
  margin: 10px 0;
}

.verify-code-panel .verify-code-panel__img {
  width: 100%;
}

.verify-code-panel .verify-code-panel__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.verify-code-panel .verify-code-panel__operation {
  display: inline-block;
  width: 20px;
  height: 20px;
  cursor: pointer;
  background: url(./sprite.1.4.6.png) no-repeat;
}

.verify-code-panel .verify-code-panel__operation--close {
  background-position: 0 0;
}

.verify-code-panel .verify-code-panel__operation--refresh {
  background-position: 0 67.01031%;
  margin-left: 10px;
}

.verify-code-panel .verify-code-panel__confirm {
  display: inline-block;
  width: 80px;
  height: 35px;
  line-height: 35px;
  background-color: #539ffe;
  color: #fff;
  text-align: center;
  font-size: 14px;
  border-radius: 3px;
  cursor: pointer;
}

.verify-code-panel .verify-code-panel__point {
  display: inline-block;
  position: absolute;
  border: 2px solid #fff;
  background-color: #1c75e4;
  border-radius: 50%;
  color: #fff;
  text-align: center;
  font-weight: bold;
  font-size: 14px;
  cursor: pointer;
}

.verify-code-panel .verify-code-panel__error {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  line-height: 30px;
  background-color: #ff8a60;
  color: #fff;
  font-size: 14px;
  text-align: center;
  display: none;
  z-index: 10;
}

.verify-code-panel .verify-code-panel__error.verify-code-panel__error--is-show {
  display: block;
}

/* login-panel */
.login-panel {
  width: 460px;
  height: 500px;
  background: #fff;
  box-sizing: content-box;
}

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

.login-panel .login-type-tab {
  width: 56px;
  padding: 8px;
  cursor: pointer;
}
.login-panel .login-qipao-tab {
  height: 28px;
  vertical-align: top;
  padding-top: 13px;
  cursor: pointer;
}

.login-panel .login-panel__content {
  box-sizing: border-box;
  width: 100%;
  /* padding: 60px 75px 0; */
  text-align: center;
}
.qrcode .qrcode-title {
  margin: 0 auto;
  color: #333;
  font-size: 24px;
  margin-bottom: 36px;
}
.qrcode .qrcode-content {
  width: 198px;
  height: 198px;
  margin: 0 auto;
  position: relative;
}
.qrcode .qrcode-content .qrcode-box {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #eaeaea;
  border-radius: 4px;
}
.qrcode .qrcode-content .qrcode-box.noBorder {
  border: 0;
}
.qrcode .qrcode-content #qrcode {
  width: 100%;
  height: 100%;
}
.qrcode .qrcode-content #qrcode.loading {
  width: 48px;
  height: 48px;
}
.qrcode .qrcode-content #qrcode.opacity {
  opacity: 0.1;
}
.qrcode .qrcode-content .resetCode {
  width: 100%;
  position: absolute;
  bottom: 60px;
  margin: 0 auto;
  font-size: 14px;
  text-align: center;
}
.qrcode .qrcode-content .qrcode-text {
  position: absolute;
  width: 100%;
  top: 91px;
  line-height: 17px;
  text-align: center;
  color: #333;
}
.qrcode .qrcode-content .resetCode .tip {
  line-height: 20px;
  color: #333;
  margin-bottom: 20px;
}
.qrcode .qrcode-content .resetCode .btn {
  width: 110px;
  height: 36px;
  line-height: 36px;
  background: #6aa2e4;
  margin: 0 auto;
  color: #fff;
  border-radius: 4px;
  cursor: pointer;
}
.login-panel .form-title__type {
  color: #999999;
  font-size: 18px;
  line-height: 25px;
  font-weight: 500;
  display: inline-block;
  cursor: pointer;
}
.login-panel .form-title__type:first-of-type {
  margin-right: 108px;
}
.login-panel .form-title__type.active {
  color: #333333;
  padding-bottom: 14px;
  border-bottom: 3px solid #6aa2e4;
}

.login-panel .form-title__change-type-wrap {
  color: #6aa2e4;
  font-size: 13px;
  float: right;
  cursor: pointer;
}

.login-panel .form-title__change-type-wrap .iconfont {
  font-size: 14px;
  margin-top: 3px;
  vertical-align: middle;
}

.login-panel .input-wrap {
  display: flex;
  height: 48px;
  box-sizing: border-box;
  border: 1px solid #dfe2e8;
  border-radius: 4px;
  padding: 0 15px;
  align-items: center;
  font-size: 14px;
}

.login-panel .input-wrap input {
  flex: 1 1;
  border: 0;
  outline: 0;
  padding: 0;
  border: none !important;
}

.login-panel .input-wrap--phone-number .area-code {
  display: inline-flex;
  align-items: center;
  color: #666;
}

.login-panel .input-wrap--phone-number .area-code::after {
  content: "";
  border-top: 5px solid #666666;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  margin-left: 13px;
}

.login-panel .input-wrap--phone-number .area-code-option {
  width: 350px;
  left: -1px;
  top: 50px;
}

.login-panel .input-wrap--phone-number input {
  margin-left: 20px;
}

.login-panel .input-wrap + .input-wrap {
  margin-top: 20px;
}

.login-panel .input-wrap--verify-code .get-verify-code-btn {
  color: #6aa2e4;
  cursor: pointer;
}

.login-panel .login-form .login-btn {
  width: 100%;
  height: 48px;
  margin-top: 50px;
  border: 0;
  background-color: #6aa2e4;
  font-size: 16px;
  color: #ffffff;
  border-radius: 4px;
}

.login-panel .form-footer {
  position: relative;
}
.login-panel .line {
  margin: 45px 50px 0 50px;
  width: auto;
  height: 1px;
  background: #eaeaea;
}
.login-panel .blank-height .line {
  margin-top: 80px;
}
.login-panel .form-footer .agreement {
  display: none;
  margin-top: 50px;
  width: 100%;
  height: 15px;
  font-size: 14px;
  color: #999999;
  text-align: center;
}
.login-panel .login-panel__content.other .form-footer .agreement {
  margin-top: 20px;
}

.login-panel .form-footer .agreement.agreement--is-show {
  display: block;
}

.login-panel .form-footer .agreement__link {
  color: #6aa2e4;
  text-decoration: none;
}

.login-panel .form-footer .outer-auth {
  padding-top: 12px;
  text-align: left;
  line-height: 25px;
}
.login-panel .form-footer .outer-auth .auth-text {
  margin-left: 50px;
  padding-right: 8px;
  font-size: 15px;
  color: #999999;
  vertical-align: middle;
}

.login-panel .form-footer .outer-auth__item.icon1 {
  background: url("https://sxsimg.xiaoyuanzhao.com/static_common/common-comp/login/popup/icon_login_weibo_normal.png")
    no-repeat center left;
  background-position: 0;
  background-size: 30px;
  cursor: pointer;
}
.login-panel .form-footer .outer-auth__item.icon1:hover {
  background: url("https://sxsimg.xiaoyuanzhao.com/static_common/common-comp/login/popup/icon_login_weibo_hover.png")
    no-repeat center left;
  background-position: 0;
  background-size: 30px;
}

.login-panel .form-footer .outer-auth__item.icon2 {
  background: url("https://sxsimg.xiaoyuanzhao.com/static_common/common-comp/login/popup/icon_login_qq_normal.png")
    no-repeat center left;
  background-position: 0;
  background-size: 30px;
  cursor: pointer;
}
.login-panel .form-footer .outer-auth__item.icon2:hover {
  background: url("https://sxsimg.xiaoyuanzhao.com/static_common/common-comp/login/popup/icon_login_qq_hover.png")
    no-repeat center left;
  background-position: 0;
  background-size: 30px;
}
.login-panel .form-footer .icon3 {
  float: right;
  margin-right: 50px;
  color: #6aa2e4;
  cursor: pointer;
}
.login-panel .form-footer .icon3 img {
  width: 10px;
}

.login-panel .form-footer .outer-auth__item {
  text-decoration: none;
  color: #999999;
  display: inline-block;
  width: 25px;
  height: 25px;
}

.login-panel .form-footer .outer-auth__item + .outer-auth__item {
  margin-left: 16px;
}

/* login-dialog */
.login-dialog-wrap {
  display: none;
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: 2000;
}

.login-dialog-wrap.login-dialog-wrap--is-show {
  display: block;
}

.login-dialog {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.login-dialog__close {
  position: absolute;
  right: 25px;
  top: 25px;
  font-size: 15px;
  cursor: pointer;
}

/* footer-login */
.footer-login {
  position: fixed;
  display: none;
  bottom: 0;
  width: 100%;
  height: 102px;
  background-color: #4c83f5;
  z-index: 9999;
}

.footer-login--is-show {
  display: block;
}

.footer-login .footer-login__content {
  display: flex;
  width: 100%;
  height: 100%;
  max-width: 1080px;
  margin: 0 auto;
  position: relative;
}

.footer-login .footer-login__img {
  display: inline-block;
  align-self: flex-end;
  width: 453px;
  height: 126px;
  background: url(./footer-login__img.png) center/contain no-repeat;
}

.footer-login .footer-login__right {
  margin-top: -10px;
  display: flex;
  margin-left: 140px;
}

.footer-login .footer-login__right .qrcode-wrap {
  width: 102px;
  height: 102px;
  margin-right: 10px;
  position: relative;
  background: #fff;
  border-radius: 2px;
  border: 1px solid #6292f7;
}
.footer-login .footer-login__right .qrcode-wrap .qrcode-box {
  width: 90px;
  height: 90px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #eaeaea;
  border-radius: 2px;
  margin: 6px;
}
.footer-login .footer-login__right .qrcode-wrap .qrcode-box.noBorder {
  border: 0;
}
.footer-login .footer-login__right .qrcode-wrap .qrcode-box .qrcode {
  width: 100px;
  height: 100px;
}
.footer-login .footer-login__right .qrcode-wrap .qrcode-box .qrcode.loading {
  width: 24px;
  height: 24px;
}
.footer-login .footer-login__right .qrcode-wrap .qrcode.opacity {
  opacity: 0.1;
}
.footer-login .footer-login__right .qrcode-wrap .resetCode {
  width: 102px;
  position: absolute;
  top: 22px;
  margin: 0 auto;
  font-size: 14px;
  text-align: center;
}
.footer-login .footer-login__right .qrcode-wrap .qrcode-text {
  position: absolute;
  width: 102px;
  line-height: 17px;
  font-size: 14px;
  text-align: center;
  color: #333;
}
.footer-login .footer-login__right .qrcode-wrap .qrcode-text.fq1 {
  top: 33px;
}
.footer-login .footer-login__right .qrcode-wrap .qrcode-text.fq2 {
  top: 50px;
}
.footer-login .footer-login__right .qrcode-wrap .hide {
  display: none;
}
.footer-login .footer-login__right .qrcode-wrap .resetCode .tip {
  width: 106px;
  line-height: 17px;
  color: #333;
  font-size: 12px;
  margin: 0 auto;
  margin-bottom: 7px;
  text-align: center;
}
.footer-login .footer-login__right .qrcode-wrap .resetCode .btn {
  width: 78px;
  height: 26px;
  line-height: 26px;
  font-size: 12px;
  background: #6aa2e4;
  margin: 0 auto;
  color: #fff;
  border-radius: 4px;
  cursor: pointer;
}

.footer-login .footer-login__right .other-wrap {
  width: 162px;
}
.footer-login .footer-login__right .other-wrap .icon {
  margin-bottom: 18px;
  height: 30px;
}
.footer-login .footer-login__right .other-wrap .icon img {
  width: 108px;
}
.footer-login .footer-login__right .other-wrap .title {
  font-size: 12px;
  line-height: 17px;
  text-align: left;
  color: #666666;
  margin-bottom: 7px;
}
.footer-login .footer-login__right .other-wrap .content {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.footer-login .footer-login__right .other-wrap .content .text {
  margin-left: 19px;
}
.footer-login .footer-login__right .other-wrap .item {
  display: block;
  margin-bottom: 7px;
  width: 80px;
  height: 20px;
  font-size: 12px;
  line-height: 20px;
  text-align: left;
  cursor: pointer;
  color: #fff;
}
.footer-login .footer-login__right .other-wrap .a1 {
  /* background: url("https://sxsimg.xiaoyuanzhao.com/static_common/common-comp/login/bottom/icon_login_dx.png") no-repeat center left; */
  background: url("https://dev-static-sxs.oss-cn-hangzhou.aliyuncs.com/static_common/common-comp/login/bottom/icon_login_dx.png")
    no-repeat center left;
}

.footer-login .footer-login__right .other-wrap .a2 {
  background: url("https://dev-static-sxs.oss-cn-hangzhou.aliyuncs.com/static_common/common-comp/login/bottom/icon_login_mm.png")
    no-repeat center left;
}

.footer-login .footer-login__right .other-wrap .a3 {
  background: url("https://dev-static-sxs.oss-cn-hangzhou.aliyuncs.com/static_common/common-comp/login/bottom/icon_login_weibo.png")
    no-repeat center left;
}

.footer-login .footer-login__right .other-wrap .a4 {
  background: url("https://dev-static-sxs.oss-cn-hangzhou.aliyuncs.com/static_common/common-comp/login/bottom/icon_login_qq.png")
    no-repeat center left;
}

.footer-login .footer-login__right .other-wrap .item {
  background-position: -2px 0;
  background-size: 20px 20px;
}

.footer-login .input-wrap--verify-code {
  margin-left: 10px;
}

.footer-login .login-btn {
  width: 100px;
  height: 36px;
  line-height: 34px;
  margin-left: 10px;
  color: #fff;
  font-size: 14px;
  border: 1px solid #dfe2e8;
  border-radius: 4px;
  text-align: center;
  background-color: #4c83f5;
}

.footer-login .area-code {
  display: inline-flex;
  align-items: center;
  color: #999999;
}

.footer-login .area-code::after {
  content: "";
  flex: 0 0;
  height: 0;
  margin-left: 13px;
  border-top: 5px solid #999999;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
}

.footer-login .area-code-option {
  box-sizing: border-box;
  width: 220px;
  height: 274px;
  left: -1px;
  bottom: 36px;
}

.footer-login .get-verify-code-btn {
  white-space: nowrap;
  text-align: right;
  color: #6aa2e4;
  cursor: pointer;
}

.footer-login .verify-code-panel {
  bottom: 40px;
  left: 0;
}

.footer-login .footer-login__close {
  position: absolute;
  cursor: pointer;
  right: 0;
  top: 14px;
  width: 21px;
  height: 21px;
}

.footer-login .login-form .error-msg {
  top: 37px;
}

input:-webkit-autofill {
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0),
    inset 0 0 0 100px rgba(255, 255, 255, 1);
}
/* 消息 */
.float-window {
  width: 60px;
  position: fixed;
  right: 20px;
  bottom: 64px;
  margin: 0 auto;
  z-index: 1999;
}
.msg-container {
  display: none;
  width: 440px;
  height: 560px;
  position: fixed;
  right: 92px;
  bottom: 64px;
  margin: 0 auto;
  z-index: 1999;
  background: #fff;
  box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.1);
  border-radius: 4px;
}
.msg-container::after {
  display: block;
  content: "";
  clear: both;
}
.msg-container .app-model {
  transition: 0.3s all;
  opacity: 0;
  z-index: -1;
  position: absolute;
  width: 184px;
  height: 184px;
  background: #ffffff;
  box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.1);
  border-radius: 4px;
  box-sizing: border-box;
  padding: 12px;
  bottom: 0;
}
.msg-container .app-model img {
  width: 100%;
  height: 100%;
}
.msg-container .com-hover-model {
  display: none;
  top: 0;
  position: absolute;
  border-radius: 8px;
  background: #323336;
  padding: 8px 12px;
  box-sizing: border-box;
  font-size: 12px;
  font-family: PingFangSC-Regular, PingFang SC, sans-serif;
  font-weight: 400;
  color: #ffffff;
  line-height: 17px;
  z-index: 99;
}
.msg-container .com-hover-model::after {
  content: "";
  display: "block";
  width: 11px;
  height: 5px;
  background: url("https://sxsimg.shixiseng.com/adminstatic_new/operation//7aee98dd4f4f4e2fb83c88ae73991202.png")
    no-repeat;
  background-size: 100% 100%;
  position: absolute;
  left: 50%;
  bottom: -5px;
  margin-left: -6px;
}
.msg-sidebar {
  width: 80px;
  height: 100%;
  overflow-y: auto;
  float: left;
  background: #f1f1f1;
  border-radius: 4px 0px 0px 4px;
}
.msg-sidebar::-webkit-scrollbar {
  width: 0;
  height: 8px;
}
.msg-sidebar::-webkit-scrollbar-thumb {
  background-color: #999; /* 滑块颜色 */
  border-radius: 5px; /* 圆角半径 */
}
.msg-sidebar::-webkit-scrollbar-track {
  background-color: #eee; /* 背景颜色 */
}
.side-item {
  cursor: pointer;
  position: relative;
  margin: 8px;
  width: 64px;
  border-radius: 4px;
  box-sizing: border-box;
  padding: 8px 4px;
  text-align: center;
}
.side-item.no-com::after {
  display: none;
}
.side-item.no-com {
  padding: 12px 4px !important;
}
.side-item.no-com .com-name {
  display: none !important;
}
.side-item:hover {
  background: #ddd;
}
.side-item .dot {
  display: flex;
  align-items: center;
  position: absolute;
  padding: 0 5px;
  box-sizing: border-box;
  min-width: 18px;
  height: 18px;
  background: #ee374e;
  border-radius: 17px;
  border: 1px solid #ffffff;
  top: 4px;
  right: 8px;
}
.side-item .dot span {
  font-size: 12px;
  font-family: PingFangSC-Regular, PingFang SC, sans-serif;
  font-weight: 400;
  color: #ffffff;
}
.side-item .dot-img {
  position: absolute;
  top: 4px;
  right: 8px;
  min-width: 23px;
  height: 18px;
  background: url("https://sxsimg.shixiseng.com/adminstatic_new/operation//841149077b9941c9959d661126dbcc5b.png");
  background-size: 100% 100%;
}
.side-item img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
}
.side-item p {
  width: 56px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  -o-text-overflow: ellipsis;
  margin: 0 auto;
  margin-top: 4px;
  font-size: 12px;
  font-family: PingFangSC-Regular, PingFang SC, sans-serif;
  font-weight: 400;
  color: #666;
  line-height: 17px;
}
.side-item.active {
  background: #a5c8f1;
}
.side-item.active::after {
  content: "";
  display: "block";
  width: 6px;
  height: 15px;
  background: url("https://sxsimg.shixiseng.com/adminstatic_new/operation//125d32569c0943c2beb9b6c265c0e057.png")
    no-repeat;
  background-size: 100% 100%;
  position: absolute;
  right: -6px;
  top: 31px;
}
.side-item.active .p {
  color: #333;
}

.msg-content {
  width: 360px;
  height: 100%;
  position: relative;
  overflow-y: auto;
}

.mc-header {
  position: relative;
  width: 100%;
  box-sizing: border-box;
  padding: 9px 0;
  border-radius: 0px 4px 0px 0px;
  border-bottom: 1px solid #eee;
}
.mc-header .close-msg-model {
  cursor: pointer;
  position: absolute;
  right: 16px;
  bottom: 12px;
  display: block;
  width: 16px;
  height: 16px;
  background: url("https://sxsimg.shixiseng.com/adminstatic_new/operation//671cdfd57a0244ed8acc421a917720e2.png")
    no-repeat;
  background-size: 100% 100%;
}
.mc-header p {
  font-size: 16px;
  font-family: PingFangSC-Semibold, PingFang SC, sans-serif;
  font-weight: 600;
  color: #333333;
  text-align: center;
  margin: 0;
  line-height: 22px;
}

.msg-content {
  float: right;
}
.mc-cont {
  box-sizing: border-box;
  height: 480px;
  overflow-y: auto;
  padding: 0 16px 12px 16px;
}
.mc-cont::-webkit-scrollbar {
  width: 0;
  height: 8px;
}
.mc-cont .msg-item .time {
  margin: 0;
  font-size: 12px;
  font-family: PingFangSC-Regular, PingFang SC, sans-serif;
  font-weight: 400;
  color: #929292;
  line-height: 17px;
  text-align: center;
  margin-top: 16px;
}
.sidebar-global-company-box {
  cursor: pointer;
  width: 328px;
  height: 73px;
  background: #ffffff;
  border-radius: 4px;
  border: 1px solid #eeeeee;
  box-sizing: border-box;
  padding: 16px;
  margin: 12px auto 0 auto;
  position: relative;
  z-index: 2;
}

.sidebar-global-company-box::after {
  z-index: -1;
  display: none;
  content: "";
  background: url("https://sxsimg.shixiseng.com/adminstatic_new/operation//f5b6941e3aa84c10b20b456aeff6e771.png")
    no-repeat;
  background-size: 100% 100%;
  width: 68px;
  height: 52px;
  position: absolute;
  right: 0;
  bottom: 0;
}

.sidebar-global-company-head h3 {
  width: 196px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  -o-text-overflow: ellipsis;
  float: left;
  margin: 0;
  font-size: 14px;
  font-family: PingFangSC-Semibold, PingFang SC, sans-serif;
  font-weight: 600;
  color: #333333;
  line-height: 20px;
}
.sidebar-global-company-head p {
  margin: 0;
  float: right;
  font-size: 14px;
  font-family: PingFangSC-Semibold, PingFang SC, sans-serif;
  font-weight: 600;
  color: #fd8150;
  line-height: 20px;
}

.sidebar-global-company-address .icon {
  display: inline-block;
  width: 14px;
  height: 14px;
  background: url("https://sxsimg.shixiseng.com/adminstatic_new/operation//2177ebf54cc141b985465b9fa690c280.png")
    no-repeat;
  background-size: 100% 100%;
  vertical-align: middle;
}
.sidebar-global-company-address p {
  margin: 0;
  display: inline-block;
  font-size: 12px;
  font-family: PingFangSC-Regular, PingFang SC, sans-serif;
  font-weight: 400;
  color: #666666;
  line-height: 17px;
}
.sidebar-global-company-box.disable h3 {
  color: #999;
}
.sidebar-global-company-box.disable p {
  color: #999;
}
.sidebar-global-company-box.disable .icon {
  background: url("https://sxsimg.shixiseng.com/adminstatic_new/operation//39fda49af05142889a327655560b37d1.png")
    no-repeat;
  background-size: 100% 100%;
}
.sidebar-global-company-box.disable::after {
  display: block;
}
.sidebar-global-system-msg {
  text-align: center;
  margin-top: 12px;
}

.sidebar-global-system-msg p {
  display: inline-block;
  box-sizing: border-box;
  font-size: 13px;
  font-family: PingFangSC-Regular, PingFang SC, sans-serif;
  font-weight: 400;
  color: #666666;
  line-height: 18px;
  margin: 0;
  background: #f8f8fa;
  border-radius: 4px;
  padding: 5px 8px;
}
.sidebar-global-content-msg {
  margin-top: 12px;
}
.sidebar-global-content-msg .face {
  width: 36px;
  height: 36px;
  border: 1px solid #f5f5f5;
  display: inline-block;
  vertical-align: top;
  border: 1px solid #f5f5f5;
  border-radius: 50%;
}
.sidebar-global-content-msg .msg {
  border-radius: 4px;
  word-break: break-all;
  max-width: 242px;
  position: relative;
  display: inline-block;
  vertical-align: middle;
  box-sizing: border-box;
  padding: 8px 16px;
  background: #f8f8fa;
  font-size: 14px;
  font-family: PingFangSC-Regular, PingFang SC, sans-serif;
  font-weight: 400;
  color: #333333;
  line-height: 20px;
  margin-left: 4px;
}
.sidebar-global-content-msg .msg::after {
  content: "";
  display: "block";
  width: 6px;
  height: 14px;
  background: url("https://sxsimg.shixiseng.com/adminstatic_new/operation//9d765a0a1c654940be207508d5c1af99.png")
    no-repeat;
  background-size: 100% 100%;
  position: absolute;
  left: -6px;
  top: 0;
}
.user-content-msg {
  margin-top: 12px;
  text-align: right;
}
.user-content-msg .face {
  width: 36px;
  height: 36px;
  border: 1px solid #f5f5f5;
  display: inline-block;
  vertical-align: top;
  border: 1px solid #f5f5f5;
  border-radius: 50%;
}
.user-content-msg .msg {
  text-align: left;
  border-radius: 4px;
  word-break: break-all;
  max-width: 242px;
  position: relative;
  display: inline-block;
  vertical-align: middle;
  box-sizing: border-box;
  padding: 8px 16px;
  background: #d7e4ff;
  font-size: 14px;
  font-family: PingFangSC-Regular, PingFang SC, sans-serif;
  font-weight: 400;
  color: #333333;
  line-height: 20px;
  margin-right: 4px;
}
.user-content-msg .msg::after {
  content: "";
  display: "block";
  width: 6px;
  height: 14px;
  background: url("https://sxsimg.shixiseng.com/adminstatic_new/operation//aa87e1f174db49b2b11a90b349be13fe.png")
    no-repeat;
  background-size: 100% 100%;
  position: absolute;
  right: -6px;
  top: 0;
}
.invitation-msg {
  width: 242px;
  display: inline-block;
  position: relative;
  background: #f8f8fa;
  vertical-align: middle;
  box-sizing: border-box;
  padding: 8px 16px;
  width: 242px;
  margin: 0 0 0 4px;
}

.invitation-msg::after {
  content: "";
  display: "block";
  width: 6px;
  height: 14px;
  background: url("https://sxsimg.shixiseng.com/adminstatic_new/operation//9d765a0a1c654940be207508d5c1af99.png")
    no-repeat;
  background-size: 100% 100%;
  position: absolute;
  left: -6px;
  top: 0;
}
.invitation-msg .head {
  margin: 0;
  padding-bottom: 7px;
  font-size: 14px;
  font-family: PingFangSC-Semibold, PingFang SC, sans-serif;
  font-weight: 600;
  color: #333333;
  line-height: 20px;
  border-bottom: 1px solid #e3e3e3;
}
.invitation-msg ul {
  list-style: none;
  margin: 8px 0 0 0;
  padding: 0;
}
.invitation-msg li {
  font-size: 13px;
  font-family: PingFangSC-Regular, PingFang SC, sans-serif;
  font-weight: 400;
  color: #333333;
  word-break: break-all;
  line-height: 18px;
}
.invitation-msg li a {
  text-decoration: none;
  color: #2684ff;
  cursor: pointer;
}

.fw-resume,
.fw-deliver,
.fw-customer-service,
.fw-back,
.fw-message {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border: 1px solid #eaeaea;
  border-top: 0;
  box-sizing: border-box;
  cursor: pointer;
}

.float-window .box-item:first-of-type {
  border-top: 1px solid #eaeaea;
}
.float-window .box-item img {
  width: 26px;
  height: 26px;
}
.float-window .box-item .text {
  width: 26px;
  height: 26px;
  line-height: 26px;
  font-size: 12px;
  color: #999;
  display: none;
}

.fw-resume .resume_text {
  display: none;
}

.fw-resume .default_img {
  display: none;
}

.fw-resume.default {
  background: #6aa2e4;
}
.fw-resume.default .text {
  color: #fff;
}
.fw-resume.default.resume_text {
  display: block;
}

.fw-resume.default .default_img {
  display: block;
}
.fw-resume.default .login {
  display: none;
}

.fw-resume .resume_text {
  font-size: 12px;
  color: #fff;
  text-align: center;
}
.message_img {
  position: relative;
}
.message_img .dot {
  position: absolute;
  display: flex;
  align-items: center;
  padding: 0 5px;
  box-sizing: border-box;
  min-width: 18px;
  height: 18px;
  background: #ee374e;
  border-radius: 17px;
  border: 1px solid #ffffff;
  top: -9px;
  right: -9px;
}
.message_img .dot span {
  font-size: 12px;
  font-family: PingFangSC-Regular, PingFang SC, sans-serif;
  font-weight: 400;
  color: #ffffff;
}
.message_img .dot-img {
  position: absolute;
  top: -9px;
  right: -9px;
  min-width: 23px;
  height: 18px;
  background: url("https://sxsimg.shixiseng.com/adminstatic_new/operation//841149077b9941c9959d661126dbcc5b.png");
  background-size: 100% 100%;
}
.message_img .active {
  display: none;
}
.msg-open .active {
  display: block;
}
.msg-open .base {
  display: none;
}

.fw-message:hover .message_img {
  display: none;
}
.msg-open:hover .message_img {
  display: block;
}
.fw-message:hover .text {
  display: block;
}
.msg-open:hover .text {
  display: none;
}
.fw-resume:hover .resume_img {
  display: none;
}
.fw-resume:hover .text {
  display: block;
}
.fw-deliver:hover .deliver_img {
  display: none;
}
.fw-deliver:hover .text {
  display: block;
}
.fw-customer-service:hover .customer-service_img {
  display: none;
}
.fw-customer-service:hover .text {
  display: block;
}
.fw-back:hover .back_img {
  display: none;
}
.fw-back:hover .text {
  display: block;
}

.fw-back {
  display: none;
}
.clear::after {
  display: block;
  clear: both;
  content: "";
}
.employ-content {
  position: relative;
  width: 264px;
  height: 64px;
  background: #ffffff;
  border-radius: 4px;
  border: 1px solid #eeeeee;
  margin: 53px auto 0 auto;
}
.employ-msg {
  width: 232px;
  margin: 12px auto;
  font-size: 13px;
  font-family: PingFangSC-Regular, PingFang SC, sans-serif;
  font-weight: 400;
  color: #333333;
  line-height: 40px;
  text-align: center;
  background: url("https://sxsimg.shixiseng.com/adminstatic_new/operation//f3f0837d3a7743b987e3a1037b779026.png")
    no-repeat;
  background-size: 100% 100%;
}
.employ-content::after {
  display: block;
  content: "";
  width: 64px;
  height: 64px;
  background: url("https://sxsimg.shixiseng.com/adminstatic_new/operation//9478c70c252b4343a7e183de881176a9.png")
    no-repeat;
  background-size: 100% 100%;
  position: absolute;
  left: 100px;
  top: -41px;
}
.foot {
  transition: 0.5s all;
  position: relative;
  line-height: 38px;
  background: #ffffff;
  border-radius: 0px 0px 4px 0px;
  text-align: center;
  font-size: 12px;
  font-family: PingFangSC-Regular, PingFang SC, sans-serif;
  font-weight: 400;
  color: #666666;
  border-top: 1px solid #eee;
}

.foot .icon {
  display: inline-block;
  width: 16px;
  height: 16px;
  background: url("https://sxsimg.shixiseng.com/adminstatic_new/operation//c7a05ad5daee4a7ebff689742e77047e.png")
    no-repeat;
  background-size: 100% 100%;
  margin-right: 4px;
  position: relative;
  top: 3px;
}
.no-msg-data {
  text-align: center;
  vertical-align: middle;
}
.no-msg-cont {
  margin: 152px auto auto auto;
}
.no-msg-cont img {
  width: 218px;
  height: 187px;
}
.no-msg-cont p {
  font-size: 14px;
  font-family: PingFangSC-Medium, PingFang SC, sans-serif;
  font-weight: 500;
  color: #333333;
  line-height: 20px;
  margin-top: 8px;
}

.no-msg-foot {
  position: absolute;
  bottom: 0;
  width: 100%;
  left: 0;
  line-height: 38px;
  background: #ffffff;
  border-radius: 0px 0px 4px 0px;
  text-align: center;
  font-size: 12px;
  font-family: PingFangSC-Regular, PingFang SC, sans-serif;
  font-weight: 400;
  color: #666666;
  border-top: 1px solid #eee;
}
.no-msg-foot:hover .app-model {
  opacity: 1;
  z-index: 2;
  top: -146px;
}
.no-msg-foot .app-model {
  transition: 0.3s opacity;
  opacity: 0;
  display: block;
  z-index: -1;
  position: absolute;
  width: 184px;
  height: 184px;
  background: #ffffff;
  box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.1);
  border-radius: 4px;
  box-sizing: border-box;
  padding: 12px;
  top: -1000px;
}
.no-msg-foot .app-model img {
  width: 100%;
  height: 100%;
}
.no-msg-foot .icon {
  display: inline-block;
  width: 16px;
  height: 16px;
  background: url("https://sxsimg.shixiseng.com/adminstatic_new/operation//c7a05ad5daee4a7ebff689742e77047e.png")
    no-repeat;
  background-size: 100% 100%;
  margin-right: 4px;
  position: relative;
  top: 3px;
}
.no-select {
  -moz-user-select: none; /* Firefox私有属性 */

  -webkit-user-select: none; /* WebKit内核私有属性 */

  -ms-user-select: none; /* IE私有属性(IE10及以后) */

  -khtml-user-select: none; /* KHTML内核私有属性 */

  -o-user-select: none; /* Opera私有属性 */

  user-select: none; /* CSS3属性 */
}
