.hide {
  display: none; }

.content {
  padding: 20px 0;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  background-image: url("../../img/login/wy_login_bg.jpg"); }

.login-box {
  width: 1000px;
  margin: 0 auto;
  height: 575px;
  background-color: transparent; }
  .login-box .login-box-pic {
    width: calc(100% - 375px);
    height: 100%;
    position: relative;
    background-color: transparent; }
    .login-box .login-box-pic img {
      display: none;
      width: 60%;
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%); }
  .login-box .login-box-form {
    width: 375px;
    height: 100%;
    padding: 20px 40px;
    position: relative;
    background-color: #FFFFFF;
    box-shadow: -10px 0 10px -5px rgba(0, 0, 0, 0.14);
    border-radius: 10px; }
    .login-box .login-box-form .form-title {
      font-size: 24px;
      font-weight: bold;
      text-align: center;
      margin: 24px 0; }
    .login-box .login-box-form .form-tab {
      margin: 24px 0;
      text-align: center;
      border-bottom: 1px solid #eeeeee;
      padding-bottom: 20px; }
      .login-box .login-box-form .form-tab .select-span {
        background-color: rgba(46, 137, 255, 0.1);
        color: var(--main-color, #2e89ff); }
      .login-box .login-box-form .form-tab span {
        background-color: #f0f0f0;
        display: inline-block;
        font-size: 14px;
        height: 30px;
        line-height: 30px;
        border-radius: 30px;
        padding: 0 12px;
        color: var(--vice-font-color, #666666);
        cursor: pointer;
        user-select: none; }
    .login-box .login-box-form .form-con .item {
      padding-bottom: 15px;
      position: relative; }
      .login-box .login-box-form .form-con .item .itemInput {
        margin-top: 10px;
        width: 100%;
        height: 40px;
        line-height: 40px;
        border-radius: 35px;
        font-size: 14px;
        padding: 0 20px;
        border: 1px solid #cccccc;
        transition: all 0.3s; }
        .login-box .login-box-form .form-con .item .itemInput:hover {
          border: 1px solid #c0c4cc; }
        .login-box .login-box-form .form-con .item .itemInput:focus {
          box-shadow: none;
          border: 1px solid var(--main-color, #2e89ff); }
      .login-box .login-box-form .form-con .item .verify {
        width: 50%; }
      .login-box .login-box-form .form-con .item .verifyCode {
        width: 40%;
        border: none;
        background-color: var(--main-color, #2e89ff);
        color: #ffffff;
        height: 40px;
        border-radius: 40px;
        padding: 0 15px; }
      .login-box .login-box-form .form-con .item .error-info {
        display: none;
        font-size: 14px;
        color: var(--warn-color, #ff3600);
        position: absolute; }
    .login-box .login-box-form .form-con .error .itemInput {
      border: 1px solid var(--warn-color, #ff3600);
      animation: error 0.2s; }
      .login-box .login-box-form .form-con .error .itemInput:hover {
        border: 1px solid var(--warn-color, #ff3600); }
    .login-box .login-box-form .form-con .error .error-info {
      display: block; }
    .login-box .login-box-form .form-con .tip {
      margin-top: 40px;
      font-size: 14px; }
      .login-box .login-box-form .form-con .tip a {
        color: var(--tip-font-color, #999999); }
        .login-box .login-box-form .form-con .tip a:first-child {
          color: var(--main-color, #2e89ff); }
    .login-box .login-box-form .form-con .submit {
      width: 70%;
      height: 40px;
      font-size: 16px;
      line-height: 40px;
      border-radius: 40px;
      margin: 15px auto; }
    .login-box .login-box-form .form-con .WeChatCode iframe {
      width: 100%; }
      .login-box .login-box-form .form-con .WeChatCode iframe img {
        width: 150px !important; }
    .login-box .login-box-form .form-con .WeChatTip {
      font-size: 14px;
      color: var(--vice-font-color, #666666);
      text-align: center; }
    .login-box .login-box-form .wechatReg-title {
      font-size: 15px;
      color: var(--vice-font-color, #666666);
      text-align: center; }
    .login-box .login-box-form .wechatReg-ewm {
      width: 80%;
      margin: 20px auto; }
      .login-box .login-box-form .wechatReg-ewm img {
        width: 100%; }

@keyframes error {
  0% {
    transform: translateX(0%); }
  25% {
    transform: translateX(-3%); }
  50% {
    transform: translateX(0%); }
  75% {
    transform: translateX(3%); }
  100% {
    transform: translateX(0%); } }
.pop {
  width: 100%;
  height: 100%;
  position: fixed;
  z-index: 9;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.5); }
  .pop .pop-con {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); }
    .pop .pop-con .con-content {
      width: 375px;
      padding: 40px;
      border-radius: 10px;
      background-color: #FFFFFF; }
      .pop .pop-con .con-content .content-title {
        color: #0C0C0C;
        font-weight: bold;
        font-size: 22px;
        text-align: center;
        margin-bottom: 30px; }
      .pop .pop-con .con-content .content-input {
        margin-top: 18px;
        font-size: 15px;
        color: var(--main-font-color, #333333); }
        .pop .pop-con .con-content .content-input .input {
          width: 100%;
          height: 40px;
          border-radius: 40px;
          border: 1px solid #CCCCCC;
          padding: 0 15px;
          margin-right: 10px;
          color: var(--main-font-color, #333333); }
        .pop .pop-con .con-content .content-input .min-input {
          width: 175px; }
        .pop .pop-con .con-content .content-input .verifyCode {
          width: 100px;
          border: none;
          background-color: var(--main-color, #2e89ff);
          color: #ffffff;
          height: 40px;
          border-radius: 40px;
          padding: 0 15px; }
        .pop .pop-con .con-content .content-input .no-verifyCode {
          background-color: #cccccc;
          background-image: none;
          cursor: no-drop;
          margin-left: 10px; }
        .pop .pop-con .con-content .content-input span {
          display: inline-block;
          width: 70px;
          text-align: right; }
        .pop .pop-con .con-content .content-input label {
          margin-left: 5px;
          margin-right: 15px; }
      .pop .pop-con .con-content .content-but {
        margin: 20px auto 0;
        padding: 12px 0;
        border-radius: 40px; }
    .pop .pop-con .con-close {
      width: 30px;
      height: 30px;
      border-radius: 50%;
      border: 2px solid #FFFFFF;
      margin: 20px auto 0;
      position: relative;
      cursor: pointer;
      transition: all 0.1s; }
      .pop .pop-con .con-close:before, .pop .pop-con .con-close:after {
        content: "";
        width: 2px;
        height: 15px;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%) rotate(-45deg);
        background-color: #FFFFFF; }
      .pop .pop-con .con-close:after {
        transform: translate(-50%, -50%) rotate(45deg); }
      .pop .pop-con .con-close:hover {
        background-color: #FF3600;
        border-color: #FF3600; }

/*# sourceMappingURL=login.css.map */
