index.scss 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106
  1. @import "../scssCommon";
  2. .companyList {
  3. .contentArea {
  4. background-color: #f7f7f7;
  5. width: 1000px;
  6. margin: 0 auto;
  7. box-sizing: border-box;
  8. .filter-box {
  9. padding: 20px;
  10. background: #ffffff;
  11. display: flex;
  12. flex-direction: column;
  13. box-sizing: border-box;
  14. .filter-title {
  15. font-weight: 600;
  16. font-size: 15px;
  17. padding: 0;
  18. margin: 24px 0 14px;
  19. line-height: 20px;
  20. }
  21. .filter-content {
  22. margin-top: 20px;
  23. display: flex;
  24. flex-flow: row wrap;
  25. a {
  26. width: 66px;
  27. height: 30px;
  28. line-height: 30px;
  29. text-align: center;
  30. font-size: 13px;
  31. }
  32. .notOn {
  33. color: #555555;
  34. }
  35. .on {
  36. border: 1px solid #308EFF;
  37. border-radius: 3px;
  38. color: #258fe6;
  39. }
  40. }
  41. }
  42. .company-list-wrapper {
  43. margin-top: 10px;
  44. background: #ffffff;
  45. display: flex;
  46. flex-direction: column;
  47. .company-item {
  48. padding: 0 20px;
  49. height: 100px;
  50. display: flex;
  51. align-items: center;
  52. text-decoration: none;
  53. .logo {
  54. width: 60px;
  55. height: 60px;
  56. border-radius: 5px;
  57. }
  58. .company-info {
  59. margin-left: 20px;
  60. flex-grow: 1;
  61. .name {
  62. font-size: 18px;
  63. height: 25px;
  64. line-height: 25px;
  65. color: #222222;
  66. margin: 0;
  67. font-weight: 700;
  68. }
  69. .intro {
  70. margin-right: 20px;
  71. height: 17px;
  72. line-height: 17px;
  73. color: #666666;
  74. overflow: hidden;
  75. text-overflow: ellipsis;
  76. white-space: nowrap;
  77. }
  78. }
  79. .recruit-info {
  80. flex-shrink: 0;
  81. display: flex;
  82. flex-direction: column;
  83. align-items: center;
  84. justify-content: center;
  85. .num {
  86. font-size: 25px;
  87. height: 30px;
  88. line-height: 30px;
  89. font-weight: 700;
  90. color: #308eff;
  91. margin: 0;
  92. }
  93. .title {
  94. font-size: 12px;
  95. color: #666666;
  96. }
  97. }
  98. }
  99. }
  100. }
  101. .pagination {
  102. margin: 20px auto;
  103. text-align: center;
  104. }
  105. }