index.wxss 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  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. }
  48. .inform {
  49. display: flex;
  50. align-items: center;
  51. justify-content: center;
  52. color: #FFFFFF;
  53. position: fixed;
  54. font-size: 28rpx;
  55. width: 100vw;
  56. height: 80rpx;
  57. background-color: #ce192e;
  58. top: 0;
  59. left: 0;
  60. border-radius: 0 0 30rpx 30rpx;
  61. opacity: 0.95;
  62. }