company.scss 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102
  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: 183px;
  37. border-radius: 12px;
  38. padding: 0;
  39. overflow: hidden;
  40. transition: all .2s linear;
  41. background-color: #fff;
  42. box-shadow: 0 2px 20px 0 rgba(37, 39, 48, .2);
  43. &:nth-child(3n) {
  44. margin-right: 0;
  45. }
  46. }
  47. .company-info {
  48. float: left;
  49. margin-left: 16px;
  50. width: 282px;
  51. }
  52. .company-info-top {
  53. display: flex;
  54. height: 70px;
  55. line-height: 90px;
  56. align-items: center;
  57. overflow: hidden;
  58. }
  59. .company-info h3 {
  60. height: 22px;
  61. font-size: 18px;
  62. font-weight: 700;
  63. color: #0E100F;
  64. line-height: 22px;
  65. margin: 0 0 4px 0;
  66. padding: 0;
  67. max-width: 100%;
  68. overflow: hidden;
  69. white-space: nowrap;
  70. text-overflow: ellipsis;
  71. }
  72. .company-info p {
  73. height: 18px;
  74. font-size: 13px;
  75. font-weight: 400;
  76. color: var(--color-999);
  77. line-height: 18px;
  78. }
  79. .company-info-bottom {
  80. height: 70px;
  81. }
  82. .name {
  83. position: relative;
  84. line-height: 22px;
  85. margin-right: 8px;
  86. overflow: hidden;
  87. text-overflow: ellipsis;
  88. white-space: nowrap;
  89. transition: all linear .2s;
  90. }
  91. .salary {
  92. font-size: 16px;
  93. float: right;
  94. color: var(--v-primary-base);
  95. line-height: 22px;
  96. max-width: none;
  97. text-align: right;
  98. flex: 1;
  99. }