1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283 |
- .blive-list {
- width: 100vw;
- box-sizing: border-box;
- }
- .list-box {
- display: flex;
- flex-wrap: wrap;
- justify-content: space-between;
- width: 662rpx;
- margin: 0 auto;
- }
- .live-item {
- width: 322rpx;
- height: 332rpx;
- border-radius: 10rpx;
- box-shadow: 0px 0px 16rpx 0px rgba(170, 170, 170, 0.3);
- margin-top: 20rpx;
- overflow: hidden;
- }
- .img {
- position: relative;
- width: 322rpx;
- height: 240rpx;
- overflow: hidden;
- }
- .img image {
- width: 100%;
- height: 100%;
- }
- .livestatus {
- display: flex;
- align-items: center;
- position: absolute;
- width: 96rpx;
- height: 32rpx;
- background: #F44093;
- border-radius: 4rpx;
- font-size: 20rpx;
- font-family: PingFangSC-Medium, PingFang SC;
- font-weight: 500;
- color: #FFFFFF;
- z-index: 999;
- bottom: 8rpx;
- left: 8rpx;
- padding-left: 4rpx;
- }
- .livestatus image {
- width: 22rpx;
- height: 20rpx;
- margin-left: 6rpx;
- }
- .explain {
- width: 100%;
- height: 34rpx;
- font-size: 24rpx;
- color: #333333;
- line-height: 34rpx;
- padding: 0 10rpx;
- box-sizing: border-box;
- }
- .brand-audience {
- width: 100%;
- display: flex;
- justify-content: space-between;
- height: 40rpx;
- line-height: 40rpx;
- padding: 0 10rpx;
- box-sizing: border-box;
- margin-top: 8rpx;
- }
- .brand {
- flex: 1;
- font-size: 28rpx;
- font-family: PingFangSC-Medium, PingFang SC;
- font-weight: 550;
- color: #000000;
- }
- .audience {
- flex-shrink: 0;
- font-size: 28rpx;
- font-family: PingFangSC-Regular, PingFang SC;
- color: #000000;
- }
|