index.less 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394
  1. .label {
  2. color: #c4c4c4;
  3. }
  4. .topnavigator {
  5. // margin-top: 18px;
  6. position: absolute;
  7. top: 165px;
  8. left: 0;
  9. z-index: 1;
  10. box-sizing: border-box;
  11. width: 1340px;
  12. // display: flex;
  13. height: 63px;
  14. text-decoration: none;
  15. background: #fff;
  16. user-select: none;
  17. tap-highlight-color: rgba(0, 0, 0, 0);
  18. .floor {
  19. display: flex;
  20. align-items: center;
  21. float: left;
  22. //justify-content: center;
  23. width: 120px;
  24. height: 100%;
  25. border-right: 1px solid rgba(196, 196, 196, 0.4);
  26. }
  27. .navigator {
  28. display: flex;
  29. float: left;
  30. height: 100%;
  31. .navItem {
  32. display: flex;
  33. flex-direction: column;
  34. align-items: center;
  35. justify-content: center;
  36. box-sizing: border-box;
  37. width: 55px;
  38. height: 100%;
  39. margin: 0 20px;
  40. padding-top: 5px;
  41. font-size: 12px;
  42. border-bottom: 3px solid transparent;
  43. cursor: pointer;
  44. .text {
  45. margin-top: 4px;
  46. color: #000;
  47. text-align: center;
  48. }
  49. }
  50. }
  51. .right {
  52. display: flex;
  53. flex-direction: column;
  54. justify-content: center;
  55. float: right;
  56. width: 220px;
  57. height: 100%;
  58. white-space: nowrap;
  59. .firstLine {
  60. display: flex;
  61. align-items: center;
  62. height: 28px;
  63. font-weight: 600;
  64. sup {
  65. top: 0;
  66. line-height: 1;
  67. }
  68. .line {
  69. height: 22px;
  70. margin: 0 12px;
  71. border-left: 1px solid rgba(196, 196, 196, 0.4);
  72. }
  73. .level {
  74. color: #4d5262;
  75. font-size: 14px;
  76. font-family: PingFang SC;
  77. }
  78. }
  79. .value {
  80. margin-right: 2px;
  81. // color: #e5574f;
  82. font-size: 28px;
  83. font-family: Montserrat;
  84. }
  85. .unit {
  86. // color: #e5574f;
  87. }
  88. .text {
  89. margin-top: 2px;
  90. color: #c4c4c4;
  91. font-size: 12px;
  92. }
  93. }
  94. }