classify.less 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. page{
  2. background: #F7F7F7;
  3. }
  4. .cate_container{
  5. display: flex;
  6. min-height: 900rpx;
  7. .left_menu{
  8. width: 210rpx;
  9. //隐藏滚动条
  10. ::-webkit-scrollbar {
  11. width:0;
  12. height:0;
  13. color:transparent;
  14. }
  15. .left_content{
  16. background: #FFFFFF;
  17. .left_item{
  18. font-size: 30rpx;
  19. font-weight: 600;
  20. height: 80rpx;
  21. display: flex;
  22. align-items: center;
  23. justify-content: center;
  24. }
  25. .active{
  26. background: #41B1FF;
  27. color: #FFFFFF;
  28. font-size: 30rpx;
  29. }
  30. }
  31. }
  32. .right_menu{
  33. ::-webkit-scrollbar {
  34. width:0;
  35. height:0;
  36. color:transparent;
  37. }
  38. .right_content{
  39. display: flex;
  40. flex-wrap: wrap;
  41. .right_item{
  42. margin: 20rpx 0 0 35rpx;
  43. .image{
  44. width: 150rpx;
  45. height: 150rpx;
  46. border-radius: 12rpx;
  47. }
  48. .name{
  49. font-size: 24rpx;
  50. text-align: center;
  51. }
  52. }
  53. }
  54. }
  55. }