 /* 登录弹窗样式 */
        .hy-login-modal {
            width: 100%;
            height: 100%;
            background: url('/hy1/images/login-bg.jpg') no-repeat center center;
            background-size: cover;
            border-radius: 8px;
            overflow: hidden;
        }
        
        .login-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 20px;
            background: rgba(0, 0, 0, 0.5);
            color: #fff;
        }
        
        .login-tabs {
            display: flex;
            gap: 20px;
        }
        
        .tab-item {
            padding: 8px 0;
            font-size: 16px;
            color: rgba(255, 255, 255, 0.7);
            cursor: pointer;
            position: relative;
            transition: all 0.3s;
            display: flex;
            align-items: center;
        }
        
        .tab-item i {
            margin-right: 5px;
            font-size: 18px;
        }
        
        .tab-item.active {
            color: #fff;
            font-weight: bold;
        }
        
        .tab-item.active:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 2px;
            background: #fff;
        }
        
        .close-btn {
            color: rgba(255, 255, 255, 0.7);
            cursor: pointer;
            font-size: 18px;
            transition: all 0.3s;
        }
        
        .close-btn:hover {
            color: #fff;
            transform: rotate(90deg);
        }
        
        .login-body {
            padding: 30px;
            height: calc(100% - 63px);
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .login-content {
            display: none;
            width: 100%;
            animation: fadeIn 0.3s;
        }
        
        .login-content.active {
            display: flex;
            justify-content: center;
        }
        
        .qrcode-container {
            text-align: center;
            max-width: 280px;
            margin: 0 auto;
        }
        
        .qrcode-box {
            width: 200px;
            height: 200px;
            margin: 20px auto;
            padding: 10px;
            background: #fff;
            border-radius: 8px;
        }
        
        .qrcode-box img {
            width: 100%;
            height: 100%;
        }
        
        .qrcode-tip {
            color: #f00;
            margin-top: 20px;
            font-size: 14px;
        }
        
        .qrcode-tip p {
            margin: 5px 0;
            color: #f00;
        }
        
        .small-text {
            font-size: 12px;
            color: rgba(255, 255, 255, 0.7);
        }
        
        .form-container {
            width: 100%;
            max-width: 280px;
            background: rgba(255, 255, 255, 0.9);
            padding: 25px;
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }
        
        .form-group {
            position: relative;
            margin-bottom: 20px;
        }
        
        .form-group i {
            position: absolute;
            left: 12px;
            top: 50%;
            transform: translateY(-50%);
            color: #999;
        }
        
        .form-input {
            width: 100%;
            height: 42px;
            padding: 10px 15px 10px 38px;
            border: 1px solid #ddd;
            border-radius: 4px;
            font-size: 14px;
            transition: all 0.3s;
            box-sizing: border-box;
        }
        
        .form-input:focus {
            border-color: #1E9FFF;
            outline: none;
            box-shadow: 0 0 0 2px rgba(30, 159, 255, 0.2);
        }
        
        .login-actions {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 20px;
            font-size: 13px;
        }
        
        .remember-me {
            display: flex;
            align-items: center;
            color: #666;
        }
        
        .remember-me input {
            margin-right: 5px;
        }
        
        .forgot-pwd {
            color: #666;
            text-decoration: none;
            transition: all 0.3s;
        }
        
        .forgot-pwd:hover {
            color: #1E9FFF;
        }
        
        .login-btn {
            width: 100%;
            height: 42px;
            background: #1E9FFF;
            color: #fff;
            border: none;
            border-radius: 4px;
            font-size: 16px;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s;
        }
        
        .login-btn:hover {
            background: #0c8de4;
        }
        
        .register-tip {
            text-align: center;
            margin-top: 20px;
            font-size: 13px;
            color: #666;
            padding-top: 15px;
            border-top: 1px solid #eee;
        }
        
        .register-link {
            color: #1E9FFF;
            text-decoration: none;
            font-weight: bold;
        }
        
        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }