83 lines
1.1 KiB
Plaintext
83 lines
1.1 KiB
Plaintext
.container {
|
|
width: 100%;
|
|
height: 100%;
|
|
display: flex;
|
|
flex-direction: column;
|
|
padding: 20rpx;
|
|
overflow-x: hidden;
|
|
box-sizing: border-box;
|
|
background-color: #fff;
|
|
}
|
|
|
|
.btn-wrapper {
|
|
width: 100%;
|
|
padding: 0 20rpx;
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
.btn {
|
|
font-size: 24rpx;
|
|
width: 100%;
|
|
}
|
|
|
|
.people-wrapper {
|
|
width: 100%;
|
|
margin-top: 10rpx;
|
|
margin-bottom: 100rpx;
|
|
}
|
|
|
|
.scrollview {
|
|
width: 100%;
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
|
|
.item {
|
|
width: 100%;
|
|
display: flex;
|
|
flex-direction: row;
|
|
align-items: center;
|
|
padding: 30rpx 0;
|
|
margin: 0 20rpx;
|
|
border-bottom: 1rpx solid rgba(7, 17, 27, 0.1);
|
|
}
|
|
|
|
.item-content {
|
|
width: 100%;
|
|
display: flex;
|
|
flex-direction: row;
|
|
align-items: center;
|
|
margin-left: 20rpx;
|
|
}
|
|
|
|
.itemtext {
|
|
font-size: 36rpx;
|
|
color: #333;
|
|
margin-left: 20rpx;
|
|
text-align: center;
|
|
}
|
|
|
|
.img {
|
|
width: 50rpx;
|
|
height: 40rpx;
|
|
}
|
|
|
|
.avatar {
|
|
width: 50rpx;
|
|
height: 50rpx;
|
|
}
|
|
|
|
.footer {
|
|
position: fixed;
|
|
left: 0;
|
|
bottom: 0;
|
|
width: 100%;
|
|
}
|
|
|
|
.no-data {
|
|
width: 100%;
|
|
font-size: 32rpx;
|
|
text-align: center;
|
|
padding: 40rpx 0;
|
|
}
|