style.scss 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106
  1. @import "@/assets/styles/common.scss";
  2. .host-analysis{
  3. margin: -10px;
  4. .top-right-btn{
  5. position: absolute;
  6. z-index: 111;
  7. right:15px;
  8. top:14px;
  9. }
  10. .tab-content{
  11. @include flexBetween();
  12. width: 100%;
  13. flex-wrap: wrap;
  14. .t-c-row{
  15. width: 48%;
  16. margin-bottom: 20px;
  17. .top-title{
  18. font-weight: bolder;
  19. margin-bottom:10px;
  20. padding:10px ;
  21. color:#666;
  22. font-size: 14px;
  23. }
  24. }
  25. }
  26. .sub-tip{
  27. text-align: center;
  28. font-size: 12px;
  29. color:#888;
  30. @include flexCenter;
  31. .tip-alarm{
  32. width: 20px;
  33. height:10px;
  34. background: #409EFF;
  35. display: inline-block;
  36. margin:0 5px;
  37. border-radius: 5px;
  38. }
  39. .tip-title{
  40. @extend .tip-alarm;
  41. background: #e6a23c;
  42. }
  43. }
  44. .top-style{
  45. margin:10px 0;
  46. @include flexStart();
  47. cursor: pointer;
  48. &:last-child{
  49. margin-bottom:0;
  50. }
  51. .index{
  52. width: 20px;
  53. font-size: 12px;
  54. text-align: center;
  55. line-height: 18px;
  56. display: inline-block;
  57. background: #A1B3D2;
  58. border-radius: 100%;
  59. color:white;
  60. margin-right:10px;
  61. }
  62. .progress-row{
  63. width: 100%;
  64. color: #6f7988;
  65. font-size: 12px;
  66. .progress-bg{
  67. background: #A1B3D280;
  68. height:12px;
  69. width: 100%;
  70. border-radius: 6px;
  71. margin-top:5px;
  72. @include flexStart;
  73. font-size: 12px;
  74. .progress-bar{
  75. height:12px;
  76. border-radius: 6px;
  77. background: #A1B3D2;
  78. margin-right:5px;
  79. transition: all .3s;
  80. }
  81. }
  82. .row-flex{
  83. @include flexStart;
  84. margin-top:5px;
  85. }
  86. .progress-alarm{
  87. width: 48%;
  88. .alarms{
  89. background: #409EFF;
  90. line-height:12px;
  91. font-size: 12px;
  92. color:white;
  93. border-radius: 6px;
  94. transition: all .3s;
  95. @include flexCenter;
  96. }
  97. .time{
  98. background: #e6a23c;
  99. @extend .alarms;
  100. }
  101. }
  102. }
  103. }
  104. }