42 lines
641 B
Plaintext
42 lines
641 B
Plaintext
/* packageI/newMedia/components/fansItem/fansItem.wxss */
|
|
|
|
.item {
|
|
display: flex;
|
|
align-items: center;
|
|
width: 100%;
|
|
height: 120rpx;
|
|
padding: 0 24rpx;
|
|
margin-bottom: 20rpx;
|
|
background-color: #fff;
|
|
border-radius: 10rpx;
|
|
}
|
|
|
|
.item .face {
|
|
width: 60rpx;
|
|
height: 60rpx;
|
|
}
|
|
|
|
.item .face image {
|
|
width: 60rpx;
|
|
height: 60rpx;
|
|
border-radius: 50%;
|
|
}
|
|
|
|
.item .name {
|
|
flex: 1;
|
|
padding-left: 18rpx;
|
|
font-size: 30rpx;
|
|
color: #3d3d3d;
|
|
}
|
|
|
|
.item .cancel-btn {
|
|
display: flex;
|
|
align-items: center;
|
|
height: 46rpx;
|
|
padding: 0 17rpx;
|
|
color: #fff;
|
|
font-size: 22rpx;
|
|
background-color: #f4a00e;
|
|
border-radius: 23rpx;
|
|
}
|