<!-- 首页 -->
<svg viewBox="0 0 24 24" width="20" height="20"><path fill="currentColor" d="M10 20v-6h4v6h5v-8h3L12 3 2 12h3v8z"/></svg>

<!-- 搜索 -->
<svg viewBox="0 0 24 24" width="20" height="20"><path fill="currentColor" d="M15.5 14h-.79l-.28-.27A6.47 6.47 0 0016 9.5 6.5 6.5 0 109.5 16c1.61 0 3.09-.59 4.23-1.57l.27.28v.79l5 4.99L20.49 19l-4.99-5zm-6 0C7.01 14 5 11.99 5 9.5S7.01 5 9.5 5 14 7.01 14 9.5 11.99 14 9.5 14z"/></svg>

<!-- 菜单 -->
<svg viewBox="0 0 24 24" width="20" height="20"><path fill="currentColor" d="M3 18h18v-2H3v2zm0-5h18v-2H3v2zm0-7v2h18V6H3z"/></svg>

<!-- 关闭 -->
<svg viewBox="0 0 24 24" width="20" height="20"><path fill="currentColor" d="M19 6.41L17.59 5 12 10.59 6.41 5 5 6.41 10.59 12 5 17.59 6.41 19 12 13.41 17.59 19 19 17.59 13.41 12z"/></svg>

<!-- 返回顶部 -->
<svg viewBox="0 0 24 24" width="20" height="20"><path fill="currentColor" d="M7.41 15.41L12 10.83l4.59 4.58L18 14l-6-6-6 6z"/></svg>#bell-mmwd-widget {
}

.bell-mmwd-header h3 {
    margin: 0;
    font-size: 1rem;
    font-weight: 600;
}

.bell-mmwd-content {
    padding: 1.25rem;
}

.bell-mmwd-image-container {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    background: var(--bg-secondary, #f5f5f5);
}

.bell-mmwd-image-container img {
    width: 100%;
    height: auto;
    object-fit: contain;
    cursor: pointer;
    transition: transform 0.3s ease;
    display: block;
}

.bell-mmwd-image-container img:hover {
    transform: scale(1.05);
}

.bell-mmwd-hint {
    font-size: 12px;
    color: var(--text-secondary, #6c757d);
    text-align: center;
    margin-top: 10px;
}

@keyframes smileFloat {
    0% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
    100% {
        opacity: 0;
        transform: translateY(-100px) scale(1.5);
    }
}

.bell-mmwd-smile {
    position: fixed;
    font-size: 40px;
    pointer-events: none;
    z-index: 999999;
    animation: smileFloat 1s ease-out forwards;
}
