index.less 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. .recommend {
  2. position: relative;
  3. padding-top: 50rpx;
  4. padding-bottom: calc(140rpx + env(safe-area-inset-bottom)) !important;
  5. .firstClassify {
  6. margin: 0rpx auto 50rpx;
  7. width: 700rpx;
  8. padding: 40rpx 10rpx;
  9. box-sizing: border-box;
  10. display: flex;
  11. flex-wrap: wrap;
  12. align-items: center;
  13. justify-content: space-between;
  14. text-align: center;
  15. z-index: 2;
  16. background: #FFFFFF;
  17. border-radius: 30rpx;
  18. .classifyBox {
  19. margin-bottom: 20rpx;
  20. width: 25%;
  21. .icon {
  22. width: 108rpx;
  23. height: 150rpx;
  24. }
  25. }
  26. .searchBox {
  27. margin: 10rpx auto 0;
  28. width: 412rpx;
  29. padding: 12rpx 0;
  30. background: #F2F6FC;
  31. border-radius: 27rpx;
  32. display: flex;
  33. align-items: center;
  34. justify-content: center;
  35. font-size: 27rpx;
  36. color: #666666;
  37. .search-icon {
  38. margin-left: 22rpx;
  39. width: 28rpx;
  40. height: 28rpx;
  41. }
  42. }
  43. }
  44. }