CreatorCenter_OOIN/src/styles/DatabaseList.scss

163 lines
3.5 KiB
SCSS
Raw Normal View History

2025-05-15 10:42:39 +08:00
// @import './custom-theme.scss';
// 导入变量
@import './variables';
2025-05-09 10:18:49 +08:00
2025-05-23 08:53:43 +08:00
.database-page {
height: 100%;
position: relative;
}
.private-creator-page {
height: 100%;
position: relative;
}
2025-05-09 10:18:49 +08:00
.creator-database-table {
2025-05-23 08:53:43 +08:00
position: relative;
2025-05-12 08:30:02 +08:00
.creator-cell {
.creator-avatar {
position: relative;
margin-right: 12px;
2025-05-23 08:53:43 +08:00
flex-shrink: 0;
2025-05-12 08:30:02 +08:00
img {
2025-05-23 08:53:43 +08:00
display: block;
width: 36px;
height: 36px;
2025-05-12 08:30:02 +08:00
border-radius: 50%;
object-fit: cover;
border: 2px solid #e2e8f0;
}
.verified-badge {
position: absolute;
bottom: 0;
right: 0;
background-color: #10b981;
color: white;
border-radius: 50%;
width: 10px;
height: 10px;
font-size: 8px;
display: flex;
align-items: center;
justify-content: center;
}
}
.creator-name {
2025-05-16 09:22:08 +08:00
font-weight: 700;
2025-05-23 08:53:43 +08:00
color: #090909;
white-space: nowrap;
2025-05-12 08:30:02 +08:00
}
2025-05-09 10:18:49 +08:00
}
2025-05-12 08:30:02 +08:00
.category-pill {
display: inline-block;
padding: 0.25rem 0.75rem;
border-radius: 1rem;
background-color: #f8f9fa;
font-size: 0.75rem;
color: #495057;
white-space: nowrap;
&.phones {
background-color: rgba(99, 102, 241, 0.1);
color: #6366f1;
}
&.women {
background-color: rgba(244, 114, 182, 0.1);
color: #f472b6;
}
&.sports {
background-color: rgba(52, 211, 153, 0.1);
color: #34d399;
}
&.food {
background-color: rgba(251, 146, 60, 0.1);
color: #fb923c;
}
&.health {
background-color: rgba(56, 189, 248, 0.1);
color: #38bdf8;
}
&.kitchen {
background-color: rgba(168, 85, 247, 0.1);
color: #a855f7;
}
2025-05-09 10:18:49 +08:00
}
2025-05-12 08:30:02 +08:00
.level-badge {
display: inline-block;
padding: 0.25rem 0.75rem;
border-radius: 1rem;
font-size: 0.75rem;
white-space: nowrap;
&.ecommerce-level {
background-color: rgba(99, 102, 241, 0.1);
color: #6366f1;
}
&.exposure-level {
background-color: rgba(14, 165, 233, 0.1);
color: #0ea5e9;
&[data-level^='KOC'] {
background-color: rgba(52, 211, 153, 0.1);
color: #34d399;
}
&[data-level^='KOL'] {
background-color: rgba(251, 113, 133, 0.1);
color: #fb7185;
}
2025-05-09 10:18:49 +08:00
}
}
2025-05-12 08:30:02 +08:00
.colored-dot {
width: 8px;
height: 8px;
2025-05-09 10:18:49 +08:00
border-radius: 50%;
2025-05-12 08:30:02 +08:00
display: inline-block;
&.blue {
background-color: #6366f1;
}
}
.social-icon {
width: 24px;
height: 24px;
2025-05-09 10:18:49 +08:00
display: flex;
align-items: center;
justify-content: center;
2025-05-12 08:30:02 +08:00
&.tiktok-icon {
font-size: 14px;
color: #000000;
}
2025-05-09 10:18:49 +08:00
}
2025-05-23 08:53:43 +08:00
.table-container {
position: relative;
.sticky-header {
position: sticky;
top: 0;
z-index: 1;
background: white;
th {
background: white;
border-bottom: 2px solid #dee2e6;
}
}
}
2025-05-12 08:30:02 +08:00
}