index.wxss 6.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313
  1. /* 我的需求搜索框 */
  2. .my-need-search {
  3. display: flex;
  4. width: 702rpx;
  5. height: 60rpx;
  6. border-radius: 6rpx;
  7. margin: 10rpx auto 20rpx;
  8. }
  9. .my-need-search-input {
  10. flex: 1;
  11. height: 100%;
  12. line-height: 100%;
  13. font-size: 26rpx;
  14. text-align: center;
  15. background-color: #FFFFFF;
  16. color: rgba(0, 0, 0, 0.4);
  17. border: 2px solid rgba(0, 0, 0, 0.1);
  18. border-right: 0;
  19. border-radius: 6rpx 0px 0px 6rpx;
  20. padding-left: 20rpx;
  21. margin-left: 10rpx;
  22. box-sizing: border-box;
  23. }
  24. .my-need-search-inputfocus {
  25. border: 2px solid #4DC2D4;
  26. color: rgba(0, 0, 0, 0.7);
  27. }
  28. .my-need-search-but {
  29. display: flex;
  30. justify-content: center;
  31. align-items: center;
  32. width: 128rpx;
  33. height: 100%;
  34. font-size: 34rpx;
  35. color: #FFFFFF;
  36. background: #4DC2D4;
  37. border-radius: 0px 6rpx 6rpx 0px;
  38. }
  39. .tabs_box {
  40. width: 100vw;
  41. }
  42. /* tabs选中项样式 */
  43. .tabs-active-class {
  44. font-family: PingFangSC-Medium, PingFang SC !important;
  45. font-size: 32rpx !important;
  46. font-weight: 600 !important;
  47. }
  48. /* 下架按钮插槽样式 */
  49. .soldOutBut {
  50. width: 76rpx !important;
  51. height: 45rpx !important;
  52. background: rgba(77, 194, 212, 0.1) !important;
  53. box-shadow: 0px 0px 12rpx 0px rgba(0, 0, 0, 0.1) !important;
  54. border-radius: 10rpx !important;
  55. border: 2rpx solid #4DC2D4 !important;
  56. padding: 0 !important;
  57. }
  58. /* 数据,按钮 插槽样式 */
  59. .dataAndBut {
  60. display: flex;
  61. justify-content: space-between !important;
  62. align-items: center;
  63. flex-wrap: nowrap;
  64. margin-top: 14rpx;
  65. }
  66. .dataAndBut_data {
  67. flex: 1;
  68. display: flex;
  69. font-size: 24rpx;
  70. color: #000000;
  71. margin-left: 16rpx;
  72. }
  73. .dataAndBut_data>text {
  74. color: #4DC2D4;
  75. text-decoration: underline;
  76. margin-left: 8rpx;
  77. }
  78. /* 按钮 */
  79. .dataAndBut_but {
  80. display: flex;
  81. align-items: center;
  82. margin-right: 6rpx;
  83. }
  84. .custom-slotBut {
  85. height: 44rpx !important;
  86. background: linear-gradient(180deg, #84E3EC 0%, #4DC2D4 100%) !important;
  87. box-shadow: 0px 0px 12rpx 0px rgba(0, 0, 0, 0.1) !important;
  88. border-radius: 10rpx !important;
  89. padding: 0 14rpx !important;
  90. border: 0 !important;
  91. }
  92. .custom-NoSlotBut {
  93. height: 44rpx !important;
  94. background: linear-gradient(180deg, #D3D3D3 0%, #A7A8A8 100%) !important;
  95. box-shadow: 0px 0px 12rpx 0px rgba(0, 0, 0, 0.1) !important;
  96. border-radius: 10rpx !important;
  97. color: #FFFFFF;
  98. padding: 0 14rpx !important;
  99. border: 0 !important;
  100. }
  101. /* 正在对接样式 */
  102. .abutting-joint-box {
  103. width: 702rpx;
  104. background: #FFFFFF;
  105. border-radius: 20rpx;
  106. padding: 0 14rpx;
  107. box-sizing: border-box;
  108. margin: 0 auto;
  109. }
  110. .abutting-joint-titleAndMsg {
  111. height: 105rpx;
  112. padding: 16rpx;
  113. padding-top: 20rpx;
  114. margin-top: 20rpx;
  115. box-sizing: border-box;
  116. border-bottom: 2rpx solid rgba(151, 151, 151, 0.2);
  117. }
  118. .abutting-joint-title {
  119. font-size: 28rpx;
  120. color: #000000;
  121. }
  122. .abutting-joint-msg {
  123. font-size: 24rpx;
  124. color: rgba(0, 0, 0, 0.5);
  125. margin-top: 5rpx;
  126. }
  127. /* 时间和按钮 */
  128. .abutting-joint-timeAndBut {
  129. display: flex;
  130. height: 62rpx;
  131. justify-content: space-between;
  132. align-items: center;
  133. padding-left: 16rpx;
  134. box-sizing: border-box;
  135. }
  136. .abutting-joint-time {
  137. font-size: 24rpx;
  138. color: rgba(0, 0, 0, 0.3);
  139. }
  140. .abutting-joint-but {
  141. width: 108rpx !important;
  142. height: 44rpx !important;
  143. background: linear-gradient(180deg, #84E3EC 0%, #4DC2D4 100%) !important;
  144. box-shadow: 0px 0px 12rpx 0px rgba(0, 0, 0, 0.1) !important;
  145. border-radius: 10rpx !important;
  146. margin-right: 6rpx;
  147. }
  148. .abutting-joint-but-text {
  149. position: absolute;
  150. display: block;
  151. font-size: 20rpx;
  152. font-weight: 500;
  153. color: #FFFFFF !important;
  154. top: 0;
  155. left: 13rpx;
  156. }
  157. /* 宫格区域盒子 */
  158. .grid_box {
  159. display: flex;
  160. flex-wrap: wrap;
  161. width: 704rpx;
  162. background: #FFFFFF;
  163. border-radius: 20rpx;
  164. margin: 10rpx auto 20rpx;
  165. padding: 30rpx 50rpx 0;
  166. box-sizing: border-box;
  167. }
  168. .grid_item {
  169. display: flex;
  170. align-items: center;
  171. flex-direction: column;
  172. justify-content: space-between;
  173. width: 130rpx;
  174. margin-bottom: 20rpx;
  175. padding: 0 11rpx;
  176. }
  177. .grid_item_image {
  178. width: 80rpx;
  179. height: 80rpx;
  180. margin-bottom: 10rpx;
  181. box-sizing: border-box;
  182. }
  183. .grid_item_image image {
  184. width: 100%;
  185. height: 100%;
  186. }
  187. .grid_item_title {
  188. width: 100%;
  189. text-align: center;
  190. font-size: 24rpx;
  191. color: #000000;
  192. }
  193. /* 沟通列表 */
  194. .CommunicationOfNumber {
  195. padding-bottom: 30rpx;
  196. }
  197. .CommunicationOfNumber-title {
  198. font-size: 32rpx;
  199. font-weight: 500;
  200. color: #000000;
  201. margin: 40rpx 0 30rpx 54rpx;
  202. }
  203. .CommunicationOfNumber-list>view {
  204. width: 100%;
  205. padding: 0 20rpx;
  206. font-size: 24rpx;
  207. color: #000000;
  208. margin-bottom: 20rpx;
  209. box-sizing: border-box;
  210. }
  211. .CommunicationOfNumber-list text {
  212. color: #4DC2D4;
  213. padding: 0 8rpx;
  214. }
  215. /* 右侧吸附按钮 */
  216. .fixedButton {
  217. position: fixed;
  218. width: 132rpx;
  219. height: 68rpx;
  220. font-size: 32rpx;
  221. color: #FFFFFF;
  222. box-shadow: 0px 6rpx 6rpx 0px rgba(0, 0, 0, 0.1);
  223. border-radius: 34rpx 0 0 34rpx;
  224. top: 65%;
  225. right: 0;
  226. z-index: 999;
  227. overflow: hidden;
  228. }
  229. .custom-fixedButton {
  230. position: absolute !important;
  231. width: 100% !important;
  232. height: 100% !important;
  233. top: 0;
  234. }
  235. .fixedButtonText {
  236. position: absolute;
  237. display: flex;
  238. align-items: center;
  239. width: 100%;
  240. height: 100%;
  241. z-index: 9;
  242. pointer-events: none;
  243. }
  244. .fixedButtonText image {
  245. width: 26rpx;
  246. height: 26rpx;
  247. margin-left: 18rpx;
  248. }
  249. .fixedButtonText view {
  250. margin: -3.5rpx 10rpx 0;
  251. }
  252. /* 我的供需 状态 */
  253. .myState {
  254. height: 40rpx;
  255. }
  256. .myShowState {
  257. display: flex;
  258. align-items: center;
  259. justify-content: center;
  260. position: absolute;
  261. width: 108rpx;
  262. height: 44rpx;
  263. background-color: #A7A8A8;
  264. border-radius: 20rpx 0px 20rpx 0px;
  265. top: 0;
  266. left: 0;
  267. font-size: 20rpx;
  268. color: #FFFFFF;
  269. }
  270. .myNoSoldOut {
  271. background: #4DC2D4;
  272. }