goods_cate.wxss 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121
  1. page {
  2. background-color: #fff !important;
  3. }
  4. .productSort .header {
  5. width: 100%;
  6. height: 96rpx;
  7. background-color: #fff;
  8. position: fixed;
  9. left: 0;
  10. right: 0;
  11. z-index: 9;
  12. border-bottom: 1rpx solid #f5f5f5;
  13. }
  14. .productSort .header .input {
  15. width: 90%;
  16. height: 60rpx;
  17. background-color: #f5f5f5;
  18. border-radius: 50rpx;
  19. box-sizing: border-box;
  20. padding: 0 25rpx;
  21. }
  22. .productSort .header .input .iconfont {
  23. font-size: 35rpx;
  24. color: #555;
  25. }
  26. .productSort .header .input .placeholder {
  27. color: #999;
  28. }
  29. .productSort .header .input input {
  30. font-size: 26rpx;
  31. height: 100%;
  32. width: 90%;
  33. }
  34. .productSort .aside {
  35. position: fixed;
  36. width: 180rpx;
  37. left: 0;
  38. bottom: 0;
  39. background-color: #f7f7f7;
  40. overflow-y: auto;
  41. overflow-x: hidden;
  42. }
  43. .productSort .aside .item {
  44. height: 80rpx;
  45. width: 100%;
  46. font-size: 26rpx;
  47. color: #424242;
  48. }
  49. .productSort .aside .item.on {
  50. background-color: #fff;
  51. border-left: 4rpx solid #fc4141;
  52. width: 100%;
  53. text-align: center;
  54. color: #fc4141;
  55. font-weight: bold;
  56. }
  57. .productSort .conter {
  58. margin: 98rpx 0 0 180rpx;
  59. padding: 0 14rpx;
  60. }
  61. .productSort .conter .listw {
  62. padding-top: 20rpx;
  63. vertical-align: top;
  64. }
  65. .productSort .conter .listw .title {
  66. height: 90rpx;
  67. }
  68. .productSort .conter .listw .title .line {
  69. width: 100rpx;
  70. height: 2rpx;
  71. background-color: #999;
  72. }
  73. .productSort .conter .listw .title .name {
  74. font-size: 28rpx;
  75. color: #333;
  76. margin: 0 30rpx;
  77. font-weight: bold;
  78. }
  79. .productSort .conter .list {
  80. flex-wrap: wrap;
  81. }
  82. .productSort .conter .list .item {
  83. width: 177rpx;
  84. margin-top: 26rpx;
  85. }
  86. .productSort .conter .list .item .picture {
  87. width: 120rpx;
  88. height: 120rpx;
  89. border-radius: 50%;
  90. }
  91. .productSort .conter .list .item .picture image {
  92. width: 100%;
  93. height: 100%;
  94. border-radius: 50%;
  95. }
  96. .productSort .conter .list .item .name {
  97. font-size: 24rpx;
  98. color: #333;
  99. height: 56rpx;
  100. line-height: 56rpx;
  101. width: 120rpx;
  102. text-align: center;
  103. }