classification.wxss 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  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: 22%;
  11. padding-top: 55rpx;
  12. margin-right: 20rpx;
  13. background-color: #fff;
  14. overflow: hidden;
  15. }
  16. .leftTitle{
  17. text-align: center;
  18. font-size: 28rpx;
  19. height: 100rpx;
  20. line-height: 100rpx;
  21. }
  22. .scroll-right{
  23. width: 75%;
  24. }
  25. .active{
  26. color: #ff520f;
  27. background-color: rgb(243, 244, 246);
  28. }
  29. .contentScroll-item{
  30. width: auto;
  31. height: auto;
  32. margin-bottom: 20rpx;
  33. }
  34. .top{
  35. width: 100%;
  36. height: 40rpx;
  37. padding: 20rpx 0rpx;
  38. margin: 0rpx auto;
  39. }
  40. .contentTitle{
  41. color: rgb(12, 11, 11);
  42. font-size: 30rpx;
  43. text-align: center;
  44. margin: 0rpx auto;
  45. }
  46. .content{
  47. width: 100%;
  48. height: 140rpx;
  49. padding: 30rpx 0rpx;
  50. display: flex;
  51. flex-direction: row;
  52. flex-wrap: wrap;
  53. align-content: space-around;
  54. justify-content: space-between;
  55. background-color: #fff;
  56. border-top-left-radius: 7rpx;
  57. border-bottom-left-radius: 7rpx;
  58. }
  59. .contentText{
  60. width: 130rpx;
  61. height: 50rpx;
  62. margin: 10rpx 20rpx;
  63. font-size: 30rpx;
  64. text-align: center;
  65. }