大数据平台的小程序版本

index.wxss 906B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. /* pages/liveDetail/index.wxss */
  2. @import '../../assets/css/commonDetail.wxss';
  3. .liveDetail {
  4. box-sizing: border-box;
  5. padding: 20rpx 0;
  6. background: #f7f7f7;
  7. }
  8. .item {
  9. background: #fff;
  10. padding: 20rpx;
  11. display:flex;
  12. align-items:center;
  13. justify-content:space-between;
  14. }
  15. .cate {
  16. width: auto;
  17. overflow: hidden;
  18. text-overflow: ellipsis;
  19. white-space: nowrap;
  20. display: inline-block;
  21. font-size: 20rpx;
  22. color: #585858;
  23. padding: 1px 20rpx;
  24. line-height: 38rpx;
  25. background: #f1f4fb;
  26. border-radius: 8rpx;
  27. margin-right: 8rpx;
  28. -webkit-transform: scale(.9);
  29. transform: scale(.9);
  30. }
  31. .topName {
  32. display: inline-block;
  33. font-size: 26rpx;
  34. line-height: 60rpx;
  35. font-weight: 700;
  36. margin-bottom: -40rpx;
  37. }
  38. .topName::before {
  39. content: "";
  40. width: 22rpx;
  41. height: 22rpx;
  42. background: #2296f3;
  43. display: inline-block;
  44. margin-right: 20rpx;
  45. }
  46. .canvas {
  47. background: #fff;
  48. }