| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475 |
- .group-box {
- display: flex;
- align-items: center;
- width: 100%;
- height: 60rpx;
- .label {
- height: 34rpx;
- font-size: 24rpx;
- font-family: PingFang SC-Regular, PingFang SC;
- color: #666666;
- flex-shrink: 0;
- }
- .list {
- display: flex;
- overflow: hidden;
- max-width: 100%;
- .item {
- position: relative;
- width: 64rpx;
- height: 64rpx;
- flex-shrink: 0;
- margin-right: 8rpx;
- >view {
- width: 100%;
- height: 100%;
- text-align: center;
- line-height: 64rpx;
- background-color: #3874F6;
- font-size: 28rpx;
- font-family: PingFang SC-Regular, PingFang SC;
- color: #FFFFFF;
- border-radius: 50%;
- }
- >image {
- width: 100%;
- height: 100%;
- border-radius: 50%;
- }
- .iconfont {
- position: absolute;
- color: #F5D400;
- bottom: 0;
- right: 0;
- font-size: 26rpx;
- }
- }
- }
- .right {
- display: flex;
- align-items: center;
- justify-content: center;
- flex-shrink: 0;
- width: 60rpx;
- height: 64rpx;
- border-radius: 32rpx;
- >view {
- display: flex;
- align-items: center;
- justify-content: center;
- width: 32rpx;
- height: 32rpx;
- border-radius: 50%;
- background: #E7EEFF;
- color: #3874F6;
- }
- }
- }
|