123456789101112131415161718192021222324 |
- /* pages/hotLive/hotLive.wxss */
- @import '../../assets/css/liveList.wxss';
- .title {
- font-size: 28rpx;
- color: #000;
- }
- .blur {
- width: 100%;
- height: 100%;
- -webkit-filter: blur(15px);
- filter: blur(15px);
- position: absolute;
- top: 0;
- left: 0;
- }
- .cover {
- width: 100%;
- height: 162rpx;
- position: absolute;
- top: 50%;
- -webkit-transform: translateY(-50%);
- transform: translateY(-50%);
- left: 0;
- }
|