subcate.wxss 584 B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. /* 子分类 */
  2. .cate {
  3. padding-top: 20rpx;
  4. }
  5. .sub-tit {
  6. font-size: 32rpx;
  7. color: #000;
  8. padding: 20rpx 30rpx;
  9. }
  10. .scroll-lock {
  11. height: 100vh;
  12. overflow-y: hidden;
  13. }
  14. .sub-list {
  15. flex-wrap: wrap;
  16. padding: 0 15rpx;
  17. }
  18. .sub-list .item {
  19. width: 25%;
  20. display: flex;
  21. flex-direction: column;
  22. align-items: center;
  23. justify-content: center;
  24. margin-bottom: 30rpx;
  25. }
  26. .sub-list .item .img {
  27. width: 122rpx;
  28. height: 122rpx;
  29. border-radius: 50%;
  30. }
  31. .sub-list .item .name {
  32. font-size: 28rpx;
  33. color: #666;
  34. margin: 15rpx 0;
  35. width: 100%;
  36. text-align: center;
  37. }