workbench.wxss 6.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397
  1. /* pages/workbench/workbench.wxss */
  2. .work_top {
  3. position: relative;
  4. overflow: hidden;
  5. text-align: center;
  6. height: 116rpx;
  7. width: 750rpx;
  8. z-index: 0;
  9. }
  10. .work_top_txt {
  11. line-height: 116rpx;
  12. text-align: center;
  13. color: #ffffff;
  14. font-size: 36rpx;
  15. position: absolute;
  16. height: 116rpx;
  17. width: 750rpx;
  18. top: 0;
  19. left: 0;
  20. z-index: 1;
  21. }
  22. .work_top_bg {
  23. position: absolute;
  24. height: 116rpx;
  25. width: 750rpx;
  26. top: 0;
  27. left: 0;
  28. z-index: 0;
  29. overflow: hidden;
  30. }
  31. .work_top_bg image {
  32. position: absolute;
  33. left: 0;
  34. top: 0;
  35. width: 762rpx;
  36. height: 116rpx;
  37. }
  38. .work_card {
  39. margin: 20rpx;
  40. border-radius: 16rpx;
  41. background-color: #ffffff;
  42. padding: 30rpx 24rpx;
  43. }
  44. .work_card_tit {
  45. border-left: 6rpx solid var(--color);
  46. padding: 0 0 0 10rpx;
  47. font-size: 28rpx;
  48. color: #242E42;
  49. line-height: 28rpx;
  50. }
  51. .work_list {
  52. display: flex;
  53. align-items: center;
  54. flex-wrap: wrap;
  55. padding: 30rpx 0 0 0;
  56. }
  57. .work_item {
  58. flex: none;
  59. text-align: center;
  60. width: 33%;
  61. margin: 14rpx 0;
  62. }
  63. .work_item .icon {
  64. width: 102rpx;
  65. height: 100rpx;
  66. }
  67. .work_card .iconJia,.work_card .iconJian{
  68. width: 30rpx;
  69. height: 30rpx;
  70. position: absolute;
  71. top: 0;
  72. right: 0;
  73. z-index: 50;
  74. }
  75. .work_card .menuImage{
  76. width: 102rpx;
  77. display: inline-block;
  78. position: relative;
  79. }
  80. .work_item text {
  81. font-size: 24rpx;
  82. color: #333333;
  83. line-height: 34rpx;
  84. }
  85. .cha_win {
  86. position: fixed;
  87. left: 0;
  88. right: 0;
  89. bottom: 0;
  90. top: 0;
  91. background: rgba(0, 0, 0, 0.3);
  92. z-index: 99;
  93. }
  94. .cha_win_con {
  95. position: fixed;
  96. left: 0;
  97. right: 0;
  98. bottom: 0;
  99. background: #ffffff;
  100. transition: all 0.2s ease;
  101. transform: translateY(300%);
  102. }
  103. .cha_btn_con_transform{
  104. transform: translateY(0);
  105. }
  106. .cha_win_tit {
  107. text-align: center;
  108. line-height: 120rpx;
  109. font-size: 32rpx;
  110. color: #333333;
  111. }
  112. .cha_win_btn {
  113. display: flex;
  114. justify-content: flex-start;
  115. flex-wrap: wrap;
  116. }
  117. .cha_win_tit {
  118. text-align: center;
  119. line-height: 120rpx;
  120. font-size: 32rpx;
  121. color: #333333;
  122. position: relative;
  123. }
  124. .cha_win_tit view{
  125. position: absolute;
  126. right: 30rpx;
  127. top: 0;
  128. font-size: 27rpx;
  129. color: #2D59E6;
  130. display: inline-block;
  131. }
  132. .cha_btn_item {
  133. width: 20%;
  134. /* flex: auto; */
  135. text-align: center;
  136. padding-bottom: 15rpx;
  137. }
  138. .cha_btn_item image {
  139. width: 90rpx;
  140. height: 90rpx;
  141. }
  142. .cha_win_close {
  143. text-align: center;
  144. color: #999999;
  145. font-size: 50rpx;
  146. font-weight: 100;
  147. line-height: 120rpx;
  148. }
  149. .auth_win {
  150. position: fixed;
  151. left: 0;
  152. right: 0;
  153. bottom: 0;
  154. top: 0;
  155. background: rgba(0, 0, 0, 0.3);
  156. z-index: 3;
  157. display: flex;
  158. justify-content: center;
  159. align-items: center;
  160. }
  161. .auth_win_mid {
  162. width: 490rpx;
  163. background-color: #ffffff;
  164. border-radius: 8rpx;
  165. text-align: center;
  166. font-size: 30rpx;
  167. color: #333333;
  168. }
  169. .auth_win_txt {
  170. padding: 54rpx 92rpx;
  171. line-height: 42rpx;
  172. border-bottom: 1px solid #D8D8D8;
  173. }
  174. .auth_win_action {
  175. display: flex;
  176. justify-content: space-between;
  177. }
  178. .auth_win_btn {
  179. width: 50%;
  180. flex: auto;
  181. line-height: 80rpx;
  182. border-left: 1px solid #D8D8D8;
  183. }
  184. .auth_win_btn:first-child {
  185. border: none;
  186. }
  187. .prem_win {
  188. position: fixed;
  189. top: 0;
  190. left: 0;
  191. bottom: 0;
  192. right: 0;
  193. display: flex;
  194. align-items: center;
  195. justify-content: center;
  196. z-index: 1;
  197. background-color: rgba(0, 0, 0, 0.48);
  198. }
  199. .prem_win_mid {
  200. width: 588rpx;
  201. height: 360rpx;
  202. text-align: center;
  203. border-radius: 24rpx;
  204. background: #ffffff;
  205. position: relative;
  206. }
  207. .prem_win_close {
  208. position: absolute;
  209. top: 40rpx;
  210. right: 45rpx;
  211. }
  212. .prem_win_tit {
  213. font-size: 35rpx;
  214. color: #222222;
  215. padding: 87rpx 0 50rpx 0;
  216. }
  217. .prem_win_inps {
  218. display: flex;
  219. justify-content: center;
  220. position: absolute;
  221. bottom: 113rpx;
  222. left: 0;
  223. right: 0;
  224. z-index: 0;
  225. }
  226. .prem_win_inps input {
  227. width: 60rpx;
  228. height: 60rpx;
  229. border: 1px solid #CCCCCC;
  230. margin: 0 6rpx;
  231. }
  232. .prem_win_inps input.prem_win_inps_vl {
  233. font-size: 20rpx;
  234. border: 1px solid var(--color);
  235. }
  236. .prem_win_inpt {
  237. height: 62rpx;
  238. opacity: 0;
  239. position: absolute;
  240. bottom: 113rpx;
  241. left: 0;
  242. right: 0;
  243. z-index: 1;
  244. color: transparent;
  245. }
  246. .info_text{
  247. padding: 15rpx;
  248. display: flex;
  249. align-items: center;
  250. background: #FFFAF3;
  251. color: #A15D20;
  252. }
  253. .info_text image{
  254. width: 30rpx;
  255. height: 30rpx;
  256. }
  257. .time{
  258. padding: 25rpx 0;
  259. color: #333;
  260. border-bottom: 2.5rpx solid #f1f1f1;
  261. }
  262. .modalVal{
  263. height: 120rpx;
  264. padding: 10rpx;
  265. word-break: break-all;
  266. border-bottom: 2.5rpx solid #f1f1f1;
  267. }
  268. .transportStatus text{
  269. font-size: 32rpx;
  270. }
  271. .zan-dialog__mask {
  272. position: fixed;
  273. top: 0;
  274. left: 0;
  275. right: 0;
  276. bottom: 0;
  277. z-index: 10;
  278. background: rgba(0, 0, 0, .3); /*设置阴影半透明背景如: background: rgba(0, 0, 0, 0.4);*/
  279. display: none;
  280. }
  281. .zan-dialog__container {
  282. position: fixed;
  283. bottom: 0rpx;
  284. width: 100%;
  285. /* height: 350rpx; */
  286. background: #fff;
  287. transform: translateY(300%);
  288. transition: all 0.4s ease;
  289. z-index: 12;
  290. z-index: 12;
  291. box-shadow: 0px 3px 3px 2px gainsboro; /*弹框的悬浮阴影效果,如不需要可注释该行*/
  292. }
  293. .selectInfo{
  294. height: 100%;
  295. display: flex;
  296. justify-content: space-around;
  297. align-items: center;
  298. }
  299. .selectInfo>view{
  300. text-align: center;
  301. }
  302. .selectInfo image{
  303. width: 90rpx;
  304. height: 90rpx;
  305. }
  306. .zan-dialog--show .zan-dialog__container {
  307. transform: translateY(0);
  308. }
  309. .zan-dialog--show .zan-dialog__mask {
  310. display: block;
  311. }
  312. .zan-dialog__mask {
  313. position: fixed;
  314. top: 0;
  315. left: 0;
  316. right: 0;
  317. bottom: 0;
  318. z-index: 10;
  319. background: rgba(0, 0, 0, .3); /*设置阴影半透明背景如: background: rgba(0, 0, 0, 0.4);*/
  320. display: none;
  321. }
  322. .zan-dialog__container {
  323. position: fixed;
  324. bottom: 0rpx;
  325. width: 100%;
  326. /* height: 350rpx; */
  327. background: #fff;
  328. transform: translateY(300%);
  329. transition: all 0.4s ease;
  330. z-index: 12;
  331. z-index: 12;
  332. box-shadow: 0px 3px 3px 2px gainsboro; /*弹框的悬浮阴影效果,如不需要可注释该行*/
  333. }
  334. .zan-dialog--show .zan-dialog__container {
  335. transform: translateY(0);
  336. }
  337. .zan-dialog--show .zan-dialog__mask {
  338. display: block;
  339. }
  340. .cha_win_tit {
  341. text-align: center;
  342. line-height: 100rpx;
  343. font-size: 32rpx;
  344. color: #333333;
  345. }
  346. .selectInfo{
  347. height: 100%;
  348. display: flex;
  349. justify-content: space-around;
  350. align-items: center;
  351. }
  352. .selectInfo>view{
  353. text-align: center;
  354. }
  355. .selectInfo image{
  356. width: 70rpx;
  357. height: 70rpx;
  358. }
  359. .cha_win_close {
  360. text-align: center;
  361. color: #999999;
  362. font-size: 50rpx;
  363. font-weight: 100;
  364. line-height: 120rpx;
  365. }