36 lines
540 B
Plaintext
36 lines
540 B
Plaintext
|
|
.account-list {
|
|
background-color: #FFFFFF;
|
|
padding: 0 32rpx;
|
|
}
|
|
.account-item {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
padding: 32rpx 0;
|
|
border-bottom: 1rpx solid rgba(0, 0, 0, 0.05);
|
|
}
|
|
.account-item:last-child {
|
|
border-bottom: none;
|
|
}
|
|
.account-info {
|
|
display: flex;
|
|
align-items: center;
|
|
}
|
|
.account-icon {
|
|
width: 64rpx;
|
|
height: 64rpx;
|
|
margin-right: 16rpx;
|
|
}
|
|
.account-name {
|
|
font-size: 24rpx;
|
|
color: #333333;
|
|
font-weight: 500;
|
|
}
|
|
.arrow-icon {
|
|
width: 32rpx;
|
|
height: 32rpx;
|
|
}
|
|
|
|
|