
.vip-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.vip-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
}

.vip-modal-content {
    position: relative;
    background: var(--bg-primary);
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    max-width: 480px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    z-index: 1;
    animation: vipModalSlideIn 0.3s ease-out;
}

@keyframes vipModalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-20px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.vip-modal-header {
    padding: 24px 24px 16px;
    text-align: center;
    border-bottom: 1px solid var(--border-color);
    position: relative;
}

.vip-modal-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 16px;
    background: linear-gradient(135deg, #ffd700, #ffa500);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.3);
}

.vip-modal-icon i {
    font-size: 32px;
    color: #fff;
}

.vip-modal-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
}

.vip-modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 32px;
    height: 32px;
    border: none;
    background: var(--bg-secondary);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    transition: all 0.2s;
}

.vip-modal-close:hover {
    background: var(--border-color);
    color: var(--text-primary);
}

.vip-modal-body {
    padding: 24px;
}

.vip-modal-message {
    font-size: 15px;
    color: var(--text-primary);
    line-height: 1.6;
    margin: 0 0 24px;
    text-align: center;
}

.vip-modal-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 8px;
}

.vip-feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: var(--bg-secondary);
    border-radius: 8px;
    font-size: 14px;
    color: var(--text-primary);
}

.vip-feature-item i {
    color: var(--button-bg);
    font-size: 16px;
}

.vip-modal-footer {
    padding: 16px 24px 24px;
    display: flex;
    gap: 12px;
    justify-content: center;
}

.vip-modal-btn {
    flex: 1;
    padding: 12px 20px;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none;
}

.vip-modal-btn-primary {
    background: linear-gradient(135deg, #ffd700, #ffa500);
    color: #fff;
}

.vip-modal-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.4);
}

.vip-modal-btn-secondary {
    background: var(--bg-secondary);
    color: var(--text-primary);
    border: 1px solid var(--border-color);
}

.vip-modal-btn-secondary:hover {
    background: var(--border-color);
}

@media (max-width: 480px) {
    .vip-modal-content {
        width: 95%;
        margin: 20px;
    }
    
    .vip-modal-footer {
        flex-direction: column;
    }
    
    .vip-modal-btn {
        width: 100%;
    }
}

/* VIP标识样式 - 与收藏按钮完全一致 */
.tool-vip-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding: 6px 12px;
    height: auto;
    min-height: 32px;
    background-color: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-primary);
    cursor: default;
    transition: all 0.2s;
    flex-shrink: 0;
}

.tool-vip-badge:hover {
    background-color: var(--bg-secondary);
    border-color: var(--border-color);
}

.tool-vip-badge i {
    font-size: 14px;
    color: var(--text-primary);
}

.tool-vip-badge span {
    color: var(--text-primary);
}

/* AI工具标识样式 - 与VIP标识风格一致，简洁融合 */
.tool-ai-badge {
    background-color: var(--bg-primary);
    border-color: var(--border-color);
    color: var(--text-primary);
}

.tool-ai-badge:hover {
    background-color: var(--bg-secondary);
    border-color: var(--border-color);
}

.tool-ai-badge i {
    color: var(--text-primary);
}

.tool-ai-badge span {
    color: var(--text-primary);
}

/* 工具图标角标样式 - 斜角角标 */
.tool-icon-badge {
    position: absolute;
    top: 0;
    right: 0;
    width: 32px;
    height: 32px;
    z-index: 10;
    border-radius: 0 12px 0 32px;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 70%);
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    padding: 5px 6px 0 0;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.tool-icon-badge i {
    font-size: 14px;
    color: #fff;
    line-height: 1;
    transform: rotate(45deg);
}

/* AI工具角标样式 */
.tool-icon-badge-ai {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

/* 工具统计信息样式 */
.tool-header-stats {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 16px;
    flex-wrap: wrap;
}

.tool-stat-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: var(--text-secondary);
    line-height: 1.5;
}

.tool-stat-item i {
    font-size: 11px;
    color: var(--text-secondary);
}

/* 工具头部操作按钮样式 */
.tool-header-action-btn {
    min-width: auto;
    height: 32px;
    padding: 0 12px;
    border: 1px solid var(--border-color);
    background: var(--bg-primary);
    border-radius: 6px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    color: var(--text-secondary);
    transition: all 0.2s;
    flex-shrink: 0;
    position: relative;
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
}

.tool-header-action-btn:hover {
    background: var(--bg-secondary);
}

.tool-header-action-btn i {
    font-size: 14px;
    line-height: 1;
    color: var(--text-secondary);
    transition: color 0.2s;
}

.tool-action-text {
    font-size: 14px;
    font-weight: 500;
    line-height: 1;
    color: var(--text-secondary);
}

.tool-action-count {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-secondary);
    line-height: 1;
    background: var(--bg-secondary);
    padding: 2px 6px;
    border-radius: 10px;
    min-width: 18px;
    text-align: center;
}

/* 收藏按钮hover时图标变色 */
.tool-header-favorite:hover i {
    color: var(--button-bg);
}

/* 收藏按钮：已收藏和未收藏状态样式完全一致，只有图标实心/空心的区别 */
/* 确保已收藏状态背景不改变 */
.tool-header-favorite.active {
    background: var(--bg-primary);
}

.tool-header-favorite.active:hover {
    background: var(--bg-secondary);
}

/* 评论和反馈模态框样式 */
.comment-modal,
.feedback-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10001;
    display: none;
    align-items: center;
    justify-content: center;
}

.comment-modal.active,
.feedback-modal.active {
    display: flex;
}

.comment-modal-overlay,
.feedback-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
}

.comment-modal-content,
.feedback-modal-content {
    position: relative;
    background: var(--bg-primary);
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    max-width: 600px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    z-index: 1;
    animation: modalSlideIn 0.3s ease-out;
}

/* 消息模态框专用样式（用于收藏提示、登录成功等） */
.comment-modal-content[style*="max-width: 380px"] {
    max-width: 380px !important;
    width: auto !important;
    min-width: 300px !important;
}

.comment-modal-content[style*="max-width: 380px"] .comment-modal-header {
    padding: 20px 20px 16px !important;
}

.comment-modal-content[style*="max-width: 380px"] .comment-modal-title {
    font-size: 18px !important;
}

.comment-modal-content[style*="max-width: 380px"] .comment-modal-body {
    text-align: center !important;
    padding: 32px 24px 24px !important;
}

.comment-modal-content[style*="max-width: 380px"] .message-icon {
    font-size: 48px !important;
    margin-bottom: 20px !important;
    display: block !important;
}

.comment-modal-content[style*="max-width: 380px"] .message-icon.success {
    color: var(--button-bg) !important;
}

.comment-modal-content[style*="max-width: 380px"] .message-icon.error {
    color: #ff6b6b !important;
}

.comment-modal-content[style*="max-width: 380px"] .message-icon.warning {
    color: #ffa500 !important;
}

.comment-modal-content[style*="max-width: 380px"] .message-icon.info {
    color: var(--text-secondary) !important;
}

.comment-modal-content[style*="max-width: 380px"] .message-text {
    font-size: 15px !important;
    color: var(--text-primary) !important;
    margin-bottom: 24px !important;
    line-height: 1.6 !important;
    word-wrap: break-word !important;
}

.comment-modal-content[style*="max-width: 380px"] .message-actions {
    display: flex !important;
    justify-content: center !important;
    gap: 12px !important;
}

.comment-modal-content[style*="max-width: 380px"] .comment-form-submit {
    min-width: 100px !important;
    padding: 10px 24px !important;
    width: auto !important;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-20px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.comment-modal-header,
.feedback-modal-header {
    padding: 24px 24px 16px;
    border-bottom: 1px solid var(--border-color);
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px;
}

.comment-modal-title,
.feedback-modal-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
    flex: 1;
}

.comment-modal-close,
.feedback-modal-close {
    width: 32px;
    height: 32px;
    border: none;
    background: var(--bg-secondary);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    transition: all 0.2s;
}

.comment-modal-close:hover,
.feedback-modal-close:hover {
    background: var(--border-color);
    color: var(--text-primary);
}

.comment-modal-body,
.feedback-modal-body {
    padding: 24px;
}

.comment-form-group,
.feedback-form-group {
    margin-bottom: 20px;
}

.comment-form-label,
.feedback-form-label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-primary);
}

.comment-form-input,
.comment-form-textarea,
.feedback-form-input,
.feedback-form-textarea {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    background: var(--bg-secondary);
    color: var(--text-primary);
    font-size: 14px;
    font-family: inherit;
    transition: all 0.2s;
    box-sizing: border-box;
}

.comment-form-textarea,
.feedback-form-textarea {
    min-height: 120px;
    resize: vertical;
}

.comment-form-input:focus,
.comment-form-textarea:focus,
.feedback-form-input:focus,
.feedback-form-textarea:focus {
    outline: none;
    border-color: var(--button-bg);
    background: var(--bg-primary);
}

.comment-captcha-group,
.feedback-captcha-group {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.comment-captcha-input,
.feedback-captcha-input {
    flex: 1;
}

.comment-captcha-image,
.feedback-captcha-image {
    width: 120px;
    height: 40px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    cursor: pointer;
    background: var(--bg-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.comment-captcha-image img,
.feedback-captcha-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.comment-form-submit,
.feedback-form-submit {
    width: 100%;
    padding: 12px 20px;
    border: none;
    border-radius: 8px;
    background: var(--button-bg);
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.comment-form-submit:hover,
.feedback-form-submit:hover {
    background: var(--button-hover);
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.comment-form-submit:disabled,
.feedback-form-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.comment-list {
    margin-top: 24px;
}

.comment-item {
    padding: 16px;
    border-bottom: 1px solid var(--border-color);
}

.comment-item:last-child {
    border-bottom: none;
}

.comment-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
}

.comment-author {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 14px;
}

.comment-time {
    font-size: 12px;
    color: var(--text-secondary);
}

.comment-content {
    color: var(--text-primary);
    line-height: 1.6;
    font-size: 14px;
    margin-bottom: 8px;
}

.comment-reply {
    margin-top: 12px;
    padding: 12px;
    background: var(--bg-secondary);
    border-radius: 8px;
    border-left: 3px solid var(--button-bg);
}

.comment-reply-label {
    font-size: 12px;
    font-weight: 600;
    color: var(--button-bg);
    margin-bottom: 6px;
}

.comment-reply-content {
    font-size: 14px;
    color: var(--text-primary);
    line-height: 1.6;
}

.comment-empty {
    text-align: center;
    padding: 40px 20px;
    color: var(--text-secondary);
}

.comment-empty i {
    font-size: 48px;
    margin-bottom: 16px;
    opacity: 0.5;
}

.comment-loading {
    text-align: center;
    padding: 20px;
    color: var(--text-secondary);
}

@media (max-width: 480px) {
    .comment-modal-content,
    .feedback-modal-content {
        width: 95% !important;
        margin: 20px !important;
        max-width: 95% !important;
    }
    
    .comment-captcha-group,
    .feedback-captcha-group {
        flex-direction: column;
    }
    
    .comment-captcha-image,
    .feedback-captcha-image {
        width: 100%;
    }

    /* 确保模态框在移动端正确显示 */
    .comment-modal,
    .feedback-modal {
        display: none !important;
        z-index: 10001 !important;
    }

    .comment-modal.active,
    .feedback-modal.active {
        display: flex !important;
    }

    .comment-modal-content,
    .feedback-modal-content {
        position: relative !important;
        z-index: 1 !important;
    }
}

/* 移动端模态框优化 */
@media (max-width: 768px) {
    .comment-modal,
    .feedback-modal {
        padding: 20px !important;
        z-index: 10001 !important;
    }

    .comment-modal-content,
    .feedback-modal-content {
        width: 90% !important;
        max-width: 400px !important;
        margin: 0 !important;
    }

    .comment-modal-header,
    .feedback-modal-header {
        padding: 20px 20px 16px !important;
    }

    .comment-modal-body,
    .feedback-modal-body {
        padding: 20px !important;
    }

    .comment-modal-title,
    .feedback-modal-title {
        font-size: 18px !important;
    }

    /* 消息模态框内容优化 */
    .comment-modal-body .message-icon {
        font-size: 40px !important;
        margin-bottom: 16px !important;
    }

    .comment-modal-body .message-text {
        font-size: 14px !important;
        margin-bottom: 20px !important;
    }

    .comment-modal-body .message-actions {
        display: flex !important;
        justify-content: center !important;
        gap: 12px !important;
    }

    .comment-form-submit,
    .feedback-form-submit {
        min-width: 100px !important;
        padding: 10px 24px !important;
        font-size: 14px !important;
    }
}

/* 工具头部移动端优化 */
@media (max-width: 768px) {
    .tool-header-content {
        flex-direction: column !important;
        align-items: stretch !important;
        gap: 16px !important;
    }

    .tool-header-icon {
        align-self: center;
    }

    .tool-header-info {
        width: 100% !important;
    }

    .tool-title-row {
        flex-direction: column !important;
        align-items: stretch !important;
        gap: 16px !important;
    }

    .tool-title-row > div:first-child {
        min-height: 0 !important;
        justify-content: flex-start !important;
        align-items: center !important;
        text-align: center !important;
    }

    .tool-title-row > div:last-child {
        align-items: stretch !important;
        width: 100% !important;
    }

    .tool-header-title {
        font-size: 20px !important;
        flex-wrap: wrap !important;
        word-break: break-word;
        overflow-wrap: break-word;
        justify-content: center !important;
        text-align: center !important;
        align-items: center !important;
    }

    .tool-header-title .tool-vip-badge,
    .tool-header-title .tool-ai-badge {
        display: inline-flex !important;
    }

    .tool-header-description {
        white-space: normal !important;
        text-overflow: clip !important;
        overflow: visible !important;
        font-size: 14px !important;
        text-align: center !important;
    }

    .tool-rating-section {
        align-items: stretch !important;
        width: 100% !important;
    }

    .tool-title-actions {
        flex-wrap: wrap !important;
        justify-content: flex-start !important;
        width: 100% !important;
        gap: 8px !important;
    }

    .tool-header-action-btn {
        flex: 1 1 auto !important;
        min-width: calc(50% - 4px) !important;
    }
}

/* 工具头部布局样式 */
.tool-header-info {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
}

.tool-title-row {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    gap: 16px;
    width: 100%;
}

.tool-title-row > div:first-child {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: fit-content;
    min-width: 0;
    overflow: hidden;
}

.tool-title-row > div:last-child {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0;
    justify-content: space-between;
    min-height: fit-content;
    align-self: stretch;
    flex-shrink: 0;
}

/* 工具标题样式 */
.tool-header-title {
    margin: 0 0 8px 0;
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    font-size: 28px;
    font-weight: 600;
    color: var(--text-primary);
    line-height: 1.3;
}

.tool-header-description {
    margin: 0;
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.6;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
}

/* 操作按钮组样式 - 在工具使用次数下方 */
.tool-rating-section {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 12px;
    min-height: fit-content;
    justify-content: space-between;
    flex: 1;
}

.tool-title-actions {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: auto;
}

/* 工具性质提示样式 */
.tool-nature-notice {
    background-color: var(--bg-secondary);
    border: 1px solid var(--border-color);
    margin-bottom: 20px;
    padding: 12px 16px;
    border-radius: 6px;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
}

.tool-nature-notice-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-align: center;
}

.tool-nature-notice-icon {
    color: var(--link-color);
    flex-shrink: 0;
}

.tool-nature-notice-text {
    color: var(--text-primary);
    font-size: 14px;
    line-height: 1.6;
}

/* 特殊提示样式 */
.tool-special-notice {
    background-color: var(--bg-secondary);
    border: 1px solid var(--border-color);
    margin-bottom: 20px;
    padding: 12px 16px;
    border-radius: 6px;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
}

.tool-special-notice-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-align: center;
}

.tool-special-notice-icon {
    color: var(--link-color);
    flex-shrink: 0;
}

.tool-special-notice-text {
    color: var(--text-primary);
    font-size: 14px;
    line-height: 1.6;
}

/* 工具状态提示样式 */
.tool-status-card {
    text-align: center;
    padding: 60px 24px;
}

.tool-status-icon {
    margin: 0 auto 24px;
}

.tool-status-icon i {
    font-size: 64px;
}

.tool-status-icon.maintenance i {
    color: #ffa500;
}

.tool-status-icon.login-required i {
    color: #0066cc;
}

.tool-status-icon.hidden i {
    color: #999;
}

.tool-status-description {
    margin-bottom: 32px;
}

.tool-status-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

/* 空状态样式 */
.empty-state-icon {
    margin: 0 auto 24px;
}

.empty-state-icon i {
    font-size: 64px;
}

.empty-state-description {
    margin-bottom: 32px;
}

/* 评论和反馈表单用户信息样式 */
.comment-user-info,
.feedback-user-info {
    padding: 10px 12px;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    color: var(--text-primary);
}

.comment-user-info i,
.feedback-user-info i {
    margin-right: 8px;
    color: var(--button-bg);
}

/* 工具标题操作按钮组 */
.tool-title-actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* 工具状态图标样式 */
.tool-status-icon i {
    font-size: 64px;
}

.tool-status-icon.vip-icon i {
    color: #ffa500;
}

.tool-status-icon.error-icon i {
    color: var(--text-warning);
}

/* 验证码相关样式 */
.comment-captcha-img {
    display: none;
}

.comment-captcha-loading {
    color: var(--text-secondary);
    font-size: 12px;
}

.comment-list-hidden {
    display: none;
}

.comment-pagination {
    margin-top: 20px;
    text-align: center;
}

/* VIP模态框隐藏状态 */
.vip-modal-hidden {
    display: none;
}

/* 隐藏数据元素 */
[data-tool-css-url] {
    display: none;
}

/* 分享模态框样式 */
.share-content {
    padding: 8px 0;
}

.share-link-section,
.share-qrcode-section {
    margin-bottom: 24px;
}

.share-link-section:last-child,
.share-qrcode-section:last-child {
    margin-bottom: 0;
}

.share-label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.share-link-input-group {
    display: flex;
    gap: 8px;
}

.share-link-input {
    flex: 1;
    padding: 12px 16px;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-size: 14px;
    color: var(--text-primary);
    font-family: monospace;
}

.share-copy-btn {
    padding: 12px 20px;
    background: var(--button-bg);
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.share-copy-btn:hover {
    background: var(--button-hover);
    transform: translateY(-1px);
}

.share-qrcode-container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    min-height: 200px;
}

.share-qrcode-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: var(--text-secondary);
}

.share-qrcode-placeholder i {
    font-size: 48px;
    opacity: 0.5;
}

.share-qrcode-placeholder span {
    font-size: 14px;
}

.share-qrcode-container img {
    max-width: 200px;
    height: auto;
    border-radius: 8px;
}

/* 工具预览模态框 */

/* VIP限制提示按钮样式 */
.empty-state-button-primary {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: #fff;
    border: none;
}

.empty-state-button-primary:hover {
    background: linear-gradient(135deg, #764ba2, #667eea);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

