building.wxss 6.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402
  1. page{
  2. /* padding-top: 72rpx; */
  3. background: #fff;
  4. }
  5. .headerFixed {
  6. width: 100%;
  7. height: auto;
  8. overflow: hidden;
  9. padding: 10rpx 0rpx 0rpx;
  10. position: sticky;
  11. top: 0rpx;
  12. left: 0rpx;
  13. background-color: #fff;
  14. z-index: 9;
  15. /* box-shadow: 0px 2rpx 2rpx 2rpx rgba(0, 0, 0, 0.01); */
  16. }
  17. .filterTab {
  18. width: 100%;
  19. height: 70rpx;
  20. display: flex;
  21. box-sizing: border-box;
  22. padding: 0px 20rpx;
  23. }
  24. .filterleft {
  25. width: 80%;
  26. display: flex;
  27. align-items: center;
  28. }
  29. .filterleft > view {
  30. display: inline-block;
  31. padding: 0rpx 20rpx;
  32. height: 100%;
  33. line-height: 70rpx;
  34. font-size: 30rpx;
  35. font-weight: 700;
  36. }
  37. .activeItem {
  38. position: relative;
  39. }
  40. .activeItem::after {
  41. content: " ";
  42. width: 35rpx;
  43. height: 10rpx;
  44. background-color: #35D7FF;
  45. position: absolute;
  46. bottom: 0px;
  47. left: 50%;
  48. transform: translateX(-50%);
  49. border-radius: 5rpx;
  50. }
  51. .filterright {
  52. width: 20%;
  53. display: flex;
  54. align-items: center;
  55. justify-content: flex-end;
  56. }
  57. .filterinput {
  58. width: 95%;
  59. height: 80rpx;
  60. margin: 10rpx auto 10rpx;
  61. border: 2rpx solid #f2f2f2;
  62. border-radius: 40rpx;
  63. display: flex;
  64. align-items: center;
  65. box-sizing: border-box;
  66. padding: 0rpx 30rpx;
  67. }
  68. .filterinput > input {
  69. flex: 1;
  70. height: 100%;
  71. }
  72. .filterinput > view {
  73. width: 80rpx;
  74. text-align: right;
  75. border-left: 2rpx solid #f2f2f2;
  76. }
  77. .bwidth100 {
  78. width: 100%;
  79. height: 66rpx;
  80. position: fixed;
  81. top: 0;
  82. left: 0;
  83. z-index: 98;
  84. background-color: #FFFFFF;
  85. }
  86. .searchbox {
  87. width: 15%;
  88. height: 100%;
  89. float: left;
  90. display: flex;
  91. align-items: center;
  92. justify-content: center;
  93. position: relative;
  94. }
  95. .caseline {
  96. width: 2rpx;
  97. height: 36rpx;
  98. background-color: #DDDDDD;
  99. position: absolute;
  100. left: 0px;
  101. }
  102. .caseimg {
  103. top: 13rpx;
  104. width: 40rpx;
  105. height: 40rpx;
  106. }
  107. .progress {
  108. display: block;
  109. width: 85%;
  110. height: 66rpx;
  111. line-height: 66rpx;
  112. padding: 5rpx 0;
  113. box-shadow: 0px 4rpx 7rpx 0px rgba(62, 85, 255, 0.06);
  114. }
  115. .progress view {
  116. display: block;
  117. width: 46%;
  118. height: 56rpx;
  119. line-height: 56rpx;
  120. text-align: center;
  121. margin-right: 24rpx;
  122. }
  123. .progress view.nowordertit {
  124. color: #249EFB;
  125. }
  126. .publicpraisebox {
  127. padding: 0 20rpx 100rpx;
  128. }
  129. .progress-box-item {
  130. width: 100%;
  131. background-color: #fff;
  132. padding: 40rpx 0rpx;
  133. display: flex;
  134. overflow: hidden;
  135. border-radius: 8rpx;
  136. border-bottom: 2rpx solid #f2f2f2;
  137. }
  138. .progress-left {
  139. width: 260rpx;
  140. height: 200rpx;
  141. position: relative;
  142. border-radius: 15rpx;
  143. overflow: hidden;
  144. }
  145. .progress-left-text {
  146. position: absolute;
  147. width: 100%;
  148. height: 40rpx;
  149. background-color: rgba(0, 0, 0, 0.4);
  150. z-index: 2;
  151. bottom: 0rpx;
  152. color: #fff;
  153. font-size: 24rpx;
  154. text-align: center;
  155. line-height: 40rpx;
  156. }
  157. .progress-left-img {
  158. width: 100%;
  159. height: 100%;
  160. object-fit: cover;
  161. }
  162. .progress-right {
  163. flex: 1;
  164. display: inline-block;
  165. padding-left: 20rpx;
  166. overflow: hidden;
  167. }
  168. .progress-right-title,
  169. .progress-right-address {
  170. white-space: nowrap;
  171. overflow: hidden;
  172. text-overflow: ellipsis;
  173. }
  174. .mtb10 {
  175. margin: 10rpx 0rpx;
  176. }
  177. .progress-right-area {
  178. width: 100%;
  179. overflow-x: auto;
  180. white-space: nowrap;
  181. padding: 4rpx 0rpx;
  182. }
  183. .progress-right-area > view {
  184. font-style: normal;
  185. display: inline-block;
  186. padding: 2rpx 10rpx 0rpx;
  187. background-color: #FFEDED;
  188. margin-right: 10rpx;
  189. color: #C66D59;
  190. border-radius: 4rpx;
  191. }
  192. .p-r-img1 {
  193. width: 40rpx;
  194. height: 40rpx;
  195. background-color: #EEF4FF;
  196. border-radius: 50%;
  197. display: flex;
  198. justify-content: center;
  199. align-items: center;
  200. }
  201. .p-r-img1 image {
  202. width: 20rpx;
  203. height: 20rpx;
  204. }
  205. .flex {
  206. display: flex;
  207. }
  208. .flex-sub {
  209. flex: 1;
  210. }
  211. .align-center {
  212. align-items: center;
  213. }
  214. .justify-between {
  215. justify-content: space-between;
  216. }
  217. .justify-end {
  218. justify-content: flex-end;
  219. }
  220. .p-r-img1 {
  221. width: 40rpx;
  222. height: 40rpx;
  223. background-color: #EEF4FF;
  224. border-radius: 50%;
  225. display: flex;
  226. justify-content: center;
  227. align-items: center;
  228. }
  229. .p-r-img1 image {
  230. width: 20rpx;
  231. height: 20rpx;
  232. }
  233. .fontw700 {
  234. font-weight: 700;
  235. }
  236. .font32 {
  237. font-size: 32rpx;
  238. }
  239. .font28 {
  240. font-size: 28rpx;
  241. }
  242. .font24 {
  243. font-size: 24rpx;
  244. }
  245. .font20 {
  246. font-size: 20rpx;
  247. }
  248. .font22 {
  249. font-size: 22rpx;
  250. }
  251. .colorCECECE {
  252. color: #CECECE;
  253. }
  254. .color424242 {
  255. color: #424242;
  256. }
  257. .color45ADFF {
  258. color: #45ADFF;
  259. }
  260. .color989898 {
  261. color: #989898;
  262. }
  263. .mt10 {
  264. margin-top: 10rpx;
  265. }
  266. .ml20 {
  267. margin-left: 20rpx;
  268. }
  269. .ml10 {
  270. margin-left: 10rpx;
  271. }
  272. .p-r-sc {
  273. display: block;
  274. width: 20rpx;
  275. height: 20rpx;
  276. margin-right: 8rpx;
  277. }
  278. .p-r-share {
  279. display: block;
  280. width: 20rpx;
  281. height: 20rpx;
  282. margin-right: 8rpx;
  283. }
  284. .p-r-sc {
  285. display: block;
  286. width: 20rpx;
  287. height: 20rpx;
  288. margin-right: 8rpx;
  289. }
  290. .uploadBuild {
  291. width: 80rpx;
  292. background-color: #249EFB;
  293. color: #fff;
  294. position: fixed;
  295. right: 0rpx;
  296. bottom: 40%;
  297. display: flex;
  298. flex-direction: column;
  299. align-items: center;
  300. justify-content: center;
  301. border-top-left-radius: 40rpx;
  302. border-bottom-left-radius: 40rpx;
  303. padding: 20rpx 0rpx;
  304. z-index: 9;
  305. }
  306. .uploadBuild > image {
  307. width: 40rpx;
  308. }
  309. .uploadBuild > view {
  310. writing-mode: vertical-lr;
  311. font-size: 28rpx;
  312. letter-spacing: 6rpx;
  313. margin-top: 5rpx;
  314. }
  315. .caselayerbox {
  316. display: block;
  317. width: 100%;
  318. height: 100%;
  319. background: transparent;
  320. position: fixed;
  321. z-index: 99;
  322. left: 0;
  323. bottom: 0;
  324. }
  325. .caselayer {
  326. display: block;
  327. width: 100%;
  328. max-height: 60%;
  329. position: absolute;
  330. top: 66rpx;
  331. left: 0;
  332. background-color: #FFFFFF;
  333. box-shadow: 0 -4rpx 20rpx 0 rgba(36, 158, 251, 0.23);
  334. border-radius: 10rpx 10rpx 0 0;
  335. overflow: hidden;
  336. /* padding-top: 70rpx;
  337. padding-bottom: calc(constant(safe-area-inset-bottom)) !important;
  338. /* ios < 11.2*/
  339. /* padding-bottom: calc(env(safe-area-inset-bottom)) !important; */
  340. /* ios >= 11.2*/
  341. }
  342. .speechcraftfiltratetit {
  343. display: block;
  344. width: 100%;
  345. height: 88rpx;
  346. padding: 0 40rpx;
  347. box-sizing: border-box;
  348. background: #fff;
  349. }
  350. .speechcraftfiltratetit input {
  351. display: block;
  352. width: 540rpx;
  353. height: 66rpx;
  354. background: #F0F4F7;
  355. position: relative;
  356. top: 11rpx;
  357. border-bottom: 1px solid #bfbfbf;
  358. text-align: left;
  359. padding-left: 40rpx;
  360. box-sizing: border-box;
  361. border-radius: 33rpx;
  362. border-width: 0;
  363. }
  364. .speechcraftfiltratetit view {
  365. position: absolute;
  366. top: 0;
  367. right: 40rpx;
  368. line-height: 88rpx;
  369. font-size: 28rpx;
  370. }