detail.wxss 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221
  1. /* pages/detail/detail.wxss */
  2. page {
  3. background: #f5f5f5;
  4. padding-bottom: 139rpx;
  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. color: #31364c;
  23. font-size: 48rpx;
  24. overflow: hidden;
  25. text-overflow: ellipsis;
  26. white-space: nowrap;
  27. }
  28. .money {
  29. color: #3243bd;
  30. font-size: 38rpx;
  31. flex-basis:275rpx;
  32. text-align: right;
  33. }
  34. .month {
  35. font-size: 24rpx;
  36. }
  37. .bottom {
  38. font-size: 26rpx;
  39. color: #888a8e;
  40. display: flex;
  41. align-items: center;
  42. justify-content: space-between;
  43. margin-top: 20rpx;
  44. }
  45. .bottom view {
  46. display: flex;
  47. align-items: center;
  48. }
  49. .bottom image {
  50. height: 25rpx;
  51. width: 25rpx;
  52. margin-right: 10rpx;
  53. }
  54. /* 公司地址 */
  55. .address {
  56. width: 750rpx;
  57. height: 148rpx;
  58. background: #fff;
  59. padding: 30rpx;
  60. box-sizing: border-box;
  61. display: flex;
  62. align-items: center;
  63. justify-content: space-between;
  64. margin-top: 15rpx;
  65. }
  66. .address image {
  67. height: 80rpx;
  68. width: 80rpx;
  69. margin-right: 30rpx;
  70. }
  71. .address-info {
  72. flex: 1;
  73. height: 100%;
  74. font-size: 28rpx;
  75. color: #31364c;
  76. display: flex;
  77. flex-direction: column;
  78. justify-content: space-between;
  79. overflow: hidden;
  80. }
  81. .address-info-text {
  82. overflow: hidden;
  83. text-overflow: ellipsis;
  84. white-space: nowrap;
  85. }
  86. .point {
  87. font-size: 26rpx;
  88. color: #888a8e;
  89. display: flex;
  90. align-items: center;
  91. }
  92. .point text {
  93. flex: 1;
  94. overflow: hidden;
  95. text-overflow: ellipsis;
  96. white-space: nowrap;
  97. }
  98. .point image {
  99. height: 22rpx;
  100. width: 18rpx;
  101. margin-right: 10rpx;
  102. }
  103. .detail {
  104. margin: 15rpx 0;
  105. padding: 15rpx 0;
  106. background: #fff;
  107. }
  108. /* 需求详情 */
  109. .cell {
  110. color: #535768;
  111. font-size: 28rpx;
  112. background: #fff;
  113. padding: 30rpx;
  114. display: flex;
  115. flex-direction: column;
  116. }
  117. .cell-content {
  118. margin-top: 15rpx;
  119. }
  120. .cover {
  121. position: fixed;
  122. left: 0;
  123. top: 0;
  124. height: 100%;
  125. width: 100%;
  126. background: rgba(0, 0, 0, 0.4);
  127. display: flex;
  128. align-items: center;
  129. justify-content: center;
  130. }
  131. .model {
  132. height: 510rpx;
  133. width: 670rpx;
  134. background: #f5f5f5;
  135. border-radius: 10rpx;
  136. }
  137. .cancel-icon {
  138. display: flex;
  139. justify-content: flex-end;
  140. padding: 30rpx 30rpx 0 30rpx;
  141. box-sizing: border-box;
  142. }
  143. .cancel-img {
  144. height: 24rpx;
  145. width: 24rpx;
  146. }
  147. .model-title {
  148. text-align: center;
  149. line-height: 53rpx;
  150. color: #31364c;
  151. font-size: 38rpx;
  152. }
  153. .textarea {
  154. width: 610rpx;
  155. height: 224rpx;
  156. padding: 30rpx;
  157. margin: 30rpx auto;
  158. font-size: 32rpx;
  159. box-sizing: border-box;
  160. border: 2rpx solid #ddd;
  161. border-radius: 10rpx;
  162. }
  163. .textarea textarea {
  164. height: 100%;
  165. width: 100%;
  166. }
  167. .model-action {
  168. height: 110rpx;
  169. display: flex;
  170. align-items: center;
  171. justify-content: space-between;
  172. border-top: 1rpx solid #eaebee;
  173. }
  174. .cancel, .confirm {
  175. width: 50%;
  176. height: 100%;
  177. line-height: 110rpx;
  178. font-size: 34rpx;
  179. color: #31364c;
  180. box-sizing: border-box;
  181. text-align: center;
  182. }
  183. .cancel {
  184. border-right: 1rpx solid #eaebee;
  185. }
  186. /* .confirm {
  187. border-left: 1rpx solid #eaebee;
  188. } */