107 lines
1.7 KiB
Plaintext
107 lines
1.7 KiB
Plaintext
.header {
|
|
width: 100%;
|
|
height: 320rpx;
|
|
margin-bottom: 26rpx;
|
|
|
|
.bg {
|
|
width: 100%;
|
|
height: 100%;
|
|
}
|
|
|
|
.user {
|
|
position: absolute;
|
|
top: 185rpx;
|
|
left: 40rpx;
|
|
right: 40rpx;
|
|
width: 100%;
|
|
display: flex;
|
|
box-sizing: border-box;
|
|
|
|
.user-avatar {
|
|
width: 120rpx;
|
|
height: 120rpx;
|
|
margin-right: 30rpx;
|
|
border-radius: 24rpx;
|
|
color: #FFFFFF;
|
|
font-size: 48rpx;
|
|
font-weight: bold;
|
|
line-height: 110rpx;
|
|
text-align: center;
|
|
box-sizing: border-box;
|
|
border: 5rpx solid #ffffff;
|
|
background-color: #1385FA;
|
|
}
|
|
|
|
.user-info {
|
|
flex: 1;
|
|
display: flex;
|
|
flex-flow: column;
|
|
justify-content: center;
|
|
overflow: hidden;
|
|
|
|
.user-name {
|
|
color: #252536;
|
|
height: 40rpx;
|
|
font-weight: bold;
|
|
font-size: 40rpx;
|
|
line-height: 40rpx;
|
|
margin-bottom: 22rpx;
|
|
}
|
|
|
|
.user-meta {
|
|
height: 28rpx;
|
|
display: flex;
|
|
align-items: center;
|
|
|
|
.meta-text {
|
|
color: #77849E;
|
|
height: 28rpx;
|
|
font-size: 28rpx;
|
|
line-height: 28rpx;
|
|
}
|
|
|
|
.meta-divider {
|
|
color: #B6B6B6;
|
|
height: 28rpx;
|
|
font-size: 28rpx;
|
|
line-height: 28rpx;
|
|
margin: 0 12rpx;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
.list {
|
|
width: 100%;
|
|
padding: 0 30rpx;
|
|
box-sizing: border-box;
|
|
|
|
.list-item {
|
|
width: 100%;
|
|
height: 110rpx;
|
|
display: flex;
|
|
padding-left: 30rpx;
|
|
padding-right: 20rpx;
|
|
box-sizing: border-box;
|
|
align-items: center;
|
|
flex-wrap: nowrap;
|
|
border-radius: 16rpx;
|
|
background-color: #ffffff;
|
|
|
|
>view:nth-of-type(1) {
|
|
width: 38rpx;
|
|
height: 38rpx;
|
|
margin-right: 22rpx;
|
|
}
|
|
|
|
>view:nth-of-type(2) {
|
|
flex: 1;
|
|
height: 30rpx;
|
|
color: #394356;
|
|
font-weight: bold;
|
|
font-size: 30rpx;
|
|
line-height: 30rpx;
|
|
}
|
|
}
|
|
} |