prizeUserList.wxss 1.7 KB
page {
    background-color: #222;
}

image {
    width: 100%;
    height: 100%;
}

.container {
    display: flex;
    height: 100%;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    box-sizing: border-box;
    padding: 0;
}

.queue-list {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-content: flex-start;
    flex-wrap: wrap;
    box-sizing: border-box;
}

.queue-item {
    display: flex;
    flex-shrink: 0;
    flex-direction: row;
    align-items: center;
    width: 374rpx;
    height: 176rpx;
    border-top: 1rpx solid #222;
    background-color: #3a3a3a;
    font-size: 24rpx;
    color: #fff;
}

.queue-item:nth-child(odd) {
    margin-right: 1rpx;
}

.queue-item .head-container {
    display: flex;
    position: relative;
    align-items: center;
    justify-content: center;
    width: 156rpx;
    height: 156rpx;
}

.head-container image {
    width: 96rpx;
    height: 96rpx;
    border-radius: 50%;
    box-sizing: border-box;
}

.head-container .gift-icon {
    position: absolute;
    width: 30rpx;
    height: 30rpx;
    right: 24rpx;
    bottom: 34rpx;
    z-index: 5;
}

.gift-icon image {
    width: 100%;
    height: 100%;
    border: none;
}

.queue-item .info-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    width: 210rpx;
    height: 156rpx;
    overflow: hidden;
}

.user-rank { /* item 用户排名 */
    font-size: 36rpx;
    font-weight: bold;
    line-height: 40rpx;
}

.user-name {
    width: 100%;
    font-size: 24rpx;
    line-height: 36rpx;
    overflow: hidden;
    white-space: nowrap;
}

.info-container .user-vip-level {
    width: 40rpx;
    height: 25rpx;
}