.login-mark {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0px;
    right: 0px;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 22222;
    overflow: hidden;
    display: none;
}
.login-container {
    width: 270px;
    height: 182px;
    opacity: 1;
    border-radius: 8px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background: rgba(255, 255, 255, 1);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  
  .login-container  .error-tip {
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 0px;
    line-height: 0px;
    color: rgba(51, 51, 51, 1);
    margin-bottom: 16px;
  }
  .login-container .error-info {
    font-size: 16px;
    font-weight: 400;
    color: rgba(51, 51, 51, 1);
    margin-bottom: 22px;
  }
  
  .login-container .submit-ok {
    cursor: pointer;
    width: 190px;
    height: 40px;
    opacity: 1;
    border-radius: 100px;
    background: rgba(255, 255, 255, 1);
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0px;
    line-height: 16px;
    color: rgba(40, 171, 220, 1);
    border: 1px solid rgba(40, 171, 220, 1);
    text-align: center;
    line-height: 40px;
  }
.body_mark {
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    position: fixed;
    left: 0;
    top: 0;
    display: none;
    z-index: 9999;
  }
  .login_wrap {
    width: 502px;
    height: 310px;
    opacity: 1;
    background: #ffffff;
    position: fixed;
    top: 20%;
    left: 50%;
    transform: translateX(-50%);
    display: none;
    z-index: 9999;
    border-radius: 2px;
  }
  .login_wrap .header_login {
    width: 502px;
    height: 40px;
    opacity: 1;
    background: #f7f7f7;
    font-size: 16px;
    font-weight: 400;
    color: rgba(51, 51, 51, 1);
    text-align: center;
    line-height: 40px;
    border-radius: 2px 2px 0px 0px;
  }
  .login_wrap .login_content_wrap {
    width: 100%;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    color: rgba(51, 51, 51, 1);
  }
  .login_wrap .login_content {
    padding-top: 25px;
  }
  .login_wrap .login_content .user_name,
  .login_wrap .login_content .mobile,
  .login_wrap .login_content .v_code {
    margin-top: 15px;
    display: flex;
    align-items: center;
  }
  .login_wrap .login_content .user_name span,
  .login_wrap .login_content .mobile span,
  .login_wrap .login_content .v_code span {
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0px;
    line-height: 16px;
    margin-right: 8px;
  }
  .login_wrap .login_content .user_name span::before,
  .login_wrap .login_content .mobile span::before,
  .login_wrap .login_content .v_code span::before {
    content: '*';
    color: red;
  }
  .login_wrap .login_content .user_name input,
  .login_wrap .login_content .mobile input,
  .login_wrap .login_content .v_code input {
    width: 280px;
    height: 40px;
    opacity: 1;
    border-radius: 2px;
    background: #ffffff;
    border: 1px solid #cccccc;
    box-sizing: border-box;
    font-size: 16px;
    padding-left: 15px;
    border-radius: 5px;
  }
  .login_wrap .login_content .user_name input:focus,
  .login_wrap .login_content .mobile input:focus,
  .login_wrap .login_content .v_code input:focus {
    outline: none;
    /* 移除默认的轮廓线 */
    border-color: none;
    /* 设置边框颜色 */
    box-shadow: none;
    /* 如果需要，移除默认的阴影 */
    /* 其他你想要的样式 */
  }
  .login_wrap .login_content .v_code input {
    width: 190px;
    border-right: none;
    border-radius: 5px 0px 0px 5px;
  }
  .login_wrap .login_content .v_code input:focus {
    outline: none;
    /* 移除默认的轮廓线 */
    border-color: none;
    /* 设置边框颜色 */
    box-shadow: none;
    /* 如果需要，移除默认的阴影 */
    /* 其他你想要的样式 */
  }
  .login_wrap .login_content .v_code .get_code {
    width: 90px;
    height: 40px;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0px;
    line-height: 33px;
    color: #ffffff;
    border-radius: 2px;
    background: rgba(40, 171, 220, 1);
    text-align: center;
    line-height: 40px;
    cursor: pointer;
  }
  .login_wrap .submit {
    cursor: pointer;
    width: 280px;
    height: 40px;
    opacity: 1;
    border-radius: 2px;
    background: rgba(40, 171, 220, 1);
    text-align: center;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0px;
    line-height: 40px;
    color: #ffffff;
    margin-left: 64px;
    margin-top: 20px;
  }
  
  .login_wrap .login_agree {
    font-size: 8px;
    font-weight: 400;
    letter-spacing: 0px;
    line-height: 10.61px;
    color: rgba(196, 196, 196, 1);
    margin-top: 10px;
    margin-left: 65px;
  }
  
  /* .login_wrap .login_agree span {
    color: rgba(40, 171, 220, 1);
  } */