        /* 登录区域样式（Joe 风格延续） */
        .joe_login__contain {
            max-width: 420px;
            margin: 40px auto;
            background: var(--background);
            border-radius: 12px;
            padding: 35px 30px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
        }

        .joe_login__title {
            font-size: 22px;
            font-weight: 600;
            text-align: center;
            margin-bottom: 30px;
            color: var(--main);
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
        }

        .joe_login__form .item {
            margin-bottom: 20px;
        }

        .joe_login__form label {
            display: block;
            font-size: 14px;
            margin-bottom: 6px;
            color: var(--font-color);
        }

        .joe_login__form input {
            width: 100%;
            height: 42px;
            padding: 0 12px;
            border-radius: 8px;
            border: 1px solid #ddd;
            background: #fafafa;
            transition: all .2s;
        }

        .joe_login__form input:focus {
            border-color: var(--theme);
            background: #fff;
            outline: none;
        }

        .joe_login__submit {
            width: 100%;
            height: 44px;
            border-radius: 8px;
            border: none;
            background: var(--theme);
            color: #fff;
            font-size: 16px;
            cursor: pointer;
            transition: opacity .2s;
        }

        .joe_login__submit:hover {
            opacity: .85;
        }

        .joe_login__meta {
            margin-top: 18px;
            font-size: 13px;
            text-align: center;
            color: #999;
        }

        .joe_login__meta a {
            color: var(--theme);
            margin: 0 6px;
        } 
 /* 注册区域（复用登录页风格） */
        .joe_register__contain {
            max-width: 420px;
            margin: 40px auto;
            background: var(--background);
            border-radius: 12px;
            padding: 35px 30px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
        }

        .joe_register__title {
            font-size: 22px;
            font-weight: 600;
            text-align: center;
            margin-bottom: 30px;
            color: var(--main);
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
        }

        .joe_register__form .item {
            margin-bottom: 20px;
        }

        .joe_register__form label {
            display: block;
            font-size: 14px;
            margin-bottom: 6px;
            color: var(--font-color);
        }

        .joe_register__form input {
            width: 100%;
            height: 42px;
            padding: 0 12px;
            border-radius: 8px;
            border: 1px solid #ddd;
            background: #fafafa;
            transition: all .2s;
        }

        .joe_register__form input:focus {
            border-color: var(--theme);
            background: #fff;
            outline: none;
        }

        .joe_register__submit {
            width: 100%;
            height: 44px;
            border-radius: 8px;
            border: none;
            background: var(--theme);
            color: #fff;
            font-size: 16px;
            cursor: pointer;
            transition: opacity .2s;
        }

        .joe_register__submit:hover {
            opacity: .85;
        }

        .joe_register__meta {
            margin-top: 18px;
            font-size: 13px;
            text-align: center;
            color: #999;
        }

        .joe_register__meta a {
            color: var(--theme);
            margin: 0 6px;
        }

        .joe_register__error {
            color: #ff4d4f;
            font-size: 13px;
            margin-bottom: 15px;
            text-align: center;
        }
		
		        .close-box {
            max-width: 460px;
            margin: 100px auto;
            background: #fff;
            padding: 40px;
            border-radius: 12px;
            text-align: center;
            box-shadow: 0 10px 30px rgba(0,0,0,.08);
        }
        .close-box h1 {
            font-size: 24px;
            margin-bottom: 16px;
            color: #e74c3c;
        }
        .close-box p {
            color: #666;
            line-height: 1.8;
        }
        .close-box a {
            display: inline-block;
            margin-top: 20px;
            color: #409eff;
        }
		        /* ===== 仅用于本页，不依赖 joe.user.css ===== */
        .joe-forgot-wrap {
            max-width: 420px;
            margin: 60px auto;
            background: #fff;
            border-radius: 12px;
            box-shadow: 0 8px 30px rgba(0,0,0,.08);
            padding: 36px 32px 28px;
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
        }

        .joe-forgot-title {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 20px;
            font-weight: 600;
            color: #333;
            margin-bottom: 24px;
        }

        .joe-forgot-title svg {
            flex-shrink: 0;
            color: #409eff;
        }

        .joe-forgot-alert {
            padding: 10px 14px;
            border-radius: 6px;
            font-size: 14px;
            margin-bottom: 18px;
        }

        .joe-forgot-alert.success {
            background: #f0f9eb;
            color: #67c23a;
        }

        .joe-forgot-alert.error {
            background: #fef0f0;
            color: #f56c6c;
        }

        .joe-forgot-form .item {
            margin-bottom: 18px;
        }

        .joe-forgot-form label {
            display: block;
            font-size: 14px;
            color: #555;
            margin-bottom: 6px;
        }

        .joe-forgot-form input {
            width: 100%;
            height: 40px;
            padding: 0 12px;
            border: 1px solid #dcdfe6;
            border-radius: 6px;
            font-size: 14px;
            outline: none;
            transition: border-color .2s;
        }

        .joe-forgot-form input:focus {
            border-color: #409eff;
        }

        .joe-forgot-form input::placeholder {
            color: #aaa;
        }

        .joe-forgot-submit {
            width: 100%;
            height: 42px;
            background: #409eff;
            color: #fff;
            border: none;
            border-radius: 6px;
            font-size: 15px;
            cursor: pointer;
            transition: background .2s;
        }

        .joe-forgot-submit:hover {
            background: #66b1ff;
        }

        .joe-forgot-footer {
            text-align: center;
            margin-top: 18px;
            font-size: 13px;
        }

        .joe-forgot-footer a {
            color: #409eff;
            text-decoration: none;
        }

        .joe-forgot-footer a:hover {
            text-decoration: underline;
        }