company.css 1.9 KB

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