123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869 |
- .tabs_box {
- display: flex;
- align-items: flex-end;
- justify-content: space-between;
- width: 100vw;
- height: 100rpx;
- background: #FFFFFF;
- }
- .tbas_list {
- display: flex;
- font-size: 28rpx;
- margin-left: 44rpx;
- }
- .tbas_list>view {
- margin-left: 32rpx;
- line-height: 32rpx;
- height: 60rpx;
- }
- .tbas_list>view:first-child {
- margin-left: 0;
- }
- .active {
- position: relative;
- font-size: 32rpx;
- font-weight: 600;
- color: #4BBECF;
- }
- .active::before {
- position: absolute;
- content: '';
- display: block;
- width: 60rpx;
- height: 6rpx;
- background: #4DC2D4;
- border-radius: 3rpx;
- bottom: 0;
- left: 50%;
- transform: translate(-50%, 0);
- }
- /* 下载直播客户端 */
- .live-download {
- font-size: 20rpx;
- height: 60rpx;
- line-height: 32rpx;
- color: #4CBECF;
- margin-right: 22rpx;
- }
- .inform {
- display: flex;
- align-items: center;
- justify-content: center;
- color: #FFFFFF;
- position: fixed;
- font-size: 28rpx;
- width: 100vw;
- height: 80rpx;
- background-color: #ce192e;
- top: 0;
- left: 0;
- border-radius: 0 0 30rpx 30rpx;
- opacity: 0.95;
- }
|