classification.wxss 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. /* pages/classification/classification.wxss */
  2. .ification{
  3. width: 100%;
  4. height: 100%;
  5. background-color: rgb(243, 244, 246);
  6. display: flex;
  7. justify-content: start;
  8. }
  9. .scroll-left{
  10. width: 25%;
  11. padding-top: 55rpx;
  12. overflow: hidden;
  13. }
  14. .leftTitle{
  15. font-size: 28rpx;
  16. height: 130rpx;
  17. }
  18. .scroll-right{
  19. width: 75%;
  20. }
  21. .active{
  22. color: orange;
  23. }
  24. .contentScroll-item{
  25. width: auto;
  26. height: auto;
  27. margin-bottom: 20rpx;
  28. }
  29. .top{
  30. width: 100%;
  31. height: 40rpx;
  32. padding: 20rpx 0rpx;
  33. margin: 0rpx auto;
  34. }
  35. .contentTitle{
  36. color: rgb(12, 11, 11);
  37. font-size: 30rpx;
  38. text-align: center;
  39. margin: 0rpx auto;
  40. }
  41. .content{
  42. width: 100%;
  43. height: 140rpx;
  44. padding: 30rpx 0rpx;
  45. display: flex;
  46. flex-direction: row;
  47. flex-wrap: wrap;
  48. align-content: space-around;
  49. justify-content: space-between;
  50. background-color: #fff;
  51. border-top-left-radius: 7rpx;
  52. border-bottom-left-radius: 7rpx;
  53. }
  54. .contentText{
  55. width: 130rpx;
  56. height: 50rpx;
  57. margin: 10rpx 20rpx;
  58. font-size: 30rpx;
  59. text-align: center;
  60. }