Files
ai_wht_wechat/figma_html_page/css/profile.css

118 lines
1.8 KiB
CSS
Raw Normal View History

2026-01-06 19:36:42 +08:00
.profile-content {
padding: 16px;
padding-top: 24px;
}
.user-info {
display: flex;
align-items: center;
gap: 12px;
margin-bottom: 24px;
}
.user-info .avatar {
width: 48px;
height: 48px;
border-radius: 50%;
background: #F5F5F5;
display: flex;
align-items: center;
justify-content: center;
overflow: hidden;
}
.user-info .avatar img {
width: 100%;
height: 100%;
object-fit: cover;
}
.user-info .user-name {
font-size: 18px;
font-weight: 600;
color: #333;
}
.user-info .user-company {
font-size: 13px;
color: #999;
margin-top: 4px;
}
.account-row {
display: flex;
align-items: center;
justify-content: space-between;
padding: 16px 0;
border-bottom: 1px solid #F0F0F0;
cursor: pointer;
margin-bottom: 24px;
}
.row-label {
font-size: 16px;
color: #333;
}
.row-right {
display: flex;
align-items: center;
gap: 8px;
}
.row-value {
font-size: 15px;
color: #999;
}
.section-title {
font-size: 14px;
color: #999;
margin-bottom: 16px;
}
.empty-records {
display: flex;
align-items: center;
justify-content: center;
height: 300px;
color: #999;
font-size: 15px;
}
.records-grid {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 12px;
}
.record-card {
border-radius: 8px;
overflow: hidden;
}
.record-image {
width: 100%;
aspect-ratio: 1;
background: #F5F5F5;
}
.record-image img {
width: 100%;
height: 100%;
object-fit: cover;
}
.record-title {
font-size: 13px;
color: #333;
line-height: 1.4;
margin-top: 8px;
overflow: hidden;
text-overflow: ellipsis;
display: -webkit-box;
-webkit-line-clamp: 2;
line-clamp: 2;
-webkit-box-orient: vertical;
}