join-mobile.css 4.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271
  1. .wrap {
  2. padding-top: 2.75rem;
  3. }
  4. .wrap .list {
  5. padding: 0.9375rem;
  6. background: #ffffff;
  7. }
  8. /* 搜索 */
  9. .wrap .search {
  10. display: flex;
  11. align-items: center;
  12. }
  13. .search .search-ipt {
  14. width: 15.3125rem;
  15. height: 2.25rem;
  16. background: #f4f4f4;
  17. padding: 0 0.625rem;
  18. font-size: 0.75rem;
  19. }
  20. .search .search-btn {
  21. height: 2.25rem;
  22. width: 6.25rem;
  23. background: #c0c0c0;
  24. text-align: center;
  25. line-height: 2.25rem;
  26. font-size: 0.75rem;
  27. font-weight: 400;
  28. color: #ffffff;
  29. }
  30. /* 表格 */
  31. .wrap .table {
  32. margin-top: 1.25rem;
  33. }
  34. .table .row {
  35. height: 2.375rem;
  36. padding: 0 0.625rem;
  37. display: flex;
  38. align-items: center;
  39. justify-content: flex-start;
  40. }
  41. .table .td {
  42. height: 2.375rem;
  43. line-height: 2.375rem;
  44. font-size: 0.8125rem;
  45. font-weight: 400;
  46. color: #222222;
  47. }
  48. .table .thead {
  49. background: #f4f4f4;
  50. }
  51. .table .thead .td {
  52. font-weight: 500;
  53. }
  54. .table .tbody .tr {
  55. width: 100%;
  56. border-bottom: 0.0625rem solid rgba(151, 151, 151, 0.2);
  57. height: 2.375rem;
  58. }
  59. .table .name {
  60. width: 13.75rem;
  61. margin-right: 0.625rem;
  62. white-space: nowrap;
  63. overflow: hidden;
  64. text-overflow: ellipsis;
  65. }
  66. .table .time {
  67. width: 7.5rem;
  68. }
  69. .table .icon {
  70. font-size: 1.25rem;
  71. line-height: 2rem;
  72. }
  73. /* 分页 */
  74. .wrap .pagination {
  75. display: flex;
  76. align-items: center;
  77. justify-content: center;
  78. margin-top: 1.25rem;
  79. }
  80. .pagination :not(:last-child) {
  81. margin-right: 0.625rem;
  82. }
  83. .pagination .pagination-item {
  84. width: 1.875rem;
  85. height: 1.875rem;
  86. border: 0.0625rem solid rgba(151, 151, 151, 0.2);
  87. text-align: center;
  88. line-height: 1.875rem;
  89. user-select: none;
  90. font-size: 0.875rem;
  91. font-weight: 400;
  92. color: #222222;
  93. }
  94. .pagination :first-child,
  95. .pagination :last-child {
  96. font-size: 1.5rem;
  97. line-height: 1.5rem;
  98. }
  99. .pagination .current {
  100. background: #1d52a2;
  101. color: #ffffff;
  102. }
  103. .wrap .detail {
  104. width: 100vw;
  105. height: 100vh;
  106. position: fixed;
  107. left: 0;
  108. right: 0;
  109. top: 0;
  110. bottom: 0;
  111. background: #f4f4f4;
  112. z-index: 2000;
  113. padding-top: 2.75rem;
  114. padding-bottom: 5.1875rem;
  115. overflow-y: auto;
  116. }
  117. .wrap .detail::-webkit-scrollbar {
  118. width: 0;
  119. }
  120. .detail .card {
  121. width: calc(100% - 1.875rem);
  122. margin: 0.9375rem auto;
  123. padding: 0.9375rem;
  124. background: #fff;
  125. }
  126. .detail .detail-header {
  127. height: 2.75rem;
  128. display: flex;
  129. align-items: center;
  130. justify-content: space-between;
  131. padding: 0 0.9375rem;
  132. background: #fff;
  133. position: fixed;
  134. top: 0;
  135. left: 0;
  136. right: 0;
  137. z-index: 2001;
  138. }
  139. .detail .detail-header .back {
  140. font-size: 2rem;
  141. line-height: 2.5rem;
  142. }
  143. .detail .detail-header .title {
  144. font-size: 1rem;
  145. font-weight: 500;
  146. color: #222222;
  147. }
  148. .detail-footer {
  149. position: fixed;
  150. bottom: 0;
  151. left: 0;
  152. right: 0;
  153. z-index: 2001;
  154. height: 5.1875rem;
  155. padding: 0 0.9375rem;
  156. background: #fff;
  157. }
  158. .detail-footer .confirm {
  159. width: 100%;
  160. height: 2.5rem;
  161. border-radius: 0.25rem;
  162. line-height: 2.5rem;
  163. font-size: 1rem;
  164. margin-top: 0.9375rem;
  165. }
  166. .detail .job .line {
  167. height: 0.0625rem;
  168. width: 100%;
  169. background-color: rgba(151, 151, 151, 0.2);
  170. transform: translate(0, 0.9375rem);
  171. }
  172. .detail .job .name {
  173. font-size: 1rem;
  174. font-weight: 500;
  175. color: #222222;
  176. }
  177. .detail .job .time {
  178. font-size: 0.8125rem;
  179. font-weight: 400;
  180. color: rgba(34, 34, 34, 0.8);
  181. margin-top: 0.625rem;
  182. }
  183. .detail .job .type_place {
  184. font-size: 0.875rem;
  185. font-weight: 400;
  186. color: #444444;
  187. margin-top: 0.625rem;
  188. }
  189. .detail .info {
  190. font-size: 0.8125rem;
  191. }
  192. .detail .type-place {
  193. padding: 0.625rem 0.9375rem;
  194. }
  195. .detail .type-place > :first-child {
  196. border-bottom: 0.0625rem solid rgba(151, 151, 151, 0.1);
  197. }
  198. .detail .type-place .item {
  199. display: flex;
  200. align-items: center;
  201. justify-content: space-between;
  202. height: 2.5rem;
  203. }
  204. .detail .type-place .item .label {
  205. font-size: 0.8125rem;
  206. font-weight: 400;
  207. color: #555555;
  208. }
  209. .detail .type-place .item .value {
  210. font-size: 0.8125rem;
  211. font-weight: 400;
  212. color: #222222;
  213. }
  214. .detail .form {
  215. display: flex;
  216. flex-direction: column;
  217. align-items: flex-start;
  218. margin-top: -0.9375rem;
  219. padding-top: 0;
  220. }
  221. .form .label {
  222. font-size: 0.875rem;
  223. font-weight: 400;
  224. color: #222222;
  225. margin-top: 0.625rem;
  226. }
  227. .form input.text {
  228. height: 2.5rem;
  229. width: 100%;
  230. border: 0.0625rem solid rgba(151, 151, 151, 0.4);
  231. padding: 0 0.625rem;
  232. font-size: 0.875rem;
  233. font-weight: 400;
  234. margin-top: 0.625rem;
  235. }
  236. .form input.text::placeholder {
  237. color: #999999;
  238. }
  239. .form .upload {
  240. min-width: 7.5rem;
  241. max-width: 100%;
  242. overflow: hidden;
  243. text-overflow: ellipsis;
  244. white-space: nowrap;
  245. height: 2.5rem;
  246. padding: 0 1.25rem;
  247. background: rgba(216, 216, 216, 0.4);
  248. font-size: 0.875rem;
  249. font-weight: 500;
  250. color: #333333;
  251. text-align: center;
  252. line-height: 2.5rem;
  253. margin-top: 0.625rem;
  254. }
  255. .form .tips {
  256. font-size: 0.75rem;
  257. font-weight: 400;
  258. color: #222222;
  259. margin-top: 0.625rem;
  260. }