@charset "UTF-8";

.quick-menu {
    position: fixed;

    top: 232px;
    left: 20px;

    width: 130px;
    padding: 15px 10px;

    border: 1px solid #e5e7eb;
    border-radius: 16px;

    background: #ffffff;

    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);

    text-align: center;

    z-index: 9999;

    box-sizing: border-box;

    transition: top 0.12s ease;
}


.quick-title {
    margin-bottom: 12px;
    padding-bottom: 8px;

    border-bottom: 2px solid #e0f2fe;

    color: #0284c7;

    font-size: 13px;
    font-weight: 900;
}


.quick-list {
    margin: 0 0 12px;
    padding: 0;

    list-style: none;
}

.quick-list.recent-list {
    margin: 0;
}

.quick-list li {
    margin-bottom: 10px;
}

.quick-list a {
    display: block;

    padding: 4px;

    border-radius: 6px;

    color: #4b5563;

    font-size: 12px;
    font-weight: 700;

    text-decoration: none;

    transition: color 0.2s ease,
    background-color 0.2s ease;
}

.quick-list a:hover {
    background: #f1f5f9;
    color: #0ea5e9;
}

.quick-recent-box {
    margin-top: 15px;
    padding-top: 15px;

    border-top: 1px dashed #e2e8f0;
}

.quick-recent-title {
    margin-bottom: 8px;

    color: #94a3b8;

    font-size: 11px;
    font-weight: 800;
}

.quick-recent-item {
    display: block;

    margin-bottom: 8px;

    text-decoration: none;
}

.quick-recent-item img {
    display: block;

    width: 100%;
    height: 60px;

    border: 1px solid #e2e8f0;
    border-radius: 8px;

    object-fit: cover;
}

.quick-recent-item span {
    display: block;

    margin-top: 4px;

    overflow: hidden;

    color: #334155;

    font-size: 11px;
    font-weight: 700;

    text-overflow: ellipsis;
    white-space: nowrap;
}

.quick-recent-empty {
    padding: 10px 0;

    color: #94a3b8;

    font-size: 11px;
}

.quick-recent-no-img {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 100%;
    height: 60px;

    border-radius: 8px;

    background: #e0f2fe;
    color: #0284c7;

    font-size: 10px;
    font-weight: 700;
}


.btn-top {
    width: 100%;
    height: 32px;

    margin-top: 10px;

    border: 0;
    border-radius: 8px;

    background: #334155;
    color: #ffffff;

    font-size: 12px;
    font-weight: 800;

    cursor: pointer;

    transition: background-color 0.2s ease;
}

.btn-top:hover {
    background: #0f172a;
}


@media (max-width: 768px) {
    .quick-menu {
        display: none;
    }
}