detail.wxss 5.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347
  1. /* pages/detail/detail.wxss */
  2. page {
  3. background: #f5f5f5;
  4. padding-bottom: 201rpx;
  5. }
  6. /* 待遇详情 */
  7. .header {
  8. width: 750rpx;
  9. height: 200rpx;
  10. padding: 15rpx 30rpx 40rpx 30rpx;
  11. box-sizing: border-box;
  12. background: #fff;
  13. display: flex;
  14. flex-direction: column;
  15. justify-content: center;
  16. }
  17. .info {
  18. display: flex;
  19. justify-content: space-between;
  20. }
  21. .name {
  22. flex: 1;
  23. color: #31364c;
  24. font-size: 42rpx;
  25. overflow: hidden;
  26. text-overflow: ellipsis;
  27. white-space: nowrap;
  28. }
  29. .money {
  30. color: #3243bd;
  31. font-size: 38rpx;
  32. text-align: right;
  33. margin-left: 15rpx;
  34. }
  35. .month {
  36. font-size: 24rpx;
  37. }
  38. .bottom {
  39. font-size: 26rpx;
  40. color: #888a8e;
  41. display: flex;
  42. align-items: center;
  43. justify-content: space-between;
  44. margin-top: 20rpx;
  45. }
  46. .bottom view {
  47. display: flex;
  48. align-items: center;
  49. }
  50. .bottom image {
  51. height: 25rpx;
  52. width: 25rpx;
  53. margin-right: 10rpx;
  54. }
  55. /* 公司地址 */
  56. .address {
  57. width: 750rpx;
  58. height: 148rpx;
  59. background: #fff;
  60. padding: 30rpx;
  61. box-sizing: border-box;
  62. display: flex;
  63. align-items: center;
  64. justify-content: space-between;
  65. margin-top: 15rpx;
  66. }
  67. .address image {
  68. height: 80rpx;
  69. width: 80rpx;
  70. margin-right: 30rpx;
  71. }
  72. .address-info {
  73. flex: 1;
  74. height: 100%;
  75. font-size: 28rpx;
  76. color: #31364c;
  77. display: flex;
  78. flex-direction: column;
  79. justify-content: space-between;
  80. overflow: hidden;
  81. }
  82. .address-info-text {
  83. overflow: hidden;
  84. text-overflow: ellipsis;
  85. white-space: nowrap;
  86. }
  87. .point {
  88. font-size: 26rpx;
  89. color: #888a8e;
  90. display: flex;
  91. align-items: center;
  92. }
  93. .point text {
  94. flex: 1;
  95. overflow: hidden;
  96. text-overflow: ellipsis;
  97. white-space: nowrap;
  98. }
  99. .point image {
  100. height: 22rpx;
  101. width: 18rpx;
  102. margin-right: 10rpx;
  103. }
  104. .detail {
  105. margin: 15rpx 0;
  106. padding: 15rpx 0;
  107. background: #fff;
  108. }
  109. /* 需求详情 */
  110. .cell {
  111. color: #535768;
  112. font-size: 28rpx;
  113. background: #fff;
  114. padding: 30rpx;
  115. display: flex;
  116. flex-direction: column;
  117. }
  118. .cell-content {
  119. margin-top: 15rpx;
  120. }
  121. .cover {
  122. position: fixed;
  123. left: 0;
  124. top: 0;
  125. height: 100%;
  126. width: 100%;
  127. background: rgba(0, 0, 0, 0.4);
  128. display: flex;
  129. align-items: center;
  130. justify-content: center;
  131. }
  132. .model {
  133. height: 510rpx;
  134. width: 670rpx;
  135. background: #f5f5f5;
  136. border-radius: 10rpx;
  137. }
  138. .cancel-icon {
  139. display: flex;
  140. justify-content: flex-end;
  141. padding: 30rpx 30rpx 0 30rpx;
  142. box-sizing: border-box;
  143. }
  144. .cancel-img {
  145. height: 24rpx;
  146. width: 24rpx;
  147. }
  148. .model-title {
  149. text-align: center;
  150. line-height: 53rpx;
  151. color: #31364c;
  152. font-size: 38rpx;
  153. }
  154. .textarea {
  155. width: 610rpx;
  156. height: 224rpx;
  157. padding: 30rpx;
  158. margin: 30rpx auto;
  159. font-size: 32rpx;
  160. box-sizing: border-box;
  161. border: 2rpx solid #ddd;
  162. border-radius: 10rpx;
  163. }
  164. .textarea textarea {
  165. height: 100%;
  166. width: 100%;
  167. }
  168. .model-action {
  169. height: 110rpx;
  170. display: flex;
  171. align-items: center;
  172. justify-content: space-between;
  173. border-top: 1rpx solid #eaebee;
  174. }
  175. .cancel,
  176. .confirm {
  177. width: 50%;
  178. height: 100%;
  179. line-height: 110rpx;
  180. font-size: 34rpx;
  181. color: #31364c;
  182. box-sizing: border-box;
  183. text-align: center;
  184. }
  185. .cancel {
  186. border-right: 1rpx solid #eaebee;
  187. }
  188. /* .confirm {
  189. border-left: 1rpx solid #eaebee;
  190. } */
  191. .supplement-info {
  192. height: 896rpx;
  193. width: 670rpx;
  194. background: #f5f5f5;
  195. border-radius: 10rpx;
  196. box-sizing: border-box;
  197. position: relative;
  198. }
  199. .supplement-cancel-icon {
  200. height: 24rpx;
  201. width: 24rpx;
  202. position: absolute;
  203. right: 30rpx;
  204. top: 30rpx;
  205. }
  206. .supplement-header {
  207. display: flex;
  208. flex-direction: column;
  209. align-items: center;
  210. margin-top: 60rpx;
  211. }
  212. .supplement-header-title {
  213. color: #31364C;
  214. font-size: 38rpx;
  215. }
  216. .supplement-header-content {
  217. width: 610rpx;
  218. color: #31364C;
  219. font-size: 24rpx;
  220. padding: 20rpx;
  221. box-sizing: border-box;
  222. margin: 0 auto;
  223. margin-bottom: 30rpx;
  224. }
  225. .supplement-input {
  226. height: 88rpx;
  227. width: 610rpx;
  228. font-size: 28rpx;
  229. background: #fff;
  230. display: flex;
  231. align-items: center;
  232. padding: 24rpx 30rpx;
  233. border: 1rpx solid #fff;
  234. border-radius: 10rpx;
  235. box-sizing: border-box;
  236. margin: 0 auto;
  237. }
  238. .supplement-input-textarea {
  239. height: 178rpx;
  240. width: 610rpx;
  241. font-size: 28rpx;
  242. background: #fff;
  243. display: flex;
  244. padding: 24rpx 30rpx;
  245. border-radius: 10rpx;
  246. box-sizing: border-box;
  247. margin: 0 auto;
  248. }
  249. .placeholder {
  250. color: #888A8E;
  251. font-size: 28rpx;
  252. }
  253. .labal {
  254. margin-right: 10rpx;
  255. }
  256. .input {
  257. flex: 1;
  258. height: 100%;
  259. color: #31364C;
  260. font-size: 28rpx;
  261. }
  262. .error {
  263. height: 59rpx;
  264. width: 610rpx;
  265. color: #D1213E;
  266. font-size: 24rpx;
  267. line-height: 59rpx;
  268. padding: 0 15rpx;
  269. box-sizing: border-box;
  270. margin: 0 auto;
  271. }
  272. .supplement-action {
  273. width: 100%;
  274. height: 110rpx;
  275. display: flex;
  276. border-top: 1rpx solid #eaebee;
  277. align-items: center;
  278. position: absolute;
  279. bottom: 0;
  280. }
  281. .supplement-action .cancel {
  282. color: #888A8E;
  283. }
  284. .border {
  285. border: 1rpx solid #D1213E;
  286. }
  287. .isOn {
  288. width: 750rpx;
  289. height: 62rpx;
  290. font-size: 28rpx;
  291. font-family: PingFangSC-Semibold, PingFang SC;
  292. font-weight: 600;
  293. color: #fff;
  294. background: rgba(0, 0, 0, 0.4);
  295. line-height: 62rpx;
  296. text-align: center;
  297. position: fixed;
  298. bottom: 124rpx;
  299. }