index.scss 3.5 KB

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