company.scss 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113
  1. // 筛选样式
  2. .label-title {
  3. width: 64px;
  4. font-weight: 500;
  5. margin-right: 24px;
  6. color: var(--color-222);
  7. }
  8. .label-content {
  9. flex: 1;
  10. }
  11. .label-color {
  12. color: var(--color-222);
  13. font-size: 14px;
  14. margin-right: 24px;
  15. display: inline-block;
  16. cursor: pointer;
  17. &:hover {
  18. color: var(--v-primary-base);
  19. }
  20. }
  21. .actives {
  22. color: var(--v-primary-base);
  23. font-weight: 600;
  24. }
  25. // 公司列表
  26. .company-box {
  27. display: flex;
  28. flex-wrap: wrap;
  29. }
  30. .sub-li {
  31. position: relative;
  32. width: calc((100% - 24px) / 3);
  33. min-width: calc((100% - 24px) / 3);
  34. max-width: calc((100% - 24px) / 3);
  35. margin: 0 12px 12px 0;
  36. height: 160px;
  37. border-radius: 12px;
  38. padding: 0;
  39. overflow: hidden;
  40. transition: all .2s linear;
  41. background-color: #fff;
  42. cursor: pointer;
  43. &:nth-child(3n) {
  44. margin-right: 0;
  45. }
  46. &:hover {
  47. box-shadow: 0 16px 40px 0 rgba(153, 153, 153, .3);
  48. }
  49. }
  50. .company-info {
  51. float: left;
  52. margin-left: 16px;
  53. width: 282px;
  54. }
  55. .company-info-top {
  56. display: flex;
  57. height: 90px;
  58. line-height: 90px;
  59. padding: 0 20px;
  60. align-items: center;
  61. overflow: hidden;
  62. }
  63. .company-info h3 {
  64. height: 22px;
  65. font-size: 18px;
  66. font-weight: 700;
  67. color: var(--color-333);
  68. line-height: 22px;
  69. margin: 0 0 4px 0;
  70. padding: 0;
  71. max-width: 100%;
  72. overflow: hidden;
  73. white-space: nowrap;
  74. text-overflow: ellipsis;
  75. }
  76. .company-info p {
  77. height: 18px;
  78. font-size: 13px;
  79. font-weight: 400;
  80. color: var(--color-999);
  81. line-height: 18px;
  82. }
  83. .company-info-bottom {
  84. // width: 100%;
  85. height: 70px;
  86. // margin: 10px 15px;
  87. }
  88. .name {
  89. position: relative;
  90. line-height: 22px;
  91. color: #404040;
  92. margin-right: 8px;
  93. overflow: hidden;
  94. text-overflow: ellipsis;
  95. white-space: nowrap;
  96. transition: all linear .2s;
  97. }
  98. .salary {
  99. font-size: 16px;
  100. float: right;
  101. color: var(--v-error-base);
  102. line-height: 22px;
  103. max-width: none;
  104. text-align: right;
  105. flex: 1;
  106. }
  107. .job-hover:hover {
  108. color: var(--v-primary-base);
  109. background-color: #f2f4f7;
  110. }