/* ============================================================
 * Login.css â€?Login.html ç‹¬ç«‹æ ·å¼
 * ============================================================ */

/* è¦†ç›– viewport-adapt.js çš„æ ¹å­—å·ä¸Šé™ï¼?4pxâ†?8pxï¼‰ï¼Œæ‰‹æœºç«?vw/9.8 ä¿æŒä¸å˜ */
/* iOS 14 é™çº§ï¼šmin() éœ€è¦?Safari 14.1+ï¼ˆiOS 14.5+ï¼‰ï¼Œä½Žç‰ˆæœ¬ç”¨çº?calc å›žé€€ */
/* iOS Safari: -webkit-fill-available é¿å…å·¥å…·æ å˜åŒ–å¯¼è‡´å¸ƒå±€è·³åŠ¨ */
html { height: -webkit-fill-available; }
html { font-size: calc(100vw / 9.8); }
html { font-size: min(calc(100vw / 9.8), 48px); }
html {
            overflow-x: hidden;
            scrollbar-width: none;
            -ms-overflow-style: none;
        }
html::-webkit-scrollbar { display: none; }
*, *::before, *::after {
            -webkit-tap-highlight-color: transparent !important;
            box-sizing: border-box;
        }
body {
            margin: 0; padding: 0;
            width: 100%;
            min-height: 100vh;
            min-height: -webkit-fill-available;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', sans-serif;
            background: linear-gradient(135deg,
                #fce4ec, #f8bbd0, #e1bee7, #d1c4e9, #c5cae9, #bbdefb,
                #b3e5fc, #b2dfdb, #c8e6c9, #dcedc8, #f0f4c3, #fff9c4,
                #ffecb3, #ffe0b2, #ffccbc, #f8bbd0, #e1bee7, #c5cae9,
                #b3e5fc, #b2dfdb, #dcedc8, #fff9c4, #ffecb3, #fce4ec
            );
            background-size: 400% 400%;
            animation: macaronShift 12s ease-in-out infinite;
            position: relative;
            overflow-x: hidden;
            overflow-y: auto;
            scrollbar-width: none;
            -ms-overflow-style: none;
            /* iOS Safari: position:relative ç¡®ä¿ overflow-x:hidden ç”Ÿæ•ˆ */
            position: relative;
        }
body::-webkit-scrollbar { display: none; /* Chrome/Safari */ }
@keyframes macaronShift {
            0%   { background-position: 0% 50%; }
            25%  { background-position: 100% 0%; }
            50%  { background-position: 100% 100%; }
            75%  { background-position: 0% 100%; }
            100% { background-position: 0% 50%; }
        }
/* â•â•â•â•â•â• çˆªå°å‘¼å¸åŠ¨ç”» â•â•â•â•â•â• */
        @keyframes pawPulse {
            0%, 100% { transform: translateY(0) scale(1); }
            50%      { transform: translateY(-0.16rem) scale(1.08); }
        }
/* â•â•â•â•â•â• Logoå›¾æ ‡ï¼ˆåŠ¨ç”»é¢æ?/ æ”¯ä»˜å®åŒºåŸŸå…±ç”¨ï¼‰ â•â•â•â•â•â• */
.logo-icon {
            width: 1.83rem; height: 1.83rem;
            border-radius: 50%; margin: 0 auto 0.31rem;
            display: flex; align-items: center; justify-content: center;
            background-color: var(--theme-color);
            box-shadow: 0 0.21rem 0.52rem var(--theme-color-025);
        }
.logo-icon svg {
            width: 60%; height: 60%;
        }
/* åŠ¨ç”»é¢æ¿ï¼šlogo-icon å¡«æ»¡ */
        .login-anim-panel .logo-icon {
            width: 100%; height: 100%;
            display: flex; align-items: center; justify-content: center;
            background: none; border-radius: 0; box-shadow: none;
        }
.login-anim-panel .logo-icon svg {
            width: 60%; height: 60%;
        }
/* æ”¯ä»˜å®åŒºåŸ?logo-icon */
        .alipay-area .logo-icon {
            background: transparent;
            overflow: visible;
        }
.alipay-area .logo-icon svg {
            display: block;
            width: 100%; height: 100%;
            overflow: visible;
        }
.circle-bg {
            fill: var(--theme-color);
            color: var(--theme-color);
        }
/* â•â•â•â•â•â• pageContainerï¼šå®½åº¦æ’‘æ»¡ï¼Œé«˜åº¦è‡ªé€‚åº”å†…å®¹ â•â•â•â•â•â• */
        .page-container {
            width: 100%;
            overflow-x: hidden;
        }
/* â•â•â•â•â•â• çˆ¶çº§å±…ä¸­å¡ç‰‡ â•â•â•â•â•â• */
        .login-wrapper {
            min-height: 0;
            display: flex;
            flex-direction: column;
            align-items: center;
        }
.login-wrapper::-webkit-scrollbar { display: none; }
.login-card {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: flex-start;
            max-width: 12rem;
            box-sizing: border-box;
            margin: 0;
            flex-shrink: 0;
            min-height: 0;
        }
/* â•â•â•â•â•â• åŠ¨ç”»å·¦ï¼ˆ2/3ï¼?+ å¡ç‰‡çˆ¶æ¡†å³ï¼ˆ1/3ï¼‰ï¼Œå¼¹æ€§ç­‰æ¯?â•â•â•â•â•â• */
        .login-row {
            min-height: 0;
            width: 100%;
            box-sizing: border-box;
        }
.login-anim-panel {
            overflow: hidden;
            transition: flex 0.35s ease-out;
        }
.login-anim-inner {
            width: 100%; height: 100%;
            display: flex; align-items: center; justify-content: center;
            overflow: hidden;
        }
.login-card-box {
            min-height: 0;
        }
/* â•â•â•â•â•â• å®½å± â•â•â•â•â•â• */
        @media (min-width: 768px) {
            .login-card {
                max-width: 14rem;
                min-width: 0;
            }
.login-card-box {
                min-width: 10rem;
            }
.form-area {
                flex: 0 0 auto;
                width: auto;
                max-width: 12rem;
            }
.input-group input {
                width: 100%;
            }
        }
/* â•â•â•â•â•â• è¶…å¤§å±ï¼šåŠ å®½å¡ç‰‡ â•â•â•â•â•â• */
        @media (min-width: 1200px) {
            .login-card {
                max-width: 18rem;
            }
        }
.footer-card .tip2-text {
            color: rgba(255,255,255,0.65);
            font-size: 0.20rem;
        }
/* â•â•â•â•â•â• å°å±ï¼ˆâ‰¤480pxï¼‰ï¼šç´§å‡‘é—´è· â•â•â•â•â•â• */
        @media (max-width: 480px) {
            body {
                padding: 0 0.2rem;
            }
.login-wrapper {
                justify-content: center;
            }
.login-card {
                width: 100%;
                margin: 0;
            }
.tip2 {
                margin-top: 30px;
            }
.form-area {
                padding: 0.37rem 0.37rem 0.7rem;
                margin-top: 0.2rem;
                border-radius: 0.42rem;
                width: 100%;
            }
.input-group {
                margin-bottom: 0.42rem;
            }
.input-group input {
                font-size: 0.37rem;
                height: 1.05rem;
            }
.tab-bar .tab {
                padding: 0.21rem 0.31rem;
                font-size: 0.32rem;
            }
.btn {
                height: 1.1rem;
                font-size: 0.36rem;
            }
.link {
                height: 1rem;
                font-size: 0.32rem;
            }
.footer-card {
                padding: 0;
            }
.footer-card .tip2-text {
                font-size: 0.30rem;
            }
.tip {
                font-size: 0.29rem;
                margin-top: 0.21rem;
            }
        }
/* â•â•â•â•â•â• è¡¨å•åŒºåŸŸ â•â•â•â•â•â• */
        .form-area {
            display: flex; flex-direction: column;
            align-items: stretch;
            width: 100%;
            max-width: 8rem;
            background: #fff;
            border-radius: 0.63rem;
            padding: 0.42rem 0.42rem 0.8rem;
            margin-top: 0.56rem;
            position: relative; z-index: 2;
            color: var(--theme-color);
            box-shadow: 0 0.1rem 0.52rem var(--theme-color-008);
        }
/* â”€â”€ é¡¶éƒ¨é€‰é¡¹å?â”€â”€ */
        .tab-bar {
            display: flex;
            margin: 0 0 0.37rem;
            background: rgba(255,255,255,0.30);
            border-radius: 9999px;
            padding: 0.10rem;
            backdrop-filter: blur(0.21rem);
            -webkit-backdrop-filter: blur(0.21rem);
        }
.tab-bar .tab {
            flex: 1; text-align: center;
            padding: 0.26rem 0.42rem;
            font-size: 0.34rem; font-weight: 600;
            color: rgba(120,100,140,0.60);
            background: transparent;
            border-radius: 9999px;
            cursor: pointer; user-select: none;
            transition: background 0.30s cubic-bezier(0.4,0,0.2,1), box-shadow 0.30s cubic-bezier(0.4,0,0.2,1);
            display: flex; align-items: center; justify-content: center;
            white-space: nowrap;
        }
/* tab é—´è·ï¼šç”¨ margin ä»£æ›¿ gapï¼ˆå…¼å®?iOS 14ï¼?*/
.tab-bar .tab + .tab { margin-left: 0.21rem; }
.tab-bar .tab .tab-icon { margin-right: 0.15rem; }
.tab-bar .tab .tab-icon {
            width: 0.44rem; height: 0.44rem;
            flex-shrink: 0;
        }
.tab-bar .tab.active {
            color: var(--theme-color);
            background: rgba(255,255,255,0.65);
            font-weight: 700;
        }
/* â”€â”€ è¾“å…¥æ¡?â”€â”€ */
        .input-group {
            margin-bottom: 0.42rem; position: relative;
        }
.input-group .input-icon {
            position: absolute; left: 0.42rem; top: calc(50% + 0.1481rem);
            transform: translateY(-50%);
            width: 0.47rem; height: 0.47rem;
            z-index: 1; pointer-events: none;
            display: flex; align-items: center; justify-content: center;
        }
.input-group .input-icon svg {
            width: 100%; height: 100%;
            stroke: var(--theme-light);
        }
.input-group input {
            width: 100%; height: 1.15rem;
            border: 0.054rem solid var(--theme-light);
            border-radius: 9999px;
            padding: 0 0.42rem 0 1.05rem;
            font-size: 0.39rem; color: var(--theme-color);
            background: rgba(255,255,255,0.7);
            backdrop-filter: blur(0.16rem);
            -webkit-backdrop-filter: blur(0.16rem);
            transition: background 0.2s;
            -webkit-appearance: none;
        }
.input-group input:focus {
            background: rgba(255,255,255,0.92);
            border-color: var(--theme-color);
            box-shadow: 0 0 0 0.08rem var(--theme-color-018);
        }
.input-group input::placeholder {
            font-size: 0.37rem;
            color: var(--theme-light);
        }
/* â”€â”€ å¯†ç æ¡?+ å†…åµŒçœ¼ç›åˆ‡æ¢ â”€â”€ */
        .pwd-wrap { position: relative; width: 100%; line-height: 0; }
.pwd-wrap input { width: 100%; padding-right: 1.05rem; display: block; }
.pwd-eye {
            position: absolute;
            top: 50%;
            right: 0.31rem;
            transform: translateY(-50%);
            width: 0.63rem;
            height: 0.63rem;
            padding: 0;
            border: none;
            background: transparent;
            cursor: pointer;
            display: none;
            align-items: center;
            justify-content: center;
            color: var(--theme-light);
            -webkit-tap-highlight-color: transparent;
        }
.pwd-eye:active { opacity: 0.6; }
.pwd-eye svg { width: 0.52rem; height: 0.52rem; display: block; }
.pwd-wrap.has-text .pwd-eye { display: flex; }
/* â”€â”€ æ“ä½œè¡?â”€â”€ */
        .action-row {
            display: flex; justify-content: space-between;
            align-items: center; margin-bottom: 0.6rem;
            white-space: nowrap;
        }
.remember-me {
            display: flex; align-items: center;
            cursor: pointer; user-select: none;
            font-size: 0.34rem;
            color: var(--theme-light);
        }
.remember-me input[type="checkbox"] { display: none; }
.check-dot {
            width: 0.42rem; height: 0.42rem;
            border: 0.054rem solid var(--theme-light);
            border-radius: 50%; margin-right: 0.16rem;
            position: relative; transition: all 0.2s;
            flex-shrink: 0;
        }
.check-dot::after {
            content: ''; position: absolute;
            left: 50%; top: 50%;
            width: 0.26rem; height: 0.26rem;
            border-radius: 50%;
            background: var(--theme-color);
            transform: translate(-50%, -50%) scale(0);
            transition: transform 0.2s ease;
        }
.remember-me input:checked + .check-dot {
            background: var(--theme-color-010);
            border-color: var(--theme-color);
        }
.remember-me input:checked + .check-dot::after {
            transform: translate(-50%, -50%) scale(1);
        }
.forgot-password {
            text-decoration: none;
            font-size: 0.34rem; font-weight: 500;
            color: var(--theme-light);
        }
.forgot-password:active { opacity: 0.6; }
/* â”€â”€ æŒ‰é’®ï¼šå…¨åœ†è§’ â”€â”€ */
        .btn {
            width: 100%; height: 1.2rem;
            border: none; border-radius: 9999px;
            color: #fff; font-size: 0.37rem; font-weight: 600;
            letter-spacing: 0.05rem;
            cursor: pointer;
            transition: transform 0.2s;
            background-color: var(--theme-color);
            box-shadow: 0 0.1rem 0.31rem var(--theme-color-030);
            -webkit-appearance: none;
        }
.btn:active {
            box-shadow: 0 0.05rem 0.16rem var(--theme-color-020);
        }
.link {
            width: 100%; height: 1.1rem;
            border: 0.054rem solid var(--theme-color-045);
            border-radius: 9999px;
            background: transparent;
            font-size: 0.34rem; font-weight: 500;
            text-align: center; cursor: pointer; text-decoration: none;
            display: flex; align-items: center; justify-content: center;
            transition: all 0.2s;
            color: var(--theme-color);
            -webkit-appearance: none;
        }
.link:active {
            background: rgba(255,255,255,0.5);
        }
/* â”€â”€ æ”¯ä»˜å®åŒºåŸ?â”€â”€ */
        .alipay-area {
            text-align: center; padding: 0 0;
        }
.alipay-tip-text {
            font-size: 0.47rem; font-weight: 700;
            text-align: center;
            padding: 0; line-height: 1.6;
            color: var(--theme-color);
        }
.other-login-hint {
            text-align: center;
            font-size: 0.34rem; margin-top: 0.26rem;
            user-select: none; cursor: pointer;
            color: var(--theme-color);
            -webkit-tap-highlight-color: transparent;
        }
.other-login-hint:active { opacity: 0.6; }
/* â”€â”€ auth-wrapï¼šå›ºå®šé«˜åº¦ï¼Œä¸¤é¢æ¿ä¸€è‡?â”€â”€ */
        .auth-wrap {
            display: block;
            position: relative;
            min-height: 5rem;
        }
.auth-wrap > .auth-area {
            width: 100%; min-width: 0; padding: 0 0.05rem;
            transition: opacity .28s ease;
            position: absolute; top: 0; left: 0;
            height: 100%;
        }
#authWrap[data-mode="password"] > #passwordArea {
            display: flex;
            flex-direction: column;
            justify-content: center;
        }
#authWrap[data-mode="password"] > #alipayArea {
            display: none;
        }
#authWrap[data-mode="alipay"] > #passwordArea {
            display: none;
        }
#authWrap[data-mode="alipay"] > #alipayArea {
            display: flex;
        }
#alipayArea {
            display: flex; flex-direction: column;
            align-items: center; justify-content: center;
        }
/* â”€â”€ æç¤º + åè®® â”€â”€ */
        .tip {
            text-align: center; font-size: 0.31rem;
            margin-top: 0.16rem;
            color: var(--theme-light);
            flex-shrink: 0;
        }
@media (max-width: 360px) {
            .tip { white-space: normal; word-break: break-all; }
        }
/* â”€â”€ åº•éƒ¨å¤‡æ¡ˆå¡ç‰‡ â”€â”€ */
        @keyframes slideInLeft {
            0%   { opacity: 0; transform: translateX(-1.2rem); }
            100% { opacity: 1; transform: translateX(0); }
        }
.footer-card {
            background: transparent;
            border-radius: 0;
            padding: 0;
            margin: 0;
            width: 100%;
            max-width: 8.8rem;
            text-align: center;
            line-height: 1.6;
            position: relative; z-index: 2;
        }
.footer-card a {
            color: inherit; text-decoration: none;
            pointer-events: auto;
        }
.footer-card .beian-icon {
            width: 0.34rem; height: 0.34rem;
            vertical-align: -0.0185rem; margin-right: 0.05rem;
            opacity: 1;
        }
.footer-text-box {
            display: block;
        }
/* â•â•â•â•â•â• åº•éƒ¨å¤‡æ¡ˆ â•â•â•â•â•â• */
        .tip2 {
            display: flex;
            flex-shrink: 0;
            width: 100%;
            justify-content: center;
            position: relative; z-index: 2;
            margin-top: 30px;
            /* iOS Safari: åº•éƒ¨å®‰å…¨åŒºç•™ç™½ï¼Œé˜²æ­¢å¤‡æ¡ˆè¢«æ¨ªæ¡é®æŒ?*/
            padding-bottom: env(safe-area-inset-bottom);
        }
/* åº•éƒ¨æ¸å˜å±‚ï¼šå›ºå®šå±å¹•åº•éƒ¨ï¼Œæ’‘æ»¡è§†å£å®½åº¦ï¼ˆiOS Safari å…¼å®¹ï¼šç”¨çœŸå®ž div è€Œéžä¼ªå…ƒç´ ï¼‰ */
.bottom-gradient {
            position: fixed;
            bottom: 0; left: 0; right: 0;
            height: 50vh;
            background: linear-gradient(to top, rgba(0,0,0,0.08), transparent);
            pointer-events: none;
            z-index: 1;
            -webkit-transform: translateZ(0);
        }
/* â”€â”€ å¼¹çª— â”€â”€ */
        #infoPopup {
            display: none; position: fixed;
            top: 0; left: 0; width: 100%; height: 100%;
            background: rgba(0,0,0,0.35); z-index: 99999;
            align-items: center; justify-content: center;
        }

/* æ³¨å†Œæç¤ºåŠ¨ç”» */
@keyframes regTipFadeOut{from{opacity:1}
to{opacity:0}}

/* æ³¨å†Œæç¤ºåŠ¨ç”» */
@keyframes regTipFadeIn{from{opacity:0}
to{opacity:1}}
@keyframes regTipFadeOut{from{opacity:1}
to{opacity:0}}
@keyframes regTipPopIn{from{opacity:0;transform:scale(.8) translateY(0.714rem)}
to{opacity:1;transform:scale(1) translateY(0)}}
@keyframes regTipPopOut{from{opacity:1;transform:scale(1) translateY(0)}
to{opacity:0;transform:scale(.8) translateY(0.714rem)}}

/* æ³¨å†Œæç¤ºåŠ¨ç”» */
@keyframes regTipFadeIn{from{opacity:0}
to{opacity:1}}
@keyframes regTipFadeOut{from{opacity:1}
to{opacity:0}}
@keyframes regTipPopIn{from{opacity:0;transform:scale(.8) translateY(0.714rem)}
to{opacity:1;transform:scale(1) translateY(0)}}
@keyframes regTipPopOut{from{opacity:1;transform:scale(1) translateY(0)}
to{opacity:0;transform:scale(.8) translateY(0.714rem)}}