        /* 独立分享组件样式 - 不会影响主页面 */
        .share-widget-container {
            font-family: 'PingFang SC', 'Microsoft YaHei', sans-serif;
            width: 100%;
            max-width: 800px;
            margin: 0 auto;
            padding: 20px;
            background: #ffffff;
            border-radius: 12px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
        }
        
        .share-widget-container * {
            box-sizing: border-box;
        }
        
        .share-widget-title {
            font-size: 1.5rem;
            font-weight: 600;
            margin-bottom: 20px;
            color: #2c3e50;
            text-align: center;
            padding-bottom: 15px;
            border-bottom: 2px solid #f0f2f5;
        }
        
        .share-platforms {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 15px;
            margin-bottom: 25px;
        }
        
        .platform-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            width: 110px;
            padding: 15px 5px;
            border-radius: 12px;
            cursor: pointer;
            transition: all 0.3s ease;
            background: #ffffff;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
            border: 1px solid #e8eaed;
        }
        
        .platform-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
        }
        
        .platform-icon {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 10px;
            font-size: 1.8rem;
            color: white;
        }
        
        .platform-name {
            font-size: 0.9rem;
            font-weight: 500;
            color: #333;
            text-align: center;
        }
        
        /* 各平台图标颜色 */
        .wechat { background: linear-gradient(135deg, #07c160, #05a54a); }
        .wechat-moment { background: linear-gradient(135deg, #1aad19, #129611); }
        .qq { background: linear-gradient(135deg, #12b7f5, #0d9cd6); }
        .qzone { background: linear-gradient(135deg, #f7b500, #e0a500); }
        .weibo { background: linear-gradient(135deg, #e6162d, #c41426); }
        .douyin { background: linear-gradient(135deg, #000000, #333333); }
        .xiaohongshu { background: linear-gradient(135deg, #ff2442, #d61e36); }
        .zhihu { background: linear-gradient(135deg, #0084ff, #0066cc); }
        .tieba { background: linear-gradient(135deg, #2c9ae8, #1a7bc9); }
        .baijiahao { background: linear-gradient(135deg, #3b7cff, #295fcc); }
        .bilibili { background: linear-gradient(135deg, #fb7299, #e06484); }
        .copy { background: linear-gradient(135deg, #9b59b6, #8e44ad); }
        
        /* 响应式设计 */
        @media (max-width: 768px) {
            .share-platforms {
                gap: 12px;
            }
            
            .platform-item {
                width: 100px;
                padding: 12px 5px;
            }
            
            .platform-icon {
                width: 45px;
                height: 45px;
                font-size: 1.6rem;
            }
        }
        
        @media (max-width: 480px) {
            .share-platforms {
                gap: 10px;
            }
            
            .platform-item {
                width: 90px;
                padding: 10px 5px;
            }
            
            .platform-icon {
                width: 40px;
                height: 40px;
                font-size: 1.4rem;
            }
            
            .platform-name {
                font-size: 0.8rem;
            }
        }
        
        /* 分享选项配置面板 */
        .share-config-panel {
            background: #f8f9fa;
            border-radius: 12px;
            padding: 25px;
            margin-top: 25px;
            border: 1px solid #e8eaed;
            display: none;
        }
        
        .config-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 20px;
        }
        
        .config-title {
            font-size: 1.2rem;
            font-weight: 600;
            color: #2c3e50;
            margin: 0;
        }
        
        .close-config {
            background: none;
            border: none;
            font-size: 1.5rem;
            color: #95a5a6;
            cursor: pointer;
            width: 30px;
            height: 30px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.2s ease;
        }
        
        .close-config:hover {
            background: rgba(0, 0, 0, 0.05);
            color: #2c3e50;
        }
        
        .config-option {
            margin-bottom: 20px;
        }
        
        .config-option label {
            display: block;
            margin-bottom: 8px;
            font-weight: 500;
            color: #2c3e50;
        }
        
        .config-option input,
        .config-option textarea {
            width: 100%;
            padding: 12px 15px;
            border: 2px solid #e0e0e0;
            border-radius: 8px;
            font-size: 1rem;
            transition: border-color 0.3s ease;
            font-family: inherit;
        }
        
        .config-option input:focus,
        .config-option textarea:focus {
            border-color: #3498db;
            outline: none;
        }
        
        .config-option textarea {
            min-height: 80px;
            resize: vertical;
        }
        
        .config-buttons {
            display: flex;
            gap: 12px;
            justify-content: flex-end;
            margin-top: 25px;
        }
        
        .btn {
            padding: 12px 24px;
            border: none;
            border-radius: 8px;
            cursor: pointer;
            font-weight: 500;
            font-size: 1rem;
            transition: all 0.2s ease;
            font-family: inherit;
        }
        
        .btn-primary {
            background: #3498db;
            color: white;
        }
        
        .btn-primary:hover {
            background: #2980b9;
            transform: translateY(-2px);
        }
        
        .btn-secondary {
            background: #95a5a6;
            color: white;
        }
        
        .btn-secondary:hover {
            background: #7f8c8d;
            transform: translateY(-2px);
        }
        
        .btn-success {
            background: #2ecc71;
            color: white;
        }
        
        .btn-success:hover {
            background: #27ae60;
            transform: translateY(-2px);
        }
        
        /* 自定义分享内容按钮 */
        .customize-share-btn {
            display: block;
            width: 220px;
            margin: 0 auto 25px;
            padding: 12px 20px;
            background: #9b59b6;
            color: white;
            border: none;
            border-radius: 8px;
            cursor: pointer;
            transition: all 0.2s ease;
            font-weight: 500;
            font-size: 1rem;
        }
        
        .customize-share-btn:hover {
            background: #8e44ad;
            transform: translateY(-2px);
        }
        
        .customize-share-btn i {
            margin-right: 8px;
        }
        
        /* 分享成功提示 */
        .share-toast {
            position: fixed;
            top: 30px;
            right: 30px;
            padding: 15px 25px;
            border-radius: 8px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
            opacity: 0;
            transform: translateX(100%);
            transition: all 0.3s ease;
            z-index: 10000;
            max-width: 350px;
            display: flex;
            align-items: center;
        }
        
        .share-toast.show {
            opacity: 1;
            transform: translateX(0);
        }
        
        .toast-success {
            background: #2ecc71;
            color: white;
        }
        
        .toast-info {
            background: #3498db;
            color: white;
        }
        
        .toast-warning {
            background: #f39c12;
            color: white;
        }
        
        .toast-error {
            background: #e74c3c;
            color: white;
        }
        
        .toast-icon {
            font-size: 1.3rem;
            margin-right: 12px;
        }
        
        .toast-content {
            flex: 1;
        }
        
        /* 分享链接弹窗 */
        .share-modal {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.6);
            display: none;
            justify-content: center;
            align-items: center;
            z-index: 9999;
            padding: 20px;
        }
        
        .share-modal.show {
            display: flex;
        }
        
        .modal-content {
            background: white;
            padding: 30px;
            border-radius: 12px;
            text-align: center;
            max-width: 500px;
            width: 100%;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
        }
        
        .modal-title {
            font-size: 1.4rem;
            font-weight: 600;
            margin-bottom: 20px;
            color: #2c3e50;
        }
        
        .share-link-container {
            background: #f8f9fa;
            border: 2px dashed #e0e0e0;
            border-radius: 8px;
            padding: 15px;
            margin: 20px 0;
            word-break: break-all;
            font-size: 0.9rem;
            color: #333;
        }
        
        .modal-buttons {
            display: flex;
            gap: 10px;
            justify-content: center;
            margin-top: 25px;
            flex-wrap: wrap;
        }
        
        .modal-buttons .btn {
            min-width: 120px;
        }
        
        .qrcode-container {
            margin: 20px auto;
            padding: 20px;
            background: white;
            border-radius: 8px;
            display: inline-block;
        }
        
        #qrcode {
            width: 200px;
            height: 200px;
        }
        
        /* 状态提示 */
        .status-message {
            text-align: center;
            padding: 15px;
            margin: 20px 0;
            border-radius: 8px;
            font-size: 0.95rem;
        }
        
        .status-success {
            background: #d5f4e6;
            color: #27ae60;
            border: 1px solid #2ecc71;
        }
        
        .status-info {
            background: #e3f2fd;
            color: #2980b9;
            border: 1px solid #3498db;
        }
        
        .status-warning {
            background: #fff3cd;
            color: #f39c12;
            border: 1px solid #ffeaa7;
        }
        
        /* 平台状态指示器 */
        .platform-status {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            display: inline-block;
            margin-left: 5px;
        }
        
        .status-online { background: #2ecc71; }
        .status-offline { background: #e74c3c; }
        .status-checking { background: #f39c12; }
        
        /* 加载动画 */
        .loading-spinner {
            width: 20px;
            height: 20px;
            border: 3px solid rgba(0, 0, 0, 0.1);
            border-radius: 50%;
            border-top-color: #3498db;
            animation: spin 1s ease-in-out infinite;
            display: inline-block;
            vertical-align: middle;
            margin-left: 8px;
        }
        
        @keyframes spin {
            to { transform: rotate(360deg); }
        }
        
        /* 页面信息预览 */
        .page-preview {
            background: #f8f9fa;
            border-radius: 8px;
            padding: 20px;
            margin: 20px 0;
            border: 1px solid #e0e0e0;
        }
        
        .preview-title {
            font-weight: 600;
            color: #2c3e50;
            margin-bottom: 10px;
        }
        
        .preview-description {
            color: #666;
            font-size: 0.9rem;
            margin-bottom: 10px;
        }
        
        .preview-image {
            max-width: 100%;
            border-radius: 6px;
            margin-top: 10px;
        }
        
        /* 平台说明 */
        .platform-info {
            font-size: 0.85rem;
            color: #666;
            text-align: center;
            margin-top: 10px;
            font-style: italic;
        }
        
        /* 二维码生成状态 */
        .qrcode-status {
            text-align: center;
            color: #666;
            font-size: 0.9rem;
            margin-top: 10px;
        }