html {
    width: 100%;
    height: 100%;
    overflow-y: hidden;
  }
  
  body {
    margin: 0;
    min-height: 100vh;
    background: url(../images/loginbg.png);
    background-size: cover;
    background-repeat: no-repeat;
    display: flex;
    justify-content: space-between;
    overflow-y: hidden;
  }
  
  [v-cloak] {
    display: none !important;
  }
  
  .company {
    font-size: 21px;
    font-family: Adobe Heiti Std;
    font-weight: normal;
    color: #676dda;
    margin: 0 auto;
    display: flex;
    align-items: flex-end;
    padding-bottom: 36px;
  
  }
  
  .container {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 596px;
    height: 694px;
  }
  
  .login_box {
    height: 100%;
    min-height: 540px;
    background: #ffffff;
    margin-left: -20px;
    border-radius: 0 10px 10px 0;
    box-shadow: 0px 0px 16px 0px #ccc;
    border-radius: 63px;
  }
  
  .container p {
    font-size: 21px;
    font-family: Adobe Heiti Std;
    color: #eeeeee;
    text-shadow: 0px 2px 5px rgba(0, 0, 0, 0.3);
    margin: 0;
    text-align: center;
  }
  
  .footer {
    width: 100%;
    font-size: 14px;
    color: #333333;
    text-align: center;
    position: fixed;
    bottom: 11px;
  }
  
  .loginimg {
    width: 50%;
    height: 100%;
    background: url(../images/login2.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: -20px -10px;
    border-radius: 10px 0 0 10px;
  }
  
  .loginInput_box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  
  .loginlogo_box {
    width: 50%;
    height: 60%;
    text-align: center;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
  }
  
  .loginInput_box .logo {
    height: 48px;
    margin: 0;
  }
  
  .input_box {
    background: #fff;
    border-radius: 15px;
    display: flex;
    align-items: center;
    position: relative;
  }
  
  .input_box img {
    width: 14px;
    position: absolute;
    left: 10px;
  }
  
  .input_box>input {
    flex: 1;
    display: inline-block;
    border-bottom: 1px solid #e6e6e6;
    padding-left: 30px;
    width: 100%;
    height: 56px;
    background: rgba(255, 255, 255, 0);
    border: 1px solid #e3e7ed;
    border-radius: 40px;
  }
  
  .input_box>input:focus {
    outline: none;
    border-color: #0065f6;
  }
  
  .input_box>input:focus-visible {
    outline: aliceblue;
  }
  
  .logInBtn {
    text-align: center;
    cursor: pointer;
    margin: 0 auto;
    box-shadow: 0px 17px 40px 0px rgba(123, 102, 255, 0.22);
    font-family: inpinheiti;
    width: 432px;
    height: 56px;
    background: #0065f6;
    line-height: 56px;
    border-radius: 30px;
    font-size: 21px;
    font-weight: 400;
    color: #ffffff;
  }
  
  .login_content {
    flex: 1;
    display: flex;
    flex-flow: column;
    justify-content: flex-end;
    row-gap: 40px;
    margin-top: 50px;
  }
  
  .agreement {
    color: #ff9e47;
  }
  
  .tip_box {
    position: absolute;
    bottom: -27px;
  }
  
  .tip_box label {
    font-size: 10px;
    font-family: Microsoft YaHei;
    font-weight: 400;
    color: #999999;
  }
  
  .red_checkbox {
    margin: 0;
    vertical-align: middle;
    margin-right: 3px;
    margin-top: -1px;
  }
  
  span.code {
    display: inline-block;
    position: absolute;
    z-index: 10;
    right: 0px;
    font-size: 40px;
    font-family: STHupo;
    font-weight: 400;
    color: #333;
    background: linear-gradient(to right, #b1b1b1, #f7efef);
    border: 1px solid #e6e6e6;
    text-align: center;
    line-height: 60px;
    letter-spacing: 6px;
    padding-left: 6px;
    user-select: none;
    cursor: pointer;
    width: 140px;
    height: 60px;
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
  }
  
  .getCode {
    position: absolute;
    z-index: 10;
    height: 25px;
    line-height: 25px;
    right: 8px;
    font-size: 15px;
    font-weight: 400;
    color: #cacaca;
    background: #fff;
    border: 1px solid #e6e6e6;
    border-radius: 25px;
    text-align: center;
    user-select: none;
    cursor: pointer;
    width: 120px;
  }
  
  .getCode:hover {
    background-color: #eee;
  }
  
  .el-dropdown {
    position: absolute;
    left: 35px;
    cursor: pointer;
  }
  
  .loginlogo_box {
    font-size: 24px;
    font-weight: 400;
    color: #0065F6;
    position: relative;
    display: flex;
    align-items: center;
    margin-top: 91px;
    width: 80%;
  
  
  }
  
  .loginlogo_box::before {
    content: "";
    width: 100px;
    height: 2px;
    background: #0065F6;
    position: absolute;
    bottom: -18px;
    z-index: 1;
  }
  
  .loginlogo_box::after {
    content: "";
    width: 100%;
    height: 1px;
    background: #eee;
    position: absolute;
    bottom: -19px;
    left: 0;
    z-index: 0;
  }