index.wxss 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197
  1. /* pages/my/postJob/index.wxss */
  2. @import '../../pages/common.wxss';
  3. @font-face {
  4. font-family: "iconfont";
  5. src: url('iconfont.eot?t=1559096289773');
  6. /* IE9 */
  7. src: url('iconfont.eot?t=1559096289773#iefix') format('embedded-opentype'),
  8. /* IE6-IE8 */
  9. url('data:application/x-font-woff2;charset=utf-8;base64,d09GMgABAAAAAAKcAAsAAAAABkwAAAJQAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHEIGVgCCcApUYwE2AiQDCAsGAAQgBYRtBzEbigXInpo8KUIbQwhFQm+LQTgb4uG/Nfb3zQ4mEomiWb3hpxOpJIiNkol80RL2/9baLKaROpjtabqEWcLryp8Vnx3UElXMuocCHQ+FR+RdAozrFwWRT9w7/RPog8wHlONeNNakSV1AXRxIAe6FUWSFEnjD2AUv8DGBWoOqcJtNHd0oTWavCsSTpggorRCRZZavFiobDmbxrkJ1ek0vkLfo+/FfOKpJKgp2085No4xqfnWKipdy2kVAiBLQ8QoUmIdk4qAxsyVRMC5RbSbJKHSs+uDXsgzc4qgOwf46u7Ye9EPlM6k89aPmEzzWRO2Q3kk/jGj318vkpaOTi43NPIVc7D4vlsN5fCp9vL///i3eOzl5F4lGIlzjKI/7+wtRDYSydNGDOASnrb9D17mL/9V1GXyq/4pCZdkwH1K9F2/wN1QD+7KhsV0pa6rG4aT9LC21alHCgVY/U60dpy6Eah0TfFUGMhSqjZOZnUeFOguoVG0FteY0H6/ThkoUuQazFgBCs1skjT5QaPZKZvYbFTr9oVJzFKh1FG0X1pmM+4wNCgIDGYsjWJMcm7gelhHXd4IyYAo0r4n4XqC+FschPljON4MNdIkt/qASZoxgQh0LN4HnwDQd7FJHB4nxKmNuLBAgTW/iJcdCGTZQQMAAGSYagWkkDhsJRjMZlc93AooBJgHt6Kkr9gKUT5seC+EFB5DNRntQz6O84hukCGMYAiMohwVrAvOAyeTA3OZ5OiBheOqElCsm4AwiQ4389mbr745BLduWwplZqHrWhBFNHEAIAAA=') format('woff2'),
  10. url('iconfont.woff?t=1559096289773') format('woff'),
  11. url('iconfont.ttf?t=1559096289773') format('truetype'),
  12. /* chrome, firefox, opera, Safari, Android, iOS 4.2+ */
  13. url('iconfont.svg?t=1559096289773#iconfont') format('svg');
  14. /* iOS 4.1- */
  15. }
  16. .iconfont {
  17. font-family: "iconfont" !important;
  18. font-style: normal;
  19. -webkit-font-smoothing: antialiased;
  20. -moz-osx-font-smoothing: grayscale;
  21. }
  22. .finish {
  23. font-size: 80rpx;
  24. }
  25. page {
  26. width: 100%;
  27. /* height: 100%; */
  28. background-color: #fff;
  29. }
  30. .job-container {
  31. padding-top: 100rpx;
  32. padding-bottom: calc(100rpx + constant(safe-area-inset-bottom));
  33. /*兼容 IOS<11.2*/
  34. padding-bottom: calc(100rpx + env(safe-area-inset-bottom));
  35. /*兼容 IOS>11.2*/
  36. }
  37. .tabs {
  38. position: fixed;
  39. top: 0;
  40. left: 0;
  41. display: flex;
  42. justify-content: space-around;
  43. align-items: center;
  44. width: 100%;
  45. height: 100rpx;
  46. padding: 0 60rpx;
  47. font-size: 28rpx;
  48. font-family: 'PingFang SC, PingFang SC-Regular';
  49. font-weight: 400;
  50. color: #666666;
  51. background-color: #fff;
  52. box-sizing: border-box;
  53. z-index: 9;
  54. border-bottom: 1px solid #e6e6e6;
  55. }
  56. .tabs .tab {
  57. position: relative;
  58. height: 100%;
  59. line-height: 100rpx;
  60. }
  61. .tabs .tab-active {
  62. font-size: 32rpx;
  63. font-family: 'PingFang SC, PingFang SC-Bold';
  64. font-weight: 700;
  65. color: #1a1a1a;
  66. }
  67. .tabs .tab-active::after {
  68. display: block;
  69. position: absolute;
  70. bottom: 0;
  71. content: '';
  72. width: 100%;
  73. height: 4rpx;
  74. background: #ffdd36;
  75. border-radius: 2rpx;
  76. z-index: 1;
  77. }
  78. .body {
  79. padding: 0 60rpx;
  80. font-size: 28rpx;
  81. font-family: 'PingFang SC, PingFang SC-Regular';
  82. font-weight: 400;
  83. color: #2b2b2b;
  84. }
  85. .body .box {
  86. padding-top: 32rpx;
  87. padding-bottom: 26rpx;
  88. border-bottom: 1rpx solid #e6e6e6;
  89. }
  90. .body .box .up,
  91. .body .box .down {
  92. display: flex;
  93. justify-content: space-between;
  94. align-items: center;
  95. margin-bottom: 28rpx;
  96. }
  97. .body .box .title,
  98. .body .box .address {
  99. width: 420rpx;
  100. overflow: hidden;
  101. text-overflow: ellipsis;
  102. white-space: nowrap;
  103. }
  104. .body .box .job-price {
  105. font-size: 20rpx;
  106. font-weight: 600;
  107. color: #ec2e26;
  108. }
  109. .body .box .job-price .price {
  110. display: inline;
  111. font-size: 32rpx;
  112. }
  113. .body .box .down {
  114. margin-bottom: 0;
  115. }
  116. .body .box .address {
  117. width: 100%;
  118. margin-bottom: 20rpx;
  119. font-size: 22rpx;
  120. color: #999999;
  121. font-family: 'PingFang SC, PingFang SC-Regular';
  122. }
  123. .address-icon {
  124. font-size: 22rpx;
  125. }
  126. .btn {
  127. width: 150rpx;
  128. height: 55rpx;
  129. background: #ffdc2f;
  130. border-radius: 28rpx;
  131. font-size: 28rpx;
  132. text-align: center;
  133. color: #1a1a1a;
  134. line-height: 55rpx;
  135. margin: 0;
  136. }
  137. .btns {
  138. display: flex;
  139. justify-content: flex-end;
  140. align-items: center;
  141. }
  142. .again-btn {
  143. width: 200rpx;
  144. margin-right: 20rpx;
  145. }
  146. .gary {
  147. background: #e6e6e6;
  148. }
  149. .footer {
  150. position: fixed;
  151. left: 50%;
  152. bottom: 0;
  153. width: 100%;
  154. padding: 30rpx;
  155. background-color: #fff;
  156. transform: translateX(-50%);
  157. padding-bottom: constant(safe-area-inset-bottom);
  158. /*兼容 IOS<11.2*/
  159. padding-bottom: env(safe-area-inset-bottom);
  160. }
  161. .footer .btn {
  162. width: 690rpx;
  163. height: 85rpx;
  164. background: #ffdc2f;
  165. border-radius: 43rpx;
  166. font-size: 30rpx;
  167. font-family: 'PingFang SC, PingFang SC-Regular';
  168. font-weight: 400;
  169. text-align: center;
  170. color: #1a1a1a;
  171. line-height: 85rpx;
  172. margin: 0 auto;
  173. }