<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "utf-8";
/* 최근 본 업체 스타일 - 깔끔한 플로팅 디자인 */

/* 기본 스타일 */
#recent_view_popup {
    position: absolute;
    top: 110px;
    z-index: 13;
    display: none;
}

.rv_container {
    width: 320px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

/* 헤더 영역 */
.rv_header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    background: #fff;
}

.rv_header h3 {
    font-size: 15px;
    font-weight: 600;
    color: #333;
    margin: 0;
    letter-spacing: -0.5px;
}

#rv_close {
    width: 26px;
    height: 26px;
    border: none;
    background: transparent;
    color: #999;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s ease;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

#rv_close:hover {
    background: rgba(232, 62, 140, 0.1);
    color: #1E90FF;
}

/* 컨텐츠 영역 */
.rv_content {
    flex: 1;
    overflow-y: auto;
    padding: 0;
    max-height: 350px;
}

.rv_list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.rv_item_link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.rv_item {
    display: none;
    position: relative;
    padding: 12px 15px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
    transition: all 0.2s ease;
	align-items:flex-start !important;
}

.rv_item:last-child {
    border-bottom: none;
}

.rv_item:hover {
    background: rgba(232, 62, 140, 0.03);
}

.rv_num {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, #1E90FF 0%, #6495ED 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.rv_num span {
    color: #fff;
    font-size: 11px;
    font-weight: 500;
}

.rv_info {
    margin-left: 30px;
}

.rv_company {
    font-size: 13px;
    font-weight: 600;
    color: #333;
    margin-bottom: 3px;
}

.rv_title {
    font-size: 12px;
    color: #666;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* 페이지네이션 */
.rv_pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 0;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    background: #f9f9f9;
}

.rv_pagination button {
    width: 26px;
    height: 26px;
    background: transparent;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #666;
    transition: all 0.2s ease;
}

.rv_pagination button:hover {
    background: rgba(232, 62, 140, 0.1);
    color: #1E90FF;
    border-color: rgba(232, 62, 140, 0.2);
}

#rv_page {
    margin: 0 12px;
    font-size: 12px;
    color: #666;
}

/* 빈 상태 */
.rv_empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 30px 20px;
    color: #999;
    text-align: center;
}

.rv_empty i {
    font-size: 28px;
    margin-bottom: 10px;
    color: rgba(159, 122, 234, 0.3);
}

.rv_empty p {
    font-size: 13px;
    margin: 0;
}

/* 반응형 */
@media (max-width: 768px) {
    #recent_view_popup {
        right: 15px;
        top: 120px;
    }
    
    .rv_container {
        width: 280px;
    }
}

/* 버튼 스타일 보존 */
#stv_open {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 8px 15px;
    margin: 0;
    background: #fff;
    border-radius: 8px;
    transition: all 0.2s ease;
    cursor: pointer;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
    border: 1px solid rgba(0,0,0,0.05);
    float: none;
    color: #333;
}

#stv_open:hover {
    box-shadow: 0 3px 6px rgba(0,0,0,0.08);
    transform: translateY(-2px);
}

.icon_wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    margin-bottom: 5px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(112, 169, 255, 0.1) 0%, rgba(159, 122, 234, 0.1) 100%);
    color: #1E90FF;
    font-size: 16px;
    transition: all 0.2s ease;
}

#stv_open:hover .icon_wrap {
    background: linear-gradient(135deg, rgba(112, 169, 255, 0.2) 0%, rgba(159, 122, 234, 0.2) 100%);
    transform: scale(1.04);
}

.badge_count {
    position: absolute;
    top: 5px;
    right: 5px;
    min-width: 18px;
    height: 18px;
    padding: 0 5px;
    border-radius: 9px;
    background: linear-gradient(135deg, #1E90FF 0%, #6495ED 100%);
    color: white;
    font-size: 10px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 4px rgba(232, 62, 140, 0.3);
}</pre></body></html>