
body {
  margin: 0;
}
p {
  margin:0;
}

.sw-login {
  /*min-width: 1200px;*/
}

#wx_login_container {
  display: flex;
  justify-content: center;
}

.wx_login_tip{
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  top: -106px;
  font-size: 14px;
}

.wx_login_tip img{
  margin-right: 2px;
}

.sw-login .sw-login-main {
  position: absolute;
  right: 0;
  width: 30%;
  min-width: 560px;
  height: inherit;
  overflow: auto;
  box-shadow: -1px 0 8px 0 rgba(199, 199, 199, 0.5);
  background-color:rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.sw-login .sw-login-main .sw-login-main-blur {
  width: 105%;
  top: -50px;
  height: calc(100vh + 100px);
  background-size: auto 100vh;
  background-position: right;
  background-repeat: no-repeat;
  filter: blur(10px);
  position: absolute;
  transition: all 0.5s ease-out;
}

.sw-login .sw-login-main .sw-login-main-content {
  display: flex;
  flex-flow: column;
  height: 100%;
  width: 100%;
}

.sw-login .sw-login-main .sw-login-main-content .sw-login-menu {
  padding-top: 50px;
  box-sizing: border-box;
}

.sw-login .sw-login-main .sw-login-main-content .sw-login-menu .el-menu-item {
  background: #00000000 !important;
  font-size: 18px;
  padding: 0;
}

.sw-login .sw-login-main .sw-login-main-content .sw-login-menu.el-menu.el-menu--horizontal {
  border-bottom: 1px solid #D2DAE0;
}

.sw-login .sw-login-logo-container {
  position: absolute;
  top: 28px;
  left: 0;
  width: 340px;
  height: 72px;
  background-image: linear-gradient(90deg, rgba(255, 255, 255, 0.78) 0%, rgba(255, 255, 255, 0.61) 46%, rgba(255, 255, 255, 0) 90%);
}

.sw-login .sw-login-logo-container .sw-login-logo-main {
  top: 0;
  width: 100%;
  height: inherit;
  background: url("../img/logo.svg") no-repeat;
  background-size: 80% 85%;
  background-position: -22px 5px;
}

.sw-login .su-input-icon + .su-input-icon {
  margin-left: 0;
}

.sw-login .su-input-icon {
  font-size: 22px;
  cursor: pointer;
}

.sw-login .su-input-icon.black {
  color: #656668;
}

.sw-login .su-input-icon.blue {
  color: #3394E1;
}

.sw-login .el-input--prefix .el-input__inner {
  padding-left: 44px;
}

.sw-login .el-input .el-input__clear {
  font-size: 20px;
}

.link-wrapper {
  display: flex;
  flex-flow: row-reverse nowrap;
  justify-content: space-between;
}

.link-item {
  flex: none;
  margin: 0;
}

.link-wrapper .link-item:first-child {
  text-align: left;
}

.link-wrapper .link-item:last-child {
  text-align: right;
}

.main-form {
  margin: 40px 80px;
}

.notice {
  flex: 1 0 auto;
  display: flex;
  padding: 0 20px;
  margin-bottom: 20px;
  flex-flow: column;
  justify-content: flex-end;
  align-items: center;
  color: #666;
  line-height: 1.7em;
  font-size: 12px;
}

.notice-title {
  display: flex;
  width: 100%;
  flex-flow: row nowrap;
  margin-bottom: 10px;
}

.notice-text {
  white-space: pre-wrap;
  align-self: flex-start;
  margin-bottom: 10px;
}

.m-hr {
  flex: none;
  padding: 0 20px;
}

.l-hr, .r-hr {
  flex: auto;
  position: relative;
  height: 1px;
  background: #ccc;
  margin-top: 0.75em;
  user-select: none;
  pointer-events: none;
}

.l-hr::after,
.r-hr::before {
  position: absolute;
  display: block;
  top: -1px;
  width: 4px;
  height: 4px;
  content: " ";
  background: #ccc;
  border-radius: 2px;
}

.l-hr::after {
  right: 0;
}

.r-hr::before {
  left: 0;
}

.browser-link-wrapper {
  margin-bottom: 10px;
  align-self: flex-start;
}

.browser-icon {
  display: inline-block;
  margin-right: 10px;
  height: 20px;
  width: 20px;
  cursor: pointer;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  transition: 0.2s ease-out;
}

.browser-icon:hover {
  transform: scale(1.5);
}

.ff-icon {
  background-image: url("../img/firefox.png");
}

.chrome-icon {
  background-image: url("../img/chrome.svg");
}

.edge-icon {
  background-image: url("../img/edge.svg");
}

.el-menu--horizontal > .el-menu-item.menu-item {
  margin: 0 20px 0 80px;
}

.text-danger {
  color: #F56C6C;
}

.sw-login-wrapper {
  position: absolute;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 5
}
.copyright{
  color:#999;
}

@media screen and (max-width: 875px) {
  .sw-login .sw-login-main {
    width: 100vw;
    min-width: 300px;
  }
  .main-form{
    margin:10px 20px;
  }

}

@media screen and (max-height: 640px) {
  .sw-login .sw-login-main {
    overflow: auto;
  }
  .sw-login .sw-login-main .sw-login-main-content .sw-login-menu {
    padding-top: 20px;
  }

  .sw-login .sw-login-main .sw-login-main-content {
    position:absolute;
    min-height: 640px;
    height: 100%;
    bottom: 0;
    top:0;
  }

}

/***** 滑动验证码相关样式 start *****/
.verify-img-out {
  border-radius: 16px;
}
.verify-img-panel {
  margin: 0;
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  border-radius: 16px;
  position: relative;
}
.verify-img-panel .icon-refresh {
  font-size: 20px;
  color: #fff;
}
.verify-img-panel .verify-gap {
  background-color: #fff;
  position: relative;
  z-index: 2;
  border: 1px solid #fff;
}

.iconfont {
  font-family: "iconfont" !important;
  font-size: 16px;
  font-style: normal;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.icon-right:before, .icon-fail:before, .icon-success:before {
  content: "";
  display: block;
  width: 12px;
  height: 12px;
  position: absolute;
  margin: auto;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 9999;
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAoJJREFUSEu1lf1LU2EUx8/z3N29uYlZc9e1ZNDNzTZMGhEFkgQRBf0irYKowPVnLTGoH0Qp6JfIXxIjgmpkprKVlYy1l5ZpOt3LfTnxbCrzmm4L7/PTA/ec83nOy/0eAjofwuK3ePxCoVAOAwABpEsuY/tIMvmmoGVzgvc6ouoDAOQImZAyn9/Ve18FwI7B5TuvKspFdidAFuRMfJQQgrUBnL29LblsKQygtgIQ1UgNj4rp+cR+kG0AM+IEbwhR9bI7pTAlp79MaZ0t7u6jJQnusiQAaP7wkc5Ibm4yvxdkB0AUr5i+rX4NA8F2VgZeNY6WcnMLWme+s+e0ospXK9kSQ2KwP/B4bGxM+RdkB4AZ2ETRsZHnhgBVHghXbDWbIyuL0yu7+uH0XUNQTlWyRe6t/DM20RCAGRkF8aSMZHCzH9k+t30kGo1KtQGCwSA/nVy7h4BCpYeEf1rOzM9pIbsy2G56R88llchnqxA6o2Tjz7TObZ6+ttWNYhiIYgFCJavNOpxf+JCrtdsTEAqFuCevZm8jyl2VAaDccykdi2ohpo7AcYmUblVHnPzusrqGFxcni1t2ewKYgcM/YFv6lb4PoNrYWJp4y8NC8uMPLcTQ2d2vqnih2nQal9Ox8a0R3xfAHCyuwLGSUr4DgBSArjmcpkh2Zma9FoKIxCB4byDgiUrTOfpSTsVfV8vbwOEF/xkFy5c3XxhTMvFxrZvHM2BOFFNhQDzERtxiNUXWv89mDwzgdp+zpOSloaYBupZI1yY3PKYOvyjR8s2mx9Sg54+mq1Roxc5u5B/8SXxaPhCx012udV04TaxMpk32plbmfy19Sl9I6fj7ekrTkFTUC7Lf97+SMZwo/iiyqQAAAABJRU5ErkJggg==");
  background-size: contain;
}

.icon-refresh:before {
  content: "";
  display: block;
  width: 18px;
  height: 18px;
  position: absolute;
  margin: auto;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 9999;
  background-image: url("data:image/png;base64,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");
  background-size: contain;
}

/*滑动验证码*/
.verify-bar-area {
  position: relative;
  text-align: center;
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  /*border: 1px solid #ddd;*/
  -webkit-border-radius: 4px;
  border-radius: 25px;
  background: rgb(230 236 242);
  box-shadow: 0px 0px 2px 2px rgb(221 221 221);
}

.verify-bar-area .verify-move-block {
  position: absolute;
  top: 0;
  left: 0;
  background: #fff;
  cursor: pointer;
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  box-shadow: 0 0 2px #888888;
  -webkit-border-radius: 1px;
  border-radius: 25px;
}

.verify-bar-area .verify-move-block:hover {
  background-color: #337ab7;
  color: #FFFFFF;
}

.verify-bar-area .verify-left-bar {
  position: absolute;
  top: -1px;
  left: -1px;
  background: #f0fff0;
  cursor: pointer;
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  border-radius: 25px 0 0 25px;
}
.verify-bar-area .verify-move-block .verify-sub-block {
  position: absolute;
  text-align: center;
  z-index: 3;
}
.verify-bar-area .verify-move-block .verify-icon {
  font-size: 18px;
}

.verify-bar-area .verify-msg {
  z-index: 3;
  color: rgba(68, 89, 105, 0.36);
}
.suc-bg{
  background-color:rgba(92, 184, 92,.5);
  filter: progid:DXImageTransform.Microsoft.gradient(startcolorstr=#7f5CB85C, endcolorstr=#7f5CB85C);
}
.err-bg{
  background-color:rgba(217, 83, 79,.5);
  filter: progid:DXImageTransform.Microsoft.gradient(startcolorstr=#7fD9534F, endcolorstr=#7fD9534F);
}
.verify-tips{
  position: absolute;
  left: 0;
  bottom:0;
  width: 100%;
  height: 30px;
  line-height:30px;
  color: #fff;
  border-radius: 0 0 16px 16px;
  padding: 0 10px;
  box-sizing: border-box;
}
.tips-enter,.tips-leave-to{
  bottom: -30px;
}
.tips-enter-active,.tips-leave-active{
  transition: bottom .5s;
}
.shadow-image {
  position: absolute;
  left: 99999px;
  width: 100%;
  padding: 10px;
  box-sizing: border-box;
}
.captcha-wrapper {
  position: relative;
  overflow: hidden;
  padding: 10px;
  border-radius: 20px;
  background: white;
}
.original-img {
  border-radius: 16px;
  width:100%;
  height:100%;
  display:block;
}
.button-handler {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-top: 5px;
}

.button-handler .verify-refresh {
  width: 25px;
  height: 25px;
  text-align: center;
  padding: 5px;
  cursor: pointer;
  z-index: 2;
  position: relative;
}
/***** 滑动验证码相关样式 end *****/