68 lines
1.2 KiB
Plaintext
68 lines
1.2 KiB
Plaintext
/* packageH/newDraw/winnersList/winnersList.wxss */
|
|
#winners_list {
|
|
background: #fff;
|
|
}
|
|
|
|
#winners_list .title {
|
|
height: 76rpx;
|
|
line-height: 76rpx;
|
|
display: flex;
|
|
justify-content: space-between;
|
|
background: #f2f2f2;
|
|
padding: 0 28rpx;
|
|
}
|
|
|
|
#winners_list .list {
|
|
padding: 0 28rpx;
|
|
background: #fff;
|
|
}
|
|
|
|
#winners_list .list .list-child {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
padding: 32rpx 0;
|
|
text-align: left;
|
|
}
|
|
|
|
#winners_list .list .list-child .member {
|
|
display: flex;
|
|
align-items: center;
|
|
font-size: 16px;
|
|
color: #000;
|
|
font-weight: 700;
|
|
flex: 1;
|
|
overflow: hidden;
|
|
}
|
|
|
|
#winners_list .list .list-child .member image {
|
|
width: 72rpx;
|
|
height: 72rpx;
|
|
border-radius: 50%;
|
|
overflow: hidden;
|
|
margin: 0;
|
|
margin-right: 28rpx;
|
|
flex-shrink: 0;
|
|
object-fit: contain;
|
|
background-color: #fac337;
|
|
}
|
|
|
|
#winners_list .list .list-child .member .name {
|
|
overflow: hidden;
|
|
|
|
/* 超出部分隐藏 */
|
|
text-overflow: ellipsis;
|
|
|
|
/* 超出部分显示省略号 */
|
|
white-space: nowrap;
|
|
|
|
/* 规定段落中的文本不进行换行 */
|
|
}
|
|
|
|
#winners_list .list .list-child .good-img {
|
|
width: 92rpx;
|
|
height: 92rpx;
|
|
border-radius: 12rpx;
|
|
object-fit: contain;
|
|
background-color: #fac337;
|
|
}
|