        /* ================= 全局重置 ================= */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Microsoft YaHei', '宋体', sans-serif;
        }


        body {
            background-color: #000;
            min-height: 100vh;
            display: flex;
            justify-content: center;
            align-items: center;
            overflow: hidden;
            height: 100vh;
            width: 100vw;
        }


        /* ================= 视频背景 (强制穿透) ================= */
        .video-bg {
            position: fixed;
            top: 0; left: 0; width: 100%; height: 100%;
            z-index: -9999 !important;
            overflow: hidden;
            pointer-events: none !important; 
        }
        .video-bg video, .video-bg img {
            width: 100%; height: 100%;
            object-fit: cover;
            pointer-events: none !important;
        }
        .video-overlay {
            position: absolute;
            top: 0; left: 0; width: 100%; height: 100%;
            background: rgba(0, 0, 0, 0.4);
            z-index: -9998 !important;
            pointer-events: none !important;
        }


        /* ================= 主容器 (背景图) ================= */
        .main-container {
            position: relative;
            width: 871px;
            height: 533px;
            /* 修改密码背景图 */
            background: url('https://img.alicdn.com/imgextra/i3/859279943/O1CN01eRNyC92NJxCtuKAOn_!!859279943.png') no-repeat center center;
            background-size: contain;
            background-color: transparent;
            display: flex;
            justify-content: center;
            align-items: center;
            flex-shrink: 0;
            transform-origin: center center;
            pointer-events: none;
            z-index: 1;
        }


        /* ================= 左侧内容区域 (表单) ================= */
        .content-box {
            position: relative;
            width: 100%;
            height: 100%;
            display: flex;
            flex-direction: column;
            padding-top: 210px; 
            padding-left: 330px; 
            
            pointer-events: auto !important;
            z-index: 1000 !important; 
        }


        /* ================= 表单行 ================= */
        .form-row {
            display: flex;
            align-items: center;
            margin-bottom: 10px;
            width: 100%;
            justify-content: flex-start;
            pointer-events: auto;
            position: relative;
            z-index: 10;
        }


        /* 左侧图片标签 */
        .row-icon {
            width: 80px; 
            height: auto;
            text-align: right; 
            display: block;
            margin-right: 15px;
            flex-shrink: 0;
            pointer-events: none;
            z-index: 5;
        }


        /* ================= 输入框容器 ================= */
        .input-container {
            display: flex;
            align-items: center;
            gap: 10px;
            flex: 1;
            max-width: 300px;
            position: relative;
            z-index: 20;
            pointer-events: auto !important;
        }


        /* ================= 【核心修复】所有输入框 (最高层) ================= */
        input[type="text"],
        input[type="password"] {
            height: 24px;
            background: #cbc5c3;
            border: 1px solid #999;
            border-radius: 4px;
            color: #333;
            font-size: 14px;
            font-weight: bold;
            padding: 0 8px;
            outline: none;
            width: 100%;
            
            position: relative !important;
            z-index: 9999 !important;
            pointer-events: auto !important;
            cursor: text !important;
        }
        input[type="text"]:focus,
        input[type="password"]:focus {
            border-color: #ffcc00;
            background: #fff;
            box-shadow: 0 0 5px rgba(255, 204, 0, 0.3);
        }


        #mobile, #verifyCode {
            z-index: 10000 !important;
        }


        /* ================= 获取验证码按钮 ================= */
        .get-code-btn {
            position: relative;
            z-index: 500; 
            height: 40px;
            width: 160px;
            flex-shrink: 0;
            background: url('https://img.alicdn.com/imgextra/i1/859279943/O1CN01ueEIpE2NJxCuI1orL_!!859279943.png') no-repeat center center;
            background-size: contain;
            border: none;
            color: #ffde8c;
            font-weight: bold;
            font-size: 14px;
            cursor: pointer;
            outline: none;
            text-shadow: 1px 1px 1px #000;
            white-space: nowrap;
            line-height: 40px;
            text-align: center;
            pointer-events: auto !important;
            margin-left: 5px;
        }
        .get-code-btn:disabled {
            filter: grayscale(100%);
            cursor: not-allowed;
        }


        /* ================= 提交按钮 (绝对定位) ================= */
        .fixed-submit-btn {
            position: absolute; 
            top: 450px;  
            left: 450px; 
            
            width: 160px;
            height: 40px;
            background: linear-gradient(135deg, #ffcc00 0%, #cc9900 100%);
            color: #330000;
            border: none;
            border-radius: 5px;
            font-size: 16px;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s;
            box-shadow: 0 0 10px rgba(255, 204, 0, 0.3);
            z-index: 2000;
        }
        .fixed-submit-btn:hover {
            opacity: 0.9;
            transform: translateY(-2px);
        }
        .fixed-submit-btn:disabled {
            opacity: 0.6;
            cursor: not-allowed;
            transform: none;
        }


        /* ================= 错误提示 ================= */
        .error-msg {
            color: #ff4444;
            font-size: 12px;
            margin-top: 5px;
            margin-left: 95px;
            display: none;
            text-shadow: 0 0 2px rgba(255, 0, 0, 0.5);
            z-index: 3000;
            position: relative;
        }
        .success-msg { color: #4caf50 !important; }


        /* ================= 单独控制每个输入框的宽度 ================= */
        #account { width: 110px !important; }
        #password, #confirm-password { width: 130px !important; }
        #new_password { width: 130px !important; }
        #mobile { width: 115px !important; }
        #verifyCode { width: 70px !important; }
