@charset "UTF-8";
.L_code {
  display: flex;
  justify-content: space-between;
  height: 100vh;
  overflow: hidden;
  margin: 0;
}

.L_code-left-side {
  max-width: 35%;
  min-width: 30%;
  overflow-y: hidden;
  width: 520px;
  position: relative;
}
.L_code-left-side::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  min-height: 100%;
  background-image: var(--loginIllustration);
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  z-index: 1;
}
.L_code-left-side .L_code-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 20px 0 0 40px;
  text-align: center;
  position: relative;
  z-index: 2;
  height: 100vh;
  overflow: hidden;
}
.L_code-left-side .L_code-content .L_code-logo {
  width: 100px;
  height: 100px;
  margin-bottom: 20px;
}

.L_code-right-side {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex: 1;
  background-image: var(--loginbg);
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  height: 100vh;
  overflow: hidden;
}
.L_code-right-side .L_code-right-form {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: stretch;
  background: #fff;
  padding: 40px 0;
  width: 720px;
  box-shadow: 0 6px 32px 0 rgba(15, 32, 71, 0.08);
  position: relative;
  z-index: 2;
  top: -24px;
}
.L_code-right-side .L_code-right-form .L_code-scan-login {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-top: 40px;
  width: 280px;
  min-width: 280px;
  height: auto;
  border-right: 1px solid #f0f0f0;
}
.L_code-right-side .L_code-right-form .L_code-scan-login .qrCodeContainer {
  width: 188px;
  height: 188px;
  position: relative;
}
.L_code-right-side .L_code-right-form .L_code-scan-login .qrCodeContainer .codetip-inner {
  position: absolute;
  top: -38px;
  border-radius: 2px;
  box-shadow: rgba(17, 17, 26, 0.1) 0px 0px 16px;
  white-space: nowrap;
}
.L_code-right-side .L_code-right-form .L_code-scan-login .qrCodeContainer .codetip-inner .codetip-arrow {
  border-color: transparent #fff #fff transparent;
  bottom: -2.8px;
  left: 5px;
  box-shadow: 3px 3px 7px rgba(0, 0, 0, 0.07);
  background: 0 0;
  border-style: solid;
  border-width: 4.24264069px;
  display: block;
  height: 8.48528137px;
  position: absolute;
  transform: rotate(45deg);
  width: 8.48528137px;
  z-index: 2;
}
.L_code-right-side .L_code-right-form .L_code-scan-login .qrCodeContainer .codetip-inner .codetip-title {
  display: flex;
  align-items: stretch;
  gap: 3px;
  border-bottom: 1px solid #e8e8e8;
  margin: 0;
  min-height: 32px;
  padding: 5px 16px 4px;
  position: relative;
  z-index: 3;
}
.L_code-right-side .L_code-right-form .L_code-scan-login .qrCodeContainer .codetip-inner .codetip-title .codetip-icon {
  width: 18px;
  height: 18px;
}
.L_code-right-side .L_code-right-form .L_code-scan-login .qrCodeContainer .codetip-inner .codetip-title .codetip-icon img {
  width: 100%;
  height: 100%;
}
.L_code-right-side .L_code-right-form .L_code-scan-login .qrCodeContainer .codetip-inner .codetip-title p, .L_code-right-side .L_code-right-form .L_code-scan-login .qrCodeContainer .codetip-inner .codetip-title span {
  font-size: 14px;
  font-weight: 500;
  color: #000;
}
.L_code-right-side .L_code-right-form .L_code-scan-login .qrCodeContainer #L_qrCode {
  width: 100%;
  height: 100%;
  object-fit: contain;
  position: relative;
  background: url(https://ossjm.oss-cn-hangzhou.aliyuncs.com/pub/img/user/reg_code_wrap.png) no-repeat;
  background-size: contain;
  padding: 8px;
}
.L_code-right-side .L_code-right-form .L_code-scan-login .qrCodeContainer .modality_code {
  position: absolute;
  background-color: hsla(0, 0%, 100%, 0.9);
  border-radius: 8px;
  inset: 0;
  z-index: 1;
  opacity: 1;
}
.L_code-right-side .L_code-right-form .L_code-scan-login .qrCodeContainer #regenerateQrCode {
  opacity: 1;
  position: absolute;
  bottom: 45%;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  cursor: pointer;
  z-index: 2;
}
.L_code-right-side .L_code-right-form .L_code-scan-login .qrCodeContainer #regenerateQrCode p {
  color: #1a1a1a;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
}
.L_code-right-side .L_code-right-form .L_code-scan-login .qrCodeContainer .loading-spinner {
  position: absolute;
  top: 45%;
  left: 40%;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
  border: 6px solid rgba(0, 0, 0, 0.1);
  z-index: 2;
  border-top-color: var(--primary);
  border-radius: 50%;
  animation: spin 1s infinite linear;
  display: none;
}
.L_code-right-side .L_code-right-form .L_code-scan-login .wechat-login {
  text-align: center;
  display: inline-flex;
}
.L_code-right-side .L_code-right-form .L_code-scan-login .wechat-login a {
  margin-left: 5px;
  color: var(--primary);
  cursor: pointer;
}
.L_code-right-side .L_code-right-form .L_code-login-form {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  padding: 0 40px 0 28px;
  overflow: hidden;
  overflow-y: auto;
}
.L_code-right-side .L_code-right-form .L_code-login-form .L_code-form-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  white-space: nowrap;
  width: 100%;
  padding-bottom: 5px;
  margin-bottom: 12px;
  position: relative;
  border-bottom: 3px solid #f6f6f6;
}
.L_code-right-side .L_code-right-form .L_code-login-form .code_login-tab {
  padding-right: 10px;
  display: flex;
  width: 100%;
  justify-content: flex-start;
  align-items: center;
}
.L_code-right-side .L_code-right-form .L_code-login-form .code_login-tab .login-tab-separate {
  background: #d9d9d9;
  height: 16px;
  margin: 0 16px;
  width: 1px;
}
.L_code-right-side .L_code-right-form .L_code-login-form .code_login-tab .login-tab-item {
  position: relative;
  font-size: 20px;
  font-weight: 900;
  color: #1a1a1a;
  cursor: pointer;
  transition: background 0.3s ease;
  -webkit-font-smoothing: initial;
}
.L_code-right-side .L_code-right-form .L_code-login-form .code_login-tab .login-tab-item:last-child {
  margin-right: 0;
}
.L_code-right-side .L_code-right-form .L_code-login-form .code_login-tab .login-tab-item.active {
  color: var(--primary) !important;
}
.L_code-right-side .L_code-right-form .L_code-login-form .transitionSwitching {
  position: absolute;
  bottom: -3px;
  height: 3px;
  background-color: var(--primary);
  transition: all 0.3s ease;
}
.L_code-right-side .L_code-right-form .L_code-login-form .ExtremeTest_captcha {
  height: 40px;
}
.L_code-right-side .L_code-right-form .L_code-login-form .tab-pane {
  display: none;
}
.L_code-right-side .L_code-right-form .L_code-login-form .tab-pane.active {
  display: block;
  animation: fadeIn 0.5s;
}
.L_code-right-side.no_wx .L_code-right-form {
  width: 476px;
  padding: 28px 0 40px;
  border-radius: 15px 0 15px 0;
}
.L_code-right-side.no_wx .L_code-right-form .L_code-scan-login {
  display: none;
}
.L_code-right-side.no_wx .L_code-right-form .L_code-login-form {
  padding: 0 30px 0 40px;
}
.L_code-right-side.no_wx .L_code-right-form .L_code-login-form .code_login-tab .login-tab-item {
  font-size: 18px;
  color: #8d94a1;
}
.L_code-right-side.no_wx .L_code-right-form .Oauth_login {
  gap: 15px;
}
.L_code-right-side.no_wx .L_code-right-form .Oauth_login .other-login {
  padding: 0;
}
.L_code-right-side.no_wx .L_code-right-form .Oauth_login .list-inline {
  padding: 0;
  gap: 10px;
  justify-content: flex-start;
}
.L_code-right-side.right .L_code-right-form {
  flex-direction: row-reverse;
}
.L_code-right-side.right .L_code-right-form .L_code-scan-login {
  border-left: 1px solid #f0f0f0;
  border-right: none;
}
.L_code-right-side.wx.right .L_code-login-form {
  padding: 0 28px 0 40px;
}
.L_code-right-side .form-group {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.L_code-right-side .form-group label {
  color: #505363;
  font-weight: 300;
  font-size: 14px;
}
.L_code-right-side .form-group .custom-dropdown {
  position: relative;
  width: fit-content;
}
.L_code-right-side .form-group .custom-dropdown-selection {
  position: relative;
  padding: 0 21px 0 11px;
  color: #505363;
  font-weight: normal;
  font-size: 14px;
  background-color: #fff;
  border: 1px solid #d4d9e2;
  border-right: none;
  border-radius: 0;
  transition: all 0.3s;
  line-height: 38px;
  text-align: left;
  width: 108px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  cursor: pointer;
}
.L_code-right-side .form-group .custom-dropdown-selection::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid #adb5bd;
}
.L_code-right-side .form-group .custom-dropdown-list {
  display: none;
  position: absolute;
  width: max-content;
  padding: 0;
  list-style: none;
  border: 1px solid #ccc;
  border-top: none;
  max-height: 200px;
  overflow-y: auto;
  background-color: #fff;
  z-index: 1;
}
.L_code-right-side .form-group .custom-dropdown-list li {
  padding: 10px;
  cursor: pointer;
  transition: background-color 0.2s; /* 平滑背景颜色过渡 */
}
.L_code-right-side .form-group .custom-dropdown-list li:hover {
  background-color: #f0f0f0;
}
.L_code-right-side .mt-3 .btn-primary {
  height: 48px;
  font-weight: 500;
  transition: background-color 0.3s;
}
.L_code-right-side .mt-3 .btn-primary:hover {
  background-color: var(--primary-hover);
}
.L_code-right-side .Oauth_login {
  width: 100%;
  position: relative;
  display: flex;
  align-items: stretch;
  flex-direction: column;
  gap: 20px;
}
.L_code-right-side .Oauth_login .other-login {
  padding: 0 20px;
  width: 100%;
  color: #8f96a3;
  font-size: 12px;
  line-height: 18px;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}
.L_code-right-side .Oauth_login .other-login .gray-text {
  font-size: 14px;
  font-weight: 300;
  white-space: nowrap;
  padding: 0 4px;
}
.L_code-right-side .Oauth_login .other-login .gray-line {
  width: 100%;
  color: #8f96a3;
  font-size: 12px;
  line-height: 18px;
  text-align: center;
  height: 1px;
  background-color: rgba(143, 150, 163, 0.1);
}
.L_code-right-side .Oauth_login .list-inline {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  padding: 0 20px;
}
.L_code-right-side .Oauth_login .list-inline .social-list-item {
  height: 32px;
  width: 32px;
  background-image: none;
  border: none;
}
.L_code-right-side .Oauth_login .list-inline .social-list-item .icon {
  width: 100%;
  height: 100%;
}
.L_code-right-side .L_code-right-footer {
  position: absolute;
  left: 40px;
  bottom: 10px;
  display: flex;
  flex: 1;
  justify-content: flex-start;
  text-align: center;
  flex-wrap: wrap;
  gap: 0 8px;
}
.L_code-right-side .L_code-right-footer a {
  color: #999;
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
  font-family: auto;
}
.L_code-right-side .L_code-right-footer a:hover {
  color: #666;
}
.L_code-right-side .L_code-right-footer a.L_code_clause {
  color: var(--primary);
  cursor: pointer;
}

@keyframes codespin {
  to {
    transform: rotate(360deg);
  }
}
.form-control {
  padding: 7px 10px;
  line-height: 24px;
  height: fit-content;
  background-color: #fff;
  border: 1px solid #d4d9e2;
  border-radius: 0;
}

.btn {
  padding: 7px 10px;
  line-height: 26px;
  height: fit-content;
  background-color: var(--primary);
  border: none;
  border-radius: 0;
}

.btn-outline-light {
  padding: 7px 10px;
  line-height: 26px;
  height: fit-content;
  background-color: #fff;
  border: 1px solid #d4d9e2;
  border-radius: 0;
  color: var(--primary);
}

.input-group-append {
  height: 40px;
}
.input-group-append img {
  border: 1px solid #d4d9e2 !important;
  border-left: none;
}

.serviceTerms {
  margin: 14px 0 10px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 8px;
}
.serviceTerms span {
  color: #9ea5b2;
}
.serviceTerms .custom-checkbox {
  width: 16px;
  height: 16px;
  background-color: #fff;
  border: 1.5px solid #9ea5b2;
  cursor: pointer;
  position: relative;
}
.serviceTerms .custom-checkbox:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  width: 6px;
  height: 10px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  opacity: 0;
  transition: all 0.3s;
}
.serviceTerms .custom-checkbox.checked {
  background-color: var(--primary);
  border: 1.5px solid var(--primary);
}
.serviceTerms .custom-checkbox.checked:after {
  opacity: 1;
}

@keyframes antCheckboxEffect {
  0% {
    transform: scale(1);
    opacity: 0.5;
  }
  100% {
    transform: scale(1.6);
    opacity: 0;
  }
}
.modal {
  background: rgba(0, 0, 0, 0.5);
}

@media (max-width: 768px) {
  .L_code {
    display: block;
    height: auto;
    overflow: hidden;
    margin: 0;
  }
  .L_code-left-side {
    max-width: 100%;
    min-width: 100%;
    position: fixed;
    top: 0;
    height: 60px;
    z-index: 99;
    background: #fff;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  }
  .L_code-left-side .GoBackToTheHomepage {
    color: rgb(153, 153, 153);
    font-size: 16px;
  }
  .L_code-left-side::before {
    display: none;
  }
  .L_code-left-side .L_code-content {
    height: 60px;
    padding: 0 20px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
  .L_code-right-side {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex: 1;
    background-image: var(--loginbg);
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: cover;
    height: auto;
    overflow: hidden;
    padding: 60px 0 0;
    min-height: 100vh;
  }
  .L_code-right-side .L_code-right-form {
    display: flex;
    flex-direction: column-reverse !important;
    justify-content: space-between;
    align-items: stretch;
    background: #fff;
    padding: 38px 22px 78px !important;
    width: 100%;
    box-shadow: 0 6px 32px 0 rgba(15, 32, 71, 0.08);
    position: unset;
    gap: 40px;
  }
  .L_code-right-side .L_code-right-form .L_code-scan-login {
    width: 100%;
    min-width: 100%;
    border-right: none !important;
    border-left: none !important;
  }
  .L_code-right-side.no_wx .L_code-right-form {
    width: 100%;
    padding: 0;
    border-radius: 0;
  }
  .L_code-right-side.no_wx .L_code-right-form .L_code-scan-login {
    display: none;
  }
  .L_code-right-content {
    width: 100%;
  }
  .text-register {
    position: relative;
    width: 100%;
    text-align: center;
    color: #505363;
    display: flex;
    justify-content: flex-end;
  }
  .L_code-right-side .L_code-right-form .L_code-login-form {
    padding: 0 !important;
  }
  .L_code-right-side .L_code-right-form .L_code-login-form .code_login-tab .login-tab-separate {
    margin: 0 12px;
  }
  .L_code-right-side .L_code-right-form .L_code-login-form .code_login-tab .login-tab-item {
    font-size: 18px;
    color: rgb(141, 148, 161);
  }
  .L_code-right-side .L_code-right-form .L_code-login-form .form-group {
    width: 100%;
    margin-bottom: 20px;
  }
  .L_code-right-side .L_code-right-form .L_code-login-form .form-group label {
    font-size: 16px;
  }
  .L_code-right-side .L_code-right-form .L_code-login-form .form-group .custom-dropdown {
    width: 100%;
    margin-bottom: 12px;
  }
  .L_code-right-side .L_code-right-form .L_code-login-form .form-group .custom-dropdown-selection {
    width: 100%;
    border-right: 1px solid rgb(212, 217, 226);
  }
  .L_code-right-side .L_code-right-form .L_code-login-form .form-group .custom-dropdown-list {
    width: 100%;
  }
  .L_code-right-side .L_code-right-form .L_code-login-form .mt-3 .btn-primary {
    width: 100%;
    font-size: 16px;
  }
  .L_code-right-side .L_code-right-form .L_code-login-form .Oauth_login {
    width: 100%;
    justify-content: center;
    align-items: center;
    gap: 10px;
  }
  .L_code-right-side .L_code-right-form .L_code-login-form .Oauth_login .Oauth_login_txt {
    margin-right: 0;
  }
  .L_code-right-side .L_code-right-footer {
    position: fixed;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: 99;
    height: 40px;
    display: flex;
    background-color: rgb(240, 240, 240);
    flex: 1;
    align-items: center;
    justify-content: flex-start;
    padding: 0 20px;
  }
  .L_code-right-side .L_code-right-footer a {
    display: none;
  }
  .L_code-right-side .L_code-right-footer a.L_code_clause {
    display: block;
    color: rgb(153, 153, 153) !important;
  }
  .L_code-right-side .L_code-right-footer a.L_code_clause {
    color: var(--primary);
    cursor: pointer;
  }
}

/*# sourceMappingURL=logincode.css.map */

/* Aliyun-style auth page override */
body {
  margin: 0;
}

.L_code.aliyun-auth-page {
  position: relative;
  display: block;
  width: 100%;
  height: 100vh;
  min-height: 760px;
  overflow: hidden;
  background:
    radial-gradient(circle at 45% 54%, rgba(255, 255, 255, 0.88) 0, rgba(255, 255, 255, 0.54) 18%, rgba(255, 255, 255, 0) 42%),
    linear-gradient(105deg, #fbf1e3 0%, #f7f2e9 31%, #eaf5f9 55%, #a7ddf6 100%);
  color: #1f2d3d;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", Arial, sans-serif;
}

.aliyun-auth-page .L_code-background,
.aliyun-auth-page .L_code-left-side::before {
  display: none !important;
}

.aliyun-auth-page .L_code-left-side {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 8;
  width: auto;
  min-width: 0;
  max-width: none;
  height: 72px;
  overflow: visible;
  background: transparent;
}

.aliyun-auth-page .L_code-left-side .L_code-content {
  height: 72px;
  padding: 16px 0 0 16px;
  overflow: visible;
}

.aliyun-auth-page .aliyun-brand-logo {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 18px 0 0;
  background: linear-gradient(90deg, rgba(255, 241, 224, 0.98) 0%, rgba(255, 241, 224, 0.88) 62%, rgba(255, 241, 224, 0) 100%);
}

.aliyun-auth-page .aliyun-brand-logo img {
  display: block;
  max-width: 168px;
  object-fit: contain;
}

.aliyun-auth-page .GoBackToTheHomepage {
  display: none !important;
}

.aliyun-auth-page .L_code-right-side {
  position: static;
  display: block;
  width: 100%;
  height: 100vh;
  min-height: 760px;
  overflow: visible;
  padding: 0;
  background: none !important;
}

.aliyun-auth-page .L_code-right-content {
  position: absolute;
  left: 50%;
  top: 29%;
  z-index: 5;
  width: 31.7vw;
  min-width: 720px;
  max-width: 820px;
  transform: translateX(-50%);
}

.aliyun-auth-page .L_code-right-side .L_code-right-form,
.aliyun-auth-page .L_code-right-side.no_wx .L_code-right-form {
  position: relative;
  top: 0;
  display: flex;
  flex-direction: row;
  align-items: stretch;
  width: 100%;
  min-height: 444px;
  max-height: 54vh;
  overflow: hidden;
  padding: 40px 0;
  border-radius: 0;
  background: rgba(246, 252, 255, 0.94);
  box-shadow: none;
}

.aliyun-auth-page .L_code-right-side.wx.right .L_code-right-form {
  flex-direction: row-reverse;
}

.aliyun-auth-page .L_code-right-side.no_wx .L_code-right-form::before {
  content: "登录";
  display: flex;
  width: 280px;
  min-width: 280px;
  padding: 26px 40px 0 64px;
  border-right: 1px solid rgba(145, 167, 191, 0.26);
  color: #111827;
  font-size: 30px;
  font-weight: 700;
  line-height: 1;
}

.aliyun-auth-page.aliyun-auth-register .L_code-right-side.no_wx .L_code-right-form::before,
.aliyun-auth-page .L_code-right-side.aliyun-register-side.no_wx .L_code-right-form::before {
  content: "注册";
}

.aliyun-auth-page .L_code-right-side .L_code-right-form .L_code-scan-login {
  width: 280px;
  min-width: 280px;
  margin-top: 0;
  padding: 26px 40px 0 64px;
  border-right: 1px solid rgba(145, 167, 191, 0.26);
  gap: 14px;
  justify-content: flex-start;
}

.aliyun-auth-page .L_code-right-side.right .L_code-right-form .L_code-scan-login {
  border-right: none;
  border-left: 1px solid rgba(145, 167, 191, 0.26);
}

.aliyun-auth-page .L_code-right-side .L_code-right-form .L_code-scan-login::before {
  content: "登录";
  align-self: flex-start;
  margin-bottom: 16px;
  color: #111827;
  font-size: 30px;
  font-weight: 700;
  line-height: 1;
}

.aliyun-auth-page .L_code-right-side .L_code-right-form .L_code-scan-login .qrCodeContainer {
  width: 150px;
  height: 150px;
  align-self: flex-start;
}

.aliyun-auth-page .L_code-right-side .L_code-right-form .L_code-scan-login .qrCodeContainer .codetip-inner {
  display: none;
}

.aliyun-auth-page .L_code-right-side .L_code-right-form .L_code-scan-login .wechat-login {
  align-self: flex-start;
  color: #5f6b7a;
  font-size: 13px;
}

.aliyun-auth-page .L_code-right-side .L_code-right-form .L_code-login-form,
.aliyun-auth-page .L_code-right-side.no_wx .L_code-right-form .L_code-login-form {
  flex: 1;
  min-width: 0;
  max-height: calc(54vh - 80px);
  overflow-y: auto;
  padding: 24px 52px 0 52px;
}

.aliyun-auth-page .L_code-login-form::-webkit-scrollbar {
  width: 4px;
}

.aliyun-auth-page .L_code-login-form::-webkit-scrollbar-thumb {
  background: rgba(110, 132, 160, 0.24);
}

.aliyun-auth-page .L_code-right-side .L_code-right-form .L_code-login-form .L_code-form-content {
  align-items: center;
  padding: 0;
  margin-bottom: 24px;
  border-bottom: none;
}

.aliyun-auth-page .L_code-right-side .L_code-right-form .L_code-login-form .code_login-tab {
  gap: 34px;
  width: auto;
  padding-right: 0;
}

.aliyun-auth-page .L_code-right-side .L_code-right-form .L_code-login-form .code_login-tab .login-tab-separate {
  display: none;
}

.aliyun-auth-page .L_code-right-side .L_code-right-form .L_code-login-form .code_login-tab .login-tab-item,
.aliyun-auth-page .L_code-right-side.no_wx .L_code-right-form .L_code-login-form .code_login-tab .login-tab-item {
  margin: 0;
  color: #1f2937;
  font-size: 15px;
  font-weight: 700;
}

.aliyun-auth-page .L_code-right-side .L_code-right-form .L_code-login-form .code_login-tab .login-tab-item.active {
  color: #1677ff !important;
}

.aliyun-auth-page .L_code-right-side .L_code-right-form .L_code-login-form .transitionSwitching {
  bottom: -8px;
  height: 2px;
  background: #1677ff;
}

.aliyun-auth-page .text-register {
  position: static;
  margin-left: auto;
  color: #1677ff;
  font-size: 13px;
}

.aliyun-auth-page .text-register p {
  margin: 0;
}

.aliyun-auth-page .text-primary {
  color: #1677ff !important;
}

.aliyun-auth-page .L_code-login-form h3 {
  margin: -8px 0 16px;
  font-size: 13px;
  line-height: 1.6;
}

.aliyun-auth-page .L_code-right-side .form-group {
  position: relative;
  width: 100%;
  margin-bottom: 18px;
}

.aliyun-auth-page .L_code-right-side .form-group > label,
.aliyun-auth-page .L_code-right-side .form-group > .d-flex label {
  position: absolute;
  left: 16px;
  top: 50%;
  z-index: 2;
  margin: 0;
  transform: translateY(-50%);
  color: #1f2937;
  font-size: 14px;
  font-weight: 500;
  pointer-events: none;
}

.aliyun-auth-page .L_code-right-side .form-group > .d-flex {
  display: block !important;
}

.aliyun-auth-page .L_code-right-side .form-control {
  width: 100%;
  height: 40px;
  padding: 8px 12px 8px 92px;
  border: 1px solid #d6dbe3;
  border-radius: 0;
  background: #fff;
  color: #1f2937;
  font-size: 14px;
  line-height: 22px;
  box-shadow: none;
}

.aliyun-auth-page .L_code-right-side select.form-control {
  padding-left: 14px;
}

.aliyun-auth-page .L_code-right-side .input-group {
  width: 100%;
}

.aliyun-auth-page .L_code-right-side .input-group .form-control {
  flex: 1;
}

.aliyun-auth-page .L_code-right-side .input-group-append {
  height: 40px;
}

.aliyun-auth-page .L_code-right-side .input-group-append .btn {
  height: 40px;
  min-width: 104px;
  background: #1677ff;
}

.aliyun-auth-page .L_code-right-side .custom-dropdown-selection {
  height: 40px;
  line-height: 38px;
}

.aliyun-auth-page .L_code-right-side .mt-3 {
  margin-top: 20px !important;
}

.aliyun-auth-page .L_code-right-side .mt-3 .btn-primary,
.aliyun-auth-page .L_code-right-side .btn-primary {
  height: 40px;
  border-radius: 0;
  background: #1677ff;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  line-height: 22px;
}

.aliyun-auth-page .L_code-right-side .mt-3 .btn-primary:hover,
.aliyun-auth-page .L_code-right-side .btn-primary:hover {
  background: #0958d9;
}

.aliyun-auth-page .L_code-right-side .Oauth_login {
  margin-top: 18px !important;
  gap: 10px;
}

.aliyun-auth-page .L_code-right-side .Oauth_login .other-login {
  justify-content: flex-start;
  padding: 0;
}

.aliyun-auth-page .L_code-right-side .Oauth_login .other-login .gray-line {
  display: none;
}

.aliyun-auth-page .L_code-right-side .Oauth_login .list-inline {
  justify-content: flex-start;
  padding: 0;
}

.aliyun-auth-page .L_code-right-side .Oauth_login .list-inline .social-list-item {
  width: 22px;
  height: 22px;
}

.aliyun-auth-page .serviceTerms {
  align-items: flex-start;
  margin: 12px 0 4px;
  font-size: 12px;
  line-height: 1.6;
}

.aliyun-auth-page .L_code-right-side .L_code-right-footer {
  left: 50%;
  bottom: 24px;
  z-index: 6;
  width: 31.7vw;
  min-width: 720px;
  max-width: 820px;
  transform: translateX(-50%);
  justify-content: flex-start;
}

.aliyun-auth-page .L_code-right-side .L_code-right-footer a {
  color: rgba(31, 41, 55, 0.58);
  font-size: 12px;
  line-height: 20px;
}

.aliyun-auth-page .L_code-right-side .L_code-right-footer a.L_code_clause {
  color: rgba(22, 119, 255, 0.82);
}

@media (max-width: 980px) {
  .L_code.aliyun-auth-page {
    min-height: 100vh;
    overflow-y: auto;
    background-size: cover;
    background-position: center top;
  }

  .aliyun-auth-page .L_code-left-side {
    position: relative;
    width: 100%;
    height: 64px;
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(10px);
  }

  .aliyun-auth-page .L_code-left-side .L_code-content {
    height: 64px;
    padding: 0 18px;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .aliyun-auth-page .aliyun-brand-logo {
    min-height: 40px;
    background: transparent;
  }

  .aliyun-auth-page .GoBackToTheHomepage {
    display: inline-flex !important;
    color: #5f6b7a;
    font-size: 14px;
  }

  .aliyun-auth-page .L_code-right-side {
    height: auto;
    min-height: calc(100vh - 64px);
    padding: 24px 16px 64px;
  }

  .aliyun-auth-page .L_code-right-content {
    position: static;
    width: 100%;
    min-width: 0;
    max-width: 560px;
    margin: 0 auto;
    transform: none;
  }

  .aliyun-auth-page .L_code-right-side .L_code-right-form,
  .aliyun-auth-page .L_code-right-side.no_wx .L_code-right-form {
    flex-direction: column-reverse !important;
    width: 100%;
    min-height: 0;
    max-height: none;
    padding: 28px 22px 34px !important;
    background: rgba(255, 255, 255, 0.94);
  }

  .aliyun-auth-page .L_code-right-side.no_wx .L_code-right-form::before {
    display: none;
  }

  .aliyun-auth-page .L_code-right-side .L_code-right-form .L_code-scan-login {
    width: 100%;
    min-width: 0;
    padding: 26px 0 0;
    border: 0 !important;
  }

  .aliyun-auth-page .L_code-right-side .L_code-right-form .L_code-login-form,
  .aliyun-auth-page .L_code-right-side.no_wx .L_code-right-form .L_code-login-form {
    max-height: none;
    padding: 0 !important;
  }

  .aliyun-auth-page .L_code-right-side .L_code-right-form .L_code-login-form .L_code-form-content {
    flex-wrap: wrap;
    gap: 10px;
  }

  .aliyun-auth-page .text-register {
    width: 100%;
    margin-left: 0;
    text-align: left;
  }

  .aliyun-auth-page .L_code-right-side .form-group > label,
  .aliyun-auth-page .L_code-right-side .form-group > .d-flex label {
    font-size: 13px;
  }

  .aliyun-auth-page .L_code-right-side .form-control {
    padding-left: 82px;
  }

  .aliyun-auth-page .L_code-right-side .L_code-right-footer {
    position: static;
    width: 100%;
    min-width: 0;
    max-width: none;
    margin-top: 20px;
    transform: none;
  }
}

/* Aliyun auth overlap fixes */
.aliyun-auth-page .L_code-left-side::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  width: 270px;
  height: 76px;
  background: linear-gradient(90deg, #fff1e2 0%, rgba(255, 241, 226, 0.98) 66%, rgba(255, 241, 226, 0) 100%);
  pointer-events: none;
}

.aliyun-auth-page .L_code-left-side .L_code-content {
  z-index: 2;
}

.aliyun-auth-page .aliyun-brand-logo {
  background: transparent;
}

.aliyun-auth-page .L_code-right-side .L_code-right-form,
.aliyun-auth-page .L_code-right-side.no_wx .L_code-right-form {
  background: #f6fcff !important;
}

.aliyun-auth-page .code_login-tab > strong {
  display: none !important;
}

.aliyun-auth-page .L_code-right-side .form-group > label,
.aliyun-auth-page .L_code-right-side .form-group > .d-flex label {
  position: static;
  display: block;
  margin: 0 0 6px;
  transform: none;
  color: #334155;
  font-size: 13px;
  font-weight: 500;
  line-height: 20px;
  pointer-events: auto;
}

.aliyun-auth-page .L_code-right-side .form-group > .d-flex {
  display: flex !important;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 6px;
}

.aliyun-auth-page .L_code-right-side .form-control {
  height: 42px;
  padding: 8px 12px;
}

.aliyun-auth-page .L_code-right-side .input-group .form-control {
  min-width: 0;
}

.aliyun-auth-page .L_code-right-side .custom-dropdown-selection {
  height: 42px;
  line-height: 40px;
}

.aliyun-auth-page .L_code-right-side .input-group-append {
  height: 42px;
}

.aliyun-auth-page .L_code-right-side .input-group-append .btn {
  height: 42px;
}

.aliyun-auth-page .L_code-right-side .mt-3 .btn-primary,
.aliyun-auth-page .L_code-right-side .btn-primary {
  height: 42px;
}

.aliyun-auth-page .L_code-right-side .L_code-right-form .L_code-login-form,
.aliyun-auth-page .L_code-right-side.no_wx .L_code-right-form .L_code-login-form {
  max-height: calc(58vh - 80px);
}

@media (max-width: 980px) {
  .aliyun-auth-page .L_code-left-side::after {
    width: 220px;
    height: 64px;
    background: rgba(255, 255, 255, 0.9);
  }

  .aliyun-auth-page .L_code-right-side .form-control {
    padding-left: 12px;
  }

  .aliyun-auth-page .L_code-right-side .L_code-right-form .L_code-login-form,
  .aliyun-auth-page .L_code-right-side.no_wx .L_code-right-form .L_code-login-form {
    max-height: none;
  }
}

/* Login bg and phone country selector compatibility */
.L_code.aliyun-auth-page {
  background:
    radial-gradient(circle at 45% 54%, rgba(255, 255, 255, 0.88) 0, rgba(255, 255, 255, 0.54) 18%, rgba(255, 255, 255, 0) 42%),
    linear-gradient(105deg, #fbf1e3 0%, #f7f2e9 31%, #eaf5f9 55%, #a7ddf6 100%) !important;
}

.aliyun-auth-page .L_code-left-side::after {
  background: linear-gradient(90deg, #fbf1e3 0%, rgba(251, 241, 227, 0.96) 70%, rgba(251, 241, 227, 0) 100%);
}

.aliyun-auth-page .L_code-right-side .input-group {
  display: flex;
  flex-wrap: nowrap;
  align-items: stretch;
}

.aliyun-auth-page .L_code-right-side .input-group .custom-dropdown {
  flex: 0 0 116px;
  width: 116px;
  min-width: 116px;
  margin: 0;
  z-index: 8;
}

.aliyun-auth-page .L_code-right-side .input-group .custom-dropdown-selection {
  width: 116px;
  height: 42px;
  padding: 0 24px 0 10px;
  overflow: hidden;
  border: 1px solid #d6dbe3;
  border-right: 0;
  background: #fff;
  color: #334155;
  font-size: 13px;
  line-height: 40px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.aliyun-auth-page .L_code-right-side .input-group .custom-dropdown-list {
  z-index: 30;
  width: 168px;
  min-width: 168px;
  border: 1px solid #d6dbe3;
  background: #fff;
}

.aliyun-auth-page .L_code-right-side .input-group .custom-dropdown + input[type="hidden"] + .form-control,
.aliyun-auth-page .L_code-right-side .input-group .custom-dropdown + .form-control {
  flex: 1 1 auto;
  width: auto;
  min-width: 0;
  padding-left: 12px;
}

.aliyun-auth-page .L_code-right-side .input-group .custom-dropdown + input[type="hidden"] + .form-control {
  border-left-color: #d6dbe3;
}

@media (max-width: 980px) {
  .L_code.aliyun-auth-page {
    background:
      radial-gradient(circle at 50% 26%, rgba(255, 255, 255, 0.92) 0, rgba(255, 255, 255, 0.5) 30%, rgba(255, 255, 255, 0) 58%),
      linear-gradient(145deg, #fbf1e3 0%, #eef7fb 48%, #a7ddf6 100%) !important;
  }

  .aliyun-auth-page .L_code-right-side .input-group {
    flex-wrap: wrap;
    gap: 8px 0;
  }

  .aliyun-auth-page .L_code-right-side .input-group .custom-dropdown {
    flex: 0 0 100%;
    width: 100%;
    min-width: 100%;
  }

  .aliyun-auth-page .L_code-right-side .input-group .custom-dropdown-selection {
    width: 100%;
    border-right: 1px solid #d6dbe3;
  }

  .aliyun-auth-page .L_code-right-side .input-group .custom-dropdown + input[type="hidden"] + .form-control,
  .aliyun-auth-page .L_code-right-side .input-group .custom-dropdown + .form-control {
    flex-basis: 100%;
    width: 100%;
  }
}

/* QQ group QR in the original left-column style. */
.aliyun-auth-page .L_code-right-side.no_wx .L_code-right-form::before,
.aliyun-auth-page .L_code-right-side.no_wx .L_code-right-form::after,
.aliyun-auth-page .L_code-right-side.no_wx .L_code-right-form .L_code-login-form::before {
  content: none !important;
  display: none !important;
}

.aliyun-auth-page .aliyun-auth-aside {
  box-sizing: border-box;
  display: flex;
  width: 280px;
  min-width: 280px;
  padding: 26px 28px 0;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  border-right: 1px solid rgba(145, 167, 191, 0.26);
  background: transparent;
  text-align: center;
}

.aliyun-auth-page .aliyun-auth-aside-title {
  width: 100%;
  margin: 0 0 14px;
  overflow: hidden;
  color: #111827;
  font-size: clamp(18px, 2vw, 25px);
  font-weight: 700;
  line-height: 1.25;
  text-align: center;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.aliyun-auth-page .aliyun-auth-qr-card {
  display: flex;
  width: 136px;
  height: 136px;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  padding: 5px;
  border: 1px solid #e3e9f0;
  border-radius: 5px;
  background: #ffffff;
  box-sizing: border-box;
}

.aliyun-auth-page .aliyun-auth-qr-card img {
  display: block;
  width: 124px;
  height: 124px;
  object-fit: contain;
}

.aliyun-auth-page .aliyun-auth-qr-tip {
  width: 100%;
  margin: 10px 0 0;
  color: #5f6b7a;
  font-size: 12px;
  line-height: 1.5;
  text-align: center;
}

@media (max-width: 980px) {
  .aliyun-auth-page .aliyun-auth-aside {
    display: none;
  }
}
