119 lines
2.1 KiB
CSS
119 lines
2.1 KiB
CSS
.header {
|
|
position: fixed;
|
|
top: 0;
|
|
left: 0;
|
|
height: 45px;
|
|
width: 100%;
|
|
z-index: 999;
|
|
display: flex;
|
|
align-items: center;
|
|
padding-left: 12.5px;
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
.header img {
|
|
width: 9.5px;
|
|
height: 17px;
|
|
}
|
|
|
|
.content {
|
|
margin-top: 45px;
|
|
}
|
|
.content .user {
|
|
display: flex;
|
|
padding-left: 12px;
|
|
padding-top: 20px;
|
|
padding-bottom: 21px;
|
|
}
|
|
.content .user .user_img {
|
|
width: 60px;
|
|
height: 60px;
|
|
margin-right: 19.5px;
|
|
}
|
|
.content .user .user_right {}
|
|
.content .user .user_right .name{
|
|
display: flex;
|
|
align-items: center;
|
|
margin-bottom: 8px;
|
|
}
|
|
.content .user .user_right .name .text{
|
|
font-family: PingFang-SC-Bold;
|
|
font-size: 18px;
|
|
color: #000000;
|
|
margin-right: 5px;
|
|
line-height: 17px;
|
|
}
|
|
.content .user .user_right .name img{
|
|
width: 13.5px;
|
|
height: 13.5px;
|
|
}
|
|
|
|
.content .user .user_right .nickname,
|
|
.content .user .user_right .id,
|
|
.content .user .user_right .addresss{
|
|
font-family: PingFang-SC-Medium;
|
|
font-size: 13px;
|
|
color: #868686;
|
|
}
|
|
.content .user .user_right .id{
|
|
margin: 3px 0;
|
|
}
|
|
.content .user .user_right .addresss{}
|
|
|
|
|
|
.user_info {
|
|
margin-top: 8.5px;
|
|
padding-left: 11px;
|
|
padding-bottom: 12px;
|
|
}
|
|
.user_info li {
|
|
height: 43.5px;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
padding-right: 12.5px;
|
|
border-bottom: 0.5px solid rgb(220 220 220 / 60%);
|
|
}
|
|
.user_info li:last-child {
|
|
border-bottom: none;
|
|
}
|
|
.user_info li .tips{
|
|
font-family: PingFangSC-Regular;
|
|
font-size: 16px;
|
|
color: #000000;
|
|
width: 64px;
|
|
margin-right: 16px;
|
|
}
|
|
.user_info li .text{
|
|
font-family: PingFang-SC-Medium;
|
|
font-size: 16px;
|
|
color: #868686;
|
|
flex: 1;
|
|
}
|
|
.user_info li img{
|
|
width: 7px;
|
|
height: 12px;
|
|
}
|
|
|
|
.action {
|
|
margin-top: 8.5px;
|
|
}
|
|
.action li {
|
|
height: 50.5px;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
}
|
|
.action li:first-child {
|
|
border-bottom: 0.5px solid rgb(220 220 220 / 60%);
|
|
}
|
|
.action li img{
|
|
width: 18px;
|
|
height: 17px;
|
|
margin-right: 7.5px;
|
|
}
|
|
.action li span{
|
|
font-family: PingFang-SC-Bold;
|
|
font-size: 16px;
|
|
color: #5a6f92;
|
|
} |