WorkAnalysisDetail.less 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192
  1. .title {
  2. display: flex;
  3. justify-content: space-between;
  4. align-items: center;
  5. font-size: 32px;
  6. color: #4a90e2;
  7. padding: 40px 20px;
  8. margin-top: 52px;
  9. background: #d9e7f9;
  10. box-shadow: 0px 0px 12px 7px rgba(40, 94, 120, 0.03);
  11. border-radius: 16px;
  12. span {
  13. color: #f5a623;
  14. }
  15. }
  16. .form {
  17. margin-bottom: 14px;
  18. display: flex;
  19. align-items: center;
  20. justify-content: space-between;
  21. }
  22. .dateTabs {
  23. display: flex;
  24. border: 1px solid #d5d5d5;
  25. height: 60px;
  26. .dateTabsItem {
  27. width: 128px;
  28. text-align: center;
  29. cursor: pointer;
  30. border-right: 1px solid #d5d5d5;
  31. line-height: 60px;
  32. font-size: 24px;
  33. font-weight: 400;
  34. color: #4a4a4a;
  35. &:last-child {
  36. border-right: none;
  37. }
  38. &.active {
  39. background: #4a90e2;
  40. color: #fff;
  41. }
  42. }
  43. }
  44. .chartBox {
  45. padding-bottom: 40px;
  46. }
  47. .pageContent {
  48. :global {
  49. .ant-collapse {
  50. border: none !important;
  51. }
  52. .ant-collapse > .ant-collapse-item {
  53. border-radius: 8px;
  54. box-shadow: 0px 0px 8px 2px rgba(191, 191, 191, 0.2);
  55. border: 1px solid #eee;
  56. background: #4a4a4a;
  57. padding: 0 30px;
  58. margin-bottom: 30px;
  59. > .ant-collapse-header {
  60. background: transparent;
  61. color: #4a4a4a;
  62. height: 108px;
  63. font-size: 28px;
  64. padding: 0;
  65. border-bottom: 1px solid transparent;
  66. display: flex;
  67. align-items: center;
  68. .ant-collapse-arrow {
  69. font-size: 28px;
  70. right: 0;
  71. color: #c0c2c8;
  72. }
  73. .ant-collapse-extra {
  74. position: absolute;
  75. right: 30px;
  76. }
  77. }
  78. }
  79. .ant-collapse-expand-icon {
  80. order: 0 !important;
  81. }
  82. .ant-collapse-content {
  83. padding: 0;
  84. border-top: none;
  85. }
  86. .ant-collapse-content-box {
  87. padding: 0 !important;
  88. }
  89. }
  90. }