/* 滑块验证样式 */
        .captcha-trigger {
            cursor: pointer;
            border: 1px dashed #ccc;
           
            border-radius: 4px;
            background-color: #fff;
            display: inline-flex;
            align-items: center;
            justify-content: space-between;
            width: 100%;
            margin-bottom: 15px;
            transition: all 0.3s ease;
			justify-content: center; /* 水平居中 */
            align-items: center;
         
        }
        .captcha-trigger:hover {
            background-color: #f0f0f0;
        }
        
        .captcha-trigger.disabled {
            cursor: not-allowed;
            background-color: #e9ecef;
            color: #6c757d;
            border-color: #ced4da;
        }
        
        /* 已验证状态样式 */
        .captcha-trigger.verified {
            background-color: #f0fdf4;
            border-color: #10b981;
            color: #059669;
            cursor: pointer;
        }
        .captcha-trigger.verified:hover {
            background-color: #dcfce7;
        }
        
        .verify-status {
            display: inline-flex;
            align-items: center;
            margin-left: 10px;
        }
        .status-icon {
            margin-left: 8px;
            transition: all 0s ease;
        }
        
        /* 滑块核心样式 */
        #slider {
            width: 48px;
            height: 48px;
             border-radius: 5px;
            box-shadow: 0 2px 6px rgba(0,0,0,0.2);
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: grab;
            border: 1px solid #e5e7eb;
            position: absolute;
            z-index: 1000;
            user-select: none;
            -webkit-user-select: none;
            touch-action: none;
            transition: transform 0s ease;
            left: 0;
            top: 0;
        }
        
        #slider:active {
            transform: scale(0.95);
            cursor: grabbing;
        }
        
        #sliderContainer {
            position: relative;
            height: 48px;
            background-color: #f3f4f6;
            border-radius: 6px;
            overflow: hidden;
            padding: 0;
            margin: 0;
            -webkit-user-select: none;
            user-select: none;
            transition: background-color 0s ease;
        }
           
        /* 验证失败时的背景色 */
        #sliderContainer.error {
            background-color: #fef2f2;
        }
        
        #sliderTrack {
            position: absolute;
            left: 0;
            top: 0;
            height: 100%;
            width: 0;
            border-radius: 5px;
            transition: width 0s, background-color 0s ease;
        }
             
        /* 验证失败时的滑块轨道颜色 */
        #sliderContainer.error #sliderTrack {
            background-color: rgba(245, 63, 63, 0.3) !important;
        }
        
		/* 滑块移到最右边的样式 */
        .green-bg {
            background-color: #10b981 !important;
        }
        
        .text-green {
            color: #10b981 !important;
        }
        
        #sliderText {
            position: absolute;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            pointer-events: none;
            font-size: 14px;
            color: #6b7280;
            transition: color 0s ease;
        }
		
        /* 验证失败时的文字颜色 */
        #sliderContainer.error #sliderText {
            color: #dc2626;
        }

        /* 确保消息区域有足够高度容纳进度条 */
        .captcha-message {
            min-height: 60px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        @keyframes shake {
            0%, 100% { transform: translateX(0); }
            10%, 30%, 50%, 70%, 90% { transform: translateX(-5px); }
            20%, 40%, 60%, 80% { transform: translateX(5px); }
        }
        
        .animate-shake {
            animation: shake 0.5s ease-in-out;
        }
        
        /* 弹窗动画 */
        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }
        
        @keyframes scaleIn {
            from { transform: scale(0.9); opacity: 0; }
            to { transform: scale(1); opacity: 1; }
        }

        /* 弹窗模糊效果 - 只模糊背景内容，不模糊弹窗 */
        .blur-background {
            filter: blur(5px);
            transition: filter 0.3s ease;
        }
        
        .blur-background .captcha-modal {
            filter: none !important;
        }

        /* 弹窗样式 */
        .captcha-modal {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
            display: none;
            align-items: center;
            justify-content: center;
            z-index: 10002;
        }
        
        .captcha-modal.active {
            display: flex;
            animation: fadeIn 0.3s ease;
        }
        
        .captcha-modal-content {
            background: white;
            border-radius: 12px;
            padding: 20px;
            width: 90%;
            max-width: 450px;
            height: 240px;
            box-shadow: 0 10px 25px rgba(0,0,0,0.2);
            transform: scale(0.9);
            opacity: 0;
            transition: all 0.3s ease;
            z-index: 10003;
            position: relative;
        }
        
        .captcha-modal.active .captcha-modal-content {
            transform: scale(1);
            opacity: 1;
            animation: scaleIn 0.3s ease;
        }

        .captcha-modal-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 15px;
        }
        
        .captcha-modal-title {
            font-size: 18px;
            font-weight: bold;
            color: #333;
            margin: 0;
        }
        
        .captcha-close-btn {
            background: none;
            margin: -31px -15px 0 0;
            border: none;
            font-size: 20px;
            color: #999;
            cursor: pointer;
            width: 30px;
            height: 30px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s;
        }
        
        .captcha-close-btn:hover {
            background: #f5f5f5;
            color: #333;
        }
        
        /* 颜色工具类 */
        .text-red { color: #ef4444; }
        .text-green { color: #10b981; }
        .text-center-m {font-weight: normal; font-size: 15px;}
        
        /* 进度条样式 */
        .progress {
            height: 8px;
            background-color: #e9ecef;
            border-radius: 4px;
            overflow: hidden;
        }
        #submitMessage {
            font-size: 16px;
            margin-bottom: 10px;
        }
        
        /* 取消验证按钮样式 */
        .cancel-verify {
            color: #ef4444;
            margin-left: 10px;
            font-size: 15px;
            cursor: pointer;
            transition: color 0.2s ease;
        }
        .cancel-verify:hover {
	         color: #FF0000;
	         text-decoration: underline;
        }
