major-detail-style.scss 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104
  1. .professDetail {
  2. .header-content {
  3. top: 0;
  4. left: 0;
  5. width: 100%;
  6. height: 100%;
  7. background: var(--themeColor);
  8. }
  9. .custom-tree-node {
  10. display: flex;
  11. justify-content: space-between;
  12. align-items: center;
  13. width: 100%;
  14. overflow: hidden;
  15. }
  16. .tabs-wrap {
  17. margin-top: 20px;
  18. height: 40px;
  19. .tabs-item {
  20. cursor: pointer;
  21. padding: 0 33px;
  22. border-radius: 4px 4px 0 0;
  23. display: inline-block;
  24. line-height: 40px;
  25. &:hover {
  26. color: var(--themeColor);
  27. }
  28. &.bg-primary {
  29. background: var(--themeColor);
  30. color: white;
  31. }
  32. }
  33. }
  34. .bg-primary {
  35. background: var(--themeColor) !important;
  36. color: white;
  37. }
  38. .format-tit {
  39. border-left: 4px solid var(--themeColor);
  40. padding-left: 10px;
  41. margin-bottom: 20px;
  42. font-size: 20px;
  43. }
  44. .desc-item {
  45. margin-bottom: 40px;
  46. }
  47. .format-job-wrap {
  48. display: flex;
  49. height: 44px;
  50. line-height: 44px;
  51. border-bottom: 1px solid #f2f2f2;
  52. }
  53. .line {
  54. background: var(--themeColor);
  55. height: 1px;
  56. }
  57. .el-tabs--border-card ::v-deep .el-tabs__content {
  58. height: calc(100vh - 176px);
  59. overflow: hidden;
  60. overflow-y: auto;
  61. }
  62. ::v-deep .el-tree-node.is-current > .el-tree-node__content {
  63. background: rgba(22, 119, 255, 0.1);
  64. color: var(--themeColor);
  65. ::v-deep .is-leaf {
  66. color: rgba(0, 0, 0, 0);
  67. }
  68. }
  69. .info-wrap {
  70. display: flex;
  71. align-items: center;
  72. .info-item {
  73. display: flex;
  74. margin-right: 50px;
  75. .el-image {
  76. width: 50px;
  77. }
  78. div {
  79. display: flex;
  80. flex-direction: column;
  81. justify-content: space-between;
  82. }
  83. }
  84. }
  85. }