index.less 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394
  1. @import '../../app.less';
  2. .module.panel {
  3. .header {
  4. text-align: center;
  5. color: @night-blue;
  6. height: 44px;
  7. line-height: 44px;
  8. border-bottom: 1px solid @line_color;
  9. .assets {
  10. transform: translateY(-1px);
  11. margin-left: 5px;
  12. cursor: pointer;
  13. }
  14. .assets:hover {
  15. color: @theme_color;
  16. }
  17. }
  18. .body {
  19. min-height: 356px;
  20. padding: 32px 44px;
  21. .chart-info {
  22. height: 110px;
  23. margin-bottom: 24px;
  24. .chart {
  25. height: 110px;
  26. width: 110px;
  27. margin-right: 22px;
  28. display: inline-block;
  29. }
  30. .info {
  31. display: inline-block;
  32. vertical-align: top;
  33. padding-top: 24px;
  34. .item {
  35. display: inline-block;
  36. margin-right: 24px;
  37. .title {
  38. color: @bluey-grey;
  39. font-size: 12px;
  40. }
  41. .data {
  42. color: @bluey-grey;
  43. font-size: 12px;
  44. .text {
  45. font-size: 18px;
  46. color: @night-blue;
  47. margin-right: 2px;
  48. }
  49. }
  50. }
  51. }
  52. }
  53. .list {
  54. .item {
  55. display: inline-block;
  56. }
  57. }
  58. .list.col-3 {
  59. margin: 0 -9px -12px;
  60. .item {
  61. width: 120px;
  62. margin-bottom: 12px;
  63. margin-left: 9px;
  64. margin-right: 9px;
  65. }
  66. }
  67. .list.col-4 {
  68. margin: 0 -10px -12px;
  69. .item {
  70. width: 84px;
  71. margin-bottom: 12px;
  72. margin-left: 10px;
  73. margin-right: 10px;
  74. }
  75. }
  76. }
  77. }