goodsCate.wxss 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193
  1. /* pages/goodsCate/goodsCate.wxss */
  2. @import "../../style/style";
  3. .fixedWrap {
  4. position: fixed;
  5. top: 0;
  6. left: 0;
  7. right: 0;
  8. height: 352rpx;
  9. background: #f7f9fb;
  10. z-index: 10;
  11. }
  12. .searchWrap {
  13. padding: 24rpx 0 24rpx 24rpx;
  14. display: flex;
  15. align-items: center;
  16. }
  17. .searchWrap .inputWrap {
  18. position: relative;
  19. flex: 1;
  20. width: 0;
  21. }
  22. .searchWrap .btn {
  23. padding: 24rpx !important;
  24. width: auto !important;
  25. font-size: 30rpx;
  26. color: #007dff;
  27. background: transparent;
  28. }
  29. .placeholderStyle {
  30. font-size: 30rpx;
  31. }
  32. .searchWrap .input {
  33. padding-left: 70rpx;
  34. padding-right: 24rpx;
  35. height: 84rpx;
  36. font-size: 30rpx;
  37. color: #282828;
  38. background: #fff;
  39. border-radius: 8rpx;
  40. }
  41. .searchWrap .icon-search {
  42. position: absolute;
  43. left: 24rpx;
  44. top: 50%;
  45. transform: translateY(-50%);
  46. font-size: 32rpx;
  47. color: #999;
  48. }
  49. .proList {
  50. margin-top: 352rpx;
  51. }
  52. .proItem {
  53. position: relative;
  54. height: 98rpx;
  55. line-height: 98rpx;
  56. font-size: 28rpx;
  57. font-weight: 450;
  58. text-align: center;
  59. background: #fff;
  60. transition: all .15s ease;
  61. }
  62. .proItem+.proItem:before {
  63. content: "";
  64. position: absolute;
  65. top: 0;
  66. left: 24rpx;
  67. right: 24rpx;
  68. height: 1rpx;
  69. background: #f5f5f5;
  70. }
  71. .active {
  72. background: #ecf0fe;
  73. }
  74. .backdrop {
  75. position: fixed;
  76. top: 0;
  77. left: 0;
  78. bottom: 0;
  79. right: 0;
  80. background: rgba(0, 0, 0, .3);
  81. visibility: hidden;
  82. transition: all .3s ease;
  83. z-index: 99;
  84. }
  85. .backdrop.fadeIn {
  86. visibility: visible;
  87. }
  88. .modal {
  89. position: fixed;
  90. top: 24rpx;
  91. left: 24rpx;
  92. right: 24rpx;
  93. bottom: 24rpx;
  94. opacity: 1;
  95. transform: scale(0);
  96. background: #fff;
  97. overflow: hidden;
  98. border-radius: 24rpx;
  99. transition: all .3s ease;
  100. z-index: 100;
  101. }
  102. .modal.fadeIn {
  103. transform: scale(1);
  104. }
  105. .modal .head {
  106. position: relative;
  107. height: 96rpx;
  108. }
  109. .modal .head .icon-fail{
  110. position:absolute;
  111. top:0;
  112. right:0;
  113. padding:0 24rpx;
  114. height: 96rpx;
  115. line-height: 96rpx;
  116. font-size:40rpx;
  117. color:#c4c4c4;
  118. }
  119. .modal .content {
  120. position: absolute;
  121. top: 96rpx;
  122. left: 0;
  123. right: 0;
  124. bottom: 136rpx;
  125. overflow-y: auto;
  126. overflow-x: hidden;
  127. }
  128. .modal .bottom {
  129. position: absolute;
  130. bottom: 0;
  131. left: 0;
  132. right: 0;
  133. padding: 24rpx;
  134. }
  135. .modal .bottom .btn {
  136. width:100%;
  137. flex: 1;
  138. height: 88rpx;
  139. line-height: 88rpx;
  140. font-size: 32rpx;
  141. color: #fff;
  142. background: #007dff;
  143. }
  144. .modal .icon-close {
  145. position: absolute;
  146. top: 0;
  147. right: 0;
  148. padding: 24rpx;
  149. font-size: 48rpx;
  150. color: #c4c4c4;
  151. }
  152. .lineBox {
  153. display: flex;
  154. padding: 0 24rpx;
  155. }
  156. .lineBox .label {
  157. width: 160rpx;
  158. height: 98rpx;
  159. line-height: 98rpx;
  160. font-size: 32rpx;
  161. }
  162. .lineBox .cont {
  163. flex: 1;
  164. padding: 26rpx 0;
  165. width: 0;
  166. line-height: 46rpx;
  167. font-size: 32rpx;
  168. word-break: break-all;
  169. }