index.wxss 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. .recommend {
  2. position: relative;
  3. padding-top: 55rpx;
  4. padding-bottom: calc(140rpx + env(safe-area-inset-bottom)) !important;
  5. }
  6. .recommend .firstClassify {
  7. margin: 50rpx auto;
  8. width: 700rpx;
  9. padding: 40rpx 10rpx;
  10. box-sizing: border-box;
  11. display: flex;
  12. flex-wrap: wrap;
  13. align-items: center;
  14. justify-content: space-between;
  15. text-align: center;
  16. z-index: 2;
  17. background: #FFFFFF;
  18. border-radius: 30rpx;
  19. }
  20. .recommend .firstClassify .classifyBox {
  21. margin-bottom: 20rpx;
  22. width: 25%;
  23. }
  24. .recommend .firstClassify .classifyBox .icon {
  25. width: 108rpx;
  26. height: 150rpx;
  27. }
  28. .recommend .firstClassify .searchBox {
  29. margin: 10rpx auto 0;
  30. width: 412rpx;
  31. padding: 12rpx 0;
  32. background: #F2F6FC;
  33. border-radius: 27rpx;
  34. display: flex;
  35. align-items: center;
  36. justify-content: center;
  37. font-size: 27rpx;
  38. color: #666666;
  39. }
  40. .recommend .firstClassify .searchBox .search-icon {
  41. margin-left: 22rpx;
  42. width: 28rpx;
  43. height: 28rpx;
  44. }
  45. .recommend .desktopTips {
  46. position: fixed;
  47. z-index: 999;
  48. right: 0rpx;
  49. }
  50. .recommend .desktopTips .triangle {
  51. position: absolute;
  52. right: 124rpx;
  53. top: -26rpx;
  54. border: 20rpx solid #F9F9FF;
  55. border-top-color: transparent;
  56. border-left-color: transparent;
  57. border-right-color: transparent;
  58. }
  59. .recommend .desktopTips .tipsImg {
  60. width: 530rpx;
  61. height: 176rpx;
  62. }