company.css 1.7 KB

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