index.scss 5.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238
  1. @import "../scssCommon";
  2. .jobList {
  3. .topArea {
  4. position: relative;
  5. width: 100%;
  6. background-color: #fff;
  7. margin-top: 10px;
  8. }
  9. .contentArea {
  10. background-color: #f7f7f7;
  11. width: 1000px;
  12. margin: 0 auto;
  13. box-sizing: border-box;
  14. .selectArea {
  15. display: flex;
  16. padding: 45px 45px 45px 10px;
  17. flex-direction: column;
  18. background: #fff;
  19. .content {
  20. width: 100%;
  21. display: flex;
  22. justify-content: flex-start;
  23. align-items: center;
  24. margin-top: 30px;
  25. position: relative;
  26. &:first-child {
  27. margin-top: 0;
  28. }
  29. .left {
  30. flex-shrink: 0;
  31. width: 90px;
  32. display: flex;
  33. align-items: center;
  34. justify-content: center;
  35. height: 38px;
  36. align-self: flex-start;
  37. p {
  38. text-align: left;
  39. height: 21px;
  40. font-size: 15px;
  41. color: rgba(46, 55, 67, 1);
  42. line-height: 21px;
  43. font-weight: 500;
  44. }
  45. }
  46. .right {
  47. flex-grow: 1;
  48. display: flex;
  49. justify-content: flex-start;
  50. flex-wrap: wrap;
  51. .cell {
  52. width: 88px;
  53. height: 38px;
  54. border-radius: 2px;
  55. border: 1px solid rgba(239, 239, 239, 1);
  56. display: flex;
  57. justify-content: center;
  58. align-items: center;
  59. margin-left: 10px;
  60. cursor: pointer;
  61. &:nth-child(8n+1), &:first-child {
  62. margin-left: 0;
  63. }
  64. &:nth-child(n+9) {
  65. margin-top: 10px;
  66. }
  67. p {
  68. height: 20px;
  69. font-size: 14px;
  70. font-weight: 400;
  71. color: rgba(85, 85, 85, 1);
  72. line-height: 20px;
  73. }
  74. &.selected {
  75. border: 1px solid rgba(48, 142, 255, 1);
  76. p {
  77. color: rgba(48, 142, 255, 1);
  78. font-weight: 500;
  79. height: 21px;
  80. font-size: 15px;
  81. line-height: 21px;
  82. }
  83. }
  84. }
  85. }
  86. .more {
  87. position: absolute;
  88. right: 0;
  89. top: 0;
  90. line-height: 38px;
  91. color: #999;
  92. cursor: pointer;
  93. }
  94. }
  95. }
  96. .listArea {
  97. //margin-top: 80px;
  98. .sTitle {
  99. height: 25px;
  100. font-size: 18px;
  101. font-weight: 500;
  102. color: rgba(34, 34, 34, 1);
  103. line-height: 25px;
  104. margin-bottom: 14px;
  105. }
  106. .list {
  107. .cell {
  108. background: #FFF;
  109. display: flex;
  110. justify-content: center;
  111. height: 180px;
  112. width: 100%;
  113. margin-top: 10px;
  114. cursor: pointer;
  115. flex-direction: column;
  116. padding: 30px 20px;
  117. .topArea {
  118. width: 100%;
  119. height: 24px;
  120. display: flex;
  121. justify-content: space-between;
  122. align-items: center;
  123. .left {
  124. height:24px;
  125. font-size:17px;
  126. font-weight:500;
  127. color:rgba(34,34,34,1);
  128. line-height:24px;
  129. }
  130. .right {
  131. height:22px;
  132. font-size:19px;
  133. font-weight:bold;
  134. color:rgba(255,51,30,1);
  135. line-height:22px;
  136. }
  137. }
  138. .workDesc {
  139. width: 100%;
  140. margin-top: 5px;
  141. height:25px;
  142. font-size:13px;
  143. font-weight:500;
  144. color:rgba(102,102,102,1);
  145. line-height:25px;
  146. text-align: left;
  147. }
  148. .labelList {
  149. margin-top: 5px;
  150. width: 100%;
  151. display: flex;
  152. .label {
  153. margin-left: 10px;
  154. background:rgba(238,238,238,1);
  155. border-radius:1px;
  156. box-sizing: content-box;
  157. padding: 3px 10px;
  158. &:nth-child(1) {
  159. margin-left: 0;
  160. }
  161. p {
  162. height:17px;
  163. font-size:12px;
  164. font-weight:400;
  165. color:rgba(102,102,102,1);
  166. line-height:17px;
  167. }
  168. }
  169. }
  170. .companyInfo {
  171. margin-top: 20px;
  172. display: flex;
  173. width: 100%;
  174. justify-content: flex-start;
  175. align-items: center;
  176. .logo {
  177. width:20px;
  178. height:20px;
  179. font-size: 0;
  180. img {
  181. width:20px;
  182. height:20px;
  183. border-radius: 2px;
  184. }
  185. }
  186. .companyName {
  187. margin-left: 7px;
  188. height:18px;
  189. font-size:13px;
  190. font-weight:400;
  191. color:rgba(51,51,51,1);
  192. line-height:18px;
  193. text-align: left;
  194. }
  195. }
  196. }
  197. .noneData {
  198. min-height: 100px;
  199. display: flex;
  200. justify-content: center;
  201. align-items: center;
  202. p {
  203. text-align: center;
  204. }
  205. }
  206. }
  207. }
  208. }
  209. .pagination {
  210. margin-top: 70px;
  211. text-align: center;
  212. }
  213. }
  214. .main {
  215. margin-top: 0 !important;
  216. &.isMobile {
  217. width: 100vw;
  218. }
  219. }