* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* 微信登录弹窗样式 */
.wx-login-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1000;
    animation: fadeIn 0.3s ease;
}

.wx-login-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    max-width: 400px;
    width: 90%;
}

.wx-login-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.wx-login-header h3 {
    margin: 0;
    font-size: 18px;
    color: #333;
}

.wx-login-close {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #999;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wx-login-close:hover {
    color: #333;
}

.wx-login-qr {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 200px;
    margin-bottom: 15px;
}

.wx-login-tips {
    text-align: center;
    color: #666;
    font-size: 14px;
}

.wx-login-modal.show {
    display: flex;
    justify-content: center;
    align-items: center;
}

.wx-login-content {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    width: 90%;
    max-width: 420px;
    animation: slideUp 0.3s ease;
}

.wx-login-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 25px 15px;
    border-bottom: 1px solid #f0f0f0;
}

.wx-login-title {
    font-size: 22px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
}

.wx-login-close {
    background: none;
    border: none;
    font-size: 28px;
    color: #999;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.wx-login-close:hover {
    background-color: #f5f5f5;
    color: #666;
}

.wx-login-body {
    padding: 20px 25px 25px;
}

.wx-login-methods {
    text-align: center;
}

.wx-qr-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
}

.wx-qr-placeholder {
    width: 200px;
    height: 200px;
    border: 2px solid #e9ecef;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #ffffff;
}

.wx-qr-image {
    width: 200px;
    height: 200px;
    border: 2px solid #07c160;
    border-radius: 15px;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wx-qr-image canvas {
    border-radius: 12px;
}

.wx-login-tip {
    font-size: 14px;
    color: #666;
    margin: 10px 0 0 0;
}

/* 备用方案样式 */
.wx-fallback {
    text-align: center;
}

.fallback-content {
    padding: 20px;
}

.fallback-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.fallback-content h4 {
    font-size: 18px;
    color: #2c3e50;
    margin-bottom: 10px;
}

.fallback-content p {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.4;
}

.fallback-options {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.mini-program-icon {
    margin-right: 8px;
}

/* 用户信息弹窗样式 */
.user-info-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0. 0.6);
    z-index: 1000;
    animation: fadeIn 0.3s ease;
}

.user-info-modal.show {
    display: flex;
    justify-content: center;
    align-items: center;
}

.user-info-content {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    width: 90%;
    max-width: 500px;
    max-height: 80vh;
    overflow-y: auto;
    animation: slideUp 0.3s ease;
}

.user-info-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 25px 15px;
    border-bottom: 1px solid #f0f0f0;
}

.user-info-title {
    font-size: 22px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
}

.user-info-close {
    background: none;
    border: none;
    font-size: 28px;
    color: #999;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.user-info-close:hover {
    background-color: #f5f5f5;
    color: #666;
}

.user-info-body {
    padding: 20px 25px 25px;
}

.user-avatar-container {
    display: flex;
    justify-content: center;
    margin-bottom: 25px;
    position: relative;
}

.user-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid #07c160;
    object-fit: cover;
    background: #f5f5f5;
}

.user-avatar-loading {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid #07c160;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
}

.user-details {
    margin-bottom: 25px;
}

.user-detail-item {
    display: flex;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #f5f5f5;
}

.detail-label {
    font-size: 14px;
    color: #666;
    min-width: 100px;
    font-weight: 500;
}

.detail-value {
    font-size: 14px;
    color: #2c3e50;
    flex: 1;
}

.detail-value.user-uuid {
    font-family: monospace;
    font-size: 12px;
    color: #666;
    word-break: break-all;
}

.user-info-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .wx-login-content {
        width: 95%;
        margin: 20px;
    }
    
    .user-info-content {
        width: 95%;
        margin: 20px;
    }
    
    .fallback-options {
        flex-direction: column;
    }
    
    .user-info-actions {
        flex-direction: column;
    }
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
    background-color: #f5f5f5;
    color: #333;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* 微信登录弹窗样式 */
.wx-login-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1000;
    animation: fadeIn 0.3s ease;
}

.wx-login-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    max-width: 400px;
    width: 90%;
}

.wx-login-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.wx-login-header h3 {
    margin: 0;
    font-size: 18px;
    color: #333;
}

.wx-login-close {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #999;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wx-login-close:hover {
    color: #333;
}

.wx-login-qr {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 200px;
    margin-bottom: 15px;
}

.wx-login-tips {
    text-align: center;
    color: #666;
    font-size: 14px;
}

.wx-login-modal.show {
    display: flex;
    justify-content: center;
    align-items: center;
}

.wx-login-content {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    width: 90%;
    max-width: 420px;
    animation: slideUp 0.3s ease;
}

.wx-login-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 25px 15px;
    border-bottom: 1px solid #f0f0f0;
}

.wx-login-title {
    font-size: 22px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
}

.wx-login-close {
    background: none;
    border: none;
    font-size: 28px;
    color: #999;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.wx-login-close:hover {
    background-color: #f5f5f5;
    color: #666;
}

.wx-login-body {
    padding: 20px 25px 25px;
}

.wx-login-methods {
    text-align: center;
}

.wx-qr-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
}

.wx-qr-placeholder {
    width: 200px;
    height: 200px;
    border: 2px solid #e9ecef;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #ffffff;
}

.wx-qr-image {
    width: 200px;
    height: 200px;
    border: 2px solid #07c160;
    border-radius: 15px;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wx-qr-image canvas {
    border-radius: 12px;
}

.wx-login-tip {
    font-size: 14px;
    color: #666;
    margin: 10px 0 0 0;
}

/* 备用方案样式 */
.wx-fallback {
    text-align: center;
}

.fallback-content {
    padding: 20px;
}

.fallback-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.fallback-content h4 {
    font-size: 18px;
    color: #2c3e50;
    margin-bottom: 10px;
}

.fallback-content p {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.4;
}

.fallback-options {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.mini-program-icon {
    margin-right: 8px;
}

/* 用户信息弹窗样式 */
.user-info-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0. 0.6);
    z-index: 1000;
    animation: fadeIn 0.3s ease;
}

.user-info-modal.show {
    display: flex;
    justify-content: center;
    align-items: center;
}

.user-info-content {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    width: 90%;
    max-width: 500px;
    max-height: 80vh;
    overflow-y: auto;
    animation: slideUp 0.3s ease;
}

.user-info-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 25px 15px;
    border-bottom: 1px solid #f0f0f0;
}

.user-info-title {
    font-size: 22px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
}

.user-info-close {
    background: none;
    border: none;
    font-size: 28px;
    color: #999;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.user-info-close:hover {
    background-color: #f5f5f5;
    color: #666;
}

.user-info-body {
    padding: 20px 25px 25px;
}

.user-avatar-container {
    display: flex;
    justify-content: center;
    margin-bottom: 25px;
    position: relative;
}

.user-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid #07c160;
    object-fit: cover;
    background: #f5f5f5;
}

.user-avatar-loading {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid #07c160;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
}

.user-details {
    margin-bottom: 25px;
}

.user-detail-item {
    display: flex;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #f5f5f5;
}

.detail-label {
    font-size: 14px;
    color: #666;
    min-width: 100px;
    font-weight: 500;
}

.detail-value {
    font-size: 14px;
    color: #2c3e50;
    flex: 1;
}

.detail-value.user-uuid {
    font-family: monospace;
    font-size: 12px;
    color: #666;
    word-break: break-all;
}

.user-info-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .wx-login-content {
        width: 95%;
        margin: 20px;
    }
    
    .user-info-content {
        width: 95%;
        margin: 20px;
    }
    
    .fallback-options {
        flex-direction: column;
    }
    
    .user-info-actions {
        flex-direction: column;
    }
}

/* 本地字体注册（用于字体预览与渲染，不依赖JS加载） */
@font-face {
    font-family: 'SC-Bold';
    src: url('font/SC-Bold.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

/* 微信登录弹窗样式 */
.wx-login-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1000;
    animation: fadeIn 0.3s ease;
}

.wx-login-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    max-width: 400px;
    width: 90%;
}

.wx-login-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.wx-login-header h3 {
    margin: 0;
    font-size: 18px;
    color: #333;
}

.wx-login-close {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #999;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wx-login-close:hover {
    color: #333;
}

.wx-login-qr {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 200px;
    margin-bottom: 15px;
}

.wx-login-tips {
    text-align: center;
    color: #666;
    font-size: 14px;
}

.wx-login-modal.show {
    display: flex;
    justify-content: center;
    align-items: center;
}

.wx-login-content {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    width: 90%;
    max-width: 420px;
    animation: slideUp 0.3s ease;
}

.wx-login-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 25px 15px;
    border-bottom: 1px solid #f0f0f0;
}

.wx-login-title {
    font-size: 22px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
}

.wx-login-close {
    background: none;
    border: none;
    font-size: 28px;
    color: #999;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.wx-login-close:hover {
    background-color: #f5f5f5;
    color: #666;
}

.wx-login-body {
    padding: 20px 25px 25px;
}

.wx-login-methods {
    text-align: center;
}

.wx-qr-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
}

.wx-qr-placeholder {
    width: 200px;
    height: 200px;
    border: 2px solid #e9ecef;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #ffffff;
}

.wx-qr-image {
    width: 200px;
    height: 200px;
    border: 2px solid #07c160;
    border-radius: 15px;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wx-qr-image canvas {
    border-radius: 12px;
}

.wx-login-tip {
    font-size: 14px;
    color: #666;
    margin: 10px 0 0 0;
}

/* 备用方案样式 */
.wx-fallback {
    text-align: center;
}

.fallback-content {
    padding: 20px;
}

.fallback-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.fallback-content h4 {
    font-size: 18px;
    color: #2c3e50;
    margin-bottom: 10px;
}

.fallback-content p {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.4;
}

.fallback-options {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.mini-program-icon {
    margin-right: 8px;
}

/* 用户信息弹窗样式 */
.user-info-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0. 0.6);
    z-index: 1000;
    animation: fadeIn 0.3s ease;
}

.user-info-modal.show {
    display: flex;
    justify-content: center;
    align-items: center;
}

.user-info-content {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    width: 90%;
    max-width: 500px;
    max-height: 80vh;
    overflow-y: auto;
    animation: slideUp 0.3s ease;
}

.user-info-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 25px 15px;
    border-bottom: 1px solid #f0f0f0;
}

.user-info-title {
    font-size: 22px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
}

.user-info-close {
    background: none;
    border: none;
    font-size: 28px;
    color: #999;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.user-info-close:hover {
    background-color: #f5f5f5;
    color: #666;
}

.user-info-body {
    padding: 20px 25px 25px;
}

.user-avatar-container {
    display: flex;
    justify-content: center;
    margin-bottom: 25px;
    position: relative;
}

.user-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid #07c160;
    object-fit: cover;
    background: #f5f5f5;
}

.user-avatar-loading {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid #07c160;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
}

.user-details {
    margin-bottom: 25px;
}

.user-detail-item {
    display: flex;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #f5f5f5;
}

.detail-label {
    font-size: 14px;
    color: #666;
    min-width: 100px;
    font-weight: 500;
}

.detail-value {
    font-size: 14px;
    color: #2c3e50;
    flex: 1;
}

.detail-value.user-uuid {
    font-family: monospace;
    font-size: 12px;
    color: #666;
    word-break: break-all;
}

.user-info-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .wx-login-content {
        width: 95%;
        margin: 20px;
    }
    
    .user-info-content {
        width: 95%;
        margin: 20px;
    }
    
    .fallback-options {
        flex-direction: column;
    }
    
    .user-info-actions {
        flex-direction: column;
    }
}
@font-face {
    font-family: 'ruizizhenyan';
    src: url('font/ruizizhenyan.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

/* 微信登录弹窗样式 */
.wx-login-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1000;
    animation: fadeIn 0.3s ease;
}

.wx-login-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    max-width: 400px;
    width: 90%;
}

.wx-login-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.wx-login-header h3 {
    margin: 0;
    font-size: 18px;
    color: #333;
}

.wx-login-close {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #999;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wx-login-close:hover {
    color: #333;
}

.wx-login-qr {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 200px;
    margin-bottom: 15px;
}

.wx-login-tips {
    text-align: center;
    color: #666;
    font-size: 14px;
}

.wx-login-modal.show {
    display: flex;
    justify-content: center;
    align-items: center;
}

.wx-login-content {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    width: 90%;
    max-width: 420px;
    animation: slideUp 0.3s ease;
}

.wx-login-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 25px 15px;
    border-bottom: 1px solid #f0f0f0;
}

.wx-login-title {
    font-size: 22px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
}

.wx-login-close {
    background: none;
    border: none;
    font-size: 28px;
    color: #999;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.wx-login-close:hover {
    background-color: #f5f5f5;
    color: #666;
}

.wx-login-body {
    padding: 20px 25px 25px;
}

.wx-login-methods {
    text-align: center;
}

.wx-qr-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
}

.wx-qr-placeholder {
    width: 200px;
    height: 200px;
    border: 2px solid #e9ecef;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #ffffff;
}

.wx-qr-image {
    width: 200px;
    height: 200px;
    border: 2px solid #07c160;
    border-radius: 15px;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wx-qr-image canvas {
    border-radius: 12px;
}

.wx-login-tip {
    font-size: 14px;
    color: #666;
    margin: 10px 0 0 0;
}

/* 备用方案样式 */
.wx-fallback {
    text-align: center;
}

.fallback-content {
    padding: 20px;
}

.fallback-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.fallback-content h4 {
    font-size: 18px;
    color: #2c3e50;
    margin-bottom: 10px;
}

.fallback-content p {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.4;
}

.fallback-options {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.mini-program-icon {
    margin-right: 8px;
}

/* 用户信息弹窗样式 */
.user-info-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0. 0.6);
    z-index: 1000;
    animation: fadeIn 0.3s ease;
}

.user-info-modal.show {
    display: flex;
    justify-content: center;
    align-items: center;
}

.user-info-content {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    width: 90%;
    max-width: 500px;
    max-height: 80vh;
    overflow-y: auto;
    animation: slideUp 0.3s ease;
}

.user-info-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 25px 15px;
    border-bottom: 1px solid #f0f0f0;
}

.user-info-title {
    font-size: 22px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
}

.user-info-close {
    background: none;
    border: none;
    font-size: 28px;
    color: #999;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.user-info-close:hover {
    background-color: #f5f5f5;
    color: #666;
}

.user-info-body {
    padding: 20px 25px 25px;
}

.user-avatar-container {
    display: flex;
    justify-content: center;
    margin-bottom: 25px;
    position: relative;
}

.user-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid #07c160;
    object-fit: cover;
    background: #f5f5f5;
}

.user-avatar-loading {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid #07c160;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
}

.user-details {
    margin-bottom: 25px;
}

.user-detail-item {
    display: flex;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #f5f5f5;
}

.detail-label {
    font-size: 14px;
    color: #666;
    min-width: 100px;
    font-weight: 500;
}

.detail-value {
    font-size: 14px;
    color: #2c3e50;
    flex: 1;
}

.detail-value.user-uuid {
    font-family: monospace;
    font-size: 12px;
    color: #666;
    word-break: break-all;
}

.user-info-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .wx-login-content {
        width: 95%;
        margin: 20px;
    }
    
    .user-info-content {
        width: 95%;
        margin: 20px;
    }
    
    .fallback-options {
        flex-direction: column;
    }
    
    .user-info-actions {
        flex-direction: column;
    }
}
@font-face {
    font-family: 'qiantuxiaotu';
    src: url('font/qiantuxiaotu.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

/* 微信登录弹窗样式 */
.wx-login-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1000;
    animation: fadeIn 0.3s ease;
}

.wx-login-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    max-width: 400px;
    width: 90%;
}

.wx-login-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.wx-login-header h3 {
    margin: 0;
    font-size: 18px;
    color: #333;
}

.wx-login-close {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #999;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wx-login-close:hover {
    color: #333;
}

.wx-login-qr {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 200px;
    margin-bottom: 15px;
}

.wx-login-tips {
    text-align: center;
    color: #666;
    font-size: 14px;
}

.wx-login-modal.show {
    display: flex;
    justify-content: center;
    align-items: center;
}

.wx-login-content {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    width: 90%;
    max-width: 420px;
    animation: slideUp 0.3s ease;
}

.wx-login-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 25px 15px;
    border-bottom: 1px solid #f0f0f0;
}

.wx-login-title {
    font-size: 22px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
}

.wx-login-close {
    background: none;
    border: none;
    font-size: 28px;
    color: #999;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.wx-login-close:hover {
    background-color: #f5f5f5;
    color: #666;
}

.wx-login-body {
    padding: 20px 25px 25px;
}

.wx-login-methods {
    text-align: center;
}

.wx-qr-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
}

.wx-qr-placeholder {
    width: 200px;
    height: 200px;
    border: 2px solid #e9ecef;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #ffffff;
}

.wx-qr-image {
    width: 200px;
    height: 200px;
    border: 2px solid #07c160;
    border-radius: 15px;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wx-qr-image canvas {
    border-radius: 12px;
}

.wx-login-tip {
    font-size: 14px;
    color: #666;
    margin: 10px 0 0 0;
}

/* 备用方案样式 */
.wx-fallback {
    text-align: center;
}

.fallback-content {
    padding: 20px;
}

.fallback-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.fallback-content h4 {
    font-size: 18px;
    color: #2c3e50;
    margin-bottom: 10px;
}

.fallback-content p {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.4;
}

.fallback-options {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.mini-program-icon {
    margin-right: 8px;
}

/* 用户信息弹窗样式 */
.user-info-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0. 0.6);
    z-index: 1000;
    animation: fadeIn 0.3s ease;
}

.user-info-modal.show {
    display: flex;
    justify-content: center;
    align-items: center;
}

.user-info-content {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    width: 90%;
    max-width: 500px;
    max-height: 80vh;
    overflow-y: auto;
    animation: slideUp 0.3s ease;
}

.user-info-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 25px 15px;
    border-bottom: 1px solid #f0f0f0;
}

.user-info-title {
    font-size: 22px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
}

.user-info-close {
    background: none;
    border: none;
    font-size: 28px;
    color: #999;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.user-info-close:hover {
    background-color: #f5f5f5;
    color: #666;
}

.user-info-body {
    padding: 20px 25px 25px;
}

.user-avatar-container {
    display: flex;
    justify-content: center;
    margin-bottom: 25px;
    position: relative;
}

.user-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid #07c160;
    object-fit: cover;
    background: #f5f5f5;
}

.user-avatar-loading {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid #07c160;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
}

.user-details {
    margin-bottom: 25px;
}

.user-detail-item {
    display: flex;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #f5f5f5;
}

.detail-label {
    font-size: 14px;
    color: #666;
    min-width: 100px;
    font-weight: 500;
}

.detail-value {
    font-size: 14px;
    color: #2c3e50;
    flex: 1;
}

.detail-value.user-uuid {
    font-family: monospace;
    font-size: 12px;
    color: #666;
    word-break: break-all;
}

.user-info-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .wx-login-content {
        width: 95%;
        margin: 20px;
    }
    
    .user-info-content {
        width: 95%;
        margin: 20px;
    }
    
    .fallback-options {
        flex-direction: column;
    }
    
    .user-info-actions {
        flex-direction: column;
    }
}
@font-face {
    font-family: 'fantilishu';
    src: url('font/fantilishu.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

/* 微信登录弹窗样式 */
.wx-login-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1000;
    animation: fadeIn 0.3s ease;
}

.wx-login-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    max-width: 400px;
    width: 90%;
}

.wx-login-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.wx-login-header h3 {
    margin: 0;
    font-size: 18px;
    color: #333;
}

.wx-login-close {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #999;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wx-login-close:hover {
    color: #333;
}

.wx-login-qr {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 200px;
    margin-bottom: 15px;
}

.wx-login-tips {
    text-align: center;
    color: #666;
    font-size: 14px;
}

.wx-login-modal.show {
    display: flex;
    justify-content: center;
    align-items: center;
}

.wx-login-content {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    width: 90%;
    max-width: 420px;
    animation: slideUp 0.3s ease;
}

.wx-login-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 25px 15px;
    border-bottom: 1px solid #f0f0f0;
}

.wx-login-title {
    font-size: 22px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
}

.wx-login-close {
    background: none;
    border: none;
    font-size: 28px;
    color: #999;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.wx-login-close:hover {
    background-color: #f5f5f5;
    color: #666;
}

.wx-login-body {
    padding: 20px 25px 25px;
}

.wx-login-methods {
    text-align: center;
}

.wx-qr-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
}

.wx-qr-placeholder {
    width: 200px;
    height: 200px;
    border: 2px solid #e9ecef;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #ffffff;
}

.wx-qr-image {
    width: 200px;
    height: 200px;
    border: 2px solid #07c160;
    border-radius: 15px;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wx-qr-image canvas {
    border-radius: 12px;
}

.wx-login-tip {
    font-size: 14px;
    color: #666;
    margin: 10px 0 0 0;
}

/* 备用方案样式 */
.wx-fallback {
    text-align: center;
}

.fallback-content {
    padding: 20px;
}

.fallback-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.fallback-content h4 {
    font-size: 18px;
    color: #2c3e50;
    margin-bottom: 10px;
}

.fallback-content p {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.4;
}

.fallback-options {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.mini-program-icon {
    margin-right: 8px;
}

/* 用户信息弹窗样式 */
.user-info-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0. 0.6);
    z-index: 1000;
    animation: fadeIn 0.3s ease;
}

.user-info-modal.show {
    display: flex;
    justify-content: center;
    align-items: center;
}

.user-info-content {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    width: 90%;
    max-width: 500px;
    max-height: 80vh;
    overflow-y: auto;
    animation: slideUp 0.3s ease;
}

.user-info-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 25px 15px;
    border-bottom: 1px solid #f0f0f0;
}

.user-info-title {
    font-size: 22px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
}

.user-info-close {
    background: none;
    border: none;
    font-size: 28px;
    color: #999;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.user-info-close:hover {
    background-color: #f5f5f5;
    color: #666;
}

.user-info-body {
    padding: 20px 25px 25px;
}

.user-avatar-container {
    display: flex;
    justify-content: center;
    margin-bottom: 25px;
    position: relative;
}

.user-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid #07c160;
    object-fit: cover;
    background: #f5f5f5;
}

.user-avatar-loading {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid #07c160;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
}

.user-details {
    margin-bottom: 25px;
}

.user-detail-item {
    display: flex;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #f5f5f5;
}

.detail-label {
    font-size: 14px;
    color: #666;
    min-width: 100px;
    font-weight: 500;
}

.detail-value {
    font-size: 14px;
    color: #2c3e50;
    flex: 1;
}

.detail-value.user-uuid {
    font-family: monospace;
    font-size: 12px;
    color: #666;
    word-break: break-all;
}

.user-info-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .wx-login-content {
        width: 95%;
        margin: 20px;
    }
    
    .user-info-content {
        width: 95%;
        margin: 20px;
    }
    
    .fallback-options {
        flex-direction: column;
    }
    
    .user-info-actions {
        flex-direction: column;
    }
}

/* 顶部导航栏 */
.top-header {
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    padding: 15px 30px;
    position: sticky;
    top: 0;
    z-index: 1000;
}

/* 微信登录弹窗样式 */
.wx-login-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1000;
    animation: fadeIn 0.3s ease;
}

.wx-login-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    max-width: 400px;
    width: 90%;
}

.wx-login-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.wx-login-header h3 {
    margin: 0;
    font-size: 18px;
    color: #333;
}

.wx-login-close {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #999;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wx-login-close:hover {
    color: #333;
}

.wx-login-qr {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 200px;
    margin-bottom: 15px;
}

.wx-login-tips {
    text-align: center;
    color: #666;
    font-size: 14px;
}

.wx-login-modal.show {
    display: flex;
    justify-content: center;
    align-items: center;
}

.wx-login-content {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    width: 90%;
    max-width: 420px;
    animation: slideUp 0.3s ease;
}

.wx-login-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 25px 15px;
    border-bottom: 1px solid #f0f0f0;
}

.wx-login-title {
    font-size: 22px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
}

.wx-login-close {
    background: none;
    border: none;
    font-size: 28px;
    color: #999;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.wx-login-close:hover {
    background-color: #f5f5f5;
    color: #666;
}

.wx-login-body {
    padding: 20px 25px 25px;
}

.wx-login-methods {
    text-align: center;
}

.wx-qr-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
}

.wx-qr-placeholder {
    width: 200px;
    height: 200px;
    border: 2px solid #e9ecef;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #ffffff;
}

.wx-qr-image {
    width: 200px;
    height: 200px;
    border: 2px solid #07c160;
    border-radius: 15px;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wx-qr-image canvas {
    border-radius: 12px;
}

.wx-login-tip {
    font-size: 14px;
    color: #666;
    margin: 10px 0 0 0;
}

/* 备用方案样式 */
.wx-fallback {
    text-align: center;
}

.fallback-content {
    padding: 20px;
}

.fallback-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.fallback-content h4 {
    font-size: 18px;
    color: #2c3e50;
    margin-bottom: 10px;
}

.fallback-content p {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.4;
}

.fallback-options {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.mini-program-icon {
    margin-right: 8px;
}

/* 用户信息弹窗样式 */
.user-info-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0. 0.6);
    z-index: 1000;
    animation: fadeIn 0.3s ease;
}

.user-info-modal.show {
    display: flex;
    justify-content: center;
    align-items: center;
}

.user-info-content {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    width: 90%;
    max-width: 500px;
    max-height: 80vh;
    overflow-y: auto;
    animation: slideUp 0.3s ease;
}

.user-info-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 25px 15px;
    border-bottom: 1px solid #f0f0f0;
}

.user-info-title {
    font-size: 22px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
}

.user-info-close {
    background: none;
    border: none;
    font-size: 28px;
    color: #999;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.user-info-close:hover {
    background-color: #f5f5f5;
    color: #666;
}

.user-info-body {
    padding: 20px 25px 25px;
}

.user-avatar-container {
    display: flex;
    justify-content: center;
    margin-bottom: 25px;
    position: relative;
}

.user-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid #07c160;
    object-fit: cover;
    background: #f5f5f5;
}

.user-avatar-loading {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid #07c160;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
}

.user-details {
    margin-bottom: 25px;
}

.user-detail-item {
    display: flex;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #f5f5f5;
}

.detail-label {
    font-size: 14px;
    color: #666;
    min-width: 100px;
    font-weight: 500;
}

.detail-value {
    font-size: 14px;
    color: #2c3e50;
    flex: 1;
}

.detail-value.user-uuid {
    font-family: monospace;
    font-size: 12px;
    color: #666;
    word-break: break-all;
}

.user-info-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .wx-login-content {
        width: 95%;
        margin: 20px;
    }
    
    .user-info-content {
        width: 95%;
        margin: 20px;
    }
    
    .fallback-options {
        flex-direction: column;
    }
    
    .user-info-actions {
        flex-direction: column;
    }
}

.header-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* 微信登录弹窗样式 */
.wx-login-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1000;
    animation: fadeIn 0.3s ease;
}

.wx-login-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    max-width: 400px;
    width: 90%;
}

.wx-login-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.wx-login-header h3 {
    margin: 0;
    font-size: 18px;
    color: #333;
}

.wx-login-close {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #999;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wx-login-close:hover {
    color: #333;
}

.wx-login-qr {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 200px;
    margin-bottom: 15px;
}

.wx-login-tips {
    text-align: center;
    color: #666;
    font-size: 14px;
}

.wx-login-modal.show {
    display: flex;
    justify-content: center;
    align-items: center;
}

.wx-login-content {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    width: 90%;
    max-width: 420px;
    animation: slideUp 0.3s ease;
}

.wx-login-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 25px 15px;
    border-bottom: 1px solid #f0f0f0;
}

.wx-login-title {
    font-size: 22px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
}

.wx-login-close {
    background: none;
    border: none;
    font-size: 28px;
    color: #999;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.wx-login-close:hover {
    background-color: #f5f5f5;
    color: #666;
}

.wx-login-body {
    padding: 20px 25px 25px;
}

.wx-login-methods {
    text-align: center;
}

.wx-qr-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
}

.wx-qr-placeholder {
    width: 200px;
    height: 200px;
    border: 2px solid #e9ecef;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #ffffff;
}

.wx-qr-image {
    width: 200px;
    height: 200px;
    border: 2px solid #07c160;
    border-radius: 15px;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wx-qr-image canvas {
    border-radius: 12px;
}

.wx-login-tip {
    font-size: 14px;
    color: #666;
    margin: 10px 0 0 0;
}

/* 备用方案样式 */
.wx-fallback {
    text-align: center;
}

.fallback-content {
    padding: 20px;
}

.fallback-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.fallback-content h4 {
    font-size: 18px;
    color: #2c3e50;
    margin-bottom: 10px;
}

.fallback-content p {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.4;
}

.fallback-options {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.mini-program-icon {
    margin-right: 8px;
}

/* 用户信息弹窗样式 */
.user-info-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0. 0.6);
    z-index: 1000;
    animation: fadeIn 0.3s ease;
}

.user-info-modal.show {
    display: flex;
    justify-content: center;
    align-items: center;
}

.user-info-content {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    width: 90%;
    max-width: 500px;
    max-height: 80vh;
    overflow-y: auto;
    animation: slideUp 0.3s ease;
}

.user-info-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 25px 15px;
    border-bottom: 1px solid #f0f0f0;
}

.user-info-title {
    font-size: 22px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
}

.user-info-close {
    background: none;
    border: none;
    font-size: 28px;
    color: #999;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.user-info-close:hover {
    background-color: #f5f5f5;
    color: #666;
}

.user-info-body {
    padding: 20px 25px 25px;
}

.user-avatar-container {
    display: flex;
    justify-content: center;
    margin-bottom: 25px;
    position: relative;
}

.user-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid #07c160;
    object-fit: cover;
    background: #f5f5f5;
}

.user-avatar-loading {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid #07c160;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
}

.user-details {
    margin-bottom: 25px;
}

.user-detail-item {
    display: flex;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #f5f5f5;
}

.detail-label {
    font-size: 14px;
    color: #666;
    min-width: 100px;
    font-weight: 500;
}

.detail-value {
    font-size: 14px;
    color: #2c3e50;
    flex: 1;
}

.detail-value.user-uuid {
    font-family: monospace;
    font-size: 12px;
    color: #666;
    word-break: break-all;
}

.user-info-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .wx-login-content {
        width: 95%;
        margin: 20px;
    }
    
    .user-info-content {
        width: 95%;
        margin: 20px;
    }
    
    .fallback-options {
        flex-direction: column;
    }
    
    .user-info-actions {
        flex-direction: column;
    }
}

.title-section {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* 微信登录弹窗样式 */
.wx-login-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1000;
    animation: fadeIn 0.3s ease;
}

.wx-login-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    max-width: 400px;
    width: 90%;
}

.wx-login-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.wx-login-header h3 {
    margin: 0;
    font-size: 18px;
    color: #333;
}

.wx-login-close {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #999;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wx-login-close:hover {
    color: #333;
}

.wx-login-qr {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 200px;
    margin-bottom: 15px;
}

.wx-login-tips {
    text-align: center;
    color: #666;
    font-size: 14px;
}

.wx-login-modal.show {
    display: flex;
    justify-content: center;
    align-items: center;
}

.wx-login-content {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    width: 90%;
    max-width: 420px;
    animation: slideUp 0.3s ease;
}

.wx-login-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 25px 15px;
    border-bottom: 1px solid #f0f0f0;
}

.wx-login-title {
    font-size: 22px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
}

.wx-login-close {
    background: none;
    border: none;
    font-size: 28px;
    color: #999;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.wx-login-close:hover {
    background-color: #f5f5f5;
    color: #666;
}

.wx-login-body {
    padding: 20px 25px 25px;
}

.wx-login-methods {
    text-align: center;
}

.wx-qr-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
}

.wx-qr-placeholder {
    width: 200px;
    height: 200px;
    border: 2px solid #e9ecef;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #ffffff;
}

.wx-qr-image {
    width: 200px;
    height: 200px;
    border: 2px solid #07c160;
    border-radius: 15px;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wx-qr-image canvas {
    border-radius: 12px;
}

.wx-login-tip {
    font-size: 14px;
    color: #666;
    margin: 10px 0 0 0;
}

/* 备用方案样式 */
.wx-fallback {
    text-align: center;
}

.fallback-content {
    padding: 20px;
}

.fallback-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.fallback-content h4 {
    font-size: 18px;
    color: #2c3e50;
    margin-bottom: 10px;
}

.fallback-content p {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.4;
}

.fallback-options {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.mini-program-icon {
    margin-right: 8px;
}

/* 用户信息弹窗样式 */
.user-info-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0. 0.6);
    z-index: 1000;
    animation: fadeIn 0.3s ease;
}

.user-info-modal.show {
    display: flex;
    justify-content: center;
    align-items: center;
}

.user-info-content {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    width: 90%;
    max-width: 500px;
    max-height: 80vh;
    overflow-y: auto;
    animation: slideUp 0.3s ease;
}

.user-info-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 25px 15px;
    border-bottom: 1px solid #f0f0f0;
}

.user-info-title {
    font-size: 22px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
}

.user-info-close {
    background: none;
    border: none;
    font-size: 28px;
    color: #999;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.user-info-close:hover {
    background-color: #f5f5f5;
    color: #666;
}

.user-info-body {
    padding: 20px 25px 25px;
}

.user-avatar-container {
    display: flex;
    justify-content: center;
    margin-bottom: 25px;
    position: relative;
}

.user-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid #07c160;
    object-fit: cover;
    background: #f5f5f5;
}

.user-avatar-loading {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid #07c160;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
}

.user-details {
    margin-bottom: 25px;
}

.user-detail-item {
    display: flex;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #f5f5f5;
}

.detail-label {
    font-size: 14px;
    color: #666;
    min-width: 100px;
    font-weight: 500;
}

.detail-value {
    font-size: 14px;
    color: #2c3e50;
    flex: 1;
}

.detail-value.user-uuid {
    font-family: monospace;
    font-size: 12px;
    color: #666;
    word-break: break-all;
}

.user-info-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .wx-login-content {
        width: 95%;
        margin: 20px;
    }
    
    .user-info-content {
        width: 95%;
        margin: 20px;
    }
    
    .fallback-options {
        flex-direction: column;
    }
    
    .user-info-actions {
        flex-direction: column;
    }
}

.site-logo {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    object-fit: contain;
    display: block;
    background-color: #00BCD4;
    border: 2px solid #00BCD4;
    box-sizing: border-box;
}

/* 微信登录弹窗样式 */
.wx-login-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1000;
    animation: fadeIn 0.3s ease;
}

.wx-login-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    max-width: 400px;
    width: 90%;
}

.wx-login-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.wx-login-header h3 {
    margin: 0;
    font-size: 18px;
    color: #333;
}

.wx-login-close {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #999;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wx-login-close:hover {
    color: #333;
}

.wx-login-qr {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 200px;
    margin-bottom: 15px;
}

.wx-login-tips {
    text-align: center;
    color: #666;
    font-size: 14px;
}

.wx-login-modal.show {
    display: flex;
    justify-content: center;
    align-items: center;
}

.wx-login-content {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    width: 90%;
    max-width: 420px;
    animation: slideUp 0.3s ease;
}

.wx-login-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 25px 15px;
    border-bottom: 1px solid #f0f0f0;
}

.wx-login-title {
    font-size: 22px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
}

.wx-login-close {
    background: none;
    border: none;
    font-size: 28px;
    color: #999;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.wx-login-close:hover {
    background-color: #f5f5f5;
    color: #666;
}

.wx-login-body {
    padding: 20px 25px 25px;
}

.wx-login-methods {
    text-align: center;
}

.wx-qr-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
}

.wx-qr-placeholder {
    width: 200px;
    height: 200px;
    border: 2px solid #e9ecef;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #ffffff;
}

.wx-qr-image {
    width: 200px;
    height: 200px;
    border: 2px solid #07c160;
    border-radius: 15px;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wx-qr-image canvas {
    border-radius: 12px;
}

.wx-login-tip {
    font-size: 14px;
    color: #666;
    margin: 10px 0 0 0;
}

/* 备用方案样式 */
.wx-fallback {
    text-align: center;
}

.fallback-content {
    padding: 20px;
}

.fallback-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.fallback-content h4 {
    font-size: 18px;
    color: #2c3e50;
    margin-bottom: 10px;
}

.fallback-content p {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.4;
}

.fallback-options {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.mini-program-icon {
    margin-right: 8px;
}

/* 用户信息弹窗样式 */
.user-info-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0. 0.6);
    z-index: 1000;
    animation: fadeIn 0.3s ease;
}

.user-info-modal.show {
    display: flex;
    justify-content: center;
    align-items: center;
}

.user-info-content {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    width: 90%;
    max-width: 500px;
    max-height: 80vh;
    overflow-y: auto;
    animation: slideUp 0.3s ease;
}

.user-info-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 25px 15px;
    border-bottom: 1px solid #f0f0f0;
}

.user-info-title {
    font-size: 22px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
}

.user-info-close {
    background: none;
    border: none;
    font-size: 28px;
    color: #999;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.user-info-close:hover {
    background-color: #f5f5f5;
    color: #666;
}

.user-info-body {
    padding: 20px 25px 25px;
}

.user-avatar-container {
    display: flex;
    justify-content: center;
    margin-bottom: 25px;
    position: relative;
}

.user-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid #07c160;
    object-fit: cover;
    background: #f5f5f5;
}

.user-avatar-loading {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid #07c160;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
}

.user-details {
    margin-bottom: 25px;
}

.user-detail-item {
    display: flex;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #f5f5f5;
}

.detail-label {
    font-size: 14px;
    color: #666;
    min-width: 100px;
    font-weight: 500;
}

.detail-value {
    font-size: 14px;
    color: #2c3e50;
    flex: 1;
}

.detail-value.user-uuid {
    font-family: monospace;
    font-size: 12px;
    color: #666;
    word-break: break-all;
}

.user-info-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .wx-login-content {
        width: 95%;
        margin: 20px;
    }
    
    .user-info-content {
        width: 95%;
        margin: 20px;
    }
    
    .fallback-options {
        flex-direction: column;
    }
    
    .user-info-actions {
        flex-direction: column;
    }
}

/* 如果图片加载失败时的备用样式 */
.site-logo[src=""],
.site-logo:not([src]),
.site-logo[src$="undefined"] {
    background: linear-gradient(135deg, #00BCD4, #0097A7);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 16px;
    font-weight: bold;
    text-indent: 0;
}

/* 微信登录弹窗样式 */
.wx-login-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1000;
    animation: fadeIn 0.3s ease;
}

.wx-login-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    max-width: 400px;
    width: 90%;
}

.wx-login-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.wx-login-header h3 {
    margin: 0;
    font-size: 18px;
    color: #333;
}

.wx-login-close {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #999;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wx-login-close:hover {
    color: #333;
}

.wx-login-qr {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 200px;
    margin-bottom: 15px;
}

.wx-login-tips {
    text-align: center;
    color: #666;
    font-size: 14px;
}

.wx-login-modal.show {
    display: flex;
    justify-content: center;
    align-items: center;
}

.wx-login-content {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    width: 90%;
    max-width: 420px;
    animation: slideUp 0.3s ease;
}

.wx-login-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 25px 15px;
    border-bottom: 1px solid #f0f0f0;
}

.wx-login-title {
    font-size: 22px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
}

.wx-login-close {
    background: none;
    border: none;
    font-size: 28px;
    color: #999;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.wx-login-close:hover {
    background-color: #f5f5f5;
    color: #666;
}

.wx-login-body {
    padding: 20px 25px 25px;
}

.wx-login-methods {
    text-align: center;
}

.wx-qr-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
}

.wx-qr-placeholder {
    width: 200px;
    height: 200px;
    border: 2px solid #e9ecef;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #ffffff;
}

.wx-qr-image {
    width: 200px;
    height: 200px;
    border: 2px solid #07c160;
    border-radius: 15px;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wx-qr-image canvas {
    border-radius: 12px;
}

.wx-login-tip {
    font-size: 14px;
    color: #666;
    margin: 10px 0 0 0;
}

/* 备用方案样式 */
.wx-fallback {
    text-align: center;
}

.fallback-content {
    padding: 20px;
}

.fallback-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.fallback-content h4 {
    font-size: 18px;
    color: #2c3e50;
    margin-bottom: 10px;
}

.fallback-content p {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.4;
}

.fallback-options {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.mini-program-icon {
    margin-right: 8px;
}

/* 用户信息弹窗样式 */
.user-info-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0. 0.6);
    z-index: 1000;
    animation: fadeIn 0.3s ease;
}

.user-info-modal.show {
    display: flex;
    justify-content: center;
    align-items: center;
}

.user-info-content {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    width: 90%;
    max-width: 500px;
    max-height: 80vh;
    overflow-y: auto;
    animation: slideUp 0.3s ease;
}

.user-info-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 25px 15px;
    border-bottom: 1px solid #f0f0f0;
}

.user-info-title {
    font-size: 22px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
}

.user-info-close {
    background: none;
    border: none;
    font-size: 28px;
    color: #999;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.user-info-close:hover {
    background-color: #f5f5f5;
    color: #666;
}

.user-info-body {
    padding: 20px 25px 25px;
}

.user-avatar-container {
    display: flex;
    justify-content: center;
    margin-bottom: 25px;
    position: relative;
}

.user-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid #07c160;
    object-fit: cover;
    background: #f5f5f5;
}

.user-avatar-loading {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid #07c160;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
}

.user-details {
    margin-bottom: 25px;
}

.user-detail-item {
    display: flex;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #f5f5f5;
}

.detail-label {
    font-size: 14px;
    color: #666;
    min-width: 100px;
    font-weight: 500;
}

.detail-value {
    font-size: 14px;
    color: #2c3e50;
    flex: 1;
}

.detail-value.user-uuid {
    font-family: monospace;
    font-size: 12px;
    color: #666;
    word-break: break-all;
}

.user-info-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .wx-login-content {
        width: 95%;
        margin: 20px;
    }
    
    .user-info-content {
        width: 95%;
        margin: 20px;
    }
    
    .fallback-options {
        flex-direction: column;
    }
    
    .user-info-actions {
        flex-direction: column;
    }
}

.logo {
    font-size: 24px;
    font-weight: bold;
    color: #00BCD4;
}

/* 微信登录弹窗样式 */
.wx-login-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1000;
    animation: fadeIn 0.3s ease;
}

.wx-login-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    max-width: 400px;
    width: 90%;
}

.wx-login-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.wx-login-header h3 {
    margin: 0;
    font-size: 18px;
    color: #333;
}

.wx-login-close {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #999;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wx-login-close:hover {
    color: #333;
}

.wx-login-qr {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 200px;
    margin-bottom: 15px;
}

.wx-login-tips {
    text-align: center;
    color: #666;
    font-size: 14px;
}

.wx-login-modal.show {
    display: flex;
    justify-content: center;
    align-items: center;
}

.wx-login-content {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    width: 90%;
    max-width: 420px;
    animation: slideUp 0.3s ease;
}

.wx-login-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 25px 15px;
    border-bottom: 1px solid #f0f0f0;
}

.wx-login-title {
    font-size: 22px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
}

.wx-login-close {
    background: none;
    border: none;
    font-size: 28px;
    color: #999;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.wx-login-close:hover {
    background-color: #f5f5f5;
    color: #666;
}

.wx-login-body {
    padding: 20px 25px 25px;
}

.wx-login-methods {
    text-align: center;
}

.wx-qr-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
}

.wx-qr-placeholder {
    width: 200px;
    height: 200px;
    border: 2px solid #e9ecef;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #ffffff;
}

.wx-qr-image {
    width: 200px;
    height: 200px;
    border: 2px solid #07c160;
    border-radius: 15px;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wx-qr-image canvas {
    border-radius: 12px;
}

.wx-login-tip {
    font-size: 14px;
    color: #666;
    margin: 10px 0 0 0;
}

/* 备用方案样式 */
.wx-fallback {
    text-align: center;
}

.fallback-content {
    padding: 20px;
}

.fallback-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.fallback-content h4 {
    font-size: 18px;
    color: #2c3e50;
    margin-bottom: 10px;
}

.fallback-content p {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.4;
}

.fallback-options {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.mini-program-icon {
    margin-right: 8px;
}

/* 用户信息弹窗样式 */
.user-info-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0. 0.6);
    z-index: 1000;
    animation: fadeIn 0.3s ease;
}

.user-info-modal.show {
    display: flex;
    justify-content: center;
    align-items: center;
}

.user-info-content {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    width: 90%;
    max-width: 500px;
    max-height: 80vh;
    overflow-y: auto;
    animation: slideUp 0.3s ease;
}

.user-info-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 25px 15px;
    border-bottom: 1px solid #f0f0f0;
}

.user-info-title {
    font-size: 22px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
}

.user-info-close {
    background: none;
    border: none;
    font-size: 28px;
    color: #999;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.user-info-close:hover {
    background-color: #f5f5f5;
    color: #666;
}

.user-info-body {
    padding: 20px 25px 25px;
}

.user-avatar-container {
    display: flex;
    justify-content: center;
    margin-bottom: 25px;
    position: relative;
}

.user-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid #07c160;
    object-fit: cover;
    background: #f5f5f5;
}

.user-avatar-loading {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid #07c160;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
}

.user-details {
    margin-bottom: 25px;
}

.user-detail-item {
    display: flex;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #f5f5f5;
}

.detail-label {
    font-size: 14px;
    color: #666;
    min-width: 100px;
    font-weight: 500;
}

.detail-value {
    font-size: 14px;
    color: #2c3e50;
    flex: 1;
}

.detail-value.user-uuid {
    font-family: monospace;
    font-size: 12px;
    color: #666;
    word-break: break-all;
}

.user-info-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .wx-login-content {
        width: 95%;
        margin: 20px;
    }
    
    .user-info-content {
        width: 95%;
        margin: 20px;
    }
    
    .fallback-options {
        flex-direction: column;
    }
    
    .user-info-actions {
        flex-direction: column;
    }
}

.header-actions {
    display: flex;
    gap: 15px;
}

/* 微信登录弹窗样式 */
.wx-login-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1000;
    animation: fadeIn 0.3s ease;
}

.wx-login-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    max-width: 400px;
    width: 90%;
}

.wx-login-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.wx-login-header h3 {
    margin: 0;
    font-size: 18px;
    color: #333;
}

.wx-login-close {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #999;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wx-login-close:hover {
    color: #333;
}

.wx-login-qr {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 200px;
    margin-bottom: 15px;
}

.wx-login-tips {
    text-align: center;
    color: #666;
    font-size: 14px;
}

.wx-login-modal.show {
    display: flex;
    justify-content: center;
    align-items: center;
}

.wx-login-content {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    width: 90%;
    max-width: 420px;
    animation: slideUp 0.3s ease;
}

.wx-login-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 25px 15px;
    border-bottom: 1px solid #f0f0f0;
}

.wx-login-title {
    font-size: 22px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
}

.wx-login-close {
    background: none;
    border: none;
    font-size: 28px;
    color: #999;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.wx-login-close:hover {
    background-color: #f5f5f5;
    color: #666;
}

.wx-login-body {
    padding: 20px 25px 25px;
}

.wx-login-methods {
    text-align: center;
}

.wx-qr-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
}

.wx-qr-placeholder {
    width: 200px;
    height: 200px;
    border: 2px solid #e9ecef;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #ffffff;
}

.wx-qr-image {
    width: 200px;
    height: 200px;
    border: 2px solid #07c160;
    border-radius: 15px;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wx-qr-image canvas {
    border-radius: 12px;
}

.wx-login-tip {
    font-size: 14px;
    color: #666;
    margin: 10px 0 0 0;
}

/* 备用方案样式 */
.wx-fallback {
    text-align: center;
}

.fallback-content {
    padding: 20px;
}

.fallback-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.fallback-content h4 {
    font-size: 18px;
    color: #2c3e50;
    margin-bottom: 10px;
}

.fallback-content p {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.4;
}

.fallback-options {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.mini-program-icon {
    margin-right: 8px;
}

/* 用户信息弹窗样式 */
.user-info-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0. 0.6);
    z-index: 1000;
    animation: fadeIn 0.3s ease;
}

.user-info-modal.show {
    display: flex;
    justify-content: center;
    align-items: center;
}

.user-info-content {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    width: 90%;
    max-width: 500px;
    max-height: 80vh;
    overflow-y: auto;
    animation: slideUp 0.3s ease;
}

.user-info-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 25px 15px;
    border-bottom: 1px solid #f0f0f0;
}

.user-info-title {
    font-size: 22px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
}

.user-info-close {
    background: none;
    border: none;
    font-size: 28px;
    color: #999;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.user-info-close:hover {
    background-color: #f5f5f5;
    color: #666;
}

.user-info-body {
    padding: 20px 25px 25px;
}

.user-avatar-container {
    display: flex;
    justify-content: center;
    margin-bottom: 25px;
    position: relative;
}

.user-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid #07c160;
    object-fit: cover;
    background: #f5f5f5;
}

.user-avatar-loading {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid #07c160;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
}

.user-details {
    margin-bottom: 25px;
}

.user-detail-item {
    display: flex;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #f5f5f5;
}

.detail-label {
    font-size: 14px;
    color: #666;
    min-width: 100px;
    font-weight: 500;
}

.detail-value {
    font-size: 14px;
    color: #2c3e50;
    flex: 1;
}

.detail-value.user-uuid {
    font-family: monospace;
    font-size: 12px;
    color: #666;
    word-break: break-all;
}

.user-info-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .wx-login-content {
        width: 95%;
        margin: 20px;
    }
    
    .user-info-content {
        width: 95%;
        margin: 20px;
    }
    
    .fallback-options {
        flex-direction: column;
    }
    
    .user-info-actions {
        flex-direction: column;
    }
}

.btn {
    padding: 8px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.3s;
}

/* 微信登录弹窗样式 */
.wx-login-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1000;
    animation: fadeIn 0.3s ease;
}

.wx-login-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    max-width: 400px;
    width: 90%;
}

.wx-login-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.wx-login-header h3 {
    margin: 0;
    font-size: 18px;
    color: #333;
}

.wx-login-close {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #999;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wx-login-close:hover {
    color: #333;
}

.wx-login-qr {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 200px;
    margin-bottom: 15px;
}

.wx-login-tips {
    text-align: center;
    color: #666;
    font-size: 14px;
}

.wx-login-modal.show {
    display: flex;
    justify-content: center;
    align-items: center;
}

.wx-login-content {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    width: 90%;
    max-width: 420px;
    animation: slideUp 0.3s ease;
}

.wx-login-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 25px 15px;
    border-bottom: 1px solid #f0f0f0;
}

.wx-login-title {
    font-size: 22px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
}

.wx-login-close {
    background: none;
    border: none;
    font-size: 28px;
    color: #999;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.wx-login-close:hover {
    background-color: #f5f5f5;
    color: #666;
}

.wx-login-body {
    padding: 20px 25px 25px;
}

.wx-login-methods {
    text-align: center;
}

.wx-qr-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
}

.wx-qr-placeholder {
    width: 200px;
    height: 200px;
    border: 2px solid #e9ecef;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #ffffff;
}

.wx-qr-image {
    width: 200px;
    height: 200px;
    border: 2px solid #07c160;
    border-radius: 15px;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wx-qr-image canvas {
    border-radius: 12px;
}

.wx-login-tip {
    font-size: 14px;
    color: #666;
    margin: 10px 0 0 0;
}

/* 备用方案样式 */
.wx-fallback {
    text-align: center;
}

.fallback-content {
    padding: 20px;
}

.fallback-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.fallback-content h4 {
    font-size: 18px;
    color: #2c3e50;
    margin-bottom: 10px;
}

.fallback-content p {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.4;
}

.fallback-options {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.mini-program-icon {
    margin-right: 8px;
}

/* 用户信息弹窗样式 */
.user-info-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0. 0.6);
    z-index: 1000;
    animation: fadeIn 0.3s ease;
}

.user-info-modal.show {
    display: flex;
    justify-content: center;
    align-items: center;
}

.user-info-content {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    width: 90%;
    max-width: 500px;
    max-height: 80vh;
    overflow-y: auto;
    animation: slideUp 0.3s ease;
}

.user-info-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 25px 15px;
    border-bottom: 1px solid #f0f0f0;
}

.user-info-title {
    font-size: 22px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
}

.user-info-close {
    background: none;
    border: none;
    font-size: 28px;
    color: #999;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.user-info-close:hover {
    background-color: #f5f5f5;
    color: #666;
}

.user-info-body {
    padding: 20px 25px 25px;
}

.user-avatar-container {
    display: flex;
    justify-content: center;
    margin-bottom: 25px;
    position: relative;
}

.user-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid #07c160;
    object-fit: cover;
    background: #f5f5f5;
}

.user-avatar-loading {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid #07c160;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
}

.user-details {
    margin-bottom: 25px;
}

.user-detail-item {
    display: flex;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #f5f5f5;
}

.detail-label {
    font-size: 14px;
    color: #666;
    min-width: 100px;
    font-weight: 500;
}

.detail-value {
    font-size: 14px;
    color: #2c3e50;
    flex: 1;
}

.detail-value.user-uuid {
    font-family: monospace;
    font-size: 12px;
    color: #666;
    word-break: break-all;
}

.user-info-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .wx-login-content {
        width: 95%;
        margin: 20px;
    }
    
    .user-info-content {
        width: 95%;
        margin: 20px;
    }
    
    .fallback-options {
        flex-direction: column;
    }
    
    .user-info-actions {
        flex-direction: column;
    }
}

.btn-login {
    background-color: #f5f5f5;
    color: #333;
    border: 1px solid #ddd;
}

/* 微信登录弹窗样式 */
.wx-login-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1000;
    animation: fadeIn 0.3s ease;
}

.wx-login-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    max-width: 400px;
    width: 90%;
}

.wx-login-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.wx-login-header h3 {
    margin: 0;
    font-size: 18px;
    color: #333;
}

.wx-login-close {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #999;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wx-login-close:hover {
    color: #333;
}

.wx-login-qr {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 200px;
    margin-bottom: 15px;
}

.wx-login-tips {
    text-align: center;
    color: #666;
    font-size: 14px;
}

.wx-login-modal.show {
    display: flex;
    justify-content: center;
    align-items: center;
}

.wx-login-content {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    width: 90%;
    max-width: 420px;
    animation: slideUp 0.3s ease;
}

.wx-login-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 25px 15px;
    border-bottom: 1px solid #f0f0f0;
}

.wx-login-title {
    font-size: 22px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
}

.wx-login-close {
    background: none;
    border: none;
    font-size: 28px;
    color: #999;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.wx-login-close:hover {
    background-color: #f5f5f5;
    color: #666;
}

.wx-login-body {
    padding: 20px 25px 25px;
}

.wx-login-methods {
    text-align: center;
}

.wx-qr-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
}

.wx-qr-placeholder {
    width: 200px;
    height: 200px;
    border: 2px solid #e9ecef;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #ffffff;
}

.wx-qr-image {
    width: 200px;
    height: 200px;
    border: 2px solid #07c160;
    border-radius: 15px;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wx-qr-image canvas {
    border-radius: 12px;
}

.wx-login-tip {
    font-size: 14px;
    color: #666;
    margin: 10px 0 0 0;
}

/* 备用方案样式 */
.wx-fallback {
    text-align: center;
}

.fallback-content {
    padding: 20px;
}

.fallback-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.fallback-content h4 {
    font-size: 18px;
    color: #2c3e50;
    margin-bottom: 10px;
}

.fallback-content p {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.4;
}

.fallback-options {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.mini-program-icon {
    margin-right: 8px;
}

/* 用户信息弹窗样式 */
.user-info-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0. 0.6);
    z-index: 1000;
    animation: fadeIn 0.3s ease;
}

.user-info-modal.show {
    display: flex;
    justify-content: center;
    align-items: center;
}

.user-info-content {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    width: 90%;
    max-width: 500px;
    max-height: 80vh;
    overflow-y: auto;
    animation: slideUp 0.3s ease;
}

.user-info-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 25px 15px;
    border-bottom: 1px solid #f0f0f0;
}

.user-info-title {
    font-size: 22px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
}

.user-info-close {
    background: none;
    border: none;
    font-size: 28px;
    color: #999;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.user-info-close:hover {
    background-color: #f5f5f5;
    color: #666;
}

.user-info-body {
    padding: 20px 25px 25px;
}

.user-avatar-container {
    display: flex;
    justify-content: center;
    margin-bottom: 25px;
    position: relative;
}

.user-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid #07c160;
    object-fit: cover;
    background: #f5f5f5;
}

.user-avatar-loading {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid #07c160;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
}

.user-details {
    margin-bottom: 25px;
}

.user-detail-item {
    display: flex;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #f5f5f5;
}

.detail-label {
    font-size: 14px;
    color: #666;
    min-width: 100px;
    font-weight: 500;
}

.detail-value {
    font-size: 14px;
    color: #2c3e50;
    flex: 1;
}

.detail-value.user-uuid {
    font-family: monospace;
    font-size: 12px;
    color: #666;
    word-break: break-all;
}

.user-info-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .wx-login-content {
        width: 95%;
        margin: 20px;
    }
    
    .user-info-content {
        width: 95%;
        margin: 20px;
    }
    
    .fallback-options {
        flex-direction: column;
    }
    
    .user-info-actions {
        flex-direction: column;
    }
}

.btn-login:hover {
    background-color: #e9e9e9;
    border-color: #bbb;
}

/* 微信登录弹窗样式 */
.wx-login-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1000;
    animation: fadeIn 0.3s ease;
}

.wx-login-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    max-width: 400px;
    width: 90%;
}

.wx-login-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.wx-login-header h3 {
    margin: 0;
    font-size: 18px;
    color: #333;
}

.wx-login-close {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #999;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wx-login-close:hover {
    color: #333;
}

.wx-login-qr {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 200px;
    margin-bottom: 15px;
}

.wx-login-tips {
    text-align: center;
    color: #666;
    font-size: 14px;
}

.wx-login-modal.show {
    display: flex;
    justify-content: center;
    align-items: center;
}

.wx-login-content {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    width: 90%;
    max-width: 420px;
    animation: slideUp 0.3s ease;
}

.wx-login-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 25px 15px;
    border-bottom: 1px solid #f0f0f0;
}

.wx-login-title {
    font-size: 22px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
}

.wx-login-close {
    background: none;
    border: none;
    font-size: 28px;
    color: #999;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.wx-login-close:hover {
    background-color: #f5f5f5;
    color: #666;
}

.wx-login-body {
    padding: 20px 25px 25px;
}

.wx-login-methods {
    text-align: center;
}

.wx-qr-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
}

.wx-qr-placeholder {
    width: 200px;
    height: 200px;
    border: 2px solid #e9ecef;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #ffffff;
}

.wx-qr-image {
    width: 200px;
    height: 200px;
    border: 2px solid #07c160;
    border-radius: 15px;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wx-qr-image canvas {
    border-radius: 12px;
}

.wx-login-tip {
    font-size: 14px;
    color: #666;
    margin: 10px 0 0 0;
}

/* 备用方案样式 */
.wx-fallback {
    text-align: center;
}

.fallback-content {
    padding: 20px;
}

.fallback-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.fallback-content h4 {
    font-size: 18px;
    color: #2c3e50;
    margin-bottom: 10px;
}

.fallback-content p {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.4;
}

.fallback-options {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.mini-program-icon {
    margin-right: 8px;
}

/* 用户信息弹窗样式 */
.user-info-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0. 0.6);
    z-index: 1000;
    animation: fadeIn 0.3s ease;
}

.user-info-modal.show {
    display: flex;
    justify-content: center;
    align-items: center;
}

.user-info-content {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    width: 90%;
    max-width: 500px;
    max-height: 80vh;
    overflow-y: auto;
    animation: slideUp 0.3s ease;
}

.user-info-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 25px 15px;
    border-bottom: 1px solid #f0f0f0;
}

.user-info-title {
    font-size: 22px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
}

.user-info-close {
    background: none;
    border: none;
    font-size: 28px;
    color: #999;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.user-info-close:hover {
    background-color: #f5f5f5;
    color: #666;
}

.user-info-body {
    padding: 20px 25px 25px;
}

.user-avatar-container {
    display: flex;
    justify-content: center;
    margin-bottom: 25px;
    position: relative;
}

.user-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid #07c160;
    object-fit: cover;
    background: #f5f5f5;
}

.user-avatar-loading {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid #07c160;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
}

.user-details {
    margin-bottom: 25px;
}

.user-detail-item {
    display: flex;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #f5f5f5;
}

.detail-label {
    font-size: 14px;
    color: #666;
    min-width: 100px;
    font-weight: 500;
}

.detail-value {
    font-size: 14px;
    color: #2c3e50;
    flex: 1;
}

.detail-value.user-uuid {
    font-family: monospace;
    font-size: 12px;
    color: #666;
    word-break: break-all;
}

.user-info-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .wx-login-content {
        width: 95%;
        margin: 20px;
    }
    
    .user-info-content {
        width: 95%;
        margin: 20px;
    }
    
    .fallback-options {
        flex-direction: column;
    }
    
    .user-info-actions {
        flex-direction: column;
    }
}

.btn-vip {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #fff;
    font-weight: 500;
    box-shadow: 0 2px 8px rgba(255, 215, 0, 0.3);
}

/* 微信登录弹窗样式 */
.wx-login-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1000;
    animation: fadeIn 0.3s ease;
}

.wx-login-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    max-width: 400px;
    width: 90%;
}

.wx-login-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.wx-login-header h3 {
    margin: 0;
    font-size: 18px;
    color: #333;
}

.wx-login-close {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #999;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wx-login-close:hover {
    color: #333;
}

.wx-login-qr {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 200px;
    margin-bottom: 15px;
}

.wx-login-tips {
    text-align: center;
    color: #666;
    font-size: 14px;
}

.wx-login-modal.show {
    display: flex;
    justify-content: center;
    align-items: center;
}

.wx-login-content {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    width: 90%;
    max-width: 420px;
    animation: slideUp 0.3s ease;
}

.wx-login-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 25px 15px;
    border-bottom: 1px solid #f0f0f0;
}

.wx-login-title {
    font-size: 22px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
}

.wx-login-close {
    background: none;
    border: none;
    font-size: 28px;
    color: #999;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.wx-login-close:hover {
    background-color: #f5f5f5;
    color: #666;
}

.wx-login-body {
    padding: 20px 25px 25px;
}

.wx-login-methods {
    text-align: center;
}

.wx-qr-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
}

.wx-qr-placeholder {
    width: 200px;
    height: 200px;
    border: 2px solid #e9ecef;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #ffffff;
}

.wx-qr-image {
    width: 200px;
    height: 200px;
    border: 2px solid #07c160;
    border-radius: 15px;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wx-qr-image canvas {
    border-radius: 12px;
}

.wx-login-tip {
    font-size: 14px;
    color: #666;
    margin: 10px 0 0 0;
}

/* 备用方案样式 */
.wx-fallback {
    text-align: center;
}

.fallback-content {
    padding: 20px;
}

.fallback-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.fallback-content h4 {
    font-size: 18px;
    color: #2c3e50;
    margin-bottom: 10px;
}

.fallback-content p {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.4;
}

.fallback-options {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.mini-program-icon {
    margin-right: 8px;
}

/* 用户信息弹窗样式 */
.user-info-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0. 0.6);
    z-index: 1000;
    animation: fadeIn 0.3s ease;
}

.user-info-modal.show {
    display: flex;
    justify-content: center;
    align-items: center;
}

.user-info-content {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    width: 90%;
    max-width: 500px;
    max-height: 80vh;
    overflow-y: auto;
    animation: slideUp 0.3s ease;
}

.user-info-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 25px 15px;
    border-bottom: 1px solid #f0f0f0;
}

.user-info-title {
    font-size: 22px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
}

.user-info-close {
    background: none;
    border: none;
    font-size: 28px;
    color: #999;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.user-info-close:hover {
    background-color: #f5f5f5;
    color: #666;
}

.user-info-body {
    padding: 20px 25px 25px;
}

.user-avatar-container {
    display: flex;
    justify-content: center;
    margin-bottom: 25px;
    position: relative;
}

.user-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid #07c160;
    object-fit: cover;
    background: #f5f5f5;
}

.user-avatar-loading {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid #07c160;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
}

.user-details {
    margin-bottom: 25px;
}

.user-detail-item {
    display: flex;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #f5f5f5;
}

.detail-label {
    font-size: 14px;
    color: #666;
    min-width: 100px;
    font-weight: 500;
}

.detail-value {
    font-size: 14px;
    color: #2c3e50;
    flex: 1;
}

.detail-value.user-uuid {
    font-family: monospace;
    font-size: 12px;
    color: #666;
    word-break: break-all;
}

.user-info-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .wx-login-content {
        width: 95%;
        margin: 20px;
    }
    
    .user-info-content {
        width: 95%;
        margin: 20px;
    }
    
    .fallback-options {
        flex-direction: column;
    }
    
    .user-info-actions {
        flex-direction: column;
    }
}

.btn-vip:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.4);
}

.btn-user-center {
    background: linear-gradient(135deg, #07c160 0%, #05a845 100%);
    color: #fff;
    font-weight: 500;
    box-shadow: 0 2px 8px rgba(7, 193, 96, 0.3);
}

.btn-user-center:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(7, 193, 96, 0.4);
}

/* 微信登录弹窗样式 */
.wx-login-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1000;
    animation: fadeIn 0.3s ease;
}

.wx-login-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    max-width: 400px;
    width: 90%;
}

.wx-login-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.wx-login-header h3 {
    margin: 0;
    font-size: 18px;
    color: #333;
}

.wx-login-close {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #999;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wx-login-close:hover {
    color: #333;
}

.wx-login-qr {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 200px;
    margin-bottom: 15px;
}

.wx-login-tips {
    text-align: center;
    color: #666;
    font-size: 14px;
}

.wx-login-modal.show {
    display: flex;
    justify-content: center;
    align-items: center;
}

.wx-login-content {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    width: 90%;
    max-width: 420px;
    animation: slideUp 0.3s ease;
}

.wx-login-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 25px 15px;
    border-bottom: 1px solid #f0f0f0;
}

.wx-login-title {
    font-size: 22px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
}

.wx-login-close {
    background: none;
    border: none;
    font-size: 28px;
    color: #999;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.wx-login-close:hover {
    background-color: #f5f5f5;
    color: #666;
}

.wx-login-body {
    padding: 20px 25px 25px;
}

.wx-login-methods {
    text-align: center;
}

.wx-qr-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
}

.wx-qr-placeholder {
    width: 200px;
    height: 200px;
    border: 2px solid #e9ecef;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #ffffff;
}

.wx-qr-image {
    width: 200px;
    height: 200px;
    border: 2px solid #07c160;
    border-radius: 15px;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wx-qr-image canvas {
    border-radius: 12px;
}

.wx-login-tip {
    font-size: 14px;
    color: #666;
    margin: 10px 0 0 0;
}

/* 备用方案样式 */
.wx-fallback {
    text-align: center;
}

.fallback-content {
    padding: 20px;
}

.fallback-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.fallback-content h4 {
    font-size: 18px;
    color: #2c3e50;
    margin-bottom: 10px;
}

.fallback-content p {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.4;
}

.fallback-options {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.mini-program-icon {
    margin-right: 8px;
}

/* 用户信息弹窗样式 */
.user-info-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0. 0.6);
    z-index: 1000;
    animation: fadeIn 0.3s ease;
}

.user-info-modal.show {
    display: flex;
    justify-content: center;
    align-items: center;
}

.user-info-content {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    width: 90%;
    max-width: 500px;
    max-height: 80vh;
    overflow-y: auto;
    animation: slideUp 0.3s ease;
}

.user-info-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 25px 15px;
    border-bottom: 1px solid #f0f0f0;
}

.user-info-title {
    font-size: 22px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
}

.user-info-close {
    background: none;
    border: none;
    font-size: 28px;
    color: #999;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.user-info-close:hover {
    background-color: #f5f5f5;
    color: #666;
}

.user-info-body {
    padding: 20px 25px 25px;
}

.user-avatar-container {
    display: flex;
    justify-content: center;
    margin-bottom: 25px;
    position: relative;
}

.user-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid #07c160;
    object-fit: cover;
    background: #f5f5f5;
}

.user-avatar-loading {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid #07c160;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
}

.user-details {
    margin-bottom: 25px;
}

.user-detail-item {
    display: flex;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #f5f5f5;
}

.detail-label {
    font-size: 14px;
    color: #666;
    min-width: 100px;
    font-weight: 500;
}

.detail-value {
    font-size: 14px;
    color: #2c3e50;
    flex: 1;
}

.detail-value.user-uuid {
    font-family: monospace;
    font-size: 12px;
    color: #666;
    word-break: break-all;
}

.user-info-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .wx-login-content {
        width: 95%;
        margin: 20px;
    }
    
    .user-info-content {
        width: 95%;
        margin: 20px;
    }
    
    .fallback-options {
        flex-direction: column;
    }
    
    .user-info-actions {
        flex-direction: column;
    }
}

.btn-login {
    background-color: #fff;
    color: #333;
    border: 1px solid #ddd;
}

/* 微信登录弹窗样式 */
.wx-login-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1000;
    animation: fadeIn 0.3s ease;
}

.wx-login-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    max-width: 400px;
    width: 90%;
}

.wx-login-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.wx-login-header h3 {
    margin: 0;
    font-size: 18px;
    color: #333;
}

.wx-login-close {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #999;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wx-login-close:hover {
    color: #333;
}

.wx-login-qr {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 200px;
    margin-bottom: 15px;
}

.wx-login-tips {
    text-align: center;
    color: #666;
    font-size: 14px;
}

.wx-login-modal.show {
    display: flex;
    justify-content: center;
    align-items: center;
}

.wx-login-content {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    width: 90%;
    max-width: 420px;
    animation: slideUp 0.3s ease;
}

.wx-login-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 25px 15px;
    border-bottom: 1px solid #f0f0f0;
}

.wx-login-title {
    font-size: 22px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
}

.wx-login-close {
    background: none;
    border: none;
    font-size: 28px;
    color: #999;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.wx-login-close:hover {
    background-color: #f5f5f5;
    color: #666;
}

.wx-login-body {
    padding: 20px 25px 25px;
}

.wx-login-methods {
    text-align: center;
}

.wx-qr-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
}

.wx-qr-placeholder {
    width: 200px;
    height: 200px;
    border: 2px solid #e9ecef;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #ffffff;
}

.wx-qr-image {
    width: 200px;
    height: 200px;
    border: 2px solid #07c160;
    border-radius: 15px;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wx-qr-image canvas {
    border-radius: 12px;
}

.wx-login-tip {
    font-size: 14px;
    color: #666;
    margin: 10px 0 0 0;
}

/* 备用方案样式 */
.wx-fallback {
    text-align: center;
}

.fallback-content {
    padding: 20px;
}

.fallback-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.fallback-content h4 {
    font-size: 18px;
    color: #2c3e50;
    margin-bottom: 10px;
}

.fallback-content p {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.4;
}

.fallback-options {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.mini-program-icon {
    margin-right: 8px;
}

/* 用户信息弹窗样式 */
.user-info-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0. 0.6);
    z-index: 1000;
    animation: fadeIn 0.3s ease;
}

.user-info-modal.show {
    display: flex;
    justify-content: center;
    align-items: center;
}

.user-info-content {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    width: 90%;
    max-width: 500px;
    max-height: 80vh;
    overflow-y: auto;
    animation: slideUp 0.3s ease;
}

.user-info-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 25px 15px;
    border-bottom: 1px solid #f0f0f0;
}

.user-info-title {
    font-size: 22px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
}

.user-info-close {
    background: none;
    border: none;
    font-size: 28px;
    color: #999;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.user-info-close:hover {
    background-color: #f5f5f5;
    color: #666;
}

.user-info-body {
    padding: 20px 25px 25px;
}

.user-avatar-container {
    display: flex;
    justify-content: center;
    margin-bottom: 25px;
    position: relative;
}

.user-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid #07c160;
    object-fit: cover;
    background: #f5f5f5;
}

.user-avatar-loading {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid #07c160;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
}

.user-details {
    margin-bottom: 25px;
}

.user-detail-item {
    display: flex;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #f5f5f5;
}

.detail-label {
    font-size: 14px;
    color: #666;
    min-width: 100px;
    font-weight: 500;
}

.detail-value {
    font-size: 14px;
    color: #2c3e50;
    flex: 1;
}

.detail-value.user-uuid {
    font-family: monospace;
    font-size: 12px;
    color: #666;
    word-break: break-all;
}

.user-info-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .wx-login-content {
        width: 95%;
        margin: 20px;
    }
    
    .user-info-content {
        width: 95%;
        margin: 20px;
    }
    
    .fallback-options {
        flex-direction: column;
    }
    
    .user-info-actions {
        flex-direction: column;
    }
}

.btn-login:hover {
    background-color: #f5f5f5;
}

/* 微信登录弹窗样式 */
.wx-login-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1000;
    animation: fadeIn 0.3s ease;
}

.wx-login-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    max-width: 400px;
    width: 90%;
}

.wx-login-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.wx-login-header h3 {
    margin: 0;
    font-size: 18px;
    color: #333;
}

.wx-login-close {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #999;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wx-login-close:hover {
    color: #333;
}

.wx-login-qr {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 200px;
    margin-bottom: 15px;
}

.wx-login-tips {
    text-align: center;
    color: #666;
    font-size: 14px;
}

.wx-login-modal.show {
    display: flex;
    justify-content: center;
    align-items: center;
}

.wx-login-content {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    width: 90%;
    max-width: 420px;
    animation: slideUp 0.3s ease;
}

.wx-login-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 25px 15px;
    border-bottom: 1px solid #f0f0f0;
}

.wx-login-title {
    font-size: 22px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
}

.wx-login-close {
    background: none;
    border: none;
    font-size: 28px;
    color: #999;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.wx-login-close:hover {
    background-color: #f5f5f5;
    color: #666;
}

.wx-login-body {
    padding: 20px 25px 25px;
}

.wx-login-methods {
    text-align: center;
}

.wx-qr-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
}

.wx-qr-placeholder {
    width: 200px;
    height: 200px;
    border: 2px solid #e9ecef;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #ffffff;
}

.wx-qr-image {
    width: 200px;
    height: 200px;
    border: 2px solid #07c160;
    border-radius: 15px;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wx-qr-image canvas {
    border-radius: 12px;
}

.wx-login-tip {
    font-size: 14px;
    color: #666;
    margin: 10px 0 0 0;
}

/* 备用方案样式 */
.wx-fallback {
    text-align: center;
}

.fallback-content {
    padding: 20px;
}

.fallback-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.fallback-content h4 {
    font-size: 18px;
    color: #2c3e50;
    margin-bottom: 10px;
}

.fallback-content p {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.4;
}

.fallback-options {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.mini-program-icon {
    margin-right: 8px;
}

/* 用户信息弹窗样式 */
.user-info-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0. 0.6);
    z-index: 1000;
    animation: fadeIn 0.3s ease;
}

.user-info-modal.show {
    display: flex;
    justify-content: center;
    align-items: center;
}

.user-info-content {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    width: 90%;
    max-width: 500px;
    max-height: 80vh;
    overflow-y: auto;
    animation: slideUp 0.3s ease;
}

.user-info-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 25px 15px;
    border-bottom: 1px solid #f0f0f0;
}

.user-info-title {
    font-size: 22px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
}

.user-info-close {
    background: none;
    border: none;
    font-size: 28px;
    color: #999;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.user-info-close:hover {
    background-color: #f5f5f5;
    color: #666;
}

.user-info-body {
    padding: 20px 25px 25px;
}

.user-avatar-container {
    display: flex;
    justify-content: center;
    margin-bottom: 25px;
    position: relative;
}

.user-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid #07c160;
    object-fit: cover;
    background: #f5f5f5;
}

.user-avatar-loading {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid #07c160;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
}

.user-details {
    margin-bottom: 25px;
}

.user-detail-item {
    display: flex;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #f5f5f5;
}

.detail-label {
    font-size: 14px;
    color: #666;
    min-width: 100px;
    font-weight: 500;
}

.detail-value {
    font-size: 14px;
    color: #2c3e50;
    flex: 1;
}

.detail-value.user-uuid {
    font-family: monospace;
    font-size: 12px;
    color: #666;
    word-break: break-all;
}

.user-info-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .wx-login-content {
        width: 95%;
        margin: 20px;
    }
    
    .user-info-content {
        width: 95%;
        margin: 20px;
    }
    
    .fallback-options {
        flex-direction: column;
    }
    
    .user-info-actions {
        flex-direction: column;
    }
}

.btn-vip {
    background-color: #00BCD4;
    color: #fff;
}

/* 微信登录弹窗样式 */
.wx-login-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1000;
    animation: fadeIn 0.3s ease;
}

.wx-login-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    max-width: 400px;
    width: 90%;
}

.wx-login-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.wx-login-header h3 {
    margin: 0;
    font-size: 18px;
    color: #333;
}

.wx-login-close {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #999;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wx-login-close:hover {
    color: #333;
}

.wx-login-qr {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 200px;
    margin-bottom: 15px;
}

.wx-login-tips {
    text-align: center;
    color: #666;
    font-size: 14px;
}

.wx-login-modal.show {
    display: flex;
    justify-content: center;
    align-items: center;
}

.wx-login-content {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    width: 90%;
    max-width: 420px;
    animation: slideUp 0.3s ease;
}

.wx-login-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 25px 15px;
    border-bottom: 1px solid #f0f0f0;
}

.wx-login-title {
    font-size: 22px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
}

.wx-login-close {
    background: none;
    border: none;
    font-size: 28px;
    color: #999;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.wx-login-close:hover {
    background-color: #f5f5f5;
    color: #666;
}

.wx-login-body {
    padding: 20px 25px 25px;
}

.wx-login-methods {
    text-align: center;
}

.wx-qr-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
}

.wx-qr-placeholder {
    width: 200px;
    height: 200px;
    border: 2px solid #e9ecef;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #ffffff;
}

.wx-qr-image {
    width: 200px;
    height: 200px;
    border: 2px solid #07c160;
    border-radius: 15px;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wx-qr-image canvas {
    border-radius: 12px;
}

.wx-login-tip {
    font-size: 14px;
    color: #666;
    margin: 10px 0 0 0;
}

/* 备用方案样式 */
.wx-fallback {
    text-align: center;
}

.fallback-content {
    padding: 20px;
}

.fallback-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.fallback-content h4 {
    font-size: 18px;
    color: #2c3e50;
    margin-bottom: 10px;
}

.fallback-content p {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.4;
}

.fallback-options {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.mini-program-icon {
    margin-right: 8px;
}

/* 用户信息弹窗样式 */
.user-info-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0. 0.6);
    z-index: 1000;
    animation: fadeIn 0.3s ease;
}

.user-info-modal.show {
    display: flex;
    justify-content: center;
    align-items: center;
}

.user-info-content {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    width: 90%;
    max-width: 500px;
    max-height: 80vh;
    overflow-y: auto;
    animation: slideUp 0.3s ease;
}

.user-info-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 25px 15px;
    border-bottom: 1px solid #f0f0f0;
}

.user-info-title {
    font-size: 22px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
}

.user-info-close {
    background: none;
    border: none;
    font-size: 28px;
    color: #999;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.user-info-close:hover {
    background-color: #f5f5f5;
    color: #666;
}

.user-info-body {
    padding: 20px 25px 25px;
}

.user-avatar-container {
    display: flex;
    justify-content: center;
    margin-bottom: 25px;
    position: relative;
}

.user-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid #07c160;
    object-fit: cover;
    background: #f5f5f5;
}

.user-avatar-loading {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid #07c160;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
}

.user-details {
    margin-bottom: 25px;
}

.user-detail-item {
    display: flex;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #f5f5f5;
}

.detail-label {
    font-size: 14px;
    color: #666;
    min-width: 100px;
    font-weight: 500;
}

.detail-value {
    font-size: 14px;
    color: #2c3e50;
    flex: 1;
}

.detail-value.user-uuid {
    font-family: monospace;
    font-size: 12px;
    color: #666;
    word-break: break-all;
}

.user-info-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .wx-login-content {
        width: 95%;
        margin: 20px;
    }
    
    .user-info-content {
        width: 95%;
        margin: 20px;
    }
    
    .fallback-options {
        flex-direction: column;
    }
    
    .user-info-actions {
        flex-direction: column;
    }
}

.btn-vip:hover {
    background-color: #ff3838;
}

/* 微信登录弹窗样式 */
.wx-login-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1000;
    animation: fadeIn 0.3s ease;
}

.wx-login-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    max-width: 400px;
    width: 90%;
}

.wx-login-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.wx-login-header h3 {
    margin: 0;
    font-size: 18px;
    color: #333;
}

.wx-login-close {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #999;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wx-login-close:hover {
    color: #333;
}

.wx-login-qr {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 200px;
    margin-bottom: 15px;
}

.wx-login-tips {
    text-align: center;
    color: #666;
    font-size: 14px;
}

.wx-login-modal.show {
    display: flex;
    justify-content: center;
    align-items: center;
}

.wx-login-content {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    width: 90%;
    max-width: 420px;
    animation: slideUp 0.3s ease;
}

.wx-login-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 25px 15px;
    border-bottom: 1px solid #f0f0f0;
}

.wx-login-title {
    font-size: 22px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
}

.wx-login-close {
    background: none;
    border: none;
    font-size: 28px;
    color: #999;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.wx-login-close:hover {
    background-color: #f5f5f5;
    color: #666;
}

.wx-login-body {
    padding: 20px 25px 25px;
}

.wx-login-methods {
    text-align: center;
}

.wx-qr-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
}

.wx-qr-placeholder {
    width: 200px;
    height: 200px;
    border: 2px solid #e9ecef;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #ffffff;
}

.wx-qr-image {
    width: 200px;
    height: 200px;
    border: 2px solid #07c160;
    border-radius: 15px;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wx-qr-image canvas {
    border-radius: 12px;
}

.wx-login-tip {
    font-size: 14px;
    color: #666;
    margin: 10px 0 0 0;
}

/* 备用方案样式 */
.wx-fallback {
    text-align: center;
}

.fallback-content {
    padding: 20px;
}

.fallback-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.fallback-content h4 {
    font-size: 18px;
    color: #2c3e50;
    margin-bottom: 10px;
}

.fallback-content p {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.4;
}

.fallback-options {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.mini-program-icon {
    margin-right: 8px;
}

/* 用户信息弹窗样式 */
.user-info-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0. 0.6);
    z-index: 1000;
    animation: fadeIn 0.3s ease;
}

.user-info-modal.show {
    display: flex;
    justify-content: center;
    align-items: center;
}

.user-info-content {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    width: 90%;
    max-width: 500px;
    max-height: 80vh;
    overflow-y: auto;
    animation: slideUp 0.3s ease;
}

.user-info-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 25px 15px;
    border-bottom: 1px solid #f0f0f0;
}

.user-info-title {
    font-size: 22px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
}

.user-info-close {
    background: none;
    border: none;
    font-size: 28px;
    color: #999;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.user-info-close:hover {
    background-color: #f5f5f5;
    color: #666;
}

.user-info-body {
    padding: 20px 25px 25px;
}

.user-avatar-container {
    display: flex;
    justify-content: center;
    margin-bottom: 25px;
    position: relative;
}

.user-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid #07c160;
    object-fit: cover;
    background: #f5f5f5;
}

.user-avatar-loading {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid #07c160;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
}

.user-details {
    margin-bottom: 25px;
}

.user-detail-item {
    display: flex;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #f5f5f5;
}

.detail-label {
    font-size: 14px;
    color: #666;
    min-width: 100px;
    font-weight: 500;
}

.detail-value {
    font-size: 14px;
    color: #2c3e50;
    flex: 1;
}

.detail-value.user-uuid {
    font-family: monospace;
    font-size: 12px;
    color: #666;
    word-break: break-all;
}

.user-info-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .wx-login-content {
        width: 95%;
        margin: 20px;
    }
    
    .user-info-content {
        width: 95%;
        margin: 20px;
    }
    
    .fallback-options {
        flex-direction: column;
    }
    
    .user-info-actions {
        flex-direction: column;
    }
}

.btn-download {
    background-color: #2ed573;
    color: #fff;
    padding: 12px 40px;
    font-size: 16px;
    font-weight: bold;
}

/* 微信登录弹窗样式 */
.wx-login-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1000;
    animation: fadeIn 0.3s ease;
}

.wx-login-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    max-width: 400px;
    width: 90%;
}

.wx-login-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.wx-login-header h3 {
    margin: 0;
    font-size: 18px;
    color: #333;
}

.wx-login-close {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #999;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wx-login-close:hover {
    color: #333;
}

.wx-login-qr {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 200px;
    margin-bottom: 15px;
}

.wx-login-tips {
    text-align: center;
    color: #666;
    font-size: 14px;
}

.wx-login-modal.show {
    display: flex;
    justify-content: center;
    align-items: center;
}

.wx-login-content {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    width: 90%;
    max-width: 420px;
    animation: slideUp 0.3s ease;
}

.wx-login-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 25px 15px;
    border-bottom: 1px solid #f0f0f0;
}

.wx-login-title {
    font-size: 22px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
}

.wx-login-close {
    background: none;
    border: none;
    font-size: 28px;
    color: #999;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.wx-login-close:hover {
    background-color: #f5f5f5;
    color: #666;
}

.wx-login-body {
    padding: 20px 25px 25px;
}

.wx-login-methods {
    text-align: center;
}

.wx-qr-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
}

.wx-qr-placeholder {
    width: 200px;
    height: 200px;
    border: 2px solid #e9ecef;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #ffffff;
}

.wx-qr-image {
    width: 200px;
    height: 200px;
    border: 2px solid #07c160;
    border-radius: 15px;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wx-qr-image canvas {
    border-radius: 12px;
}

.wx-login-tip {
    font-size: 14px;
    color: #666;
    margin: 10px 0 0 0;
}

/* 备用方案样式 */
.wx-fallback {
    text-align: center;
}

.fallback-content {
    padding: 20px;
}

.fallback-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.fallback-content h4 {
    font-size: 18px;
    color: #2c3e50;
    margin-bottom: 10px;
}

.fallback-content p {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.4;
}

.fallback-options {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.mini-program-icon {
    margin-right: 8px;
}

/* 用户信息弹窗样式 */
.user-info-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0. 0.6);
    z-index: 1000;
    animation: fadeIn 0.3s ease;
}

.user-info-modal.show {
    display: flex;
    justify-content: center;
    align-items: center;
}

.user-info-content {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    width: 90%;
    max-width: 500px;
    max-height: 80vh;
    overflow-y: auto;
    animation: slideUp 0.3s ease;
}

.user-info-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 25px 15px;
    border-bottom: 1px solid #f0f0f0;
}

.user-info-title {
    font-size: 22px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
}

.user-info-close {
    background: none;
    border: none;
    font-size: 28px;
    color: #999;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.user-info-close:hover {
    background-color: #f5f5f5;
    color: #666;
}

.user-info-body {
    padding: 20px 25px 25px;
}

.user-avatar-container {
    display: flex;
    justify-content: center;
    margin-bottom: 25px;
    position: relative;
}

.user-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid #07c160;
    object-fit: cover;
    background: #f5f5f5;
}

.user-avatar-loading {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid #07c160;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
}

.user-details {
    margin-bottom: 25px;
}

.user-detail-item {
    display: flex;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #f5f5f5;
}

.detail-label {
    font-size: 14px;
    color: #666;
    min-width: 100px;
    font-weight: 500;
}

.detail-value {
    font-size: 14px;
    color: #2c3e50;
    flex: 1;
}

.detail-value.user-uuid {
    font-family: monospace;
    font-size: 12px;
    color: #666;
    word-break: break-all;
}

.user-info-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .wx-login-content {
        width: 95%;
        margin: 20px;
    }
    
    .user-info-content {
        width: 95%;
        margin: 20px;
    }
    
    .fallback-options {
        flex-direction: column;
    }
    
    .user-info-actions {
        flex-direction: column;
    }
}

.btn-download:hover {
    background-color: #26d369;
}

/* 微信登录弹窗样式 */
.wx-login-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1000;
    animation: fadeIn 0.3s ease;
}

.wx-login-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    max-width: 400px;
    width: 90%;
}

.wx-login-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.wx-login-header h3 {
    margin: 0;
    font-size: 18px;
    color: #333;
}

.wx-login-close {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #999;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wx-login-close:hover {
    color: #333;
}

.wx-login-qr {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 200px;
    margin-bottom: 15px;
}

.wx-login-tips {
    text-align: center;
    color: #666;
    font-size: 14px;
}

.wx-login-modal.show {
    display: flex;
    justify-content: center;
    align-items: center;
}

.wx-login-content {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    width: 90%;
    max-width: 420px;
    animation: slideUp 0.3s ease;
}

.wx-login-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 25px 15px;
    border-bottom: 1px solid #f0f0f0;
}

.wx-login-title {
    font-size: 22px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
}

.wx-login-close {
    background: none;
    border: none;
    font-size: 28px;
    color: #999;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.wx-login-close:hover {
    background-color: #f5f5f5;
    color: #666;
}

.wx-login-body {
    padding: 20px 25px 25px;
}

.wx-login-methods {
    text-align: center;
}

.wx-qr-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
}

.wx-qr-placeholder {
    width: 200px;
    height: 200px;
    border: 2px solid #e9ecef;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #ffffff;
}

.wx-qr-image {
    width: 200px;
    height: 200px;
    border: 2px solid #07c160;
    border-radius: 15px;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wx-qr-image canvas {
    border-radius: 12px;
}

.wx-login-tip {
    font-size: 14px;
    color: #666;
    margin: 10px 0 0 0;
}

/* 备用方案样式 */
.wx-fallback {
    text-align: center;
}

.fallback-content {
    padding: 20px;
}

.fallback-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.fallback-content h4 {
    font-size: 18px;
    color: #2c3e50;
    margin-bottom: 10px;
}

.fallback-content p {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.4;
}

.fallback-options {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.mini-program-icon {
    margin-right: 8px;
}

/* 用户信息弹窗样式 */
.user-info-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0. 0.6);
    z-index: 1000;
    animation: fadeIn 0.3s ease;
}

.user-info-modal.show {
    display: flex;
    justify-content: center;
    align-items: center;
}

.user-info-content {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    width: 90%;
    max-width: 500px;
    max-height: 80vh;
    overflow-y: auto;
    animation: slideUp 0.3s ease;
}

.user-info-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 25px 15px;
    border-bottom: 1px solid #f0f0f0;
}

.user-info-title {
    font-size: 22px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
}

.user-info-close {
    background: none;
    border: none;
    font-size: 28px;
    color: #999;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.user-info-close:hover {
    background-color: #f5f5f5;
    color: #666;
}

.user-info-body {
    padding: 20px 25px 25px;
}

.user-avatar-container {
    display: flex;
    justify-content: center;
    margin-bottom: 25px;
    position: relative;
}

.user-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid #07c160;
    object-fit: cover;
    background: #f5f5f5;
}

.user-avatar-loading {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid #07c160;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
}

.user-details {
    margin-bottom: 25px;
}

.user-detail-item {
    display: flex;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #f5f5f5;
}

.detail-label {
    font-size: 14px;
    color: #666;
    min-width: 100px;
    font-weight: 500;
}

.detail-value {
    font-size: 14px;
    color: #2c3e50;
    flex: 1;
}

.detail-value.user-uuid {
    font-family: monospace;
    font-size: 12px;
    color: #666;
    word-break: break-all;
}

.user-info-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .wx-login-content {
        width: 95%;
        margin: 20px;
    }
    
    .user-info-content {
        width: 95%;
        margin: 20px;
    }
    
    .fallback-options {
        flex-direction: column;
    }
    
    .user-info-actions {
        flex-direction: column;
    }
}

/* 主容器 */
.main-container {
    flex: 1;
    display: flex;
    max-width: 1400px;
    margin: 20px auto;
    padding: 0 20px;
    gap: 20px;
    align-items: stretch;
}

/* 微信登录弹窗样式 */
.wx-login-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1000;
    animation: fadeIn 0.3s ease;
}

.wx-login-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    max-width: 400px;
    width: 90%;
}

.wx-login-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.wx-login-header h3 {
    margin: 0;
    font-size: 18px;
    color: #333;
}

.wx-login-close {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #999;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wx-login-close:hover {
    color: #333;
}

.wx-login-qr {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 200px;
    margin-bottom: 15px;
}

.wx-login-tips {
    text-align: center;
    color: #666;
    font-size: 14px;
}

.wx-login-modal.show {
    display: flex;
    justify-content: center;
    align-items: center;
}

.wx-login-content {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    width: 90%;
    max-width: 420px;
    animation: slideUp 0.3s ease;
}

.wx-login-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 25px 15px;
    border-bottom: 1px solid #f0f0f0;
}

.wx-login-title {
    font-size: 22px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
}

.wx-login-close {
    background: none;
    border: none;
    font-size: 28px;
    color: #999;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.wx-login-close:hover {
    background-color: #f5f5f5;
    color: #666;
}

.wx-login-body {
    padding: 20px 25px 25px;
}

.wx-login-methods {
    text-align: center;
}

.wx-qr-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
}

.wx-qr-placeholder {
    width: 200px;
    height: 200px;
    border: 2px solid #e9ecef;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #ffffff;
}

.wx-qr-image {
    width: 200px;
    height: 200px;
    border: 2px solid #07c160;
    border-radius: 15px;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wx-qr-image canvas {
    border-radius: 12px;
}

.wx-login-tip {
    font-size: 14px;
    color: #666;
    margin: 10px 0 0 0;
}

/* 备用方案样式 */
.wx-fallback {
    text-align: center;
}

.fallback-content {
    padding: 20px;
}

.fallback-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.fallback-content h4 {
    font-size: 18px;
    color: #2c3e50;
    margin-bottom: 10px;
}

.fallback-content p {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.4;
}

.fallback-options {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.mini-program-icon {
    margin-right: 8px;
}

/* 用户信息弹窗样式 */
.user-info-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0. 0.6);
    z-index: 1000;
    animation: fadeIn 0.3s ease;
}

.user-info-modal.show {
    display: flex;
    justify-content: center;
    align-items: center;
}

.user-info-content {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    width: 90%;
    max-width: 500px;
    max-height: 80vh;
    overflow-y: auto;
    animation: slideUp 0.3s ease;
}

.user-info-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 25px 15px;
    border-bottom: 1px solid #f0f0f0;
}

.user-info-title {
    font-size: 22px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
}

.user-info-close {
    background: none;
    border: none;
    font-size: 28px;
    color: #999;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.user-info-close:hover {
    background-color: #f5f5f5;
    color: #666;
}

.user-info-body {
    padding: 20px 25px 25px;
}

.user-avatar-container {
    display: flex;
    justify-content: center;
    margin-bottom: 25px;
    position: relative;
}

.user-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid #07c160;
    object-fit: cover;
    background: #f5f5f5;
}

.user-avatar-loading {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid #07c160;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
}

.user-details {
    margin-bottom: 25px;
}

.user-detail-item {
    display: flex;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #f5f5f5;
}

.detail-label {
    font-size: 14px;
    color: #666;
    min-width: 100px;
    font-weight: 500;
}

.detail-value {
    font-size: 14px;
    color: #2c3e50;
    flex: 1;
}

.detail-value.user-uuid {
    font-family: monospace;
    font-size: 12px;
    color: #666;
    word-break: break-all;
}

.user-info-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .wx-login-content {
        width: 95%;
        margin: 20px;
    }
    
    .user-info-content {
        width: 95%;
        margin: 20px;
    }
    
    .fallback-options {
        flex-direction: column;
    }
    
    .user-info-actions {
        flex-direction: column;
    }
}

/* 左侧：印章类型选择面板 */
.seal-type-panel {
    width: 220px;
    background-color: #fff;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    height: fit-content;
    max-height: calc(100vh - 200px);
    overflow-y: auto;
}

/* 微信登录弹窗样式 */
.wx-login-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1000;
    animation: fadeIn 0.3s ease;
}

.wx-login-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    max-width: 400px;
    width: 90%;
}

.wx-login-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.wx-login-header h3 {
    margin: 0;
    font-size: 18px;
    color: #333;
}

.wx-login-close {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #999;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wx-login-close:hover {
    color: #333;
}

.wx-login-qr {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 200px;
    margin-bottom: 15px;
}

.wx-login-tips {
    text-align: center;
    color: #666;
    font-size: 14px;
}

.wx-login-modal.show {
    display: flex;
    justify-content: center;
    align-items: center;
}

.wx-login-content {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    width: 90%;
    max-width: 420px;
    animation: slideUp 0.3s ease;
}

.wx-login-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 25px 15px;
    border-bottom: 1px solid #f0f0f0;
}

.wx-login-title {
    font-size: 22px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
}

.wx-login-close {
    background: none;
    border: none;
    font-size: 28px;
    color: #999;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.wx-login-close:hover {
    background-color: #f5f5f5;
    color: #666;
}

.wx-login-body {
    padding: 20px 25px 25px;
}

.wx-login-methods {
    text-align: center;
}

.wx-qr-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
}

.wx-qr-placeholder {
    width: 200px;
    height: 200px;
    border: 2px solid #e9ecef;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #ffffff;
}

.wx-qr-image {
    width: 200px;
    height: 200px;
    border: 2px solid #07c160;
    border-radius: 15px;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wx-qr-image canvas {
    border-radius: 12px;
}

.wx-login-tip {
    font-size: 14px;
    color: #666;
    margin: 10px 0 0 0;
}

/* 备用方案样式 */
.wx-fallback {
    text-align: center;
}

.fallback-content {
    padding: 20px;
}

.fallback-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.fallback-content h4 {
    font-size: 18px;
    color: #2c3e50;
    margin-bottom: 10px;
}

.fallback-content p {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.4;
}

.fallback-options {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.mini-program-icon {
    margin-right: 8px;
}

/* 用户信息弹窗样式 */
.user-info-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0. 0.6);
    z-index: 1000;
    animation: fadeIn 0.3s ease;
}

.user-info-modal.show {
    display: flex;
    justify-content: center;
    align-items: center;
}

.user-info-content {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    width: 90%;
    max-width: 500px;
    max-height: 80vh;
    overflow-y: auto;
    animation: slideUp 0.3s ease;
}

.user-info-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 25px 15px;
    border-bottom: 1px solid #f0f0f0;
}

.user-info-title {
    font-size: 22px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
}

.user-info-close {
    background: none;
    border: none;
    font-size: 28px;
    color: #999;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.user-info-close:hover {
    background-color: #f5f5f5;
    color: #666;
}

.user-info-body {
    padding: 20px 25px 25px;
}

.user-avatar-container {
    display: flex;
    justify-content: center;
    margin-bottom: 25px;
    position: relative;
}

.user-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid #07c160;
    object-fit: cover;
    background: #f5f5f5;
}

.user-avatar-loading {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid #07c160;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
}

.user-details {
    margin-bottom: 25px;
}

.user-detail-item {
    display: flex;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #f5f5f5;
}

.detail-label {
    font-size: 14px;
    color: #666;
    min-width: 100px;
    font-weight: 500;
}

.detail-value {
    font-size: 14px;
    color: #2c3e50;
    flex: 1;
}

.detail-value.user-uuid {
    font-family: monospace;
    font-size: 12px;
    color: #666;
    word-break: break-all;
}

.user-info-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .wx-login-content {
        width: 95%;
        margin: 20px;
    }
    
    .user-info-content {
        width: 95%;
        margin: 20px;
    }
    
    .fallback-options {
        flex-direction: column;
    }
    
    .user-info-actions {
        flex-direction: column;
    }
}

/* 中间：编辑预览区域 */
.editor-area {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 0;
}

/* 微信登录弹窗样式 */
.wx-login-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1000;
    animation: fadeIn 0.3s ease;
}

.wx-login-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    max-width: 400px;
    width: 90%;
}

.wx-login-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.wx-login-header h3 {
    margin: 0;
    font-size: 18px;
    color: #333;
}

.wx-login-close {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #999;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wx-login-close:hover {
    color: #333;
}

.wx-login-qr {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 200px;
    margin-bottom: 15px;
}

.wx-login-tips {
    text-align: center;
    color: #666;
    font-size: 14px;
}

.wx-login-modal.show {
    display: flex;
    justify-content: center;
    align-items: center;
}

.wx-login-content {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    width: 90%;
    max-width: 420px;
    animation: slideUp 0.3s ease;
}

.wx-login-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 25px 15px;
    border-bottom: 1px solid #f0f0f0;
}

.wx-login-title {
    font-size: 22px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
}

.wx-login-close {
    background: none;
    border: none;
    font-size: 28px;
    color: #999;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.wx-login-close:hover {
    background-color: #f5f5f5;
    color: #666;
}

.wx-login-body {
    padding: 20px 25px 25px;
}

.wx-login-methods {
    text-align: center;
}

.wx-qr-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
}

.wx-qr-placeholder {
    width: 200px;
    height: 200px;
    border: 2px solid #e9ecef;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #ffffff;
}

.wx-qr-image {
    width: 200px;
    height: 200px;
    border: 2px solid #07c160;
    border-radius: 15px;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wx-qr-image canvas {
    border-radius: 12px;
}

.wx-login-tip {
    font-size: 14px;
    color: #666;
    margin: 10px 0 0 0;
}

/* 备用方案样式 */
.wx-fallback {
    text-align: center;
}

.fallback-content {
    padding: 20px;
}

.fallback-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.fallback-content h4 {
    font-size: 18px;
    color: #2c3e50;
    margin-bottom: 10px;
}

.fallback-content p {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.4;
}

.fallback-options {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.mini-program-icon {
    margin-right: 8px;
}

/* 用户信息弹窗样式 */
.user-info-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0. 0.6);
    z-index: 1000;
    animation: fadeIn 0.3s ease;
}

.user-info-modal.show {
    display: flex;
    justify-content: center;
    align-items: center;
}

.user-info-content {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    width: 90%;
    max-width: 500px;
    max-height: 80vh;
    overflow-y: auto;
    animation: slideUp 0.3s ease;
}

.user-info-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 25px 15px;
    border-bottom: 1px solid #f0f0f0;
}

.user-info-title {
    font-size: 22px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
}

.user-info-close {
    background: none;
    border: none;
    font-size: 28px;
    color: #999;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.user-info-close:hover {
    background-color: #f5f5f5;
    color: #666;
}

.user-info-body {
    padding: 20px 25px 25px;
}

.user-avatar-container {
    display: flex;
    justify-content: center;
    margin-bottom: 25px;
    position: relative;
}

.user-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid #07c160;
    object-fit: cover;
    background: #f5f5f5;
}

.user-avatar-loading {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid #07c160;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
}

.user-details {
    margin-bottom: 25px;
}

.user-detail-item {
    display: flex;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #f5f5f5;
}

.detail-label {
    font-size: 14px;
    color: #666;
    min-width: 100px;
    font-weight: 500;
}

.detail-value {
    font-size: 14px;
    color: #2c3e50;
    flex: 1;
}

.detail-value.user-uuid {
    font-family: monospace;
    font-size: 12px;
    color: #666;
    word-break: break-all;
}

.user-info-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .wx-login-content {
        width: 95%;
        margin: 20px;
    }
    
    .user-info-content {
        width: 95%;
        margin: 20px;
    }
    
    .fallback-options {
        flex-direction: column;
    }
    
    .user-info-actions {
        flex-direction: column;
    }
}

/* 右侧：编辑面板 */
.edit-panel {
    width: 320px;
    background-color: #fff;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    height: fit-content;
    max-height: calc(100vh - 200px);
    overflow-y: auto;
}

/* 微信登录弹窗样式 */
.wx-login-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1000;
    animation: fadeIn 0.3s ease;
}

.wx-login-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    max-width: 400px;
    width: 90%;
}

.wx-login-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.wx-login-header h3 {
    margin: 0;
    font-size: 18px;
    color: #333;
}

.wx-login-close {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #999;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wx-login-close:hover {
    color: #333;
}

.wx-login-qr {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 200px;
    margin-bottom: 15px;
}

.wx-login-tips {
    text-align: center;
    color: #666;
    font-size: 14px;
}

.wx-login-modal.show {
    display: flex;
    justify-content: center;
    align-items: center;
}

.wx-login-content {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    width: 90%;
    max-width: 420px;
    animation: slideUp 0.3s ease;
}

.wx-login-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 25px 15px;
    border-bottom: 1px solid #f0f0f0;
}

.wx-login-title {
    font-size: 22px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
}

.wx-login-close {
    background: none;
    border: none;
    font-size: 28px;
    color: #999;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.wx-login-close:hover {
    background-color: #f5f5f5;
    color: #666;
}

.wx-login-body {
    padding: 20px 25px 25px;
}

.wx-login-methods {
    text-align: center;
}

.wx-qr-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
}

.wx-qr-placeholder {
    width: 200px;
    height: 200px;
    border: 2px solid #e9ecef;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #ffffff;
}

.wx-qr-image {
    width: 200px;
    height: 200px;
    border: 2px solid #07c160;
    border-radius: 15px;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wx-qr-image canvas {
    border-radius: 12px;
}

.wx-login-tip {
    font-size: 14px;
    color: #666;
    margin: 10px 0 0 0;
}

/* 备用方案样式 */
.wx-fallback {
    text-align: center;
}

.fallback-content {
    padding: 20px;
}

.fallback-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.fallback-content h4 {
    font-size: 18px;
    color: #2c3e50;
    margin-bottom: 10px;
}

.fallback-content p {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.4;
}

.fallback-options {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.mini-program-icon {
    margin-right: 8px;
}

/* 用户信息弹窗样式 */
.user-info-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0. 0.6);
    z-index: 1000;
    animation: fadeIn 0.3s ease;
}

.user-info-modal.show {
    display: flex;
    justify-content: center;
    align-items: center;
}

.user-info-content {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    width: 90%;
    max-width: 500px;
    max-height: 80vh;
    overflow-y: auto;
    animation: slideUp 0.3s ease;
}

.user-info-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 25px 15px;
    border-bottom: 1px solid #f0f0f0;
}

.user-info-title {
    font-size: 22px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
}

.user-info-close {
    background: none;
    border: none;
    font-size: 28px;
    color: #999;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.user-info-close:hover {
    background-color: #f5f5f5;
    color: #666;
}

.user-info-body {
    padding: 20px 25px 25px;
}

.user-avatar-container {
    display: flex;
    justify-content: center;
    margin-bottom: 25px;
    position: relative;
}

.user-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid #07c160;
    object-fit: cover;
    background: #f5f5f5;
}

.user-avatar-loading {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid #07c160;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
}

.user-details {
    margin-bottom: 25px;
}

.user-detail-item {
    display: flex;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #f5f5f5;
}

.detail-label {
    font-size: 14px;
    color: #666;
    min-width: 100px;
    font-weight: 500;
}

.detail-value {
    font-size: 14px;
    color: #2c3e50;
    flex: 1;
}

.detail-value.user-uuid {
    font-family: monospace;
    font-size: 12px;
    color: #666;
    word-break: break-all;
}

.user-info-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .wx-login-content {
        width: 95%;
        margin: 20px;
    }
    
    .user-info-content {
        width: 95%;
        margin: 20px;
    }
    
    .fallback-options {
        flex-direction: column;
    }
    
    .user-info-actions {
        flex-direction: column;
    }
}

.panel-title {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 15px;
    color: #333;
}

/* 微信登录弹窗样式 */
.wx-login-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1000;
    animation: fadeIn 0.3s ease;
}

.wx-login-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    max-width: 400px;
    width: 90%;
}

.wx-login-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.wx-login-header h3 {
    margin: 0;
    font-size: 18px;
    color: #333;
}

.wx-login-close {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #999;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wx-login-close:hover {
    color: #333;
}

.wx-login-qr {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 200px;
    margin-bottom: 15px;
}

.wx-login-tips {
    text-align: center;
    color: #666;
    font-size: 14px;
}

.wx-login-modal.show {
    display: flex;
    justify-content: center;
    align-items: center;
}

.wx-login-content {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    width: 90%;
    max-width: 420px;
    animation: slideUp 0.3s ease;
}

.wx-login-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 25px 15px;
    border-bottom: 1px solid #f0f0f0;
}

.wx-login-title {
    font-size: 22px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
}

.wx-login-close {
    background: none;
    border: none;
    font-size: 28px;
    color: #999;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.wx-login-close:hover {
    background-color: #f5f5f5;
    color: #666;
}

.wx-login-body {
    padding: 20px 25px 25px;
}

.wx-login-methods {
    text-align: center;
}

.wx-qr-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
}

.wx-qr-placeholder {
    width: 200px;
    height: 200px;
    border: 2px solid #e9ecef;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #ffffff;
}

.wx-qr-image {
    width: 200px;
    height: 200px;
    border: 2px solid #07c160;
    border-radius: 15px;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wx-qr-image canvas {
    border-radius: 12px;
}

.wx-login-tip {
    font-size: 14px;
    color: #666;
    margin: 10px 0 0 0;
}

/* 备用方案样式 */
.wx-fallback {
    text-align: center;
}

.fallback-content {
    padding: 20px;
}

.fallback-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.fallback-content h4 {
    font-size: 18px;
    color: #2c3e50;
    margin-bottom: 10px;
}

.fallback-content p {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.4;
}

.fallback-options {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.mini-program-icon {
    margin-right: 8px;
}

/* 用户信息弹窗样式 */
.user-info-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0. 0.6);
    z-index: 1000;
    animation: fadeIn 0.3s ease;
}

.user-info-modal.show {
    display: flex;
    justify-content: center;
    align-items: center;
}

.user-info-content {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    width: 90%;
    max-width: 500px;
    max-height: 80vh;
    overflow-y: auto;
    animation: slideUp 0.3s ease;
}

.user-info-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 25px 15px;
    border-bottom: 1px solid #f0f0f0;
}

.user-info-title {
    font-size: 22px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
}

.user-info-close {
    background: none;
    border: none;
    font-size: 28px;
    color: #999;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.user-info-close:hover {
    background-color: #f5f5f5;
    color: #666;
}

.user-info-body {
    padding: 20px 25px 25px;
}

.user-avatar-container {
    display: flex;
    justify-content: center;
    margin-bottom: 25px;
    position: relative;
}

.user-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid #07c160;
    object-fit: cover;
    background: #f5f5f5;
}

.user-avatar-loading {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid #07c160;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
}

.user-details {
    margin-bottom: 25px;
}

.user-detail-item {
    display: flex;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #f5f5f5;
}

.detail-label {
    font-size: 14px;
    color: #666;
    min-width: 100px;
    font-weight: 500;
}

.detail-value {
    font-size: 14px;
    color: #2c3e50;
    flex: 1;
}

.detail-value.user-uuid {
    font-family: monospace;
    font-size: 12px;
    color: #666;
    word-break: break-all;
}

.user-info-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .wx-login-content {
        width: 95%;
        margin: 20px;
    }
    
    .user-info-content {
        width: 95%;
        margin: 20px;
    }
    
    .fallback-options {
        flex-direction: column;
    }
    
    .user-info-actions {
        flex-direction: column;
    }
}

.seal-type-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

/* 微信登录弹窗样式 */
.wx-login-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1000;
    animation: fadeIn 0.3s ease;
}

.wx-login-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    max-width: 400px;
    width: 90%;
}

.wx-login-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.wx-login-header h3 {
    margin: 0;
    font-size: 18px;
    color: #333;
}

.wx-login-close {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #999;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wx-login-close:hover {
    color: #333;
}

.wx-login-qr {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 200px;
    margin-bottom: 15px;
}

.wx-login-tips {
    text-align: center;
    color: #666;
    font-size: 14px;
}

.wx-login-modal.show {
    display: flex;
    justify-content: center;
    align-items: center;
}

.wx-login-content {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    width: 90%;
    max-width: 420px;
    animation: slideUp 0.3s ease;
}

.wx-login-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 25px 15px;
    border-bottom: 1px solid #f0f0f0;
}

.wx-login-title {
    font-size: 22px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
}

.wx-login-close {
    background: none;
    border: none;
    font-size: 28px;
    color: #999;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.wx-login-close:hover {
    background-color: #f5f5f5;
    color: #666;
}

.wx-login-body {
    padding: 20px 25px 25px;
}

.wx-login-methods {
    text-align: center;
}

.wx-qr-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
}

.wx-qr-placeholder {
    width: 200px;
    height: 200px;
    border: 2px solid #e9ecef;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #ffffff;
}

.wx-qr-image {
    width: 200px;
    height: 200px;
    border: 2px solid #07c160;
    border-radius: 15px;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wx-qr-image canvas {
    border-radius: 12px;
}

.wx-login-tip {
    font-size: 14px;
    color: #666;
    margin: 10px 0 0 0;
}

/* 备用方案样式 */
.wx-fallback {
    text-align: center;
}

.fallback-content {
    padding: 20px;
}

.fallback-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.fallback-content h4 {
    font-size: 18px;
    color: #2c3e50;
    margin-bottom: 10px;
}

.fallback-content p {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.4;
}

.fallback-options {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.mini-program-icon {
    margin-right: 8px;
}

/* 用户信息弹窗样式 */
.user-info-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0. 0.6);
    z-index: 1000;
    animation: fadeIn 0.3s ease;
}

.user-info-modal.show {
    display: flex;
    justify-content: center;
    align-items: center;
}

.user-info-content {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    width: 90%;
    max-width: 500px;
    max-height: 80vh;
    overflow-y: auto;
    animation: slideUp 0.3s ease;
}

.user-info-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 25px 15px;
    border-bottom: 1px solid #f0f0f0;
}

.user-info-title {
    font-size: 22px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
}

.user-info-close {
    background: none;
    border: none;
    font-size: 28px;
    color: #999;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.user-info-close:hover {
    background-color: #f5f5f5;
    color: #666;
}

.user-info-body {
    padding: 20px 25px 25px;
}

.user-avatar-container {
    display: flex;
    justify-content: center;
    margin-bottom: 25px;
    position: relative;
}

.user-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid #07c160;
    object-fit: cover;
    background: #f5f5f5;
}

.user-avatar-loading {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid #07c160;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
}

.user-details {
    margin-bottom: 25px;
}

.user-detail-item {
    display: flex;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #f5f5f5;
}

.detail-label {
    font-size: 14px;
    color: #666;
    min-width: 100px;
    font-weight: 500;
}

.detail-value {
    font-size: 14px;
    color: #2c3e50;
    flex: 1;
}

.detail-value.user-uuid {
    font-family: monospace;
    font-size: 12px;
    color: #666;
    word-break: break-all;
}

.user-info-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .wx-login-content {
        width: 95%;
        margin: 20px;
    }
    
    .user-info-content {
        width: 95%;
        margin: 20px;
    }
    
    .fallback-options {
        flex-direction: column;
    }
    
    .user-info-actions {
        flex-direction: column;
    }
}

.seal-type-item {
    aspect-ratio: 1;
    border: 2px solid #ddd;
    border-radius: 4px;
    padding: 5px;
    cursor: pointer;
    transition: all 0.3s;
    background-color: #fff;
}

/* 微信登录弹窗样式 */
.wx-login-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1000;
    animation: fadeIn 0.3s ease;
}

.wx-login-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    max-width: 400px;
    width: 90%;
}

.wx-login-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.wx-login-header h3 {
    margin: 0;
    font-size: 18px;
    color: #333;
}

.wx-login-close {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #999;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wx-login-close:hover {
    color: #333;
}

.wx-login-qr {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 200px;
    margin-bottom: 15px;
}

.wx-login-tips {
    text-align: center;
    color: #666;
    font-size: 14px;
}

.wx-login-modal.show {
    display: flex;
    justify-content: center;
    align-items: center;
}

.wx-login-content {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    width: 90%;
    max-width: 420px;
    animation: slideUp 0.3s ease;
}

.wx-login-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 25px 15px;
    border-bottom: 1px solid #f0f0f0;
}

.wx-login-title {
    font-size: 22px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
}

.wx-login-close {
    background: none;
    border: none;
    font-size: 28px;
    color: #999;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.wx-login-close:hover {
    background-color: #f5f5f5;
    color: #666;
}

.wx-login-body {
    padding: 20px 25px 25px;
}

.wx-login-methods {
    text-align: center;
}

.wx-qr-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
}

.wx-qr-placeholder {
    width: 200px;
    height: 200px;
    border: 2px solid #e9ecef;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #ffffff;
}

.wx-qr-image {
    width: 200px;
    height: 200px;
    border: 2px solid #07c160;
    border-radius: 15px;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wx-qr-image canvas {
    border-radius: 12px;
}

.wx-login-tip {
    font-size: 14px;
    color: #666;
    margin: 10px 0 0 0;
}

/* 备用方案样式 */
.wx-fallback {
    text-align: center;
}

.fallback-content {
    padding: 20px;
}

.fallback-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.fallback-content h4 {
    font-size: 18px;
    color: #2c3e50;
    margin-bottom: 10px;
}

.fallback-content p {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.4;
}

.fallback-options {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.mini-program-icon {
    margin-right: 8px;
}

/* 用户信息弹窗样式 */
.user-info-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0. 0.6);
    z-index: 1000;
    animation: fadeIn 0.3s ease;
}

.user-info-modal.show {
    display: flex;
    justify-content: center;
    align-items: center;
}

.user-info-content {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    width: 90%;
    max-width: 500px;
    max-height: 80vh;
    overflow-y: auto;
    animation: slideUp 0.3s ease;
}

.user-info-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 25px 15px;
    border-bottom: 1px solid #f0f0f0;
}

.user-info-title {
    font-size: 22px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
}

.user-info-close {
    background: none;
    border: none;
    font-size: 28px;
    color: #999;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.user-info-close:hover {
    background-color: #f5f5f5;
    color: #666;
}

.user-info-body {
    padding: 20px 25px 25px;
}

.user-avatar-container {
    display: flex;
    justify-content: center;
    margin-bottom: 25px;
    position: relative;
}

.user-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid #07c160;
    object-fit: cover;
    background: #f5f5f5;
}

.user-avatar-loading {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid #07c160;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
}

.user-details {
    margin-bottom: 25px;
}

.user-detail-item {
    display: flex;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #f5f5f5;
}

.detail-label {
    font-size: 14px;
    color: #666;
    min-width: 100px;
    font-weight: 500;
}

.detail-value {
    font-size: 14px;
    color: #2c3e50;
    flex: 1;
}

.detail-value.user-uuid {
    font-family: monospace;
    font-size: 12px;
    color: #666;
    word-break: break-all;
}

.user-info-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .wx-login-content {
        width: 95%;
        margin: 20px;
    }
    
    .user-info-content {
        width: 95%;
        margin: 20px;
    }
    
    .fallback-options {
        flex-direction: column;
    }
    
    .user-info-actions {
        flex-direction: column;
    }
}

.seal-type-item:hover {
    border-color: #00BCD4;
    transform: scale(1.05);
}

/* 微信登录弹窗样式 */
.wx-login-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1000;
    animation: fadeIn 0.3s ease;
}

.wx-login-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    max-width: 400px;
    width: 90%;
}

.wx-login-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.wx-login-header h3 {
    margin: 0;
    font-size: 18px;
    color: #333;
}

.wx-login-close {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #999;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wx-login-close:hover {
    color: #333;
}

.wx-login-qr {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 200px;
    margin-bottom: 15px;
}

.wx-login-tips {
    text-align: center;
    color: #666;
    font-size: 14px;
}

.wx-login-modal.show {
    display: flex;
    justify-content: center;
    align-items: center;
}

.wx-login-content {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    width: 90%;
    max-width: 420px;
    animation: slideUp 0.3s ease;
}

.wx-login-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 25px 15px;
    border-bottom: 1px solid #f0f0f0;
}

.wx-login-title {
    font-size: 22px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
}

.wx-login-close {
    background: none;
    border: none;
    font-size: 28px;
    color: #999;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.wx-login-close:hover {
    background-color: #f5f5f5;
    color: #666;
}

.wx-login-body {
    padding: 20px 25px 25px;
}

.wx-login-methods {
    text-align: center;
}

.wx-qr-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
}

.wx-qr-placeholder {
    width: 200px;
    height: 200px;
    border: 2px solid #e9ecef;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #ffffff;
}

.wx-qr-image {
    width: 200px;
    height: 200px;
    border: 2px solid #07c160;
    border-radius: 15px;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wx-qr-image canvas {
    border-radius: 12px;
}

.wx-login-tip {
    font-size: 14px;
    color: #666;
    margin: 10px 0 0 0;
}

/* 备用方案样式 */
.wx-fallback {
    text-align: center;
}

.fallback-content {
    padding: 20px;
}

.fallback-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.fallback-content h4 {
    font-size: 18px;
    color: #2c3e50;
    margin-bottom: 10px;
}

.fallback-content p {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.4;
}

.fallback-options {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.mini-program-icon {
    margin-right: 8px;
}

/* 用户信息弹窗样式 */
.user-info-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0. 0.6);
    z-index: 1000;
    animation: fadeIn 0.3s ease;
}

.user-info-modal.show {
    display: flex;
    justify-content: center;
    align-items: center;
}

.user-info-content {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    width: 90%;
    max-width: 500px;
    max-height: 80vh;
    overflow-y: auto;
    animation: slideUp 0.3s ease;
}

.user-info-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 25px 15px;
    border-bottom: 1px solid #f0f0f0;
}

.user-info-title {
    font-size: 22px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
}

.user-info-close {
    background: none;
    border: none;
    font-size: 28px;
    color: #999;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.user-info-close:hover {
    background-color: #f5f5f5;
    color: #666;
}

.user-info-body {
    padding: 20px 25px 25px;
}

.user-avatar-container {
    display: flex;
    justify-content: center;
    margin-bottom: 25px;
    position: relative;
}

.user-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid #07c160;
    object-fit: cover;
    background: #f5f5f5;
}

.user-avatar-loading {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid #07c160;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
}

.user-details {
    margin-bottom: 25px;
}

.user-detail-item {
    display: flex;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #f5f5f5;
}

.detail-label {
    font-size: 14px;
    color: #666;
    min-width: 100px;
    font-weight: 500;
}

.detail-value {
    font-size: 14px;
    color: #2c3e50;
    flex: 1;
}

.detail-value.user-uuid {
    font-family: monospace;
    font-size: 12px;
    color: #666;
    word-break: break-all;
}

.user-info-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .wx-login-content {
        width: 95%;
        margin: 20px;
    }
    
    .user-info-content {
        width: 95%;
        margin: 20px;
    }
    
    .fallback-options {
        flex-direction: column;
    }
    
    .user-info-actions {
        flex-direction: column;
    }
}

.seal-type-item.active {
    border-color: #00BCD4;
    background-color: #fff5f5;
}

/* 微信登录弹窗样式 */
.wx-login-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1000;
    animation: fadeIn 0.3s ease;
}

.wx-login-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    max-width: 400px;
    width: 90%;
}

.wx-login-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.wx-login-header h3 {
    margin: 0;
    font-size: 18px;
    color: #333;
}

.wx-login-close {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #999;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wx-login-close:hover {
    color: #333;
}

.wx-login-qr {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 200px;
    margin-bottom: 15px;
}

.wx-login-tips {
    text-align: center;
    color: #666;
    font-size: 14px;
}

.wx-login-modal.show {
    display: flex;
    justify-content: center;
    align-items: center;
}

.wx-login-content {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    width: 90%;
    max-width: 420px;
    animation: slideUp 0.3s ease;
}

.wx-login-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 25px 15px;
    border-bottom: 1px solid #f0f0f0;
}

.wx-login-title {
    font-size: 22px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
}

.wx-login-close {
    background: none;
    border: none;
    font-size: 28px;
    color: #999;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.wx-login-close:hover {
    background-color: #f5f5f5;
    color: #666;
}

.wx-login-body {
    padding: 20px 25px 25px;
}

.wx-login-methods {
    text-align: center;
}

.wx-qr-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
}

.wx-qr-placeholder {
    width: 200px;
    height: 200px;
    border: 2px solid #e9ecef;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #ffffff;
}

.wx-qr-image {
    width: 200px;
    height: 200px;
    border: 2px solid #07c160;
    border-radius: 15px;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wx-qr-image canvas {
    border-radius: 12px;
}

.wx-login-tip {
    font-size: 14px;
    color: #666;
    margin: 10px 0 0 0;
}

/* 备用方案样式 */
.wx-fallback {
    text-align: center;
}

.fallback-content {
    padding: 20px;
}

.fallback-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.fallback-content h4 {
    font-size: 18px;
    color: #2c3e50;
    margin-bottom: 10px;
}

.fallback-content p {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.4;
}

.fallback-options {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.mini-program-icon {
    margin-right: 8px;
}

/* 用户信息弹窗样式 */
.user-info-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0. 0.6);
    z-index: 1000;
    animation: fadeIn 0.3s ease;
}

.user-info-modal.show {
    display: flex;
    justify-content: center;
    align-items: center;
}

.user-info-content {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    width: 90%;
    max-width: 500px;
    max-height: 80vh;
    overflow-y: auto;
    animation: slideUp 0.3s ease;
}

.user-info-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 25px 15px;
    border-bottom: 1px solid #f0f0f0;
}

.user-info-title {
    font-size: 22px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
}

.user-info-close {
    background: none;
    border: none;
    font-size: 28px;
    color: #999;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.user-info-close:hover {
    background-color: #f5f5f5;
    color: #666;
}

.user-info-body {
    padding: 20px 25px 25px;
}

.user-avatar-container {
    display: flex;
    justify-content: center;
    margin-bottom: 25px;
    position: relative;
}

.user-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid #07c160;
    object-fit: cover;
    background: #f5f5f5;
}

.user-avatar-loading {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid #07c160;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
}

.user-details {
    margin-bottom: 25px;
}

.user-detail-item {
    display: flex;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #f5f5f5;
}

.detail-label {
    font-size: 14px;
    color: #666;
    min-width: 100px;
    font-weight: 500;
}

.detail-value {
    font-size: 14px;
    color: #2c3e50;
    flex: 1;
}

.detail-value.user-uuid {
    font-family: monospace;
    font-size: 12px;
    color: #666;
    word-break: break-all;
}

.user-info-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .wx-login-content {
        width: 95%;
        margin: 20px;
    }
    
    .user-info-content {
        width: 95%;
        margin: 20px;
    }
    
    .fallback-options {
        flex-direction: column;
    }
    
    .user-info-actions {
        flex-direction: column;
    }
}

.seal-type-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* 微信登录弹窗样式 */
.wx-login-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1000;
    animation: fadeIn 0.3s ease;
}

.wx-login-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    max-width: 400px;
    width: 90%;
}

.wx-login-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.wx-login-header h3 {
    margin: 0;
    font-size: 18px;
    color: #333;
}

.wx-login-close {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #999;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wx-login-close:hover {
    color: #333;
}

.wx-login-qr {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 200px;
    margin-bottom: 15px;
}

.wx-login-tips {
    text-align: center;
    color: #666;
    font-size: 14px;
}

.wx-login-modal.show {
    display: flex;
    justify-content: center;
    align-items: center;
}

.wx-login-content {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    width: 90%;
    max-width: 420px;
    animation: slideUp 0.3s ease;
}

.wx-login-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 25px 15px;
    border-bottom: 1px solid #f0f0f0;
}

.wx-login-title {
    font-size: 22px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
}

.wx-login-close {
    background: none;
    border: none;
    font-size: 28px;
    color: #999;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.wx-login-close:hover {
    background-color: #f5f5f5;
    color: #666;
}

.wx-login-body {
    padding: 20px 25px 25px;
}

.wx-login-methods {
    text-align: center;
}

.wx-qr-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
}

.wx-qr-placeholder {
    width: 200px;
    height: 200px;
    border: 2px solid #e9ecef;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #ffffff;
}

.wx-qr-image {
    width: 200px;
    height: 200px;
    border: 2px solid #07c160;
    border-radius: 15px;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wx-qr-image canvas {
    border-radius: 12px;
}

.wx-login-tip {
    font-size: 14px;
    color: #666;
    margin: 10px 0 0 0;
}

/* 备用方案样式 */
.wx-fallback {
    text-align: center;
}

.fallback-content {
    padding: 20px;
}

.fallback-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.fallback-content h4 {
    font-size: 18px;
    color: #2c3e50;
    margin-bottom: 10px;
}

.fallback-content p {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.4;
}

.fallback-options {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.mini-program-icon {
    margin-right: 8px;
}

/* 用户信息弹窗样式 */
.user-info-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0. 0.6);
    z-index: 1000;
    animation: fadeIn 0.3s ease;
}

.user-info-modal.show {
    display: flex;
    justify-content: center;
    align-items: center;
}

.user-info-content {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    width: 90%;
    max-width: 500px;
    max-height: 80vh;
    overflow-y: auto;
    animation: slideUp 0.3s ease;
}

.user-info-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 25px 15px;
    border-bottom: 1px solid #f0f0f0;
}

.user-info-title {
    font-size: 22px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
}

.user-info-close {
    background: none;
    border: none;
    font-size: 28px;
    color: #999;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.user-info-close:hover {
    background-color: #f5f5f5;
    color: #666;
}

.user-info-body {
    padding: 20px 25px 25px;
}

.user-avatar-container {
    display: flex;
    justify-content: center;
    margin-bottom: 25px;
    position: relative;
}

.user-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid #07c160;
    object-fit: cover;
    background: #f5f5f5;
}

.user-avatar-loading {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid #07c160;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
}

.user-details {
    margin-bottom: 25px;
}

.user-detail-item {
    display: flex;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #f5f5f5;
}

.detail-label {
    font-size: 14px;
    color: #666;
    min-width: 100px;
    font-weight: 500;
}

.detail-value {
    font-size: 14px;
    color: #2c3e50;
    flex: 1;
}

.detail-value.user-uuid {
    font-family: monospace;
    font-size: 12px;
    color: #666;
    word-break: break-all;
}

.user-info-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .wx-login-content {
        width: 95%;
        margin: 20px;
    }
    
    .user-info-content {
        width: 95%;
        margin: 20px;
    }
    
    .fallback-options {
        flex-direction: column;
    }
    
    .user-info-actions {
        flex-direction: column;
    }
}

/* 滚动提示文字区域 */
.tips-container {
    width: 100%;
    height: 40px;
    background-color: #f0f8ff;
    border: 1px solid #e6f3ff;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* 微信登录弹窗样式 */
.wx-login-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1000;
    animation: fadeIn 0.3s ease;
}

.wx-login-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    max-width: 400px;
    width: 90%;
}

.wx-login-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.wx-login-header h3 {
    margin: 0;
    font-size: 18px;
    color: #333;
}

.wx-login-close {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #999;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wx-login-close:hover {
    color: #333;
}

.wx-login-qr {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 200px;
    margin-bottom: 15px;
}

.wx-login-tips {
    text-align: center;
    color: #666;
    font-size: 14px;
}

.wx-login-modal.show {
    display: flex;
    justify-content: center;
    align-items: center;
}

.wx-login-content {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    width: 90%;
    max-width: 420px;
    animation: slideUp 0.3s ease;
}

.wx-login-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 25px 15px;
    border-bottom: 1px solid #f0f0f0;
}

.wx-login-title {
    font-size: 22px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
}

.wx-login-close {
    background: none;
    border: none;
    font-size: 28px;
    color: #999;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.wx-login-close:hover {
    background-color: #f5f5f5;
    color: #666;
}

.wx-login-body {
    padding: 20px 25px 25px;
}

.wx-login-methods {
    text-align: center;
}

.wx-qr-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
}

.wx-qr-placeholder {
    width: 200px;
    height: 200px;
    border: 2px solid #e9ecef;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #ffffff;
}

.wx-qr-image {
    width: 200px;
    height: 200px;
    border: 2px solid #07c160;
    border-radius: 15px;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wx-qr-image canvas {
    border-radius: 12px;
}

.wx-login-tip {
    font-size: 14px;
    color: #666;
    margin: 10px 0 0 0;
}

/* 备用方案样式 */
.wx-fallback {
    text-align: center;
}

.fallback-content {
    padding: 20px;
}

.fallback-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.fallback-content h4 {
    font-size: 18px;
    color: #2c3e50;
    margin-bottom: 10px;
}

.fallback-content p {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.4;
}

.fallback-options {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.mini-program-icon {
    margin-right: 8px;
}

/* 用户信息弹窗样式 */
.user-info-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0. 0.6);
    z-index: 1000;
    animation: fadeIn 0.3s ease;
}

.user-info-modal.show {
    display: flex;
    justify-content: center;
    align-items: center;
}

.user-info-content {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    width: 90%;
    max-width: 500px;
    max-height: 80vh;
    overflow-y: auto;
    animation: slideUp 0.3s ease;
}

.user-info-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 25px 15px;
    border-bottom: 1px solid #f0f0f0;
}

.user-info-title {
    font-size: 22px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
}

.user-info-close {
    background: none;
    border: none;
    font-size: 28px;
    color: #999;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.user-info-close:hover {
    background-color: #f5f5f5;
    color: #666;
}

.user-info-body {
    padding: 20px 25px 25px;
}

.user-avatar-container {
    display: flex;
    justify-content: center;
    margin-bottom: 25px;
    position: relative;
}

.user-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid #07c160;
    object-fit: cover;
    background: #f5f5f5;
}

.user-avatar-loading {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid #07c160;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
}

.user-details {
    margin-bottom: 25px;
}

.user-detail-item {
    display: flex;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #f5f5f5;
}

.detail-label {
    font-size: 14px;
    color: #666;
    min-width: 100px;
    font-weight: 500;
}

.detail-value {
    font-size: 14px;
    color: #2c3e50;
    flex: 1;
}

.detail-value.user-uuid {
    font-family: monospace;
    font-size: 12px;
    color: #666;
    word-break: break-all;
}

.user-info-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .wx-login-content {
        width: 95%;
        margin: 20px;
    }
    
    .user-info-content {
        width: 95%;
        margin: 20px;
    }
    
    .fallback-options {
        flex-direction: column;
    }
    
    .user-info-actions {
        flex-direction: column;
    }
}

.tips-scroll {
    width: 100%;
    height: 100%;
    position: relative;
}

/* 微信登录弹窗样式 */
.wx-login-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1000;
    animation: fadeIn 0.3s ease;
}

.wx-login-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    max-width: 400px;
    width: 90%;
}

.wx-login-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.wx-login-header h3 {
    margin: 0;
    font-size: 18px;
    color: #333;
}

.wx-login-close {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #999;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wx-login-close:hover {
    color: #333;
}

.wx-login-qr {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 200px;
    margin-bottom: 15px;
}

.wx-login-tips {
    text-align: center;
    color: #666;
    font-size: 14px;
}

.wx-login-modal.show {
    display: flex;
    justify-content: center;
    align-items: center;
}

.wx-login-content {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    width: 90%;
    max-width: 420px;
    animation: slideUp 0.3s ease;
}

.wx-login-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 25px 15px;
    border-bottom: 1px solid #f0f0f0;
}

.wx-login-title {
    font-size: 22px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
}

.wx-login-close {
    background: none;
    border: none;
    font-size: 28px;
    color: #999;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.wx-login-close:hover {
    background-color: #f5f5f5;
    color: #666;
}

.wx-login-body {
    padding: 20px 25px 25px;
}

.wx-login-methods {
    text-align: center;
}

.wx-qr-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
}

.wx-qr-placeholder {
    width: 200px;
    height: 200px;
    border: 2px solid #e9ecef;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #ffffff;
}

.wx-qr-image {
    width: 200px;
    height: 200px;
    border: 2px solid #07c160;
    border-radius: 15px;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wx-qr-image canvas {
    border-radius: 12px;
}

.wx-login-tip {
    font-size: 14px;
    color: #666;
    margin: 10px 0 0 0;
}

/* 备用方案样式 */
.wx-fallback {
    text-align: center;
}

.fallback-content {
    padding: 20px;
}

.fallback-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.fallback-content h4 {
    font-size: 18px;
    color: #2c3e50;
    margin-bottom: 10px;
}

.fallback-content p {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.4;
}

.fallback-options {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.mini-program-icon {
    margin-right: 8px;
}

/* 用户信息弹窗样式 */
.user-info-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0. 0.6);
    z-index: 1000;
    animation: fadeIn 0.3s ease;
}

.user-info-modal.show {
    display: flex;
    justify-content: center;
    align-items: center;
}

.user-info-content {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    width: 90%;
    max-width: 500px;
    max-height: 80vh;
    overflow-y: auto;
    animation: slideUp 0.3s ease;
}

.user-info-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 25px 15px;
    border-bottom: 1px solid #f0f0f0;
}

.user-info-title {
    font-size: 22px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
}

.user-info-close {
    background: none;
    border: none;
    font-size: 28px;
    color: #999;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.user-info-close:hover {
    background-color: #f5f5f5;
    color: #666;
}

.user-info-body {
    padding: 20px 25px 25px;
}

.user-avatar-container {
    display: flex;
    justify-content: center;
    margin-bottom: 25px;
    position: relative;
}

.user-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid #07c160;
    object-fit: cover;
    background: #f5f5f5;
}

.user-avatar-loading {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid #07c160;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
}

.user-details {
    margin-bottom: 25px;
}

.user-detail-item {
    display: flex;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #f5f5f5;
}

.detail-label {
    font-size: 14px;
    color: #666;
    min-width: 100px;
    font-weight: 500;
}

.detail-value {
    font-size: 14px;
    color: #2c3e50;
    flex: 1;
}

.detail-value.user-uuid {
    font-family: monospace;
    font-size: 12px;
    color: #666;
    word-break: break-all;
}

.user-info-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .wx-login-content {
        width: 95%;
        margin: 20px;
    }
    
    .user-info-content {
        width: 95%;
        margin: 20px;
    }
    
    .fallback-options {
        flex-direction: column;
    }
    
    .user-info-actions {
        flex-direction: column;
    }
}

.tips-text {
    color: #00BCD4;
    font-size: 14px;
    font-weight: 500;
    text-align: center;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    width: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
}

/* 微信登录弹窗样式 */
.wx-login-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1000;
    animation: fadeIn 0.3s ease;
}

.wx-login-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    max-width: 400px;
    width: 90%;
}

.wx-login-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.wx-login-header h3 {
    margin: 0;
    font-size: 18px;
    color: #333;
}

.wx-login-close {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #999;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wx-login-close:hover {
    color: #333;
}

.wx-login-qr {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 200px;
    margin-bottom: 15px;
}

.wx-login-tips {
    text-align: center;
    color: #666;
    font-size: 14px;
}

.wx-login-modal.show {
    display: flex;
    justify-content: center;
    align-items: center;
}

.wx-login-content {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    width: 90%;
    max-width: 420px;
    animation: slideUp 0.3s ease;
}

.wx-login-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 25px 15px;
    border-bottom: 1px solid #f0f0f0;
}

.wx-login-title {
    font-size: 22px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
}

.wx-login-close {
    background: none;
    border: none;
    font-size: 28px;
    color: #999;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.wx-login-close:hover {
    background-color: #f5f5f5;
    color: #666;
}

.wx-login-body {
    padding: 20px 25px 25px;
}

.wx-login-methods {
    text-align: center;
}

.wx-qr-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
}

.wx-qr-placeholder {
    width: 200px;
    height: 200px;
    border: 2px solid #e9ecef;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #ffffff;
}

.wx-qr-image {
    width: 200px;
    height: 200px;
    border: 2px solid #07c160;
    border-radius: 15px;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wx-qr-image canvas {
    border-radius: 12px;
}

.wx-login-tip {
    font-size: 14px;
    color: #666;
    margin: 10px 0 0 0;
}

/* 备用方案样式 */
.wx-fallback {
    text-align: center;
}

.fallback-content {
    padding: 20px;
}

.fallback-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.fallback-content h4 {
    font-size: 18px;
    color: #2c3e50;
    margin-bottom: 10px;
}

.fallback-content p {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.4;
}

.fallback-options {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.mini-program-icon {
    margin-right: 8px;
}

/* 用户信息弹窗样式 */
.user-info-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0. 0.6);
    z-index: 1000;
    animation: fadeIn 0.3s ease;
}

.user-info-modal.show {
    display: flex;
    justify-content: center;
    align-items: center;
}

.user-info-content {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    width: 90%;
    max-width: 500px;
    max-height: 80vh;
    overflow-y: auto;
    animation: slideUp 0.3s ease;
}

.user-info-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 25px 15px;
    border-bottom: 1px solid #f0f0f0;
}

.user-info-title {
    font-size: 22px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
}

.user-info-close {
    background: none;
    border: none;
    font-size: 28px;
    color: #999;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.user-info-close:hover {
    background-color: #f5f5f5;
    color: #666;
}

.user-info-body {
    padding: 20px 25px 25px;
}

.user-avatar-container {
    display: flex;
    justify-content: center;
    margin-bottom: 25px;
    position: relative;
}

.user-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid #07c160;
    object-fit: cover;
    background: #f5f5f5;
}

.user-avatar-loading {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid #07c160;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
}

.user-details {
    margin-bottom: 25px;
}

.user-detail-item {
    display: flex;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #f5f5f5;
}

.detail-label {
    font-size: 14px;
    color: #666;
    min-width: 100px;
    font-weight: 500;
}

.detail-value {
    font-size: 14px;
    color: #2c3e50;
    flex: 1;
}

.detail-value.user-uuid {
    font-family: monospace;
    font-size: 12px;
    color: #666;
    word-break: break-all;
}

.user-info-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .wx-login-content {
        width: 95%;
        margin: 20px;
    }
    
    .user-info-content {
        width: 95%;
        margin: 20px;
    }
    
    .fallback-options {
        flex-direction: column;
    }
    
    .user-info-actions {
        flex-direction: column;
    }
}

.tips-text.active {
    opacity: 1;
}

/* 微信登录弹窗样式 */
.wx-login-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1000;
    animation: fadeIn 0.3s ease;
}

.wx-login-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    max-width: 400px;
    width: 90%;
}

.wx-login-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.wx-login-header h3 {
    margin: 0;
    font-size: 18px;
    color: #333;
}

.wx-login-close {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #999;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wx-login-close:hover {
    color: #333;
}

.wx-login-qr {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 200px;
    margin-bottom: 15px;
}

.wx-login-tips {
    text-align: center;
    color: #666;
    font-size: 14px;
}

.wx-login-modal.show {
    display: flex;
    justify-content: center;
    align-items: center;
}

.wx-login-content {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    width: 90%;
    max-width: 420px;
    animation: slideUp 0.3s ease;
}

.wx-login-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 25px 15px;
    border-bottom: 1px solid #f0f0f0;
}

.wx-login-title {
    font-size: 22px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
}

.wx-login-close {
    background: none;
    border: none;
    font-size: 28px;
    color: #999;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.wx-login-close:hover {
    background-color: #f5f5f5;
    color: #666;
}

.wx-login-body {
    padding: 20px 25px 25px;
}

.wx-login-methods {
    text-align: center;
}

.wx-qr-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
}

.wx-qr-placeholder {
    width: 200px;
    height: 200px;
    border: 2px solid #e9ecef;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #ffffff;
}

.wx-qr-image {
    width: 200px;
    height: 200px;
    border: 2px solid #07c160;
    border-radius: 15px;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wx-qr-image canvas {
    border-radius: 12px;
}

.wx-login-tip {
    font-size: 14px;
    color: #666;
    margin: 10px 0 0 0;
}

/* 备用方案样式 */
.wx-fallback {
    text-align: center;
}

.fallback-content {
    padding: 20px;
}

.fallback-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.fallback-content h4 {
    font-size: 18px;
    color: #2c3e50;
    margin-bottom: 10px;
}

.fallback-content p {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.4;
}

.fallback-options {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.mini-program-icon {
    margin-right: 8px;
}

/* 用户信息弹窗样式 */
.user-info-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0. 0.6);
    z-index: 1000;
    animation: fadeIn 0.3s ease;
}

.user-info-modal.show {
    display: flex;
    justify-content: center;
    align-items: center;
}

.user-info-content {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    width: 90%;
    max-width: 500px;
    max-height: 80vh;
    overflow-y: auto;
    animation: slideUp 0.3s ease;
}

.user-info-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 25px 15px;
    border-bottom: 1px solid #f0f0f0;
}

.user-info-title {
    font-size: 22px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
}

.user-info-close {
    background: none;
    border: none;
    font-size: 28px;
    color: #999;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.user-info-close:hover {
    background-color: #f5f5f5;
    color: #666;
}

.user-info-body {
    padding: 20px 25px 25px;
}

.user-avatar-container {
    display: flex;
    justify-content: center;
    margin-bottom: 25px;
    position: relative;
}

.user-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid #07c160;
    object-fit: cover;
    background: #f5f5f5;
}

.user-avatar-loading {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid #07c160;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
}

.user-details {
    margin-bottom: 25px;
}

.user-detail-item {
    display: flex;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #f5f5f5;
}

.detail-label {
    font-size: 14px;
    color: #666;
    min-width: 100px;
    font-weight: 500;
}

.detail-value {
    font-size: 14px;
    color: #2c3e50;
    flex: 1;
}

.detail-value.user-uuid {
    font-family: monospace;
    font-size: 12px;
    color: #666;
    word-break: break-all;
}

.user-info-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .wx-login-content {
        width: 95%;
        margin: 20px;
    }
    
    .user-info-content {
        width: 95%;
        margin: 20px;
    }
    
    .fallback-options {
        flex-direction: column;
    }
    
    .user-info-actions {
        flex-direction: column;
    }
}

.tips-text.hidden {
    opacity: 0;
}

/* 微信登录弹窗样式 */
.wx-login-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1000;
    animation: fadeIn 0.3s ease;
}

.wx-login-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    max-width: 400px;
    width: 90%;
}

.wx-login-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.wx-login-header h3 {
    margin: 0;
    font-size: 18px;
    color: #333;
}

.wx-login-close {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #999;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wx-login-close:hover {
    color: #333;
}

.wx-login-qr {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 200px;
    margin-bottom: 15px;
}

.wx-login-tips {
    text-align: center;
    color: #666;
    font-size: 14px;
}

.wx-login-modal.show {
    display: flex;
    justify-content: center;
    align-items: center;
}

.wx-login-content {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    width: 90%;
    max-width: 420px;
    animation: slideUp 0.3s ease;
}

.wx-login-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 25px 15px;
    border-bottom: 1px solid #f0f0f0;
}

.wx-login-title {
    font-size: 22px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
}

.wx-login-close {
    background: none;
    border: none;
    font-size: 28px;
    color: #999;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.wx-login-close:hover {
    background-color: #f5f5f5;
    color: #666;
}

.wx-login-body {
    padding: 20px 25px 25px;
}

.wx-login-methods {
    text-align: center;
}

.wx-qr-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
}

.wx-qr-placeholder {
    width: 200px;
    height: 200px;
    border: 2px solid #e9ecef;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #ffffff;
}

.wx-qr-image {
    width: 200px;
    height: 200px;
    border: 2px solid #07c160;
    border-radius: 15px;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wx-qr-image canvas {
    border-radius: 12px;
}

.wx-login-tip {
    font-size: 14px;
    color: #666;
    margin: 10px 0 0 0;
}

/* 备用方案样式 */
.wx-fallback {
    text-align: center;
}

.fallback-content {
    padding: 20px;
}

.fallback-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.fallback-content h4 {
    font-size: 18px;
    color: #2c3e50;
    margin-bottom: 10px;
}

.fallback-content p {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.4;
}

.fallback-options {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.mini-program-icon {
    margin-right: 8px;
}

/* 用户信息弹窗样式 */
.user-info-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0. 0.6);
    z-index: 1000;
    animation: fadeIn 0.3s ease;
}

.user-info-modal.show {
    display: flex;
    justify-content: center;
    align-items: center;
}

.user-info-content {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    width: 90%;
    max-width: 500px;
    max-height: 80vh;
    overflow-y: auto;
    animation: slideUp 0.3s ease;
}

.user-info-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 25px 15px;
    border-bottom: 1px solid #f0f0f0;
}

.user-info-title {
    font-size: 22px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
}

.user-info-close {
    background: none;
    border: none;
    font-size: 28px;
    color: #999;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.user-info-close:hover {
    background-color: #f5f5f5;
    color: #666;
}

.user-info-body {
    padding: 20px 25px 25px;
}

.user-avatar-container {
    display: flex;
    justify-content: center;
    margin-bottom: 25px;
    position: relative;
}

.user-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid #07c160;
    object-fit: cover;
    background: #f5f5f5;
}

.user-avatar-loading {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid #07c160;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
}

.user-details {
    margin-bottom: 25px;
}

.user-detail-item {
    display: flex;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #f5f5f5;
}

.detail-label {
    font-size: 14px;
    color: #666;
    min-width: 100px;
    font-weight: 500;
}

.detail-value {
    font-size: 14px;
    color: #2c3e50;
    flex: 1;
}

.detail-value.user-uuid {
    font-family: monospace;
    font-size: 12px;
    color: #666;
    word-break: break-all;
}

.user-info-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .wx-login-content {
        width: 95%;
        margin: 20px;
    }
    
    .user-info-content {
        width: 95%;
        margin: 20px;
    }
    
    .fallback-options {
        flex-direction: column;
    }
    
    .user-info-actions {
        flex-direction: column;
    }
}

/* 中间：编辑预览区域 */
.editor-area {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 0;
    min-height: 100%;
}

/* 微信登录弹窗样式 */
.wx-login-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1000;
    animation: fadeIn 0.3s ease;
}

.wx-login-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    max-width: 400px;
    width: 90%;
}

.wx-login-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.wx-login-header h3 {
    margin: 0;
    font-size: 18px;
    color: #333;
}

.wx-login-close {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #999;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wx-login-close:hover {
    color: #333;
}

.wx-login-qr {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 200px;
    margin-bottom: 15px;
}

.wx-login-tips {
    text-align: center;
    color: #666;
    font-size: 14px;
}

.wx-login-modal.show {
    display: flex;
    justify-content: center;
    align-items: center;
}

.wx-login-content {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    width: 90%;
    max-width: 420px;
    animation: slideUp 0.3s ease;
}

.wx-login-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 25px 15px;
    border-bottom: 1px solid #f0f0f0;
}

.wx-login-title {
    font-size: 22px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
}

.wx-login-close {
    background: none;
    border: none;
    font-size: 28px;
    color: #999;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.wx-login-close:hover {
    background-color: #f5f5f5;
    color: #666;
}

.wx-login-body {
    padding: 20px 25px 25px;
}

.wx-login-methods {
    text-align: center;
}

.wx-qr-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
}

.wx-qr-placeholder {
    width: 200px;
    height: 200px;
    border: 2px solid #e9ecef;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #ffffff;
}

.wx-qr-image {
    width: 200px;
    height: 200px;
    border: 2px solid #07c160;
    border-radius: 15px;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wx-qr-image canvas {
    border-radius: 12px;
}

.wx-login-tip {
    font-size: 14px;
    color: #666;
    margin: 10px 0 0 0;
}

/* 备用方案样式 */
.wx-fallback {
    text-align: center;
}

.fallback-content {
    padding: 20px;
}

.fallback-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.fallback-content h4 {
    font-size: 18px;
    color: #2c3e50;
    margin-bottom: 10px;
}

.fallback-content p {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.4;
}

.fallback-options {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.mini-program-icon {
    margin-right: 8px;
}

/* 用户信息弹窗样式 */
.user-info-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0. 0.6);
    z-index: 1000;
    animation: fadeIn 0.3s ease;
}

.user-info-modal.show {
    display: flex;
    justify-content: center;
    align-items: center;
}

.user-info-content {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    width: 90%;
    max-width: 500px;
    max-height: 80vh;
    overflow-y: auto;
    animation: slideUp 0.3s ease;
}

.user-info-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 25px 15px;
    border-bottom: 1px solid #f0f0f0;
}

.user-info-title {
    font-size: 22px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
}

.user-info-close {
    background: none;
    border: none;
    font-size: 28px;
    color: #999;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.user-info-close:hover {
    background-color: #f5f5f5;
    color: #666;
}

.user-info-body {
    padding: 20px 25px 25px;
}

.user-avatar-container {
    display: flex;
    justify-content: center;
    margin-bottom: 25px;
    position: relative;
}

.user-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid #07c160;
    object-fit: cover;
    background: #f5f5f5;
}

.user-avatar-loading {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid #07c160;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
}

.user-details {
    margin-bottom: 25px;
}

.user-detail-item {
    display: flex;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #f5f5f5;
}

.detail-label {
    font-size: 14px;
    color: #666;
    min-width: 100px;
    font-weight: 500;
}

.detail-value {
    font-size: 14px;
    color: #2c3e50;
    flex: 1;
}

.detail-value.user-uuid {
    font-family: monospace;
    font-size: 12px;
    color: #666;
    word-break: break-all;
}

.user-info-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .wx-login-content {
        width: 95%;
        margin: 20px;
    }
    
    .user-info-content {
        width: 95%;
        margin: 20px;
    }
    
    .fallback-options {
        flex-direction: column;
    }
    
    .user-info-actions {
        flex-direction: column;
    }
}

.preview-container {
    background-color: #fff;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 0;
    width: 100%;
    overflow: hidden;
}

/* 微信登录弹窗样式 */
.wx-login-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1000;
    animation: fadeIn 0.3s ease;
}

.wx-login-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    max-width: 400px;
    width: 90%;
}

.wx-login-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.wx-login-header h3 {
    margin: 0;
    font-size: 18px;
    color: #333;
}

.wx-login-close {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #999;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wx-login-close:hover {
    color: #333;
}

.wx-login-qr {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 200px;
    margin-bottom: 15px;
}

.wx-login-tips {
    text-align: center;
    color: #666;
    font-size: 14px;
}

.wx-login-modal.show {
    display: flex;
    justify-content: center;
    align-items: center;
}

.wx-login-content {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    width: 90%;
    max-width: 420px;
    animation: slideUp 0.3s ease;
}

.wx-login-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 25px 15px;
    border-bottom: 1px solid #f0f0f0;
}

.wx-login-title {
    font-size: 22px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
}

.wx-login-close {
    background: none;
    border: none;
    font-size: 28px;
    color: #999;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.wx-login-close:hover {
    background-color: #f5f5f5;
    color: #666;
}

.wx-login-body {
    padding: 20px 25px 25px;
}

.wx-login-methods {
    text-align: center;
}

.wx-qr-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
}

.wx-qr-placeholder {
    width: 200px;
    height: 200px;
    border: 2px solid #e9ecef;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #ffffff;
}

.wx-qr-image {
    width: 200px;
    height: 200px;
    border: 2px solid #07c160;
    border-radius: 15px;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wx-qr-image canvas {
    border-radius: 12px;
}

.wx-login-tip {
    font-size: 14px;
    color: #666;
    margin: 10px 0 0 0;
}

/* 备用方案样式 */
.wx-fallback {
    text-align: center;
}

.fallback-content {
    padding: 20px;
}

.fallback-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.fallback-content h4 {
    font-size: 18px;
    color: #2c3e50;
    margin-bottom: 10px;
}

.fallback-content p {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.4;
}

.fallback-options {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.mini-program-icon {
    margin-right: 8px;
}

/* 用户信息弹窗样式 */
.user-info-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0. 0.6);
    z-index: 1000;
    animation: fadeIn 0.3s ease;
}

.user-info-modal.show {
    display: flex;
    justify-content: center;
    align-items: center;
}

.user-info-content {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    width: 90%;
    max-width: 500px;
    max-height: 80vh;
    overflow-y: auto;
    animation: slideUp 0.3s ease;
}

.user-info-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 25px 15px;
    border-bottom: 1px solid #f0f0f0;
}

.user-info-title {
    font-size: 22px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
}

.user-info-close {
    background: none;
    border: none;
    font-size: 28px;
    color: #999;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.user-info-close:hover {
    background-color: #f5f5f5;
    color: #666;
}

.user-info-body {
    padding: 20px 25px 25px;
}

.user-avatar-container {
    display: flex;
    justify-content: center;
    margin-bottom: 25px;
    position: relative;
}

.user-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid #07c160;
    object-fit: cover;
    background: #f5f5f5;
}

.user-avatar-loading {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid #07c160;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
}

.user-details {
    margin-bottom: 25px;
}

.user-detail-item {
    display: flex;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #f5f5f5;
}

.detail-label {
    font-size: 14px;
    color: #666;
    min-width: 100px;
    font-weight: 500;
}

.detail-value {
    font-size: 14px;
    color: #2c3e50;
    flex: 1;
}

.detail-value.user-uuid {
    font-family: monospace;
    font-size: 12px;
    color: #666;
    word-break: break-all;
}

.user-info-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .wx-login-content {
        width: 95%;
        margin: 20px;
    }
    
    .user-info-content {
        width: 95%;
        margin: 20px;
    }
    
    .fallback-options {
        flex-direction: column;
    }
    
    .user-info-actions {
        flex-direction: column;
    }
}

.preview-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

/* 微信登录弹窗样式 */
.wx-login-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1000;
    animation: fadeIn 0.3s ease;
}

.wx-login-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    max-width: 400px;
    width: 90%;
}

.wx-login-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.wx-login-header h3 {
    margin: 0;
    font-size: 18px;
    color: #333;
}

.wx-login-close {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #999;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wx-login-close:hover {
    color: #333;
}

.wx-login-qr {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 200px;
    margin-bottom: 15px;
}

.wx-login-tips {
    text-align: center;
    color: #666;
    font-size: 14px;
}

.wx-login-modal.show {
    display: flex;
    justify-content: center;
    align-items: center;
}

.wx-login-content {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    width: 90%;
    max-width: 420px;
    animation: slideUp 0.3s ease;
}

.wx-login-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 25px 15px;
    border-bottom: 1px solid #f0f0f0;
}

.wx-login-title {
    font-size: 22px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
}

.wx-login-close {
    background: none;
    border: none;
    font-size: 28px;
    color: #999;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.wx-login-close:hover {
    background-color: #f5f5f5;
    color: #666;
}

.wx-login-body {
    padding: 20px 25px 25px;
}

.wx-login-methods {
    text-align: center;
}

.wx-qr-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
}

.wx-qr-placeholder {
    width: 200px;
    height: 200px;
    border: 2px solid #e9ecef;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #ffffff;
}

.wx-qr-image {
    width: 200px;
    height: 200px;
    border: 2px solid #07c160;
    border-radius: 15px;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wx-qr-image canvas {
    border-radius: 12px;
}

.wx-login-tip {
    font-size: 14px;
    color: #666;
    margin: 10px 0 0 0;
}

/* 备用方案样式 */
.wx-fallback {
    text-align: center;
}

.fallback-content {
    padding: 20px;
}

.fallback-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.fallback-content h4 {
    font-size: 18px;
    color: #2c3e50;
    margin-bottom: 10px;
}

.fallback-content p {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.4;
}

.fallback-options {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.mini-program-icon {
    margin-right: 8px;
}

/* 用户信息弹窗样式 */
.user-info-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0. 0.6);
    z-index: 1000;
    animation: fadeIn 0.3s ease;
}

.user-info-modal.show {
    display: flex;
    justify-content: center;
    align-items: center;
}

.user-info-content {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    width: 90%;
    max-width: 500px;
    max-height: 80vh;
    overflow-y: auto;
    animation: slideUp 0.3s ease;
}

.user-info-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 25px 15px;
    border-bottom: 1px solid #f0f0f0;
}

.user-info-title {
    font-size: 22px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
}

.user-info-close {
    background: none;
    border: none;
    font-size: 28px;
    color: #999;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.user-info-close:hover {
    background-color: #f5f5f5;
    color: #666;
}

.user-info-body {
    padding: 20px 25px 25px;
}

.user-avatar-container {
    display: flex;
    justify-content: center;
    margin-bottom: 25px;
    position: relative;
}

.user-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid #07c160;
    object-fit: cover;
    background: #f5f5f5;
}

.user-avatar-loading {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid #07c160;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
}

.user-details {
    margin-bottom: 25px;
}

.user-detail-item {
    display: flex;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #f5f5f5;
}

.detail-label {
    font-size: 14px;
    color: #666;
    min-width: 100px;
    font-weight: 500;
}

.detail-value {
    font-size: 14px;
    color: #2c3e50;
    flex: 1;
}

.detail-value.user-uuid {
    font-family: monospace;
    font-size: 12px;
    color: #666;
    word-break: break-all;
}

.user-info-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .wx-login-content {
        width: 95%;
        margin: 20px;
    }
    
    .user-info-content {
        width: 95%;
        margin: 20px;
    }
    
    .fallback-options {
        flex-direction: column;
    }
    
    .user-info-actions {
        flex-direction: column;
    }
}

#sealCanvas {
    max-width: 100%;
    height: auto;
    display: block;
}

/* 微信登录弹窗样式 */
.wx-login-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1000;
    animation: fadeIn 0.3s ease;
}

.wx-login-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    max-width: 400px;
    width: 90%;
}

.wx-login-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.wx-login-header h3 {
    margin: 0;
    font-size: 18px;
    color: #333;
}

.wx-login-close {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #999;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wx-login-close:hover {
    color: #333;
}

.wx-login-qr {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 200px;
    margin-bottom: 15px;
}

.wx-login-tips {
    text-align: center;
    color: #666;
    font-size: 14px;
}

.wx-login-modal.show {
    display: flex;
    justify-content: center;
    align-items: center;
}

.wx-login-content {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    width: 90%;
    max-width: 420px;
    animation: slideUp 0.3s ease;
}

.wx-login-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 25px 15px;
    border-bottom: 1px solid #f0f0f0;
}

.wx-login-title {
    font-size: 22px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
}

.wx-login-close {
    background: none;
    border: none;
    font-size: 28px;
    color: #999;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.wx-login-close:hover {
    background-color: #f5f5f5;
    color: #666;
}

.wx-login-body {
    padding: 20px 25px 25px;
}

.wx-login-methods {
    text-align: center;
}

.wx-qr-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
}

.wx-qr-placeholder {
    width: 200px;
    height: 200px;
    border: 2px solid #e9ecef;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #ffffff;
}

.wx-qr-image {
    width: 200px;
    height: 200px;
    border: 2px solid #07c160;
    border-radius: 15px;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wx-qr-image canvas {
    border-radius: 12px;
}

.wx-login-tip {
    font-size: 14px;
    color: #666;
    margin: 10px 0 0 0;
}

/* 备用方案样式 */
.wx-fallback {
    text-align: center;
}

.fallback-content {
    padding: 20px;
}

.fallback-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.fallback-content h4 {
    font-size: 18px;
    color: #2c3e50;
    margin-bottom: 10px;
}

.fallback-content p {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.4;
}

.fallback-options {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.mini-program-icon {
    margin-right: 8px;
}

/* 用户信息弹窗样式 */
.user-info-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0. 0.6);
    z-index: 1000;
    animation: fadeIn 0.3s ease;
}

.user-info-modal.show {
    display: flex;
    justify-content: center;
    align-items: center;
}

.user-info-content {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    width: 90%;
    max-width: 500px;
    max-height: 80vh;
    overflow-y: auto;
    animation: slideUp 0.3s ease;
}

.user-info-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 25px 15px;
    border-bottom: 1px solid #f0f0f0;
}

.user-info-title {
    font-size: 22px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
}

.user-info-close {
    background: none;
    border: none;
    font-size: 28px;
    color: #999;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.user-info-close:hover {
    background-color: #f5f5f5;
    color: #666;
}

.user-info-body {
    padding: 20px 25px 25px;
}

.user-avatar-container {
    display: flex;
    justify-content: center;
    margin-bottom: 25px;
    position: relative;
}

.user-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid #07c160;
    object-fit: cover;
    background: #f5f5f5;
}

.user-avatar-loading {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid #07c160;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
}

.user-details {
    margin-bottom: 25px;
}

.user-detail-item {
    display: flex;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #f5f5f5;
}

.detail-label {
    font-size: 14px;
    color: #666;
    min-width: 100px;
    font-weight: 500;
}

.detail-value {
    font-size: 14px;
    color: #2c3e50;
    flex: 1;
}

.detail-value.user-uuid {
    font-family: monospace;
    font-size: 12px;
    color: #666;
    word-break: break-all;
}

.user-info-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .wx-login-content {
        width: 95%;
        margin: 20px;
    }
    
    .user-info-content {
        width: 95%;
        margin: 20px;
    }
    
    .fallback-options {
        flex-direction: column;
    }
    
    .user-info-actions {
        flex-direction: column;
    }
}



.edit-section {
    margin-bottom: 25px;
}

/* 微信登录弹窗样式 */
.wx-login-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1000;
    animation: fadeIn 0.3s ease;
}

.wx-login-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    max-width: 400px;
    width: 90%;
}

.wx-login-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.wx-login-header h3 {
    margin: 0;
    font-size: 18px;
    color: #333;
}

.wx-login-close {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #999;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wx-login-close:hover {
    color: #333;
}

.wx-login-qr {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 200px;
    margin-bottom: 15px;
}

.wx-login-tips {
    text-align: center;
    color: #666;
    font-size: 14px;
}

.wx-login-modal.show {
    display: flex;
    justify-content: center;
    align-items: center;
}

.wx-login-content {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    width: 90%;
    max-width: 420px;
    animation: slideUp 0.3s ease;
}

.wx-login-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 25px 15px;
    border-bottom: 1px solid #f0f0f0;
}

.wx-login-title {
    font-size: 22px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
}

.wx-login-close {
    background: none;
    border: none;
    font-size: 28px;
    color: #999;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.wx-login-close:hover {
    background-color: #f5f5f5;
    color: #666;
}

.wx-login-body {
    padding: 20px 25px 25px;
}

.wx-login-methods {
    text-align: center;
}

.wx-qr-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
}

.wx-qr-placeholder {
    width: 200px;
    height: 200px;
    border: 2px solid #e9ecef;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #ffffff;
}

.wx-qr-image {
    width: 200px;
    height: 200px;
    border: 2px solid #07c160;
    border-radius: 15px;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wx-qr-image canvas {
    border-radius: 12px;
}

.wx-login-tip {
    font-size: 14px;
    color: #666;
    margin: 10px 0 0 0;
}

/* 备用方案样式 */
.wx-fallback {
    text-align: center;
}

.fallback-content {
    padding: 20px;
}

.fallback-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.fallback-content h4 {
    font-size: 18px;
    color: #2c3e50;
    margin-bottom: 10px;
}

.fallback-content p {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.4;
}

.fallback-options {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.mini-program-icon {
    margin-right: 8px;
}

/* 用户信息弹窗样式 */
.user-info-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0. 0.6);
    z-index: 1000;
    animation: fadeIn 0.3s ease;
}

.user-info-modal.show {
    display: flex;
    justify-content: center;
    align-items: center;
}

.user-info-content {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    width: 90%;
    max-width: 500px;
    max-height: 80vh;
    overflow-y: auto;
    animation: slideUp 0.3s ease;
}

.user-info-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 25px 15px;
    border-bottom: 1px solid #f0f0f0;
}

.user-info-title {
    font-size: 22px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
}

.user-info-close {
    background: none;
    border: none;
    font-size: 28px;
    color: #999;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.user-info-close:hover {
    background-color: #f5f5f5;
    color: #666;
}

.user-info-body {
    padding: 20px 25px 25px;
}

.user-avatar-container {
    display: flex;
    justify-content: center;
    margin-bottom: 25px;
    position: relative;
}

.user-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid #07c160;
    object-fit: cover;
    background: #f5f5f5;
}

.user-avatar-loading {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid #07c160;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
}

.user-details {
    margin-bottom: 25px;
}

.user-detail-item {
    display: flex;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #f5f5f5;
}

.detail-label {
    font-size: 14px;
    color: #666;
    min-width: 100px;
    font-weight: 500;
}

.detail-value {
    font-size: 14px;
    color: #2c3e50;
    flex: 1;
}

.detail-value.user-uuid {
    font-family: monospace;
    font-size: 12px;
    color: #666;
    word-break: break-all;
}

.user-info-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .wx-login-content {
        width: 95%;
        margin: 20px;
    }
    
    .user-info-content {
        width: 95%;
        margin: 20px;
    }
    
    .fallback-options {
        flex-direction: column;
    }
    
    .user-info-actions {
        flex-direction: column;
    }
}

.section-title {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 15px;
    color: #333;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}

/* 微信登录弹窗样式 */
.wx-login-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1000;
    animation: fadeIn 0.3s ease;
}

.wx-login-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    max-width: 400px;
    width: 90%;
}

.wx-login-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.wx-login-header h3 {
    margin: 0;
    font-size: 18px;
    color: #333;
}

.wx-login-close {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #999;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wx-login-close:hover {
    color: #333;
}

.wx-login-qr {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 200px;
    margin-bottom: 15px;
}

.wx-login-tips {
    text-align: center;
    color: #666;
    font-size: 14px;
}

.wx-login-modal.show {
    display: flex;
    justify-content: center;
    align-items: center;
}

.wx-login-content {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    width: 90%;
    max-width: 420px;
    animation: slideUp 0.3s ease;
}

.wx-login-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 25px 15px;
    border-bottom: 1px solid #f0f0f0;
}

.wx-login-title {
    font-size: 22px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
}

.wx-login-close {
    background: none;
    border: none;
    font-size: 28px;
    color: #999;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.wx-login-close:hover {
    background-color: #f5f5f5;
    color: #666;
}

.wx-login-body {
    padding: 20px 25px 25px;
}

.wx-login-methods {
    text-align: center;
}

.wx-qr-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
}

.wx-qr-placeholder {
    width: 200px;
    height: 200px;
    border: 2px solid #e9ecef;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #ffffff;
}

.wx-qr-image {
    width: 200px;
    height: 200px;
    border: 2px solid #07c160;
    border-radius: 15px;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wx-qr-image canvas {
    border-radius: 12px;
}

.wx-login-tip {
    font-size: 14px;
    color: #666;
    margin: 10px 0 0 0;
}

/* 备用方案样式 */
.wx-fallback {
    text-align: center;
}

.fallback-content {
    padding: 20px;
}

.fallback-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.fallback-content h4 {
    font-size: 18px;
    color: #2c3e50;
    margin-bottom: 10px;
}

.fallback-content p {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.4;
}

.fallback-options {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.mini-program-icon {
    margin-right: 8px;
}

/* 用户信息弹窗样式 */
.user-info-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0. 0.6);
    z-index: 1000;
    animation: fadeIn 0.3s ease;
}

.user-info-modal.show {
    display: flex;
    justify-content: center;
    align-items: center;
}

.user-info-content {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    width: 90%;
    max-width: 500px;
    max-height: 80vh;
    overflow-y: auto;
    animation: slideUp 0.3s ease;
}

.user-info-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 25px 15px;
    border-bottom: 1px solid #f0f0f0;
}

.user-info-title {
    font-size: 22px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
}

.user-info-close {
    background: none;
    border: none;
    font-size: 28px;
    color: #999;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.user-info-close:hover {
    background-color: #f5f5f5;
    color: #666;
}

.user-info-body {
    padding: 20px 25px 25px;
}

.user-avatar-container {
    display: flex;
    justify-content: center;
    margin-bottom: 25px;
    position: relative;
}

.user-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid #07c160;
    object-fit: cover;
    background: #f5f5f5;
}

.user-avatar-loading {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid #07c160;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
}

.user-details {
    margin-bottom: 25px;
}

.user-detail-item {
    display: flex;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #f5f5f5;
}

.detail-label {
    font-size: 14px;
    color: #666;
    min-width: 100px;
    font-weight: 500;
}

.detail-value {
    font-size: 14px;
    color: #2c3e50;
    flex: 1;
}

.detail-value.user-uuid {
    font-family: monospace;
    font-size: 12px;
    color: #666;
    word-break: break-all;
}

.user-info-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .wx-login-content {
        width: 95%;
        margin: 20px;
    }
    
    .user-info-content {
        width: 95%;
        margin: 20px;
    }
    
    .fallback-options {
        flex-direction: column;
    }
    
    .user-info-actions {
        flex-direction: column;
    }
}

.edit-item {
    margin-bottom: 20px;
}

/* 微信登录弹窗样式 */
.wx-login-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1000;
    animation: fadeIn 0.3s ease;
}

.wx-login-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    max-width: 400px;
    width: 90%;
}

.wx-login-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.wx-login-header h3 {
    margin: 0;
    font-size: 18px;
    color: #333;
}

.wx-login-close {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #999;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wx-login-close:hover {
    color: #333;
}

.wx-login-qr {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 200px;
    margin-bottom: 15px;
}

.wx-login-tips {
    text-align: center;
    color: #666;
    font-size: 14px;
}

.wx-login-modal.show {
    display: flex;
    justify-content: center;
    align-items: center;
}

.wx-login-content {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    width: 90%;
    max-width: 420px;
    animation: slideUp 0.3s ease;
}

.wx-login-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 25px 15px;
    border-bottom: 1px solid #f0f0f0;
}

.wx-login-title {
    font-size: 22px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
}

.wx-login-close {
    background: none;
    border: none;
    font-size: 28px;
    color: #999;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.wx-login-close:hover {
    background-color: #f5f5f5;
    color: #666;
}

.wx-login-body {
    padding: 20px 25px 25px;
}

.wx-login-methods {
    text-align: center;
}

.wx-qr-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
}

.wx-qr-placeholder {
    width: 200px;
    height: 200px;
    border: 2px solid #e9ecef;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #ffffff;
}

.wx-qr-image {
    width: 200px;
    height: 200px;
    border: 2px solid #07c160;
    border-radius: 15px;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wx-qr-image canvas {
    border-radius: 12px;
}

.wx-login-tip {
    font-size: 14px;
    color: #666;
    margin: 10px 0 0 0;
}

/* 备用方案样式 */
.wx-fallback {
    text-align: center;
}

.fallback-content {
    padding: 20px;
}

.fallback-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.fallback-content h4 {
    font-size: 18px;
    color: #2c3e50;
    margin-bottom: 10px;
}

.fallback-content p {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.4;
}

.fallback-options {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.mini-program-icon {
    margin-right: 8px;
}

/* 用户信息弹窗样式 */
.user-info-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0. 0.6);
    z-index: 1000;
    animation: fadeIn 0.3s ease;
}

.user-info-modal.show {
    display: flex;
    justify-content: center;
    align-items: center;
}

.user-info-content {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    width: 90%;
    max-width: 500px;
    max-height: 80vh;
    overflow-y: auto;
    animation: slideUp 0.3s ease;
}

.user-info-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 25px 15px;
    border-bottom: 1px solid #f0f0f0;
}

.user-info-title {
    font-size: 22px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
}

.user-info-close {
    background: none;
    border: none;
    font-size: 28px;
    color: #999;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.user-info-close:hover {
    background-color: #f5f5f5;
    color: #666;
}

.user-info-body {
    padding: 20px 25px 25px;
}

.user-avatar-container {
    display: flex;
    justify-content: center;
    margin-bottom: 25px;
    position: relative;
}

.user-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid #07c160;
    object-fit: cover;
    background: #f5f5f5;
}

.user-avatar-loading {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid #07c160;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
}

.user-details {
    margin-bottom: 25px;
}

.user-detail-item {
    display: flex;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #f5f5f5;
}

.detail-label {
    font-size: 14px;
    color: #666;
    min-width: 100px;
    font-weight: 500;
}

.detail-value {
    font-size: 14px;
    color: #2c3e50;
    flex: 1;
}

.detail-value.user-uuid {
    font-family: monospace;
    font-size: 12px;
    color: #666;
    word-break: break-all;
}

.user-info-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .wx-login-content {
        width: 95%;
        margin: 20px;
    }
    
    .user-info-content {
        width: 95%;
        margin: 20px;
    }
    
    .fallback-options {
        flex-direction: column;
    }
    
    .user-info-actions {
        flex-direction: column;
    }
}

/* 并排显示的编辑项容器 */
.edit-item-row {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

/* 微信登录弹窗样式 */
.wx-login-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1000;
    animation: fadeIn 0.3s ease;
}

.wx-login-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    max-width: 400px;
    width: 90%;
}

.wx-login-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.wx-login-header h3 {
    margin: 0;
    font-size: 18px;
    color: #333;
}

.wx-login-close {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #999;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wx-login-close:hover {
    color: #333;
}

.wx-login-qr {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 200px;
    margin-bottom: 15px;
}

.wx-login-tips {
    text-align: center;
    color: #666;
    font-size: 14px;
}

.wx-login-modal.show {
    display: flex;
    justify-content: center;
    align-items: center;
}

.wx-login-content {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    width: 90%;
    max-width: 420px;
    animation: slideUp 0.3s ease;
}

.wx-login-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 25px 15px;
    border-bottom: 1px solid #f0f0f0;
}

.wx-login-title {
    font-size: 22px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
}

.wx-login-close {
    background: none;
    border: none;
    font-size: 28px;
    color: #999;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.wx-login-close:hover {
    background-color: #f5f5f5;
    color: #666;
}

.wx-login-body {
    padding: 20px 25px 25px;
}

.wx-login-methods {
    text-align: center;
}

.wx-qr-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
}

.wx-qr-placeholder {
    width: 200px;
    height: 200px;
    border: 2px solid #e9ecef;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #ffffff;
}

.wx-qr-image {
    width: 200px;
    height: 200px;
    border: 2px solid #07c160;
    border-radius: 15px;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wx-qr-image canvas {
    border-radius: 12px;
}

.wx-login-tip {
    font-size: 14px;
    color: #666;
    margin: 10px 0 0 0;
}

/* 备用方案样式 */
.wx-fallback {
    text-align: center;
}

.fallback-content {
    padding: 20px;
}

.fallback-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.fallback-content h4 {
    font-size: 18px;
    color: #2c3e50;
    margin-bottom: 10px;
}

.fallback-content p {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.4;
}

.fallback-options {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.mini-program-icon {
    margin-right: 8px;
}

/* 用户信息弹窗样式 */
.user-info-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0. 0.6);
    z-index: 1000;
    animation: fadeIn 0.3s ease;
}

.user-info-modal.show {
    display: flex;
    justify-content: center;
    align-items: center;
}

.user-info-content {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    width: 90%;
    max-width: 500px;
    max-height: 80vh;
    overflow-y: auto;
    animation: slideUp 0.3s ease;
}

.user-info-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 25px 15px;
    border-bottom: 1px solid #f0f0f0;
}

.user-info-title {
    font-size: 22px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
}

.user-info-close {
    background: none;
    border: none;
    font-size: 28px;
    color: #999;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.user-info-close:hover {
    background-color: #f5f5f5;
    color: #666;
}

.user-info-body {
    padding: 20px 25px 25px;
}

.user-avatar-container {
    display: flex;
    justify-content: center;
    margin-bottom: 25px;
    position: relative;
}

.user-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid #07c160;
    object-fit: cover;
    background: #f5f5f5;
}

.user-avatar-loading {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid #07c160;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
}

.user-details {
    margin-bottom: 25px;
}

.user-detail-item {
    display: flex;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #f5f5f5;
}

.detail-label {
    font-size: 14px;
    color: #666;
    min-width: 100px;
    font-weight: 500;
}

.detail-value {
    font-size: 14px;
    color: #2c3e50;
    flex: 1;
}

.detail-value.user-uuid {
    font-family: monospace;
    font-size: 12px;
    color: #666;
    word-break: break-all;
}

.user-info-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .wx-login-content {
        width: 95%;
        margin: 20px;
    }
    
    .user-info-content {
        width: 95%;
        margin: 20px;
    }
    
    .fallback-options {
        flex-direction: column;
    }
    
    .user-info-actions {
        flex-direction: column;
    }
}

.edit-item-inline {
    flex: 1;
    min-width: 0;
}

/* 微信登录弹窗样式 */
.wx-login-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1000;
    animation: fadeIn 0.3s ease;
}

.wx-login-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    max-width: 400px;
    width: 90%;
}

.wx-login-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.wx-login-header h3 {
    margin: 0;
    font-size: 18px;
    color: #333;
}

.wx-login-close {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #999;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wx-login-close:hover {
    color: #333;
}

.wx-login-qr {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 200px;
    margin-bottom: 15px;
}

.wx-login-tips {
    text-align: center;
    color: #666;
    font-size: 14px;
}

.wx-login-modal.show {
    display: flex;
    justify-content: center;
    align-items: center;
}

.wx-login-content {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    width: 90%;
    max-width: 420px;
    animation: slideUp 0.3s ease;
}

.wx-login-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 25px 15px;
    border-bottom: 1px solid #f0f0f0;
}

.wx-login-title {
    font-size: 22px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
}

.wx-login-close {
    background: none;
    border: none;
    font-size: 28px;
    color: #999;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.wx-login-close:hover {
    background-color: #f5f5f5;
    color: #666;
}

.wx-login-body {
    padding: 20px 25px 25px;
}

.wx-login-methods {
    text-align: center;
}

.wx-qr-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
}

.wx-qr-placeholder {
    width: 200px;
    height: 200px;
    border: 2px solid #e9ecef;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #ffffff;
}

.wx-qr-image {
    width: 200px;
    height: 200px;
    border: 2px solid #07c160;
    border-radius: 15px;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wx-qr-image canvas {
    border-radius: 12px;
}

.wx-login-tip {
    font-size: 14px;
    color: #666;
    margin: 10px 0 0 0;
}

/* 备用方案样式 */
.wx-fallback {
    text-align: center;
}

.fallback-content {
    padding: 20px;
}

.fallback-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.fallback-content h4 {
    font-size: 18px;
    color: #2c3e50;
    margin-bottom: 10px;
}

.fallback-content p {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.4;
}

.fallback-options {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.mini-program-icon {
    margin-right: 8px;
}

/* 用户信息弹窗样式 */
.user-info-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0. 0.6);
    z-index: 1000;
    animation: fadeIn 0.3s ease;
}

.user-info-modal.show {
    display: flex;
    justify-content: center;
    align-items: center;
}

.user-info-content {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    width: 90%;
    max-width: 500px;
    max-height: 80vh;
    overflow-y: auto;
    animation: slideUp 0.3s ease;
}

.user-info-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 25px 15px;
    border-bottom: 1px solid #f0f0f0;
}

.user-info-title {
    font-size: 22px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
}

.user-info-close {
    background: none;
    border: none;
    font-size: 28px;
    color: #999;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.user-info-close:hover {
    background-color: #f5f5f5;
    color: #666;
}

.user-info-body {
    padding: 20px 25px 25px;
}

.user-avatar-container {
    display: flex;
    justify-content: center;
    margin-bottom: 25px;
    position: relative;
}

.user-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid #07c160;
    object-fit: cover;
    background: #f5f5f5;
}

.user-avatar-loading {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid #07c160;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
}

.user-details {
    margin-bottom: 25px;
}

.user-detail-item {
    display: flex;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #f5f5f5;
}

.detail-label {
    font-size: 14px;
    color: #666;
    min-width: 100px;
    font-weight: 500;
}

.detail-value {
    font-size: 14px;
    color: #2c3e50;
    flex: 1;
}

.detail-value.user-uuid {
    font-family: monospace;
    font-size: 12px;
    color: #666;
    word-break: break-all;
}

.user-info-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .wx-login-content {
        width: 95%;
        margin: 20px;
    }
    
    .user-info-content {
        width: 95%;
        margin: 20px;
    }
    
    .fallback-options {
        flex-direction: column;
    }
    
    .user-info-actions {
        flex-direction: column;
    }
}

.edit-label {
    display: block;
    font-size: 14px;
    color: #666;
    margin-bottom: 8px;
    font-weight: 500;
}

/* 微信登录弹窗样式 */
.wx-login-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1000;
    animation: fadeIn 0.3s ease;
}

.wx-login-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    max-width: 400px;
    width: 90%;
}

.wx-login-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.wx-login-header h3 {
    margin: 0;
    font-size: 18px;
    color: #333;
}

.wx-login-close {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #999;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wx-login-close:hover {
    color: #333;
}

.wx-login-qr {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 200px;
    margin-bottom: 15px;
}

.wx-login-tips {
    text-align: center;
    color: #666;
    font-size: 14px;
}

.wx-login-modal.show {
    display: flex;
    justify-content: center;
    align-items: center;
}

.wx-login-content {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    width: 90%;
    max-width: 420px;
    animation: slideUp 0.3s ease;
}

.wx-login-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 25px 15px;
    border-bottom: 1px solid #f0f0f0;
}

.wx-login-title {
    font-size: 22px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
}

.wx-login-close {
    background: none;
    border: none;
    font-size: 28px;
    color: #999;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.wx-login-close:hover {
    background-color: #f5f5f5;
    color: #666;
}

.wx-login-body {
    padding: 20px 25px 25px;
}

.wx-login-methods {
    text-align: center;
}

.wx-qr-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
}

.wx-qr-placeholder {
    width: 200px;
    height: 200px;
    border: 2px solid #e9ecef;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #ffffff;
}

.wx-qr-image {
    width: 200px;
    height: 200px;
    border: 2px solid #07c160;
    border-radius: 15px;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wx-qr-image canvas {
    border-radius: 12px;
}

.wx-login-tip {
    font-size: 14px;
    color: #666;
    margin: 10px 0 0 0;
}

/* 备用方案样式 */
.wx-fallback {
    text-align: center;
}

.fallback-content {
    padding: 20px;
}

.fallback-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.fallback-content h4 {
    font-size: 18px;
    color: #2c3e50;
    margin-bottom: 10px;
}

.fallback-content p {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.4;
}

.fallback-options {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.mini-program-icon {
    margin-right: 8px;
}

/* 用户信息弹窗样式 */
.user-info-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0. 0.6);
    z-index: 1000;
    animation: fadeIn 0.3s ease;
}

.user-info-modal.show {
    display: flex;
    justify-content: center;
    align-items: center;
}

.user-info-content {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    width: 90%;
    max-width: 500px;
    max-height: 80vh;
    overflow-y: auto;
    animation: slideUp 0.3s ease;
}

.user-info-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 25px 15px;
    border-bottom: 1px solid #f0f0f0;
}

.user-info-title {
    font-size: 22px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
}

.user-info-close {
    background: none;
    border: none;
    font-size: 28px;
    color: #999;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.user-info-close:hover {
    background-color: #f5f5f5;
    color: #666;
}

.user-info-body {
    padding: 20px 25px 25px;
}

.user-avatar-container {
    display: flex;
    justify-content: center;
    margin-bottom: 25px;
    position: relative;
}

.user-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid #07c160;
    object-fit: cover;
    background: #f5f5f5;
}

.user-avatar-loading {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid #07c160;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
}

.user-details {
    margin-bottom: 25px;
}

.user-detail-item {
    display: flex;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #f5f5f5;
}

.detail-label {
    font-size: 14px;
    color: #666;
    min-width: 100px;
    font-weight: 500;
}

.detail-value {
    font-size: 14px;
    color: #2c3e50;
    flex: 1;
}

.detail-value.user-uuid {
    font-family: monospace;
    font-size: 12px;
    color: #666;
    word-break: break-all;
}

.user-info-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .wx-login-content {
        width: 95%;
        margin: 20px;
    }
    
    .user-info-content {
        width: 95%;
        margin: 20px;
    }
    
    .fallback-options {
        flex-direction: column;
    }
    
    .user-info-actions {
        flex-direction: column;
    }
}

/* 边框和图案选择器 */
.frame-selector,
.icon-selector {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    max-height: 280px;
    overflow-y: auto;
}

/* 微信登录弹窗样式 */
.wx-login-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1000;
    animation: fadeIn 0.3s ease;
}

.wx-login-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    max-width: 400px;
    width: 90%;
}

.wx-login-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.wx-login-header h3 {
    margin: 0;
    font-size: 18px;
    color: #333;
}

.wx-login-close {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #999;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wx-login-close:hover {
    color: #333;
}

.wx-login-qr {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 200px;
    margin-bottom: 15px;
}

.wx-login-tips {
    text-align: center;
    color: #666;
    font-size: 14px;
}

.wx-login-modal.show {
    display: flex;
    justify-content: center;
    align-items: center;
}

.wx-login-content {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    width: 90%;
    max-width: 420px;
    animation: slideUp 0.3s ease;
}

.wx-login-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 25px 15px;
    border-bottom: 1px solid #f0f0f0;
}

.wx-login-title {
    font-size: 22px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
}

.wx-login-close {
    background: none;
    border: none;
    font-size: 28px;
    color: #999;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.wx-login-close:hover {
    background-color: #f5f5f5;
    color: #666;
}

.wx-login-body {
    padding: 20px 25px 25px;
}

.wx-login-methods {
    text-align: center;
}

.wx-qr-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
}

.wx-qr-placeholder {
    width: 200px;
    height: 200px;
    border: 2px solid #e9ecef;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #ffffff;
}

.wx-qr-image {
    width: 200px;
    height: 200px;
    border: 2px solid #07c160;
    border-radius: 15px;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wx-qr-image canvas {
    border-radius: 12px;
}

.wx-login-tip {
    font-size: 14px;
    color: #666;
    margin: 10px 0 0 0;
}

/* 备用方案样式 */
.wx-fallback {
    text-align: center;
}

.fallback-content {
    padding: 20px;
}

.fallback-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.fallback-content h4 {
    font-size: 18px;
    color: #2c3e50;
    margin-bottom: 10px;
}

.fallback-content p {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.4;
}

.fallback-options {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.mini-program-icon {
    margin-right: 8px;
}

/* 用户信息弹窗样式 */
.user-info-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0. 0.6);
    z-index: 1000;
    animation: fadeIn 0.3s ease;
}

.user-info-modal.show {
    display: flex;
    justify-content: center;
    align-items: center;
}

.user-info-content {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    width: 90%;
    max-width: 500px;
    max-height: 80vh;
    overflow-y: auto;
    animation: slideUp 0.3s ease;
}

.user-info-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 25px 15px;
    border-bottom: 1px solid #f0f0f0;
}

.user-info-title {
    font-size: 22px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
}

.user-info-close {
    background: none;
    border: none;
    font-size: 28px;
    color: #999;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.user-info-close:hover {
    background-color: #f5f5f5;
    color: #666;
}

.user-info-body {
    padding: 20px 25px 25px;
}

.user-avatar-container {
    display: flex;
    justify-content: center;
    margin-bottom: 25px;
    position: relative;
}

.user-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid #07c160;
    object-fit: cover;
    background: #f5f5f5;
}

.user-avatar-loading {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid #07c160;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
}

.user-details {
    margin-bottom: 25px;
}

.user-detail-item {
    display: flex;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #f5f5f5;
}

.detail-label {
    font-size: 14px;
    color: #666;
    min-width: 100px;
    font-weight: 500;
}

.detail-value {
    font-size: 14px;
    color: #2c3e50;
    flex: 1;
}

.detail-value.user-uuid {
    font-family: monospace;
    font-size: 12px;
    color: #666;
    word-break: break-all;
}

.user-info-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .wx-login-content {
        width: 95%;
        margin: 20px;
    }
    
    .user-info-content {
        width: 95%;
        margin: 20px;
    }
    
    .fallback-options {
        flex-direction: column;
    }
    
    .user-info-actions {
        flex-direction: column;
    }
}

.frame-item,
.icon-item {
    aspect-ratio: 1;
    border: 2px solid #ddd;
    border-radius: 6px;
    padding: 6px;
    cursor: pointer;
    transition: all 0.3s;
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* 微信登录弹窗样式 */
.wx-login-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1000;
    animation: fadeIn 0.3s ease;
}

.wx-login-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    max-width: 400px;
    width: 90%;
}

.wx-login-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.wx-login-header h3 {
    margin: 0;
    font-size: 18px;
    color: #333;
}

.wx-login-close {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #999;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wx-login-close:hover {
    color: #333;
}

.wx-login-qr {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 200px;
    margin-bottom: 15px;
}

.wx-login-tips {
    text-align: center;
    color: #666;
    font-size: 14px;
}

.wx-login-modal.show {
    display: flex;
    justify-content: center;
    align-items: center;
}

.wx-login-content {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    width: 90%;
    max-width: 420px;
    animation: slideUp 0.3s ease;
}

.wx-login-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 25px 15px;
    border-bottom: 1px solid #f0f0f0;
}

.wx-login-title {
    font-size: 22px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
}

.wx-login-close {
    background: none;
    border: none;
    font-size: 28px;
    color: #999;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.wx-login-close:hover {
    background-color: #f5f5f5;
    color: #666;
}

.wx-login-body {
    padding: 20px 25px 25px;
}

.wx-login-methods {
    text-align: center;
}

.wx-qr-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
}

.wx-qr-placeholder {
    width: 200px;
    height: 200px;
    border: 2px solid #e9ecef;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #ffffff;
}

.wx-qr-image {
    width: 200px;
    height: 200px;
    border: 2px solid #07c160;
    border-radius: 15px;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wx-qr-image canvas {
    border-radius: 12px;
}

.wx-login-tip {
    font-size: 14px;
    color: #666;
    margin: 10px 0 0 0;
}

/* 备用方案样式 */
.wx-fallback {
    text-align: center;
}

.fallback-content {
    padding: 20px;
}

.fallback-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.fallback-content h4 {
    font-size: 18px;
    color: #2c3e50;
    margin-bottom: 10px;
}

.fallback-content p {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.4;
}

.fallback-options {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.mini-program-icon {
    margin-right: 8px;
}

/* 用户信息弹窗样式 */
.user-info-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0. 0.6);
    z-index: 1000;
    animation: fadeIn 0.3s ease;
}

.user-info-modal.show {
    display: flex;
    justify-content: center;
    align-items: center;
}

.user-info-content {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    width: 90%;
    max-width: 500px;
    max-height: 80vh;
    overflow-y: auto;
    animation: slideUp 0.3s ease;
}

.user-info-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 25px 15px;
    border-bottom: 1px solid #f0f0f0;
}

.user-info-title {
    font-size: 22px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
}

.user-info-close {
    background: none;
    border: none;
    font-size: 28px;
    color: #999;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.user-info-close:hover {
    background-color: #f5f5f5;
    color: #666;
}

.user-info-body {
    padding: 20px 25px 25px;
}

.user-avatar-container {
    display: flex;
    justify-content: center;
    margin-bottom: 25px;
    position: relative;
}

.user-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid #07c160;
    object-fit: cover;
    background: #f5f5f5;
}

.user-avatar-loading {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid #07c160;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
}

.user-details {
    margin-bottom: 25px;
}

.user-detail-item {
    display: flex;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #f5f5f5;
}

.detail-label {
    font-size: 14px;
    color: #666;
    min-width: 100px;
    font-weight: 500;
}

.detail-value {
    font-size: 14px;
    color: #2c3e50;
    flex: 1;
}

.detail-value.user-uuid {
    font-family: monospace;
    font-size: 12px;
    color: #666;
    word-break: break-all;
}

.user-info-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .wx-login-content {
        width: 95%;
        margin: 20px;
    }
    
    .user-info-content {
        width: 95%;
        margin: 20px;
    }
    
    .fallback-options {
        flex-direction: column;
    }
    
    .user-info-actions {
        flex-direction: column;
    }
}

.frame-item:hover,
.icon-item:hover {
    border-color: #00BCD4;
    transform: scale(1.05);
}

/* 微信登录弹窗样式 */
.wx-login-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1000;
    animation: fadeIn 0.3s ease;
}

.wx-login-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    max-width: 400px;
    width: 90%;
}

.wx-login-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.wx-login-header h3 {
    margin: 0;
    font-size: 18px;
    color: #333;
}

.wx-login-close {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #999;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wx-login-close:hover {
    color: #333;
}

.wx-login-qr {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 200px;
    margin-bottom: 15px;
}

.wx-login-tips {
    text-align: center;
    color: #666;
    font-size: 14px;
}

.wx-login-modal.show {
    display: flex;
    justify-content: center;
    align-items: center;
}

.wx-login-content {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    width: 90%;
    max-width: 420px;
    animation: slideUp 0.3s ease;
}

.wx-login-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 25px 15px;
    border-bottom: 1px solid #f0f0f0;
}

.wx-login-title {
    font-size: 22px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
}

.wx-login-close {
    background: none;
    border: none;
    font-size: 28px;
    color: #999;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.wx-login-close:hover {
    background-color: #f5f5f5;
    color: #666;
}

.wx-login-body {
    padding: 20px 25px 25px;
}

.wx-login-methods {
    text-align: center;
}

.wx-qr-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
}

.wx-qr-placeholder {
    width: 200px;
    height: 200px;
    border: 2px solid #e9ecef;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #ffffff;
}

.wx-qr-image {
    width: 200px;
    height: 200px;
    border: 2px solid #07c160;
    border-radius: 15px;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wx-qr-image canvas {
    border-radius: 12px;
}

.wx-login-tip {
    font-size: 14px;
    color: #666;
    margin: 10px 0 0 0;
}

/* 备用方案样式 */
.wx-fallback {
    text-align: center;
}

.fallback-content {
    padding: 20px;
}

.fallback-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.fallback-content h4 {
    font-size: 18px;
    color: #2c3e50;
    margin-bottom: 10px;
}

.fallback-content p {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.4;
}

.fallback-options {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.mini-program-icon {
    margin-right: 8px;
}

/* 用户信息弹窗样式 */
.user-info-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0. 0.6);
    z-index: 1000;
    animation: fadeIn 0.3s ease;
}

.user-info-modal.show {
    display: flex;
    justify-content: center;
    align-items: center;
}

.user-info-content {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    width: 90%;
    max-width: 500px;
    max-height: 80vh;
    overflow-y: auto;
    animation: slideUp 0.3s ease;
}

.user-info-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 25px 15px;
    border-bottom: 1px solid #f0f0f0;
}

.user-info-title {
    font-size: 22px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
}

.user-info-close {
    background: none;
    border: none;
    font-size: 28px;
    color: #999;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.user-info-close:hover {
    background-color: #f5f5f5;
    color: #666;
}

.user-info-body {
    padding: 20px 25px 25px;
}

.user-avatar-container {
    display: flex;
    justify-content: center;
    margin-bottom: 25px;
    position: relative;
}

.user-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid #07c160;
    object-fit: cover;
    background: #f5f5f5;
}

.user-avatar-loading {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid #07c160;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
}

.user-details {
    margin-bottom: 25px;
}

.user-detail-item {
    display: flex;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #f5f5f5;
}

.detail-label {
    font-size: 14px;
    color: #666;
    min-width: 100px;
    font-weight: 500;
}

.detail-value {
    font-size: 14px;
    color: #2c3e50;
    flex: 1;
}

.detail-value.user-uuid {
    font-family: monospace;
    font-size: 12px;
    color: #666;
    word-break: break-all;
}

.user-info-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .wx-login-content {
        width: 95%;
        margin: 20px;
    }
    
    .user-info-content {
        width: 95%;
        margin: 20px;
    }
    
    .fallback-options {
        flex-direction: column;
    }
    
    .user-info-actions {
        flex-direction: column;
    }
}

.frame-item.active,
.icon-item.active {
    border-color: #00BCD4;
    background-color: #fff5f5;
}

/* 微信登录弹窗样式 */
.wx-login-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1000;
    animation: fadeIn 0.3s ease;
}

.wx-login-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    max-width: 400px;
    width: 90%;
}

.wx-login-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.wx-login-header h3 {
    margin: 0;
    font-size: 18px;
    color: #333;
}

.wx-login-close {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #999;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wx-login-close:hover {
    color: #333;
}

.wx-login-qr {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 200px;
    margin-bottom: 15px;
}

.wx-login-tips {
    text-align: center;
    color: #666;
    font-size: 14px;
}

.wx-login-modal.show {
    display: flex;
    justify-content: center;
    align-items: center;
}

.wx-login-content {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    width: 90%;
    max-width: 420px;
    animation: slideUp 0.3s ease;
}

.wx-login-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 25px 15px;
    border-bottom: 1px solid #f0f0f0;
}

.wx-login-title {
    font-size: 22px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
}

.wx-login-close {
    background: none;
    border: none;
    font-size: 28px;
    color: #999;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.wx-login-close:hover {
    background-color: #f5f5f5;
    color: #666;
}

.wx-login-body {
    padding: 20px 25px 25px;
}

.wx-login-methods {
    text-align: center;
}

.wx-qr-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
}

.wx-qr-placeholder {
    width: 200px;
    height: 200px;
    border: 2px solid #e9ecef;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #ffffff;
}

.wx-qr-image {
    width: 200px;
    height: 200px;
    border: 2px solid #07c160;
    border-radius: 15px;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wx-qr-image canvas {
    border-radius: 12px;
}

.wx-login-tip {
    font-size: 14px;
    color: #666;
    margin: 10px 0 0 0;
}

/* 备用方案样式 */
.wx-fallback {
    text-align: center;
}

.fallback-content {
    padding: 20px;
}

.fallback-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.fallback-content h4 {
    font-size: 18px;
    color: #2c3e50;
    margin-bottom: 10px;
}

.fallback-content p {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.4;
}

.fallback-options {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.mini-program-icon {
    margin-right: 8px;
}

/* 用户信息弹窗样式 */
.user-info-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0. 0.6);
    z-index: 1000;
    animation: fadeIn 0.3s ease;
}

.user-info-modal.show {
    display: flex;
    justify-content: center;
    align-items: center;
}

.user-info-content {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    width: 90%;
    max-width: 500px;
    max-height: 80vh;
    overflow-y: auto;
    animation: slideUp 0.3s ease;
}

.user-info-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 25px 15px;
    border-bottom: 1px solid #f0f0f0;
}

.user-info-title {
    font-size: 22px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
}

.user-info-close {
    background: none;
    border: none;
    font-size: 28px;
    color: #999;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.user-info-close:hover {
    background-color: #f5f5f5;
    color: #666;
}

.user-info-body {
    padding: 20px 25px 25px;
}

.user-avatar-container {
    display: flex;
    justify-content: center;
    margin-bottom: 25px;
    position: relative;
}

.user-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid #07c160;
    object-fit: cover;
    background: #f5f5f5;
}

.user-avatar-loading {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid #07c160;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
}

.user-details {
    margin-bottom: 25px;
}

.user-detail-item {
    display: flex;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #f5f5f5;
}

.detail-label {
    font-size: 14px;
    color: #666;
    min-width: 100px;
    font-weight: 500;
}

.detail-value {
    font-size: 14px;
    color: #2c3e50;
    flex: 1;
}

.detail-value.user-uuid {
    font-family: monospace;
    font-size: 12px;
    color: #666;
    word-break: break-all;
}

.user-info-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .wx-login-content {
        width: 95%;
        margin: 20px;
    }
    
    .user-info-content {
        width: 95%;
        margin: 20px;
    }
    
    .fallback-options {
        flex-direction: column;
    }
    
    .user-info-actions {
        flex-direction: column;
    }
}

.frame-item img,
.icon-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* 微信登录弹窗样式 */
.wx-login-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1000;
    animation: fadeIn 0.3s ease;
}

.wx-login-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    max-width: 400px;
    width: 90%;
}

.wx-login-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.wx-login-header h3 {
    margin: 0;
    font-size: 18px;
    color: #333;
}

.wx-login-close {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #999;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wx-login-close:hover {
    color: #333;
}

.wx-login-qr {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 200px;
    margin-bottom: 15px;
}

.wx-login-tips {
    text-align: center;
    color: #666;
    font-size: 14px;
}

.wx-login-modal.show {
    display: flex;
    justify-content: center;
    align-items: center;
}

.wx-login-content {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    width: 90%;
    max-width: 420px;
    animation: slideUp 0.3s ease;
}

.wx-login-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 25px 15px;
    border-bottom: 1px solid #f0f0f0;
}

.wx-login-title {
    font-size: 22px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
}

.wx-login-close {
    background: none;
    border: none;
    font-size: 28px;
    color: #999;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.wx-login-close:hover {
    background-color: #f5f5f5;
    color: #666;
}

.wx-login-body {
    padding: 20px 25px 25px;
}

.wx-login-methods {
    text-align: center;
}

.wx-qr-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
}

.wx-qr-placeholder {
    width: 200px;
    height: 200px;
    border: 2px solid #e9ecef;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #ffffff;
}

.wx-qr-image {
    width: 200px;
    height: 200px;
    border: 2px solid #07c160;
    border-radius: 15px;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wx-qr-image canvas {
    border-radius: 12px;
}

.wx-login-tip {
    font-size: 14px;
    color: #666;
    margin: 10px 0 0 0;
}

/* 备用方案样式 */
.wx-fallback {
    text-align: center;
}

.fallback-content {
    padding: 20px;
}

.fallback-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.fallback-content h4 {
    font-size: 18px;
    color: #2c3e50;
    margin-bottom: 10px;
}

.fallback-content p {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.4;
}

.fallback-options {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.mini-program-icon {
    margin-right: 8px;
}

/* 用户信息弹窗样式 */
.user-info-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0. 0.6);
    z-index: 1000;
    animation: fadeIn 0.3s ease;
}

.user-info-modal.show {
    display: flex;
    justify-content: center;
    align-items: center;
}

.user-info-content {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    width: 90%;
    max-width: 500px;
    max-height: 80vh;
    overflow-y: auto;
    animation: slideUp 0.3s ease;
}

.user-info-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 25px 15px;
    border-bottom: 1px solid #f0f0f0;
}

.user-info-title {
    font-size: 22px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
}

.user-info-close {
    background: none;
    border: none;
    font-size: 28px;
    color: #999;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.user-info-close:hover {
    background-color: #f5f5f5;
    color: #666;
}

.user-info-body {
    padding: 20px 25px 25px;
}

.user-avatar-container {
    display: flex;
    justify-content: center;
    margin-bottom: 25px;
    position: relative;
}

.user-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid #07c160;
    object-fit: cover;
    background: #f5f5f5;
}

.user-avatar-loading {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid #07c160;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
}

.user-details {
    margin-bottom: 25px;
}

.user-detail-item {
    display: flex;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #f5f5f5;
}

.detail-label {
    font-size: 14px;
    color: #666;
    min-width: 100px;
    font-weight: 500;
}

.detail-value {
    font-size: 14px;
    color: #2c3e50;
    flex: 1;
}

.detail-value.user-uuid {
    font-family: monospace;
    font-size: 12px;
    color: #666;
    word-break: break-all;
}

.user-info-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .wx-login-content {
        width: 95%;
        margin: 20px;
    }
    
    .user-info-content {
        width: 95%;
        margin: 20px;
    }
    
    .fallback-options {
        flex-direction: column;
    }
    
    .user-info-actions {
        flex-direction: column;
    }
}

/* 弹窗中放大缩略图，增加点击区域 */
.modal .frame-selector,
.modal .icon-selector {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 16px;
}

/* 微信登录弹窗样式 */
.wx-login-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1000;
    animation: fadeIn 0.3s ease;
}

.wx-login-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    max-width: 400px;
    width: 90%;
}

.wx-login-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.wx-login-header h3 {
    margin: 0;
    font-size: 18px;
    color: #333;
}

.wx-login-close {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #999;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wx-login-close:hover {
    color: #333;
}

.wx-login-qr {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 200px;
    margin-bottom: 15px;
}

.wx-login-tips {
    text-align: center;
    color: #666;
    font-size: 14px;
}

.wx-login-modal.show {
    display: flex;
    justify-content: center;
    align-items: center;
}

.wx-login-content {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    width: 90%;
    max-width: 420px;
    animation: slideUp 0.3s ease;
}

.wx-login-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 25px 15px;
    border-bottom: 1px solid #f0f0f0;
}

.wx-login-title {
    font-size: 22px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
}

.wx-login-close {
    background: none;
    border: none;
    font-size: 28px;
    color: #999;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.wx-login-close:hover {
    background-color: #f5f5f5;
    color: #666;
}

.wx-login-body {
    padding: 20px 25px 25px;
}

.wx-login-methods {
    text-align: center;
}

.wx-qr-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
}

.wx-qr-placeholder {
    width: 200px;
    height: 200px;
    border: 2px solid #e9ecef;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #ffffff;
}

.wx-qr-image {
    width: 200px;
    height: 200px;
    border: 2px solid #07c160;
    border-radius: 15px;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wx-qr-image canvas {
    border-radius: 12px;
}

.wx-login-tip {
    font-size: 14px;
    color: #666;
    margin: 10px 0 0 0;
}

/* 备用方案样式 */
.wx-fallback {
    text-align: center;
}

.fallback-content {
    padding: 20px;
}

.fallback-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.fallback-content h4 {
    font-size: 18px;
    color: #2c3e50;
    margin-bottom: 10px;
}

.fallback-content p {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.4;
}

.fallback-options {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.mini-program-icon {
    margin-right: 8px;
}

/* 用户信息弹窗样式 */
.user-info-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0. 0.6);
    z-index: 1000;
    animation: fadeIn 0.3s ease;
}

.user-info-modal.show {
    display: flex;
    justify-content: center;
    align-items: center;
}

.user-info-content {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    width: 90%;
    max-width: 500px;
    max-height: 80vh;
    overflow-y: auto;
    animation: slideUp 0.3s ease;
}

.user-info-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 25px 15px;
    border-bottom: 1px solid #f0f0f0;
}

.user-info-title {
    font-size: 22px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
}

.user-info-close {
    background: none;
    border: none;
    font-size: 28px;
    color: #999;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.user-info-close:hover {
    background-color: #f5f5f5;
    color: #666;
}

.user-info-body {
    padding: 20px 25px 25px;
}

.user-avatar-container {
    display: flex;
    justify-content: center;
    margin-bottom: 25px;
    position: relative;
}

.user-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid #07c160;
    object-fit: cover;
    background: #f5f5f5;
}

.user-avatar-loading {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid #07c160;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
}

.user-details {
    margin-bottom: 25px;
}

.user-detail-item {
    display: flex;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #f5f5f5;
}

.detail-label {
    font-size: 14px;
    color: #666;
    min-width: 100px;
    font-weight: 500;
}

.detail-value {
    font-size: 14px;
    color: #2c3e50;
    flex: 1;
}

.detail-value.user-uuid {
    font-family: monospace;
    font-size: 12px;
    color: #666;
    word-break: break-all;
}

.user-info-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .wx-login-content {
        width: 95%;
        margin: 20px;
    }
    
    .user-info-content {
        width: 95%;
        margin: 20px;
    }
    
    .fallback-options {
        flex-direction: column;
    }
    
    .user-info-actions {
        flex-direction: column;
    }
}
.modal .frame-item,
.modal .icon-item {
    aspect-ratio: auto;
    height: 130px;
    padding: 10px;
}

/* 微信登录弹窗样式 */
.wx-login-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1000;
    animation: fadeIn 0.3s ease;
}

.wx-login-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    max-width: 400px;
    width: 90%;
}

.wx-login-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.wx-login-header h3 {
    margin: 0;
    font-size: 18px;
    color: #333;
}

.wx-login-close {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #999;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wx-login-close:hover {
    color: #333;
}

.wx-login-qr {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 200px;
    margin-bottom: 15px;
}

.wx-login-tips {
    text-align: center;
    color: #666;
    font-size: 14px;
}

.wx-login-modal.show {
    display: flex;
    justify-content: center;
    align-items: center;
}

.wx-login-content {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    width: 90%;
    max-width: 420px;
    animation: slideUp 0.3s ease;
}

.wx-login-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 25px 15px;
    border-bottom: 1px solid #f0f0f0;
}

.wx-login-title {
    font-size: 22px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
}

.wx-login-close {
    background: none;
    border: none;
    font-size: 28px;
    color: #999;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.wx-login-close:hover {
    background-color: #f5f5f5;
    color: #666;
}

.wx-login-body {
    padding: 20px 25px 25px;
}

.wx-login-methods {
    text-align: center;
}

.wx-qr-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
}

.wx-qr-placeholder {
    width: 200px;
    height: 200px;
    border: 2px solid #e9ecef;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #ffffff;
}

.wx-qr-image {
    width: 200px;
    height: 200px;
    border: 2px solid #07c160;
    border-radius: 15px;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wx-qr-image canvas {
    border-radius: 12px;
}

.wx-login-tip {
    font-size: 14px;
    color: #666;
    margin: 10px 0 0 0;
}

/* 备用方案样式 */
.wx-fallback {
    text-align: center;
}

.fallback-content {
    padding: 20px;
}

.fallback-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.fallback-content h4 {
    font-size: 18px;
    color: #2c3e50;
    margin-bottom: 10px;
}

.fallback-content p {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.4;
}

.fallback-options {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.mini-program-icon {
    margin-right: 8px;
}

/* 用户信息弹窗样式 */
.user-info-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0. 0.6);
    z-index: 1000;
    animation: fadeIn 0.3s ease;
}

.user-info-modal.show {
    display: flex;
    justify-content: center;
    align-items: center;
}

.user-info-content {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    width: 90%;
    max-width: 500px;
    max-height: 80vh;
    overflow-y: auto;
    animation: slideUp 0.3s ease;
}

.user-info-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 25px 15px;
    border-bottom: 1px solid #f0f0f0;
}

.user-info-title {
    font-size: 22px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
}

.user-info-close {
    background: none;
    border: none;
    font-size: 28px;
    color: #999;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.user-info-close:hover {
    background-color: #f5f5f5;
    color: #666;
}

.user-info-body {
    padding: 20px 25px 25px;
}

.user-avatar-container {
    display: flex;
    justify-content: center;
    margin-bottom: 25px;
    position: relative;
}

.user-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid #07c160;
    object-fit: cover;
    background: #f5f5f5;
}

.user-avatar-loading {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid #07c160;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
}

.user-details {
    margin-bottom: 25px;
}

.user-detail-item {
    display: flex;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #f5f5f5;
}

.detail-label {
    font-size: 14px;
    color: #666;
    min-width: 100px;
    font-weight: 500;
}

.detail-value {
    font-size: 14px;
    color: #2c3e50;
    flex: 1;
}

.detail-value.user-uuid {
    font-family: monospace;
    font-size: 12px;
    color: #666;
    word-break: break-all;
}

.user-info-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .wx-login-content {
        width: 95%;
        margin: 20px;
    }
    
    .user-info-content {
        width: 95%;
        margin: 20px;
    }
    
    .fallback-options {
        flex-direction: column;
    }
    
    .user-info-actions {
        flex-direction: column;
    }
}
.modal .frame-item img,
.modal .icon-item img {
    width: 100%;
    height: 100%;
}

/* 微信登录弹窗样式 */
.wx-login-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1000;
    animation: fadeIn 0.3s ease;
}

.wx-login-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    max-width: 400px;
    width: 90%;
}

.wx-login-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.wx-login-header h3 {
    margin: 0;
    font-size: 18px;
    color: #333;
}

.wx-login-close {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #999;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wx-login-close:hover {
    color: #333;
}

.wx-login-qr {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 200px;
    margin-bottom: 15px;
}

.wx-login-tips {
    text-align: center;
    color: #666;
    font-size: 14px;
}

.wx-login-modal.show {
    display: flex;
    justify-content: center;
    align-items: center;
}

.wx-login-content {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    width: 90%;
    max-width: 420px;
    animation: slideUp 0.3s ease;
}

.wx-login-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 25px 15px;
    border-bottom: 1px solid #f0f0f0;
}

.wx-login-title {
    font-size: 22px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
}

.wx-login-close {
    background: none;
    border: none;
    font-size: 28px;
    color: #999;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.wx-login-close:hover {
    background-color: #f5f5f5;
    color: #666;
}

.wx-login-body {
    padding: 20px 25px 25px;
}

.wx-login-methods {
    text-align: center;
}

.wx-qr-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
}

.wx-qr-placeholder {
    width: 200px;
    height: 200px;
    border: 2px solid #e9ecef;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #ffffff;
}

.wx-qr-image {
    width: 200px;
    height: 200px;
    border: 2px solid #07c160;
    border-radius: 15px;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wx-qr-image canvas {
    border-radius: 12px;
}

.wx-login-tip {
    font-size: 14px;
    color: #666;
    margin: 10px 0 0 0;
}

/* 备用方案样式 */
.wx-fallback {
    text-align: center;
}

.fallback-content {
    padding: 20px;
}

.fallback-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.fallback-content h4 {
    font-size: 18px;
    color: #2c3e50;
    margin-bottom: 10px;
}

.fallback-content p {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.4;
}

.fallback-options {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.mini-program-icon {
    margin-right: 8px;
}

/* 用户信息弹窗样式 */
.user-info-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0. 0.6);
    z-index: 1000;
    animation: fadeIn 0.3s ease;
}

.user-info-modal.show {
    display: flex;
    justify-content: center;
    align-items: center;
}

.user-info-content {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    width: 90%;
    max-width: 500px;
    max-height: 80vh;
    overflow-y: auto;
    animation: slideUp 0.3s ease;
}

.user-info-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 25px 15px;
    border-bottom: 1px solid #f0f0f0;
}

.user-info-title {
    font-size: 22px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
}

.user-info-close {
    background: none;
    border: none;
    font-size: 28px;
    color: #999;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.user-info-close:hover {
    background-color: #f5f5f5;
    color: #666;
}

.user-info-body {
    padding: 20px 25px 25px;
}

.user-avatar-container {
    display: flex;
    justify-content: center;
    margin-bottom: 25px;
    position: relative;
}

.user-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid #07c160;
    object-fit: cover;
    background: #f5f5f5;
}

.user-avatar-loading {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid #07c160;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
}

.user-details {
    margin-bottom: 25px;
}

.user-detail-item {
    display: flex;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #f5f5f5;
}

.detail-label {
    font-size: 14px;
    color: #666;
    min-width: 100px;
    font-weight: 500;
}

.detail-value {
    font-size: 14px;
    color: #2c3e50;
    flex: 1;
}

.detail-value.user-uuid {
    font-family: monospace;
    font-size: 12px;
    color: #666;
    word-break: break-all;
}

.user-info-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .wx-login-content {
        width: 95%;
        margin: 20px;
    }
    
    .user-info-content {
        width: 95%;
        margin: 20px;
    }
    
    .fallback-options {
        flex-direction: column;
    }
    
    .user-info-actions {
        flex-direction: column;
    }
}

/* 弹窗中字体预览更醒目 */
.modal .font-preview {
    font-size: 20px;
}

/* 微信登录弹窗样式 */
.wx-login-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1000;
    animation: fadeIn 0.3s ease;
}

.wx-login-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    max-width: 400px;
    width: 90%;
}

.wx-login-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.wx-login-header h3 {
    margin: 0;
    font-size: 18px;
    color: #333;
}

.wx-login-close {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #999;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wx-login-close:hover {
    color: #333;
}

.wx-login-qr {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 200px;
    margin-bottom: 15px;
}

.wx-login-tips {
    text-align: center;
    color: #666;
    font-size: 14px;
}

.wx-login-modal.show {
    display: flex;
    justify-content: center;
    align-items: center;
}

.wx-login-content {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    width: 90%;
    max-width: 420px;
    animation: slideUp 0.3s ease;
}

.wx-login-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 25px 15px;
    border-bottom: 1px solid #f0f0f0;
}

.wx-login-title {
    font-size: 22px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
}

.wx-login-close {
    background: none;
    border: none;
    font-size: 28px;
    color: #999;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.wx-login-close:hover {
    background-color: #f5f5f5;
    color: #666;
}

.wx-login-body {
    padding: 20px 25px 25px;
}

.wx-login-methods {
    text-align: center;
}

.wx-qr-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
}

.wx-qr-placeholder {
    width: 200px;
    height: 200px;
    border: 2px solid #e9ecef;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #ffffff;
}

.wx-qr-image {
    width: 200px;
    height: 200px;
    border: 2px solid #07c160;
    border-radius: 15px;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wx-qr-image canvas {
    border-radius: 12px;
}

.wx-login-tip {
    font-size: 14px;
    color: #666;
    margin: 10px 0 0 0;
}

/* 备用方案样式 */
.wx-fallback {
    text-align: center;
}

.fallback-content {
    padding: 20px;
}

.fallback-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.fallback-content h4 {
    font-size: 18px;
    color: #2c3e50;
    margin-bottom: 10px;
}

.fallback-content p {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.4;
}

.fallback-options {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.mini-program-icon {
    margin-right: 8px;
}

/* 用户信息弹窗样式 */
.user-info-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0. 0.6);
    z-index: 1000;
    animation: fadeIn 0.3s ease;
}

.user-info-modal.show {
    display: flex;
    justify-content: center;
    align-items: center;
}

.user-info-content {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    width: 90%;
    max-width: 500px;
    max-height: 80vh;
    overflow-y: auto;
    animation: slideUp 0.3s ease;
}

.user-info-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 25px 15px;
    border-bottom: 1px solid #f0f0f0;
}

.user-info-title {
    font-size: 22px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
}

.user-info-close {
    background: none;
    border: none;
    font-size: 28px;
    color: #999;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.user-info-close:hover {
    background-color: #f5f5f5;
    color: #666;
}

.user-info-body {
    padding: 20px 25px 25px;
}

.user-avatar-container {
    display: flex;
    justify-content: center;
    margin-bottom: 25px;
    position: relative;
}

.user-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid #07c160;
    object-fit: cover;
    background: #f5f5f5;
}

.user-avatar-loading {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid #07c160;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
}

.user-details {
    margin-bottom: 25px;
}

.user-detail-item {
    display: flex;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #f5f5f5;
}

.detail-label {
    font-size: 14px;
    color: #666;
    min-width: 100px;
    font-weight: 500;
}

.detail-value {
    font-size: 14px;
    color: #2c3e50;
    flex: 1;
}

.detail-value.user-uuid {
    font-family: monospace;
    font-size: 12px;
    color: #666;
    word-break: break-all;
}

.user-info-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .wx-login-content {
        width: 95%;
        margin: 20px;
    }
    
    .user-info-content {
        width: 95%;
        margin: 20px;
    }
    
    .fallback-options {
        flex-direction: column;
    }
    
    .user-info-actions {
        flex-direction: column;
    }
}

/* 字体选择器 */
.font-selector {
    display: flex;
    flex-direction: column;
    gap: 8px;
    max-height: 200px;
    overflow-y: auto;
}

/* 微信登录弹窗样式 */
.wx-login-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1000;
    animation: fadeIn 0.3s ease;
}

.wx-login-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    max-width: 400px;
    width: 90%;
}

.wx-login-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.wx-login-header h3 {
    margin: 0;
    font-size: 18px;
    color: #333;
}

.wx-login-close {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #999;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wx-login-close:hover {
    color: #333;
}

.wx-login-qr {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 200px;
    margin-bottom: 15px;
}

.wx-login-tips {
    text-align: center;
    color: #666;
    font-size: 14px;
}

.wx-login-modal.show {
    display: flex;
    justify-content: center;
    align-items: center;
}

.wx-login-content {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    width: 90%;
    max-width: 420px;
    animation: slideUp 0.3s ease;
}

.wx-login-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 25px 15px;
    border-bottom: 1px solid #f0f0f0;
}

.wx-login-title {
    font-size: 22px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
}

.wx-login-close {
    background: none;
    border: none;
    font-size: 28px;
    color: #999;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.wx-login-close:hover {
    background-color: #f5f5f5;
    color: #666;
}

.wx-login-body {
    padding: 20px 25px 25px;
}

.wx-login-methods {
    text-align: center;
}

.wx-qr-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
}

.wx-qr-placeholder {
    width: 200px;
    height: 200px;
    border: 2px solid #e9ecef;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #ffffff;
}

.wx-qr-image {
    width: 200px;
    height: 200px;
    border: 2px solid #07c160;
    border-radius: 15px;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wx-qr-image canvas {
    border-radius: 12px;
}

.wx-login-tip {
    font-size: 14px;
    color: #666;
    margin: 10px 0 0 0;
}

/* 备用方案样式 */
.wx-fallback {
    text-align: center;
}

.fallback-content {
    padding: 20px;
}

.fallback-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.fallback-content h4 {
    font-size: 18px;
    color: #2c3e50;
    margin-bottom: 10px;
}

.fallback-content p {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.4;
}

.fallback-options {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.mini-program-icon {
    margin-right: 8px;
}

/* 用户信息弹窗样式 */
.user-info-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0. 0.6);
    z-index: 1000;
    animation: fadeIn 0.3s ease;
}

.user-info-modal.show {
    display: flex;
    justify-content: center;
    align-items: center;
}

.user-info-content {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    width: 90%;
    max-width: 500px;
    max-height: 80vh;
    overflow-y: auto;
    animation: slideUp 0.3s ease;
}

.user-info-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 25px 15px;
    border-bottom: 1px solid #f0f0f0;
}

.user-info-title {
    font-size: 22px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
}

.user-info-close {
    background: none;
    border: none;
    font-size: 28px;
    color: #999;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.user-info-close:hover {
    background-color: #f5f5f5;
    color: #666;
}

.user-info-body {
    padding: 20px 25px 25px;
}

.user-avatar-container {
    display: flex;
    justify-content: center;
    margin-bottom: 25px;
    position: relative;
}

.user-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid #07c160;
    object-fit: cover;
    background: #f5f5f5;
}

.user-avatar-loading {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid #07c160;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
}

.user-details {
    margin-bottom: 25px;
}

.user-detail-item {
    display: flex;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #f5f5f5;
}

.detail-label {
    font-size: 14px;
    color: #666;
    min-width: 100px;
    font-weight: 500;
}

.detail-value {
    font-size: 14px;
    color: #2c3e50;
    flex: 1;
}

.detail-value.user-uuid {
    font-family: monospace;
    font-size: 12px;
    color: #666;
    word-break: break-all;
}

.user-info-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .wx-login-content {
        width: 95%;
        margin: 20px;
    }
    
    .user-info-content {
        width: 95%;
        margin: 20px;
    }
    
    .fallback-options {
        flex-direction: column;
    }
    
    .user-info-actions {
        flex-direction: column;
    }
}

.font-item {
    border: 2px solid #ddd;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s;
    background-color: #fff;
}

/* 微信登录弹窗样式 */
.wx-login-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1000;
    animation: fadeIn 0.3s ease;
}

.wx-login-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    max-width: 400px;
    width: 90%;
}

.wx-login-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.wx-login-header h3 {
    margin: 0;
    font-size: 18px;
    color: #333;
}

.wx-login-close {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #999;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wx-login-close:hover {
    color: #333;
}

.wx-login-qr {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 200px;
    margin-bottom: 15px;
}

.wx-login-tips {
    text-align: center;
    color: #666;
    font-size: 14px;
}

.wx-login-modal.show {
    display: flex;
    justify-content: center;
    align-items: center;
}

.wx-login-content {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    width: 90%;
    max-width: 420px;
    animation: slideUp 0.3s ease;
}

.wx-login-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 25px 15px;
    border-bottom: 1px solid #f0f0f0;
}

.wx-login-title {
    font-size: 22px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
}

.wx-login-close {
    background: none;
    border: none;
    font-size: 28px;
    color: #999;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.wx-login-close:hover {
    background-color: #f5f5f5;
    color: #666;
}

.wx-login-body {
    padding: 20px 25px 25px;
}

.wx-login-methods {
    text-align: center;
}

.wx-qr-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
}

.wx-qr-placeholder {
    width: 200px;
    height: 200px;
    border: 2px solid #e9ecef;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #ffffff;
}

.wx-qr-image {
    width: 200px;
    height: 200px;
    border: 2px solid #07c160;
    border-radius: 15px;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wx-qr-image canvas {
    border-radius: 12px;
}

.wx-login-tip {
    font-size: 14px;
    color: #666;
    margin: 10px 0 0 0;
}

/* 备用方案样式 */
.wx-fallback {
    text-align: center;
}

.fallback-content {
    padding: 20px;
}

.fallback-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.fallback-content h4 {
    font-size: 18px;
    color: #2c3e50;
    margin-bottom: 10px;
}

.fallback-content p {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.4;
}

.fallback-options {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.mini-program-icon {
    margin-right: 8px;
}

/* 用户信息弹窗样式 */
.user-info-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0. 0.6);
    z-index: 1000;
    animation: fadeIn 0.3s ease;
}

.user-info-modal.show {
    display: flex;
    justify-content: center;
    align-items: center;
}

.user-info-content {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    width: 90%;
    max-width: 500px;
    max-height: 80vh;
    overflow-y: auto;
    animation: slideUp 0.3s ease;
}

.user-info-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 25px 15px;
    border-bottom: 1px solid #f0f0f0;
}

.user-info-title {
    font-size: 22px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
}

.user-info-close {
    background: none;
    border: none;
    font-size: 28px;
    color: #999;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.user-info-close:hover {
    background-color: #f5f5f5;
    color: #666;
}

.user-info-body {
    padding: 20px 25px 25px;
}

.user-avatar-container {
    display: flex;
    justify-content: center;
    margin-bottom: 25px;
    position: relative;
}

.user-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid #07c160;
    object-fit: cover;
    background: #f5f5f5;
}

.user-avatar-loading {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid #07c160;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
}

.user-details {
    margin-bottom: 25px;
}

.user-detail-item {
    display: flex;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #f5f5f5;
}

.detail-label {
    font-size: 14px;
    color: #666;
    min-width: 100px;
    font-weight: 500;
}

.detail-value {
    font-size: 14px;
    color: #2c3e50;
    flex: 1;
}

.detail-value.user-uuid {
    font-family: monospace;
    font-size: 12px;
    color: #666;
    word-break: break-all;
}

.user-info-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .wx-login-content {
        width: 95%;
        margin: 20px;
    }
    
    .user-info-content {
        width: 95%;
        margin: 20px;
    }
    
    .fallback-options {
        flex-direction: column;
    }
    
    .user-info-actions {
        flex-direction: column;
    }
}

.font-item:hover {
    border-color: #00BCD4;
    transform: translateX(3px);
}

/* 微信登录弹窗样式 */
.wx-login-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1000;
    animation: fadeIn 0.3s ease;
}

.wx-login-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    max-width: 400px;
    width: 90%;
}

.wx-login-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.wx-login-header h3 {
    margin: 0;
    font-size: 18px;
    color: #333;
}

.wx-login-close {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #999;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wx-login-close:hover {
    color: #333;
}

.wx-login-qr {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 200px;
    margin-bottom: 15px;
}

.wx-login-tips {
    text-align: center;
    color: #666;
    font-size: 14px;
}

.wx-login-modal.show {
    display: flex;
    justify-content: center;
    align-items: center;
}

.wx-login-content {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    width: 90%;
    max-width: 420px;
    animation: slideUp 0.3s ease;
}

.wx-login-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 25px 15px;
    border-bottom: 1px solid #f0f0f0;
}

.wx-login-title {
    font-size: 22px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
}

.wx-login-close {
    background: none;
    border: none;
    font-size: 28px;
    color: #999;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.wx-login-close:hover {
    background-color: #f5f5f5;
    color: #666;
}

.wx-login-body {
    padding: 20px 25px 25px;
}

.wx-login-methods {
    text-align: center;
}

.wx-qr-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
}

.wx-qr-placeholder {
    width: 200px;
    height: 200px;
    border: 2px solid #e9ecef;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #ffffff;
}

.wx-qr-image {
    width: 200px;
    height: 200px;
    border: 2px solid #07c160;
    border-radius: 15px;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wx-qr-image canvas {
    border-radius: 12px;
}

.wx-login-tip {
    font-size: 14px;
    color: #666;
    margin: 10px 0 0 0;
}

/* 备用方案样式 */
.wx-fallback {
    text-align: center;
}

.fallback-content {
    padding: 20px;
}

.fallback-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.fallback-content h4 {
    font-size: 18px;
    color: #2c3e50;
    margin-bottom: 10px;
}

.fallback-content p {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.4;
}

.fallback-options {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.mini-program-icon {
    margin-right: 8px;
}

/* 用户信息弹窗样式 */
.user-info-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0. 0.6);
    z-index: 1000;
    animation: fadeIn 0.3s ease;
}

.user-info-modal.show {
    display: flex;
    justify-content: center;
    align-items: center;
}

.user-info-content {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    width: 90%;
    max-width: 500px;
    max-height: 80vh;
    overflow-y: auto;
    animation: slideUp 0.3s ease;
}

.user-info-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 25px 15px;
    border-bottom: 1px solid #f0f0f0;
}

.user-info-title {
    font-size: 22px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
}

.user-info-close {
    background: none;
    border: none;
    font-size: 28px;
    color: #999;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.user-info-close:hover {
    background-color: #f5f5f5;
    color: #666;
}

.user-info-body {
    padding: 20px 25px 25px;
}

.user-avatar-container {
    display: flex;
    justify-content: center;
    margin-bottom: 25px;
    position: relative;
}

.user-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid #07c160;
    object-fit: cover;
    background: #f5f5f5;
}

.user-avatar-loading {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid #07c160;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
}

.user-details {
    margin-bottom: 25px;
}

.user-detail-item {
    display: flex;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #f5f5f5;
}

.detail-label {
    font-size: 14px;
    color: #666;
    min-width: 100px;
    font-weight: 500;
}

.detail-value {
    font-size: 14px;
    color: #2c3e50;
    flex: 1;
}

.detail-value.user-uuid {
    font-family: monospace;
    font-size: 12px;
    color: #666;
    word-break: break-all;
}

.user-info-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .wx-login-content {
        width: 95%;
        margin: 20px;
    }
    
    .user-info-content {
        width: 95%;
        margin: 20px;
    }
    
    .fallback-options {
        flex-direction: column;
    }
    
    .user-info-actions {
        flex-direction: column;
    }
}

.font-item.active {
    border-color: #00BCD4;
    background-color: #fff5f5;
}

/* 微信登录弹窗样式 */
.wx-login-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1000;
    animation: fadeIn 0.3s ease;
}

.wx-login-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    max-width: 400px;
    width: 90%;
}

.wx-login-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.wx-login-header h3 {
    margin: 0;
    font-size: 18px;
    color: #333;
}

.wx-login-close {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #999;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wx-login-close:hover {
    color: #333;
}

.wx-login-qr {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 200px;
    margin-bottom: 15px;
}

.wx-login-tips {
    text-align: center;
    color: #666;
    font-size: 14px;
}

.wx-login-modal.show {
    display: flex;
    justify-content: center;
    align-items: center;
}

.wx-login-content {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    width: 90%;
    max-width: 420px;
    animation: slideUp 0.3s ease;
}

.wx-login-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 25px 15px;
    border-bottom: 1px solid #f0f0f0;
}

.wx-login-title {
    font-size: 22px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
}

.wx-login-close {
    background: none;
    border: none;
    font-size: 28px;
    color: #999;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.wx-login-close:hover {
    background-color: #f5f5f5;
    color: #666;
}

.wx-login-body {
    padding: 20px 25px 25px;
}

.wx-login-methods {
    text-align: center;
}

.wx-qr-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
}

.wx-qr-placeholder {
    width: 200px;
    height: 200px;
    border: 2px solid #e9ecef;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #ffffff;
}

.wx-qr-image {
    width: 200px;
    height: 200px;
    border: 2px solid #07c160;
    border-radius: 15px;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wx-qr-image canvas {
    border-radius: 12px;
}

.wx-login-tip {
    font-size: 14px;
    color: #666;
    margin: 10px 0 0 0;
}

/* 备用方案样式 */
.wx-fallback {
    text-align: center;
}

.fallback-content {
    padding: 20px;
}

.fallback-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.fallback-content h4 {
    font-size: 18px;
    color: #2c3e50;
    margin-bottom: 10px;
}

.fallback-content p {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.4;
}

.fallback-options {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.mini-program-icon {
    margin-right: 8px;
}

/* 用户信息弹窗样式 */
.user-info-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0. 0.6);
    z-index: 1000;
    animation: fadeIn 0.3s ease;
}

.user-info-modal.show {
    display: flex;
    justify-content: center;
    align-items: center;
}

.user-info-content {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    width: 90%;
    max-width: 500px;
    max-height: 80vh;
    overflow-y: auto;
    animation: slideUp 0.3s ease;
}

.user-info-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 25px 15px;
    border-bottom: 1px solid #f0f0f0;
}

.user-info-title {
    font-size: 22px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
}

.user-info-close {
    background: none;
    border: none;
    font-size: 28px;
    color: #999;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.user-info-close:hover {
    background-color: #f5f5f5;
    color: #666;
}

.user-info-body {
    padding: 20px 25px 25px;
}

.user-avatar-container {
    display: flex;
    justify-content: center;
    margin-bottom: 25px;
    position: relative;
}

.user-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid #07c160;
    object-fit: cover;
    background: #f5f5f5;
}

.user-avatar-loading {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid #07c160;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
}

.user-details {
    margin-bottom: 25px;
}

.user-detail-item {
    display: flex;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #f5f5f5;
}

.detail-label {
    font-size: 14px;
    color: #666;
    min-width: 100px;
    font-weight: 500;
}

.detail-value {
    font-size: 14px;
    color: #2c3e50;
    flex: 1;
}

.detail-value.user-uuid {
    font-family: monospace;
    font-size: 12px;
    color: #666;
    word-break: break-all;
}

.user-info-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .wx-login-content {
        width: 95%;
        margin: 20px;
    }
    
    .user-info-content {
        width: 95%;
        margin: 20px;
    }
    
    .fallback-options {
        flex-direction: column;
    }
    
    .user-info-actions {
        flex-direction: column;
    }
}

.font-preview {
    padding: 12px;
    font-size: 16px;
    font-weight: bold;
    text-align: center;
    color: #333;
    min-height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* 微信登录弹窗样式 */
.wx-login-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1000;
    animation: fadeIn 0.3s ease;
}

.wx-login-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    max-width: 400px;
    width: 90%;
}

.wx-login-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.wx-login-header h3 {
    margin: 0;
    font-size: 18px;
    color: #333;
}

.wx-login-close {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #999;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wx-login-close:hover {
    color: #333;
}

.wx-login-qr {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 200px;
    margin-bottom: 15px;
}

.wx-login-tips {
    text-align: center;
    color: #666;
    font-size: 14px;
}

.wx-login-modal.show {
    display: flex;
    justify-content: center;
    align-items: center;
}

.wx-login-content {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    width: 90%;
    max-width: 420px;
    animation: slideUp 0.3s ease;
}

.wx-login-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 25px 15px;
    border-bottom: 1px solid #f0f0f0;
}

.wx-login-title {
    font-size: 22px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
}

.wx-login-close {
    background: none;
    border: none;
    font-size: 28px;
    color: #999;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.wx-login-close:hover {
    background-color: #f5f5f5;
    color: #666;
}

.wx-login-body {
    padding: 20px 25px 25px;
}

.wx-login-methods {
    text-align: center;
}

.wx-qr-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
}

.wx-qr-placeholder {
    width: 200px;
    height: 200px;
    border: 2px solid #e9ecef;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #ffffff;
}

.wx-qr-image {
    width: 200px;
    height: 200px;
    border: 2px solid #07c160;
    border-radius: 15px;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wx-qr-image canvas {
    border-radius: 12px;
}

.wx-login-tip {
    font-size: 14px;
    color: #666;
    margin: 10px 0 0 0;
}

/* 备用方案样式 */
.wx-fallback {
    text-align: center;
}

.fallback-content {
    padding: 20px;
}

.fallback-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.fallback-content h4 {
    font-size: 18px;
    color: #2c3e50;
    margin-bottom: 10px;
}

.fallback-content p {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.4;
}

.fallback-options {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.mini-program-icon {
    margin-right: 8px;
}

/* 用户信息弹窗样式 */
.user-info-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0. 0.6);
    z-index: 1000;
    animation: fadeIn 0.3s ease;
}

.user-info-modal.show {
    display: flex;
    justify-content: center;
    align-items: center;
}

.user-info-content {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    width: 90%;
    max-width: 500px;
    max-height: 80vh;
    overflow-y: auto;
    animation: slideUp 0.3s ease;
}

.user-info-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 25px 15px;
    border-bottom: 1px solid #f0f0f0;
}

.user-info-title {
    font-size: 22px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
}

.user-info-close {
    background: none;
    border: none;
    font-size: 28px;
    color: #999;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.user-info-close:hover {
    background-color: #f5f5f5;
    color: #666;
}

.user-info-body {
    padding: 20px 25px 25px;
}

.user-avatar-container {
    display: flex;
    justify-content: center;
    margin-bottom: 25px;
    position: relative;
}

.user-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid #07c160;
    object-fit: cover;
    background: #f5f5f5;
}

.user-avatar-loading {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid #07c160;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
}

.user-details {
    margin-bottom: 25px;
}

.user-detail-item {
    display: flex;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #f5f5f5;
}

.detail-label {
    font-size: 14px;
    color: #666;
    min-width: 100px;
    font-weight: 500;
}

.detail-value {
    font-size: 14px;
    color: #2c3e50;
    flex: 1;
}

.detail-value.user-uuid {
    font-family: monospace;
    font-size: 12px;
    color: #666;
    word-break: break-all;
}

.user-info-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .wx-login-content {
        width: 95%;
        margin: 20px;
    }
    
    .user-info-content {
        width: 95%;
        margin: 20px;
    }
    
    .fallback-options {
        flex-direction: column;
    }
    
    .user-info-actions {
        flex-direction: column;
    }
}

/* 模糊控制 */
.blur-control {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* 微信登录弹窗样式 */
.wx-login-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1000;
    animation: fadeIn 0.3s ease;
}

.wx-login-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    max-width: 400px;
    width: 90%;
}

.wx-login-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.wx-login-header h3 {
    margin: 0;
    font-size: 18px;
    color: #333;
}

.wx-login-close {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #999;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wx-login-close:hover {
    color: #333;
}

.wx-login-qr {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 200px;
    margin-bottom: 15px;
}

.wx-login-tips {
    text-align: center;
    color: #666;
    font-size: 14px;
}

.wx-login-modal.show {
    display: flex;
    justify-content: center;
    align-items: center;
}

.wx-login-content {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    width: 90%;
    max-width: 420px;
    animation: slideUp 0.3s ease;
}

.wx-login-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 25px 15px;
    border-bottom: 1px solid #f0f0f0;
}

.wx-login-title {
    font-size: 22px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
}

.wx-login-close {
    background: none;
    border: none;
    font-size: 28px;
    color: #999;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.wx-login-close:hover {
    background-color: #f5f5f5;
    color: #666;
}

.wx-login-body {
    padding: 20px 25px 25px;
}

.wx-login-methods {
    text-align: center;
}

.wx-qr-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
}

.wx-qr-placeholder {
    width: 200px;
    height: 200px;
    border: 2px solid #e9ecef;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #ffffff;
}

.wx-qr-image {
    width: 200px;
    height: 200px;
    border: 2px solid #07c160;
    border-radius: 15px;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wx-qr-image canvas {
    border-radius: 12px;
}

.wx-login-tip {
    font-size: 14px;
    color: #666;
    margin: 10px 0 0 0;
}

/* 备用方案样式 */
.wx-fallback {
    text-align: center;
}

.fallback-content {
    padding: 20px;
}

.fallback-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.fallback-content h4 {
    font-size: 18px;
    color: #2c3e50;
    margin-bottom: 10px;
}

.fallback-content p {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.4;
}

.fallback-options {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.mini-program-icon {
    margin-right: 8px;
}

/* 用户信息弹窗样式 */
.user-info-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0. 0.6);
    z-index: 1000;
    animation: fadeIn 0.3s ease;
}

.user-info-modal.show {
    display: flex;
    justify-content: center;
    align-items: center;
}

.user-info-content {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    width: 90%;
    max-width: 500px;
    max-height: 80vh;
    overflow-y: auto;
    animation: slideUp 0.3s ease;
}

.user-info-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 25px 15px;
    border-bottom: 1px solid #f0f0f0;
}

.user-info-title {
    font-size: 22px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
}

.user-info-close {
    background: none;
    border: none;
    font-size: 28px;
    color: #999;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.user-info-close:hover {
    background-color: #f5f5f5;
    color: #666;
}

.user-info-body {
    padding: 20px 25px 25px;
}

.user-avatar-container {
    display: flex;
    justify-content: center;
    margin-bottom: 25px;
    position: relative;
}

.user-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid #07c160;
    object-fit: cover;
    background: #f5f5f5;
}

.user-avatar-loading {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid #07c160;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
}

.user-details {
    margin-bottom: 25px;
}

.user-detail-item {
    display: flex;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #f5f5f5;
}

.detail-label {
    font-size: 14px;
    color: #666;
    min-width: 100px;
    font-weight: 500;
}

.detail-value {
    font-size: 14px;
    color: #2c3e50;
    flex: 1;
}

.detail-value.user-uuid {
    font-family: monospace;
    font-size: 12px;
    color: #666;
    word-break: break-all;
}

.user-info-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .wx-login-content {
        width: 95%;
        margin: 20px;
    }
    
    .user-info-content {
        width: 95%;
        margin: 20px;
    }
    
    .fallback-options {
        flex-direction: column;
    }
    
    .user-info-actions {
        flex-direction: column;
    }
}

.blur-control label {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

/* 微信登录弹窗样式 */
.wx-login-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1000;
    animation: fadeIn 0.3s ease;
}

.wx-login-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    max-width: 400px;
    width: 90%;
}

.wx-login-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.wx-login-header h3 {
    margin: 0;
    font-size: 18px;
    color: #333;
}

.wx-login-close {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #999;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wx-login-close:hover {
    color: #333;
}

.wx-login-qr {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 200px;
    margin-bottom: 15px;
}

.wx-login-tips {
    text-align: center;
    color: #666;
    font-size: 14px;
}

.wx-login-modal.show {
    display: flex;
    justify-content: center;
    align-items: center;
}

.wx-login-content {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    width: 90%;
    max-width: 420px;
    animation: slideUp 0.3s ease;
}

.wx-login-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 25px 15px;
    border-bottom: 1px solid #f0f0f0;
}

.wx-login-title {
    font-size: 22px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
}

.wx-login-close {
    background: none;
    border: none;
    font-size: 28px;
    color: #999;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.wx-login-close:hover {
    background-color: #f5f5f5;
    color: #666;
}

.wx-login-body {
    padding: 20px 25px 25px;
}

.wx-login-methods {
    text-align: center;
}

.wx-qr-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
}

.wx-qr-placeholder {
    width: 200px;
    height: 200px;
    border: 2px solid #e9ecef;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #ffffff;
}

.wx-qr-image {
    width: 200px;
    height: 200px;
    border: 2px solid #07c160;
    border-radius: 15px;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wx-qr-image canvas {
    border-radius: 12px;
}

.wx-login-tip {
    font-size: 14px;
    color: #666;
    margin: 10px 0 0 0;
}

/* 备用方案样式 */
.wx-fallback {
    text-align: center;
}

.fallback-content {
    padding: 20px;
}

.fallback-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.fallback-content h4 {
    font-size: 18px;
    color: #2c3e50;
    margin-bottom: 10px;
}

.fallback-content p {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.4;
}

.fallback-options {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.mini-program-icon {
    margin-right: 8px;
}

/* 用户信息弹窗样式 */
.user-info-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0. 0.6);
    z-index: 1000;
    animation: fadeIn 0.3s ease;
}

.user-info-modal.show {
    display: flex;
    justify-content: center;
    align-items: center;
}

.user-info-content {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    width: 90%;
    max-width: 500px;
    max-height: 80vh;
    overflow-y: auto;
    animation: slideUp 0.3s ease;
}

.user-info-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 25px 15px;
    border-bottom: 1px solid #f0f0f0;
}

.user-info-title {
    font-size: 22px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
}

.user-info-close {
    background: none;
    border: none;
    font-size: 28px;
    color: #999;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.user-info-close:hover {
    background-color: #f5f5f5;
    color: #666;
}

.user-info-body {
    padding: 20px 25px 25px;
}

.user-avatar-container {
    display: flex;
    justify-content: center;
    margin-bottom: 25px;
    position: relative;
}

.user-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid #07c160;
    object-fit: cover;
    background: #f5f5f5;
}

.user-avatar-loading {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid #07c160;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
}

.user-details {
    margin-bottom: 25px;
}

.user-detail-item {
    display: flex;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #f5f5f5;
}

.detail-label {
    font-size: 14px;
    color: #666;
    min-width: 100px;
    font-weight: 500;
}

.detail-value {
    font-size: 14px;
    color: #2c3e50;
    flex: 1;
}

.detail-value.user-uuid {
    font-family: monospace;
    font-size: 12px;
    color: #666;
    word-break: break-all;
}

.user-info-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .wx-login-content {
        width: 95%;
        margin: 20px;
    }
    
    .user-info-content {
        width: 95%;
        margin: 20px;
    }
    
    .fallback-options {
        flex-direction: column;
    }
    
    .user-info-actions {
        flex-direction: column;
    }
}

.slider-container {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* 微信登录弹窗样式 */
.wx-login-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1000;
    animation: fadeIn 0.3s ease;
}

.wx-login-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    max-width: 400px;
    width: 90%;
}

.wx-login-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.wx-login-header h3 {
    margin: 0;
    font-size: 18px;
    color: #333;
}

.wx-login-close {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #999;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wx-login-close:hover {
    color: #333;
}

.wx-login-qr {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 200px;
    margin-bottom: 15px;
}

.wx-login-tips {
    text-align: center;
    color: #666;
    font-size: 14px;
}

.wx-login-modal.show {
    display: flex;
    justify-content: center;
    align-items: center;
}

.wx-login-content {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    width: 90%;
    max-width: 420px;
    animation: slideUp 0.3s ease;
}

.wx-login-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 25px 15px;
    border-bottom: 1px solid #f0f0f0;
}

.wx-login-title {
    font-size: 22px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
}

.wx-login-close {
    background: none;
    border: none;
    font-size: 28px;
    color: #999;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.wx-login-close:hover {
    background-color: #f5f5f5;
    color: #666;
}

.wx-login-body {
    padding: 20px 25px 25px;
}

.wx-login-methods {
    text-align: center;
}

.wx-qr-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
}

.wx-qr-placeholder {
    width: 200px;
    height: 200px;
    border: 2px solid #e9ecef;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #ffffff;
}

.wx-qr-image {
    width: 200px;
    height: 200px;
    border: 2px solid #07c160;
    border-radius: 15px;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wx-qr-image canvas {
    border-radius: 12px;
}

.wx-login-tip {
    font-size: 14px;
    color: #666;
    margin: 10px 0 0 0;
}

/* 备用方案样式 */
.wx-fallback {
    text-align: center;
}

.fallback-content {
    padding: 20px;
}

.fallback-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.fallback-content h4 {
    font-size: 18px;
    color: #2c3e50;
    margin-bottom: 10px;
}

.fallback-content p {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.4;
}

.fallback-options {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.mini-program-icon {
    margin-right: 8px;
}

/* 用户信息弹窗样式 */
.user-info-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0. 0.6);
    z-index: 1000;
    animation: fadeIn 0.3s ease;
}

.user-info-modal.show {
    display: flex;
    justify-content: center;
    align-items: center;
}

.user-info-content {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    width: 90%;
    max-width: 500px;
    max-height: 80vh;
    overflow-y: auto;
    animation: slideUp 0.3s ease;
}

.user-info-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 25px 15px;
    border-bottom: 1px solid #f0f0f0;
}

.user-info-title {
    font-size: 22px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
}

.user-info-close {
    background: none;
    border: none;
    font-size: 28px;
    color: #999;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.user-info-close:hover {
    background-color: #f5f5f5;
    color: #666;
}

.user-info-body {
    padding: 20px 25px 25px;
}

.user-avatar-container {
    display: flex;
    justify-content: center;
    margin-bottom: 25px;
    position: relative;
}

.user-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid #07c160;
    object-fit: cover;
    background: #f5f5f5;
}

.user-avatar-loading {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid #07c160;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
}

.user-details {
    margin-bottom: 25px;
}

.user-detail-item {
    display: flex;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #f5f5f5;
}

.detail-label {
    font-size: 14px;
    color: #666;
    min-width: 100px;
    font-weight: 500;
}

.detail-value {
    font-size: 14px;
    color: #2c3e50;
    flex: 1;
}

.detail-value.user-uuid {
    font-family: monospace;
    font-size: 12px;
    color: #666;
    word-break: break-all;
}

.user-info-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .wx-login-content {
        width: 95%;
        margin: 20px;
    }
    
    .user-info-content {
        width: 95%;
        margin: 20px;
    }
    
    .fallback-options {
        flex-direction: column;
    }
    
    .user-info-actions {
        flex-direction: column;
    }
}

/* 颜色控制 */
.color-control {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* 微信登录弹窗样式 */
.wx-login-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1000;
    animation: fadeIn 0.3s ease;
}

.wx-login-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    max-width: 400px;
    width: 90%;
}

.wx-login-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.wx-login-header h3 {
    margin: 0;
    font-size: 18px;
    color: #333;
}

.wx-login-close {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #999;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wx-login-close:hover {
    color: #333;
}

.wx-login-qr {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 200px;
    margin-bottom: 15px;
}

.wx-login-tips {
    text-align: center;
    color: #666;
    font-size: 14px;
}

.wx-login-modal.show {
    display: flex;
    justify-content: center;
    align-items: center;
}

.wx-login-content {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    width: 90%;
    max-width: 420px;
    animation: slideUp 0.3s ease;
}

.wx-login-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 25px 15px;
    border-bottom: 1px solid #f0f0f0;
}

.wx-login-title {
    font-size: 22px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
}

.wx-login-close {
    background: none;
    border: none;
    font-size: 28px;
    color: #999;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.wx-login-close:hover {
    background-color: #f5f5f5;
    color: #666;
}

.wx-login-body {
    padding: 20px 25px 25px;
}

.wx-login-methods {
    text-align: center;
}

.wx-qr-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
}

.wx-qr-placeholder {
    width: 200px;
    height: 200px;
    border: 2px solid #e9ecef;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #ffffff;
}

.wx-qr-image {
    width: 200px;
    height: 200px;
    border: 2px solid #07c160;
    border-radius: 15px;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wx-qr-image canvas {
    border-radius: 12px;
}

.wx-login-tip {
    font-size: 14px;
    color: #666;
    margin: 10px 0 0 0;
}

/* 备用方案样式 */
.wx-fallback {
    text-align: center;
}

.fallback-content {
    padding: 20px;
}

.fallback-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.fallback-content h4 {
    font-size: 18px;
    color: #2c3e50;
    margin-bottom: 10px;
}

.fallback-content p {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.4;
}

.fallback-options {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.mini-program-icon {
    margin-right: 8px;
}

/* 用户信息弹窗样式 */
.user-info-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0. 0.6);
    z-index: 1000;
    animation: fadeIn 0.3s ease;
}

.user-info-modal.show {
    display: flex;
    justify-content: center;
    align-items: center;
}

.user-info-content {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    width: 90%;
    max-width: 500px;
    max-height: 80vh;
    overflow-y: auto;
    animation: slideUp 0.3s ease;
}

.user-info-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 25px 15px;
    border-bottom: 1px solid #f0f0f0;
}

.user-info-title {
    font-size: 22px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
}

.user-info-close {
    background: none;
    border: none;
    font-size: 28px;
    color: #999;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.user-info-close:hover {
    background-color: #f5f5f5;
    color: #666;
}

.user-info-body {
    padding: 20px 25px 25px;
}

.user-avatar-container {
    display: flex;
    justify-content: center;
    margin-bottom: 25px;
    position: relative;
}

.user-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid #07c160;
    object-fit: cover;
    background: #f5f5f5;
}

.user-avatar-loading {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid #07c160;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
}

.user-details {
    margin-bottom: 25px;
}

.user-detail-item {
    display: flex;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #f5f5f5;
}

.detail-label {
    font-size: 14px;
    color: #666;
    min-width: 100px;
    font-weight: 500;
}

.detail-value {
    font-size: 14px;
    color: #2c3e50;
    flex: 1;
}

.detail-value.user-uuid {
    font-family: monospace;
    font-size: 12px;
    color: #666;
    word-break: break-all;
}

.user-info-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .wx-login-content {
        width: 95%;
        margin: 20px;
    }
    
    .user-info-content {
        width: 95%;
        margin: 20px;
    }
    
    .fallback-options {
        flex-direction: column;
    }
    
    .user-info-actions {
        flex-direction: column;
    }
}

.color-control input[type="color"] {
    width: 50px;
    height: 35px;
    border: 1px solid #ddd;
    border-radius: 4px;
    cursor: pointer;
}

/* 微信登录弹窗样式 */
.wx-login-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1000;
    animation: fadeIn 0.3s ease;
}

.wx-login-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    max-width: 400px;
    width: 90%;
}

.wx-login-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.wx-login-header h3 {
    margin: 0;
    font-size: 18px;
    color: #333;
}

.wx-login-close {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #999;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wx-login-close:hover {
    color: #333;
}

.wx-login-qr {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 200px;
    margin-bottom: 15px;
}

.wx-login-tips {
    text-align: center;
    color: #666;
    font-size: 14px;
}

.wx-login-modal.show {
    display: flex;
    justify-content: center;
    align-items: center;
}

.wx-login-content {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    width: 90%;
    max-width: 420px;
    animation: slideUp 0.3s ease;
}

.wx-login-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 25px 15px;
    border-bottom: 1px solid #f0f0f0;
}

.wx-login-title {
    font-size: 22px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
}

.wx-login-close {
    background: none;
    border: none;
    font-size: 28px;
    color: #999;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.wx-login-close:hover {
    background-color: #f5f5f5;
    color: #666;
}

.wx-login-body {
    padding: 20px 25px 25px;
}

.wx-login-methods {
    text-align: center;
}

.wx-qr-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
}

.wx-qr-placeholder {
    width: 200px;
    height: 200px;
    border: 2px solid #e9ecef;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #ffffff;
}

.wx-qr-image {
    width: 200px;
    height: 200px;
    border: 2px solid #07c160;
    border-radius: 15px;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wx-qr-image canvas {
    border-radius: 12px;
}

.wx-login-tip {
    font-size: 14px;
    color: #666;
    margin: 10px 0 0 0;
}

/* 备用方案样式 */
.wx-fallback {
    text-align: center;
}

.fallback-content {
    padding: 20px;
}

.fallback-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.fallback-content h4 {
    font-size: 18px;
    color: #2c3e50;
    margin-bottom: 10px;
}

.fallback-content p {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.4;
}

.fallback-options {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.mini-program-icon {
    margin-right: 8px;
}

/* 用户信息弹窗样式 */
.user-info-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0. 0.6);
    z-index: 1000;
    animation: fadeIn 0.3s ease;
}

.user-info-modal.show {
    display: flex;
    justify-content: center;
    align-items: center;
}

.user-info-content {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    width: 90%;
    max-width: 500px;
    max-height: 80vh;
    overflow-y: auto;
    animation: slideUp 0.3s ease;
}

.user-info-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 25px 15px;
    border-bottom: 1px solid #f0f0f0;
}

.user-info-title {
    font-size: 22px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
}

.user-info-close {
    background: none;
    border: none;
    font-size: 28px;
    color: #999;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.user-info-close:hover {
    background-color: #f5f5f5;
    color: #666;
}

.user-info-body {
    padding: 20px 25px 25px;
}

.user-avatar-container {
    display: flex;
    justify-content: center;
    margin-bottom: 25px;
    position: relative;
}

.user-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid #07c160;
    object-fit: cover;
    background: #f5f5f5;
}

.user-avatar-loading {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid #07c160;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
}

.user-details {
    margin-bottom: 25px;
}

.user-detail-item {
    display: flex;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #f5f5f5;
}

.detail-label {
    font-size: 14px;
    color: #666;
    min-width: 100px;
    font-weight: 500;
}

.detail-value {
    font-size: 14px;
    color: #2c3e50;
    flex: 1;
}

.detail-value.user-uuid {
    font-family: monospace;
    font-size: 12px;
    color: #666;
    word-break: break-all;
}

.user-info-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .wx-login-content {
        width: 95%;
        margin: 20px;
    }
    
    .user-info-content {
        width: 95%;
        margin: 20px;
    }
    
    .fallback-options {
        flex-direction: column;
    }
    
    .user-info-actions {
        flex-direction: column;
    }
}

.color-control input[type="text"] {
    flex: 1;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
}

/* 微信登录弹窗样式 */
.wx-login-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1000;
    animation: fadeIn 0.3s ease;
}

.wx-login-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    max-width: 400px;
    width: 90%;
}

.wx-login-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.wx-login-header h3 {
    margin: 0;
    font-size: 18px;
    color: #333;
}

.wx-login-close {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #999;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wx-login-close:hover {
    color: #333;
}

.wx-login-qr {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 200px;
    margin-bottom: 15px;
}

.wx-login-tips {
    text-align: center;
    color: #666;
    font-size: 14px;
}

.wx-login-modal.show {
    display: flex;
    justify-content: center;
    align-items: center;
}

.wx-login-content {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    width: 90%;
    max-width: 420px;
    animation: slideUp 0.3s ease;
}

.wx-login-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 25px 15px;
    border-bottom: 1px solid #f0f0f0;
}

.wx-login-title {
    font-size: 22px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
}

.wx-login-close {
    background: none;
    border: none;
    font-size: 28px;
    color: #999;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.wx-login-close:hover {
    background-color: #f5f5f5;
    color: #666;
}

.wx-login-body {
    padding: 20px 25px 25px;
}

.wx-login-methods {
    text-align: center;
}

.wx-qr-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
}

.wx-qr-placeholder {
    width: 200px;
    height: 200px;
    border: 2px solid #e9ecef;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #ffffff;
}

.wx-qr-image {
    width: 200px;
    height: 200px;
    border: 2px solid #07c160;
    border-radius: 15px;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wx-qr-image canvas {
    border-radius: 12px;
}

.wx-login-tip {
    font-size: 14px;
    color: #666;
    margin: 10px 0 0 0;
}

/* 备用方案样式 */
.wx-fallback {
    text-align: center;
}

.fallback-content {
    padding: 20px;
}

.fallback-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.fallback-content h4 {
    font-size: 18px;
    color: #2c3e50;
    margin-bottom: 10px;
}

.fallback-content p {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.4;
}

.fallback-options {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.mini-program-icon {
    margin-right: 8px;
}

/* 用户信息弹窗样式 */
.user-info-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0. 0.6);
    z-index: 1000;
    animation: fadeIn 0.3s ease;
}

.user-info-modal.show {
    display: flex;
    justify-content: center;
    align-items: center;
}

.user-info-content {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    width: 90%;
    max-width: 500px;
    max-height: 80vh;
    overflow-y: auto;
    animation: slideUp 0.3s ease;
}

.user-info-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 25px 15px;
    border-bottom: 1px solid #f0f0f0;
}

.user-info-title {
    font-size: 22px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
}

.user-info-close {
    background: none;
    border: none;
    font-size: 28px;
    color: #999;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.user-info-close:hover {
    background-color: #f5f5f5;
    color: #666;
}

.user-info-body {
    padding: 20px 25px 25px;
}

.user-avatar-container {
    display: flex;
    justify-content: center;
    margin-bottom: 25px;
    position: relative;
}

.user-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid #07c160;
    object-fit: cover;
    background: #f5f5f5;
}

.user-avatar-loading {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid #07c160;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
}

.user-details {
    margin-bottom: 25px;
}

.user-detail-item {
    display: flex;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #f5f5f5;
}

.detail-label {
    font-size: 14px;
    color: #666;
    min-width: 100px;
    font-weight: 500;
}

.detail-value {
    font-size: 14px;
    color: #2c3e50;
    flex: 1;
}

.detail-value.user-uuid {
    font-family: monospace;
    font-size: 12px;
    color: #666;
    word-break: break-all;
}

.user-info-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .wx-login-content {
        width: 95%;
        margin: 20px;
    }
    
    .user-info-content {
        width: 95%;
        margin: 20px;
    }
    
    .fallback-options {
        flex-direction: column;
    }
    
    .user-info-actions {
        flex-direction: column;
    }
}

/* 预览缩略行与按钮 */
.preview-row {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* 微信登录弹窗样式 */
.wx-login-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1000;
    animation: fadeIn 0.3s ease;
}

.wx-login-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    max-width: 400px;
    width: 90%;
}

.wx-login-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.wx-login-header h3 {
    margin: 0;
    font-size: 18px;
    color: #333;
}

.wx-login-close {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #999;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wx-login-close:hover {
    color: #333;
}

.wx-login-qr {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 200px;
    margin-bottom: 15px;
}

.wx-login-tips {
    text-align: center;
    color: #666;
    font-size: 14px;
}

.wx-login-modal.show {
    display: flex;
    justify-content: center;
    align-items: center;
}

.wx-login-content {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    width: 90%;
    max-width: 420px;
    animation: slideUp 0.3s ease;
}

.wx-login-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 25px 15px;
    border-bottom: 1px solid #f0f0f0;
}

.wx-login-title {
    font-size: 22px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
}

.wx-login-close {
    background: none;
    border: none;
    font-size: 28px;
    color: #999;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.wx-login-close:hover {
    background-color: #f5f5f5;
    color: #666;
}

.wx-login-body {
    padding: 20px 25px 25px;
}

.wx-login-methods {
    text-align: center;
}

.wx-qr-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
}

.wx-qr-placeholder {
    width: 200px;
    height: 200px;
    border: 2px solid #e9ecef;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #ffffff;
}

.wx-qr-image {
    width: 200px;
    height: 200px;
    border: 2px solid #07c160;
    border-radius: 15px;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wx-qr-image canvas {
    border-radius: 12px;
}

.wx-login-tip {
    font-size: 14px;
    color: #666;
    margin: 10px 0 0 0;
}

/* 备用方案样式 */
.wx-fallback {
    text-align: center;
}

.fallback-content {
    padding: 20px;
}

.fallback-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.fallback-content h4 {
    font-size: 18px;
    color: #2c3e50;
    margin-bottom: 10px;
}

.fallback-content p {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.4;
}

.fallback-options {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.mini-program-icon {
    margin-right: 8px;
}

/* 用户信息弹窗样式 */
.user-info-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0. 0.6);
    z-index: 1000;
    animation: fadeIn 0.3s ease;
}

.user-info-modal.show {
    display: flex;
    justify-content: center;
    align-items: center;
}

.user-info-content {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    width: 90%;
    max-width: 500px;
    max-height: 80vh;
    overflow-y: auto;
    animation: slideUp 0.3s ease;
}

.user-info-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 25px 15px;
    border-bottom: 1px solid #f0f0f0;
}

.user-info-title {
    font-size: 22px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
}

.user-info-close {
    background: none;
    border: none;
    font-size: 28px;
    color: #999;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.user-info-close:hover {
    background-color: #f5f5f5;
    color: #666;
}

.user-info-body {
    padding: 20px 25px 25px;
}

.user-avatar-container {
    display: flex;
    justify-content: center;
    margin-bottom: 25px;
    position: relative;
}

.user-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid #07c160;
    object-fit: cover;
    background: #f5f5f5;
}

.user-avatar-loading {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid #07c160;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
}

.user-details {
    margin-bottom: 25px;
}

.user-detail-item {
    display: flex;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #f5f5f5;
}

.detail-label {
    font-size: 14px;
    color: #666;
    min-width: 100px;
    font-weight: 500;
}

.detail-value {
    font-size: 14px;
    color: #2c3e50;
    flex: 1;
}

.detail-value.user-uuid {
    font-family: monospace;
    font-size: 12px;
    color: #666;
    word-break: break-all;
}

.user-info-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .wx-login-content {
        width: 95%;
        margin: 20px;
    }
    
    .user-info-content {
        width: 95%;
        margin: 20px;
    }
    
    .fallback-options {
        flex-direction: column;
    }
    
    .user-info-actions {
        flex-direction: column;
    }
}

.preview-thumb {
    width: 48px;
    height: 48px;
    object-fit: contain;
    border: 1px solid #eee;
    border-radius: 4px;
    background-color: #fff;
    transition: all 0.3s;
}

/* 微信登录弹窗样式 */
.wx-login-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1000;
    animation: fadeIn 0.3s ease;
}

.wx-login-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    max-width: 400px;
    width: 90%;
}

.wx-login-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.wx-login-header h3 {
    margin: 0;
    font-size: 18px;
    color: #333;
}

.wx-login-close {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #999;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wx-login-close:hover {
    color: #333;
}

.wx-login-qr {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 200px;
    margin-bottom: 15px;
}

.wx-login-tips {
    text-align: center;
    color: #666;
    font-size: 14px;
}

.wx-login-modal.show {
    display: flex;
    justify-content: center;
    align-items: center;
}

.wx-login-content {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    width: 90%;
    max-width: 420px;
    animation: slideUp 0.3s ease;
}

.wx-login-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 25px 15px;
    border-bottom: 1px solid #f0f0f0;
}

.wx-login-title {
    font-size: 22px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
}

.wx-login-close {
    background: none;
    border: none;
    font-size: 28px;
    color: #999;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.wx-login-close:hover {
    background-color: #f5f5f5;
    color: #666;
}

.wx-login-body {
    padding: 20px 25px 25px;
}

.wx-login-methods {
    text-align: center;
}

.wx-qr-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
}

.wx-qr-placeholder {
    width: 200px;
    height: 200px;
    border: 2px solid #e9ecef;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #ffffff;
}

.wx-qr-image {
    width: 200px;
    height: 200px;
    border: 2px solid #07c160;
    border-radius: 15px;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wx-qr-image canvas {
    border-radius: 12px;
}

.wx-login-tip {
    font-size: 14px;
    color: #666;
    margin: 10px 0 0 0;
}

/* 备用方案样式 */
.wx-fallback {
    text-align: center;
}

.fallback-content {
    padding: 20px;
}

.fallback-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.fallback-content h4 {
    font-size: 18px;
    color: #2c3e50;
    margin-bottom: 10px;
}

.fallback-content p {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.4;
}

.fallback-options {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.mini-program-icon {
    margin-right: 8px;
}

/* 用户信息弹窗样式 */
.user-info-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0. 0.6);
    z-index: 1000;
    animation: fadeIn 0.3s ease;
}

.user-info-modal.show {
    display: flex;
    justify-content: center;
    align-items: center;
}

.user-info-content {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    width: 90%;
    max-width: 500px;
    max-height: 80vh;
    overflow-y: auto;
    animation: slideUp 0.3s ease;
}

.user-info-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 25px 15px;
    border-bottom: 1px solid #f0f0f0;
}

.user-info-title {
    font-size: 22px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
}

.user-info-close {
    background: none;
    border: none;
    font-size: 28px;
    color: #999;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.user-info-close:hover {
    background-color: #f5f5f5;
    color: #666;
}

.user-info-body {
    padding: 20px 25px 25px;
}

.user-avatar-container {
    display: flex;
    justify-content: center;
    margin-bottom: 25px;
    position: relative;
}

.user-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid #07c160;
    object-fit: cover;
    background: #f5f5f5;
}

.user-avatar-loading {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid #07c160;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
}

.user-details {
    margin-bottom: 25px;
}

.user-detail-item {
    display: flex;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #f5f5f5;
}

.detail-label {
    font-size: 14px;
    color: #666;
    min-width: 100px;
    font-weight: 500;
}

.detail-value {
    font-size: 14px;
    color: #2c3e50;
    flex: 1;
}

.detail-value.user-uuid {
    font-family: monospace;
    font-size: 12px;
    color: #666;
    word-break: break-all;
}

.user-info-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .wx-login-content {
        width: 95%;
        margin: 20px;
    }
    
    .user-info-content {
        width: 95%;
        margin: 20px;
    }
    
    .fallback-options {
        flex-direction: column;
    }
    
    .user-info-actions {
        flex-direction: column;
    }
}

/* 预览图可点击时的样式 */
.preview-thumb:hover {
    border-color: #00BCD4;
    transform: scale(1.05);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* 微信登录弹窗样式 */
.wx-login-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1000;
    animation: fadeIn 0.3s ease;
}

.wx-login-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    max-width: 400px;
    width: 90%;
}

.wx-login-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.wx-login-header h3 {
    margin: 0;
    font-size: 18px;
    color: #333;
}

.wx-login-close {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #999;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wx-login-close:hover {
    color: #333;
}

.wx-login-qr {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 200px;
    margin-bottom: 15px;
}

.wx-login-tips {
    text-align: center;
    color: #666;
    font-size: 14px;
}

.wx-login-modal.show {
    display: flex;
    justify-content: center;
    align-items: center;
}

.wx-login-content {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    width: 90%;
    max-width: 420px;
    animation: slideUp 0.3s ease;
}

.wx-login-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 25px 15px;
    border-bottom: 1px solid #f0f0f0;
}

.wx-login-title {
    font-size: 22px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
}

.wx-login-close {
    background: none;
    border: none;
    font-size: 28px;
    color: #999;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.wx-login-close:hover {
    background-color: #f5f5f5;
    color: #666;
}

.wx-login-body {
    padding: 20px 25px 25px;
}

.wx-login-methods {
    text-align: center;
}

.wx-qr-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
}

.wx-qr-placeholder {
    width: 200px;
    height: 200px;
    border: 2px solid #e9ecef;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #ffffff;
}

.wx-qr-image {
    width: 200px;
    height: 200px;
    border: 2px solid #07c160;
    border-radius: 15px;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wx-qr-image canvas {
    border-radius: 12px;
}

.wx-login-tip {
    font-size: 14px;
    color: #666;
    margin: 10px 0 0 0;
}

/* 备用方案样式 */
.wx-fallback {
    text-align: center;
}

.fallback-content {
    padding: 20px;
}

.fallback-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.fallback-content h4 {
    font-size: 18px;
    color: #2c3e50;
    margin-bottom: 10px;
}

.fallback-content p {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.4;
}

.fallback-options {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.mini-program-icon {
    margin-right: 8px;
}

/* 用户信息弹窗样式 */
.user-info-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0. 0.6);
    z-index: 1000;
    animation: fadeIn 0.3s ease;
}

.user-info-modal.show {
    display: flex;
    justify-content: center;
    align-items: center;
}

.user-info-content {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    width: 90%;
    max-width: 500px;
    max-height: 80vh;
    overflow-y: auto;
    animation: slideUp 0.3s ease;
}

.user-info-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 25px 15px;
    border-bottom: 1px solid #f0f0f0;
}

.user-info-title {
    font-size: 22px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
}

.user-info-close {
    background: none;
    border: none;
    font-size: 28px;
    color: #999;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.user-info-close:hover {
    background-color: #f5f5f5;
    color: #666;
}

.user-info-body {
    padding: 20px 25px 25px;
}

.user-avatar-container {
    display: flex;
    justify-content: center;
    margin-bottom: 25px;
    position: relative;
}

.user-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid #07c160;
    object-fit: cover;
    background: #f5f5f5;
}

.user-avatar-loading {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid #07c160;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
}

.user-details {
    margin-bottom: 25px;
}

.user-detail-item {
    display: flex;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #f5f5f5;
}

.detail-label {
    font-size: 14px;
    color: #666;
    min-width: 100px;
    font-weight: 500;
}

.detail-value {
    font-size: 14px;
    color: #2c3e50;
    flex: 1;
}

.detail-value.user-uuid {
    font-family: monospace;
    font-size: 12px;
    color: #666;
    word-break: break-all;
}

.user-info-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .wx-login-content {
        width: 95%;
        margin: 20px;
    }
    
    .user-info-content {
        width: 95%;
        margin: 20px;
    }
    
    .fallback-options {
        flex-direction: column;
    }
    
    .user-info-actions {
        flex-direction: column;
    }
}

/* 并排显示时，预览缩略图稍小一些 */
.edit-item-row .preview-thumb {
    width: 40px;
    height: 40px;
}

/* 微信登录弹窗样式 */
.wx-login-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1000;
    animation: fadeIn 0.3s ease;
}

.wx-login-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    max-width: 400px;
    width: 90%;
}

.wx-login-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.wx-login-header h3 {
    margin: 0;
    font-size: 18px;
    color: #333;
}

.wx-login-close {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #999;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wx-login-close:hover {
    color: #333;
}

.wx-login-qr {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 200px;
    margin-bottom: 15px;
}

.wx-login-tips {
    text-align: center;
    color: #666;
    font-size: 14px;
}

.wx-login-modal.show {
    display: flex;
    justify-content: center;
    align-items: center;
}

.wx-login-content {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    width: 90%;
    max-width: 420px;
    animation: slideUp 0.3s ease;
}

.wx-login-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 25px 15px;
    border-bottom: 1px solid #f0f0f0;
}

.wx-login-title {
    font-size: 22px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
}

.wx-login-close {
    background: none;
    border: none;
    font-size: 28px;
    color: #999;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.wx-login-close:hover {
    background-color: #f5f5f5;
    color: #666;
}

.wx-login-body {
    padding: 20px 25px 25px;
}

.wx-login-methods {
    text-align: center;
}

.wx-qr-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
}

.wx-qr-placeholder {
    width: 200px;
    height: 200px;
    border: 2px solid #e9ecef;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #ffffff;
}

.wx-qr-image {
    width: 200px;
    height: 200px;
    border: 2px solid #07c160;
    border-radius: 15px;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wx-qr-image canvas {
    border-radius: 12px;
}

.wx-login-tip {
    font-size: 14px;
    color: #666;
    margin: 10px 0 0 0;
}

/* 备用方案样式 */
.wx-fallback {
    text-align: center;
}

.fallback-content {
    padding: 20px;
}

.fallback-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.fallback-content h4 {
    font-size: 18px;
    color: #2c3e50;
    margin-bottom: 10px;
}

.fallback-content p {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.4;
}

.fallback-options {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.mini-program-icon {
    margin-right: 8px;
}

/* 用户信息弹窗样式 */
.user-info-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0. 0.6);
    z-index: 1000;
    animation: fadeIn 0.3s ease;
}

.user-info-modal.show {
    display: flex;
    justify-content: center;
    align-items: center;
}

.user-info-content {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    width: 90%;
    max-width: 500px;
    max-height: 80vh;
    overflow-y: auto;
    animation: slideUp 0.3s ease;
}

.user-info-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 25px 15px;
    border-bottom: 1px solid #f0f0f0;
}

.user-info-title {
    font-size: 22px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
}

.user-info-close {
    background: none;
    border: none;
    font-size: 28px;
    color: #999;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.user-info-close:hover {
    background-color: #f5f5f5;
    color: #666;
}

.user-info-body {
    padding: 20px 25px 25px;
}

.user-avatar-container {
    display: flex;
    justify-content: center;
    margin-bottom: 25px;
    position: relative;
}

.user-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid #07c160;
    object-fit: cover;
    background: #f5f5f5;
}

.user-avatar-loading {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid #07c160;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
}

.user-details {
    margin-bottom: 25px;
}

.user-detail-item {
    display: flex;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #f5f5f5;
}

.detail-label {
    font-size: 14px;
    color: #666;
    min-width: 100px;
    font-weight: 500;
}

.detail-value {
    font-size: 14px;
    color: #2c3e50;
    flex: 1;
}

.detail-value.user-uuid {
    font-family: monospace;
    font-size: 12px;
    color: #666;
    word-break: break-all;
}

.user-info-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .wx-login-content {
        width: 95%;
        margin: 20px;
    }
    
    .user-info-content {
        width: 95%;
        margin: 20px;
    }
    
    .fallback-options {
        flex-direction: column;
    }
    
    .user-info-actions {
        flex-direction: column;
    }
}

.edit-item-row .preview-row {
    gap: 8px;
}

/* 微信登录弹窗样式 */
.wx-login-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1000;
    animation: fadeIn 0.3s ease;
}

.wx-login-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    max-width: 400px;
    width: 90%;
}

.wx-login-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.wx-login-header h3 {
    margin: 0;
    font-size: 18px;
    color: #333;
}

.wx-login-close {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #999;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wx-login-close:hover {
    color: #333;
}

.wx-login-qr {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 200px;
    margin-bottom: 15px;
}

.wx-login-tips {
    text-align: center;
    color: #666;
    font-size: 14px;
}

.wx-login-modal.show {
    display: flex;
    justify-content: center;
    align-items: center;
}

.wx-login-content {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    width: 90%;
    max-width: 420px;
    animation: slideUp 0.3s ease;
}

.wx-login-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 25px 15px;
    border-bottom: 1px solid #f0f0f0;
}

.wx-login-title {
    font-size: 22px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
}

.wx-login-close {
    background: none;
    border: none;
    font-size: 28px;
    color: #999;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.wx-login-close:hover {
    background-color: #f5f5f5;
    color: #666;
}

.wx-login-body {
    padding: 20px 25px 25px;
}

.wx-login-methods {
    text-align: center;
}

.wx-qr-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
}

.wx-qr-placeholder {
    width: 200px;
    height: 200px;
    border: 2px solid #e9ecef;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #ffffff;
}

.wx-qr-image {
    width: 200px;
    height: 200px;
    border: 2px solid #07c160;
    border-radius: 15px;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wx-qr-image canvas {
    border-radius: 12px;
}

.wx-login-tip {
    font-size: 14px;
    color: #666;
    margin: 10px 0 0 0;
}

/* 备用方案样式 */
.wx-fallback {
    text-align: center;
}

.fallback-content {
    padding: 20px;
}

.fallback-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.fallback-content h4 {
    font-size: 18px;
    color: #2c3e50;
    margin-bottom: 10px;
}

.fallback-content p {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.4;
}

.fallback-options {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.mini-program-icon {
    margin-right: 8px;
}

/* 用户信息弹窗样式 */
.user-info-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0. 0.6);
    z-index: 1000;
    animation: fadeIn 0.3s ease;
}

.user-info-modal.show {
    display: flex;
    justify-content: center;
    align-items: center;
}

.user-info-content {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    width: 90%;
    max-width: 500px;
    max-height: 80vh;
    overflow-y: auto;
    animation: slideUp 0.3s ease;
}

.user-info-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 25px 15px;
    border-bottom: 1px solid #f0f0f0;
}

.user-info-title {
    font-size: 22px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
}

.user-info-close {
    background: none;
    border: none;
    font-size: 28px;
    color: #999;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.user-info-close:hover {
    background-color: #f5f5f5;
    color: #666;
}

.user-info-body {
    padding: 20px 25px 25px;
}

.user-avatar-container {
    display: flex;
    justify-content: center;
    margin-bottom: 25px;
    position: relative;
}

.user-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid #07c160;
    object-fit: cover;
    background: #f5f5f5;
}

.user-avatar-loading {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid #07c160;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
}

.user-details {
    margin-bottom: 25px;
}

.user-detail-item {
    display: flex;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #f5f5f5;
}

.detail-label {
    font-size: 14px;
    color: #666;
    min-width: 100px;
    font-weight: 500;
}

.detail-value {
    font-size: 14px;
    color: #2c3e50;
    flex: 1;
}

.detail-value.user-uuid {
    font-family: monospace;
    font-size: 12px;
    color: #666;
    word-break: break-all;
}

.user-info-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .wx-login-content {
        width: 95%;
        margin: 20px;
    }
    
    .user-info-content {
        width: 95%;
        margin: 20px;
    }
    
    .fallback-options {
        flex-direction: column;
    }
    
    .user-info-actions {
        flex-direction: column;
    }
}

.edit-item-row .btn-secondary {
    padding: 6px 10px;
    font-size: 13px;
}

/* 微信登录弹窗样式 */
.wx-login-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1000;
    animation: fadeIn 0.3s ease;
}

.wx-login-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    max-width: 400px;
    width: 90%;
}

.wx-login-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.wx-login-header h3 {
    margin: 0;
    font-size: 18px;
    color: #333;
}

.wx-login-close {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #999;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wx-login-close:hover {
    color: #333;
}

.wx-login-qr {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 200px;
    margin-bottom: 15px;
}

.wx-login-tips {
    text-align: center;
    color: #666;
    font-size: 14px;
}

.wx-login-modal.show {
    display: flex;
    justify-content: center;
    align-items: center;
}

.wx-login-content {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    width: 90%;
    max-width: 420px;
    animation: slideUp 0.3s ease;
}

.wx-login-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 25px 15px;
    border-bottom: 1px solid #f0f0f0;
}

.wx-login-title {
    font-size: 22px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
}

.wx-login-close {
    background: none;
    border: none;
    font-size: 28px;
    color: #999;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.wx-login-close:hover {
    background-color: #f5f5f5;
    color: #666;
}

.wx-login-body {
    padding: 20px 25px 25px;
}

.wx-login-methods {
    text-align: center;
}

.wx-qr-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
}

.wx-qr-placeholder {
    width: 200px;
    height: 200px;
    border: 2px solid #e9ecef;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #ffffff;
}

.wx-qr-image {
    width: 200px;
    height: 200px;
    border: 2px solid #07c160;
    border-radius: 15px;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wx-qr-image canvas {
    border-radius: 12px;
}

.wx-login-tip {
    font-size: 14px;
    color: #666;
    margin: 10px 0 0 0;
}

/* 备用方案样式 */
.wx-fallback {
    text-align: center;
}

.fallback-content {
    padding: 20px;
}

.fallback-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.fallback-content h4 {
    font-size: 18px;
    color: #2c3e50;
    margin-bottom: 10px;
}

.fallback-content p {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.4;
}

.fallback-options {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.mini-program-icon {
    margin-right: 8px;
}

/* 用户信息弹窗样式 */
.user-info-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0. 0.6);
    z-index: 1000;
    animation: fadeIn 0.3s ease;
}

.user-info-modal.show {
    display: flex;
    justify-content: center;
    align-items: center;
}

.user-info-content {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    width: 90%;
    max-width: 500px;
    max-height: 80vh;
    overflow-y: auto;
    animation: slideUp 0.3s ease;
}

.user-info-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 25px 15px;
    border-bottom: 1px solid #f0f0f0;
}

.user-info-title {
    font-size: 22px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
}

.user-info-close {
    background: none;
    border: none;
    font-size: 28px;
    color: #999;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.user-info-close:hover {
    background-color: #f5f5f5;
    color: #666;
}

.user-info-body {
    padding: 20px 25px 25px;
}

.user-avatar-container {
    display: flex;
    justify-content: center;
    margin-bottom: 25px;
    position: relative;
}

.user-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid #07c160;
    object-fit: cover;
    background: #f5f5f5;
}

.user-avatar-loading {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid #07c160;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
}

.user-details {
    margin-bottom: 25px;
}

.user-detail-item {
    display: flex;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #f5f5f5;
}

.detail-label {
    font-size: 14px;
    color: #666;
    min-width: 100px;
    font-weight: 500;
}

.detail-value {
    font-size: 14px;
    color: #2c3e50;
    flex: 1;
}

.detail-value.user-uuid {
    font-family: monospace;
    font-size: 12px;
    color: #666;
    word-break: break-all;
}

.user-info-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .wx-login-content {
        width: 95%;
        margin: 20px;
    }
    
    .user-info-content {
        width: 95%;
        margin: 20px;
    }
    
    .fallback-options {
        flex-direction: column;
    }
    
    .user-info-actions {
        flex-direction: column;
    }
}

.btn.btn-secondary {
    background-color: #fff;
    color: #333;
    border: 1px solid #ddd;
    padding: 6px 12px;
}

/* 微信登录弹窗样式 */
.wx-login-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1000;
    animation: fadeIn 0.3s ease;
}

.wx-login-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    max-width: 400px;
    width: 90%;
}

.wx-login-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.wx-login-header h3 {
    margin: 0;
    font-size: 18px;
    color: #333;
}

.wx-login-close {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #999;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wx-login-close:hover {
    color: #333;
}

.wx-login-qr {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 200px;
    margin-bottom: 15px;
}

.wx-login-tips {
    text-align: center;
    color: #666;
    font-size: 14px;
}

.wx-login-modal.show {
    display: flex;
    justify-content: center;
    align-items: center;
}

.wx-login-content {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    width: 90%;
    max-width: 420px;
    animation: slideUp 0.3s ease;
}

.wx-login-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 25px 15px;
    border-bottom: 1px solid #f0f0f0;
}

.wx-login-title {
    font-size: 22px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
}

.wx-login-close {
    background: none;
    border: none;
    font-size: 28px;
    color: #999;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.wx-login-close:hover {
    background-color: #f5f5f5;
    color: #666;
}

.wx-login-body {
    padding: 20px 25px 25px;
}

.wx-login-methods {
    text-align: center;
}

.wx-qr-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
}

.wx-qr-placeholder {
    width: 200px;
    height: 200px;
    border: 2px solid #e9ecef;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #ffffff;
}

.wx-qr-image {
    width: 200px;
    height: 200px;
    border: 2px solid #07c160;
    border-radius: 15px;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wx-qr-image canvas {
    border-radius: 12px;
}

.wx-login-tip {
    font-size: 14px;
    color: #666;
    margin: 10px 0 0 0;
}

/* 备用方案样式 */
.wx-fallback {
    text-align: center;
}

.fallback-content {
    padding: 20px;
}

.fallback-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.fallback-content h4 {
    font-size: 18px;
    color: #2c3e50;
    margin-bottom: 10px;
}

.fallback-content p {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.4;
}

.fallback-options {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.mini-program-icon {
    margin-right: 8px;
}

/* 用户信息弹窗样式 */
.user-info-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0. 0.6);
    z-index: 1000;
    animation: fadeIn 0.3s ease;
}

.user-info-modal.show {
    display: flex;
    justify-content: center;
    align-items: center;
}

.user-info-content {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    width: 90%;
    max-width: 500px;
    max-height: 80vh;
    overflow-y: auto;
    animation: slideUp 0.3s ease;
}

.user-info-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 25px 15px;
    border-bottom: 1px solid #f0f0f0;
}

.user-info-title {
    font-size: 22px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
}

.user-info-close {
    background: none;
    border: none;
    font-size: 28px;
    color: #999;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.user-info-close:hover {
    background-color: #f5f5f5;
    color: #666;
}

.user-info-body {
    padding: 20px 25px 25px;
}

.user-avatar-container {
    display: flex;
    justify-content: center;
    margin-bottom: 25px;
    position: relative;
}

.user-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid #07c160;
    object-fit: cover;
    background: #f5f5f5;
}

.user-avatar-loading {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid #07c160;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
}

.user-details {
    margin-bottom: 25px;
}

.user-detail-item {
    display: flex;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #f5f5f5;
}

.detail-label {
    font-size: 14px;
    color: #666;
    min-width: 100px;
    font-weight: 500;
}

.detail-value {
    font-size: 14px;
    color: #2c3e50;
    flex: 1;
}

.detail-value.user-uuid {
    font-family: monospace;
    font-size: 12px;
    color: #666;
    word-break: break-all;
}

.user-info-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .wx-login-content {
        width: 95%;
        margin: 20px;
    }
    
    .user-info-content {
        width: 95%;
        margin: 20px;
    }
    
    .fallback-options {
        flex-direction: column;
    }
    
    .user-info-actions {
        flex-direction: column;
    }
}

.btn.btn-secondary:hover {
    background-color: #f5f5f5;
}

/* 微信登录弹窗样式 */
.wx-login-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1000;
    animation: fadeIn 0.3s ease;
}

.wx-login-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    max-width: 400px;
    width: 90%;
}

.wx-login-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.wx-login-header h3 {
    margin: 0;
    font-size: 18px;
    color: #333;
}

.wx-login-close {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #999;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wx-login-close:hover {
    color: #333;
}

.wx-login-qr {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 200px;
    margin-bottom: 15px;
}

.wx-login-tips {
    text-align: center;
    color: #666;
    font-size: 14px;
}

.wx-login-modal.show {
    display: flex;
    justify-content: center;
    align-items: center;
}

.wx-login-content {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    width: 90%;
    max-width: 420px;
    animation: slideUp 0.3s ease;
}

.wx-login-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 25px 15px;
    border-bottom: 1px solid #f0f0f0;
}

.wx-login-title {
    font-size: 22px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
}

.wx-login-close {
    background: none;
    border: none;
    font-size: 28px;
    color: #999;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.wx-login-close:hover {
    background-color: #f5f5f5;
    color: #666;
}

.wx-login-body {
    padding: 20px 25px 25px;
}

.wx-login-methods {
    text-align: center;
}

.wx-qr-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
}

.wx-qr-placeholder {
    width: 200px;
    height: 200px;
    border: 2px solid #e9ecef;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #ffffff;
}

.wx-qr-image {
    width: 200px;
    height: 200px;
    border: 2px solid #07c160;
    border-radius: 15px;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wx-qr-image canvas {
    border-radius: 12px;
}

.wx-login-tip {
    font-size: 14px;
    color: #666;
    margin: 10px 0 0 0;
}

/* 备用方案样式 */
.wx-fallback {
    text-align: center;
}

.fallback-content {
    padding: 20px;
}

.fallback-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.fallback-content h4 {
    font-size: 18px;
    color: #2c3e50;
    margin-bottom: 10px;
}

.fallback-content p {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.4;
}

.fallback-options {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.mini-program-icon {
    margin-right: 8px;
}

/* 用户信息弹窗样式 */
.user-info-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0. 0.6);
    z-index: 1000;
    animation: fadeIn 0.3s ease;
}

.user-info-modal.show {
    display: flex;
    justify-content: center;
    align-items: center;
}

.user-info-content {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    width: 90%;
    max-width: 500px;
    max-height: 80vh;
    overflow-y: auto;
    animation: slideUp 0.3s ease;
}

.user-info-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 25px 15px;
    border-bottom: 1px solid #f0f0f0;
}

.user-info-title {
    font-size: 22px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
}

.user-info-close {
    background: none;
    border: none;
    font-size: 28px;
    color: #999;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.user-info-close:hover {
    background-color: #f5f5f5;
    color: #666;
}

.user-info-body {
    padding: 20px 25px 25px;
}

.user-avatar-container {
    display: flex;
    justify-content: center;
    margin-bottom: 25px;
    position: relative;
}

.user-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid #07c160;
    object-fit: cover;
    background: #f5f5f5;
}

.user-avatar-loading {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid #07c160;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
}

.user-details {
    margin-bottom: 25px;
}

.user-detail-item {
    display: flex;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #f5f5f5;
}

.detail-label {
    font-size: 14px;
    color: #666;
    min-width: 100px;
    font-weight: 500;
}

.detail-value {
    font-size: 14px;
    color: #2c3e50;
    flex: 1;
}

.detail-value.user-uuid {
    font-family: monospace;
    font-size: 12px;
    color: #666;
    word-break: break-all;
}

.user-info-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .wx-login-content {
        width: 95%;
        margin: 20px;
    }
    
    .user-info-content {
        width: 95%;
        margin: 20px;
    }
    
    .fallback-options {
        flex-direction: column;
    }
    
    .user-info-actions {
        flex-direction: column;
    }
}

/* 字体当前展示行 */
.font-current-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

/* 微信登录弹窗样式 */
.wx-login-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1000;
    animation: fadeIn 0.3s ease;
}

.wx-login-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    max-width: 400px;
    width: 90%;
}

.wx-login-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.wx-login-header h3 {
    margin: 0;
    font-size: 18px;
    color: #333;
}

.wx-login-close {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #999;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wx-login-close:hover {
    color: #333;
}

.wx-login-qr {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 200px;
    margin-bottom: 15px;
}

.wx-login-tips {
    text-align: center;
    color: #666;
    font-size: 14px;
}

.wx-login-modal.show {
    display: flex;
    justify-content: center;
    align-items: center;
}

.wx-login-content {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    width: 90%;
    max-width: 420px;
    animation: slideUp 0.3s ease;
}

.wx-login-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 25px 15px;
    border-bottom: 1px solid #f0f0f0;
}

.wx-login-title {
    font-size: 22px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
}

.wx-login-close {
    background: none;
    border: none;
    font-size: 28px;
    color: #999;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.wx-login-close:hover {
    background-color: #f5f5f5;
    color: #666;
}

.wx-login-body {
    padding: 20px 25px 25px;
}

.wx-login-methods {
    text-align: center;
}

.wx-qr-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
}

.wx-qr-placeholder {
    width: 200px;
    height: 200px;
    border: 2px solid #e9ecef;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #ffffff;
}

.wx-qr-image {
    width: 200px;
    height: 200px;
    border: 2px solid #07c160;
    border-radius: 15px;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wx-qr-image canvas {
    border-radius: 12px;
}

.wx-login-tip {
    font-size: 14px;
    color: #666;
    margin: 10px 0 0 0;
}

/* 备用方案样式 */
.wx-fallback {
    text-align: center;
}

.fallback-content {
    padding: 20px;
}

.fallback-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.fallback-content h4 {
    font-size: 18px;
    color: #2c3e50;
    margin-bottom: 10px;
}

.fallback-content p {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.4;
}

.fallback-options {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.mini-program-icon {
    margin-right: 8px;
}

/* 用户信息弹窗样式 */
.user-info-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0. 0.6);
    z-index: 1000;
    animation: fadeIn 0.3s ease;
}

.user-info-modal.show {
    display: flex;
    justify-content: center;
    align-items: center;
}

.user-info-content {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    width: 90%;
    max-width: 500px;
    max-height: 80vh;
    overflow-y: auto;
    animation: slideUp 0.3s ease;
}

.user-info-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 25px 15px;
    border-bottom: 1px solid #f0f0f0;
}

.user-info-title {
    font-size: 22px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
}

.user-info-close {
    background: none;
    border: none;
    font-size: 28px;
    color: #999;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.user-info-close:hover {
    background-color: #f5f5f5;
    color: #666;
}

.user-info-body {
    padding: 20px 25px 25px;
}

.user-avatar-container {
    display: flex;
    justify-content: center;
    margin-bottom: 25px;
    position: relative;
}

.user-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid #07c160;
    object-fit: cover;
    background: #f5f5f5;
}

.user-avatar-loading {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid #07c160;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
}

.user-details {
    margin-bottom: 25px;
}

.user-detail-item {
    display: flex;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #f5f5f5;
}

.detail-label {
    font-size: 14px;
    color: #666;
    min-width: 100px;
    font-weight: 500;
}

.detail-value {
    font-size: 14px;
    color: #2c3e50;
    flex: 1;
}

.detail-value.user-uuid {
    font-family: monospace;
    font-size: 12px;
    color: #666;
    word-break: break-all;
}

.user-info-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .wx-login-content {
        width: 95%;
        margin: 20px;
    }
    
    .user-info-content {
        width: 95%;
        margin: 20px;
    }
    
    .fallback-options {
        flex-direction: column;
    }
    
    .user-info-actions {
        flex-direction: column;
    }
}

.font-name {
    font-size: 14px;
    font-weight: bold;
    color: #333;
}

/* 微信登录弹窗样式 */
.wx-login-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1000;
    animation: fadeIn 0.3s ease;
}

.wx-login-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    max-width: 400px;
    width: 90%;
}

.wx-login-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.wx-login-header h3 {
    margin: 0;
    font-size: 18px;
    color: #333;
}

.wx-login-close {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #999;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wx-login-close:hover {
    color: #333;
}

.wx-login-qr {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 200px;
    margin-bottom: 15px;
}

.wx-login-tips {
    text-align: center;
    color: #666;
    font-size: 14px;
}

.wx-login-modal.show {
    display: flex;
    justify-content: center;
    align-items: center;
}

.wx-login-content {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    width: 90%;
    max-width: 420px;
    animation: slideUp 0.3s ease;
}

.wx-login-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 25px 15px;
    border-bottom: 1px solid #f0f0f0;
}

.wx-login-title {
    font-size: 22px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
}

.wx-login-close {
    background: none;
    border: none;
    font-size: 28px;
    color: #999;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.wx-login-close:hover {
    background-color: #f5f5f5;
    color: #666;
}

.wx-login-body {
    padding: 20px 25px 25px;
}

.wx-login-methods {
    text-align: center;
}

.wx-qr-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
}

.wx-qr-placeholder {
    width: 200px;
    height: 200px;
    border: 2px solid #e9ecef;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #ffffff;
}

.wx-qr-image {
    width: 200px;
    height: 200px;
    border: 2px solid #07c160;
    border-radius: 15px;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wx-qr-image canvas {
    border-radius: 12px;
}

.wx-login-tip {
    font-size: 14px;
    color: #666;
    margin: 10px 0 0 0;
}

/* 备用方案样式 */
.wx-fallback {
    text-align: center;
}

.fallback-content {
    padding: 20px;
}

.fallback-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.fallback-content h4 {
    font-size: 18px;
    color: #2c3e50;
    margin-bottom: 10px;
}

.fallback-content p {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.4;
}

.fallback-options {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.mini-program-icon {
    margin-right: 8px;
}

/* 用户信息弹窗样式 */
.user-info-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0. 0.6);
    z-index: 1000;
    animation: fadeIn 0.3s ease;
}

.user-info-modal.show {
    display: flex;
    justify-content: center;
    align-items: center;
}

.user-info-content {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    width: 90%;
    max-width: 500px;
    max-height: 80vh;
    overflow-y: auto;
    animation: slideUp 0.3s ease;
}

.user-info-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 25px 15px;
    border-bottom: 1px solid #f0f0f0;
}

.user-info-title {
    font-size: 22px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
}

.user-info-close {
    background: none;
    border: none;
    font-size: 28px;
    color: #999;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.user-info-close:hover {
    background-color: #f5f5f5;
    color: #666;
}

.user-info-body {
    padding: 20px 25px 25px;
}

.user-avatar-container {
    display: flex;
    justify-content: center;
    margin-bottom: 25px;
    position: relative;
}

.user-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid #07c160;
    object-fit: cover;
    background: #f5f5f5;
}

.user-avatar-loading {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid #07c160;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
}

.user-details {
    margin-bottom: 25px;
}

.user-detail-item {
    display: flex;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #f5f5f5;
}

.detail-label {
    font-size: 14px;
    color: #666;
    min-width: 100px;
    font-weight: 500;
}

.detail-value {
    font-size: 14px;
    color: #2c3e50;
    flex: 1;
}

.detail-value.user-uuid {
    font-family: monospace;
    font-size: 12px;
    color: #666;
    word-break: break-all;
}

.user-info-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .wx-login-content {
        width: 95%;
        margin: 20px;
    }
    
    .user-info-content {
        width: 95%;
        margin: 20px;
    }
    
    .fallback-options {
        flex-direction: column;
    }
    
    .user-info-actions {
        flex-direction: column;
    }
}

/* 文本输入 */
input[type="text"] {
    width: 100%;
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
}

/* 微信登录弹窗样式 */
.wx-login-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1000;
    animation: fadeIn 0.3s ease;
}

.wx-login-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    max-width: 400px;
    width: 90%;
}

.wx-login-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.wx-login-header h3 {
    margin: 0;
    font-size: 18px;
    color: #333;
}

.wx-login-close {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #999;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wx-login-close:hover {
    color: #333;
}

.wx-login-qr {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 200px;
    margin-bottom: 15px;
}

.wx-login-tips {
    text-align: center;
    color: #666;
    font-size: 14px;
}

.wx-login-modal.show {
    display: flex;
    justify-content: center;
    align-items: center;
}

.wx-login-content {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    width: 90%;
    max-width: 420px;
    animation: slideUp 0.3s ease;
}

.wx-login-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 25px 15px;
    border-bottom: 1px solid #f0f0f0;
}

.wx-login-title {
    font-size: 22px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
}

.wx-login-close {
    background: none;
    border: none;
    font-size: 28px;
    color: #999;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.wx-login-close:hover {
    background-color: #f5f5f5;
    color: #666;
}

.wx-login-body {
    padding: 20px 25px 25px;
}

.wx-login-methods {
    text-align: center;
}

.wx-qr-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
}

.wx-qr-placeholder {
    width: 200px;
    height: 200px;
    border: 2px solid #e9ecef;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #ffffff;
}

.wx-qr-image {
    width: 200px;
    height: 200px;
    border: 2px solid #07c160;
    border-radius: 15px;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wx-qr-image canvas {
    border-radius: 12px;
}

.wx-login-tip {
    font-size: 14px;
    color: #666;
    margin: 10px 0 0 0;
}

/* 备用方案样式 */
.wx-fallback {
    text-align: center;
}

.fallback-content {
    padding: 20px;
}

.fallback-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.fallback-content h4 {
    font-size: 18px;
    color: #2c3e50;
    margin-bottom: 10px;
}

.fallback-content p {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.4;
}

.fallback-options {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.mini-program-icon {
    margin-right: 8px;
}

/* 用户信息弹窗样式 */
.user-info-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0. 0.6);
    z-index: 1000;
    animation: fadeIn 0.3s ease;
}

.user-info-modal.show {
    display: flex;
    justify-content: center;
    align-items: center;
}

.user-info-content {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    width: 90%;
    max-width: 500px;
    max-height: 80vh;
    overflow-y: auto;
    animation: slideUp 0.3s ease;
}

.user-info-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 25px 15px;
    border-bottom: 1px solid #f0f0f0;
}

.user-info-title {
    font-size: 22px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
}

.user-info-close {
    background: none;
    border: none;
    font-size: 28px;
    color: #999;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.user-info-close:hover {
    background-color: #f5f5f5;
    color: #666;
}

.user-info-body {
    padding: 20px 25px 25px;
}

.user-avatar-container {
    display: flex;
    justify-content: center;
    margin-bottom: 25px;
    position: relative;
}

.user-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid #07c160;
    object-fit: cover;
    background: #f5f5f5;
}

.user-avatar-loading {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid #07c160;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
}

.user-details {
    margin-bottom: 25px;
}

.user-detail-item {
    display: flex;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #f5f5f5;
}

.detail-label {
    font-size: 14px;
    color: #666;
    min-width: 100px;
    font-weight: 500;
}

.detail-value {
    font-size: 14px;
    color: #2c3e50;
    flex: 1;
}

.detail-value.user-uuid {
    font-family: monospace;
    font-size: 12px;
    color: #666;
    word-break: break-all;
}

.user-info-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .wx-login-content {
        width: 95%;
        margin: 20px;
    }
    
    .user-info-content {
        width: 95%;
        margin: 20px;
    }
    
    .fallback-options {
        flex-direction: column;
    }
    
    .user-info-actions {
        flex-direction: column;
    }
}

input[type="text"]:focus {
    outline: none;
    border-color: #00BCD4;
}

/* 微信登录弹窗样式 */
.wx-login-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1000;
    animation: fadeIn 0.3s ease;
}

.wx-login-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    max-width: 400px;
    width: 90%;
}

.wx-login-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.wx-login-header h3 {
    margin: 0;
    font-size: 18px;
    color: #333;
}

.wx-login-close {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #999;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wx-login-close:hover {
    color: #333;
}

.wx-login-qr {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 200px;
    margin-bottom: 15px;
}

.wx-login-tips {
    text-align: center;
    color: #666;
    font-size: 14px;
}

.wx-login-modal.show {
    display: flex;
    justify-content: center;
    align-items: center;
}

.wx-login-content {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    width: 90%;
    max-width: 420px;
    animation: slideUp 0.3s ease;
}

.wx-login-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 25px 15px;
    border-bottom: 1px solid #f0f0f0;
}

.wx-login-title {
    font-size: 22px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
}

.wx-login-close {
    background: none;
    border: none;
    font-size: 28px;
    color: #999;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.wx-login-close:hover {
    background-color: #f5f5f5;
    color: #666;
}

.wx-login-body {
    padding: 20px 25px 25px;
}

.wx-login-methods {
    text-align: center;
}

.wx-qr-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
}

.wx-qr-placeholder {
    width: 200px;
    height: 200px;
    border: 2px solid #e9ecef;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #ffffff;
}

.wx-qr-image {
    width: 200px;
    height: 200px;
    border: 2px solid #07c160;
    border-radius: 15px;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wx-qr-image canvas {
    border-radius: 12px;
}

.wx-login-tip {
    font-size: 14px;
    color: #666;
    margin: 10px 0 0 0;
}

/* 备用方案样式 */
.wx-fallback {
    text-align: center;
}

.fallback-content {
    padding: 20px;
}

.fallback-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.fallback-content h4 {
    font-size: 18px;
    color: #2c3e50;
    margin-bottom: 10px;
}

.fallback-content p {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.4;
}

.fallback-options {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.mini-program-icon {
    margin-right: 8px;
}

/* 用户信息弹窗样式 */
.user-info-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0. 0.6);
    z-index: 1000;
    animation: fadeIn 0.3s ease;
}

.user-info-modal.show {
    display: flex;
    justify-content: center;
    align-items: center;
}

.user-info-content {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    width: 90%;
    max-width: 500px;
    max-height: 80vh;
    overflow-y: auto;
    animation: slideUp 0.3s ease;
}

.user-info-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 25px 15px;
    border-bottom: 1px solid #f0f0f0;
}

.user-info-title {
    font-size: 22px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
}

.user-info-close {
    background: none;
    border: none;
    font-size: 28px;
    color: #999;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.user-info-close:hover {
    background-color: #f5f5f5;
    color: #666;
}

.user-info-body {
    padding: 20px 25px 25px;
}

.user-avatar-container {
    display: flex;
    justify-content: center;
    margin-bottom: 25px;
    position: relative;
}

.user-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid #07c160;
    object-fit: cover;
    background: #f5f5f5;
}

.user-avatar-loading {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid #07c160;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
}

.user-details {
    margin-bottom: 25px;
}

.user-detail-item {
    display: flex;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #f5f5f5;
}

.detail-label {
    font-size: 14px;
    color: #666;
    min-width: 100px;
    font-weight: 500;
}

.detail-value {
    font-size: 14px;
    color: #2c3e50;
    flex: 1;
}

.detail-value.user-uuid {
    font-family: monospace;
    font-size: 12px;
    color: #666;
    word-break: break-all;
}

.user-info-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .wx-login-content {
        width: 95%;
        margin: 20px;
    }
    
    .user-info-content {
        width: 95%;
        margin: 20px;
    }
    
    .fallback-options {
        flex-direction: column;
    }
    
    .user-info-actions {
        flex-direction: column;
    }
}

/* 滑动条控制 */
.slider-control {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* 微信登录弹窗样式 */
.wx-login-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1000;
    animation: fadeIn 0.3s ease;
}

.wx-login-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    max-width: 400px;
    width: 90%;
}

.wx-login-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.wx-login-header h3 {
    margin: 0;
    font-size: 18px;
    color: #333;
}

.wx-login-close {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #999;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wx-login-close:hover {
    color: #333;
}

.wx-login-qr {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 200px;
    margin-bottom: 15px;
}

.wx-login-tips {
    text-align: center;
    color: #666;
    font-size: 14px;
}

.wx-login-modal.show {
    display: flex;
    justify-content: center;
    align-items: center;
}

.wx-login-content {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    width: 90%;
    max-width: 420px;
    animation: slideUp 0.3s ease;
}

.wx-login-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 25px 15px;
    border-bottom: 1px solid #f0f0f0;
}

.wx-login-title {
    font-size: 22px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
}

.wx-login-close {
    background: none;
    border: none;
    font-size: 28px;
    color: #999;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.wx-login-close:hover {
    background-color: #f5f5f5;
    color: #666;
}

.wx-login-body {
    padding: 20px 25px 25px;
}

.wx-login-methods {
    text-align: center;
}

.wx-qr-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
}

.wx-qr-placeholder {
    width: 200px;
    height: 200px;
    border: 2px solid #e9ecef;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #ffffff;
}

.wx-qr-image {
    width: 200px;
    height: 200px;
    border: 2px solid #07c160;
    border-radius: 15px;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wx-qr-image canvas {
    border-radius: 12px;
}

.wx-login-tip {
    font-size: 14px;
    color: #666;
    margin: 10px 0 0 0;
}

/* 备用方案样式 */
.wx-fallback {
    text-align: center;
}

.fallback-content {
    padding: 20px;
}

.fallback-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.fallback-content h4 {
    font-size: 18px;
    color: #2c3e50;
    margin-bottom: 10px;
}

.fallback-content p {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.4;
}

.fallback-options {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.mini-program-icon {
    margin-right: 8px;
}

/* 用户信息弹窗样式 */
.user-info-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0. 0.6);
    z-index: 1000;
    animation: fadeIn 0.3s ease;
}

.user-info-modal.show {
    display: flex;
    justify-content: center;
    align-items: center;
}

.user-info-content {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    width: 90%;
    max-width: 500px;
    max-height: 80vh;
    overflow-y: auto;
    animation: slideUp 0.3s ease;
}

.user-info-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 25px 15px;
    border-bottom: 1px solid #f0f0f0;
}

.user-info-title {
    font-size: 22px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
}

.user-info-close {
    background: none;
    border: none;
    font-size: 28px;
    color: #999;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.user-info-close:hover {
    background-color: #f5f5f5;
    color: #666;
}

.user-info-body {
    padding: 20px 25px 25px;
}

.user-avatar-container {
    display: flex;
    justify-content: center;
    margin-bottom: 25px;
    position: relative;
}

.user-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid #07c160;
    object-fit: cover;
    background: #f5f5f5;
}

.user-avatar-loading {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid #07c160;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
}

.user-details {
    margin-bottom: 25px;
}

.user-detail-item {
    display: flex;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #f5f5f5;
}

.detail-label {
    font-size: 14px;
    color: #666;
    min-width: 100px;
    font-weight: 500;
}

.detail-value {
    font-size: 14px;
    color: #2c3e50;
    flex: 1;
}

.detail-value.user-uuid {
    font-family: monospace;
    font-size: 12px;
    color: #666;
    word-break: break-all;
}

.user-info-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .wx-login-content {
        width: 95%;
        margin: 20px;
    }
    
    .user-info-content {
        width: 95%;
        margin: 20px;
    }
    
    .fallback-options {
        flex-direction: column;
    }
    
    .user-info-actions {
        flex-direction: column;
    }
}

input[type="range"] {
    flex: 1;
    height: 6px;
    border-radius: 3px;
    background: #ddd;
    outline: none;
    -webkit-appearance: none;
}

/* 微信登录弹窗样式 */
.wx-login-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1000;
    animation: fadeIn 0.3s ease;
}

.wx-login-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    max-width: 400px;
    width: 90%;
}

.wx-login-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.wx-login-header h3 {
    margin: 0;
    font-size: 18px;
    color: #333;
}

.wx-login-close {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #999;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wx-login-close:hover {
    color: #333;
}

.wx-login-qr {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 200px;
    margin-bottom: 15px;
}

.wx-login-tips {
    text-align: center;
    color: #666;
    font-size: 14px;
}

.wx-login-modal.show {
    display: flex;
    justify-content: center;
    align-items: center;
}

.wx-login-content {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    width: 90%;
    max-width: 420px;
    animation: slideUp 0.3s ease;
}

.wx-login-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 25px 15px;
    border-bottom: 1px solid #f0f0f0;
}

.wx-login-title {
    font-size: 22px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
}

.wx-login-close {
    background: none;
    border: none;
    font-size: 28px;
    color: #999;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.wx-login-close:hover {
    background-color: #f5f5f5;
    color: #666;
}

.wx-login-body {
    padding: 20px 25px 25px;
}

.wx-login-methods {
    text-align: center;
}

.wx-qr-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
}

.wx-qr-placeholder {
    width: 200px;
    height: 200px;
    border: 2px solid #e9ecef;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #ffffff;
}

.wx-qr-image {
    width: 200px;
    height: 200px;
    border: 2px solid #07c160;
    border-radius: 15px;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wx-qr-image canvas {
    border-radius: 12px;
}

.wx-login-tip {
    font-size: 14px;
    color: #666;
    margin: 10px 0 0 0;
}

/* 备用方案样式 */
.wx-fallback {
    text-align: center;
}

.fallback-content {
    padding: 20px;
}

.fallback-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.fallback-content h4 {
    font-size: 18px;
    color: #2c3e50;
    margin-bottom: 10px;
}

.fallback-content p {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.4;
}

.fallback-options {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.mini-program-icon {
    margin-right: 8px;
}

/* 用户信息弹窗样式 */
.user-info-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0. 0.6);
    z-index: 1000;
    animation: fadeIn 0.3s ease;
}

.user-info-modal.show {
    display: flex;
    justify-content: center;
    align-items: center;
}

.user-info-content {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    width: 90%;
    max-width: 500px;
    max-height: 80vh;
    overflow-y: auto;
    animation: slideUp 0.3s ease;
}

.user-info-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 25px 15px;
    border-bottom: 1px solid #f0f0f0;
}

.user-info-title {
    font-size: 22px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
}

.user-info-close {
    background: none;
    border: none;
    font-size: 28px;
    color: #999;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.user-info-close:hover {
    background-color: #f5f5f5;
    color: #666;
}

.user-info-body {
    padding: 20px 25px 25px;
}

.user-avatar-container {
    display: flex;
    justify-content: center;
    margin-bottom: 25px;
    position: relative;
}

.user-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid #07c160;
    object-fit: cover;
    background: #f5f5f5;
}

.user-avatar-loading {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid #07c160;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
}

.user-details {
    margin-bottom: 25px;
}

.user-detail-item {
    display: flex;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #f5f5f5;
}

.detail-label {
    font-size: 14px;
    color: #666;
    min-width: 100px;
    font-weight: 500;
}

.detail-value {
    font-size: 14px;
    color: #2c3e50;
    flex: 1;
}

.detail-value.user-uuid {
    font-family: monospace;
    font-size: 12px;
    color: #666;
    word-break: break-all;
}

.user-info-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .wx-login-content {
        width: 95%;
        margin: 20px;
    }
    
    .user-info-content {
        width: 95%;
        margin: 20px;
    }
    
    .fallback-options {
        flex-direction: column;
    }
    
    .user-info-actions {
        flex-direction: column;
    }
}

input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #ff4757;
    cursor: pointer;
}

/* 微信登录弹窗样式 */
.wx-login-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1000;
    animation: fadeIn 0.3s ease;
}

.wx-login-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    max-width: 400px;
    width: 90%;
}

.wx-login-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.wx-login-header h3 {
    margin: 0;
    font-size: 18px;
    color: #333;
}

.wx-login-close {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #999;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wx-login-close:hover {
    color: #333;
}

.wx-login-qr {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 200px;
    margin-bottom: 15px;
}

.wx-login-tips {
    text-align: center;
    color: #666;
    font-size: 14px;
}

.wx-login-modal.show {
    display: flex;
    justify-content: center;
    align-items: center;
}

.wx-login-content {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    width: 90%;
    max-width: 420px;
    animation: slideUp 0.3s ease;
}

.wx-login-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 25px 15px;
    border-bottom: 1px solid #f0f0f0;
}

.wx-login-title {
    font-size: 22px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
}

.wx-login-close {
    background: none;
    border: none;
    font-size: 28px;
    color: #999;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.wx-login-close:hover {
    background-color: #f5f5f5;
    color: #666;
}

.wx-login-body {
    padding: 20px 25px 25px;
}

.wx-login-methods {
    text-align: center;
}

.wx-qr-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
}

.wx-qr-placeholder {
    width: 200px;
    height: 200px;
    border: 2px solid #e9ecef;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #ffffff;
}

.wx-qr-image {
    width: 200px;
    height: 200px;
    border: 2px solid #07c160;
    border-radius: 15px;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wx-qr-image canvas {
    border-radius: 12px;
}

.wx-login-tip {
    font-size: 14px;
    color: #666;
    margin: 10px 0 0 0;
}

/* 备用方案样式 */
.wx-fallback {
    text-align: center;
}

.fallback-content {
    padding: 20px;
}

.fallback-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.fallback-content h4 {
    font-size: 18px;
    color: #2c3e50;
    margin-bottom: 10px;
}

.fallback-content p {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.4;
}

.fallback-options {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.mini-program-icon {
    margin-right: 8px;
}

/* 用户信息弹窗样式 */
.user-info-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0. 0.6);
    z-index: 1000;
    animation: fadeIn 0.3s ease;
}

.user-info-modal.show {
    display: flex;
    justify-content: center;
    align-items: center;
}

.user-info-content {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    width: 90%;
    max-width: 500px;
    max-height: 80vh;
    overflow-y: auto;
    animation: slideUp 0.3s ease;
}

.user-info-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 25px 15px;
    border-bottom: 1px solid #f0f0f0;
}

.user-info-title {
    font-size: 22px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
}

.user-info-close {
    background: none;
    border: none;
    font-size: 28px;
    color: #999;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.user-info-close:hover {
    background-color: #f5f5f5;
    color: #666;
}

.user-info-body {
    padding: 20px 25px 25px;
}

.user-avatar-container {
    display: flex;
    justify-content: center;
    margin-bottom: 25px;
    position: relative;
}

.user-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid #07c160;
    object-fit: cover;
    background: #f5f5f5;
}

.user-avatar-loading {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid #07c160;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
}

.user-details {
    margin-bottom: 25px;
}

.user-detail-item {
    display: flex;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #f5f5f5;
}

.detail-label {
    font-size: 14px;
    color: #666;
    min-width: 100px;
    font-weight: 500;
}

.detail-value {
    font-size: 14px;
    color: #2c3e50;
    flex: 1;
}

.detail-value.user-uuid {
    font-family: monospace;
    font-size: 12px;
    color: #666;
    word-break: break-all;
}

.user-info-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .wx-login-content {
        width: 95%;
        margin: 20px;
    }
    
    .user-info-content {
        width: 95%;
        margin: 20px;
    }
    
    .fallback-options {
        flex-direction: column;
    }
    
    .user-info-actions {
        flex-direction: column;
    }
}

input[type="range"]::-moz-range-thumb {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #ff4757;
    cursor: pointer;
    border: none;
}

/* 微信登录弹窗样式 */
.wx-login-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1000;
    animation: fadeIn 0.3s ease;
}

.wx-login-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    max-width: 400px;
    width: 90%;
}

.wx-login-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.wx-login-header h3 {
    margin: 0;
    font-size: 18px;
    color: #333;
}

.wx-login-close {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #999;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wx-login-close:hover {
    color: #333;
}

.wx-login-qr {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 200px;
    margin-bottom: 15px;
}

.wx-login-tips {
    text-align: center;
    color: #666;
    font-size: 14px;
}

.wx-login-modal.show {
    display: flex;
    justify-content: center;
    align-items: center;
}

.wx-login-content {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    width: 90%;
    max-width: 420px;
    animation: slideUp 0.3s ease;
}

.wx-login-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 25px 15px;
    border-bottom: 1px solid #f0f0f0;
}

.wx-login-title {
    font-size: 22px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
}

.wx-login-close {
    background: none;
    border: none;
    font-size: 28px;
    color: #999;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.wx-login-close:hover {
    background-color: #f5f5f5;
    color: #666;
}

.wx-login-body {
    padding: 20px 25px 25px;
}

.wx-login-methods {
    text-align: center;
}

.wx-qr-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
}

.wx-qr-placeholder {
    width: 200px;
    height: 200px;
    border: 2px solid #e9ecef;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #ffffff;
}

.wx-qr-image {
    width: 200px;
    height: 200px;
    border: 2px solid #07c160;
    border-radius: 15px;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wx-qr-image canvas {
    border-radius: 12px;
}

.wx-login-tip {
    font-size: 14px;
    color: #666;
    margin: 10px 0 0 0;
}

/* 备用方案样式 */
.wx-fallback {
    text-align: center;
}

.fallback-content {
    padding: 20px;
}

.fallback-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.fallback-content h4 {
    font-size: 18px;
    color: #2c3e50;
    margin-bottom: 10px;
}

.fallback-content p {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.4;
}

.fallback-options {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.mini-program-icon {
    margin-right: 8px;
}

/* 用户信息弹窗样式 */
.user-info-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0. 0.6);
    z-index: 1000;
    animation: fadeIn 0.3s ease;
}

.user-info-modal.show {
    display: flex;
    justify-content: center;
    align-items: center;
}

.user-info-content {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    width: 90%;
    max-width: 500px;
    max-height: 80vh;
    overflow-y: auto;
    animation: slideUp 0.3s ease;
}

.user-info-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 25px 15px;
    border-bottom: 1px solid #f0f0f0;
}

.user-info-title {
    font-size: 22px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
}

.user-info-close {
    background: none;
    border: none;
    font-size: 28px;
    color: #999;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.user-info-close:hover {
    background-color: #f5f5f5;
    color: #666;
}

.user-info-body {
    padding: 20px 25px 25px;
}

.user-avatar-container {
    display: flex;
    justify-content: center;
    margin-bottom: 25px;
    position: relative;
}

.user-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid #07c160;
    object-fit: cover;
    background: #f5f5f5;
}

.user-avatar-loading {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid #07c160;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
}

.user-details {
    margin-bottom: 25px;
}

.user-detail-item {
    display: flex;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #f5f5f5;
}

.detail-label {
    font-size: 14px;
    color: #666;
    min-width: 100px;
    font-weight: 500;
}

.detail-value {
    font-size: 14px;
    color: #2c3e50;
    flex: 1;
}

.detail-value.user-uuid {
    font-family: monospace;
    font-size: 12px;
    color: #666;
    word-break: break-all;
}

.user-info-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .wx-login-content {
        width: 95%;
        margin: 20px;
    }
    
    .user-info-content {
        width: 95%;
        margin: 20px;
    }
    
    .fallback-options {
        flex-direction: column;
    }
    
    .user-info-actions {
        flex-direction: column;
    }
}

.slider-value {
    min-width: 40px;
    text-align: right;
    font-size: 14px;
    color: #666;
}

/* 微信登录弹窗样式 */
.wx-login-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1000;
    animation: fadeIn 0.3s ease;
}

.wx-login-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    max-width: 400px;
    width: 90%;
}

.wx-login-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.wx-login-header h3 {
    margin: 0;
    font-size: 18px;
    color: #333;
}

.wx-login-close {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #999;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wx-login-close:hover {
    color: #333;
}

.wx-login-qr {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 200px;
    margin-bottom: 15px;
}

.wx-login-tips {
    text-align: center;
    color: #666;
    font-size: 14px;
}

.wx-login-modal.show {
    display: flex;
    justify-content: center;
    align-items: center;
}

.wx-login-content {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    width: 90%;
    max-width: 420px;
    animation: slideUp 0.3s ease;
}

.wx-login-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 25px 15px;
    border-bottom: 1px solid #f0f0f0;
}

.wx-login-title {
    font-size: 22px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
}

.wx-login-close {
    background: none;
    border: none;
    font-size: 28px;
    color: #999;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.wx-login-close:hover {
    background-color: #f5f5f5;
    color: #666;
}

.wx-login-body {
    padding: 20px 25px 25px;
}

.wx-login-methods {
    text-align: center;
}

.wx-qr-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
}

.wx-qr-placeholder {
    width: 200px;
    height: 200px;
    border: 2px solid #e9ecef;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #ffffff;
}

.wx-qr-image {
    width: 200px;
    height: 200px;
    border: 2px solid #07c160;
    border-radius: 15px;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wx-qr-image canvas {
    border-radius: 12px;
}

.wx-login-tip {
    font-size: 14px;
    color: #666;
    margin: 10px 0 0 0;
}

/* 备用方案样式 */
.wx-fallback {
    text-align: center;
}

.fallback-content {
    padding: 20px;
}

.fallback-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.fallback-content h4 {
    font-size: 18px;
    color: #2c3e50;
    margin-bottom: 10px;
}

.fallback-content p {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.4;
}

.fallback-options {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.mini-program-icon {
    margin-right: 8px;
}

/* 用户信息弹窗样式 */
.user-info-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0. 0.6);
    z-index: 1000;
    animation: fadeIn 0.3s ease;
}

.user-info-modal.show {
    display: flex;
    justify-content: center;
    align-items: center;
}

.user-info-content {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    width: 90%;
    max-width: 500px;
    max-height: 80vh;
    overflow-y: auto;
    animation: slideUp 0.3s ease;
}

.user-info-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 25px 15px;
    border-bottom: 1px solid #f0f0f0;
}

.user-info-title {
    font-size: 22px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
}

.user-info-close {
    background: none;
    border: none;
    font-size: 28px;
    color: #999;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.user-info-close:hover {
    background-color: #f5f5f5;
    color: #666;
}

.user-info-body {
    padding: 20px 25px 25px;
}

.user-avatar-container {
    display: flex;
    justify-content: center;
    margin-bottom: 25px;
    position: relative;
}

.user-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid #07c160;
    object-fit: cover;
    background: #f5f5f5;
}

.user-avatar-loading {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid #07c160;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
}

.user-details {
    margin-bottom: 25px;
}

.user-detail-item {
    display: flex;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #f5f5f5;
}

.detail-label {
    font-size: 14px;
    color: #666;
    min-width: 100px;
    font-weight: 500;
}

.detail-value {
    font-size: 14px;
    color: #2c3e50;
    flex: 1;
}

.detail-value.user-uuid {
    font-family: monospace;
    font-size: 12px;
    color: #666;
    word-break: break-all;
}

.user-info-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .wx-login-content {
        width: 95%;
        margin: 20px;
    }
    
    .user-info-content {
        width: 95%;
        margin: 20px;
    }
    
    .fallback-options {
        flex-direction: column;
    }
    
    .user-info-actions {
        flex-direction: column;
    }
}

/* 文本设置分组 */
.text-settings-group {
    margin-bottom: 20px;
    padding: 15px;
    background-color: #f8f9fa;
    border-radius: 6px;
    border: 1px solid #e9ecef;
}

/* 微信登录弹窗样式 */
.wx-login-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1000;
    animation: fadeIn 0.3s ease;
}

.wx-login-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    max-width: 400px;
    width: 90%;
}

.wx-login-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.wx-login-header h3 {
    margin: 0;
    font-size: 18px;
    color: #333;
}

.wx-login-close {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #999;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wx-login-close:hover {
    color: #333;
}

.wx-login-qr {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 200px;
    margin-bottom: 15px;
}

.wx-login-tips {
    text-align: center;
    color: #666;
    font-size: 14px;
}

.wx-login-modal.show {
    display: flex;
    justify-content: center;
    align-items: center;
}

.wx-login-content {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    width: 90%;
    max-width: 420px;
    animation: slideUp 0.3s ease;
}

.wx-login-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 25px 15px;
    border-bottom: 1px solid #f0f0f0;
}

.wx-login-title {
    font-size: 22px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
}

.wx-login-close {
    background: none;
    border: none;
    font-size: 28px;
    color: #999;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.wx-login-close:hover {
    background-color: #f5f5f5;
    color: #666;
}

.wx-login-body {
    padding: 20px 25px 25px;
}

.wx-login-methods {
    text-align: center;
}

.wx-qr-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
}

.wx-qr-placeholder {
    width: 200px;
    height: 200px;
    border: 2px solid #e9ecef;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #ffffff;
}

.wx-qr-image {
    width: 200px;
    height: 200px;
    border: 2px solid #07c160;
    border-radius: 15px;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wx-qr-image canvas {
    border-radius: 12px;
}

.wx-login-tip {
    font-size: 14px;
    color: #666;
    margin: 10px 0 0 0;
}

/* 备用方案样式 */
.wx-fallback {
    text-align: center;
}

.fallback-content {
    padding: 20px;
}

.fallback-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.fallback-content h4 {
    font-size: 18px;
    color: #2c3e50;
    margin-bottom: 10px;
}

.fallback-content p {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.4;
}

.fallback-options {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.mini-program-icon {
    margin-right: 8px;
}

/* 用户信息弹窗样式 */
.user-info-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0. 0.6);
    z-index: 1000;
    animation: fadeIn 0.3s ease;
}

.user-info-modal.show {
    display: flex;
    justify-content: center;
    align-items: center;
}

.user-info-content {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    width: 90%;
    max-width: 500px;
    max-height: 80vh;
    overflow-y: auto;
    animation: slideUp 0.3s ease;
}

.user-info-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 25px 15px;
    border-bottom: 1px solid #f0f0f0;
}

.user-info-title {
    font-size: 22px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
}

.user-info-close {
    background: none;
    border: none;
    font-size: 28px;
    color: #999;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.user-info-close:hover {
    background-color: #f5f5f5;
    color: #666;
}

.user-info-body {
    padding: 20px 25px 25px;
}

.user-avatar-container {
    display: flex;
    justify-content: center;
    margin-bottom: 25px;
    position: relative;
}

.user-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid #07c160;
    object-fit: cover;
    background: #f5f5f5;
}

.user-avatar-loading {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid #07c160;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
}

.user-details {
    margin-bottom: 25px;
}

.user-detail-item {
    display: flex;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #f5f5f5;
}

.detail-label {
    font-size: 14px;
    color: #666;
    min-width: 100px;
    font-weight: 500;
}

.detail-value {
    font-size: 14px;
    color: #2c3e50;
    flex: 1;
}

.detail-value.user-uuid {
    font-family: monospace;
    font-size: 12px;
    color: #666;
    word-break: break-all;
}

.user-info-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .wx-login-content {
        width: 95%;
        margin: 20px;
    }
    
    .user-info-content {
        width: 95%;
        margin: 20px;
    }
    
    .fallback-options {
        flex-direction: column;
    }
    
    .user-info-actions {
        flex-direction: column;
    }
}

.settings-group-title {
    margin: 0 0 15px 0;
    font-size: 14px;
    font-weight: 600;
    color: #495057;
    border-bottom: 2px solid #007bff;
    padding-bottom: 5px;
}

/* 微信登录弹窗样式 */
.wx-login-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1000;
    animation: fadeIn 0.3s ease;
}

.wx-login-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    max-width: 400px;
    width: 90%;
}

.wx-login-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.wx-login-header h3 {
    margin: 0;
    font-size: 18px;
    color: #333;
}

.wx-login-close {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #999;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wx-login-close:hover {
    color: #333;
}

.wx-login-qr {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 200px;
    margin-bottom: 15px;
}

.wx-login-tips {
    text-align: center;
    color: #666;
    font-size: 14px;
}

.wx-login-modal.show {
    display: flex;
    justify-content: center;
    align-items: center;
}

.wx-login-content {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    width: 90%;
    max-width: 420px;
    animation: slideUp 0.3s ease;
}

.wx-login-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 25px 15px;
    border-bottom: 1px solid #f0f0f0;
}

.wx-login-title {
    font-size: 22px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
}

.wx-login-close {
    background: none;
    border: none;
    font-size: 28px;
    color: #999;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.wx-login-close:hover {
    background-color: #f5f5f5;
    color: #666;
}

.wx-login-body {
    padding: 20px 25px 25px;
}

.wx-login-methods {
    text-align: center;
}

.wx-qr-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
}

.wx-qr-placeholder {
    width: 200px;
    height: 200px;
    border: 2px solid #e9ecef;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #ffffff;
}

.wx-qr-image {
    width: 200px;
    height: 200px;
    border: 2px solid #07c160;
    border-radius: 15px;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wx-qr-image canvas {
    border-radius: 12px;
}

.wx-login-tip {
    font-size: 14px;
    color: #666;
    margin: 10px 0 0 0;
}

/* 备用方案样式 */
.wx-fallback {
    text-align: center;
}

.fallback-content {
    padding: 20px;
}

.fallback-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.fallback-content h4 {
    font-size: 18px;
    color: #2c3e50;
    margin-bottom: 10px;
}

.fallback-content p {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.4;
}

.fallback-options {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.mini-program-icon {
    margin-right: 8px;
}

/* 用户信息弹窗样式 */
.user-info-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0. 0.6);
    z-index: 1000;
    animation: fadeIn 0.3s ease;
}

.user-info-modal.show {
    display: flex;
    justify-content: center;
    align-items: center;
}

.user-info-content {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    width: 90%;
    max-width: 500px;
    max-height: 80vh;
    overflow-y: auto;
    animation: slideUp 0.3s ease;
}

.user-info-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 25px 15px;
    border-bottom: 1px solid #f0f0f0;
}

.user-info-title {
    font-size: 22px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
}

.user-info-close {
    background: none;
    border: none;
    font-size: 28px;
    color: #999;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.user-info-close:hover {
    background-color: #f5f5f5;
    color: #666;
}

.user-info-body {
    padding: 20px 25px 25px;
}

.user-avatar-container {
    display: flex;
    justify-content: center;
    margin-bottom: 25px;
    position: relative;
}

.user-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid #07c160;
    object-fit: cover;
    background: #f5f5f5;
}

.user-avatar-loading {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid #07c160;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
}

.user-details {
    margin-bottom: 25px;
}

.user-detail-item {
    display: flex;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #f5f5f5;
}

.detail-label {
    font-size: 14px;
    color: #666;
    min-width: 100px;
    font-weight: 500;
}

.detail-value {
    font-size: 14px;
    color: #2c3e50;
    flex: 1;
}

.detail-value.user-uuid {
    font-family: monospace;
    font-size: 12px;
    color: #666;
    word-break: break-all;
}

.user-info-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .wx-login-content {
        width: 95%;
        margin: 20px;
    }
    
    .user-info-content {
        width: 95%;
        margin: 20px;
    }
    
    .fallback-options {
        flex-direction: column;
    }
    
    .user-info-actions {
        flex-direction: column;
    }
}

/* 底部下载区域 */
.download-area {
    padding: 20px;
    text-align: center;
}

/* 微信登录弹窗样式 */
.wx-login-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1000;
    animation: fadeIn 0.3s ease;
}

.wx-login-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    max-width: 400px;
    width: 90%;
}

.wx-login-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.wx-login-header h3 {
    margin: 0;
    font-size: 18px;
    color: #333;
}

.wx-login-close {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #999;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wx-login-close:hover {
    color: #333;
}

.wx-login-qr {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 200px;
    margin-bottom: 15px;
}

.wx-login-tips {
    text-align: center;
    color: #666;
    font-size: 14px;
}

.wx-login-modal.show {
    display: flex;
    justify-content: center;
    align-items: center;
}

.wx-login-content {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    width: 90%;
    max-width: 420px;
    animation: slideUp 0.3s ease;
}

.wx-login-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 25px 15px;
    border-bottom: 1px solid #f0f0f0;
}

.wx-login-title {
    font-size: 22px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
}

.wx-login-close {
    background: none;
    border: none;
    font-size: 28px;
    color: #999;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.wx-login-close:hover {
    background-color: #f5f5f5;
    color: #666;
}

.wx-login-body {
    padding: 20px 25px 25px;
}

.wx-login-methods {
    text-align: center;
}

.wx-qr-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
}

.wx-qr-placeholder {
    width: 200px;
    height: 200px;
    border: 2px solid #e9ecef;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #ffffff;
}

.wx-qr-image {
    width: 200px;
    height: 200px;
    border: 2px solid #07c160;
    border-radius: 15px;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wx-qr-image canvas {
    border-radius: 12px;
}

.wx-login-tip {
    font-size: 14px;
    color: #666;
    margin: 10px 0 0 0;
}

/* 备用方案样式 */
.wx-fallback {
    text-align: center;
}

.fallback-content {
    padding: 20px;
}

.fallback-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.fallback-content h4 {
    font-size: 18px;
    color: #2c3e50;
    margin-bottom: 10px;
}

.fallback-content p {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.4;
}

.fallback-options {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.mini-program-icon {
    margin-right: 8px;
}

/* 用户信息弹窗样式 */
.user-info-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0. 0.6);
    z-index: 1000;
    animation: fadeIn 0.3s ease;
}

.user-info-modal.show {
    display: flex;
    justify-content: center;
    align-items: center;
}

.user-info-content {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    width: 90%;
    max-width: 500px;
    max-height: 80vh;
    overflow-y: auto;
    animation: slideUp 0.3s ease;
}

.user-info-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 25px 15px;
    border-bottom: 1px solid #f0f0f0;
}

.user-info-title {
    font-size: 22px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
}

.user-info-close {
    background: none;
    border: none;
    font-size: 28px;
    color: #999;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.user-info-close:hover {
    background-color: #f5f5f5;
    color: #666;
}

.user-info-body {
    padding: 20px 25px 25px;
}

.user-avatar-container {
    display: flex;
    justify-content: center;
    margin-bottom: 25px;
    position: relative;
}

.user-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid #07c160;
    object-fit: cover;
    background: #f5f5f5;
}

.user-avatar-loading {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid #07c160;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
}

.user-details {
    margin-bottom: 25px;
}

.user-detail-item {
    display: flex;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #f5f5f5;
}

.detail-label {
    font-size: 14px;
    color: #666;
    min-width: 100px;
    font-weight: 500;
}

.detail-value {
    font-size: 14px;
    color: #2c3e50;
    flex: 1;
}

.detail-value.user-uuid {
    font-family: monospace;
    font-size: 12px;
    color: #666;
    word-break: break-all;
}

.user-info-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .wx-login-content {
        width: 95%;
        margin: 20px;
    }
    
    .user-info-content {
        width: 95%;
        margin: 20px;
    }
    
    .fallback-options {
        flex-direction: column;
    }
    
    .user-info-actions {
        flex-direction: column;
    }
}


/* 模态框 */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

/* 微信登录弹窗样式 */
.wx-login-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1000;
    animation: fadeIn 0.3s ease;
}

.wx-login-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    max-width: 400px;
    width: 90%;
}

.wx-login-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.wx-login-header h3 {
    margin: 0;
    font-size: 18px;
    color: #333;
}

.wx-login-close {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #999;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wx-login-close:hover {
    color: #333;
}

.wx-login-qr {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 200px;
    margin-bottom: 15px;
}

.wx-login-tips {
    text-align: center;
    color: #666;
    font-size: 14px;
}

.wx-login-modal.show {
    display: flex;
    justify-content: center;
    align-items: center;
}

.wx-login-content {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    width: 90%;
    max-width: 420px;
    animation: slideUp 0.3s ease;
}

.wx-login-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 25px 15px;
    border-bottom: 1px solid #f0f0f0;
}

.wx-login-title {
    font-size: 22px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
}

.wx-login-close {
    background: none;
    border: none;
    font-size: 28px;
    color: #999;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.wx-login-close:hover {
    background-color: #f5f5f5;
    color: #666;
}

.wx-login-body {
    padding: 20px 25px 25px;
}

.wx-login-methods {
    text-align: center;
}

.wx-qr-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
}

.wx-qr-placeholder {
    width: 200px;
    height: 200px;
    border: 2px solid #e9ecef;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #ffffff;
}

.wx-qr-image {
    width: 200px;
    height: 200px;
    border: 2px solid #07c160;
    border-radius: 15px;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wx-qr-image canvas {
    border-radius: 12px;
}

.wx-login-tip {
    font-size: 14px;
    color: #666;
    margin: 10px 0 0 0;
}

/* 备用方案样式 */
.wx-fallback {
    text-align: center;
}

.fallback-content {
    padding: 20px;
}

.fallback-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.fallback-content h4 {
    font-size: 18px;
    color: #2c3e50;
    margin-bottom: 10px;
}

.fallback-content p {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.4;
}

.fallback-options {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.mini-program-icon {
    margin-right: 8px;
}

/* 用户信息弹窗样式 */
.user-info-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0. 0.6);
    z-index: 1000;
    animation: fadeIn 0.3s ease;
}

.user-info-modal.show {
    display: flex;
    justify-content: center;
    align-items: center;
}

.user-info-content {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    width: 90%;
    max-width: 500px;
    max-height: 80vh;
    overflow-y: auto;
    animation: slideUp 0.3s ease;
}

.user-info-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 25px 15px;
    border-bottom: 1px solid #f0f0f0;
}

.user-info-title {
    font-size: 22px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
}

.user-info-close {
    background: none;
    border: none;
    font-size: 28px;
    color: #999;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.user-info-close:hover {
    background-color: #f5f5f5;
    color: #666;
}

.user-info-body {
    padding: 20px 25px 25px;
}

.user-avatar-container {
    display: flex;
    justify-content: center;
    margin-bottom: 25px;
    position: relative;
}

.user-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid #07c160;
    object-fit: cover;
    background: #f5f5f5;
}

.user-avatar-loading {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid #07c160;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
}

.user-details {
    margin-bottom: 25px;
}

.user-detail-item {
    display: flex;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #f5f5f5;
}

.detail-label {
    font-size: 14px;
    color: #666;
    min-width: 100px;
    font-weight: 500;
}

.detail-value {
    font-size: 14px;
    color: #2c3e50;
    flex: 1;
}

.detail-value.user-uuid {
    font-family: monospace;
    font-size: 12px;
    color: #666;
    word-break: break-all;
}

.user-info-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .wx-login-content {
        width: 95%;
        margin: 20px;
    }
    
    .user-info-content {
        width: 95%;
        margin: 20px;
    }
    
    .fallback-options {
        flex-direction: column;
    }
    
    .user-info-actions {
        flex-direction: column;
    }
}

.modal-content {
    background-color: #fff;
    margin: 5% auto;
    padding: 30px;
    border-radius: 8px;
    width: 92%;
    max-width: 900px;
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
}

/* 微信登录弹窗样式 */
.wx-login-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1000;
    animation: fadeIn 0.3s ease;
}

.wx-login-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    max-width: 400px;
    width: 90%;
}

.wx-login-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.wx-login-header h3 {
    margin: 0;
    font-size: 18px;
    color: #333;
}

.wx-login-close {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #999;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wx-login-close:hover {
    color: #333;
}

.wx-login-qr {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 200px;
    margin-bottom: 15px;
}

.wx-login-tips {
    text-align: center;
    color: #666;
    font-size: 14px;
}

.wx-login-modal.show {
    display: flex;
    justify-content: center;
    align-items: center;
}

.wx-login-content {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    width: 90%;
    max-width: 420px;
    animation: slideUp 0.3s ease;
}

.wx-login-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 25px 15px;
    border-bottom: 1px solid #f0f0f0;
}

.wx-login-title {
    font-size: 22px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
}

.wx-login-close {
    background: none;
    border: none;
    font-size: 28px;
    color: #999;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.wx-login-close:hover {
    background-color: #f5f5f5;
    color: #666;
}

.wx-login-body {
    padding: 20px 25px 25px;
}

.wx-login-methods {
    text-align: center;
}

.wx-qr-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
}

.wx-qr-placeholder {
    width: 200px;
    height: 200px;
    border: 2px solid #e9ecef;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #ffffff;
}

.wx-qr-image {
    width: 200px;
    height: 200px;
    border: 2px solid #07c160;
    border-radius: 15px;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wx-qr-image canvas {
    border-radius: 12px;
}

.wx-login-tip {
    font-size: 14px;
    color: #666;
    margin: 10px 0 0 0;
}

/* 备用方案样式 */
.wx-fallback {
    text-align: center;
}

.fallback-content {
    padding: 20px;
}

.fallback-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.fallback-content h4 {
    font-size: 18px;
    color: #2c3e50;
    margin-bottom: 10px;
}

.fallback-content p {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.4;
}

.fallback-options {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.mini-program-icon {
    margin-right: 8px;
}

/* 用户信息弹窗样式 */
.user-info-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0. 0.6);
    z-index: 1000;
    animation: fadeIn 0.3s ease;
}

.user-info-modal.show {
    display: flex;
    justify-content: center;
    align-items: center;
}

.user-info-content {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    width: 90%;
    max-width: 500px;
    max-height: 80vh;
    overflow-y: auto;
    animation: slideUp 0.3s ease;
}

.user-info-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 25px 15px;
    border-bottom: 1px solid #f0f0f0;
}

.user-info-title {
    font-size: 22px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
}

.user-info-close {
    background: none;
    border: none;
    font-size: 28px;
    color: #999;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.user-info-close:hover {
    background-color: #f5f5f5;
    color: #666;
}

.user-info-body {
    padding: 20px 25px 25px;
}

.user-avatar-container {
    display: flex;
    justify-content: center;
    margin-bottom: 25px;
    position: relative;
}

.user-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid #07c160;
    object-fit: cover;
    background: #f5f5f5;
}

.user-avatar-loading {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid #07c160;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
}

.user-details {
    margin-bottom: 25px;
}

.user-detail-item {
    display: flex;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #f5f5f5;
}

.detail-label {
    font-size: 14px;
    color: #666;
    min-width: 100px;
    font-weight: 500;
}

.detail-value {
    font-size: 14px;
    color: #2c3e50;
    flex: 1;
}

.detail-value.user-uuid {
    font-family: monospace;
    font-size: 12px;
    color: #666;
    word-break: break-all;
}

.user-info-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .wx-login-content {
        width: 95%;
        margin: 20px;
    }
    
    .user-info-content {
        width: 95%;
        margin: 20px;
    }
    
    .fallback-options {
        flex-direction: column;
    }
    
    .user-info-actions {
        flex-direction: column;
    }
}

.modal-close {
    position: absolute;
    right: 15px;
    top: 15px;
    font-size: 28px;
    font-weight: bold;
    color: #aaa;
    cursor: pointer;
}

/* 微信登录弹窗样式 */
.wx-login-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1000;
    animation: fadeIn 0.3s ease;
}

.wx-login-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    max-width: 400px;
    width: 90%;
}

.wx-login-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.wx-login-header h3 {
    margin: 0;
    font-size: 18px;
    color: #333;
}

.wx-login-close {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #999;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wx-login-close:hover {
    color: #333;
}

.wx-login-qr {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 200px;
    margin-bottom: 15px;
}

.wx-login-tips {
    text-align: center;
    color: #666;
    font-size: 14px;
}

.wx-login-modal.show {
    display: flex;
    justify-content: center;
    align-items: center;
}

.wx-login-content {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    width: 90%;
    max-width: 420px;
    animation: slideUp 0.3s ease;
}

.wx-login-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 25px 15px;
    border-bottom: 1px solid #f0f0f0;
}

.wx-login-title {
    font-size: 22px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
}

.wx-login-close {
    background: none;
    border: none;
    font-size: 28px;
    color: #999;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.wx-login-close:hover {
    background-color: #f5f5f5;
    color: #666;
}

.wx-login-body {
    padding: 20px 25px 25px;
}

.wx-login-methods {
    text-align: center;
}

.wx-qr-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
}

.wx-qr-placeholder {
    width: 200px;
    height: 200px;
    border: 2px solid #e9ecef;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #ffffff;
}

.wx-qr-image {
    width: 200px;
    height: 200px;
    border: 2px solid #07c160;
    border-radius: 15px;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wx-qr-image canvas {
    border-radius: 12px;
}

.wx-login-tip {
    font-size: 14px;
    color: #666;
    margin: 10px 0 0 0;
}

/* 备用方案样式 */
.wx-fallback {
    text-align: center;
}

.fallback-content {
    padding: 20px;
}

.fallback-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.fallback-content h4 {
    font-size: 18px;
    color: #2c3e50;
    margin-bottom: 10px;
}

.fallback-content p {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.4;
}

.fallback-options {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.mini-program-icon {
    margin-right: 8px;
}

/* 用户信息弹窗样式 */
.user-info-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0. 0.6);
    z-index: 1000;
    animation: fadeIn 0.3s ease;
}

.user-info-modal.show {
    display: flex;
    justify-content: center;
    align-items: center;
}

.user-info-content {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    width: 90%;
    max-width: 500px;
    max-height: 80vh;
    overflow-y: auto;
    animation: slideUp 0.3s ease;
}

.user-info-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 25px 15px;
    border-bottom: 1px solid #f0f0f0;
}

.user-info-title {
    font-size: 22px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
}

.user-info-close {
    background: none;
    border: none;
    font-size: 28px;
    color: #999;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.user-info-close:hover {
    background-color: #f5f5f5;
    color: #666;
}

.user-info-body {
    padding: 20px 25px 25px;
}

.user-avatar-container {
    display: flex;
    justify-content: center;
    margin-bottom: 25px;
    position: relative;
}

.user-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid #07c160;
    object-fit: cover;
    background: #f5f5f5;
}

.user-avatar-loading {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid #07c160;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
}

.user-details {
    margin-bottom: 25px;
}

.user-detail-item {
    display: flex;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #f5f5f5;
}

.detail-label {
    font-size: 14px;
    color: #666;
    min-width: 100px;
    font-weight: 500;
}

.detail-value {
    font-size: 14px;
    color: #2c3e50;
    flex: 1;
}

.detail-value.user-uuid {
    font-family: monospace;
    font-size: 12px;
    color: #666;
    word-break: break-all;
}

.user-info-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .wx-login-content {
        width: 95%;
        margin: 20px;
    }
    
    .user-info-content {
        width: 95%;
        margin: 20px;
    }
    
    .fallback-options {
        flex-direction: column;
    }
    
    .user-info-actions {
        flex-direction: column;
    }
}

.modal-close:hover {
    color: #333;
}

/* 微信登录弹窗样式 */
.wx-login-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1000;
    animation: fadeIn 0.3s ease;
}

.wx-login-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    max-width: 400px;
    width: 90%;
}

.wx-login-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.wx-login-header h3 {
    margin: 0;
    font-size: 18px;
    color: #333;
}

.wx-login-close {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #999;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wx-login-close:hover {
    color: #333;
}

.wx-login-qr {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 200px;
    margin-bottom: 15px;
}

.wx-login-tips {
    text-align: center;
    color: #666;
    font-size: 14px;
}

.wx-login-modal.show {
    display: flex;
    justify-content: center;
    align-items: center;
}

.wx-login-content {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    width: 90%;
    max-width: 420px;
    animation: slideUp 0.3s ease;
}

.wx-login-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 25px 15px;
    border-bottom: 1px solid #f0f0f0;
}

.wx-login-title {
    font-size: 22px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
}

.wx-login-close {
    background: none;
    border: none;
    font-size: 28px;
    color: #999;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.wx-login-close:hover {
    background-color: #f5f5f5;
    color: #666;
}

.wx-login-body {
    padding: 20px 25px 25px;
}

.wx-login-methods {
    text-align: center;
}

.wx-qr-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
}

.wx-qr-placeholder {
    width: 200px;
    height: 200px;
    border: 2px solid #e9ecef;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #ffffff;
}

.wx-qr-image {
    width: 200px;
    height: 200px;
    border: 2px solid #07c160;
    border-radius: 15px;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wx-qr-image canvas {
    border-radius: 12px;
}

.wx-login-tip {
    font-size: 14px;
    color: #666;
    margin: 10px 0 0 0;
}

/* 备用方案样式 */
.wx-fallback {
    text-align: center;
}

.fallback-content {
    padding: 20px;
}

.fallback-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.fallback-content h4 {
    font-size: 18px;
    color: #2c3e50;
    margin-bottom: 10px;
}

.fallback-content p {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.4;
}

.fallback-options {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.mini-program-icon {
    margin-right: 8px;
}

/* 用户信息弹窗样式 */
.user-info-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0. 0.6);
    z-index: 1000;
    animation: fadeIn 0.3s ease;
}

.user-info-modal.show {
    display: flex;
    justify-content: center;
    align-items: center;
}

.user-info-content {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    width: 90%;
    max-width: 500px;
    max-height: 80vh;
    overflow-y: auto;
    animation: slideUp 0.3s ease;
}

.user-info-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 25px 15px;
    border-bottom: 1px solid #f0f0f0;
}

.user-info-title {
    font-size: 22px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
}

.user-info-close {
    background: none;
    border: none;
    font-size: 28px;
    color: #999;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.user-info-close:hover {
    background-color: #f5f5f5;
    color: #666;
}

.user-info-body {
    padding: 20px 25px 25px;
}

.user-avatar-container {
    display: flex;
    justify-content: center;
    margin-bottom: 25px;
    position: relative;
}

.user-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid #07c160;
    object-fit: cover;
    background: #f5f5f5;
}

.user-avatar-loading {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid #07c160;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
}

.user-details {
    margin-bottom: 25px;
}

.user-detail-item {
    display: flex;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #f5f5f5;
}

.detail-label {
    font-size: 14px;
    color: #666;
    min-width: 100px;
    font-weight: 500;
}

.detail-value {
    font-size: 14px;
    color: #2c3e50;
    flex: 1;
}

.detail-value.user-uuid {
    font-family: monospace;
    font-size: 12px;
    color: #666;
    word-break: break-all;
}

.user-info-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .wx-login-content {
        width: 95%;
        margin: 20px;
    }
    
    .user-info-content {
        width: 95%;
        margin: 20px;
    }
    
    .fallback-options {
        flex-direction: column;
    }
    
    .user-info-actions {
        flex-direction: column;
    }
}

.modal-title {
    font-size: 20px;
    font-weight: bold;
    margin: 20px 0 20px 0;
    padding: 0 30px;
}

/* 微信登录弹窗样式 */
.wx-login-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1000;
    animation: fadeIn 0.3s ease;
}

.wx-login-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    max-width: 400px;
    width: 90%;
}

.wx-login-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.wx-login-header h3 {
    margin: 0;
    font-size: 18px;
    color: #333;
}

.wx-login-close {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #999;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wx-login-close:hover {
    color: #333;
}

.wx-login-qr {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 200px;
    margin-bottom: 15px;
}

.wx-login-tips {
    text-align: center;
    color: #666;
    font-size: 14px;
}

.wx-login-modal.show {
    display: flex;
    justify-content: center;
    align-items: center;
}

.wx-login-content {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    width: 90%;
    max-width: 420px;
    animation: slideUp 0.3s ease;
}

.wx-login-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 25px 15px;
    border-bottom: 1px solid #f0f0f0;
}

.wx-login-title {
    font-size: 22px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
}

.wx-login-close {
    background: none;
    border: none;
    font-size: 28px;
    color: #999;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.wx-login-close:hover {
    background-color: #f5f5f5;
    color: #666;
}

.wx-login-body {
    padding: 20px 25px 25px;
}

.wx-login-methods {
    text-align: center;
}

.wx-qr-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
}

.wx-qr-placeholder {
    width: 200px;
    height: 200px;
    border: 2px solid #e9ecef;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #ffffff;
}

.wx-qr-image {
    width: 200px;
    height: 200px;
    border: 2px solid #07c160;
    border-radius: 15px;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wx-qr-image canvas {
    border-radius: 12px;
}

.wx-login-tip {
    font-size: 14px;
    color: #666;
    margin: 10px 0 0 0;
}

/* 备用方案样式 */
.wx-fallback {
    text-align: center;
}

.fallback-content {
    padding: 20px;
}

.fallback-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.fallback-content h4 {
    font-size: 18px;
    color: #2c3e50;
    margin-bottom: 10px;
}

.fallback-content p {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.4;
}

.fallback-options {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.mini-program-icon {
    margin-right: 8px;
}

/* 用户信息弹窗样式 */
.user-info-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0. 0.6);
    z-index: 1000;
    animation: fadeIn 0.3s ease;
}

.user-info-modal.show {
    display: flex;
    justify-content: center;
    align-items: center;
}

.user-info-content {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    width: 90%;
    max-width: 500px;
    max-height: 80vh;
    overflow-y: auto;
    animation: slideUp 0.3s ease;
}

.user-info-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 25px 15px;
    border-bottom: 1px solid #f0f0f0;
}

.user-info-title {
    font-size: 22px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
}

.user-info-close {
    background: none;
    border: none;
    font-size: 28px;
    color: #999;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.user-info-close:hover {
    background-color: #f5f5f5;
    color: #666;
}

.user-info-body {
    padding: 20px 25px 25px;
}

.user-avatar-container {
    display: flex;
    justify-content: center;
    margin-bottom: 25px;
    position: relative;
}

.user-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid #07c160;
    object-fit: cover;
    background: #f5f5f5;
}

.user-avatar-loading {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid #07c160;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
}

.user-details {
    margin-bottom: 25px;
}

.user-detail-item {
    display: flex;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #f5f5f5;
}

.detail-label {
    font-size: 14px;
    color: #666;
    min-width: 100px;
    font-weight: 500;
}

.detail-value {
    font-size: 14px;
    color: #2c3e50;
    flex: 1;
}

.detail-value.user-uuid {
    font-family: monospace;
    font-size: 12px;
    color: #666;
    word-break: break-all;
}

.user-info-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .wx-login-content {
        width: 95%;
        margin: 20px;
    }
    
    .user-info-content {
        width: 95%;
        margin: 20px;
    }
    
    .fallback-options {
        flex-direction: column;
    }
    
    .user-info-actions {
        flex-direction: column;
    }
}

.modal-body {
    display: block;
}

/* 微信登录弹窗样式 */
.wx-login-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1000;
    animation: fadeIn 0.3s ease;
}

.wx-login-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    max-width: 400px;
    width: 90%;
}

.wx-login-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.wx-login-header h3 {
    margin: 0;
    font-size: 18px;
    color: #333;
}

.wx-login-close {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #999;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wx-login-close:hover {
    color: #333;
}

.wx-login-qr {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 200px;
    margin-bottom: 15px;
}

.wx-login-tips {
    text-align: center;
    color: #666;
    font-size: 14px;
}

.wx-login-modal.show {
    display: flex;
    justify-content: center;
    align-items: center;
}

.wx-login-content {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    width: 90%;
    max-width: 420px;
    animation: slideUp 0.3s ease;
}

.wx-login-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 25px 15px;
    border-bottom: 1px solid #f0f0f0;
}

.wx-login-title {
    font-size: 22px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
}

.wx-login-close {
    background: none;
    border: none;
    font-size: 28px;
    color: #999;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.wx-login-close:hover {
    background-color: #f5f5f5;
    color: #666;
}

.wx-login-body {
    padding: 20px 25px 25px;
}

.wx-login-methods {
    text-align: center;
}

.wx-qr-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
}

.wx-qr-placeholder {
    width: 200px;
    height: 200px;
    border: 2px solid #e9ecef;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #ffffff;
}

.wx-qr-image {
    width: 200px;
    height: 200px;
    border: 2px solid #07c160;
    border-radius: 15px;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wx-qr-image canvas {
    border-radius: 12px;
}

.wx-login-tip {
    font-size: 14px;
    color: #666;
    margin: 10px 0 0 0;
}

/* 备用方案样式 */
.wx-fallback {
    text-align: center;
}

.fallback-content {
    padding: 20px;
}

.fallback-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.fallback-content h4 {
    font-size: 18px;
    color: #2c3e50;
    margin-bottom: 10px;
}

.fallback-content p {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.4;
}

.fallback-options {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.mini-program-icon {
    margin-right: 8px;
}

/* 用户信息弹窗样式 */
.user-info-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0. 0.6);
    z-index: 1000;
    animation: fadeIn 0.3s ease;
}

.user-info-modal.show {
    display: flex;
    justify-content: center;
    align-items: center;
}

.user-info-content {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    width: 90%;
    max-width: 500px;
    max-height: 80vh;
    overflow-y: auto;
    animation: slideUp 0.3s ease;
}

.user-info-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 25px 15px;
    border-bottom: 1px solid #f0f0f0;
}

.user-info-title {
    font-size: 22px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
}

.user-info-close {
    background: none;
    border: none;
    font-size: 28px;
    color: #999;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.user-info-close:hover {
    background-color: #f5f5f5;
    color: #666;
}

.user-info-body {
    padding: 20px 25px 25px;
}

.user-avatar-container {
    display: flex;
    justify-content: center;
    margin-bottom: 25px;
    position: relative;
}

.user-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid #07c160;
    object-fit: cover;
    background: #f5f5f5;
}

.user-avatar-loading {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid #07c160;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
}

.user-details {
    margin-bottom: 25px;
}

.user-detail-item {
    display: flex;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #f5f5f5;
}

.detail-label {
    font-size: 14px;
    color: #666;
    min-width: 100px;
    font-weight: 500;
}

.detail-value {
    font-size: 14px;
    color: #2c3e50;
    flex: 1;
}

.detail-value.user-uuid {
    font-family: monospace;
    font-size: 12px;
    color: #666;
    word-break: break-all;
}

.user-info-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .wx-login-content {
        width: 95%;
        margin: 20px;
    }
    
    .user-info-content {
        width: 95%;
        margin: 20px;
    }
    
    .fallback-options {
        flex-direction: column;
    }
    
    .user-info-actions {
        flex-direction: column;
    }
}

/* 响应式设计 */
@media (max-width: 1200px) {
    .main-container {
        flex-direction: column;
    }

/* 微信登录弹窗样式 */
.wx-login-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1000;
    animation: fadeIn 0.3s ease;
}

.wx-login-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    max-width: 400px;
    width: 90%;
}

.wx-login-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.wx-login-header h3 {
    margin: 0;
    font-size: 18px;
    color: #333;
}

.wx-login-close {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #999;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wx-login-close:hover {
    color: #333;
}

.wx-login-qr {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 200px;
    margin-bottom: 15px;
}

.wx-login-tips {
    text-align: center;
    color: #666;
    font-size: 14px;
}

.wx-login-modal.show {
    display: flex;
    justify-content: center;
    align-items: center;
}

.wx-login-content {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    width: 90%;
    max-width: 420px;
    animation: slideUp 0.3s ease;
}

.wx-login-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 25px 15px;
    border-bottom: 1px solid #f0f0f0;
}

.wx-login-title {
    font-size: 22px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
}

.wx-login-close {
    background: none;
    border: none;
    font-size: 28px;
    color: #999;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.wx-login-close:hover {
    background-color: #f5f5f5;
    color: #666;
}

.wx-login-body {
    padding: 20px 25px 25px;
}

.wx-login-methods {
    text-align: center;
}

.wx-qr-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
}

.wx-qr-placeholder {
    width: 200px;
    height: 200px;
    border: 2px solid #e9ecef;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #ffffff;
}

.wx-qr-image {
    width: 200px;
    height: 200px;
    border: 2px solid #07c160;
    border-radius: 15px;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wx-qr-image canvas {
    border-radius: 12px;
}

.wx-login-tip {
    font-size: 14px;
    color: #666;
    margin: 10px 0 0 0;
}

/* 备用方案样式 */
.wx-fallback {
    text-align: center;
}

.fallback-content {
    padding: 20px;
}

.fallback-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.fallback-content h4 {
    font-size: 18px;
    color: #2c3e50;
    margin-bottom: 10px;
}

.fallback-content p {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.4;
}

.fallback-options {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.mini-program-icon {
    margin-right: 8px;
}

/* 用户信息弹窗样式 */
.user-info-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0. 0.6);
    z-index: 1000;
    animation: fadeIn 0.3s ease;
}

.user-info-modal.show {
    display: flex;
    justify-content: center;
    align-items: center;
}

.user-info-content {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    width: 90%;
    max-width: 500px;
    max-height: 80vh;
    overflow-y: auto;
    animation: slideUp 0.3s ease;
}

.user-info-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 25px 15px;
    border-bottom: 1px solid #f0f0f0;
}

.user-info-title {
    font-size: 22px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
}

.user-info-close {
    background: none;
    border: none;
    font-size: 28px;
    color: #999;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.user-info-close:hover {
    background-color: #f5f5f5;
    color: #666;
}

.user-info-body {
    padding: 20px 25px 25px;
}

.user-avatar-container {
    display: flex;
    justify-content: center;
    margin-bottom: 25px;
    position: relative;
}

.user-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid #07c160;
    object-fit: cover;
    background: #f5f5f5;
}

.user-avatar-loading {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid #07c160;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
}

.user-details {
    margin-bottom: 25px;
}

.user-detail-item {
    display: flex;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #f5f5f5;
}

.detail-label {
    font-size: 14px;
    color: #666;
    min-width: 100px;
    font-weight: 500;
}

.detail-value {
    font-size: 14px;
    color: #2c3e50;
    flex: 1;
}

.detail-value.user-uuid {
    font-family: monospace;
    font-size: 12px;
    color: #666;
    word-break: break-all;
}

.user-info-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .wx-login-content {
        width: 95%;
        margin: 20px;
    }
    
    .user-info-content {
        width: 95%;
        margin: 20px;
    }
    
    .fallback-options {
        flex-direction: column;
    }
    
    .user-info-actions {
        flex-direction: column;
    }
}

    .seal-type-panel,
    .edit-panel {
        width: 100%;
        max-height: none;
    }

/* 微信登录弹窗样式 */
.wx-login-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1000;
    animation: fadeIn 0.3s ease;
}

.wx-login-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    max-width: 400px;
    width: 90%;
}

.wx-login-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.wx-login-header h3 {
    margin: 0;
    font-size: 18px;
    color: #333;
}

.wx-login-close {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #999;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wx-login-close:hover {
    color: #333;
}

.wx-login-qr {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 200px;
    margin-bottom: 15px;
}

.wx-login-tips {
    text-align: center;
    color: #666;
    font-size: 14px;
}

.wx-login-modal.show {
    display: flex;
    justify-content: center;
    align-items: center;
}

.wx-login-content {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    width: 90%;
    max-width: 420px;
    animation: slideUp 0.3s ease;
}

.wx-login-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 25px 15px;
    border-bottom: 1px solid #f0f0f0;
}

.wx-login-title {
    font-size: 22px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
}

.wx-login-close {
    background: none;
    border: none;
    font-size: 28px;
    color: #999;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.wx-login-close:hover {
    background-color: #f5f5f5;
    color: #666;
}

.wx-login-body {
    padding: 20px 25px 25px;
}

.wx-login-methods {
    text-align: center;
}

.wx-qr-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
}

.wx-qr-placeholder {
    width: 200px;
    height: 200px;
    border: 2px solid #e9ecef;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #ffffff;
}

.wx-qr-image {
    width: 200px;
    height: 200px;
    border: 2px solid #07c160;
    border-radius: 15px;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wx-qr-image canvas {
    border-radius: 12px;
}

.wx-login-tip {
    font-size: 14px;
    color: #666;
    margin: 10px 0 0 0;
}

/* 备用方案样式 */
.wx-fallback {
    text-align: center;
}

.fallback-content {
    padding: 20px;
}

.fallback-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.fallback-content h4 {
    font-size: 18px;
    color: #2c3e50;
    margin-bottom: 10px;
}

.fallback-content p {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.4;
}

.fallback-options {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.mini-program-icon {
    margin-right: 8px;
}

/* 用户信息弹窗样式 */
.user-info-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0. 0.6);
    z-index: 1000;
    animation: fadeIn 0.3s ease;
}

.user-info-modal.show {
    display: flex;
    justify-content: center;
    align-items: center;
}

.user-info-content {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    width: 90%;
    max-width: 500px;
    max-height: 80vh;
    overflow-y: auto;
    animation: slideUp 0.3s ease;
}

.user-info-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 25px 15px;
    border-bottom: 1px solid #f0f0f0;
}

.user-info-title {
    font-size: 22px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
}

.user-info-close {
    background: none;
    border: none;
    font-size: 28px;
    color: #999;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.user-info-close:hover {
    background-color: #f5f5f5;
    color: #666;
}

.user-info-body {
    padding: 20px 25px 25px;
}

.user-avatar-container {
    display: flex;
    justify-content: center;
    margin-bottom: 25px;
    position: relative;
}

.user-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid #07c160;
    object-fit: cover;
    background: #f5f5f5;
}

.user-avatar-loading {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid #07c160;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
}

.user-details {
    margin-bottom: 25px;
}

.user-detail-item {
    display: flex;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #f5f5f5;
}

.detail-label {
    font-size: 14px;
    color: #666;
    min-width: 100px;
    font-weight: 500;
}

.detail-value {
    font-size: 14px;
    color: #2c3e50;
    flex: 1;
}

.detail-value.user-uuid {
    font-family: monospace;
    font-size: 12px;
    color: #666;
    word-break: break-all;
}

.user-info-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .wx-login-content {
        width: 95%;
        margin: 20px;
    }
    
    .user-info-content {
        width: 95%;
        margin: 20px;
    }
    
    .fallback-options {
        flex-direction: column;
    }
    
    .user-info-actions {
        flex-direction: column;
    }
}

    .seal-type-grid {
        display: flex;
        flex-direction: row;
        overflow-x: auto;
        gap: 10px;
        padding: 5px 0;
        scrollbar-width: thin;
        -webkit-overflow-scrolling: touch;
    }

/* 微信登录弹窗样式 */
.wx-login-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1000;
    animation: fadeIn 0.3s ease;
}

.wx-login-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    max-width: 400px;
    width: 90%;
}

.wx-login-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.wx-login-header h3 {
    margin: 0;
    font-size: 18px;
    color: #333;
}

.wx-login-close {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #999;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wx-login-close:hover {
    color: #333;
}

.wx-login-qr {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 200px;
    margin-bottom: 15px;
}

.wx-login-tips {
    text-align: center;
    color: #666;
    font-size: 14px;
}

.wx-login-modal.show {
    display: flex;
    justify-content: center;
    align-items: center;
}

.wx-login-content {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    width: 90%;
    max-width: 420px;
    animation: slideUp 0.3s ease;
}

.wx-login-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 25px 15px;
    border-bottom: 1px solid #f0f0f0;
}

.wx-login-title {
    font-size: 22px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
}

.wx-login-close {
    background: none;
    border: none;
    font-size: 28px;
    color: #999;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.wx-login-close:hover {
    background-color: #f5f5f5;
    color: #666;
}

.wx-login-body {
    padding: 20px 25px 25px;
}

.wx-login-methods {
    text-align: center;
}

.wx-qr-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
}

.wx-qr-placeholder {
    width: 200px;
    height: 200px;
    border: 2px solid #e9ecef;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #ffffff;
}

.wx-qr-image {
    width: 200px;
    height: 200px;
    border: 2px solid #07c160;
    border-radius: 15px;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wx-qr-image canvas {
    border-radius: 12px;
}

.wx-login-tip {
    font-size: 14px;
    color: #666;
    margin: 10px 0 0 0;
}

/* 备用方案样式 */
.wx-fallback {
    text-align: center;
}

.fallback-content {
    padding: 20px;
}

.fallback-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.fallback-content h4 {
    font-size: 18px;
    color: #2c3e50;
    margin-bottom: 10px;
}

.fallback-content p {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.4;
}

.fallback-options {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.mini-program-icon {
    margin-right: 8px;
}

/* 用户信息弹窗样式 */
.user-info-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0. 0.6);
    z-index: 1000;
    animation: fadeIn 0.3s ease;
}

.user-info-modal.show {
    display: flex;
    justify-content: center;
    align-items: center;
}

.user-info-content {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    width: 90%;
    max-width: 500px;
    max-height: 80vh;
    overflow-y: auto;
    animation: slideUp 0.3s ease;
}

.user-info-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 25px 15px;
    border-bottom: 1px solid #f0f0f0;
}

.user-info-title {
    font-size: 22px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
}

.user-info-close {
    background: none;
    border: none;
    font-size: 28px;
    color: #999;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.user-info-close:hover {
    background-color: #f5f5f5;
    color: #666;
}

.user-info-body {
    padding: 20px 25px 25px;
}

.user-avatar-container {
    display: flex;
    justify-content: center;
    margin-bottom: 25px;
    position: relative;
}

.user-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid #07c160;
    object-fit: cover;
    background: #f5f5f5;
}

.user-avatar-loading {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid #07c160;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
}

.user-details {
    margin-bottom: 25px;
}

.user-detail-item {
    display: flex;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #f5f5f5;
}

.detail-label {
    font-size: 14px;
    color: #666;
    min-width: 100px;
    font-weight: 500;
}

.detail-value {
    font-size: 14px;
    color: #2c3e50;
    flex: 1;
}

.detail-value.user-uuid {
    font-family: monospace;
    font-size: 12px;
    color: #666;
    word-break: break-all;
}

.user-info-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .wx-login-content {
        width: 95%;
        margin: 20px;
    }
    
    .user-info-content {
        width: 95%;
        margin: 20px;
    }
    
    .fallback-options {
        flex-direction: column;
    }
    
    .user-info-actions {
        flex-direction: column;
    }
}

    .seal-type-grid::-webkit-scrollbar {
        height: 4px;
    }

/* 微信登录弹窗样式 */
.wx-login-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1000;
    animation: fadeIn 0.3s ease;
}

.wx-login-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    max-width: 400px;
    width: 90%;
}

.wx-login-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.wx-login-header h3 {
    margin: 0;
    font-size: 18px;
    color: #333;
}

.wx-login-close {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #999;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wx-login-close:hover {
    color: #333;
}

.wx-login-qr {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 200px;
    margin-bottom: 15px;
}

.wx-login-tips {
    text-align: center;
    color: #666;
    font-size: 14px;
}

.wx-login-modal.show {
    display: flex;
    justify-content: center;
    align-items: center;
}

.wx-login-content {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    width: 90%;
    max-width: 420px;
    animation: slideUp 0.3s ease;
}

.wx-login-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 25px 15px;
    border-bottom: 1px solid #f0f0f0;
}

.wx-login-title {
    font-size: 22px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
}

.wx-login-close {
    background: none;
    border: none;
    font-size: 28px;
    color: #999;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.wx-login-close:hover {
    background-color: #f5f5f5;
    color: #666;
}

.wx-login-body {
    padding: 20px 25px 25px;
}

.wx-login-methods {
    text-align: center;
}

.wx-qr-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
}

.wx-qr-placeholder {
    width: 200px;
    height: 200px;
    border: 2px solid #e9ecef;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #ffffff;
}

.wx-qr-image {
    width: 200px;
    height: 200px;
    border: 2px solid #07c160;
    border-radius: 15px;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wx-qr-image canvas {
    border-radius: 12px;
}

.wx-login-tip {
    font-size: 14px;
    color: #666;
    margin: 10px 0 0 0;
}

/* 备用方案样式 */
.wx-fallback {
    text-align: center;
}

.fallback-content {
    padding: 20px;
}

.fallback-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.fallback-content h4 {
    font-size: 18px;
    color: #2c3e50;
    margin-bottom: 10px;
}

.fallback-content p {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.4;
}

.fallback-options {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.mini-program-icon {
    margin-right: 8px;
}

/* 用户信息弹窗样式 */
.user-info-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0. 0.6);
    z-index: 1000;
    animation: fadeIn 0.3s ease;
}

.user-info-modal.show {
    display: flex;
    justify-content: center;
    align-items: center;
}

.user-info-content {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    width: 90%;
    max-width: 500px;
    max-height: 80vh;
    overflow-y: auto;
    animation: slideUp 0.3s ease;
}

.user-info-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 25px 15px;
    border-bottom: 1px solid #f0f0f0;
}

.user-info-title {
    font-size: 22px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
}

.user-info-close {
    background: none;
    border: none;
    font-size: 28px;
    color: #999;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.user-info-close:hover {
    background-color: #f5f5f5;
    color: #666;
}

.user-info-body {
    padding: 20px 25px 25px;
}

.user-avatar-container {
    display: flex;
    justify-content: center;
    margin-bottom: 25px;
    position: relative;
}

.user-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid #07c160;
    object-fit: cover;
    background: #f5f5f5;
}

.user-avatar-loading {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid #07c160;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
}

.user-details {
    margin-bottom: 25px;
}

.user-detail-item {
    display: flex;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #f5f5f5;
}

.detail-label {
    font-size: 14px;
    color: #666;
    min-width: 100px;
    font-weight: 500;
}

.detail-value {
    font-size: 14px;
    color: #2c3e50;
    flex: 1;
}

.detail-value.user-uuid {
    font-family: monospace;
    font-size: 12px;
    color: #666;
    word-break: break-all;
}

.user-info-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .wx-login-content {
        width: 95%;
        margin: 20px;
    }
    
    .user-info-content {
        width: 95%;
        margin: 20px;
    }
    
    .fallback-options {
        flex-direction: column;
    }
    
    .user-info-actions {
        flex-direction: column;
    }
}

    .seal-type-grid::-webkit-scrollbar-track {
        background: #f1f1f1;
        border-radius: 2px;
    }

/* 微信登录弹窗样式 */
.wx-login-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1000;
    animation: fadeIn 0.3s ease;
}

.wx-login-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    max-width: 400px;
    width: 90%;
}

.wx-login-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.wx-login-header h3 {
    margin: 0;
    font-size: 18px;
    color: #333;
}

.wx-login-close {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #999;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wx-login-close:hover {
    color: #333;
}

.wx-login-qr {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 200px;
    margin-bottom: 15px;
}

.wx-login-tips {
    text-align: center;
    color: #666;
    font-size: 14px;
}

.wx-login-modal.show {
    display: flex;
    justify-content: center;
    align-items: center;
}

.wx-login-content {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    width: 90%;
    max-width: 420px;
    animation: slideUp 0.3s ease;
}

.wx-login-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 25px 15px;
    border-bottom: 1px solid #f0f0f0;
}

.wx-login-title {
    font-size: 22px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
}

.wx-login-close {
    background: none;
    border: none;
    font-size: 28px;
    color: #999;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.wx-login-close:hover {
    background-color: #f5f5f5;
    color: #666;
}

.wx-login-body {
    padding: 20px 25px 25px;
}

.wx-login-methods {
    text-align: center;
}

.wx-qr-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
}

.wx-qr-placeholder {
    width: 200px;
    height: 200px;
    border: 2px solid #e9ecef;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #ffffff;
}

.wx-qr-image {
    width: 200px;
    height: 200px;
    border: 2px solid #07c160;
    border-radius: 15px;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wx-qr-image canvas {
    border-radius: 12px;
}

.wx-login-tip {
    font-size: 14px;
    color: #666;
    margin: 10px 0 0 0;
}

/* 备用方案样式 */
.wx-fallback {
    text-align: center;
}

.fallback-content {
    padding: 20px;
}

.fallback-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.fallback-content h4 {
    font-size: 18px;
    color: #2c3e50;
    margin-bottom: 10px;
}

.fallback-content p {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.4;
}

.fallback-options {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.mini-program-icon {
    margin-right: 8px;
}

/* 用户信息弹窗样式 */
.user-info-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0. 0.6);
    z-index: 1000;
    animation: fadeIn 0.3s ease;
}

.user-info-modal.show {
    display: flex;
    justify-content: center;
    align-items: center;
}

.user-info-content {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    width: 90%;
    max-width: 500px;
    max-height: 80vh;
    overflow-y: auto;
    animation: slideUp 0.3s ease;
}

.user-info-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 25px 15px;
    border-bottom: 1px solid #f0f0f0;
}

.user-info-title {
    font-size: 22px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
}

.user-info-close {
    background: none;
    border: none;
    font-size: 28px;
    color: #999;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.user-info-close:hover {
    background-color: #f5f5f5;
    color: #666;
}

.user-info-body {
    padding: 20px 25px 25px;
}

.user-avatar-container {
    display: flex;
    justify-content: center;
    margin-bottom: 25px;
    position: relative;
}

.user-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid #07c160;
    object-fit: cover;
    background: #f5f5f5;
}

.user-avatar-loading {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid #07c160;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
}

.user-details {
    margin-bottom: 25px;
}

.user-detail-item {
    display: flex;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #f5f5f5;
}

.detail-label {
    font-size: 14px;
    color: #666;
    min-width: 100px;
    font-weight: 500;
}

.detail-value {
    font-size: 14px;
    color: #2c3e50;
    flex: 1;
}

.detail-value.user-uuid {
    font-family: monospace;
    font-size: 12px;
    color: #666;
    word-break: break-all;
}

.user-info-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .wx-login-content {
        width: 95%;
        margin: 20px;
    }
    
    .user-info-content {
        width: 95%;
        margin: 20px;
    }
    
    .fallback-options {
        flex-direction: column;
    }
    
    .user-info-actions {
        flex-direction: column;
    }
}

    .seal-type-grid::-webkit-scrollbar-thumb {
        background: #c1c1c1;
        border-radius: 2px;
    }

/* 微信登录弹窗样式 */
.wx-login-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1000;
    animation: fadeIn 0.3s ease;
}

.wx-login-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    max-width: 400px;
    width: 90%;
}

.wx-login-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.wx-login-header h3 {
    margin: 0;
    font-size: 18px;
    color: #333;
}

.wx-login-close {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #999;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wx-login-close:hover {
    color: #333;
}

.wx-login-qr {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 200px;
    margin-bottom: 15px;
}

.wx-login-tips {
    text-align: center;
    color: #666;
    font-size: 14px;
}

.wx-login-modal.show {
    display: flex;
    justify-content: center;
    align-items: center;
}

.wx-login-content {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    width: 90%;
    max-width: 420px;
    animation: slideUp 0.3s ease;
}

.wx-login-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 25px 15px;
    border-bottom: 1px solid #f0f0f0;
}

.wx-login-title {
    font-size: 22px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
}

.wx-login-close {
    background: none;
    border: none;
    font-size: 28px;
    color: #999;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.wx-login-close:hover {
    background-color: #f5f5f5;
    color: #666;
}

.wx-login-body {
    padding: 20px 25px 25px;
}

.wx-login-methods {
    text-align: center;
}

.wx-qr-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
}

.wx-qr-placeholder {
    width: 200px;
    height: 200px;
    border: 2px solid #e9ecef;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #ffffff;
}

.wx-qr-image {
    width: 200px;
    height: 200px;
    border: 2px solid #07c160;
    border-radius: 15px;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wx-qr-image canvas {
    border-radius: 12px;
}

.wx-login-tip {
    font-size: 14px;
    color: #666;
    margin: 10px 0 0 0;
}

/* 备用方案样式 */
.wx-fallback {
    text-align: center;
}

.fallback-content {
    padding: 20px;
}

.fallback-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.fallback-content h4 {
    font-size: 18px;
    color: #2c3e50;
    margin-bottom: 10px;
}

.fallback-content p {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.4;
}

.fallback-options {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.mini-program-icon {
    margin-right: 8px;
}

/* 用户信息弹窗样式 */
.user-info-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0. 0.6);
    z-index: 1000;
    animation: fadeIn 0.3s ease;
}

.user-info-modal.show {
    display: flex;
    justify-content: center;
    align-items: center;
}

.user-info-content {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    width: 90%;
    max-width: 500px;
    max-height: 80vh;
    overflow-y: auto;
    animation: slideUp 0.3s ease;
}

.user-info-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 25px 15px;
    border-bottom: 1px solid #f0f0f0;
}

.user-info-title {
    font-size: 22px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
}

.user-info-close {
    background: none;
    border: none;
    font-size: 28px;
    color: #999;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.user-info-close:hover {
    background-color: #f5f5f5;
    color: #666;
}

.user-info-body {
    padding: 20px 25px 25px;
}

.user-avatar-container {
    display: flex;
    justify-content: center;
    margin-bottom: 25px;
    position: relative;
}

.user-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid #07c160;
    object-fit: cover;
    background: #f5f5f5;
}

.user-avatar-loading {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid #07c160;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
}

.user-details {
    margin-bottom: 25px;
}

.user-detail-item {
    display: flex;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #f5f5f5;
}

.detail-label {
    font-size: 14px;
    color: #666;
    min-width: 100px;
    font-weight: 500;
}

.detail-value {
    font-size: 14px;
    color: #2c3e50;
    flex: 1;
}

.detail-value.user-uuid {
    font-family: monospace;
    font-size: 12px;
    color: #666;
    word-break: break-all;
}

.user-info-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .wx-login-content {
        width: 95%;
        margin: 20px;
    }
    
    .user-info-content {
        width: 95%;
        margin: 20px;
    }
    
    .fallback-options {
        flex-direction: column;
    }
    
    .user-info-actions {
        flex-direction: column;
    }
}

    .seal-type-grid::-webkit-scrollbar-thumb:hover {
        background: #a8a8a8;
    }

/* 微信登录弹窗样式 */
.wx-login-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1000;
    animation: fadeIn 0.3s ease;
}

.wx-login-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    max-width: 400px;
    width: 90%;
}

.wx-login-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.wx-login-header h3 {
    margin: 0;
    font-size: 18px;
    color: #333;
}

.wx-login-close {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #999;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wx-login-close:hover {
    color: #333;
}

.wx-login-qr {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 200px;
    margin-bottom: 15px;
}

.wx-login-tips {
    text-align: center;
    color: #666;
    font-size: 14px;
}

.wx-login-modal.show {
    display: flex;
    justify-content: center;
    align-items: center;
}

.wx-login-content {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    width: 90%;
    max-width: 420px;
    animation: slideUp 0.3s ease;
}

.wx-login-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 25px 15px;
    border-bottom: 1px solid #f0f0f0;
}

.wx-login-title {
    font-size: 22px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
}

.wx-login-close {
    background: none;
    border: none;
    font-size: 28px;
    color: #999;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.wx-login-close:hover {
    background-color: #f5f5f5;
    color: #666;
}

.wx-login-body {
    padding: 20px 25px 25px;
}

.wx-login-methods {
    text-align: center;
}

.wx-qr-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
}

.wx-qr-placeholder {
    width: 200px;
    height: 200px;
    border: 2px solid #e9ecef;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #ffffff;
}

.wx-qr-image {
    width: 200px;
    height: 200px;
    border: 2px solid #07c160;
    border-radius: 15px;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wx-qr-image canvas {
    border-radius: 12px;
}

.wx-login-tip {
    font-size: 14px;
    color: #666;
    margin: 10px 0 0 0;
}

/* 备用方案样式 */
.wx-fallback {
    text-align: center;
}

.fallback-content {
    padding: 20px;
}

.fallback-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.fallback-content h4 {
    font-size: 18px;
    color: #2c3e50;
    margin-bottom: 10px;
}

.fallback-content p {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.4;
}

.fallback-options {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.mini-program-icon {
    margin-right: 8px;
}

/* 用户信息弹窗样式 */
.user-info-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0. 0.6);
    z-index: 1000;
    animation: fadeIn 0.3s ease;
}

.user-info-modal.show {
    display: flex;
    justify-content: center;
    align-items: center;
}

.user-info-content {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    width: 90%;
    max-width: 500px;
    max-height: 80vh;
    overflow-y: auto;
    animation: slideUp 0.3s ease;
}

.user-info-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 25px 15px;
    border-bottom: 1px solid #f0f0f0;
}

.user-info-title {
    font-size: 22px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
}

.user-info-close {
    background: none;
    border: none;
    font-size: 28px;
    color: #999;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.user-info-close:hover {
    background-color: #f5f5f5;
    color: #666;
}

.user-info-body {
    padding: 20px 25px 25px;
}

.user-avatar-container {
    display: flex;
    justify-content: center;
    margin-bottom: 25px;
    position: relative;
}

.user-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid #07c160;
    object-fit: cover;
    background: #f5f5f5;
}

.user-avatar-loading {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid #07c160;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
}

.user-details {
    margin-bottom: 25px;
}

.user-detail-item {
    display: flex;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #f5f5f5;
}

.detail-label {
    font-size: 14px;
    color: #666;
    min-width: 100px;
    font-weight: 500;
}

.detail-value {
    font-size: 14px;
    color: #2c3e50;
    flex: 1;
}

.detail-value.user-uuid {
    font-family: monospace;
    font-size: 12px;
    color: #666;
    word-break: break-all;
}

.user-info-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .wx-login-content {
        width: 95%;
        margin: 20px;
    }
    
    .user-info-content {
        width: 95%;
        margin: 20px;
    }
    
    .fallback-options {
        flex-direction: column;
    }
    
    .user-info-actions {
        flex-direction: column;
    }
}
}

/* 微信登录弹窗样式 */
.wx-login-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1000;
    animation: fadeIn 0.3s ease;
}

.wx-login-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    max-width: 400px;
    width: 90%;
}

.wx-login-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.wx-login-header h3 {
    margin: 0;
    font-size: 18px;
    color: #333;
}

.wx-login-close {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #999;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wx-login-close:hover {
    color: #333;
}

.wx-login-qr {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 200px;
    margin-bottom: 15px;
}

.wx-login-tips {
    text-align: center;
    color: #666;
    font-size: 14px;
}

.wx-login-modal.show {
    display: flex;
    justify-content: center;
    align-items: center;
}

.wx-login-content {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    width: 90%;
    max-width: 420px;
    animation: slideUp 0.3s ease;
}

.wx-login-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 25px 15px;
    border-bottom: 1px solid #f0f0f0;
}

.wx-login-title {
    font-size: 22px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
}

.wx-login-close {
    background: none;
    border: none;
    font-size: 28px;
    color: #999;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.wx-login-close:hover {
    background-color: #f5f5f5;
    color: #666;
}

.wx-login-body {
    padding: 20px 25px 25px;
}

.wx-login-methods {
    text-align: center;
}

.wx-qr-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
}

.wx-qr-placeholder {
    width: 200px;
    height: 200px;
    border: 2px solid #e9ecef;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #ffffff;
}

.wx-qr-image {
    width: 200px;
    height: 200px;
    border: 2px solid #07c160;
    border-radius: 15px;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wx-qr-image canvas {
    border-radius: 12px;
}

.wx-login-tip {
    font-size: 14px;
    color: #666;
    margin: 10px 0 0 0;
}

/* 备用方案样式 */
.wx-fallback {
    text-align: center;
}

.fallback-content {
    padding: 20px;
}

.fallback-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.fallback-content h4 {
    font-size: 18px;
    color: #2c3e50;
    margin-bottom: 10px;
}

.fallback-content p {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.4;
}

.fallback-options {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.mini-program-icon {
    margin-right: 8px;
}

/* 用户信息弹窗样式 */
.user-info-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0. 0.6);
    z-index: 1000;
    animation: fadeIn 0.3s ease;
}

.user-info-modal.show {
    display: flex;
    justify-content: center;
    align-items: center;
}

.user-info-content {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    width: 90%;
    max-width: 500px;
    max-height: 80vh;
    overflow-y: auto;
    animation: slideUp 0.3s ease;
}

.user-info-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 25px 15px;
    border-bottom: 1px solid #f0f0f0;
}

.user-info-title {
    font-size: 22px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
}

.user-info-close {
    background: none;
    border: none;
    font-size: 28px;
    color: #999;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.user-info-close:hover {
    background-color: #f5f5f5;
    color: #666;
}

.user-info-body {
    padding: 20px 25px 25px;
}

.user-avatar-container {
    display: flex;
    justify-content: center;
    margin-bottom: 25px;
    position: relative;
}

.user-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid #07c160;
    object-fit: cover;
    background: #f5f5f5;
}

.user-avatar-loading {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid #07c160;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
}

.user-details {
    margin-bottom: 25px;
}

.user-detail-item {
    display: flex;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #f5f5f5;
}

.detail-label {
    font-size: 14px;
    color: #666;
    min-width: 100px;
    font-weight: 500;
}

.detail-value {
    font-size: 14px;
    color: #2c3e50;
    flex: 1;
}

.detail-value.user-uuid {
    font-family: monospace;
    font-size: 12px;
    color: #666;
    word-break: break-all;
}

.user-info-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .wx-login-content {
        width: 95%;
        margin: 20px;
    }
    
    .user-info-content {
        width: 95%;
        margin: 20px;
    }
    
    .fallback-options {
        flex-direction: column;
    }
    
    .user-info-actions {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 10px;
    }

/* 微信登录弹窗样式 */
.wx-login-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1000;
    animation: fadeIn 0.3s ease;
}

.wx-login-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    max-width: 400px;
    width: 90%;
}

.wx-login-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.wx-login-header h3 {
    margin: 0;
    font-size: 18px;
    color: #333;
}

.wx-login-close {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #999;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wx-login-close:hover {
    color: #333;
}

.wx-login-qr {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 200px;
    margin-bottom: 15px;
}

.wx-login-tips {
    text-align: center;
    color: #666;
    font-size: 14px;
}

.wx-login-modal.show {
    display: flex;
    justify-content: center;
    align-items: center;
}

.wx-login-content {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    width: 90%;
    max-width: 420px;
    animation: slideUp 0.3s ease;
}

.wx-login-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 25px 15px;
    border-bottom: 1px solid #f0f0f0;
}

.wx-login-title {
    font-size: 22px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
}

.wx-login-close {
    background: none;
    border: none;
    font-size: 28px;
    color: #999;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.wx-login-close:hover {
    background-color: #f5f5f5;
    color: #666;
}

.wx-login-body {
    padding: 20px 25px 25px;
}

.wx-login-methods {
    text-align: center;
}

.wx-qr-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
}

.wx-qr-placeholder {
    width: 200px;
    height: 200px;
    border: 2px solid #e9ecef;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #ffffff;
}

.wx-qr-image {
    width: 200px;
    height: 200px;
    border: 2px solid #07c160;
    border-radius: 15px;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wx-qr-image canvas {
    border-radius: 12px;
}

.wx-login-tip {
    font-size: 14px;
    color: #666;
    margin: 10px 0 0 0;
}

/* 备用方案样式 */
.wx-fallback {
    text-align: center;
}

.fallback-content {
    padding: 20px;
}

.fallback-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.fallback-content h4 {
    font-size: 18px;
    color: #2c3e50;
    margin-bottom: 10px;
}

.fallback-content p {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.4;
}

.fallback-options {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.mini-program-icon {
    margin-right: 8px;
}

/* 用户信息弹窗样式 */
.user-info-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0. 0.6);
    z-index: 1000;
    animation: fadeIn 0.3s ease;
}

.user-info-modal.show {
    display: flex;
    justify-content: center;
    align-items: center;
}

.user-info-content {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    width: 90%;
    max-width: 500px;
    max-height: 80vh;
    overflow-y: auto;
    animation: slideUp 0.3s ease;
}

.user-info-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 25px 15px;
    border-bottom: 1px solid #f0f0f0;
}

.user-info-title {
    font-size: 22px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
}

.user-info-close {
    background: none;
    border: none;
    font-size: 28px;
    color: #999;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.user-info-close:hover {
    background-color: #f5f5f5;
    color: #666;
}

.user-info-body {
    padding: 20px 25px 25px;
}

.user-avatar-container {
    display: flex;
    justify-content: center;
    margin-bottom: 25px;
    position: relative;
}

.user-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid #07c160;
    object-fit: cover;
    background: #f5f5f5;
}

.user-avatar-loading {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid #07c160;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
}

.user-details {
    margin-bottom: 25px;
}

.user-detail-item {
    display: flex;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #f5f5f5;
}

.detail-label {
    font-size: 14px;
    color: #666;
    min-width: 100px;
    font-weight: 500;
}

.detail-value {
    font-size: 14px;
    color: #2c3e50;
    flex: 1;
}

.detail-value.user-uuid {
    font-family: monospace;
    font-size: 12px;
    color: #666;
    word-break: break-all;
}

.user-info-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .wx-login-content {
        width: 95%;
        margin: 20px;
    }
    
    .user-info-content {
        width: 95%;
        margin: 20px;
    }
    
    .fallback-options {
        flex-direction: column;
    }
    
    .user-info-actions {
        flex-direction: column;
    }
}

    .tips-container {
        height: 35px;
        margin-bottom: 8px;
    }

/* 微信登录弹窗样式 */
.wx-login-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1000;
    animation: fadeIn 0.3s ease;
}

.wx-login-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    max-width: 400px;
    width: 90%;
}

.wx-login-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.wx-login-header h3 {
    margin: 0;
    font-size: 18px;
    color: #333;
}

.wx-login-close {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #999;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wx-login-close:hover {
    color: #333;
}

.wx-login-qr {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 200px;
    margin-bottom: 15px;
}

.wx-login-tips {
    text-align: center;
    color: #666;
    font-size: 14px;
}

.wx-login-modal.show {
    display: flex;
    justify-content: center;
    align-items: center;
}

.wx-login-content {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    width: 90%;
    max-width: 420px;
    animation: slideUp 0.3s ease;
}

.wx-login-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 25px 15px;
    border-bottom: 1px solid #f0f0f0;
}

.wx-login-title {
    font-size: 22px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
}

.wx-login-close {
    background: none;
    border: none;
    font-size: 28px;
    color: #999;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.wx-login-close:hover {
    background-color: #f5f5f5;
    color: #666;
}

.wx-login-body {
    padding: 20px 25px 25px;
}

.wx-login-methods {
    text-align: center;
}

.wx-qr-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
}

.wx-qr-placeholder {
    width: 200px;
    height: 200px;
    border: 2px solid #e9ecef;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #ffffff;
}

.wx-qr-image {
    width: 200px;
    height: 200px;
    border: 2px solid #07c160;
    border-radius: 15px;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wx-qr-image canvas {
    border-radius: 12px;
}

.wx-login-tip {
    font-size: 14px;
    color: #666;
    margin: 10px 0 0 0;
}

/* 备用方案样式 */
.wx-fallback {
    text-align: center;
}

.fallback-content {
    padding: 20px;
}

.fallback-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.fallback-content h4 {
    font-size: 18px;
    color: #2c3e50;
    margin-bottom: 10px;
}

.fallback-content p {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.4;
}

.fallback-options {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.mini-program-icon {
    margin-right: 8px;
}

/* 用户信息弹窗样式 */
.user-info-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0. 0.6);
    z-index: 1000;
    animation: fadeIn 0.3s ease;
}

.user-info-modal.show {
    display: flex;
    justify-content: center;
    align-items: center;
}

.user-info-content {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    width: 90%;
    max-width: 500px;
    max-height: 80vh;
    overflow-y: auto;
    animation: slideUp 0.3s ease;
}

.user-info-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 25px 15px;
    border-bottom: 1px solid #f0f0f0;
}

.user-info-title {
    font-size: 22px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
}

.user-info-close {
    background: none;
    border: none;
    font-size: 28px;
    color: #999;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.user-info-close:hover {
    background-color: #f5f5f5;
    color: #666;
}

.user-info-body {
    padding: 20px 25px 25px;
}

.user-avatar-container {
    display: flex;
    justify-content: center;
    margin-bottom: 25px;
    position: relative;
}

.user-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid #07c160;
    object-fit: cover;
    background: #f5f5f5;
}

.user-avatar-loading {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid #07c160;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
}

.user-details {
    margin-bottom: 25px;
}

.user-detail-item {
    display: flex;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #f5f5f5;
}

.detail-label {
    font-size: 14px;
    color: #666;
    min-width: 100px;
    font-weight: 500;
}

.detail-value {
    font-size: 14px;
    color: #2c3e50;
    flex: 1;
}

.detail-value.user-uuid {
    font-family: monospace;
    font-size: 12px;
    color: #666;
    word-break: break-all;
}

.user-info-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .wx-login-content {
        width: 95%;
        margin: 20px;
    }
    
    .user-info-content {
        width: 95%;
        margin: 20px;
    }
    
    .fallback-options {
        flex-direction: column;
    }
    
    .user-info-actions {
        flex-direction: column;
    }
}

    .tips-text {
        font-size: 12px;
        height: 35px;
    }

/* 微信登录弹窗样式 */
.wx-login-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1000;
    animation: fadeIn 0.3s ease;
}

.wx-login-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    max-width: 400px;
    width: 90%;
}

.wx-login-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.wx-login-header h3 {
    margin: 0;
    font-size: 18px;
    color: #333;
}

.wx-login-close {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #999;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wx-login-close:hover {
    color: #333;
}

.wx-login-qr {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 200px;
    margin-bottom: 15px;
}

.wx-login-tips {
    text-align: center;
    color: #666;
    font-size: 14px;
}

.wx-login-modal.show {
    display: flex;
    justify-content: center;
    align-items: center;
}

.wx-login-content {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    width: 90%;
    max-width: 420px;
    animation: slideUp 0.3s ease;
}

.wx-login-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 25px 15px;
    border-bottom: 1px solid #f0f0f0;
}

.wx-login-title {
    font-size: 22px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
}

.wx-login-close {
    background: none;
    border: none;
    font-size: 28px;
    color: #999;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.wx-login-close:hover {
    background-color: #f5f5f5;
    color: #666;
}

.wx-login-body {
    padding: 20px 25px 25px;
}

.wx-login-methods {
    text-align: center;
}

.wx-qr-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
}

.wx-qr-placeholder {
    width: 200px;
    height: 200px;
    border: 2px solid #e9ecef;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #ffffff;
}

.wx-qr-image {
    width: 200px;
    height: 200px;
    border: 2px solid #07c160;
    border-radius: 15px;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wx-qr-image canvas {
    border-radius: 12px;
}

.wx-login-tip {
    font-size: 14px;
    color: #666;
    margin: 10px 0 0 0;
}

/* 备用方案样式 */
.wx-fallback {
    text-align: center;
}

.fallback-content {
    padding: 20px;
}

.fallback-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.fallback-content h4 {
    font-size: 18px;
    color: #2c3e50;
    margin-bottom: 10px;
}

.fallback-content p {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.4;
}

.fallback-options {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.mini-program-icon {
    margin-right: 8px;
}

/* 用户信息弹窗样式 */
.user-info-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0. 0.6);
    z-index: 1000;
    animation: fadeIn 0.3s ease;
}

.user-info-modal.show {
    display: flex;
    justify-content: center;
    align-items: center;
}

.user-info-content {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    width: 90%;
    max-width: 500px;
    max-height: 80vh;
    overflow-y: auto;
    animation: slideUp 0.3s ease;
}

.user-info-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 25px 15px;
    border-bottom: 1px solid #f0f0f0;
}

.user-info-title {
    font-size: 22px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
}

.user-info-close {
    background: none;
    border: none;
    font-size: 28px;
    color: #999;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.user-info-close:hover {
    background-color: #f5f5f5;
    color: #666;
}

.user-info-body {
    padding: 20px 25px 25px;
}

.user-avatar-container {
    display: flex;
    justify-content: center;
    margin-bottom: 25px;
    position: relative;
}

.user-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid #07c160;
    object-fit: cover;
    background: #f5f5f5;
}

.user-avatar-loading {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid #07c160;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
}

.user-details {
    margin-bottom: 25px;
}

.user-detail-item {
    display: flex;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #f5f5f5;
}

.detail-label {
    font-size: 14px;
    color: #666;
    min-width: 100px;
    font-weight: 500;
}

.detail-value {
    font-size: 14px;
    color: #2c3e50;
    flex: 1;
}

.detail-value.user-uuid {
    font-family: monospace;
    font-size: 12px;
    color: #666;
    word-break: break-all;
}

.user-info-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .wx-login-content {
        width: 95%;
        margin: 20px;
    }
    
    .user-info-content {
        width: 95%;
        margin: 20px;
    }
    
    .fallback-options {
        flex-direction: column;
    }
    
    .user-info-actions {
        flex-direction: column;
    }
}

    .seal-type-item {
        min-width: 80px;
        max-width: 80px;
        height: 80px;
        aspect-ratio: 1;
        flex-shrink: 0;
    }

/* 微信登录弹窗样式 */
.wx-login-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1000;
    animation: fadeIn 0.3s ease;
}

.wx-login-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    max-width: 400px;
    width: 90%;
}

.wx-login-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.wx-login-header h3 {
    margin: 0;
    font-size: 18px;
    color: #333;
}

.wx-login-close {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #999;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wx-login-close:hover {
    color: #333;
}

.wx-login-qr {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 200px;
    margin-bottom: 15px;
}

.wx-login-tips {
    text-align: center;
    color: #666;
    font-size: 14px;
}

.wx-login-modal.show {
    display: flex;
    justify-content: center;
    align-items: center;
}

.wx-login-content {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    width: 90%;
    max-width: 420px;
    animation: slideUp 0.3s ease;
}

.wx-login-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 25px 15px;
    border-bottom: 1px solid #f0f0f0;
}

.wx-login-title {
    font-size: 22px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
}

.wx-login-close {
    background: none;
    border: none;
    font-size: 28px;
    color: #999;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.wx-login-close:hover {
    background-color: #f5f5f5;
    color: #666;
}

.wx-login-body {
    padding: 20px 25px 25px;
}

.wx-login-methods {
    text-align: center;
}

.wx-qr-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
}

.wx-qr-placeholder {
    width: 200px;
    height: 200px;
    border: 2px solid #e9ecef;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #ffffff;
}

.wx-qr-image {
    width: 200px;
    height: 200px;
    border: 2px solid #07c160;
    border-radius: 15px;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wx-qr-image canvas {
    border-radius: 12px;
}

.wx-login-tip {
    font-size: 14px;
    color: #666;
    margin: 10px 0 0 0;
}

/* 备用方案样式 */
.wx-fallback {
    text-align: center;
}

.fallback-content {
    padding: 20px;
}

.fallback-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.fallback-content h4 {
    font-size: 18px;
    color: #2c3e50;
    margin-bottom: 10px;
}

.fallback-content p {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.4;
}

.fallback-options {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.mini-program-icon {
    margin-right: 8px;
}

/* 用户信息弹窗样式 */
.user-info-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0. 0.6);
    z-index: 1000;
    animation: fadeIn 0.3s ease;
}

.user-info-modal.show {
    display: flex;
    justify-content: center;
    align-items: center;
}

.user-info-content {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    width: 90%;
    max-width: 500px;
    max-height: 80vh;
    overflow-y: auto;
    animation: slideUp 0.3s ease;
}

.user-info-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 25px 15px;
    border-bottom: 1px solid #f0f0f0;
}

.user-info-title {
    font-size: 22px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
}

.user-info-close {
    background: none;
    border: none;
    font-size: 28px;
    color: #999;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.user-info-close:hover {
    background-color: #f5f5f5;
    color: #666;
}

.user-info-body {
    padding: 20px 25px 25px;
}

.user-avatar-container {
    display: flex;
    justify-content: center;
    margin-bottom: 25px;
    position: relative;
}

.user-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid #07c160;
    object-fit: cover;
    background: #f5f5f5;
}

.user-avatar-loading {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid #07c160;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
}

.user-details {
    margin-bottom: 25px;
}

.user-detail-item {
    display: flex;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #f5f5f5;
}

.detail-label {
    font-size: 14px;
    color: #666;
    min-width: 100px;
    font-weight: 500;
}

.detail-value {
    font-size: 14px;
    color: #2c3e50;
    flex: 1;
}

.detail-value.user-uuid {
    font-family: monospace;
    font-size: 12px;
    color: #666;
    word-break: break-all;
}

.user-info-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .wx-login-content {
        width: 95%;
        margin: 20px;
    }
    
    .user-info-content {
        width: 95%;
        margin: 20px;
    }
    
    .fallback-options {
        flex-direction: column;
    }
    
    .user-info-actions {
        flex-direction: column;
    }
}

    .seal-type-item img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }

/* 微信登录弹窗样式 */
.wx-login-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1000;
    animation: fadeIn 0.3s ease;
}

.wx-login-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    max-width: 400px;
    width: 90%;
}

.wx-login-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.wx-login-header h3 {
    margin: 0;
    font-size: 18px;
    color: #333;
}

.wx-login-close {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #999;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wx-login-close:hover {
    color: #333;
}

.wx-login-qr {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 200px;
    margin-bottom: 15px;
}

.wx-login-tips {
    text-align: center;
    color: #666;
    font-size: 14px;
}

.wx-login-modal.show {
    display: flex;
    justify-content: center;
    align-items: center;
}

.wx-login-content {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    width: 90%;
    max-width: 420px;
    animation: slideUp 0.3s ease;
}

.wx-login-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 25px 15px;
    border-bottom: 1px solid #f0f0f0;
}

.wx-login-title {
    font-size: 22px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
}

.wx-login-close {
    background: none;
    border: none;
    font-size: 28px;
    color: #999;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.wx-login-close:hover {
    background-color: #f5f5f5;
    color: #666;
}

.wx-login-body {
    padding: 20px 25px 25px;
}

.wx-login-methods {
    text-align: center;
}

.wx-qr-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
}

.wx-qr-placeholder {
    width: 200px;
    height: 200px;
    border: 2px solid #e9ecef;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #ffffff;
}

.wx-qr-image {
    width: 200px;
    height: 200px;
    border: 2px solid #07c160;
    border-radius: 15px;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wx-qr-image canvas {
    border-radius: 12px;
}

.wx-login-tip {
    font-size: 14px;
    color: #666;
    margin: 10px 0 0 0;
}

/* 备用方案样式 */
.wx-fallback {
    text-align: center;
}

.fallback-content {
    padding: 20px;
}

.fallback-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.fallback-content h4 {
    font-size: 18px;
    color: #2c3e50;
    margin-bottom: 10px;
}

.fallback-content p {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.4;
}

.fallback-options {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.mini-program-icon {
    margin-right: 8px;
}

/* 用户信息弹窗样式 */
.user-info-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0. 0.6);
    z-index: 1000;
    animation: fadeIn 0.3s ease;
}

.user-info-modal.show {
    display: flex;
    justify-content: center;
    align-items: center;
}

.user-info-content {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    width: 90%;
    max-width: 500px;
    max-height: 80vh;
    overflow-y: auto;
    animation: slideUp 0.3s ease;
}

.user-info-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 25px 15px;
    border-bottom: 1px solid #f0f0f0;
}

.user-info-title {
    font-size: 22px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
}

.user-info-close {
    background: none;
    border: none;
    font-size: 28px;
    color: #999;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.user-info-close:hover {
    background-color: #f5f5f5;
    color: #666;
}

.user-info-body {
    padding: 20px 25px 25px;
}

.user-avatar-container {
    display: flex;
    justify-content: center;
    margin-bottom: 25px;
    position: relative;
}

.user-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid #07c160;
    object-fit: cover;
    background: #f5f5f5;
}

.user-avatar-loading {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid #07c160;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
}

.user-details {
    margin-bottom: 25px;
}

.user-detail-item {
    display: flex;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #f5f5f5;
}

.detail-label {
    font-size: 14px;
    color: #666;
    min-width: 100px;
    font-weight: 500;
}

.detail-value {
    font-size: 14px;
    color: #2c3e50;
    flex: 1;
}

.detail-value.user-uuid {
    font-family: monospace;
    font-size: 12px;
    color: #666;
    word-break: break-all;
}

.user-info-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .wx-login-content {
        width: 95%;
        margin: 20px;
    }
    
    .user-info-content {
        width: 95%;
        margin: 20px;
    }
    
    .fallback-options {
        flex-direction: column;
    }
    
    .user-info-actions {
        flex-direction: column;
    }
}

    .preview-container {
        padding: 20px;
    }

/* 微信登录弹窗样式 */
.wx-login-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1000;
    animation: fadeIn 0.3s ease;
}

.wx-login-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    max-width: 400px;
    width: 90%;
}

.wx-login-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.wx-login-header h3 {
    margin: 0;
    font-size: 18px;
    color: #333;
}

.wx-login-close {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #999;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wx-login-close:hover {
    color: #333;
}

.wx-login-qr {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 200px;
    margin-bottom: 15px;
}

.wx-login-tips {
    text-align: center;
    color: #666;
    font-size: 14px;
}

.wx-login-modal.show {
    display: flex;
    justify-content: center;
    align-items: center;
}

.wx-login-content {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    width: 90%;
    max-width: 420px;
    animation: slideUp 0.3s ease;
}

.wx-login-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 25px 15px;
    border-bottom: 1px solid #f0f0f0;
}

.wx-login-title {
    font-size: 22px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
}

.wx-login-close {
    background: none;
    border: none;
    font-size: 28px;
    color: #999;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.wx-login-close:hover {
    background-color: #f5f5f5;
    color: #666;
}

.wx-login-body {
    padding: 20px 25px 25px;
}

.wx-login-methods {
    text-align: center;
}

.wx-qr-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
}

.wx-qr-placeholder {
    width: 200px;
    height: 200px;
    border: 2px solid #e9ecef;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #ffffff;
}

.wx-qr-image {
    width: 200px;
    height: 200px;
    border: 2px solid #07c160;
    border-radius: 15px;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wx-qr-image canvas {
    border-radius: 12px;
}

.wx-login-tip {
    font-size: 14px;
    color: #666;
    margin: 10px 0 0 0;
}

/* 备用方案样式 */
.wx-fallback {
    text-align: center;
}

.fallback-content {
    padding: 20px;
}

.fallback-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.fallback-content h4 {
    font-size: 18px;
    color: #2c3e50;
    margin-bottom: 10px;
}

.fallback-content p {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.4;
}

.fallback-options {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.mini-program-icon {
    margin-right: 8px;
}

/* 用户信息弹窗样式 */
.user-info-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0. 0.6);
    z-index: 1000;
    animation: fadeIn 0.3s ease;
}

.user-info-modal.show {
    display: flex;
    justify-content: center;
    align-items: center;
}

.user-info-content {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    width: 90%;
    max-width: 500px;
    max-height: 80vh;
    overflow-y: auto;
    animation: slideUp 0.3s ease;
}

.user-info-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 25px 15px;
    border-bottom: 1px solid #f0f0f0;
}

.user-info-title {
    font-size: 22px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
}

.user-info-close {
    background: none;
    border: none;
    font-size: 28px;
    color: #999;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.user-info-close:hover {
    background-color: #f5f5f5;
    color: #666;
}

.user-info-body {
    padding: 20px 25px 25px;
}

.user-avatar-container {
    display: flex;
    justify-content: center;
    margin-bottom: 25px;
    position: relative;
}

.user-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid #07c160;
    object-fit: cover;
    background: #f5f5f5;
}

.user-avatar-loading {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid #07c160;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
}

.user-details {
    margin-bottom: 25px;
}

.user-detail-item {
    display: flex;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #f5f5f5;
}

.detail-label {
    font-size: 14px;
    color: #666;
    min-width: 100px;
    font-weight: 500;
}

.detail-value {
    font-size: 14px;
    color: #2c3e50;
    flex: 1;
}

.detail-value.user-uuid {
    font-family: monospace;
    font-size: 12px;
    color: #666;
    word-break: break-all;
}

.user-info-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .wx-login-content {
        width: 95%;
        margin: 20px;
    }
    
    .user-info-content {
        width: 95%;
        margin: 20px;
    }
    
    .fallback-options {
        flex-direction: column;
    }
    
    .user-info-actions {
        flex-direction: column;
    }
}

    #sealCanvas {
        width: 100%;
        height: auto;
    }

/* 微信登录弹窗样式 */
.wx-login-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1000;
    animation: fadeIn 0.3s ease;
}

.wx-login-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    max-width: 400px;
    width: 90%;
}

.wx-login-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.wx-login-header h3 {
    margin: 0;
    font-size: 18px;
    color: #333;
}

.wx-login-close {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #999;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wx-login-close:hover {
    color: #333;
}

.wx-login-qr {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 200px;
    margin-bottom: 15px;
}

.wx-login-tips {
    text-align: center;
    color: #666;
    font-size: 14px;
}

.wx-login-modal.show {
    display: flex;
    justify-content: center;
    align-items: center;
}

.wx-login-content {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    width: 90%;
    max-width: 420px;
    animation: slideUp 0.3s ease;
}

.wx-login-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 25px 15px;
    border-bottom: 1px solid #f0f0f0;
}

.wx-login-title {
    font-size: 22px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
}

.wx-login-close {
    background: none;
    border: none;
    font-size: 28px;
    color: #999;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.wx-login-close:hover {
    background-color: #f5f5f5;
    color: #666;
}

.wx-login-body {
    padding: 20px 25px 25px;
}

.wx-login-methods {
    text-align: center;
}

.wx-qr-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
}

.wx-qr-placeholder {
    width: 200px;
    height: 200px;
    border: 2px solid #e9ecef;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #ffffff;
}

.wx-qr-image {
    width: 200px;
    height: 200px;
    border: 2px solid #07c160;
    border-radius: 15px;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wx-qr-image canvas {
    border-radius: 12px;
}

.wx-login-tip {
    font-size: 14px;
    color: #666;
    margin: 10px 0 0 0;
}

/* 备用方案样式 */
.wx-fallback {
    text-align: center;
}

.fallback-content {
    padding: 20px;
}

.fallback-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.fallback-content h4 {
    font-size: 18px;
    color: #2c3e50;
    margin-bottom: 10px;
}

.fallback-content p {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.4;
}

.fallback-options {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.mini-program-icon {
    margin-right: 8px;
}

/* 用户信息弹窗样式 */
.user-info-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0. 0.6);
    z-index: 1000;
    animation: fadeIn 0.3s ease;
}

.user-info-modal.show {
    display: flex;
    justify-content: center;
    align-items: center;
}

.user-info-content {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    width: 90%;
    max-width: 500px;
    max-height: 80vh;
    overflow-y: auto;
    animation: slideUp 0.3s ease;
}

.user-info-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 25px 15px;
    border-bottom: 1px solid #f0f0f0;
}

.user-info-title {
    font-size: 22px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
}

.user-info-close {
    background: none;
    border: none;
    font-size: 28px;
    color: #999;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.user-info-close:hover {
    background-color: #f5f5f5;
    color: #666;
}

.user-info-body {
    padding: 20px 25px 25px;
}

.user-avatar-container {
    display: flex;
    justify-content: center;
    margin-bottom: 25px;
    position: relative;
}

.user-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid #07c160;
    object-fit: cover;
    background: #f5f5f5;
}

.user-avatar-loading {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid #07c160;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
}

.user-details {
    margin-bottom: 25px;
}

.user-detail-item {
    display: flex;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #f5f5f5;
}

.detail-label {
    font-size: 14px;
    color: #666;
    min-width: 100px;
    font-weight: 500;
}

.detail-value {
    font-size: 14px;
    color: #2c3e50;
    flex: 1;
}

.detail-value.user-uuid {
    font-family: monospace;
    font-size: 12px;
    color: #666;
    word-break: break-all;
}

.user-info-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .wx-login-content {
        width: 95%;
        margin: 20px;
    }
    
    .user-info-content {
        width: 95%;
        margin: 20px;
    }
    
    .fallback-options {
        flex-direction: column;
    }
    
    .user-info-actions {
        flex-direction: column;
    }
}
}

/* 微信登录弹窗样式 */
.wx-login-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1000;
    animation: fadeIn 0.3s ease;
}

.wx-login-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    max-width: 400px;
    width: 90%;
}

.wx-login-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.wx-login-header h3 {
    margin: 0;
    font-size: 18px;
    color: #333;
}

.wx-login-close {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #999;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wx-login-close:hover {
    color: #333;
}

.wx-login-qr {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 200px;
    margin-bottom: 15px;
}

.wx-login-tips {
    text-align: center;
    color: #666;
    font-size: 14px;
}

.wx-login-modal.show {
    display: flex;
    justify-content: center;
    align-items: center;
}

.wx-login-content {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    width: 90%;
    max-width: 420px;
    animation: slideUp 0.3s ease;
}

.wx-login-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 25px 15px;
    border-bottom: 1px solid #f0f0f0;
}

.wx-login-title {
    font-size: 22px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
}

.wx-login-close {
    background: none;
    border: none;
    font-size: 28px;
    color: #999;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.wx-login-close:hover {
    background-color: #f5f5f5;
    color: #666;
}

.wx-login-body {
    padding: 20px 25px 25px;
}

.wx-login-methods {
    text-align: center;
}

.wx-qr-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
}

.wx-qr-placeholder {
    width: 200px;
    height: 200px;
    border: 2px solid #e9ecef;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #ffffff;
}

.wx-qr-image {
    width: 200px;
    height: 200px;
    border: 2px solid #07c160;
    border-radius: 15px;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wx-qr-image canvas {
    border-radius: 12px;
}

.wx-login-tip {
    font-size: 14px;
    color: #666;
    margin: 10px 0 0 0;
}

/* 备用方案样式 */
.wx-fallback {
    text-align: center;
}

.fallback-content {
    padding: 20px;
}

.fallback-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.fallback-content h4 {
    font-size: 18px;
    color: #2c3e50;
    margin-bottom: 10px;
}

.fallback-content p {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.4;
}

.fallback-options {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.mini-program-icon {
    margin-right: 8px;
}

/* 用户信息弹窗样式 */
.user-info-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0. 0.6);
    z-index: 1000;
    animation: fadeIn 0.3s ease;
}

.user-info-modal.show {
    display: flex;
    justify-content: center;
    align-items: center;
}

.user-info-content {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    width: 90%;
    max-width: 500px;
    max-height: 80vh;
    overflow-y: auto;
    animation: slideUp 0.3s ease;
}

.user-info-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 25px 15px;
    border-bottom: 1px solid #f0f0f0;
}

.user-info-title {
    font-size: 22px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
}

.user-info-close {
    background: none;
    border: none;
    font-size: 28px;
    color: #999;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.user-info-close:hover {
    background-color: #f5f5f5;
    color: #666;
}

.user-info-body {
    padding: 20px 25px 25px;
}

.user-avatar-container {
    display: flex;
    justify-content: center;
    margin-bottom: 25px;
    position: relative;
}

.user-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid #07c160;
    object-fit: cover;
    background: #f5f5f5;
}

.user-avatar-loading {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid #07c160;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
}

.user-details {
    margin-bottom: 25px;
}

.user-detail-item {
    display: flex;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #f5f5f5;
}

.detail-label {
    font-size: 14px;
    color: #666;
    min-width: 100px;
    font-weight: 500;
}

.detail-value {
    font-size: 14px;
    color: #2c3e50;
    flex: 1;
}

.detail-value.user-uuid {
    font-family: monospace;
    font-size: 12px;
    color: #666;
    word-break: break-all;
}

.user-info-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .wx-login-content {
        width: 95%;
        margin: 20px;
    }
    
    .user-info-content {
        width: 95%;
        margin: 20px;
    }
    
    .fallback-options {
        flex-direction: column;
    }
    
    .user-info-actions {
        flex-direction: column;
    }
}

/* 网站信息区域 */
.site-info {
    background-color: #f8f9fa;
    border-top: 1px solid #e9ecef;
    padding: 20px 0;
    margin-top: 10px;
}

/* 微信登录弹窗样式 */
.wx-login-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1000;
    animation: fadeIn 0.3s ease;
}

.wx-login-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    max-width: 400px;
    width: 90%;
}

.wx-login-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.wx-login-header h3 {
    margin: 0;
    font-size: 18px;
    color: #333;
}

.wx-login-close {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #999;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wx-login-close:hover {
    color: #333;
}

.wx-login-qr {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 200px;
    margin-bottom: 15px;
}

.wx-login-tips {
    text-align: center;
    color: #666;
    font-size: 14px;
}

.wx-login-modal.show {
    display: flex;
    justify-content: center;
    align-items: center;
}

.wx-login-content {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    width: 90%;
    max-width: 420px;
    animation: slideUp 0.3s ease;
}

.wx-login-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 25px 15px;
    border-bottom: 1px solid #f0f0f0;
}

.wx-login-title {
    font-size: 22px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
}

.wx-login-close {
    background: none;
    border: none;
    font-size: 28px;
    color: #999;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.wx-login-close:hover {
    background-color: #f5f5f5;
    color: #666;
}

.wx-login-body {
    padding: 20px 25px 25px;
}

.wx-login-methods {
    text-align: center;
}

.wx-qr-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
}

.wx-qr-placeholder {
    width: 200px;
    height: 200px;
    border: 2px solid #e9ecef;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #ffffff;
}

.wx-qr-image {
    width: 200px;
    height: 200px;
    border: 2px solid #07c160;
    border-radius: 15px;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wx-qr-image canvas {
    border-radius: 12px;
}

.wx-login-tip {
    font-size: 14px;
    color: #666;
    margin: 10px 0 0 0;
}

/* 备用方案样式 */
.wx-fallback {
    text-align: center;
}

.fallback-content {
    padding: 20px;
}

.fallback-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.fallback-content h4 {
    font-size: 18px;
    color: #2c3e50;
    margin-bottom: 10px;
}

.fallback-content p {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.4;
}

.fallback-options {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.mini-program-icon {
    margin-right: 8px;
}

/* 用户信息弹窗样式 */
.user-info-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0. 0.6);
    z-index: 1000;
    animation: fadeIn 0.3s ease;
}

.user-info-modal.show {
    display: flex;
    justify-content: center;
    align-items: center;
}

.user-info-content {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    width: 90%;
    max-width: 500px;
    max-height: 80vh;
    overflow-y: auto;
    animation: slideUp 0.3s ease;
}

.user-info-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 25px 15px;
    border-bottom: 1px solid #f0f0f0;
}

.user-info-title {
    font-size: 22px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
}

.user-info-close {
    background: none;
    border: none;
    font-size: 28px;
    color: #999;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.user-info-close:hover {
    background-color: #f5f5f5;
    color: #666;
}

.user-info-body {
    padding: 20px 25px 25px;
}

.user-avatar-container {
    display: flex;
    justify-content: center;
    margin-bottom: 25px;
    position: relative;
}

.user-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid #07c160;
    object-fit: cover;
    background: #f5f5f5;
}

.user-avatar-loading {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid #07c160;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
}

.user-details {
    margin-bottom: 25px;
}

.user-detail-item {
    display: flex;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #f5f5f5;
}

.detail-label {
    font-size: 14px;
    color: #666;
    min-width: 100px;
    font-weight: 500;
}

.detail-value {
    font-size: 14px;
    color: #2c3e50;
    flex: 1;
}

.detail-value.user-uuid {
    font-family: monospace;
    font-size: 12px;
    color: #666;
    word-break: break-all;
}

.user-info-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .wx-login-content {
        width: 95%;
        margin: 20px;
    }
    
    .user-info-content {
        width: 95%;
        margin: 20px;
    }
    
    .fallback-options {
        flex-direction: column;
    }
    
    .user-info-actions {
        flex-direction: column;
    }
}

.site-info-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-around;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 30px;
}

/* 微信登录弹窗样式 */
.wx-login-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1000;
    animation: fadeIn 0.3s ease;
}

.wx-login-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    max-width: 400px;
    width: 90%;
}

.wx-login-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.wx-login-header h3 {
    margin: 0;
    font-size: 18px;
    color: #333;
}

.wx-login-close {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #999;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wx-login-close:hover {
    color: #333;
}

.wx-login-qr {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 200px;
    margin-bottom: 15px;
}

.wx-login-tips {
    text-align: center;
    color: #666;
    font-size: 14px;
}

.wx-login-modal.show {
    display: flex;
    justify-content: center;
    align-items: center;
}

.wx-login-content {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    width: 90%;
    max-width: 420px;
    animation: slideUp 0.3s ease;
}

.wx-login-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 25px 15px;
    border-bottom: 1px solid #f0f0f0;
}

.wx-login-title {
    font-size: 22px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
}

.wx-login-close {
    background: none;
    border: none;
    font-size: 28px;
    color: #999;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.wx-login-close:hover {
    background-color: #f5f5f5;
    color: #666;
}

.wx-login-body {
    padding: 20px 25px 25px;
}

.wx-login-methods {
    text-align: center;
}

.wx-qr-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
}

.wx-qr-placeholder {
    width: 200px;
    height: 200px;
    border: 2px solid #e9ecef;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #ffffff;
}

.wx-qr-image {
    width: 200px;
    height: 200px;
    border: 2px solid #07c160;
    border-radius: 15px;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wx-qr-image canvas {
    border-radius: 12px;
}

.wx-login-tip {
    font-size: 14px;
    color: #666;
    margin: 10px 0 0 0;
}

/* 备用方案样式 */
.wx-fallback {
    text-align: center;
}

.fallback-content {
    padding: 20px;
}

.fallback-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.fallback-content h4 {
    font-size: 18px;
    color: #2c3e50;
    margin-bottom: 10px;
}

.fallback-content p {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.4;
}

.fallback-options {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.mini-program-icon {
    margin-right: 8px;
}

/* 用户信息弹窗样式 */
.user-info-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0. 0.6);
    z-index: 1000;
    animation: fadeIn 0.3s ease;
}

.user-info-modal.show {
    display: flex;
    justify-content: center;
    align-items: center;
}

.user-info-content {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    width: 90%;
    max-width: 500px;
    max-height: 80vh;
    overflow-y: auto;
    animation: slideUp 0.3s ease;
}

.user-info-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 25px 15px;
    border-bottom: 1px solid #f0f0f0;
}

.user-info-title {
    font-size: 22px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
}

.user-info-close {
    background: none;
    border: none;
    font-size: 28px;
    color: #999;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.user-info-close:hover {
    background-color: #f5f5f5;
    color: #666;
}

.user-info-body {
    padding: 20px 25px 25px;
}

.user-avatar-container {
    display: flex;
    justify-content: center;
    margin-bottom: 25px;
    position: relative;
}

.user-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid #07c160;
    object-fit: cover;
    background: #f5f5f5;
}

.user-avatar-loading {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid #07c160;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
}

.user-details {
    margin-bottom: 25px;
}

.user-detail-item {
    display: flex;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #f5f5f5;
}

.detail-label {
    font-size: 14px;
    color: #666;
    min-width: 100px;
    font-weight: 500;
}

.detail-value {
    font-size: 14px;
    color: #2c3e50;
    flex: 1;
}

.detail-value.user-uuid {
    font-family: monospace;
    font-size: 12px;
    color: #666;
    word-break: break-all;
}

.user-info-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .wx-login-content {
        width: 95%;
        margin: 20px;
    }
    
    .user-info-content {
        width: 95%;
        margin: 20px;
    }
    
    .fallback-options {
        flex-direction: column;
    }
    
    .user-info-actions {
        flex-direction: column;
    }
}

.info-section {
    text-align: center;
    min-width: 200px;
}

/* 微信登录弹窗样式 */
.wx-login-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1000;
    animation: fadeIn 0.3s ease;
}

.wx-login-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    max-width: 400px;
    width: 90%;
}

.wx-login-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.wx-login-header h3 {
    margin: 0;
    font-size: 18px;
    color: #333;
}

.wx-login-close {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #999;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wx-login-close:hover {
    color: #333;
}

.wx-login-qr {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 200px;
    margin-bottom: 15px;
}

.wx-login-tips {
    text-align: center;
    color: #666;
    font-size: 14px;
}

.wx-login-modal.show {
    display: flex;
    justify-content: center;
    align-items: center;
}

.wx-login-content {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    width: 90%;
    max-width: 420px;
    animation: slideUp 0.3s ease;
}

.wx-login-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 25px 15px;
    border-bottom: 1px solid #f0f0f0;
}

.wx-login-title {
    font-size: 22px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
}

.wx-login-close {
    background: none;
    border: none;
    font-size: 28px;
    color: #999;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.wx-login-close:hover {
    background-color: #f5f5f5;
    color: #666;
}

.wx-login-body {
    padding: 20px 25px 25px;
}

.wx-login-methods {
    text-align: center;
}

.wx-qr-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
}

.wx-qr-placeholder {
    width: 200px;
    height: 200px;
    border: 2px solid #e9ecef;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #ffffff;
}

.wx-qr-image {
    width: 200px;
    height: 200px;
    border: 2px solid #07c160;
    border-radius: 15px;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wx-qr-image canvas {
    border-radius: 12px;
}

.wx-login-tip {
    font-size: 14px;
    color: #666;
    margin: 10px 0 0 0;
}

/* 备用方案样式 */
.wx-fallback {
    text-align: center;
}

.fallback-content {
    padding: 20px;
}

.fallback-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.fallback-content h4 {
    font-size: 18px;
    color: #2c3e50;
    margin-bottom: 10px;
}

.fallback-content p {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.4;
}

.fallback-options {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.mini-program-icon {
    margin-right: 8px;
}

/* 用户信息弹窗样式 */
.user-info-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0. 0.6);
    z-index: 1000;
    animation: fadeIn 0.3s ease;
}

.user-info-modal.show {
    display: flex;
    justify-content: center;
    align-items: center;
}

.user-info-content {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    width: 90%;
    max-width: 500px;
    max-height: 80vh;
    overflow-y: auto;
    animation: slideUp 0.3s ease;
}

.user-info-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 25px 15px;
    border-bottom: 1px solid #f0f0f0;
}

.user-info-title {
    font-size: 22px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
}

.user-info-close {
    background: none;
    border: none;
    font-size: 28px;
    color: #999;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.user-info-close:hover {
    background-color: #f5f5f5;
    color: #666;
}

.user-info-body {
    padding: 20px 25px 25px;
}

.user-avatar-container {
    display: flex;
    justify-content: center;
    margin-bottom: 25px;
    position: relative;
}

.user-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid #07c160;
    object-fit: cover;
    background: #f5f5f5;
}

.user-avatar-loading {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid #07c160;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
}

.user-details {
    margin-bottom: 25px;
}

.user-detail-item {
    display: flex;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #f5f5f5;
}

.detail-label {
    font-size: 14px;
    color: #666;
    min-width: 100px;
    font-weight: 500;
}

.detail-value {
    font-size: 14px;
    color: #2c3e50;
    flex: 1;
}

.detail-value.user-uuid {
    font-family: monospace;
    font-size: 12px;
    color: #666;
    word-break: break-all;
}

.user-info-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .wx-login-content {
        width: 95%;
        margin: 20px;
    }
    
    .user-info-content {
        width: 95%;
        margin: 20px;
    }
    
    .fallback-options {
        flex-direction: column;
    }
    
    .user-info-actions {
        flex-direction: column;
    }
}

.info-section h4 {
    color: #333;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
    border-bottom: 2px solid #00BCD4;
    padding-bottom: 5px;
    display: inline-block;
}

/* 微信登录弹窗样式 */
.wx-login-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1000;
    animation: fadeIn 0.3s ease;
}

.wx-login-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    max-width: 400px;
    width: 90%;
}

.wx-login-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.wx-login-header h3 {
    margin: 0;
    font-size: 18px;
    color: #333;
}

.wx-login-close {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #999;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wx-login-close:hover {
    color: #333;
}

.wx-login-qr {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 200px;
    margin-bottom: 15px;
}

.wx-login-tips {
    text-align: center;
    color: #666;
    font-size: 14px;
}

.wx-login-modal.show {
    display: flex;
    justify-content: center;
    align-items: center;
}

.wx-login-content {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    width: 90%;
    max-width: 420px;
    animation: slideUp 0.3s ease;
}

.wx-login-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 25px 15px;
    border-bottom: 1px solid #f0f0f0;
}

.wx-login-title {
    font-size: 22px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
}

.wx-login-close {
    background: none;
    border: none;
    font-size: 28px;
    color: #999;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.wx-login-close:hover {
    background-color: #f5f5f5;
    color: #666;
}

.wx-login-body {
    padding: 20px 25px 25px;
}

.wx-login-methods {
    text-align: center;
}

.wx-qr-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
}

.wx-qr-placeholder {
    width: 200px;
    height: 200px;
    border: 2px solid #e9ecef;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #ffffff;
}

.wx-qr-image {
    width: 200px;
    height: 200px;
    border: 2px solid #07c160;
    border-radius: 15px;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wx-qr-image canvas {
    border-radius: 12px;
}

.wx-login-tip {
    font-size: 14px;
    color: #666;
    margin: 10px 0 0 0;
}

/* 备用方案样式 */
.wx-fallback {
    text-align: center;
}

.fallback-content {
    padding: 20px;
}

.fallback-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.fallback-content h4 {
    font-size: 18px;
    color: #2c3e50;
    margin-bottom: 10px;
}

.fallback-content p {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.4;
}

.fallback-options {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.mini-program-icon {
    margin-right: 8px;
}

/* 用户信息弹窗样式 */
.user-info-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0. 0.6);
    z-index: 1000;
    animation: fadeIn 0.3s ease;
}

.user-info-modal.show {
    display: flex;
    justify-content: center;
    align-items: center;
}

.user-info-content {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    width: 90%;
    max-width: 500px;
    max-height: 80vh;
    overflow-y: auto;
    animation: slideUp 0.3s ease;
}

.user-info-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 25px 15px;
    border-bottom: 1px solid #f0f0f0;
}

.user-info-title {
    font-size: 22px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
}

.user-info-close {
    background: none;
    border: none;
    font-size: 28px;
    color: #999;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.user-info-close:hover {
    background-color: #f5f5f5;
    color: #666;
}

.user-info-body {
    padding: 20px 25px 25px;
}

.user-avatar-container {
    display: flex;
    justify-content: center;
    margin-bottom: 25px;
    position: relative;
}

.user-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid #07c160;
    object-fit: cover;
    background: #f5f5f5;
}

.user-avatar-loading {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid #07c160;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
}

.user-details {
    margin-bottom: 25px;
}

.user-detail-item {
    display: flex;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #f5f5f5;
}

.detail-label {
    font-size: 14px;
    color: #666;
    min-width: 100px;
    font-weight: 500;
}

.detail-value {
    font-size: 14px;
    color: #2c3e50;
    flex: 1;
}

.detail-value.user-uuid {
    font-family: monospace;
    font-size: 12px;
    color: #666;
    word-break: break-all;
}

.user-info-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .wx-login-content {
        width: 95%;
        margin: 20px;
    }
    
    .user-info-content {
        width: 95%;
        margin: 20px;
    }
    
    .fallback-options {
        flex-direction: column;
    }
    
    .user-info-actions {
        flex-direction: column;
    }
}

.info-section p {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    margin: 5px 0;
}

/* 微信登录弹窗样式 */
.wx-login-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1000;
    animation: fadeIn 0.3s ease;
}

.wx-login-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    max-width: 400px;
    width: 90%;
}

.wx-login-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.wx-login-header h3 {
    margin: 0;
    font-size: 18px;
    color: #333;
}

.wx-login-close {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #999;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wx-login-close:hover {
    color: #333;
}

.wx-login-qr {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 200px;
    margin-bottom: 15px;
}

.wx-login-tips {
    text-align: center;
    color: #666;
    font-size: 14px;
}

.wx-login-modal.show {
    display: flex;
    justify-content: center;
    align-items: center;
}

.wx-login-content {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    width: 90%;
    max-width: 420px;
    animation: slideUp 0.3s ease;
}

.wx-login-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 25px 15px;
    border-bottom: 1px solid #f0f0f0;
}

.wx-login-title {
    font-size: 22px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
}

.wx-login-close {
    background: none;
    border: none;
    font-size: 28px;
    color: #999;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.wx-login-close:hover {
    background-color: #f5f5f5;
    color: #666;
}

.wx-login-body {
    padding: 20px 25px 25px;
}

.wx-login-methods {
    text-align: center;
}

.wx-qr-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
}

.wx-qr-placeholder {
    width: 200px;
    height: 200px;
    border: 2px solid #e9ecef;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #ffffff;
}

.wx-qr-image {
    width: 200px;
    height: 200px;
    border: 2px solid #07c160;
    border-radius: 15px;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wx-qr-image canvas {
    border-radius: 12px;
}

.wx-login-tip {
    font-size: 14px;
    color: #666;
    margin: 10px 0 0 0;
}

/* 备用方案样式 */
.wx-fallback {
    text-align: center;
}

.fallback-content {
    padding: 20px;
}

.fallback-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.fallback-content h4 {
    font-size: 18px;
    color: #2c3e50;
    margin-bottom: 10px;
}

.fallback-content p {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.4;
}

.fallback-options {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.mini-program-icon {
    margin-right: 8px;
}

/* 用户信息弹窗样式 */
.user-info-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0. 0.6);
    z-index: 1000;
    animation: fadeIn 0.3s ease;
}

.user-info-modal.show {
    display: flex;
    justify-content: center;
    align-items: center;
}

.user-info-content {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    width: 90%;
    max-width: 500px;
    max-height: 80vh;
    overflow-y: auto;
    animation: slideUp 0.3s ease;
}

.user-info-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 25px 15px;
    border-bottom: 1px solid #f0f0f0;
}

.user-info-title {
    font-size: 22px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
}

.user-info-close {
    background: none;
    border: none;
    font-size: 28px;
    color: #999;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.user-info-close:hover {
    background-color: #f5f5f5;
    color: #666;
}

.user-info-body {
    padding: 20px 25px 25px;
}

.user-avatar-container {
    display: flex;
    justify-content: center;
    margin-bottom: 25px;
    position: relative;
}

.user-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid #07c160;
    object-fit: cover;
    background: #f5f5f5;
}

.user-avatar-loading {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid #07c160;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
}

.user-details {
    margin-bottom: 25px;
}

.user-detail-item {
    display: flex;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #f5f5f5;
}

.detail-label {
    font-size: 14px;
    color: #666;
    min-width: 100px;
    font-weight: 500;
}

.detail-value {
    font-size: 14px;
    color: #2c3e50;
    flex: 1;
}

.detail-value.user-uuid {
    font-family: monospace;
    font-size: 12px;
    color: #666;
    word-break: break-all;
}

.user-info-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .wx-login-content {
        width: 95%;
        margin: 20px;
    }
    
    .user-info-content {
        width: 95%;
        margin: 20px;
    }
    
    .fallback-options {
        flex-direction: column;
    }
    
    .user-info-actions {
        flex-direction: column;
    }
}

/* 下载区域 */
.download-area {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    flex: 0 0 auto;
}

/* 微信登录弹窗样式 */
.wx-login-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1000;
    animation: fadeIn 0.3s ease;
}

.wx-login-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    max-width: 400px;
    width: 90%;
}

.wx-login-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.wx-login-header h3 {
    margin: 0;
    font-size: 18px;
    color: #333;
}

.wx-login-close {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #999;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wx-login-close:hover {
    color: #333;
}

.wx-login-qr {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 200px;
    margin-bottom: 15px;
}

.wx-login-tips {
    text-align: center;
    color: #666;
    font-size: 14px;
}

.wx-login-modal.show {
    display: flex;
    justify-content: center;
    align-items: center;
}

.wx-login-content {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    width: 90%;
    max-width: 420px;
    animation: slideUp 0.3s ease;
}

.wx-login-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 25px 15px;
    border-bottom: 1px solid #f0f0f0;
}

.wx-login-title {
    font-size: 22px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
}

.wx-login-close {
    background: none;
    border: none;
    font-size: 28px;
    color: #999;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.wx-login-close:hover {
    background-color: #f5f5f5;
    color: #666;
}

.wx-login-body {
    padding: 20px 25px 25px;
}

.wx-login-methods {
    text-align: center;
}

.wx-qr-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
}

.wx-qr-placeholder {
    width: 200px;
    height: 200px;
    border: 2px solid #e9ecef;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #ffffff;
}

.wx-qr-image {
    width: 200px;
    height: 200px;
    border: 2px solid #07c160;
    border-radius: 15px;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wx-qr-image canvas {
    border-radius: 12px;
}

.wx-login-tip {
    font-size: 14px;
    color: #666;
    margin: 10px 0 0 0;
}

/* 备用方案样式 */
.wx-fallback {
    text-align: center;
}

.fallback-content {
    padding: 20px;
}

.fallback-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.fallback-content h4 {
    font-size: 18px;
    color: #2c3e50;
    margin-bottom: 10px;
}

.fallback-content p {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.4;
}

.fallback-options {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.mini-program-icon {
    margin-right: 8px;
}

/* 用户信息弹窗样式 */
.user-info-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0. 0.6);
    z-index: 1000;
    animation: fadeIn 0.3s ease;
}

.user-info-modal.show {
    display: flex;
    justify-content: center;
    align-items: center;
}

.user-info-content {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    width: 90%;
    max-width: 500px;
    max-height: 80vh;
    overflow-y: auto;
    animation: slideUp 0.3s ease;
}

.user-info-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 25px 15px;
    border-bottom: 1px solid #f0f0f0;
}

.user-info-title {
    font-size: 22px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
}

.user-info-close {
    background: none;
    border: none;
    font-size: 28px;
    color: #999;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.user-info-close:hover {
    background-color: #f5f5f5;
    color: #666;
}

.user-info-body {
    padding: 20px 25px 25px;
}

.user-avatar-container {
    display: flex;
    justify-content: center;
    margin-bottom: 25px;
    position: relative;
}

.user-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid #07c160;
    object-fit: cover;
    background: #f5f5f5;
}

.user-avatar-loading {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid #07c160;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
}

.user-details {
    margin-bottom: 25px;
}

.user-detail-item {
    display: flex;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #f5f5f5;
}

.detail-label {
    font-size: 14px;
    color: #666;
    min-width: 100px;
    font-weight: 500;
}

.detail-value {
    font-size: 14px;
    color: #2c3e50;
    flex: 1;
}

.detail-value.user-uuid {
    font-family: monospace;
    font-size: 12px;
    color: #666;
    word-break: break-all;
}

.user-info-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .wx-login-content {
        width: 95%;
        margin: 20px;
    }
    
    .user-info-content {
        width: 95%;
        margin: 20px;
    }
    
    .fallback-options {
        flex-direction: column;
    }
    
    .user-info-actions {
        flex-direction: column;
    }
}

.download-area .btn-download {
    padding: 12px 40px;
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: 6px;
    background: linear-gradient(135deg, #00BCD4, #0097A7);
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 188, 212, 0.3);
}

/* 微信登录弹窗样式 */
.wx-login-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1000;
    animation: fadeIn 0.3s ease;
}

.wx-login-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    max-width: 400px;
    width: 90%;
}

.wx-login-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.wx-login-header h3 {
    margin: 0;
    font-size: 18px;
    color: #333;
}

.wx-login-close {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #999;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wx-login-close:hover {
    color: #333;
}

.wx-login-qr {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 200px;
    margin-bottom: 15px;
}

.wx-login-tips {
    text-align: center;
    color: #666;
    font-size: 14px;
}

.wx-login-modal.show {
    display: flex;
    justify-content: center;
    align-items: center;
}

.wx-login-content {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    width: 90%;
    max-width: 420px;
    animation: slideUp 0.3s ease;
}

.wx-login-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 25px 15px;
    border-bottom: 1px solid #f0f0f0;
}

.wx-login-title {
    font-size: 22px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
}

.wx-login-close {
    background: none;
    border: none;
    font-size: 28px;
    color: #999;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.wx-login-close:hover {
    background-color: #f5f5f5;
    color: #666;
}

.wx-login-body {
    padding: 20px 25px 25px;
}

.wx-login-methods {
    text-align: center;
}

.wx-qr-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
}

.wx-qr-placeholder {
    width: 200px;
    height: 200px;
    border: 2px solid #e9ecef;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #ffffff;
}

.wx-qr-image {
    width: 200px;
    height: 200px;
    border: 2px solid #07c160;
    border-radius: 15px;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wx-qr-image canvas {
    border-radius: 12px;
}

.wx-login-tip {
    font-size: 14px;
    color: #666;
    margin: 10px 0 0 0;
}

/* 备用方案样式 */
.wx-fallback {
    text-align: center;
}

.fallback-content {
    padding: 20px;
}

.fallback-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.fallback-content h4 {
    font-size: 18px;
    color: #2c3e50;
    margin-bottom: 10px;
}

.fallback-content p {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.4;
}

.fallback-options {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.mini-program-icon {
    margin-right: 8px;
}

/* 用户信息弹窗样式 */
.user-info-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0. 0.6);
    z-index: 1000;
    animation: fadeIn 0.3s ease;
}

.user-info-modal.show {
    display: flex;
    justify-content: center;
    align-items: center;
}

.user-info-content {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    width: 90%;
    max-width: 500px;
    max-height: 80vh;
    overflow-y: auto;
    animation: slideUp 0.3s ease;
}

.user-info-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 25px 15px;
    border-bottom: 1px solid #f0f0f0;
}

.user-info-title {
    font-size: 22px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
}

.user-info-close {
    background: none;
    border: none;
    font-size: 28px;
    color: #999;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.user-info-close:hover {
    background-color: #f5f5f5;
    color: #666;
}

.user-info-body {
    padding: 20px 25px 25px;
}

.user-avatar-container {
    display: flex;
    justify-content: center;
    margin-bottom: 25px;
    position: relative;
}

.user-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid #07c160;
    object-fit: cover;
    background: #f5f5f5;
}

.user-avatar-loading {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid #07c160;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
}

.user-details {
    margin-bottom: 25px;
}

.user-detail-item {
    display: flex;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #f5f5f5;
}

.detail-label {
    font-size: 14px;
    color: #666;
    min-width: 100px;
    font-weight: 500;
}

.detail-value {
    font-size: 14px;
    color: #2c3e50;
    flex: 1;
}

.detail-value.user-uuid {
    font-family: monospace;
    font-size: 12px;
    color: #666;
    word-break: break-all;
}

.user-info-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .wx-login-content {
        width: 95%;
        margin: 20px;
    }
    
    .user-info-content {
        width: 95%;
        margin: 20px;
    }
    
    .fallback-options {
        flex-direction: column;
    }
    
    .user-info-actions {
        flex-direction: column;
    }
}

.download-area .btn-download:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 188, 212, 0.4);
    background: linear-gradient(135deg, #00ACC1, #00BCD4);
}

/* 微信登录弹窗样式 */
.wx-login-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1000;
    animation: fadeIn 0.3s ease;
}

.wx-login-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    max-width: 400px;
    width: 90%;
}

.wx-login-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.wx-login-header h3 {
    margin: 0;
    font-size: 18px;
    color: #333;
}

.wx-login-close {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #999;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wx-login-close:hover {
    color: #333;
}

.wx-login-qr {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 200px;
    margin-bottom: 15px;
}

.wx-login-tips {
    text-align: center;
    color: #666;
    font-size: 14px;
}

.wx-login-modal.show {
    display: flex;
    justify-content: center;
    align-items: center;
}

.wx-login-content {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    width: 90%;
    max-width: 420px;
    animation: slideUp 0.3s ease;
}

.wx-login-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 25px 15px;
    border-bottom: 1px solid #f0f0f0;
}

.wx-login-title {
    font-size: 22px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
}

.wx-login-close {
    background: none;
    border: none;
    font-size: 28px;
    color: #999;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.wx-login-close:hover {
    background-color: #f5f5f5;
    color: #666;
}

.wx-login-body {
    padding: 20px 25px 25px;
}

.wx-login-methods {
    text-align: center;
}

.wx-qr-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
}

.wx-qr-placeholder {
    width: 200px;
    height: 200px;
    border: 2px solid #e9ecef;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #ffffff;
}

.wx-qr-image {
    width: 200px;
    height: 200px;
    border: 2px solid #07c160;
    border-radius: 15px;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wx-qr-image canvas {
    border-radius: 12px;
}

.wx-login-tip {
    font-size: 14px;
    color: #666;
    margin: 10px 0 0 0;
}

/* 备用方案样式 */
.wx-fallback {
    text-align: center;
}

.fallback-content {
    padding: 20px;
}

.fallback-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.fallback-content h4 {
    font-size: 18px;
    color: #2c3e50;
    margin-bottom: 10px;
}

.fallback-content p {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.4;
}

.fallback-options {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.mini-program-icon {
    margin-right: 8px;
}

/* 用户信息弹窗样式 */
.user-info-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0. 0.6);
    z-index: 1000;
    animation: fadeIn 0.3s ease;
}

.user-info-modal.show {
    display: flex;
    justify-content: center;
    align-items: center;
}

.user-info-content {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    width: 90%;
    max-width: 500px;
    max-height: 80vh;
    overflow-y: auto;
    animation: slideUp 0.3s ease;
}

.user-info-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 25px 15px;
    border-bottom: 1px solid #f0f0f0;
}

.user-info-title {
    font-size: 22px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
}

.user-info-close {
    background: none;
    border: none;
    font-size: 28px;
    color: #999;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.user-info-close:hover {
    background-color: #f5f5f5;
    color: #666;
}

.user-info-body {
    padding: 20px 25px 25px;
}

.user-avatar-container {
    display: flex;
    justify-content: center;
    margin-bottom: 25px;
    position: relative;
}

.user-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid #07c160;
    object-fit: cover;
    background: #f5f5f5;
}

.user-avatar-loading {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid #07c160;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
}

.user-details {
    margin-bottom: 25px;
}

.user-detail-item {
    display: flex;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #f5f5f5;
}

.detail-label {
    font-size: 14px;
    color: #666;
    min-width: 100px;
    font-weight: 500;
}

.detail-value {
    font-size: 14px;
    color: #2c3e50;
    flex: 1;
}

.detail-value.user-uuid {
    font-family: monospace;
    font-size: 12px;
    color: #666;
    word-break: break-all;
}

.user-info-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .wx-login-content {
        width: 95%;
        margin: 20px;
    }
    
    .user-info-content {
        width: 95%;
        margin: 20px;
    }
    
    .fallback-options {
        flex-direction: column;
    }
    
    .user-info-actions {
        flex-direction: column;
    }
}

.download-area .btn-download:active {
    transform: translateY(0);
}

/* 微信登录弹窗样式 */
.wx-login-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1000;
    animation: fadeIn 0.3s ease;
}

.wx-login-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    max-width: 400px;
    width: 90%;
}

.wx-login-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.wx-login-header h3 {
    margin: 0;
    font-size: 18px;
    color: #333;
}

.wx-login-close {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #999;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wx-login-close:hover {
    color: #333;
}

.wx-login-qr {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 200px;
    margin-bottom: 15px;
}

.wx-login-tips {
    text-align: center;
    color: #666;
    font-size: 14px;
}

.wx-login-modal.show {
    display: flex;
    justify-content: center;
    align-items: center;
}

.wx-login-content {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    width: 90%;
    max-width: 420px;
    animation: slideUp 0.3s ease;
}

.wx-login-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 25px 15px;
    border-bottom: 1px solid #f0f0f0;
}

.wx-login-title {
    font-size: 22px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
}

.wx-login-close {
    background: none;
    border: none;
    font-size: 28px;
    color: #999;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.wx-login-close:hover {
    background-color: #f5f5f5;
    color: #666;
}

.wx-login-body {
    padding: 20px 25px 25px;
}

.wx-login-methods {
    text-align: center;
}

.wx-qr-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
}

.wx-qr-placeholder {
    width: 200px;
    height: 200px;
    border: 2px solid #e9ecef;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #ffffff;
}

.wx-qr-image {
    width: 200px;
    height: 200px;
    border: 2px solid #07c160;
    border-radius: 15px;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wx-qr-image canvas {
    border-radius: 12px;
}

.wx-login-tip {
    font-size: 14px;
    color: #666;
    margin: 10px 0 0 0;
}

/* 备用方案样式 */
.wx-fallback {
    text-align: center;
}

.fallback-content {
    padding: 20px;
}

.fallback-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.fallback-content h4 {
    font-size: 18px;
    color: #2c3e50;
    margin-bottom: 10px;
}

.fallback-content p {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.4;
}

.fallback-options {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.mini-program-icon {
    margin-right: 8px;
}

/* 用户信息弹窗样式 */
.user-info-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0. 0.6);
    z-index: 1000;
    animation: fadeIn 0.3s ease;
}

.user-info-modal.show {
    display: flex;
    justify-content: center;
    align-items: center;
}

.user-info-content {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    width: 90%;
    max-width: 500px;
    max-height: 80vh;
    overflow-y: auto;
    animation: slideUp 0.3s ease;
}

.user-info-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 25px 15px;
    border-bottom: 1px solid #f0f0f0;
}

.user-info-title {
    font-size: 22px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
}

.user-info-close {
    background: none;
    border: none;
    font-size: 28px;
    color: #999;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.user-info-close:hover {
    background-color: #f5f5f5;
    color: #666;
}

.user-info-body {
    padding: 20px 25px 25px;
}

.user-avatar-container {
    display: flex;
    justify-content: center;
    margin-bottom: 25px;
    position: relative;
}

.user-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid #07c160;
    object-fit: cover;
    background: #f5f5f5;
}

.user-avatar-loading {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid #07c160;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
}

.user-details {
    margin-bottom: 25px;
}

.user-detail-item {
    display: flex;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #f5f5f5;
}

.detail-label {
    font-size: 14px;
    color: #666;
    min-width: 100px;
    font-weight: 500;
}

.detail-value {
    font-size: 14px;
    color: #2c3e50;
    flex: 1;
}

.detail-value.user-uuid {
    font-family: monospace;
    font-size: 12px;
    color: #666;
    word-break: break-all;
}

.user-info-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .wx-login-content {
        width: 95%;
        margin: 20px;
    }
    
    .user-info-content {
        width: 95%;
        margin: 20px;
    }
    
    .fallback-options {
        flex-direction: column;
    }
    
    .user-info-actions {
        flex-direction: column;
    }
}

.download-button-container .btn-download {
    padding: 12px 40px;
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: 6px;
    background: linear-gradient(135deg, #00BCD4, #0097A7);
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 188, 212, 0.3);
}

/* 微信登录弹窗样式 */
.wx-login-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1000;
    animation: fadeIn 0.3s ease;
}

.wx-login-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    max-width: 400px;
    width: 90%;
}

.wx-login-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.wx-login-header h3 {
    margin: 0;
    font-size: 18px;
    color: #333;
}

.wx-login-close {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #999;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wx-login-close:hover {
    color: #333;
}

.wx-login-qr {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 200px;
    margin-bottom: 15px;
}

.wx-login-tips {
    text-align: center;
    color: #666;
    font-size: 14px;
}

.wx-login-modal.show {
    display: flex;
    justify-content: center;
    align-items: center;
}

.wx-login-content {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    width: 90%;
    max-width: 420px;
    animation: slideUp 0.3s ease;
}

.wx-login-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 25px 15px;
    border-bottom: 1px solid #f0f0f0;
}

.wx-login-title {
    font-size: 22px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
}

.wx-login-close {
    background: none;
    border: none;
    font-size: 28px;
    color: #999;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.wx-login-close:hover {
    background-color: #f5f5f5;
    color: #666;
}

.wx-login-body {
    padding: 20px 25px 25px;
}

.wx-login-methods {
    text-align: center;
}

.wx-qr-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
}

.wx-qr-placeholder {
    width: 200px;
    height: 200px;
    border: 2px solid #e9ecef;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #ffffff;
}

.wx-qr-image {
    width: 200px;
    height: 200px;
    border: 2px solid #07c160;
    border-radius: 15px;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wx-qr-image canvas {
    border-radius: 12px;
}

.wx-login-tip {
    font-size: 14px;
    color: #666;
    margin: 10px 0 0 0;
}

/* 备用方案样式 */
.wx-fallback {
    text-align: center;
}

.fallback-content {
    padding: 20px;
}

.fallback-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.fallback-content h4 {
    font-size: 18px;
    color: #2c3e50;
    margin-bottom: 10px;
}

.fallback-content p {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.4;
}

.fallback-options {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.mini-program-icon {
    margin-right: 8px;
}

/* 用户信息弹窗样式 */
.user-info-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0. 0.6);
    z-index: 1000;
    animation: fadeIn 0.3s ease;
}

.user-info-modal.show {
    display: flex;
    justify-content: center;
    align-items: center;
}

.user-info-content {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    width: 90%;
    max-width: 500px;
    max-height: 80vh;
    overflow-y: auto;
    animation: slideUp 0.3s ease;
}

.user-info-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 25px 15px;
    border-bottom: 1px solid #f0f0f0;
}

.user-info-title {
    font-size: 22px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
}

.user-info-close {
    background: none;
    border: none;
    font-size: 28px;
    color: #999;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.user-info-close:hover {
    background-color: #f5f5f5;
    color: #666;
}

.user-info-body {
    padding: 20px 25px 25px;
}

.user-avatar-container {
    display: flex;
    justify-content: center;
    margin-bottom: 25px;
    position: relative;
}

.user-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid #07c160;
    object-fit: cover;
    background: #f5f5f5;
}

.user-avatar-loading {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid #07c160;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
}

.user-details {
    margin-bottom: 25px;
}

.user-detail-item {
    display: flex;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #f5f5f5;
}

.detail-label {
    font-size: 14px;
    color: #666;
    min-width: 100px;
    font-weight: 500;
}

.detail-value {
    font-size: 14px;
    color: #2c3e50;
    flex: 1;
}

.detail-value.user-uuid {
    font-family: monospace;
    font-size: 12px;
    color: #666;
    word-break: break-all;
}

.user-info-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .wx-login-content {
        width: 95%;
        margin: 20px;
    }
    
    .user-info-content {
        width: 95%;
        margin: 20px;
    }
    
    .fallback-options {
        flex-direction: column;
    }
    
    .user-info-actions {
        flex-direction: column;
    }
}

.download-button-container .btn-download:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 188, 212, 0.4);
    background: linear-gradient(135deg, #00ACC1, #00BCD4);
}

/* 微信登录弹窗样式 */
.wx-login-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1000;
    animation: fadeIn 0.3s ease;
}

.wx-login-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    max-width: 400px;
    width: 90%;
}

.wx-login-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.wx-login-header h3 {
    margin: 0;
    font-size: 18px;
    color: #333;
}

.wx-login-close {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #999;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wx-login-close:hover {
    color: #333;
}

.wx-login-qr {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 200px;
    margin-bottom: 15px;
}

.wx-login-tips {
    text-align: center;
    color: #666;
    font-size: 14px;
}

.wx-login-modal.show {
    display: flex;
    justify-content: center;
    align-items: center;
}

.wx-login-content {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    width: 90%;
    max-width: 420px;
    animation: slideUp 0.3s ease;
}

.wx-login-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 25px 15px;
    border-bottom: 1px solid #f0f0f0;
}

.wx-login-title {
    font-size: 22px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
}

.wx-login-close {
    background: none;
    border: none;
    font-size: 28px;
    color: #999;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.wx-login-close:hover {
    background-color: #f5f5f5;
    color: #666;
}

.wx-login-body {
    padding: 20px 25px 25px;
}

.wx-login-methods {
    text-align: center;
}

.wx-qr-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
}

.wx-qr-placeholder {
    width: 200px;
    height: 200px;
    border: 2px solid #e9ecef;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #ffffff;
}

.wx-qr-image {
    width: 200px;
    height: 200px;
    border: 2px solid #07c160;
    border-radius: 15px;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wx-qr-image canvas {
    border-radius: 12px;
}

.wx-login-tip {
    font-size: 14px;
    color: #666;
    margin: 10px 0 0 0;
}

/* 备用方案样式 */
.wx-fallback {
    text-align: center;
}

.fallback-content {
    padding: 20px;
}

.fallback-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.fallback-content h4 {
    font-size: 18px;
    color: #2c3e50;
    margin-bottom: 10px;
}

.fallback-content p {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.4;
}

.fallback-options {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.mini-program-icon {
    margin-right: 8px;
}

/* 用户信息弹窗样式 */
.user-info-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0. 0.6);
    z-index: 1000;
    animation: fadeIn 0.3s ease;
}

.user-info-modal.show {
    display: flex;
    justify-content: center;
    align-items: center;
}

.user-info-content {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    width: 90%;
    max-width: 500px;
    max-height: 80vh;
    overflow-y: auto;
    animation: slideUp 0.3s ease;
}

.user-info-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 25px 15px;
    border-bottom: 1px solid #f0f0f0;
}

.user-info-title {
    font-size: 22px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
}

.user-info-close {
    background: none;
    border: none;
    font-size: 28px;
    color: #999;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.user-info-close:hover {
    background-color: #f5f5f5;
    color: #666;
}

.user-info-body {
    padding: 20px 25px 25px;
}

.user-avatar-container {
    display: flex;
    justify-content: center;
    margin-bottom: 25px;
    position: relative;
}

.user-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid #07c160;
    object-fit: cover;
    background: #f5f5f5;
}

.user-avatar-loading {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid #07c160;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
}

.user-details {
    margin-bottom: 25px;
}

.user-detail-item {
    display: flex;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #f5f5f5;
}

.detail-label {
    font-size: 14px;
    color: #666;
    min-width: 100px;
    font-weight: 500;
}

.detail-value {
    font-size: 14px;
    color: #2c3e50;
    flex: 1;
}

.detail-value.user-uuid {
    font-family: monospace;
    font-size: 12px;
    color: #666;
    word-break: break-all;
}

.user-info-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .wx-login-content {
        width: 95%;
        margin: 20px;
    }
    
    .user-info-content {
        width: 95%;
        margin: 20px;
    }
    
    .fallback-options {
        flex-direction: column;
    }
    
    .user-info-actions {
        flex-direction: column;
    }
}

.download-button-container .btn-download:active {
    transform: translateY(0);
}

/* 微信登录弹窗样式 */
.wx-login-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1000;
    animation: fadeIn 0.3s ease;
}

.wx-login-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    max-width: 400px;
    width: 90%;
}

.wx-login-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.wx-login-header h3 {
    margin: 0;
    font-size: 18px;
    color: #333;
}

.wx-login-close {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #999;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wx-login-close:hover {
    color: #333;
}

.wx-login-qr {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 200px;
    margin-bottom: 15px;
}

.wx-login-tips {
    text-align: center;
    color: #666;
    font-size: 14px;
}

.wx-login-modal.show {
    display: flex;
    justify-content: center;
    align-items: center;
}

.wx-login-content {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    width: 90%;
    max-width: 420px;
    animation: slideUp 0.3s ease;
}

.wx-login-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 25px 15px;
    border-bottom: 1px solid #f0f0f0;
}

.wx-login-title {
    font-size: 22px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
}

.wx-login-close {
    background: none;
    border: none;
    font-size: 28px;
    color: #999;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.wx-login-close:hover {
    background-color: #f5f5f5;
    color: #666;
}

.wx-login-body {
    padding: 20px 25px 25px;
}

.wx-login-methods {
    text-align: center;
}

.wx-qr-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
}

.wx-qr-placeholder {
    width: 200px;
    height: 200px;
    border: 2px solid #e9ecef;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #ffffff;
}

.wx-qr-image {
    width: 200px;
    height: 200px;
    border: 2px solid #07c160;
    border-radius: 15px;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wx-qr-image canvas {
    border-radius: 12px;
}

.wx-login-tip {
    font-size: 14px;
    color: #666;
    margin: 10px 0 0 0;
}

/* 备用方案样式 */
.wx-fallback {
    text-align: center;
}

.fallback-content {
    padding: 20px;
}

.fallback-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.fallback-content h4 {
    font-size: 18px;
    color: #2c3e50;
    margin-bottom: 10px;
}

.fallback-content p {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.4;
}

.fallback-options {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.mini-program-icon {
    margin-right: 8px;
}

/* 用户信息弹窗样式 */
.user-info-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0. 0.6);
    z-index: 1000;
    animation: fadeIn 0.3s ease;
}

.user-info-modal.show {
    display: flex;
    justify-content: center;
    align-items: center;
}

.user-info-content {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    width: 90%;
    max-width: 500px;
    max-height: 80vh;
    overflow-y: auto;
    animation: slideUp 0.3s ease;
}

.user-info-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 25px 15px;
    border-bottom: 1px solid #f0f0f0;
}

.user-info-title {
    font-size: 22px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
}

.user-info-close {
    background: none;
    border: none;
    font-size: 28px;
    color: #999;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.user-info-close:hover {
    background-color: #f5f5f5;
    color: #666;
}

.user-info-body {
    padding: 20px 25px 25px;
}

.user-avatar-container {
    display: flex;
    justify-content: center;
    margin-bottom: 25px;
    position: relative;
}

.user-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid #07c160;
    object-fit: cover;
    background: #f5f5f5;
}

.user-avatar-loading {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid #07c160;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
}

.user-details {
    margin-bottom: 25px;
}

.user-detail-item {
    display: flex;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #f5f5f5;
}

.detail-label {
    font-size: 14px;
    color: #666;
    min-width: 100px;
    font-weight: 500;
}

.detail-value {
    font-size: 14px;
    color: #2c3e50;
    flex: 1;
}

.detail-value.user-uuid {
    font-family: monospace;
    font-size: 12px;
    color: #666;
    word-break: break-all;
}

.user-info-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .wx-login-content {
        width: 95%;
        margin: 20px;
    }
    
    .user-info-content {
        width: 95%;
        margin: 20px;
    }
    
    .fallback-options {
        flex-direction: column;
    }
    
    .user-info-actions {
        flex-direction: column;
    }
}

/* 网站信息响应式设计 */
@media (max-width: 768px) {
    .site-info-content {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

/* 微信登录弹窗样式 */
.wx-login-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1000;
    animation: fadeIn 0.3s ease;
}

.wx-login-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    max-width: 400px;
    width: 90%;
}

.wx-login-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.wx-login-header h3 {
    margin: 0;
    font-size: 18px;
    color: #333;
}

.wx-login-close {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #999;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wx-login-close:hover {
    color: #333;
}

.wx-login-qr {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 200px;
    margin-bottom: 15px;
}

.wx-login-tips {
    text-align: center;
    color: #666;
    font-size: 14px;
}

.wx-login-modal.show {
    display: flex;
    justify-content: center;
    align-items: center;
}

.wx-login-content {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    width: 90%;
    max-width: 420px;
    animation: slideUp 0.3s ease;
}

.wx-login-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 25px 15px;
    border-bottom: 1px solid #f0f0f0;
}

.wx-login-title {
    font-size: 22px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
}

.wx-login-close {
    background: none;
    border: none;
    font-size: 28px;
    color: #999;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.wx-login-close:hover {
    background-color: #f5f5f5;
    color: #666;
}

.wx-login-body {
    padding: 20px 25px 25px;
}

.wx-login-methods {
    text-align: center;
}

.wx-qr-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
}

.wx-qr-placeholder {
    width: 200px;
    height: 200px;
    border: 2px solid #e9ecef;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #ffffff;
}

.wx-qr-image {
    width: 200px;
    height: 200px;
    border: 2px solid #07c160;
    border-radius: 15px;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wx-qr-image canvas {
    border-radius: 12px;
}

.wx-login-tip {
    font-size: 14px;
    color: #666;
    margin: 10px 0 0 0;
}

/* 备用方案样式 */
.wx-fallback {
    text-align: center;
}

.fallback-content {
    padding: 20px;
}

.fallback-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.fallback-content h4 {
    font-size: 18px;
    color: #2c3e50;
    margin-bottom: 10px;
}

.fallback-content p {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.4;
}

.fallback-options {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.mini-program-icon {
    margin-right: 8px;
}

/* 用户信息弹窗样式 */
.user-info-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0. 0.6);
    z-index: 1000;
    animation: fadeIn 0.3s ease;
}

.user-info-modal.show {
    display: flex;
    justify-content: center;
    align-items: center;
}

.user-info-content {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    width: 90%;
    max-width: 500px;
    max-height: 80vh;
    overflow-y: auto;
    animation: slideUp 0.3s ease;
}

.user-info-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 25px 15px;
    border-bottom: 1px solid #f0f0f0;
}

.user-info-title {
    font-size: 22px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
}

.user-info-close {
    background: none;
    border: none;
    font-size: 28px;
    color: #999;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.user-info-close:hover {
    background-color: #f5f5f5;
    color: #666;
}

.user-info-body {
    padding: 20px 25px 25px;
}

.user-avatar-container {
    display: flex;
    justify-content: center;
    margin-bottom: 25px;
    position: relative;
}

.user-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid #07c160;
    object-fit: cover;
    background: #f5f5f5;
}

.user-avatar-loading {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid #07c160;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
}

.user-details {
    margin-bottom: 25px;
}

.user-detail-item {
    display: flex;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #f5f5f5;
}

.detail-label {
    font-size: 14px;
    color: #666;
    min-width: 100px;
    font-weight: 500;
}

.detail-value {
    font-size: 14px;
    color: #2c3e50;
    flex: 1;
}

.detail-value.user-uuid {
    font-family: monospace;
    font-size: 12px;
    color: #666;
    word-break: break-all;
}

.user-info-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .wx-login-content {
        width: 95%;
        margin: 20px;
    }
    
    .user-info-content {
        width: 95%;
        margin: 20px;
    }
    
    .fallback-options {
        flex-direction: column;
    }
    
    .user-info-actions {
        flex-direction: column;
    }
}
    
    .info-section {
        min-width: auto;
        width: 100%;
        max-width: 300px;
    }

/* 微信登录弹窗样式 */
.wx-login-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1000;
    animation: fadeIn 0.3s ease;
}

.wx-login-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    max-width: 400px;
    width: 90%;
}

.wx-login-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.wx-login-header h3 {
    margin: 0;
    font-size: 18px;
    color: #333;
}

.wx-login-close {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #999;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wx-login-close:hover {
    color: #333;
}

.wx-login-qr {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 200px;
    margin-bottom: 15px;
}

.wx-login-tips {
    text-align: center;
    color: #666;
    font-size: 14px;
}

.wx-login-modal.show {
    display: flex;
    justify-content: center;
    align-items: center;
}

.wx-login-content {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    width: 90%;
    max-width: 420px;
    animation: slideUp 0.3s ease;
}

.wx-login-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 25px 15px;
    border-bottom: 1px solid #f0f0f0;
}

.wx-login-title {
    font-size: 22px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
}

.wx-login-close {
    background: none;
    border: none;
    font-size: 28px;
    color: #999;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.wx-login-close:hover {
    background-color: #f5f5f5;
    color: #666;
}

.wx-login-body {
    padding: 20px 25px 25px;
}

.wx-login-methods {
    text-align: center;
}

.wx-qr-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
}

.wx-qr-placeholder {
    width: 200px;
    height: 200px;
    border: 2px solid #e9ecef;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #ffffff;
}

.wx-qr-image {
    width: 200px;
    height: 200px;
    border: 2px solid #07c160;
    border-radius: 15px;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wx-qr-image canvas {
    border-radius: 12px;
}

.wx-login-tip {
    font-size: 14px;
    color: #666;
    margin: 10px 0 0 0;
}

/* 备用方案样式 */
.wx-fallback {
    text-align: center;
}

.fallback-content {
    padding: 20px;
}

.fallback-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.fallback-content h4 {
    font-size: 18px;
    color: #2c3e50;
    margin-bottom: 10px;
}

.fallback-content p {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.4;
}

.fallback-options {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.mini-program-icon {
    margin-right: 8px;
}

/* 用户信息弹窗样式 */
.user-info-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0. 0.6);
    z-index: 1000;
    animation: fadeIn 0.3s ease;
}

.user-info-modal.show {
    display: flex;
    justify-content: center;
    align-items: center;
}

.user-info-content {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    width: 90%;
    max-width: 500px;
    max-height: 80vh;
    overflow-y: auto;
    animation: slideUp 0.3s ease;
}

.user-info-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 25px 15px;
    border-bottom: 1px solid #f0f0f0;
}

.user-info-title {
    font-size: 22px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
}

.user-info-close {
    background: none;
    border: none;
    font-size: 28px;
    color: #999;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.user-info-close:hover {
    background-color: #f5f5f5;
    color: #666;
}

.user-info-body {
    padding: 20px 25px 25px;
}

.user-avatar-container {
    display: flex;
    justify-content: center;
    margin-bottom: 25px;
    position: relative;
}

.user-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid #07c160;
    object-fit: cover;
    background: #f5f5f5;
}

.user-avatar-loading {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid #07c160;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
}

.user-details {
    margin-bottom: 25px;
}

.user-detail-item {
    display: flex;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #f5f5f5;
}

.detail-label {
    font-size: 14px;
    color: #666;
    min-width: 100px;
    font-weight: 500;
}

.detail-value {
    font-size: 14px;
    color: #2c3e50;
    flex: 1;
}

.detail-value.user-uuid {
    font-family: monospace;
    font-size: 12px;
    color: #666;
    word-break: break-all;
}

.user-info-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .wx-login-content {
        width: 95%;
        margin: 20px;
    }
    
    .user-info-content {
        width: 95%;
        margin: 20px;
    }
    
    .fallback-options {
        flex-direction: column;
    }
    
    .user-info-actions {
        flex-direction: column;
    }
}
    
    .download-button-container {
        margin-top: 20px;
        padding: 15px;
    }

/* 微信登录弹窗样式 */
.wx-login-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1000;
    animation: fadeIn 0.3s ease;
}

.wx-login-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    max-width: 400px;
    width: 90%;
}

.wx-login-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.wx-login-header h3 {
    margin: 0;
    font-size: 18px;
    color: #333;
}

.wx-login-close {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #999;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wx-login-close:hover {
    color: #333;
}

.wx-login-qr {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 200px;
    margin-bottom: 15px;
}

.wx-login-tips {
    text-align: center;
    color: #666;
    font-size: 14px;
}

.wx-login-modal.show {
    display: flex;
    justify-content: center;
    align-items: center;
}

.wx-login-content {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    width: 90%;
    max-width: 420px;
    animation: slideUp 0.3s ease;
}

.wx-login-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 25px 15px;
    border-bottom: 1px solid #f0f0f0;
}

.wx-login-title {
    font-size: 22px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
}

.wx-login-close {
    background: none;
    border: none;
    font-size: 28px;
    color: #999;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.wx-login-close:hover {
    background-color: #f5f5f5;
    color: #666;
}

.wx-login-body {
    padding: 20px 25px 25px;
}

.wx-login-methods {
    text-align: center;
}

.wx-qr-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
}

.wx-qr-placeholder {
    width: 200px;
    height: 200px;
    border: 2px solid #e9ecef;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #ffffff;
}

.wx-qr-image {
    width: 200px;
    height: 200px;
    border: 2px solid #07c160;
    border-radius: 15px;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wx-qr-image canvas {
    border-radius: 12px;
}

.wx-login-tip {
    font-size: 14px;
    color: #666;
    margin: 10px 0 0 0;
}

/* 备用方案样式 */
.wx-fallback {
    text-align: center;
}

.fallback-content {
    padding: 20px;
}

.fallback-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.fallback-content h4 {
    font-size: 18px;
    color: #2c3e50;
    margin-bottom: 10px;
}

.fallback-content p {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.4;
}

.fallback-options {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.mini-program-icon {
    margin-right: 8px;
}

/* 用户信息弹窗样式 */
.user-info-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0. 0.6);
    z-index: 1000;
    animation: fadeIn 0.3s ease;
}

.user-info-modal.show {
    display: flex;
    justify-content: center;
    align-items: center;
}

.user-info-content {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    width: 90%;
    max-width: 500px;
    max-height: 80vh;
    overflow-y: auto;
    animation: slideUp 0.3s ease;
}

.user-info-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 25px 15px;
    border-bottom: 1px solid #f0f0f0;
}

.user-info-title {
    font-size: 22px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
}

.user-info-close {
    background: none;
    border: none;
    font-size: 28px;
    color: #999;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.user-info-close:hover {
    background-color: #f5f5f5;
    color: #666;
}

.user-info-body {
    padding: 20px 25px 25px;
}

.user-avatar-container {
    display: flex;
    justify-content: center;
    margin-bottom: 25px;
    position: relative;
}

.user-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid #07c160;
    object-fit: cover;
    background: #f5f5f5;
}

.user-avatar-loading {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid #07c160;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
}

.user-details {
    margin-bottom: 25px;
}

.user-detail-item {
    display: flex;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #f5f5f5;
}

.detail-label {
    font-size: 14px;
    color: #666;
    min-width: 100px;
    font-weight: 500;
}

.detail-value {
    font-size: 14px;
    color: #2c3e50;
    flex: 1;
}

.detail-value.user-uuid {
    font-family: monospace;
    font-size: 12px;
    color: #666;
    word-break: break-all;
}

.user-info-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .wx-login-content {
        width: 95%;
        margin: 20px;
    }
    
    .user-info-content {
        width: 95%;
        margin: 20px;
    }
    
    .fallback-options {
        flex-direction: column;
    }
    
    .user-info-actions {
        flex-direction: column;
    }
}
    
    .download-button-container .btn-download {
        padding: 10px 30px;
        font-size: 14px;
    }

/* 微信登录弹窗样式 */
.wx-login-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1000;
    animation: fadeIn 0.3s ease;
}

.wx-login-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    max-width: 400px;
    width: 90%;
}

.wx-login-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.wx-login-header h3 {
    margin: 0;
    font-size: 18px;
    color: #333;
}

.wx-login-close {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #999;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wx-login-close:hover {
    color: #333;
}

.wx-login-qr {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 200px;
    margin-bottom: 15px;
}

.wx-login-tips {
    text-align: center;
    color: #666;
    font-size: 14px;
}

.wx-login-modal.show {
    display: flex;
    justify-content: center;
    align-items: center;
}

.wx-login-content {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    width: 90%;
    max-width: 420px;
    animation: slideUp 0.3s ease;
}

.wx-login-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 25px 15px;
    border-bottom: 1px solid #f0f0f0;
}

.wx-login-title {
    font-size: 22px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
}

.wx-login-close {
    background: none;
    border: none;
    font-size: 28px;
    color: #999;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.wx-login-close:hover {
    background-color: #f5f5f5;
    color: #666;
}

.wx-login-body {
    padding: 20px 25px 25px;
}

.wx-login-methods {
    text-align: center;
}

.wx-qr-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
}

.wx-qr-placeholder {
    width: 200px;
    height: 200px;
    border: 2px solid #e9ecef;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #ffffff;
}

.wx-qr-image {
    width: 200px;
    height: 200px;
    border: 2px solid #07c160;
    border-radius: 15px;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wx-qr-image canvas {
    border-radius: 12px;
}

.wx-login-tip {
    font-size: 14px;
    color: #666;
    margin: 10px 0 0 0;
}

/* 备用方案样式 */
.wx-fallback {
    text-align: center;
}

.fallback-content {
    padding: 20px;
}

.fallback-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.fallback-content h4 {
    font-size: 18px;
    color: #2c3e50;
    margin-bottom: 10px;
}

.fallback-content p {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.4;
}

.fallback-options {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.mini-program-icon {
    margin-right: 8px;
}

/* 用户信息弹窗样式 */
.user-info-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0. 0.6);
    z-index: 1000;
    animation: fadeIn 0.3s ease;
}

.user-info-modal.show {
    display: flex;
    justify-content: center;
    align-items: center;
}

.user-info-content {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    width: 90%;
    max-width: 500px;
    max-height: 80vh;
    overflow-y: auto;
    animation: slideUp 0.3s ease;
}

.user-info-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 25px 15px;
    border-bottom: 1px solid #f0f0f0;
}

.user-info-title {
    font-size: 22px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
}

.user-info-close {
    background: none;
    border: none;
    font-size: 28px;
    color: #999;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.user-info-close:hover {
    background-color: #f5f5f5;
    color: #666;
}

.user-info-body {
    padding: 20px 25px 25px;
}

.user-avatar-container {
    display: flex;
    justify-content: center;
    margin-bottom: 25px;
    position: relative;
}

.user-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid #07c160;
    object-fit: cover;
    background: #f5f5f5;
}

.user-avatar-loading {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid #07c160;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
}

.user-details {
    margin-bottom: 25px;
}

.user-detail-item {
    display: flex;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #f5f5f5;
}

.detail-label {
    font-size: 14px;
    color: #666;
    min-width: 100px;
    font-weight: 500;
}

.detail-value {
    font-size: 14px;
    color: #2c3e50;
    flex: 1;
}

.detail-value.user-uuid {
    font-family: monospace;
    font-size: 12px;
    color: #666;
    word-break: break-all;
}

.user-info-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .wx-login-content {
        width: 95%;
        margin: 20px;
    }
    
    .user-info-content {
        width: 95%;
        margin: 20px;
    }
    
    .fallback-options {
        flex-direction: column;
    }
    
    .user-info-actions {
        flex-direction: column;
    }
}
}

/* 微信登录弹窗样式 */
.wx-login-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1000;
    animation: fadeIn 0.3s ease;
}

.wx-login-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    max-width: 400px;
    width: 90%;
}

.wx-login-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.wx-login-header h3 {
    margin: 0;
    font-size: 18px;
    color: #333;
}

.wx-login-close {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #999;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wx-login-close:hover {
    color: #333;
}

.wx-login-qr {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 200px;
    margin-bottom: 15px;
}

.wx-login-tips {
    text-align: center;
    color: #666;
    font-size: 14px;
}

.wx-login-modal.show {
    display: flex;
    justify-content: center;
    align-items: center;
}

.wx-login-content {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    width: 90%;
    max-width: 420px;
    animation: slideUp 0.3s ease;
}

.wx-login-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 25px 15px;
    border-bottom: 1px solid #f0f0f0;
}

.wx-login-title {
    font-size: 22px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
}

.wx-login-close {
    background: none;
    border: none;
    font-size: 28px;
    color: #999;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.wx-login-close:hover {
    background-color: #f5f5f5;
    color: #666;
}

.wx-login-body {
    padding: 20px 25px 25px;
}

.wx-login-methods {
    text-align: center;
}

.wx-qr-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
}

.wx-qr-placeholder {
    width: 200px;
    height: 200px;
    border: 2px solid #e9ecef;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #ffffff;
}

.wx-qr-image {
    width: 200px;
    height: 200px;
    border: 2px solid #07c160;
    border-radius: 15px;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wx-qr-image canvas {
    border-radius: 12px;
}

.wx-login-tip {
    font-size: 14px;
    color: #666;
    margin: 10px 0 0 0;
}

/* 备用方案样式 */
.wx-fallback {
    text-align: center;
}

.fallback-content {
    padding: 20px;
}

.fallback-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.fallback-content h4 {
    font-size: 18px;
    color: #2c3e50;
    margin-bottom: 10px;
}

.fallback-content p {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.4;
}

.fallback-options {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.mini-program-icon {
    margin-right: 8px;
}

/* 用户信息弹窗样式 */
.user-info-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0. 0.6);
    z-index: 1000;
    animation: fadeIn 0.3s ease;
}

.user-info-modal.show {
    display: flex;
    justify-content: center;
    align-items: center;
}

.user-info-content {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    width: 90%;
    max-width: 500px;
    max-height: 80vh;
    overflow-y: auto;
    animation: slideUp 0.3s ease;
}

.user-info-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 25px 15px;
    border-bottom: 1px solid #f0f0f0;
}

.user-info-title {
    font-size: 22px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
}

.user-info-close {
    background: none;
    border: none;
    font-size: 28px;
    color: #999;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.user-info-close:hover {
    background-color: #f5f5f5;
    color: #666;
}

.user-info-body {
    padding: 20px 25px 25px;
}

.user-avatar-container {
    display: flex;
    justify-content: center;
    margin-bottom: 25px;
    position: relative;
}

.user-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid #07c160;
    object-fit: cover;
    background: #f5f5f5;
}

.user-avatar-loading {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid #07c160;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
}

.user-details {
    margin-bottom: 25px;
}

.user-detail-item {
    display: flex;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #f5f5f5;
}

.detail-label {
    font-size: 14px;
    color: #666;
    min-width: 100px;
    font-weight: 500;
}

.detail-value {
    font-size: 14px;
    color: #2c3e50;
    flex: 1;
}

.detail-value.user-uuid {
    font-family: monospace;
    font-size: 12px;
    color: #666;
    word-break: break-all;
}

.user-info-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .wx-login-content {
        width: 95%;
        margin: 20px;
    }
    
    .user-info-content {
        width: 95%;
        margin: 20px;
    }
    
    .fallback-options {
        flex-direction: column;
    }
    
    .user-info-actions {
        flex-direction: column;
    }
}

/* 服务条款和隐私政策模态框样式 */
.terms-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
}

/* 微信登录弹窗样式 */
.wx-login-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1000;
    animation: fadeIn 0.3s ease;
}

.wx-login-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    max-width: 400px;
    width: 90%;
}

.wx-login-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.wx-login-header h3 {
    margin: 0;
    font-size: 18px;
    color: #333;
}

.wx-login-close {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #999;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wx-login-close:hover {
    color: #333;
}

.wx-login-qr {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 200px;
    margin-bottom: 15px;
}

.wx-login-tips {
    text-align: center;
    color: #666;
    font-size: 14px;
}

.wx-login-modal.show {
    display: flex;
    justify-content: center;
    align-items: center;
}

.wx-login-content {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    width: 90%;
    max-width: 420px;
    animation: slideUp 0.3s ease;
}

.wx-login-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 25px 15px;
    border-bottom: 1px solid #f0f0f0;
}

.wx-login-title {
    font-size: 22px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
}

.wx-login-close {
    background: none;
    border: none;
    font-size: 28px;
    color: #999;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.wx-login-close:hover {
    background-color: #f5f5f5;
    color: #666;
}

.wx-login-body {
    padding: 20px 25px 25px;
}

.wx-login-methods {
    text-align: center;
}

.wx-qr-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
}

.wx-qr-placeholder {
    width: 200px;
    height: 200px;
    border: 2px solid #e9ecef;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #ffffff;
}

.wx-qr-image {
    width: 200px;
    height: 200px;
    border: 2px solid #07c160;
    border-radius: 15px;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wx-qr-image canvas {
    border-radius: 12px;
}

.wx-login-tip {
    font-size: 14px;
    color: #666;
    margin: 10px 0 0 0;
}

/* 备用方案样式 */
.wx-fallback {
    text-align: center;
}

.fallback-content {
    padding: 20px;
}

.fallback-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.fallback-content h4 {
    font-size: 18px;
    color: #2c3e50;
    margin-bottom: 10px;
}

.fallback-content p {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.4;
}

.fallback-options {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.mini-program-icon {
    margin-right: 8px;
}

/* 用户信息弹窗样式 */
.user-info-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0. 0.6);
    z-index: 1000;
    animation: fadeIn 0.3s ease;
}

.user-info-modal.show {
    display: flex;
    justify-content: center;
    align-items: center;
}

.user-info-content {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    width: 90%;
    max-width: 500px;
    max-height: 80vh;
    overflow-y: auto;
    animation: slideUp 0.3s ease;
}

.user-info-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 25px 15px;
    border-bottom: 1px solid #f0f0f0;
}

.user-info-title {
    font-size: 22px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
}

.user-info-close {
    background: none;
    border: none;
    font-size: 28px;
    color: #999;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.user-info-close:hover {
    background-color: #f5f5f5;
    color: #666;
}

.user-info-body {
    padding: 20px 25px 25px;
}

.user-avatar-container {
    display: flex;
    justify-content: center;
    margin-bottom: 25px;
    position: relative;
}

.user-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid #07c160;
    object-fit: cover;
    background: #f5f5f5;
}

.user-avatar-loading {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid #07c160;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
}

.user-details {
    margin-bottom: 25px;
}

.user-detail-item {
    display: flex;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #f5f5f5;
}

.detail-label {
    font-size: 14px;
    color: #666;
    min-width: 100px;
    font-weight: 500;
}

.detail-value {
    font-size: 14px;
    color: #2c3e50;
    flex: 1;
}

.detail-value.user-uuid {
    font-family: monospace;
    font-size: 12px;
    color: #666;
    word-break: break-all;
}

.user-info-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .wx-login-content {
        width: 95%;
        margin: 20px;
    }
    
    .user-info-content {
        width: 95%;
        margin: 20px;
    }
    
    .fallback-options {
        flex-direction: column;
    }
    
    .user-info-actions {
        flex-direction: column;
    }
}

.terms-content {
    background-color: #fff;
    margin: 50px auto;
    padding: 0;
    border-radius: 8px;
    width: 90%;
    max-width: 600px;
    max-height: 80vh;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

/* 微信登录弹窗样式 */
.wx-login-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1000;
    animation: fadeIn 0.3s ease;
}

.wx-login-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    max-width: 400px;
    width: 90%;
}

.wx-login-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.wx-login-header h3 {
    margin: 0;
    font-size: 18px;
    color: #333;
}

.wx-login-close {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #999;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wx-login-close:hover {
    color: #333;
}

.wx-login-qr {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 200px;
    margin-bottom: 15px;
}

.wx-login-tips {
    text-align: center;
    color: #666;
    font-size: 14px;
}

.wx-login-modal.show {
    display: flex;
    justify-content: center;
    align-items: center;
}

.wx-login-content {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    width: 90%;
    max-width: 420px;
    animation: slideUp 0.3s ease;
}

.wx-login-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 25px 15px;
    border-bottom: 1px solid #f0f0f0;
}

.wx-login-title {
    font-size: 22px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
}

.wx-login-close {
    background: none;
    border: none;
    font-size: 28px;
    color: #999;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.wx-login-close:hover {
    background-color: #f5f5f5;
    color: #666;
}

.wx-login-body {
    padding: 20px 25px 25px;
}

.wx-login-methods {
    text-align: center;
}

.wx-qr-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
}

.wx-qr-placeholder {
    width: 200px;
    height: 200px;
    border: 2px solid #e9ecef;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #ffffff;
}

.wx-qr-image {
    width: 200px;
    height: 200px;
    border: 2px solid #07c160;
    border-radius: 15px;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wx-qr-image canvas {
    border-radius: 12px;
}

.wx-login-tip {
    font-size: 14px;
    color: #666;
    margin: 10px 0 0 0;
}

/* 备用方案样式 */
.wx-fallback {
    text-align: center;
}

.fallback-content {
    padding: 20px;
}

.fallback-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.fallback-content h4 {
    font-size: 18px;
    color: #2c3e50;
    margin-bottom: 10px;
}

.fallback-content p {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.4;
}

.fallback-options {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.mini-program-icon {
    margin-right: 8px;
}

/* 用户信息弹窗样式 */
.user-info-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0. 0.6);
    z-index: 1000;
    animation: fadeIn 0.3s ease;
}

.user-info-modal.show {
    display: flex;
    justify-content: center;
    align-items: center;
}

.user-info-content {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    width: 90%;
    max-width: 500px;
    max-height: 80vh;
    overflow-y: auto;
    animation: slideUp 0.3s ease;
}

.user-info-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 25px 15px;
    border-bottom: 1px solid #f0f0f0;
}

.user-info-title {
    font-size: 22px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
}

.user-info-close {
    background: none;
    border: none;
    font-size: 28px;
    color: #999;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.user-info-close:hover {
    background-color: #f5f5f5;
    color: #666;
}

.user-info-body {
    padding: 20px 25px 25px;
}

.user-avatar-container {
    display: flex;
    justify-content: center;
    margin-bottom: 25px;
    position: relative;
}

.user-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid #07c160;
    object-fit: cover;
    background: #f5f5f5;
}

.user-avatar-loading {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid #07c160;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
}

.user-details {
    margin-bottom: 25px;
}

.user-detail-item {
    display: flex;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #f5f5f5;
}

.detail-label {
    font-size: 14px;
    color: #666;
    min-width: 100px;
    font-weight: 500;
}

.detail-value {
    font-size: 14px;
    color: #2c3e50;
    flex: 1;
}

.detail-value.user-uuid {
    font-family: monospace;
    font-size: 12px;
    color: #666;
    word-break: break-all;
}

.user-info-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .wx-login-content {
        width: 95%;
        margin: 20px;
    }
    
    .user-info-content {
        width: 95%;
        margin: 20px;
    }
    
    .fallback-options {
        flex-direction: column;
    }
    
    .user-info-actions {
        flex-direction: column;
    }
}

.terms-close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    padding: 15px 20px 0 0;
    cursor: pointer;
}

/* 微信登录弹窗样式 */
.wx-login-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1000;
    animation: fadeIn 0.3s ease;
}

.wx-login-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    max-width: 400px;
    width: 90%;
}

.wx-login-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.wx-login-header h3 {
    margin: 0;
    font-size: 18px;
    color: #333;
}

.wx-login-close {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #999;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wx-login-close:hover {
    color: #333;
}

.wx-login-qr {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 200px;
    margin-bottom: 15px;
}

.wx-login-tips {
    text-align: center;
    color: #666;
    font-size: 14px;
}

.wx-login-modal.show {
    display: flex;
    justify-content: center;
    align-items: center;
}

.wx-login-content {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    width: 90%;
    max-width: 420px;
    animation: slideUp 0.3s ease;
}

.wx-login-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 25px 15px;
    border-bottom: 1px solid #f0f0f0;
}

.wx-login-title {
    font-size: 22px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
}

.wx-login-close {
    background: none;
    border: none;
    font-size: 28px;
    color: #999;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.wx-login-close:hover {
    background-color: #f5f5f5;
    color: #666;
}

.wx-login-body {
    padding: 20px 25px 25px;
}

.wx-login-methods {
    text-align: center;
}

.wx-qr-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
}

.wx-qr-placeholder {
    width: 200px;
    height: 200px;
    border: 2px solid #e9ecef;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #ffffff;
}

.wx-qr-image {
    width: 200px;
    height: 200px;
    border: 2px solid #07c160;
    border-radius: 15px;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wx-qr-image canvas {
    border-radius: 12px;
}

.wx-login-tip {
    font-size: 14px;
    color: #666;
    margin: 10px 0 0 0;
}

/* 备用方案样式 */
.wx-fallback {
    text-align: center;
}

.fallback-content {
    padding: 20px;
}

.fallback-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.fallback-content h4 {
    font-size: 18px;
    color: #2c3e50;
    margin-bottom: 10px;
}

.fallback-content p {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.4;
}

.fallback-options {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.mini-program-icon {
    margin-right: 8px;
}

/* 用户信息弹窗样式 */
.user-info-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0. 0.6);
    z-index: 1000;
    animation: fadeIn 0.3s ease;
}

.user-info-modal.show {
    display: flex;
    justify-content: center;
    align-items: center;
}

.user-info-content {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    width: 90%;
    max-width: 500px;
    max-height: 80vh;
    overflow-y: auto;
    animation: slideUp 0.3s ease;
}

.user-info-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 25px 15px;
    border-bottom: 1px solid #f0f0f0;
}

.user-info-title {
    font-size: 22px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
}

.user-info-close {
    background: none;
    border: none;
    font-size: 28px;
    color: #999;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.user-info-close:hover {
    background-color: #f5f5f5;
    color: #666;
}

.user-info-body {
    padding: 20px 25px 25px;
}

.user-avatar-container {
    display: flex;
    justify-content: center;
    margin-bottom: 25px;
    position: relative;
}

.user-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid #07c160;
    object-fit: cover;
    background: #f5f5f5;
}

.user-avatar-loading {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid #07c160;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
}

.user-details {
    margin-bottom: 25px;
}

.user-detail-item {
    display: flex;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #f5f5f5;
}

.detail-label {
    font-size: 14px;
    color: #666;
    min-width: 100px;
    font-weight: 500;
}

.detail-value {
    font-size: 14px;
    color: #2c3e50;
    flex: 1;
}

.detail-value.user-uuid {
    font-family: monospace;
    font-size: 12px;
    color: #666;
    word-break: break-all;
}

.user-info-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .wx-login-content {
        width: 95%;
        margin: 20px;
    }
    
    .user-info-content {
        width: 95%;
        margin: 20px;
    }
    
    .fallback-options {
        flex-direction: column;
    }
    
    .user-info-actions {
        flex-direction: column;
    }
}

.terms-close:hover {
    color: #00BCD4;
}

/* 微信登录弹窗样式 */
.wx-login-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1000;
    animation: fadeIn 0.3s ease;
}

.wx-login-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    max-width: 400px;
    width: 90%;
}

.wx-login-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.wx-login-header h3 {
    margin: 0;
    font-size: 18px;
    color: #333;
}

.wx-login-close {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #999;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wx-login-close:hover {
    color: #333;
}

.wx-login-qr {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 200px;
    margin-bottom: 15px;
}

.wx-login-tips {
    text-align: center;
    color: #666;
    font-size: 14px;
}

.wx-login-modal.show {
    display: flex;
    justify-content: center;
    align-items: center;
}

.wx-login-content {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    width: 90%;
    max-width: 420px;
    animation: slideUp 0.3s ease;
}

.wx-login-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 25px 15px;
    border-bottom: 1px solid #f0f0f0;
}

.wx-login-title {
    font-size: 22px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
}

.wx-login-close {
    background: none;
    border: none;
    font-size: 28px;
    color: #999;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.wx-login-close:hover {
    background-color: #f5f5f5;
    color: #666;
}

.wx-login-body {
    padding: 20px 25px 25px;
}

.wx-login-methods {
    text-align: center;
}

.wx-qr-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
}

.wx-qr-placeholder {
    width: 200px;
    height: 200px;
    border: 2px solid #e9ecef;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #ffffff;
}

.wx-qr-image {
    width: 200px;
    height: 200px;
    border: 2px solid #07c160;
    border-radius: 15px;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wx-qr-image canvas {
    border-radius: 12px;
}

.wx-login-tip {
    font-size: 14px;
    color: #666;
    margin: 10px 0 0 0;
}

/* 备用方案样式 */
.wx-fallback {
    text-align: center;
}

.fallback-content {
    padding: 20px;
}

.fallback-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.fallback-content h4 {
    font-size: 18px;
    color: #2c3e50;
    margin-bottom: 10px;
}

.fallback-content p {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.4;
}

.fallback-options {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.mini-program-icon {
    margin-right: 8px;
}

/* 用户信息弹窗样式 */
.user-info-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0. 0.6);
    z-index: 1000;
    animation: fadeIn 0.3s ease;
}

.user-info-modal.show {
    display: flex;
    justify-content: center;
    align-items: center;
}

.user-info-content {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    width: 90%;
    max-width: 500px;
    max-height: 80vh;
    overflow-y: auto;
    animation: slideUp 0.3s ease;
}

.user-info-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 25px 15px;
    border-bottom: 1px solid #f0f0f0;
}

.user-info-title {
    font-size: 22px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
}

.user-info-close {
    background: none;
    border: none;
    font-size: 28px;
    color: #999;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.user-info-close:hover {
    background-color: #f5f5f5;
    color: #666;
}

.user-info-body {
    padding: 20px 25px 25px;
}

.user-avatar-container {
    display: flex;
    justify-content: center;
    margin-bottom: 25px;
    position: relative;
}

.user-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid #07c160;
    object-fit: cover;
    background: #f5f5f5;
}

.user-avatar-loading {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid #07c160;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
}

.user-details {
    margin-bottom: 25px;
}

.user-detail-item {
    display: flex;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #f5f5f5;
}

.detail-label {
    font-size: 14px;
    color: #666;
    min-width: 100px;
    font-weight: 500;
}

.detail-value {
    font-size: 14px;
    color: #2c3e50;
    flex: 1;
}

.detail-value.user-uuid {
    font-family: monospace;
    font-size: 12px;
    color: #666;
    word-break: break-all;
}

.user-info-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .wx-login-content {
        width: 95%;
        margin: 20px;
    }
    
    .user-info-content {
        width: 95%;
        margin: 20px;
    }
    
    .fallback-options {
        flex-direction: column;
    }
    
    .user-info-actions {
        flex-direction: column;
    }
}

.terms-body {
    padding: 0 30px 30px 30px;
    max-height: 60vh;
    overflow-y: auto;
}

/* 微信登录弹窗样式 */
.wx-login-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1000;
    animation: fadeIn 0.3s ease;
}

.wx-login-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    max-width: 400px;
    width: 90%;
}

.wx-login-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.wx-login-header h3 {
    margin: 0;
    font-size: 18px;
    color: #333;
}

.wx-login-close {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #999;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wx-login-close:hover {
    color: #333;
}

.wx-login-qr {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 200px;
    margin-bottom: 15px;
}

.wx-login-tips {
    text-align: center;
    color: #666;
    font-size: 14px;
}

.wx-login-modal.show {
    display: flex;
    justify-content: center;
    align-items: center;
}

.wx-login-content {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    width: 90%;
    max-width: 420px;
    animation: slideUp 0.3s ease;
}

.wx-login-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 25px 15px;
    border-bottom: 1px solid #f0f0f0;
}

.wx-login-title {
    font-size: 22px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
}

.wx-login-close {
    background: none;
    border: none;
    font-size: 28px;
    color: #999;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.wx-login-close:hover {
    background-color: #f5f5f5;
    color: #666;
}

.wx-login-body {
    padding: 20px 25px 25px;
}

.wx-login-methods {
    text-align: center;
}

.wx-qr-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
}

.wx-qr-placeholder {
    width: 200px;
    height: 200px;
    border: 2px solid #e9ecef;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #ffffff;
}

.wx-qr-image {
    width: 200px;
    height: 200px;
    border: 2px solid #07c160;
    border-radius: 15px;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wx-qr-image canvas {
    border-radius: 12px;
}

.wx-login-tip {
    font-size: 14px;
    color: #666;
    margin: 10px 0 0 0;
}

/* 备用方案样式 */
.wx-fallback {
    text-align: center;
}

.fallback-content {
    padding: 20px;
}

.fallback-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.fallback-content h4 {
    font-size: 18px;
    color: #2c3e50;
    margin-bottom: 10px;
}

.fallback-content p {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.4;
}

.fallback-options {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.mini-program-icon {
    margin-right: 8px;
}

/* 用户信息弹窗样式 */
.user-info-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0. 0.6);
    z-index: 1000;
    animation: fadeIn 0.3s ease;
}

.user-info-modal.show {
    display: flex;
    justify-content: center;
    align-items: center;
}

.user-info-content {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    width: 90%;
    max-width: 500px;
    max-height: 80vh;
    overflow-y: auto;
    animation: slideUp 0.3s ease;
}

.user-info-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 25px 15px;
    border-bottom: 1px solid #f0f0f0;
}

.user-info-title {
    font-size: 22px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
}

.user-info-close {
    background: none;
    border: none;
    font-size: 28px;
    color: #999;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.user-info-close:hover {
    background-color: #f5f5f5;
    color: #666;
}

.user-info-body {
    padding: 20px 25px 25px;
}

.user-avatar-container {
    display: flex;
    justify-content: center;
    margin-bottom: 25px;
    position: relative;
}

.user-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid #07c160;
    object-fit: cover;
    background: #f5f5f5;
}

.user-avatar-loading {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid #07c160;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
}

.user-details {
    margin-bottom: 25px;
}

.user-detail-item {
    display: flex;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #f5f5f5;
}

.detail-label {
    font-size: 14px;
    color: #666;
    min-width: 100px;
    font-weight: 500;
}

.detail-value {
    font-size: 14px;
    color: #2c3e50;
    flex: 1;
}

.detail-value.user-uuid {
    font-family: monospace;
    font-size: 12px;
    color: #666;
    word-break: break-all;
}

.user-info-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .wx-login-content {
        width: 95%;
        margin: 20px;
    }
    
    .user-info-content {
        width: 95%;
        margin: 20px;
    }
    
    .fallback-options {
        flex-direction: column;
    }
    
    .user-info-actions {
        flex-direction: column;
    }
}

.terms-body h4 {
    color: #333;
    font-size: 16px;
    font-weight: 600;
    margin: 20px 0 10px 0;
    border-bottom: 2px solid #00BCD4;
    padding-bottom: 5px;
}

/* 微信登录弹窗样式 */
.wx-login-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1000;
    animation: fadeIn 0.3s ease;
}

.wx-login-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    max-width: 400px;
    width: 90%;
}

.wx-login-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.wx-login-header h3 {
    margin: 0;
    font-size: 18px;
    color: #333;
}

.wx-login-close {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #999;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wx-login-close:hover {
    color: #333;
}

.wx-login-qr {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 200px;
    margin-bottom: 15px;
}

.wx-login-tips {
    text-align: center;
    color: #666;
    font-size: 14px;
}

.wx-login-modal.show {
    display: flex;
    justify-content: center;
    align-items: center;
}

.wx-login-content {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    width: 90%;
    max-width: 420px;
    animation: slideUp 0.3s ease;
}

.wx-login-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 25px 15px;
    border-bottom: 1px solid #f0f0f0;
}

.wx-login-title {
    font-size: 22px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
}

.wx-login-close {
    background: none;
    border: none;
    font-size: 28px;
    color: #999;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.wx-login-close:hover {
    background-color: #f5f5f5;
    color: #666;
}

.wx-login-body {
    padding: 20px 25px 25px;
}

.wx-login-methods {
    text-align: center;
}

.wx-qr-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
}

.wx-qr-placeholder {
    width: 200px;
    height: 200px;
    border: 2px solid #e9ecef;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #ffffff;
}

.wx-qr-image {
    width: 200px;
    height: 200px;
    border: 2px solid #07c160;
    border-radius: 15px;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wx-qr-image canvas {
    border-radius: 12px;
}

.wx-login-tip {
    font-size: 14px;
    color: #666;
    margin: 10px 0 0 0;
}

/* 备用方案样式 */
.wx-fallback {
    text-align: center;
}

.fallback-content {
    padding: 20px;
}

.fallback-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.fallback-content h4 {
    font-size: 18px;
    color: #2c3e50;
    margin-bottom: 10px;
}

.fallback-content p {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.4;
}

.fallback-options {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.mini-program-icon {
    margin-right: 8px;
}

/* 用户信息弹窗样式 */
.user-info-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0. 0.6);
    z-index: 1000;
    animation: fadeIn 0.3s ease;
}

.user-info-modal.show {
    display: flex;
    justify-content: center;
    align-items: center;
}

.user-info-content {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    width: 90%;
    max-width: 500px;
    max-height: 80vh;
    overflow-y: auto;
    animation: slideUp 0.3s ease;
}

.user-info-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 25px 15px;
    border-bottom: 1px solid #f0f0f0;
}

.user-info-title {
    font-size: 22px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
}

.user-info-close {
    background: none;
    border: none;
    font-size: 28px;
    color: #999;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.user-info-close:hover {
    background-color: #f5f5f5;
    color: #666;
}

.user-info-body {
    padding: 20px 25px 25px;
}

.user-avatar-container {
    display: flex;
    justify-content: center;
    margin-bottom: 25px;
    position: relative;
}

.user-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid #07c160;
    object-fit: cover;
    background: #f5f5f5;
}

.user-avatar-loading {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid #07c160;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
}

.user-details {
    margin-bottom: 25px;
}

.user-detail-item {
    display: flex;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #f5f5f5;
}

.detail-label {
    font-size: 14px;
    color: #666;
    min-width: 100px;
    font-weight: 500;
}

.detail-value {
    font-size: 14px;
    color: #2c3e50;
    flex: 1;
}

.detail-value.user-uuid {
    font-family: monospace;
    font-size: 12px;
    color: #666;
    word-break: break-all;
}

.user-info-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .wx-login-content {
        width: 95%;
        margin: 20px;
    }
    
    .user-info-content {
        width: 95%;
        margin: 20px;
    }
    
    .fallback-options {
        flex-direction: column;
    }
    
    .user-info-actions {
        flex-direction: column;
    }
}

.terms-body h4:first-child {
    margin-top: 10px;
}

/* 微信登录弹窗样式 */
.wx-login-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1000;
    animation: fadeIn 0.3s ease;
}

.wx-login-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    max-width: 400px;
    width: 90%;
}

.wx-login-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.wx-login-header h3 {
    margin: 0;
    font-size: 18px;
    color: #333;
}

.wx-login-close {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #999;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wx-login-close:hover {
    color: #333;
}

.wx-login-qr {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 200px;
    margin-bottom: 15px;
}

.wx-login-tips {
    text-align: center;
    color: #666;
    font-size: 14px;
}

.wx-login-modal.show {
    display: flex;
    justify-content: center;
    align-items: center;
}

.wx-login-content {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    width: 90%;
    max-width: 420px;
    animation: slideUp 0.3s ease;
}

.wx-login-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 25px 15px;
    border-bottom: 1px solid #f0f0f0;
}

.wx-login-title {
    font-size: 22px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
}

.wx-login-close {
    background: none;
    border: none;
    font-size: 28px;
    color: #999;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.wx-login-close:hover {
    background-color: #f5f5f5;
    color: #666;
}

.wx-login-body {
    padding: 20px 25px 25px;
}

.wx-login-methods {
    text-align: center;
}

.wx-qr-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
}

.wx-qr-placeholder {
    width: 200px;
    height: 200px;
    border: 2px solid #e9ecef;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #ffffff;
}

.wx-qr-image {
    width: 200px;
    height: 200px;
    border: 2px solid #07c160;
    border-radius: 15px;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wx-qr-image canvas {
    border-radius: 12px;
}

.wx-login-tip {
    font-size: 14px;
    color: #666;
    margin: 10px 0 0 0;
}

/* 备用方案样式 */
.wx-fallback {
    text-align: center;
}

.fallback-content {
    padding: 20px;
}

.fallback-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.fallback-content h4 {
    font-size: 18px;
    color: #2c3e50;
    margin-bottom: 10px;
}

.fallback-content p {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.4;
}

.fallback-options {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.mini-program-icon {
    margin-right: 8px;
}

/* 用户信息弹窗样式 */
.user-info-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0. 0.6);
    z-index: 1000;
    animation: fadeIn 0.3s ease;
}

.user-info-modal.show {
    display: flex;
    justify-content: center;
    align-items: center;
}

.user-info-content {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    width: 90%;
    max-width: 500px;
    max-height: 80vh;
    overflow-y: auto;
    animation: slideUp 0.3s ease;
}

.user-info-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 25px 15px;
    border-bottom: 1px solid #f0f0f0;
}

.user-info-title {
    font-size: 22px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
}

.user-info-close {
    background: none;
    border: none;
    font-size: 28px;
    color: #999;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.user-info-close:hover {
    background-color: #f5f5f5;
    color: #666;
}

.user-info-body {
    padding: 20px 25px 25px;
}

.user-avatar-container {
    display: flex;
    justify-content: center;
    margin-bottom: 25px;
    position: relative;
}

.user-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid #07c160;
    object-fit: cover;
    background: #f5f5f5;
}

.user-avatar-loading {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid #07c160;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
}

.user-details {
    margin-bottom: 25px;
}

.user-detail-item {
    display: flex;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #f5f5f5;
}

.detail-label {
    font-size: 14px;
    color: #666;
    min-width: 100px;
    font-weight: 500;
}

.detail-value {
    font-size: 14px;
    color: #2c3e50;
    flex: 1;
}

.detail-value.user-uuid {
    font-family: monospace;
    font-size: 12px;
    color: #666;
    word-break: break-all;
}

.user-info-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .wx-login-content {
        width: 95%;
        margin: 20px;
    }
    
    .user-info-content {
        width: 95%;
        margin: 20px;
    }
    
    .fallback-options {
        flex-direction: column;
    }
    
    .user-info-actions {
        flex-direction: column;
    }
}

.terms-body p {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    margin: 10px 0;
}

/* 微信登录弹窗样式 */
.wx-login-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1000;
    animation: fadeIn 0.3s ease;
}

.wx-login-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    max-width: 400px;
    width: 90%;
}

.wx-login-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.wx-login-header h3 {
    margin: 0;
    font-size: 18px;
    color: #333;
}

.wx-login-close {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #999;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wx-login-close:hover {
    color: #333;
}

.wx-login-qr {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 200px;
    margin-bottom: 15px;
}

.wx-login-tips {
    text-align: center;
    color: #666;
    font-size: 14px;
}

.wx-login-modal.show {
    display: flex;
    justify-content: center;
    align-items: center;
}

.wx-login-content {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    width: 90%;
    max-width: 420px;
    animation: slideUp 0.3s ease;
}

.wx-login-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 25px 15px;
    border-bottom: 1px solid #f0f0f0;
}

.wx-login-title {
    font-size: 22px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
}

.wx-login-close {
    background: none;
    border: none;
    font-size: 28px;
    color: #999;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.wx-login-close:hover {
    background-color: #f5f5f5;
    color: #666;
}

.wx-login-body {
    padding: 20px 25px 25px;
}

.wx-login-methods {
    text-align: center;
}

.wx-qr-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
}

.wx-qr-placeholder {
    width: 200px;
    height: 200px;
    border: 2px solid #e9ecef;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #ffffff;
}

.wx-qr-image {
    width: 200px;
    height: 200px;
    border: 2px solid #07c160;
    border-radius: 15px;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wx-qr-image canvas {
    border-radius: 12px;
}

.wx-login-tip {
    font-size: 14px;
    color: #666;
    margin: 10px 0 0 0;
}

/* 备用方案样式 */
.wx-fallback {
    text-align: center;
}

.fallback-content {
    padding: 20px;
}

.fallback-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.fallback-content h4 {
    font-size: 18px;
    color: #2c3e50;
    margin-bottom: 10px;
}

.fallback-content p {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.4;
}

.fallback-options {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.mini-program-icon {
    margin-right: 8px;
}

/* 用户信息弹窗样式 */
.user-info-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0. 0.6);
    z-index: 1000;
    animation: fadeIn 0.3s ease;
}

.user-info-modal.show {
    display: flex;
    justify-content: center;
    align-items: center;
}

.user-info-content {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    width: 90%;
    max-width: 500px;
    max-height: 80vh;
    overflow-y: auto;
    animation: slideUp 0.3s ease;
}

.user-info-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 25px 15px;
    border-bottom: 1px solid #f0f0f0;
}

.user-info-title {
    font-size: 22px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
}

.user-info-close {
    background: none;
    border: none;
    font-size: 28px;
    color: #999;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.user-info-close:hover {
    background-color: #f5f5f5;
    color: #666;
}

.user-info-body {
    padding: 20px 25px 25px;
}

.user-avatar-container {
    display: flex;
    justify-content: center;
    margin-bottom: 25px;
    position: relative;
}

.user-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid #07c160;
    object-fit: cover;
    background: #f5f5f5;
}

.user-avatar-loading {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid #07c160;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
}

.user-details {
    margin-bottom: 25px;
}

.user-detail-item {
    display: flex;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #f5f5f5;
}

.detail-label {
    font-size: 14px;
    color: #666;
    min-width: 100px;
    font-weight: 500;
}

.detail-value {
    font-size: 14px;
    color: #2c3e50;
    flex: 1;
}

.detail-value.user-uuid {
    font-family: monospace;
    font-size: 12px;
    color: #666;
    word-break: break-all;
}

.user-info-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .wx-login-content {
        width: 95%;
        margin: 20px;
    }
    
    .user-info-content {
        width: 95%;
        margin: 20px;
    }
    
    .fallback-options {
        flex-direction: column;
    }
    
    .user-info-actions {
        flex-direction: column;
    }
}

.terms-body ul {
    margin: 10px 0 10px 20px;
    padding: 0;
}

/* 微信登录弹窗样式 */
.wx-login-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1000;
    animation: fadeIn 0.3s ease;
}

.wx-login-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    max-width: 400px;
    width: 90%;
}

.wx-login-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.wx-login-header h3 {
    margin: 0;
    font-size: 18px;
    color: #333;
}

.wx-login-close {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #999;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wx-login-close:hover {
    color: #333;
}

.wx-login-qr {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 200px;
    margin-bottom: 15px;
}

.wx-login-tips {
    text-align: center;
    color: #666;
    font-size: 14px;
}

.wx-login-modal.show {
    display: flex;
    justify-content: center;
    align-items: center;
}

.wx-login-content {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    width: 90%;
    max-width: 420px;
    animation: slideUp 0.3s ease;
}

.wx-login-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 25px 15px;
    border-bottom: 1px solid #f0f0f0;
}

.wx-login-title {
    font-size: 22px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
}

.wx-login-close {
    background: none;
    border: none;
    font-size: 28px;
    color: #999;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.wx-login-close:hover {
    background-color: #f5f5f5;
    color: #666;
}

.wx-login-body {
    padding: 20px 25px 25px;
}

.wx-login-methods {
    text-align: center;
}

.wx-qr-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
}

.wx-qr-placeholder {
    width: 200px;
    height: 200px;
    border: 2px solid #e9ecef;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #ffffff;
}

.wx-qr-image {
    width: 200px;
    height: 200px;
    border: 2px solid #07c160;
    border-radius: 15px;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wx-qr-image canvas {
    border-radius: 12px;
}

.wx-login-tip {
    font-size: 14px;
    color: #666;
    margin: 10px 0 0 0;
}

/* 备用方案样式 */
.wx-fallback {
    text-align: center;
}

.fallback-content {
    padding: 20px;
}

.fallback-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.fallback-content h4 {
    font-size: 18px;
    color: #2c3e50;
    margin-bottom: 10px;
}

.fallback-content p {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.4;
}

.fallback-options {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.mini-program-icon {
    margin-right: 8px;
}

/* 用户信息弹窗样式 */
.user-info-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0. 0.6);
    z-index: 1000;
    animation: fadeIn 0.3s ease;
}

.user-info-modal.show {
    display: flex;
    justify-content: center;
    align-items: center;
}

.user-info-content {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    width: 90%;
    max-width: 500px;
    max-height: 80vh;
    overflow-y: auto;
    animation: slideUp 0.3s ease;
}

.user-info-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 25px 15px;
    border-bottom: 1px solid #f0f0f0;
}

.user-info-title {
    font-size: 22px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
}

.user-info-close {
    background: none;
    border: none;
    font-size: 28px;
    color: #999;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.user-info-close:hover {
    background-color: #f5f5f5;
    color: #666;
}

.user-info-body {
    padding: 20px 25px 25px;
}

.user-avatar-container {
    display: flex;
    justify-content: center;
    margin-bottom: 25px;
    position: relative;
}

.user-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid #07c160;
    object-fit: cover;
    background: #f5f5f5;
}

.user-avatar-loading {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid #07c160;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
}

.user-details {
    margin-bottom: 25px;
}

.user-detail-item {
    display: flex;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #f5f5f5;
}

.detail-label {
    font-size: 14px;
    color: #666;
    min-width: 100px;
    font-weight: 500;
}

.detail-value {
    font-size: 14px;
    color: #2c3e50;
    flex: 1;
}

.detail-value.user-uuid {
    font-family: monospace;
    font-size: 12px;
    color: #666;
    word-break: break-all;
}

.user-info-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .wx-login-content {
        width: 95%;
        margin: 20px;
    }
    
    .user-info-content {
        width: 95%;
        margin: 20px;
    }
    
    .fallback-options {
        flex-direction: column;
    }
    
    .user-info-actions {
        flex-direction: column;
    }
}

.terms-body li {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    margin: 5px 0;
}

/* 微信登录弹窗样式 */
.wx-login-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1000;
    animation: fadeIn 0.3s ease;
}

.wx-login-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    max-width: 400px;
    width: 90%;
}

.wx-login-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.wx-login-header h3 {
    margin: 0;
    font-size: 18px;
    color: #333;
}

.wx-login-close {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #999;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wx-login-close:hover {
    color: #333;
}

.wx-login-qr {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 200px;
    margin-bottom: 15px;
}

.wx-login-tips {
    text-align: center;
    color: #666;
    font-size: 14px;
}

.wx-login-modal.show {
    display: flex;
    justify-content: center;
    align-items: center;
}

.wx-login-content {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    width: 90%;
    max-width: 420px;
    animation: slideUp 0.3s ease;
}

.wx-login-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 25px 15px;
    border-bottom: 1px solid #f0f0f0;
}

.wx-login-title {
    font-size: 22px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
}

.wx-login-close {
    background: none;
    border: none;
    font-size: 28px;
    color: #999;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.wx-login-close:hover {
    background-color: #f5f5f5;
    color: #666;
}

.wx-login-body {
    padding: 20px 25px 25px;
}

.wx-login-methods {
    text-align: center;
}

.wx-qr-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
}

.wx-qr-placeholder {
    width: 200px;
    height: 200px;
    border: 2px solid #e9ecef;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #ffffff;
}

.wx-qr-image {
    width: 200px;
    height: 200px;
    border: 2px solid #07c160;
    border-radius: 15px;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wx-qr-image canvas {
    border-radius: 12px;
}

.wx-login-tip {
    font-size: 14px;
    color: #666;
    margin: 10px 0 0 0;
}

/* 备用方案样式 */
.wx-fallback {
    text-align: center;
}

.fallback-content {
    padding: 20px;
}

.fallback-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.fallback-content h4 {
    font-size: 18px;
    color: #2c3e50;
    margin-bottom: 10px;
}

.fallback-content p {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.4;
}

.fallback-options {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.mini-program-icon {
    margin-right: 8px;
}

/* 用户信息弹窗样式 */
.user-info-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0. 0.6);
    z-index: 1000;
    animation: fadeIn 0.3s ease;
}

.user-info-modal.show {
    display: flex;
    justify-content: center;
    align-items: center;
}

.user-info-content {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    width: 90%;
    max-width: 500px;
    max-height: 80vh;
    overflow-y: auto;
    animation: slideUp 0.3s ease;
}

.user-info-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 25px 15px;
    border-bottom: 1px solid #f0f0f0;
}

.user-info-title {
    font-size: 22px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
}

.user-info-close {
    background: none;
    border: none;
    font-size: 28px;
    color: #999;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.user-info-close:hover {
    background-color: #f5f5f5;
    color: #666;
}

.user-info-body {
    padding: 20px 25px 25px;
}

.user-avatar-container {
    display: flex;
    justify-content: center;
    margin-bottom: 25px;
    position: relative;
}

.user-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid #07c160;
    object-fit: cover;
    background: #f5f5f5;
}

.user-avatar-loading {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid #07c160;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
}

.user-details {
    margin-bottom: 25px;
}

.user-detail-item {
    display: flex;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #f5f5f5;
}

.detail-label {
    font-size: 14px;
    color: #666;
    min-width: 100px;
    font-weight: 500;
}

.detail-value {
    font-size: 14px;
    color: #2c3e50;
    flex: 1;
}

.detail-value.user-uuid {
    font-family: monospace;
    font-size: 12px;
    color: #666;
    word-break: break-all;
}

.user-info-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .wx-login-content {
        width: 95%;
        margin: 20px;
    }
    
    .user-info-content {
        width: 95%;
        margin: 20px;
    }
    
    .fallback-options {
        flex-direction: column;
    }
    
    .user-info-actions {
        flex-direction: column;
    }
}

.update-time {
    color: #999;
    font-size: 12px;
    font-style: italic;
    margin-top: 30px;
    text-align: center;
}

/* 微信登录弹窗样式 */
.wx-login-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1000;
    animation: fadeIn 0.3s ease;
}

.wx-login-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    max-width: 400px;
    width: 90%;
}

.wx-login-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.wx-login-header h3 {
    margin: 0;
    font-size: 18px;
    color: #333;
}

.wx-login-close {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #999;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wx-login-close:hover {
    color: #333;
}

.wx-login-qr {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 200px;
    margin-bottom: 15px;
}

.wx-login-tips {
    text-align: center;
    color: #666;
    font-size: 14px;
}

.wx-login-modal.show {
    display: flex;
    justify-content: center;
    align-items: center;
}

.wx-login-content {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    width: 90%;
    max-width: 420px;
    animation: slideUp 0.3s ease;
}

.wx-login-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 25px 15px;
    border-bottom: 1px solid #f0f0f0;
}

.wx-login-title {
    font-size: 22px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
}

.wx-login-close {
    background: none;
    border: none;
    font-size: 28px;
    color: #999;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.wx-login-close:hover {
    background-color: #f5f5f5;
    color: #666;
}

.wx-login-body {
    padding: 20px 25px 25px;
}

.wx-login-methods {
    text-align: center;
}

.wx-qr-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
}

.wx-qr-placeholder {
    width: 200px;
    height: 200px;
    border: 2px solid #e9ecef;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #ffffff;
}

.wx-qr-image {
    width: 200px;
    height: 200px;
    border: 2px solid #07c160;
    border-radius: 15px;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wx-qr-image canvas {
    border-radius: 12px;
}

.wx-login-tip {
    font-size: 14px;
    color: #666;
    margin: 10px 0 0 0;
}

/* 备用方案样式 */
.wx-fallback {
    text-align: center;
}

.fallback-content {
    padding: 20px;
}

.fallback-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.fallback-content h4 {
    font-size: 18px;
    color: #2c3e50;
    margin-bottom: 10px;
}

.fallback-content p {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.4;
}

.fallback-options {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.mini-program-icon {
    margin-right: 8px;
}

/* 用户信息弹窗样式 */
.user-info-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0. 0.6);
    z-index: 1000;
    animation: fadeIn 0.3s ease;
}

.user-info-modal.show {
    display: flex;
    justify-content: center;
    align-items: center;
}

.user-info-content {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    width: 90%;
    max-width: 500px;
    max-height: 80vh;
    overflow-y: auto;
    animation: slideUp 0.3s ease;
}

.user-info-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 25px 15px;
    border-bottom: 1px solid #f0f0f0;
}

.user-info-title {
    font-size: 22px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
}

.user-info-close {
    background: none;
    border: none;
    font-size: 28px;
    color: #999;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.user-info-close:hover {
    background-color: #f5f5f5;
    color: #666;
}

.user-info-body {
    padding: 20px 25px 25px;
}

.user-avatar-container {
    display: flex;
    justify-content: center;
    margin-bottom: 25px;
    position: relative;
}

.user-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid #07c160;
    object-fit: cover;
    background: #f5f5f5;
}

.user-avatar-loading {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid #07c160;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
}

.user-details {
    margin-bottom: 25px;
}

.user-detail-item {
    display: flex;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #f5f5f5;
}

.detail-label {
    font-size: 14px;
    color: #666;
    min-width: 100px;
    font-weight: 500;
}

.detail-value {
    font-size: 14px;
    color: #2c3e50;
    flex: 1;
}

.detail-value.user-uuid {
    font-family: monospace;
    font-size: 12px;
    color: #666;
    word-break: break-all;
}

.user-info-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .wx-login-content {
        width: 95%;
        margin: 20px;
    }
    
    .user-info-content {
        width: 95%;
        margin: 20px;
    }
    
    .fallback-options {
        flex-direction: column;
    }
    
    .user-info-actions {
        flex-direction: column;
    }
}

/* 法律条款链接样式 */
.info-section a {
    color: #666;
    text-decoration: none;
    transition: text-decoration 0.3s ease;
}

/* 微信登录弹窗样式 */
.wx-login-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1000;
    animation: fadeIn 0.3s ease;
}

.wx-login-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    max-width: 400px;
    width: 90%;
}

.wx-login-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.wx-login-header h3 {
    margin: 0;
    font-size: 18px;
    color: #333;
}

.wx-login-close {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #999;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wx-login-close:hover {
    color: #333;
}

.wx-login-qr {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 200px;
    margin-bottom: 15px;
}

.wx-login-tips {
    text-align: center;
    color: #666;
    font-size: 14px;
}

.wx-login-modal.show {
    display: flex;
    justify-content: center;
    align-items: center;
}

.wx-login-content {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    width: 90%;
    max-width: 420px;
    animation: slideUp 0.3s ease;
}

.wx-login-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 25px 15px;
    border-bottom: 1px solid #f0f0f0;
}

.wx-login-title {
    font-size: 22px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
}

.wx-login-close {
    background: none;
    border: none;
    font-size: 28px;
    color: #999;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.wx-login-close:hover {
    background-color: #f5f5f5;
    color: #666;
}

.wx-login-body {
    padding: 20px 25px 25px;
}

.wx-login-methods {
    text-align: center;
}

.wx-qr-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
}

.wx-qr-placeholder {
    width: 200px;
    height: 200px;
    border: 2px solid #e9ecef;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #ffffff;
}

.wx-qr-image {
    width: 200px;
    height: 200px;
    border: 2px solid #07c160;
    border-radius: 15px;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wx-qr-image canvas {
    border-radius: 12px;
}

.wx-login-tip {
    font-size: 14px;
    color: #666;
    margin: 10px 0 0 0;
}

/* 备用方案样式 */
.wx-fallback {
    text-align: center;
}

.fallback-content {
    padding: 20px;
}

.fallback-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.fallback-content h4 {
    font-size: 18px;
    color: #2c3e50;
    margin-bottom: 10px;
}

.fallback-content p {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.4;
}

.fallback-options {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.mini-program-icon {
    margin-right: 8px;
}

/* 用户信息弹窗样式 */
.user-info-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0. 0.6);
    z-index: 1000;
    animation: fadeIn 0.3s ease;
}

.user-info-modal.show {
    display: flex;
    justify-content: center;
    align-items: center;
}

.user-info-content {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    width: 90%;
    max-width: 500px;
    max-height: 80vh;
    overflow-y: auto;
    animation: slideUp 0.3s ease;
}

.user-info-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 25px 15px;
    border-bottom: 1px solid #f0f0f0;
}

.user-info-title {
    font-size: 22px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
}

.user-info-close {
    background: none;
    border: none;
    font-size: 28px;
    color: #999;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.user-info-close:hover {
    background-color: #f5f5f5;
    color: #666;
}

.user-info-body {
    padding: 20px 25px 25px;
}

.user-avatar-container {
    display: flex;
    justify-content: center;
    margin-bottom: 25px;
    position: relative;
}

.user-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid #07c160;
    object-fit: cover;
    background: #f5f5f5;
}

.user-avatar-loading {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid #07c160;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
}

.user-details {
    margin-bottom: 25px;
}

.user-detail-item {
    display: flex;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #f5f5f5;
}

.detail-label {
    font-size: 14px;
    color: #666;
    min-width: 100px;
    font-weight: 500;
}

.detail-value {
    font-size: 14px;
    color: #2c3e50;
    flex: 1;
}

.detail-value.user-uuid {
    font-family: monospace;
    font-size: 12px;
    color: #666;
    word-break: break-all;
}

.user-info-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .wx-login-content {
        width: 95%;
        margin: 20px;
    }
    
    .user-info-content {
        width: 95%;
        margin: 20px;
    }
    
    .fallback-options {
        flex-direction: column;
    }
    
    .user-info-actions {
        flex-direction: column;
    }
}

.info-section a:hover {
    text-decoration: underline;
}

/* 微信登录弹窗样式 */
.wx-login-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1000;
    animation: fadeIn 0.3s ease;
}

.wx-login-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    max-width: 400px;
    width: 90%;
}

.wx-login-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.wx-login-header h3 {
    margin: 0;
    font-size: 18px;
    color: #333;
}

.wx-login-close {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #999;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wx-login-close:hover {
    color: #333;
}

.wx-login-qr {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 200px;
    margin-bottom: 15px;
}

.wx-login-tips {
    text-align: center;
    color: #666;
    font-size: 14px;
}

.wx-login-modal.show {
    display: flex;
    justify-content: center;
    align-items: center;
}

.wx-login-content {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    width: 90%;
    max-width: 420px;
    animation: slideUp 0.3s ease;
}

.wx-login-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 25px 15px;
    border-bottom: 1px solid #f0f0f0;
}

.wx-login-title {
    font-size: 22px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
}

.wx-login-close {
    background: none;
    border: none;
    font-size: 28px;
    color: #999;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.wx-login-close:hover {
    background-color: #f5f5f5;
    color: #666;
}

.wx-login-body {
    padding: 20px 25px 25px;
}

.wx-login-methods {
    text-align: center;
}

.wx-qr-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
}

.wx-qr-placeholder {
    width: 200px;
    height: 200px;
    border: 2px solid #e9ecef;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #ffffff;
}

.wx-qr-image {
    width: 200px;
    height: 200px;
    border: 2px solid #07c160;
    border-radius: 15px;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wx-qr-image canvas {
    border-radius: 12px;
}

.wx-login-tip {
    font-size: 14px;
    color: #666;
    margin: 10px 0 0 0;
}

/* 备用方案样式 */
.wx-fallback {
    text-align: center;
}

.fallback-content {
    padding: 20px;
}

.fallback-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.fallback-content h4 {
    font-size: 18px;
    color: #2c3e50;
    margin-bottom: 10px;
}

.fallback-content p {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.4;
}

.fallback-options {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.mini-program-icon {
    margin-right: 8px;
}

/* 用户信息弹窗样式 */
.user-info-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0. 0.6);
    z-index: 1000;
    animation: fadeIn 0.3s ease;
}

.user-info-modal.show {
    display: flex;
    justify-content: center;
    align-items: center;
}

.user-info-content {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    width: 90%;
    max-width: 500px;
    max-height: 80vh;
    overflow-y: auto;
    animation: slideUp 0.3s ease;
}

.user-info-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 25px 15px;
    border-bottom: 1px solid #f0f0f0;
}

.user-info-title {
    font-size: 22px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
}

.user-info-close {
    background: none;
    border: none;
    font-size: 28px;
    color: #999;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.user-info-close:hover {
    background-color: #f5f5f5;
    color: #666;
}

.user-info-body {
    padding: 20px 25px 25px;
}

.user-avatar-container {
    display: flex;
    justify-content: center;
    margin-bottom: 25px;
    position: relative;
}

.user-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid #07c160;
    object-fit: cover;
    background: #f5f5f5;
}

.user-avatar-loading {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid #07c160;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
}

.user-details {
    margin-bottom: 25px;
}

.user-detail-item {
    display: flex;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #f5f5f5;
}

.detail-label {
    font-size: 14px;
    color: #666;
    min-width: 100px;
    font-weight: 500;
}

.detail-value {
    font-size: 14px;
    color: #2c3e50;
    flex: 1;
}

.detail-value.user-uuid {
    font-family: monospace;
    font-size: 12px;
    color: #666;
    word-break: break-all;
}

.user-info-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .wx-login-content {
        width: 95%;
        margin: 20px;
    }
    
    .user-info-content {
        width: 95%;
        margin: 20px;
    }
    
    .fallback-options {
        flex-direction: column;
    }
    
    .user-info-actions {
        flex-direction: column;
    }
}

/* 版权声明样式 */
.copyright {
    text-align: center;
    padding: 20px;
    border-top: 1px solid #e9ecef;
    margin-top: 20px;
    background-color: #f8f9fa;
}

/* 微信登录弹窗样式 */
.wx-login-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1000;
    animation: fadeIn 0.3s ease;
}

.wx-login-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    max-width: 400px;
    width: 90%;
}

.wx-login-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.wx-login-header h3 {
    margin: 0;
    font-size: 18px;
    color: #333;
}

.wx-login-close {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #999;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wx-login-close:hover {
    color: #333;
}

.wx-login-qr {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 200px;
    margin-bottom: 15px;
}

.wx-login-tips {
    text-align: center;
    color: #666;
    font-size: 14px;
}

.wx-login-modal.show {
    display: flex;
    justify-content: center;
    align-items: center;
}

.wx-login-content {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    width: 90%;
    max-width: 420px;
    animation: slideUp 0.3s ease;
}

.wx-login-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 25px 15px;
    border-bottom: 1px solid #f0f0f0;
}

.wx-login-title {
    font-size: 22px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
}

.wx-login-close {
    background: none;
    border: none;
    font-size: 28px;
    color: #999;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.wx-login-close:hover {
    background-color: #f5f5f5;
    color: #666;
}

.wx-login-body {
    padding: 20px 25px 25px;
}

.wx-login-methods {
    text-align: center;
}

.wx-qr-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
}

.wx-qr-placeholder {
    width: 200px;
    height: 200px;
    border: 2px solid #e9ecef;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #ffffff;
}

.wx-qr-image {
    width: 200px;
    height: 200px;
    border: 2px solid #07c160;
    border-radius: 15px;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wx-qr-image canvas {
    border-radius: 12px;
}

.wx-login-tip {
    font-size: 14px;
    color: #666;
    margin: 10px 0 0 0;
}

/* 备用方案样式 */
.wx-fallback {
    text-align: center;
}

.fallback-content {
    padding: 20px;
}

.fallback-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.fallback-content h4 {
    font-size: 18px;
    color: #2c3e50;
    margin-bottom: 10px;
}

.fallback-content p {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.4;
}

.fallback-options {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.mini-program-icon {
    margin-right: 8px;
}

/* 用户信息弹窗样式 */
.user-info-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0. 0.6);
    z-index: 1000;
    animation: fadeIn 0.3s ease;
}

.user-info-modal.show {
    display: flex;
    justify-content: center;
    align-items: center;
}

.user-info-content {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    width: 90%;
    max-width: 500px;
    max-height: 80vh;
    overflow-y: auto;
    animation: slideUp 0.3s ease;
}

.user-info-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 25px 15px;
    border-bottom: 1px solid #f0f0f0;
}

.user-info-title {
    font-size: 22px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
}

.user-info-close {
    background: none;
    border: none;
    font-size: 28px;
    color: #999;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.user-info-close:hover {
    background-color: #f5f5f5;
    color: #666;
}

.user-info-body {
    padding: 20px 25px 25px;
}

.user-avatar-container {
    display: flex;
    justify-content: center;
    margin-bottom: 25px;
    position: relative;
}

.user-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid #07c160;
    object-fit: cover;
    background: #f5f5f5;
}

.user-avatar-loading {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid #07c160;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
}

.user-details {
    margin-bottom: 25px;
}

.user-detail-item {
    display: flex;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #f5f5f5;
}

.detail-label {
    font-size: 14px;
    color: #666;
    min-width: 100px;
    font-weight: 500;
}

.detail-value {
    font-size: 14px;
    color: #2c3e50;
    flex: 1;
}

.detail-value.user-uuid {
    font-family: monospace;
    font-size: 12px;
    color: #666;
    word-break: break-all;
}

.user-info-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .wx-login-content {
        width: 95%;
        margin: 20px;
    }
    
    .user-info-content {
        width: 95%;
        margin: 20px;
    }
    
    .fallback-options {
        flex-direction: column;
    }
    
    .user-info-actions {
        flex-direction: column;
    }
}

.copyright p {
    color: #666;
    font-size: 14px;
    line-height: 1.5;
    margin: 5px 0;
}

/* 微信登录弹窗样式 */
.wx-login-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1000;
    animation: fadeIn 0.3s ease;
}

.wx-login-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    max-width: 400px;
    width: 90%;
}

.wx-login-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.wx-login-header h3 {
    margin: 0;
    font-size: 18px;
    color: #333;
}

.wx-login-close {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #999;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wx-login-close:hover {
    color: #333;
}

.wx-login-qr {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 200px;
    margin-bottom: 15px;
}

.wx-login-tips {
    text-align: center;
    color: #666;
    font-size: 14px;
}

.wx-login-modal.show {
    display: flex;
    justify-content: center;
    align-items: center;
}

.wx-login-content {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    width: 90%;
    max-width: 420px;
    animation: slideUp 0.3s ease;
}

.wx-login-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 25px 15px;
    border-bottom: 1px solid #f0f0f0;
}

.wx-login-title {
    font-size: 22px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
}

.wx-login-close {
    background: none;
    border: none;
    font-size: 28px;
    color: #999;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.wx-login-close:hover {
    background-color: #f5f5f5;
    color: #666;
}

.wx-login-body {
    padding: 20px 25px 25px;
}

.wx-login-methods {
    text-align: center;
}

.wx-qr-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
}

.wx-qr-placeholder {
    width: 200px;
    height: 200px;
    border: 2px solid #e9ecef;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #ffffff;
}

.wx-qr-image {
    width: 200px;
    height: 200px;
    border: 2px solid #07c160;
    border-radius: 15px;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wx-qr-image canvas {
    border-radius: 12px;
}

.wx-login-tip {
    font-size: 14px;
    color: #666;
    margin: 10px 0 0 0;
}

/* 备用方案样式 */
.wx-fallback {
    text-align: center;
}

.fallback-content {
    padding: 20px;
}

.fallback-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.fallback-content h4 {
    font-size: 18px;
    color: #2c3e50;
    margin-bottom: 10px;
}

.fallback-content p {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.4;
}

.fallback-options {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.mini-program-icon {
    margin-right: 8px;
}

/* 用户信息弹窗样式 */
.user-info-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0. 0.6);
    z-index: 1000;
    animation: fadeIn 0.3s ease;
}

.user-info-modal.show {
    display: flex;
    justify-content: center;
    align-items: center;
}

.user-info-content {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    width: 90%;
    max-width: 500px;
    max-height: 80vh;
    overflow-y: auto;
    animation: slideUp 0.3s ease;
}

.user-info-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 25px 15px;
    border-bottom: 1px solid #f0f0f0;
}

.user-info-title {
    font-size: 22px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
}

.user-info-close {
    background: none;
    border: none;
    font-size: 28px;
    color: #999;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.user-info-close:hover {
    background-color: #f5f5f5;
    color: #666;
}

.user-info-body {
    padding: 20px 25px 25px;
}

.user-avatar-container {
    display: flex;
    justify-content: center;
    margin-bottom: 25px;
    position: relative;
}

.user-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid #07c160;
    object-fit: cover;
    background: #f5f5f5;
}

.user-avatar-loading {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid #07c160;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
}

.user-details {
    margin-bottom: 25px;
}

.user-detail-item {
    display: flex;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #f5f5f5;
}

.detail-label {
    font-size: 14px;
    color: #666;
    min-width: 100px;
    font-weight: 500;
}

.detail-value {
    font-size: 14px;
    color: #2c3e50;
    flex: 1;
}

.detail-value.user-uuid {
    font-family: monospace;
    font-size: 12px;
    color: #666;
    word-break: break-all;
}

.user-info-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .wx-login-content {
        width: 95%;
        margin: 20px;
    }
    
    .user-info-content {
        width: 95%;
        margin: 20px;
    }
    
    .fallback-options {
        flex-direction: column;
    }
    
    .user-info-actions {
        flex-direction: column;
    }
}

.copyright .disclaimer {
    color: #999;
    font-size: 12px;
}

/* 微信登录弹窗样式 */
.wx-login-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1000;
    animation: fadeIn 0.3s ease;
}

.wx-login-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    max-width: 400px;
    width: 90%;
}

.wx-login-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.wx-login-header h3 {
    margin: 0;
    font-size: 18px;
    color: #333;
}

.wx-login-close {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #999;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wx-login-close:hover {
    color: #333;
}

.wx-login-qr {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 200px;
    margin-bottom: 15px;
}

.wx-login-tips {
    text-align: center;
    color: #666;
    font-size: 14px;
}

.wx-login-modal.show {
    display: flex;
    justify-content: center;
    align-items: center;
}

.wx-login-content {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    width: 90%;
    max-width: 420px;
    animation: slideUp 0.3s ease;
}

.wx-login-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 25px 15px;
    border-bottom: 1px solid #f0f0f0;
}

.wx-login-title {
    font-size: 22px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
}

.wx-login-close {
    background: none;
    border: none;
    font-size: 28px;
    color: #999;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.wx-login-close:hover {
    background-color: #f5f5f5;
    color: #666;
}

.wx-login-body {
    padding: 20px 25px 25px;
}

.wx-login-methods {
    text-align: center;
}

.wx-qr-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
}

.wx-qr-placeholder {
    width: 200px;
    height: 200px;
    border: 2px solid #e9ecef;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #ffffff;
}

.wx-qr-image {
    width: 200px;
    height: 200px;
    border: 2px solid #07c160;
    border-radius: 15px;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wx-qr-image canvas {
    border-radius: 12px;
}

.wx-login-tip {
    font-size: 14px;
    color: #666;
    margin: 10px 0 0 0;
}

/* 备用方案样式 */
.wx-fallback {
    text-align: center;
}

.fallback-content {
    padding: 20px;
}

.fallback-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.fallback-content h4 {
    font-size: 18px;
    color: #2c3e50;
    margin-bottom: 10px;
}

.fallback-content p {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.4;
}

.fallback-options {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.mini-program-icon {
    margin-right: 8px;
}

/* 用户信息弹窗样式 */
.user-info-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0. 0.6);
    z-index: 1000;
    animation: fadeIn 0.3s ease;
}

.user-info-modal.show {
    display: flex;
    justify-content: center;
    align-items: center;
}

.user-info-content {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    width: 90%;
    max-width: 500px;
    max-height: 80vh;
    overflow-y: auto;
    animation: slideUp 0.3s ease;
}

.user-info-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 25px 15px;
    border-bottom: 1px solid #f0f0f0;
}

.user-info-title {
    font-size: 22px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
}

.user-info-close {
    background: none;
    border: none;
    font-size: 28px;
    color: #999;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.user-info-close:hover {
    background-color: #f5f5f5;
    color: #666;
}

.user-info-body {
    padding: 20px 25px 25px;
}

.user-avatar-container {
    display: flex;
    justify-content: center;
    margin-bottom: 25px;
    position: relative;
}

.user-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid #07c160;
    object-fit: cover;
    background: #f5f5f5;
}

.user-avatar-loading {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid #07c160;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
}

.user-details {
    margin-bottom: 25px;
}

.user-detail-item {
    display: flex;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #f5f5f5;
}

.detail-label {
    font-size: 14px;
    color: #666;
    min-width: 100px;
    font-weight: 500;
}

.detail-value {
    font-size: 14px;
    color: #2c3e50;
    flex: 1;
}

.detail-value.user-uuid {
    font-family: monospace;
    font-size: 12px;
    color: #666;
    word-break: break-all;
}

.user-info-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .wx-login-content {
        width: 95%;
        margin: 20px;
    }
    
    .user-info-content {
        width: 95%;
        margin: 20px;
    }
    
    .fallback-options {
        flex-direction: column;
    }
    
    .user-info-actions {
        flex-direction: column;
    }
}

/* 响应式设计 */
@media (max-width: 768px) {
    .terms-content {
        width: 95%;
        margin: 20px auto;
    }

/* 微信登录弹窗样式 */
.wx-login-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1000;
    animation: fadeIn 0.3s ease;
}

.wx-login-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    max-width: 400px;
    width: 90%;
}

.wx-login-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.wx-login-header h3 {
    margin: 0;
    font-size: 18px;
    color: #333;
}

.wx-login-close {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #999;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wx-login-close:hover {
    color: #333;
}

.wx-login-qr {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 200px;
    margin-bottom: 15px;
}

.wx-login-tips {
    text-align: center;
    color: #666;
    font-size: 14px;
}

.wx-login-modal.show {
    display: flex;
    justify-content: center;
    align-items: center;
}

.wx-login-content {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    width: 90%;
    max-width: 420px;
    animation: slideUp 0.3s ease;
}

.wx-login-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 25px 15px;
    border-bottom: 1px solid #f0f0f0;
}

.wx-login-title {
    font-size: 22px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
}

.wx-login-close {
    background: none;
    border: none;
    font-size: 28px;
    color: #999;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.wx-login-close:hover {
    background-color: #f5f5f5;
    color: #666;
}

.wx-login-body {
    padding: 20px 25px 25px;
}

.wx-login-methods {
    text-align: center;
}

.wx-qr-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
}

.wx-qr-placeholder {
    width: 200px;
    height: 200px;
    border: 2px solid #e9ecef;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #ffffff;
}

.wx-qr-image {
    width: 200px;
    height: 200px;
    border: 2px solid #07c160;
    border-radius: 15px;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wx-qr-image canvas {
    border-radius: 12px;
}

.wx-login-tip {
    font-size: 14px;
    color: #666;
    margin: 10px 0 0 0;
}

/* 备用方案样式 */
.wx-fallback {
    text-align: center;
}

.fallback-content {
    padding: 20px;
}

.fallback-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.fallback-content h4 {
    font-size: 18px;
    color: #2c3e50;
    margin-bottom: 10px;
}

.fallback-content p {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.4;
}

.fallback-options {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.mini-program-icon {
    margin-right: 8px;
}

/* 用户信息弹窗样式 */
.user-info-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0. 0.6);
    z-index: 1000;
    animation: fadeIn 0.3s ease;
}

.user-info-modal.show {
    display: flex;
    justify-content: center;
    align-items: center;
}

.user-info-content {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    width: 90%;
    max-width: 500px;
    max-height: 80vh;
    overflow-y: auto;
    animation: slideUp 0.3s ease;
}

.user-info-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 25px 15px;
    border-bottom: 1px solid #f0f0f0;
}

.user-info-title {
    font-size: 22px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
}

.user-info-close {
    background: none;
    border: none;
    font-size: 28px;
    color: #999;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.user-info-close:hover {
    background-color: #f5f5f5;
    color: #666;
}

.user-info-body {
    padding: 20px 25px 25px;
}

.user-avatar-container {
    display: flex;
    justify-content: center;
    margin-bottom: 25px;
    position: relative;
}

.user-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid #07c160;
    object-fit: cover;
    background: #f5f5f5;
}

.user-avatar-loading {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid #07c160;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
}

.user-details {
    margin-bottom: 25px;
}

.user-detail-item {
    display: flex;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #f5f5f5;
}

.detail-label {
    font-size: 14px;
    color: #666;
    min-width: 100px;
    font-weight: 500;
}

.detail-value {
    font-size: 14px;
    color: #2c3e50;
    flex: 1;
}

.detail-value.user-uuid {
    font-family: monospace;
    font-size: 12px;
    color: #666;
    word-break: break-all;
}

.user-info-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .wx-login-content {
        width: 95%;
        margin: 20px;
    }
    
    .user-info-content {
        width: 95%;
        margin: 20px;
    }
    
    .fallback-options {
        flex-direction: column;
    }
    
    .user-info-actions {
        flex-direction: column;
    }
}
    
    .terms-body {
        padding: 0 20px 20px 20px;
    }

/* 微信登录弹窗样式 */
.wx-login-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1000;
    animation: fadeIn 0.3s ease;
}

.wx-login-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    max-width: 400px;
    width: 90%;
}

.wx-login-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.wx-login-header h3 {
    margin: 0;
    font-size: 18px;
    color: #333;
}

.wx-login-close {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #999;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wx-login-close:hover {
    color: #333;
}

.wx-login-qr {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 200px;
    margin-bottom: 15px;
}

.wx-login-tips {
    text-align: center;
    color: #666;
    font-size: 14px;
}

.wx-login-modal.show {
    display: flex;
    justify-content: center;
    align-items: center;
}

.wx-login-content {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    width: 90%;
    max-width: 420px;
    animation: slideUp 0.3s ease;
}

.wx-login-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 25px 15px;
    border-bottom: 1px solid #f0f0f0;
}

.wx-login-title {
    font-size: 22px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
}

.wx-login-close {
    background: none;
    border: none;
    font-size: 28px;
    color: #999;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.wx-login-close:hover {
    background-color: #f5f5f5;
    color: #666;
}

.wx-login-body {
    padding: 20px 25px 25px;
}

.wx-login-methods {
    text-align: center;
}

.wx-qr-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
}

.wx-qr-placeholder {
    width: 200px;
    height: 200px;
    border: 2px solid #e9ecef;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #ffffff;
}

.wx-qr-image {
    width: 200px;
    height: 200px;
    border: 2px solid #07c160;
    border-radius: 15px;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wx-qr-image canvas {
    border-radius: 12px;
}

.wx-login-tip {
    font-size: 14px;
    color: #666;
    margin: 10px 0 0 0;
}

/* 备用方案样式 */
.wx-fallback {
    text-align: center;
}

.fallback-content {
    padding: 20px;
}

.fallback-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.fallback-content h4 {
    font-size: 18px;
    color: #2c3e50;
    margin-bottom: 10px;
}

.fallback-content p {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.4;
}

.fallback-options {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.mini-program-icon {
    margin-right: 8px;
}

/* 用户信息弹窗样式 */
.user-info-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0. 0.6);
    z-index: 1000;
    animation: fadeIn 0.3s ease;
}

.user-info-modal.show {
    display: flex;
    justify-content: center;
    align-items: center;
}

.user-info-content {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    width: 90%;
    max-width: 500px;
    max-height: 80vh;
    overflow-y: auto;
    animation: slideUp 0.3s ease;
}

.user-info-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 25px 15px;
    border-bottom: 1px solid #f0f0f0;
}

.user-info-title {
    font-size: 22px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
}

.user-info-close {
    background: none;
    border: none;
    font-size: 28px;
    color: #999;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.user-info-close:hover {
    background-color: #f5f5f5;
    color: #666;
}

.user-info-body {
    padding: 20px 25px 25px;
}

.user-avatar-container {
    display: flex;
    justify-content: center;
    margin-bottom: 25px;
    position: relative;
}

.user-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid #07c160;
    object-fit: cover;
    background: #f5f5f5;
}

.user-avatar-loading {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid #07c160;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
}

.user-details {
    margin-bottom: 25px;
}

.user-detail-item {
    display: flex;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #f5f5f5;
}

.detail-label {
    font-size: 14px;
    color: #666;
    min-width: 100px;
    font-weight: 500;
}

.detail-value {
    font-size: 14px;
    color: #2c3e50;
    flex: 1;
}

.detail-value.user-uuid {
    font-family: monospace;
    font-size: 12px;
    color: #666;
    word-break: break-all;
}

.user-info-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .wx-login-content {
        width: 95%;
        margin: 20px;
    }
    
    .user-info-content {
        width: 95%;
        margin: 20px;
    }
    
    .fallback-options {
        flex-direction: column;
    }
    
    .user-info-actions {
        flex-direction: column;
    }
}
    
    .terms-body h4 {
        font-size: 15px;
    }

/* 微信登录弹窗样式 */
.wx-login-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1000;
    animation: fadeIn 0.3s ease;
}

.wx-login-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    max-width: 400px;
    width: 90%;
}

.wx-login-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.wx-login-header h3 {
    margin: 0;
    font-size: 18px;
    color: #333;
}

.wx-login-close {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #999;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wx-login-close:hover {
    color: #333;
}

.wx-login-qr {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 200px;
    margin-bottom: 15px;
}

.wx-login-tips {
    text-align: center;
    color: #666;
    font-size: 14px;
}

.wx-login-modal.show {
    display: flex;
    justify-content: center;
    align-items: center;
}

.wx-login-content {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    width: 90%;
    max-width: 420px;
    animation: slideUp 0.3s ease;
}

.wx-login-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 25px 15px;
    border-bottom: 1px solid #f0f0f0;
}

.wx-login-title {
    font-size: 22px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
}

.wx-login-close {
    background: none;
    border: none;
    font-size: 28px;
    color: #999;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.wx-login-close:hover {
    background-color: #f5f5f5;
    color: #666;
}

.wx-login-body {
    padding: 20px 25px 25px;
}

.wx-login-methods {
    text-align: center;
}

.wx-qr-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
}

.wx-qr-placeholder {
    width: 200px;
    height: 200px;
    border: 2px solid #e9ecef;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #ffffff;
}

.wx-qr-image {
    width: 200px;
    height: 200px;
    border: 2px solid #07c160;
    border-radius: 15px;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wx-qr-image canvas {
    border-radius: 12px;
}

.wx-login-tip {
    font-size: 14px;
    color: #666;
    margin: 10px 0 0 0;
}

/* 备用方案样式 */
.wx-fallback {
    text-align: center;
}

.fallback-content {
    padding: 20px;
}

.fallback-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.fallback-content h4 {
    font-size: 18px;
    color: #2c3e50;
    margin-bottom: 10px;
}

.fallback-content p {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.4;
}

.fallback-options {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.mini-program-icon {
    margin-right: 8px;
}

/* 用户信息弹窗样式 */
.user-info-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0. 0.6);
    z-index: 1000;
    animation: fadeIn 0.3s ease;
}

.user-info-modal.show {
    display: flex;
    justify-content: center;
    align-items: center;
}

.user-info-content {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    width: 90%;
    max-width: 500px;
    max-height: 80vh;
    overflow-y: auto;
    animation: slideUp 0.3s ease;
}

.user-info-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 25px 15px;
    border-bottom: 1px solid #f0f0f0;
}

.user-info-title {
    font-size: 22px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
}

.user-info-close {
    background: none;
    border: none;
    font-size: 28px;
    color: #999;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.user-info-close:hover {
    background-color: #f5f5f5;
    color: #666;
}

.user-info-body {
    padding: 20px 25px 25px;
}

.user-avatar-container {
    display: flex;
    justify-content: center;
    margin-bottom: 25px;
    position: relative;
}

.user-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid #07c160;
    object-fit: cover;
    background: #f5f5f5;
}

.user-avatar-loading {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid #07c160;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
}

.user-details {
    margin-bottom: 25px;
}

.user-detail-item {
    display: flex;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #f5f5f5;
}

.detail-label {
    font-size: 14px;
    color: #666;
    min-width: 100px;
    font-weight: 500;
}

.detail-value {
    font-size: 14px;
    color: #2c3e50;
    flex: 1;
}

.detail-value.user-uuid {
    font-family: monospace;
    font-size: 12px;
    color: #666;
    word-break: break-all;
}

.user-info-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .wx-login-content {
        width: 95%;
        margin: 20px;
    }
    
    .user-info-content {
        width: 95%;
        margin: 20px;
    }
    
    .fallback-options {
        flex-direction: column;
    }
    
    .user-info-actions {
        flex-direction: column;
    }
}
    
    .terms-body p,
    .terms-body li {
        font-size: 13px;
    }

/* 微信登录弹窗样式 */
.wx-login-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1000;
    animation: fadeIn 0.3s ease;
}

.wx-login-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    max-width: 400px;
    width: 90%;
}

.wx-login-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.wx-login-header h3 {
    margin: 0;
    font-size: 18px;
    color: #333;
}

.wx-login-close {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #999;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wx-login-close:hover {
    color: #333;
}

.wx-login-qr {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 200px;
    margin-bottom: 15px;
}

.wx-login-tips {
    text-align: center;
    color: #666;
    font-size: 14px;
}

.wx-login-modal.show {
    display: flex;
    justify-content: center;
    align-items: center;
}

.wx-login-content {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    width: 90%;
    max-width: 420px;
    animation: slideUp 0.3s ease;
}

.wx-login-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 25px 15px;
    border-bottom: 1px solid #f0f0f0;
}

.wx-login-title {
    font-size: 22px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
}

.wx-login-close {
    background: none;
    border: none;
    font-size: 28px;
    color: #999;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.wx-login-close:hover {
    background-color: #f5f5f5;
    color: #666;
}

.wx-login-body {
    padding: 20px 25px 25px;
}

.wx-login-methods {
    text-align: center;
}

.wx-qr-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
}

.wx-qr-placeholder {
    width: 200px;
    height: 200px;
    border: 2px solid #e9ecef;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #ffffff;
}

.wx-qr-image {
    width: 200px;
    height: 200px;
    border: 2px solid #07c160;
    border-radius: 15px;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wx-qr-image canvas {
    border-radius: 12px;
}

.wx-login-tip {
    font-size: 14px;
    color: #666;
    margin: 10px 0 0 0;
}

/* 备用方案样式 */
.wx-fallback {
    text-align: center;
}

.fallback-content {
    padding: 20px;
}

.fallback-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.fallback-content h4 {
    font-size: 18px;
    color: #2c3e50;
    margin-bottom: 10px;
}

.fallback-content p {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.4;
}

.fallback-options {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.mini-program-icon {
    margin-right: 8px;
}

/* 用户信息弹窗样式 */
.user-info-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0. 0.6);
    z-index: 1000;
    animation: fadeIn 0.3s ease;
}

.user-info-modal.show {
    display: flex;
    justify-content: center;
    align-items: center;
}

.user-info-content {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    width: 90%;
    max-width: 500px;
    max-height: 80vh;
    overflow-y: auto;
    animation: slideUp 0.3s ease;
}

.user-info-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 25px 15px;
    border-bottom: 1px solid #f0f0f0;
}

.user-info-title {
    font-size: 22px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
}

.user-info-close {
    background: none;
    border: none;
    font-size: 28px;
    color: #999;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.user-info-close:hover {
    background-color: #f5f5f5;
    color: #666;
}

.user-info-body {
    padding: 20px 25px 25px;
}

.user-avatar-container {
    display: flex;
    justify-content: center;
    margin-bottom: 25px;
    position: relative;
}

.user-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid #07c160;
    object-fit: cover;
    background: #f5f5f5;
}

.user-avatar-loading {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid #07c160;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
}

.user-details {
    margin-bottom: 25px;
}

.user-detail-item {
    display: flex;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #f5f5f5;
}

.detail-label {
    font-size: 14px;
    color: #666;
    min-width: 100px;
    font-weight: 500;
}

.detail-value {
    font-size: 14px;
    color: #2c3e50;
    flex: 1;
}

.detail-value.user-uuid {
    font-family: monospace;
    font-size: 12px;
    color: #666;
    word-break: break-all;
}

.user-info-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .wx-login-content {
        width: 95%;
        margin: 20px;
    }
    
    .user-info-content {
        width: 95%;
        margin: 20px;
    }
    
    .fallback-options {
        flex-direction: column;
    }
    
    .user-info-actions {
        flex-direction: column;
    }
}
}

/* 微信登录弹窗样式 */
.wx-login-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1000;
    animation: fadeIn 0.3s ease;
}

.wx-login-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    max-width: 400px;
    width: 90%;
}

.wx-login-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.wx-login-header h3 {
    margin: 0;
    font-size: 18px;
    color: #333;
}

.wx-login-close {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #999;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wx-login-close:hover {
    color: #333;
}

.wx-login-qr {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 200px;
    margin-bottom: 15px;
}

.wx-login-tips {
    text-align: center;
    color: #666;
    font-size: 14px;
}

.wx-login-modal.show {
    display: flex;
    justify-content: center;
    align-items: center;
}

.wx-login-content {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    width: 90%;
    max-width: 420px;
    animation: slideUp 0.3s ease;
}

.wx-login-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 25px 15px;
    border-bottom: 1px solid #f0f0f0;
}

.wx-login-title {
    font-size: 22px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
}

.wx-login-close {
    background: none;
    border: none;
    font-size: 28px;
    color: #999;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.wx-login-close:hover {
    background-color: #f5f5f5;
    color: #666;
}

.wx-login-body {
    padding: 20px 25px 25px;
}

.wx-login-methods {
    text-align: center;
}

.wx-qr-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
}

.wx-qr-placeholder {
    width: 200px;
    height: 200px;
    border: 2px solid #e9ecef;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #ffffff;
}

.wx-qr-image {
    width: 200px;
    height: 200px;
    border: 2px solid #07c160;
    border-radius: 15px;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wx-qr-image canvas {
    border-radius: 12px;
}

.wx-login-tip {
    font-size: 14px;
    color: #666;
    margin: 10px 0 0 0;
}

/* 备用方案样式 */
.wx-fallback {
    text-align: center;
}

.fallback-content {
    padding: 20px;
}

.fallback-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.fallback-content h4 {
    font-size: 18px;
    color: #2c3e50;
    margin-bottom: 10px;
}

.fallback-content p {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.4;
}

.fallback-options {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.mini-program-icon {
    margin-right: 8px;
}

/* 用户信息弹窗样式 */
.user-info-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0. 0.6);
    z-index: 1000;
    animation: fadeIn 0.3s ease;
}

.user-info-modal.show {
    display: flex;
    justify-content: center;
    align-items: center;
}

.user-info-content {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    width: 90%;
    max-width: 500px;
    max-height: 80vh;
    overflow-y: auto;
    animation: slideUp 0.3s ease;
}

.user-info-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 25px 15px;
    border-bottom: 1px solid #f0f0f0;
}

.user-info-title {
    font-size: 22px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
}

.user-info-close {
    background: none;
    border: none;
    font-size: 28px;
    color: #999;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.user-info-close:hover {
    background-color: #f5f5f5;
    color: #666;
}

.user-info-body {
    padding: 20px 25px 25px;
}

.user-avatar-container {
    display: flex;
    justify-content: center;
    margin-bottom: 25px;
    position: relative;
}

.user-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid #07c160;
    object-fit: cover;
    background: #f5f5f5;
}

.user-avatar-loading {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid #07c160;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
}

.user-details {
    margin-bottom: 25px;
}

.user-detail-item {
    display: flex;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #f5f5f5;
}

.detail-label {
    font-size: 14px;
    color: #666;
    min-width: 100px;
    font-weight: 500;
}

.detail-value {
    font-size: 14px;
    color: #2c3e50;
    flex: 1;
}

.detail-value.user-uuid {
    font-family: monospace;
    font-size: 12px;
    color: #666;
    word-break: break-all;
}

.user-info-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .wx-login-content {
        width: 95%;
        margin: 20px;
    }
    
    .user-info-content {
        width: 95%;
        margin: 20px;
    }
    
    .fallback-options {
        flex-direction: column;
    }
    
    .user-info-actions {
        flex-direction: column;
    }
}
