index.wxss 872 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. .tabs_box {
  2. display: flex;
  3. align-items: flex-end;
  4. justify-content: space-between;
  5. width: 100vw;
  6. height: 100rpx;
  7. background: #FFFFFF;
  8. }
  9. .tbas_list {
  10. display: flex;
  11. font-size: 28rpx;
  12. margin-left: 44rpx;
  13. }
  14. .tbas_list>view {
  15. margin-left: 32rpx;
  16. line-height: 32rpx;
  17. height: 60rpx;
  18. }
  19. .tbas_list>view:first-child {
  20. margin-left: 0;
  21. }
  22. .active {
  23. position: relative;
  24. font-size: 32rpx;
  25. font-weight: 600;
  26. color: #4BBECF;
  27. }
  28. .active::before {
  29. position: absolute;
  30. content: '';
  31. display: block;
  32. width: 60rpx;
  33. height: 6rpx;
  34. background: #4DC2D4;
  35. border-radius: 3rpx;
  36. bottom: 0;
  37. left: 50%;
  38. transform: translate(-50%, 0);
  39. }
  40. /* 下载直播客户端 */
  41. .live-download {
  42. font-size: 20rpx;
  43. height: 60rpx;
  44. line-height: 32rpx;
  45. color: #4CBECF;
  46. margin-right: 22rpx;
  47. }