index.less 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. .recommend {
  2. position: relative;
  3. padding-top: 55rpx;
  4. padding-bottom: calc(140rpx + env(safe-area-inset-bottom)) !important;
  5. .firstClassify {
  6. margin: 50rpx auto;
  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. .desktopTips {
  45. position: fixed;
  46. z-index: 999;
  47. right: 0rpx;
  48. .triangle {
  49. position: absolute;
  50. right: 124rpx;
  51. top: -26rpx;
  52. border: 20rpx solid #F9F9FF;
  53. border-top-color: transparent;
  54. border-left-color: transparent;
  55. border-right-color: transparent;
  56. }
  57. .tipsImg {
  58. width: 530rpx;
  59. height: 176rpx;
  60. }
  61. }
  62. }