hotProduct.wxss 518 B

123456789101112131415161718192021222324252627282930313233343536
  1. /* pages/hotProduct/hotProduct.wxss */
  2. .hotProduct{
  3. padding:0 20rpx;
  4. height: 100vh;
  5. z-index: 999;
  6. }
  7. .menuList{
  8. padding: 10rpx 0;
  9. display: flex;
  10. align-items: center;
  11. }
  12. .menu_item{
  13. margin-right: 15rpx;
  14. font-weight: bold;
  15. font-size: 35rpx !important;
  16. }
  17. .iconfont{
  18. font-weight: normal;
  19. font-size: 35rpx !important;
  20. }
  21. .green{
  22. color: #3c8e1f;
  23. }
  24. .yellow{
  25. color: #fccb42;
  26. }
  27. .red{
  28. color: #ff0000;
  29. }
  30. .main{
  31. flex: 1;
  32. overflow-y: hidden;
  33. height: calc(100vh - 220rpx);
  34. box-sizing: border-box;
  35. }