﻿:root {
  font-family: "Microsoft YaHei", "PingFang SC", Arial, sans-serif;
 
    --primary: #1e88e5;
    --primary-dark: #1565c0;
    --primary-light: #e3f2fd;
    --primary-gradient: linear-gradient(135deg, #1565c0 0%, #42a5f5 100%);
    --bg: #f0f5ff;
    --card-shadow: 0 2px 12px rgba(30, 136, 229, 0.10);
    --text: #2c3e50;
    --text-light: #7f8c9b;
}
* {
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  height: 100%;
  margin: 0;
}

.login-page {
    position: relative;
    display: flex;
    overflow: hidden;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.1); /* 轻微阴影 */
    border: 1px solid transparent; /* 透明边框 */
}

    .login-page::before {
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        inset: 0;
        background: linear-gradient(30deg, #00a2ff, #317eb4, #0052d9);
        /*background: linear-gradient(30deg, #00a2ff, #53a979, #0052d9);*/
        /*background: url(../images/bg.jpg) no-repeat;*/
        /* animation: login-background-hue 5s linear infinite;*/
        content: "";
        pointer-events: none;
        will-change: filter;
    }

@keyframes login-background-hue {
    100% {
        filter: hue-rotate(360deg)
    }
}

.login-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  pointer-events: none;
}

.login-orb-left {
  bottom: -100px;
  left: -60px;
  width: 360px;
  height: 360px;
  background: rgba(255, 87, 174, 0.24);
}

.login-orb-right {
  top: -80px;
  right: -40px;
  width: 320px;
  height: 320px;
  background: rgba(117, 89, 255, 0.24);
}

.login-shell {
  position: relative;
  z-index: 1;
  display: grid;
  width: min(1120px, calc(100vw - 80px));
  min-height: 100vh;
  margin: 0 auto;
  align-items: center;
  grid-template-columns: minmax(0, 1fr) 410px;
  gap: 92px;
}

.login-brand {
  padding-left: 28px;
  text-shadow: 0 8px 24px rgba(25, 11, 52, 0.4);
}

.login-brand-logo {
  width: 104px;
  height: 104px;
  margin-bottom: 24px;
  object-fit: contain;
  filter: drop-shadow(0 12px 26px rgba(0, 0, 0, 0.2));
}

.login-brand h1 {
  max-width: 620px;
  margin: 0 0 18px;
  font-size: 42px;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.login-brand p {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 17px;
  letter-spacing: 0.22em;
}

.login-card {
  padding: 44px 42px 38px;
  border: 1px solid rgba(255, 255, 255, 0.44);
  border-radius: 22px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.08));
  box-shadow: 0 28px 80px rgba(14, 8, 34, 0.45);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.login-card-header {
  margin-bottom: 32px;
}

.login-card-header h2 {
  margin: 0 0 8px;
  font-size: 28px;
  font-weight: 600;
}

.login-card-header p {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
}

.login-field {
  position: relative;
  margin-bottom: 22px;
}

.login-field > .layui-icon {
  position: absolute;
  top: 50%;
  left: 16px;
  z-index: 1;
  color: rgba(255, 255, 255, 0.82);
  font-size: 20px;
  transform: translateY(-50%);
}

.login-field .layui-input {
  height: 48px;
  padding-left: 48px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 10px;
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  box-shadow: none;
}

.login-field .layui-input::placeholder {
  color: rgba(255, 255, 255, 0.58);
}

.login-field .layui-input:focus {
  border-color: rgba(255, 255, 255, 0.9) !important;
  background: rgba(255, 255, 255, 0.18);
}

.login-field .layui-input:-webkit-autofill,
.login-field .layui-input:-webkit-autofill:hover,
.login-field .layui-input:-webkit-autofill:focus,
.login-field .layui-input:-webkit-autofill:active {
  border-color: rgba(255, 255, 255, 0.32) !important;
  caret-color: #fff;
  -webkit-text-fill-color: #fff !important;
  transition: background-color 9999s ease-out 0s;
}

.slider-verification {
  margin-bottom: 0;
}

.slider-track {
  position: relative;
  height: 48px;
  overflow: hidden;
  border: 1px solid #d9d9d9;
  border-radius: 10px;
  color: #666;
  background: #e8e8e8;
  transition: border-color 0.2s ease, background-color 0.2s ease;
}

.slider-text {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 58px;
  font-size: 14px;
  pointer-events: none;
  user-select: none;
}

.slider-handle {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 48px;
  height: 100%;
  padding: 0;
  border: 0;
  border-right: 1px solid #d0d0d0;
  border-radius: 9px;
  color: #666;
  font-size: 18px;
  background: #fff;
  box-shadow: 2px 0 7px rgba(0, 0, 0, 0.12);
  cursor: grab;
  touch-action: none;
  user-select: none;
  transition: transform 0.2s ease;
}

.slider-handle:active {
  cursor: grabbing;
}

.slider-verification.is-dragging .slider-handle {
  transition: none;
}

.slider-verification.is-error .slider-track {
  box-shadow: 0 0 0 2px rgba(255, 77, 79, 0.16);
}

.slider-verification.is-success .slider-track {
  border-color: #52c41a;
  color: #fff;
  background: #52c41a;
}

.slider-verification.is-success .slider-handle {
  border-right-color: transparent;
  color: #52c41a;
  cursor: default;
}

.slider-verification.is-verifying .slider-handle {
  cursor: wait;
}

.slider-error {
  min-height: 20px;
  margin: 6px 2px 0;
  color: #ff4d4f;
  font-size: 13px;
  line-height: 20px;
}

.login-options {
  min-height: 32px;
  margin: 2px 0 18px;
}

.login-options .layui-form-checkbox[lay-skin="primary"] span {
  color: rgba(255, 255, 255, 0.82);
}

.login-options .layui-form-checkbox[lay-skin="primary"] i {
  border-color: rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.1);
}

.login-submit {
  height: 48px;
  border-radius: 10px;
  color: #4b2d70;
  font-size: 16px;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 14px 28px rgba(25, 12, 54, 0.22);
}

.login-submit:hover {
  color: #3e205f;
  background: #fff;
}

.login-submit.layui-btn-disabled {
  color: #8f80a2;
  background: rgba(255, 255, 255, 0.78);
}

.login-page .layui-layer-msg .layui-layer-content {
  color: rgba(0, 0, 0, 0.85);
}

.lock-shell {
  position: relative;
  z-index: 1;
  display: flex;
  width: min(430px, calc(100vw - 40px));
  min-height: 100vh;
  align-items: center;
  justify-content: center;
}

.lock-card {
  width: 100%;
  text-align: center;
}

.lock-logo {
  width: 72px;
  height: 72px;
  margin-bottom: 18px;
  object-fit: contain;
}

.lock-user-avatar {
  display: grid;
  width: 62px;
  height: 62px;
  margin: 0 auto 18px;
  border: 2px solid rgba(255, 255, 255, 0.72);
  border-radius: 50%;
  color: #fff;
  background: rgba(255, 255, 255, 0.18);
  box-shadow: 0 10px 28px rgba(25, 12, 54, 0.2);
  font-size: 22px;
  font-weight: 600;
  place-items: center;
}

.lock-card-header {
  margin-bottom: 24px;
}

.lock-form {
  text-align: left;
}

.lock-error,
.lock-field-error {
  display: block;
  color: #ffd2d5;
  font-size: 13px;
  line-height: 20px;
}

.lock-error ul {
  margin: 0 0 12px;
  padding: 0;
  list-style: none;
  text-align: center;
}

.lock-field-error {
  min-height: 20px;
  margin: -14px 2px 10px;
}

.lock-logout-form {
  margin-top: 16px;
}

.lock-logout-button {
  padding: 6px 10px;
  border: 0;
  color: rgba(255, 255, 255, 0.8);
  background: transparent;
  cursor: pointer;
}

.lock-logout-button:hover {
  color: #fff;
}

@media (max-width: 980px) {
  .login-shell {
    width: min(430px, calc(100vw - 40px));
    grid-template-columns: 1fr;
  }

  .login-brand {
    display: none;
  }
}

.layui-form-checkbox[lay-skin=primary] > div{
    color:#fff !important;
}

/* 登录入口使用独立作用域，避免视觉调整影响复用本文件的锁屏页面。 */
.login-entry-page {
  display: flex;
  height: 100dvh;
  overflow: hidden;
  padding: 10px;
  border: 0;
  align-items: center;
  justify-content: center;
  color: #202a3b;
  background: #f4f6fa;
  text-shadow: none;
}

.login-entry-page::before {
  background: #f4f6fa;
  filter: none;
}

.login-entry-shell {
  --login-panel-curve-width: clamp(112px, 8vw, 164px);
  position: relative;
  z-index: 1;
  display: grid;
  width: 100%;
  height: 100%;
  min-height: 0;
  overflow: hidden;
  border: 1px solid #e8ebf2;
  border-radius: 16px;
  background: #fbfcfe;
  box-shadow: 0 16px 42px rgba(31, 55, 88, 0.14);
  grid-template-columns: minmax(540px, 1.06fr) minmax(560px, 0.94fr);
  animation: login-entry-shell-in 0.5s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.login-showcase {
    position: relative;
    z-index: 0;
    display: flex;
    min-height: 0;
    /* margin-block: 80px;*/
    overflow: hidden;
    border-radius: 0;
    align-items: center;
    color: #fff;
    background: linear-gradient(135deg, #1565c0 0%, #42a5f5 100%);
    /* background: linear-gradient(135deg, #2c3e50 0%, #3d5467 100%);*/
}

.login-showcase::before {
  position: absolute;
  right: -120px;
  bottom: -140px;
  width: 420px;
  height: 420px;
  border: 82px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  content: "";
  pointer-events: none;
  animation: login-showcase-ring-primary 14s ease-in-out infinite;
  will-change: transform;
}

.login-showcase::after {
  position: absolute;
  top: -160px;
  left: -120px;
  width: 360px;
  height: 360px;
  border: 68px solid rgba(255, 255, 255, 0.06);
  border-radius: 50%;
  content: "";
  pointer-events: none;
  animation: login-showcase-ring-secondary 18s ease-in-out infinite;
  will-change: transform;
}

.login-showcase-content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-height: 100%;
  overflow-y: auto;
  padding: clamp(64px, 6vw, 108px);
  padding-right: calc(clamp(64px, 6vw, 108px) + 24px);
  scrollbar-width: none;
}

.login-showcase-content::-webkit-scrollbar {
  display: none;
}

.login-showcase-kicker {
  display: inline-block;
  margin-bottom: 22px;
  color: rgba(255, 255, 255, 0.78);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 12px;
  letter-spacing: 0.24em;
}

.login-showcase h1 {
  margin: 0;
  font-size: clamp(48px, 4vw, 66px);
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: 0.04em;
}

.login-showcase-content > p {
  max-width: 650px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 17px;
  line-height: 1.9;
}

.login-showcase-features {
  display: grid;
  max-width: 680px;
  margin-top: 44px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.login-showcase-feature {
  min-height: 126px;
  padding: 20px 18px;
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.1);
}

.login-showcase-feature .layui-icon {
  display: block;
  margin-bottom: 16px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 26px;
}

.login-showcase-feature strong,
.login-showcase-feature span {
  display: block;
}

.login-showcase-feature strong {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.08em;
}

.login-showcase-feature span {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 12px;
  line-height: 1.6;
}

.login-showcase-brand {
  display: flex;
  margin-top: 48px;
  align-items: center;
  gap: 16px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  letter-spacing: 0.12em;
}

.login-showcase-brand span {
  width: 42px;
  height: 1px;
  background: rgba(255, 255, 255, 0.68);
}

.login-showcase-brand strong {
  font-weight: 400;
}

.login-panel {
    position: relative;
    z-index: 1;
    display: flex;
    min-height: 98%;
    overflow: visible;
    padding: clamp(52px, 6vw, 104px);
    background: #fbfcfe;
    scrollbar-width: none;
}

.login-panel::-webkit-scrollbar {
  display: none;
}

.login-panel::before {
  position: absolute;
  top: 0;
  right: 0;
  width: 112px;
  height: 4px;
  background: linear-gradient(90deg, #2f75a3, #4b91b8);
  content: "";
  z-index: 2;
}

.login-panel::after {
  position: absolute;
  right: -150px;
  bottom: -170px;
  width: 360px;
  height: 360px;
  border: 72px solid #f2f8fd;
  border-radius: 50%;
  content: "";
  pointer-events: none;
  animation: login-panel-ring-float 16s ease-in-out infinite;
  will-change: transform;
  z-index: 0;
}

/* 使用独立 SVG 保持双转折曲线稳定，避免改变右侧表单宽度和滑块计算。 */
.login-panel-curve {
  position: absolute;
  top: -1px;
  left: 1px;
  z-index: 1;
  display: block;
  width: var(--login-panel-curve-width);
  height: calc(100% + 2px);
  overflow: visible;
  pointer-events: none;
  shape-rendering: geometricPrecision;
  transform: translateX(-100%);
}

.login-panel-curve-shadow {
  fill: #eef3f7;
}

.login-panel-curve-fill {
  fill: #fbfcfe;
}

.login-panel-inner {
  position: relative;
  z-index: 2;
  width: min(440px, 100%);
  margin: auto;
  margin-left:20px;
}

.login-panel-brand {
  display: flex;
  margin-bottom: 48px;
  align-items: center;
  gap: 14px;
}

.login-panel-brand-mark {
  display: grid;
  width: 44px;
  height: 44px;
  border: 1px solid #3992d0;
  color: #1683ec;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
  place-items: center;
}

.login-panel-brand strong,
.login-panel-brand small {
  display: block;
}

.login-panel-brand strong {
  color: #202a3b;
  font-size: 17px;
  font-weight: 600;
  letter-spacing: 0.18em;
}

.login-panel-brand small {
  margin-top: 3px;
  color: #929aa8;
  font-size: 11px;
  letter-spacing: 0.1em;
}

.login-entry-page .login-card-header {
  margin-bottom: 38px;
}

.login-card-eyebrow {
  display: block;
  margin-bottom: 12px;
  color: #1683ec;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
}

.login-entry-page .login-card-header h2 {
  margin-bottom: 10px;
  color: #202a3b;
  font-size: 34px;
  font-weight: 600;
  letter-spacing: 0.03em;
}

.login-entry-page .login-card-header p {
  color: #7d8797;
  font-size: 14px;
  line-height: 1.7;
}

.login-form-item {
  margin-bottom: 22px;
}

.login-form-item > label {
  display: block;
  margin-bottom: 9px;
  color: #445066;
  font-size: 14px;
  font-weight: 600;
}

.login-entry-page .login-field {
  margin-bottom: 0;
}

.login-entry-page .login-field > .layui-icon {
  left: 17px;
  color: #8a96a8;
  font-size: 19px;
}

    .login-entry-page .login-field .layui-input {
        height: 54px;
        padding: 0 16px 0 49px;
        border: 1.5px solid #dfe4ec;
        border-radius: 6px;
        color: #202a3b;
        background: #fff;
        box-shadow: none;
        transition: border-color 0.2s ease, box-shadow 0.2s ease;
    }

.login-entry-page .login-password-field .layui-input {
  padding-right: 54px;
}

.login-entry-page .password-visibility-toggle {
  position: absolute;
  top: 50%;
  right: 12px;
  z-index: 2;
  display: grid;
  width: 32px;
  height: 32px;
  padding: 0;
  border: 0;
  border-radius: 6px;
  place-items: center;
  color: #8a96a8;
  background: transparent;
  cursor: pointer;
  touch-action: manipulation;
  transform: translateY(-50%);
}

.login-entry-page .password-visibility-toggle:hover {
  color: #1683ec;
  background: #f2f8fd;
}

.login-entry-page .password-visibility-toggle:focus-visible {
  color: #1683ec;
  outline: 2px solid rgba(30, 159, 255, 0.24);
  outline-offset: 1px;
}

.login-entry-page .password-visibility-icon {
  font-size: 18px;
  line-height: 1;
  pointer-events: none;
}

.login-entry-page .login-field .layui-input::placeholder {
  color: #adb6c4;
}

.login-entry-page .login-field .layui-input:hover {
  border-color: #9cc9e8;
}

.login-entry-page .login-field .layui-input:focus {
  border-color: #1e9fff !important;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(30, 159, 255, 0.12);
}

.login-entry-page .login-field .layui-input:-webkit-autofill,
.login-entry-page .login-field .layui-input:-webkit-autofill:hover,
.login-entry-page .login-field .layui-input:-webkit-autofill:focus,
.login-entry-page .login-field .layui-input:-webkit-autofill:active {
  border-color: #dfe4ec !important;
  caret-color: #202a3b;
  -webkit-text-fill-color: #202a3b !important;
  -webkit-box-shadow: 0 0 0 1000px #fff inset !important;
}

.login-slider-item {
  margin-bottom: 4px;
}

.login-entry-page .slider-verification {
  margin-bottom: 0;
}

.login-entry-page .slider-track {
  height: 50px;
  border: 1px solid #dfe4ec;
  border-radius: 6px;
  color: #202a3b;
  background: #f4f6fa;
}

.login-entry-page .slider-text {
    padding: 0 58px;
    color: #202a3b;
    font-size: 13px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0)) -200% 0 / 200% 100% no-repeat, #7d8797;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: 2s linear 0s infinite normal none running shine;
}

.login-entry-page .slider-handle {
  display: flex;
  width: 48px;
  height: 48px;
  border: 1px solid #dfe4ec;
  border-radius: 5px;
  align-items: center;
  justify-content: center;
  color: #1683ec;
  background: #fff;
  box-shadow: 0 2px 8px rgba(49, 126, 180, 0.14);
  cursor: move;
  transition: transform 0.16s ease;
}

.login-entry-page .slider-handle-icon {
  font-size: 16px;
  line-height: 1;
  pointer-events: none;
}

.login-entry-page .slider-handle:hover {
  border-color: #9cc9e8;
  color: #008ff4;
  background: #fafdff;
  box-shadow: 0 4px 12px rgba(49, 126, 180, 0.2);
}

.login-entry-page .slider-verification.is-dragging .slider-track {
  border-color: #7cc2ee;
  box-shadow: 0 0 0 3px rgba(30, 159, 255, 0.1);
}

.login-entry-page .slider-verification.is-dragging .slider-handle {
  cursor: move;
  transition: none;
}

.login-entry-page .slider-verification.is-dragging .slider-text,
.login-entry-page .slider-verification.is-verifying .slider-text,
.login-entry-page .slider-verification.is-success .slider-text,
.login-entry-page .slider-verification.is-error .slider-text {
  background: none;
  -webkit-text-fill-color: currentColor;
  animation: none;
}

.login-entry-page .slider-verification.is-verifying .slider-track {
  border-color: #9cc9e8;
  color: #1683ec;
  background: #eef8ff;
}

.login-entry-page .slider-verification.is-verifying .slider-handle {
  color: #1683ec;
  cursor: wait;
}

.login-entry-page .slider-verification.is-verifying .slider-text,
.login-entry-page .slider-verification.is-success .slider-text {
  color: #1683ec;
}

.login-entry-page .slider-verification.is-success .slider-track {
  border-color: #1e9fff;
  color: #1683ec;
  background: #edf8ff;
}

.login-entry-page .slider-verification.is-success .slider-handle {
  border-color: #1e9fff;
  color: #fff;
  background: #1e9fff;
  box-shadow: none;
  cursor: default;
}

.login-entry-page .slider-verification.is-error .slider-track {
  border-color: #ff8b73;
  box-shadow: 0 0 0 3px rgba(255, 87, 34, 0.08);
}

.login-entry-page .slider-error {
  min-height: 20px;
  margin: 5px 2px 0;
  color: #ff5722;
  font-size: 12px;
  line-height: 20px;
}

.login-entry-page .login-options {
  min-height: 28px;
  margin: 0 0 22px;
}

.login-entry-page .layui-form-checkbox[lay-skin="primary"] > div,
.login-entry-page .layui-form-checkbox[lay-skin="primary"] span {
  color: #667286 !important;
  font-size: 13px;
}

.login-entry-page .layui-form-checkbox[lay-skin="primary"] i {
  border-color: #cbd3df;
  background: #fff;
}

.login-entry-page .layui-form-checked[lay-skin="primary"] i {
  border-color: #1e9fff !important;
  background: #1e9fff;
}

.login-entry-page .login-submit {
    width: 100%;
    height: 46px;
    line-height: 46px;
    background: var(--primary-gradient);
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    cursor: pointer;
    transition: all 0.3s;
    letter-spacing: 2px;
    box-shadow: 0 4px 16px rgba(21, 101, 192, 0.3);
    margin-top: 8px;
    /* height: 54px;
    border: 0;
    border-radius: 6px;
    color: #fff;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.28em;
    box-shadow: none;
    transition: background-color 0.2s ease;
    background: linear-gradient(145deg, #219ff8 0%, #1e9fff 100%);*/
    /*background: linear-gradient(135deg, #2c3e50 0%, #3d5467 100%);*/
}

.login-entry-page .login-submit > .layui-icon {
  margin-right: 6px;
}

.login-entry-page .login-submit:not(:disabled):hover {
  color: #fff;
  opacity: 1;
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(21, 101, 192, 0.4);
}

.login-entry-page .login-submit:not(:disabled):active {
  transform: translateY(0);
}

.login-entry-page .login-submit.layui-btn-disabled,
.login-entry-page .login-submit:disabled {
  color: #fff !important;
  background: var(--primary-gradient) !important;
  opacity: 1;
  transform: none;
  box-shadow: 0 4px 16px rgba(21, 101, 192, 0.3);
  cursor: wait !important;
}

.login-panel-footer {
  margin: 32px 0 0;
  color: #a0a9b6;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-align: center;
}

.login-entry-page .layui-layer-msg .layui-layer-content {
  color: rgba(0, 0, 0, 0.85);
}

/* 登录页动效限定在首次渲染和装饰层，避免干扰表单与滑块交互。 */
.login-showcase-content > .login-showcase-kicker,
.login-showcase-content > h1,
.login-showcase-content > p,
.login-showcase-content > .login-showcase-features,
.login-showcase-content > .login-showcase-brand,
.login-panel-inner > .login-panel-brand,
.login-panel-inner > .login-card-header,
.login-panel-inner > #loginForm,
.login-panel-inner > .login-panel-footer {
  animation: login-entry-content-in 0.55s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.login-showcase-content > .login-showcase-kicker {
  animation-delay: 0.08s;
}

.login-showcase-content > h1 {
  animation-delay: 0.14s;
}

.login-showcase-content > p {
  animation-delay: 0.2s;
}

.login-showcase-content > .login-showcase-features {
  animation-delay: 0.26s;
}

.login-showcase-content > .login-showcase-brand {
  animation-delay: 0.34s;
}

.login-panel-inner > .login-panel-brand {
  animation-delay: 0.12s;
}

.login-panel-inner > .login-card-header {
  animation-delay: 0.18s;
}

.login-panel-inner > #loginForm {
  animation-delay: 0.25s;
}

.login-panel-inner > .login-panel-footer {
  animation-delay: 0.34s;
}

@keyframes login-entry-shell-in {
  from {
    opacity: 0;
    transform: translateY(12px) scale(0.992);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes shine {
  0% {
    background-position: 200% 0;
  }

  100% {
    background-position: -200% 0;
  }
}

@keyframes login-entry-content-in {
  from {
    opacity: 0;
    transform: translateY(14px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes login-showcase-ring-primary {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }

  50% {
    transform: translate3d(-18px, -12px, 0);
  }
}

@keyframes login-showcase-ring-secondary {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }

  50% {
    transform: translate3d(14px, 18px, 0);
  }
}

@keyframes login-panel-ring-float {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }

  50% {
    transform: translate3d(-12px, -10px, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .login-entry-shell,
  .login-showcase::before,
  .login-showcase::after,
  .login-panel::after,
  .login-showcase-content > .login-showcase-kicker,
  .login-showcase-content > h1,
  .login-showcase-content > p,
  .login-showcase-content > .login-showcase-features,
  .login-showcase-content > .login-showcase-brand,
  .login-panel-inner > .login-panel-brand,
  .login-panel-inner > .login-card-header,
  .login-panel-inner > #loginForm,
  .login-panel-inner > .login-panel-footer {
    animation: none;
  }

  .login-entry-page .slider-text {
    background: none;
    -webkit-text-fill-color: currentColor;
    animation: none;
  }
}

@media (max-width: 1180px) {
  .login-entry-shell {
    grid-template-columns: minmax(360px, 0.78fr) minmax(460px, 1.22fr);
  }

  .login-showcase-content {
    padding: 48px;
  }

  .login-showcase h1 {
    font-size: 44px;
  }

  .login-panel {
    overflow: hidden;
    padding: 48px;
  }

  .login-panel-curve {
    display: none;
  }
}

@media (max-width: 980px) {
  .login-entry-page {
    padding: 24px;
  }

  .login-entry-shell {
    min-height: 0;
    grid-template-columns: 1fr;
  }

  .login-showcase {
    display: none;
  }

  .login-panel {
    padding: 44px 28px;
  }
}

@media (max-width: 500px) {
  .login-entry-page {
    padding: 0;
  }

  .login-entry-shell {
    min-height: 0;
    border: 0;
    border-radius: 0;
  }

  .login-panel {
    padding: 32px 22px;
  }

  .login-panel-brand {
    margin-bottom: 46px;
  }

  .login-entry-page .login-card-header h2 {
    font-size: 30px;
  }
}

/* 高度不足时同步压缩左右内容，避免依赖滚动才能操作登录按钮。 */
@media (max-height: 960px) {
  .login-entry-page {
    padding-block: clamp(4px, 1dvh, 10px);
  }

  .login-entry-shell {
    min-height: 0;
  }

  .login-showcase-content {
    padding-block: clamp(24px, 4dvh, 42px);
  }

  .login-showcase-kicker {
    margin-bottom: 14px;
  }

  .login-showcase-content > p {
    margin-top: 16px;
  }

  .login-showcase-features {
    margin-top: 26px;
  }

  .login-showcase-feature {
    min-height: 106px;
    padding: 15px;
  }

  .login-showcase-feature .layui-icon {
    margin-bottom: 10px;
  }

  .login-showcase-brand {
    margin-top: 26px;
  }

  .login-panel {
    padding-block: clamp(16px, 4dvh, 40px);
  }

  .login-panel-brand {
    margin-bottom: clamp(18px, 3dvh, 28px);
  }

  .login-card-eyebrow {
    margin-bottom: 8px;
  }

  .login-entry-page .login-card-header {
    margin-bottom: clamp(12px, 2dvh, 20px);
  }

  .login-entry-page .login-card-header h2 {
    margin-bottom: 8px;
    font-size: clamp(28px, 4dvh, 32px);
    line-height: 1.25;
  }

  .login-entry-page .login-card-header p {
    line-height: 1.5;
  }

  .login-form-item {
    margin-bottom: clamp(8px, 1.5dvh, 14px);
  }

  .login-slider-item {
    margin-bottom: 4px;
  }

  .login-form-item > label {
    margin-bottom: 6px;
  }

  .login-entry-page .login-field .layui-input {
    height: clamp(46px, 6dvh, 52px);
  }

  .login-entry-page .slider-track {
    height: clamp(44px, 5.5dvh, 48px);
  }

  .login-entry-page .slider-handle {
    width: clamp(44px, 5.5dvh, 48px);
    height: calc(clamp(44px, 5.5dvh, 48px) - 2px);
  }

  .login-entry-page .slider-error {
    min-height: 18px;
    margin-top: 3px;
    line-height: 18px;
  }

  .login-entry-page .login-options {
    min-height: 22px;
    margin-bottom: clamp(8px, 1.5dvh, 14px);
  }

  .login-entry-page .login-submit {
    height: clamp(44px, 5.5dvh, 46px);
    margin-top: 4px;
    line-height: clamp(44px, 5.5dvh, 46px);
  }

  .login-panel-footer {
    margin-top: 18px;
  }
}

@media (max-height: 720px) {
  .login-entry-page {
    padding-block: clamp(0px, 0.6dvh, 4px);
  }

  .login-showcase-content {
    padding-block: clamp(16px, 3dvh, 22px);
  }

  .login-showcase h1 {
    font-size: clamp(36px, 6dvh, 44px);
  }

  .login-showcase-content > p {
    margin-top: 12px;
    font-size: 15px;
    line-height: 1.6;
  }

  .login-showcase-features {
    margin-top: 18px;
  }

  .login-showcase-feature {
    min-height: 90px;
    padding: 12px;
  }

  .login-showcase-brand {
    margin-top: 18px;
  }

  .login-panel {
    padding-block: clamp(12px, 2.5dvh, 18px);
  }

  .login-panel-brand {
    margin-bottom: 12px;
  }

  .login-panel-brand-mark {
    width: 40px;
    height: 40px;
    font-size: 22px;
  }

  .login-card-eyebrow {
    margin-bottom: 4px;
  }

  .login-entry-page .login-card-header {
    margin-bottom: 10px;
  }

  .login-entry-page .login-card-header h2 {
    margin-bottom: 6px;
    font-size: 28px;
    line-height: 1.2;
  }

  .login-entry-page .login-card-header p {
    font-size: 13px;
    line-height: 1.4;
  }

  .login-form-item {
    margin-bottom: clamp(6px, 1dvh, 8px);
  }

  .login-slider-item {
    margin-bottom: 4px;
  }

  .login-form-item > label {
    margin-bottom: 4px;
    font-size: 13px;
    line-height: 1.4;
  }

  .login-entry-page .login-field .layui-input {
    height: 46px;
  }

  .login-entry-page .slider-track {
    height: 44px;
  }

  .login-entry-page .slider-handle {
    width: 44px;
    height: 42px;
  }

  .login-entry-page .slider-error {
    min-height: 16px;
    margin-top: 2px;
    line-height: 16px;
  }

  .login-entry-page .login-options {
    min-height: 20px;
    margin-bottom: 8px;
  }

  .login-entry-page .login-submit {
    height: 44px;
    margin-top: 0;
    line-height: 44px;
  }

  .login-panel-footer {
    display: none;
  }
}

@media (max-height: 520px) {
  .login-entry-page {
    padding-block: 0;
  }

  .login-panel {
    padding-block: 8px;
  }

  .login-panel-brand {
    margin-bottom: 8px;
    gap: 10px;
  }

  .login-panel-brand-mark {
    width: 36px;
    height: 36px;
    font-size: 20px;
  }

  .login-panel-brand small,
  .login-card-eyebrow,
  .login-entry-page .login-card-header p {
    display: none;
  }

  .login-entry-page .login-card-header {
    margin-bottom: 8px;
  }

  .login-entry-page .login-card-header h2 {
    margin-bottom: 0;
    font-size: 26px;
    line-height: 1.15;
  }

  .login-form-item {
    margin-bottom: 6px;
  }

  .login-slider-item {
    margin-bottom: 4px;
  }

  .login-form-item > label {
    margin-bottom: 3px;
    line-height: 1.3;
  }

  .login-entry-page .login-field .layui-input {
    height: 42px;
  }

  .login-entry-page .password-visibility-toggle {
    width: 30px;
    height: 30px;
  }

  .login-entry-page .slider-track {
    height: 42px;
  }

  .login-entry-page .slider-handle {
    width: 42px;
    height: 40px;
  }

  .login-entry-page .slider-error {
    margin-top: 1px;
  }

  .login-entry-page .login-options {
    min-height: 18px;
    margin-bottom: 6px;
  }

  .login-entry-page .login-submit {
    height: 42px;
    line-height: 42px;
  }
}
