ai-c/pages/team/team.wxss
2026-02-02 18:21:32 +08:00

176 lines
2.6 KiB
Plaintext

.page {
min-height: 100vh;
background: #F8F9FC;
}
.wrap {
padding: 30rpx 32rpx;
}
/* Guardian Card */
.guardian-card {
background: linear-gradient(135deg, #CF91D3 0%, #B06AB3 100%);
border-radius: 48rpx;
padding: 40rpx;
color: #ffffff;
box-shadow: 0 20rpx 40rpx rgba(176, 106, 179, 0.25);
margin-bottom: 48rpx;
position: relative;
overflow: hidden;
}
.guardian-card::after {
content: "";
position: absolute;
top: -20rpx;
right: -20rpx;
width: 200rpx;
height: 200rpx;
background: rgba(255, 255, 255, 0.1);
border-radius: 50%;
filter: blur(40rpx);
}
.guardian-header {
display: flex;
align-items: center;
gap: 20rpx;
margin-bottom: 50rpx;
}
.icon-box {
width: 80rpx;
height: 80rpx;
background: rgba(255, 255, 255, 0.2);
border-radius: 24rpx;
display: flex;
align-items: center;
justify-content: center;
backdrop-filter: blur(10rpx);
}
.guardian-title {
font-size: 36rpx;
font-weight: 800;
letter-spacing: 2rpx;
}
.stats-row {
display: flex;
justify-content: space-between;
padding: 0 20rpx;
}
.stat-col {
display: flex;
flex-direction: column;
}
.stat-label {
font-size: 26rpx;
color: rgba(255, 255, 255, 0.85);
margin-bottom: 16rpx;
font-weight: 500;
}
.stat-num {
font-size: 64rpx;
font-weight: 900;
line-height: 1;
}
/* Section Header */
.section-header {
display: flex;
align-items: center;
justify-content: space-between;
margin-bottom: 30rpx;
padding: 0 10rpx;
}
.header-left {
display: flex;
align-items: center;
gap: 16rpx;
}
.header-title {
font-size: 34rpx;
font-weight: 800;
color: #1F2937;
}
/* Member List */
.member-list {
display: flex;
flex-direction: column;
gap: 24rpx;
}
.member-card {
background: #ffffff;
border-radius: 32rpx;
padding: 30rpx;
display: flex;
align-items: center;
gap: 24rpx;
box-shadow: 0 4rpx 12rpx rgba(0, 0, 0, 0.02);
border: 2rpx solid transparent;
transition: all 0.2s;
}
.member-card:active {
transform: scale(0.98);
}
.member-avatar {
width: 96rpx;
height: 96rpx;
border-radius: 50%;
background: #f3f4f6;
border: 4rpx solid #FDF4F9;
}
.member-info {
flex: 1;
min-width: 0;
}
.name-row {
display: flex;
align-items: center;
gap: 16rpx;
margin-bottom: 8rpx;
}
.member-name {
font-size: 32rpx;
font-weight: 800;
color: #111827;
}
.tag-badge {
background: #B06AB3;
color: #ffffff;
font-size: 20rpx;
font-weight: 700;
padding: 4rpx 12rpx;
border-radius: 999rpx;
}
.member-meta {
font-size: 24rpx;
color: #6B7280;
font-weight: 500;
}
.loading,
.empty {
text-align: center;
color: #9ca3af;
font-weight: 800;
padding: 100rpx 0;
font-size: 28rpx;
}