182 lines
2.6 KiB
Plaintext
182 lines
2.6 KiB
Plaintext
|
|
.notification-page {
|
||
|
|
background-color: #f5f5f5;
|
||
|
|
min-height: 100vh;
|
||
|
|
}
|
||
|
|
|
||
|
|
/* 导航栏样式 */
|
||
|
|
.navbar {
|
||
|
|
display: flex;
|
||
|
|
justify-content: space-between;
|
||
|
|
align-items: center;
|
||
|
|
padding: 16px;
|
||
|
|
background-color: white;
|
||
|
|
border-bottom: 1px solid #eee;
|
||
|
|
}
|
||
|
|
|
||
|
|
.navbar-title {
|
||
|
|
font-size: 18px;
|
||
|
|
font-weight: 600;
|
||
|
|
color: #333;
|
||
|
|
}
|
||
|
|
|
||
|
|
.mark-read {
|
||
|
|
font-size: 14px;
|
||
|
|
color: #07c160;
|
||
|
|
}
|
||
|
|
|
||
|
|
/* 标签样式 */
|
||
|
|
.tabs {
|
||
|
|
display: flex;
|
||
|
|
background-color: white;
|
||
|
|
border-bottom: 1px solid #eee;
|
||
|
|
overflow-x: auto;
|
||
|
|
white-space: nowrap;
|
||
|
|
}
|
||
|
|
|
||
|
|
.tab-item {
|
||
|
|
display: inline-flex;
|
||
|
|
align-items: center;
|
||
|
|
padding: 14px 20px;
|
||
|
|
font-size: 15px;
|
||
|
|
color: #666;
|
||
|
|
position: relative;
|
||
|
|
}
|
||
|
|
|
||
|
|
.tab-item.active {
|
||
|
|
color: #07c160;
|
||
|
|
}
|
||
|
|
|
||
|
|
.tab-item.active::after {
|
||
|
|
content: '';
|
||
|
|
position: absolute;
|
||
|
|
bottom: 0;
|
||
|
|
left: 0;
|
||
|
|
width: 100%;
|
||
|
|
height: 2px;
|
||
|
|
background-color: #07c160;
|
||
|
|
}
|
||
|
|
|
||
|
|
.badge {
|
||
|
|
display: flex;
|
||
|
|
align-items: center;
|
||
|
|
justify-content: center;
|
||
|
|
width: 18px;
|
||
|
|
height: 18px;
|
||
|
|
border-radius: 50%;
|
||
|
|
background-color: #ff3b30;
|
||
|
|
color: white;
|
||
|
|
font-size: 12px;
|
||
|
|
margin-left: 6px;
|
||
|
|
}
|
||
|
|
|
||
|
|
/* 通知列表样式 */
|
||
|
|
.notification-list {
|
||
|
|
padding-bottom: 20px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.notification-item {
|
||
|
|
display: flex;
|
||
|
|
padding: 16px;
|
||
|
|
background-color: white;
|
||
|
|
border-bottom: 1px solid #eee;
|
||
|
|
transition: background-color 0.2s;
|
||
|
|
}
|
||
|
|
|
||
|
|
.notification-item:active {
|
||
|
|
background-color: #f9f9f9;
|
||
|
|
}
|
||
|
|
|
||
|
|
.avatar-container {
|
||
|
|
position: relative;
|
||
|
|
margin-right: 14px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.avatar {
|
||
|
|
width: 40px;
|
||
|
|
height: 40px;
|
||
|
|
border-radius: 8px;
|
||
|
|
display: flex;
|
||
|
|
align-items: center;
|
||
|
|
justify-content: center;
|
||
|
|
color: white;
|
||
|
|
font-size: 16px;
|
||
|
|
font-weight: 500;
|
||
|
|
}
|
||
|
|
|
||
|
|
.system-avatar {
|
||
|
|
background-color: #07c160;
|
||
|
|
}
|
||
|
|
|
||
|
|
.activity-avatar {
|
||
|
|
background-color: #ff9500;
|
||
|
|
}
|
||
|
|
|
||
|
|
.message-avatar {
|
||
|
|
background-color: #007aff;
|
||
|
|
}
|
||
|
|
|
||
|
|
.unread-dot {
|
||
|
|
position: absolute;
|
||
|
|
top: -2px;
|
||
|
|
right: -2px;
|
||
|
|
width: 12px;
|
||
|
|
height: 12px;
|
||
|
|
border-radius: 50%;
|
||
|
|
background-color: #ff3b30;
|
||
|
|
}
|
||
|
|
|
||
|
|
.notification-content {
|
||
|
|
flex: 1;
|
||
|
|
overflow: hidden;
|
||
|
|
}
|
||
|
|
|
||
|
|
.notification-header {
|
||
|
|
display: flex;
|
||
|
|
justify-content: space-between;
|
||
|
|
margin-bottom: 4px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.title {
|
||
|
|
font-size: 16px;
|
||
|
|
color: #333;
|
||
|
|
font-weight: 500;
|
||
|
|
max-width: 80%;
|
||
|
|
overflow: hidden;
|
||
|
|
text-overflow: ellipsis;
|
||
|
|
white-space: nowrap;
|
||
|
|
}
|
||
|
|
|
||
|
|
.time {
|
||
|
|
font-size: 12px;
|
||
|
|
color: #999;
|
||
|
|
}
|
||
|
|
|
||
|
|
.message {
|
||
|
|
font-size: 14px;
|
||
|
|
color: #666;
|
||
|
|
display: -webkit-box;
|
||
|
|
-webkit-line-clamp: 2;
|
||
|
|
-webkit-box-orient: vertical;
|
||
|
|
overflow: hidden;
|
||
|
|
line-height: 1.4;
|
||
|
|
}
|
||
|
|
|
||
|
|
/* 空状态样式 */
|
||
|
|
.empty-state {
|
||
|
|
display: flex;
|
||
|
|
flex-direction: column;
|
||
|
|
align-items: center;
|
||
|
|
justify-content: center;
|
||
|
|
padding: 60px 0;
|
||
|
|
color: #999;
|
||
|
|
}
|
||
|
|
|
||
|
|
.empty-icon {
|
||
|
|
font-size: 60px;
|
||
|
|
margin-bottom: 20px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.empty-text {
|
||
|
|
font-size: 16px;
|
||
|
|
}
|