index.wxss 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180
  1. page {
  2. background: #f5f5f5;
  3. padding-top: 20rpx;
  4. }
  5. .list {
  6. min-height: 86rpx;
  7. font-size: 30rpx;
  8. background: #fff;
  9. font-family: SourceHanSansCN-Regular;
  10. font-weight: 400;
  11. padding: 15rpx 30rpx;
  12. display: flex;
  13. flex-direction: row;
  14. justify-content: space-between;
  15. align-items: center;
  16. border-bottom: 2rpx solid #f5f5f5;
  17. }
  18. .list text {
  19. color: #666666;
  20. }
  21. .list-content {
  22. flex: 1;
  23. height: 100%;
  24. /* overflow: hidden;
  25. text-overflow: ellipsis;
  26. white-space: nowrap; */
  27. display: flex;
  28. align-items: center;
  29. justify-content: flex-end;
  30. }
  31. .list view input {
  32. display: flex;
  33. align-items: center;
  34. width: 100%;
  35. height: 100%;
  36. text-align: left;
  37. padding-left: 23rpx;
  38. font-size: 28rpx;
  39. font-family: SourceHanSansCN-Regular;
  40. font-weight: 400;
  41. color: rgba(153, 153, 153, 1);
  42. }
  43. .list view .picker {
  44. width: 100%;
  45. height: 100%;
  46. display: flex;
  47. align-items: center;
  48. justify-content: flex-end;
  49. }
  50. .list view .picker .pick-view {
  51. flex: 1;
  52. height: 100%;
  53. display: flex;
  54. align-items: center;
  55. flex-wrap: wrap;
  56. justify-content: flex-end;
  57. }
  58. /* btn */
  59. .fixed-footer {
  60. width: 100%;
  61. }
  62. .btn-group {
  63. background: #fff;
  64. padding: 20rpx;
  65. box-sizing: border-box;
  66. }
  67. .selfBtn {
  68. display: flex;
  69. height: 88rpx;
  70. line-height: 88rpx;
  71. align-items: center;
  72. /* box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.1); */
  73. background: #0177FF;
  74. border-radius: 10rpx;
  75. justify-content: center;
  76. font-size: 34rpx;
  77. font-family: SourceHanSansCN-Normal;
  78. font-weight: 400;
  79. color: rgba(255, 254, 254, 1);
  80. }
  81. .cover {
  82. height: 100%;
  83. width: 100%;
  84. position: fixed;
  85. left: 0;
  86. top: 0;
  87. background: rgba(0, 0, 0, 0.5);
  88. }
  89. .cover-title {
  90. height: 108rpx;
  91. width: 100%;
  92. color: #0177FF;
  93. font-size: 34rpx;
  94. background: #fff;
  95. padding: 0 30rpx;
  96. box-sizing: border-box;
  97. display: flex;
  98. align-items: center;
  99. justify-content: space-between;
  100. border-bottom: 1rpx solid #f5f5f5;
  101. position: absolute;
  102. top: 0;
  103. left: 0;
  104. z-index: 9;
  105. }
  106. .salary,
  107. .position {
  108. width: 100%;
  109. height: 650rpx;
  110. position: fixed;
  111. left: 0;
  112. background: #fff;
  113. text-align: center;
  114. transition: bottom 400ms ease 0ms;
  115. -moz-transition: bottom 400ms ease 0ms;
  116. -webkit-transition: bottom 400ms ease 0ms;
  117. -o-transition: bottom 400ms ease 0ms;
  118. }
  119. .position {
  120. height: 800rpx;
  121. }
  122. .city {
  123. width: 100%;
  124. height: 100%;
  125. position: fixed;
  126. left: 0;
  127. top: 0;
  128. }
  129. .position-content {
  130. display: flex;
  131. flex-wrap: wrap;
  132. height: 610rpx;
  133. justify-content: space-between;
  134. padding: 0 30rpx;
  135. position: absolute;
  136. bottom: 40rpx;
  137. left: 0;
  138. }
  139. .position-content-cell {
  140. width: 218rpx;
  141. height: 68rpx;
  142. font-size: 28rpx;
  143. color: #333333;
  144. border-radius: 10rpx;
  145. text-align: center;
  146. line-height: 68rpx;
  147. background: #EEEEEE;
  148. margin-bottom: 18rpx;
  149. }
  150. .position-content-cell.active {
  151. color: #0177FF;
  152. border: 1rpx solid #0177FF;
  153. background: #fff;
  154. box-sizing: border-box;
  155. }
  156. .arrow {
  157. width: 17rpx;
  158. height: 29rpx;
  159. margin-left: 15rpx;
  160. }