anomaly-dashboard.scss 20 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985
  1. .anomaly-dashboard-page {
  2. height: 100%;
  3. min-height: 0;
  4. position: relative;
  5. display: flex;
  6. flex-direction: column;
  7. padding: 10px;
  8. box-sizing: border-box;
  9. font-family: "Microsoft YaHei", system-ui, sans-serif;
  10. overflow-x: hidden;
  11. *,
  12. *::before,
  13. *::after {
  14. box-sizing: border-box;
  15. }
  16. .anomaly-page__body {
  17. flex: 1;
  18. min-height: 0;
  19. overflow-y: auto;
  20. }
  21. .anomaly-top-grid {
  22. display: grid;
  23. grid-template-columns: 1fr;
  24. gap: 12px;
  25. min-height: 520px;
  26. }
  27. @media (min-width: 1024px) {
  28. .anomaly-top-grid {
  29. grid-template-columns: repeat(3, minmax(0, 1fr));
  30. }
  31. }
  32. .anomaly-overview-card {
  33. padding: 16px;
  34. height: 100%;
  35. display: flex;
  36. flex-direction: column;
  37. }
  38. .anomaly-overview-stats {
  39. display: grid;
  40. grid-template-columns: 1fr 1px 1fr;
  41. align-items: stretch;
  42. gap: 16px;
  43. margin-top: 8px;
  44. }
  45. .anomaly-overview-ring-wrap {
  46. display: flex;
  47. flex-direction: column;
  48. align-items: center;
  49. justify-content: center;
  50. padding: 12px 0;
  51. }
  52. .anomaly-overview-ring {
  53. width: 80px;
  54. height: 80px;
  55. border-radius: 50%;
  56. display: flex;
  57. align-items: center;
  58. justify-content: center;
  59. .anomaly-num {
  60. font-size: 32px;
  61. line-height: 1;
  62. }
  63. }
  64. .anomaly-overview-ring-label {
  65. margin-top: 16px;
  66. font-size: 13px;
  67. font-weight: 500;
  68. }
  69. .anomaly-overview-side {
  70. display: flex;
  71. flex-direction: column;
  72. justify-content: center;
  73. min-height: 0;
  74. padding: 4px 0;
  75. }
  76. .anomaly-overview-watchlist {
  77. display: flex;
  78. flex-direction: column;
  79. height: 100%;
  80. min-height: 120px;
  81. max-height: 168px;
  82. overflow: hidden;
  83. }
  84. .anomaly-overview-watchlist__head {
  85. display: grid;
  86. grid-template-columns: 1fr 52px;
  87. gap: 8px;
  88. align-items: end;
  89. padding: 0 4px 8px;
  90. border-bottom: 1px solid rgba(141, 171, 194, 0.22);
  91. flex-shrink: 0;
  92. }
  93. .anomaly-overview-watchlist__title {
  94. grid-column: 1 / -1;
  95. font-size: 12px;
  96. font-weight: 600;
  97. line-height: 1.4;
  98. }
  99. .anomaly-overview-watchlist__col {
  100. font-size: 11px;
  101. line-height: 1.3;
  102. opacity: 0.85;
  103. }
  104. .anomaly-overview-watchlist__col--action {
  105. text-align: right;
  106. }
  107. .anomaly-overview-watchlist__empty {
  108. display: flex;
  109. align-items: center;
  110. justify-content: center;
  111. flex: 1;
  112. min-height: 88px;
  113. font-size: 12px;
  114. color: var(--anomaly-muted, #909399);
  115. }
  116. .anomaly-overview-watchlist__list {
  117. flex: 1;
  118. min-height: 0;
  119. overflow-y: auto;
  120. margin: 0;
  121. padding: 4px 0 0;
  122. list-style: none;
  123. }
  124. .anomaly-overview-watchlist__row {
  125. display: grid;
  126. grid-template-columns: 1fr 52px;
  127. gap: 8px;
  128. align-items: center;
  129. min-height: 32px;
  130. padding: 4px 4px;
  131. border-radius: 4px;
  132. transition: background-color 0.2s ease;
  133. &:hover {
  134. background: rgba(34, 211, 238, 0.06);
  135. }
  136. }
  137. .anomaly-overview-watchlist__name {
  138. min-width: 0;
  139. font-size: 12px;
  140. font-weight: 500;
  141. line-height: 1.4;
  142. overflow: hidden;
  143. text-overflow: ellipsis;
  144. white-space: nowrap;
  145. }
  146. .anomaly-overview-watchlist__detail {
  147. display: inline-flex;
  148. align-items: center;
  149. justify-content: flex-end;
  150. gap: 2px;
  151. padding: 0;
  152. border: 0;
  153. background: transparent;
  154. font-size: 11px;
  155. line-height: 1.4;
  156. cursor: pointer;
  157. white-space: nowrap;
  158. .el-icon-arrow-right {
  159. font-size: 11px;
  160. }
  161. }
  162. .anomaly-stat-card {
  163. display: flex;
  164. align-items: center;
  165. gap: 12px;
  166. padding: 12px;
  167. border-radius: 12px;
  168. }
  169. .anomaly-stat-icon {
  170. width: 48px;
  171. height: 48px;
  172. border-radius: 12px;
  173. display: flex;
  174. align-items: center;
  175. justify-content: center;
  176. flex-shrink: 0;
  177. font-size: 20px;
  178. font-weight: 700;
  179. }
  180. .anomaly-stat-label {
  181. font-size: 12px;
  182. font-weight: 500;
  183. line-height: 1.3;
  184. }
  185. .anomaly-stat-ratio {
  186. font-size: 10px;
  187. margin-top: 4px;
  188. }
  189. .anomaly-radar-wrap {
  190. margin-top: 14px;
  191. padding-top: 14px;
  192. display: grid;
  193. grid-template-columns: 1fr 1fr;
  194. gap: 8px;
  195. }
  196. .anomaly-radar-panel {
  197. min-width: 0;
  198. border-radius: 10px;
  199. padding: 10px 8px 4px;
  200. overflow: hidden;
  201. }
  202. .anomaly-radar-panel-head {
  203. display: flex;
  204. justify-content: space-between;
  205. align-items: center;
  206. gap: 2px;
  207. padding: 0 6px 4px;
  208. }
  209. .anomaly-radar-panel-title {
  210. font-size: 14px;
  211. font-weight: 600;
  212. display: flex;
  213. align-items: center;
  214. gap: 4px;
  215. }
  216. .anomaly-radar-panel-unit {
  217. font-size: 10px;
  218. white-space: nowrap;
  219. }
  220. .anomaly-radar-chart {
  221. width: 100%;
  222. height: 220px;
  223. }
  224. .anomaly-heatmap-card {
  225. padding: 12px;
  226. height: 100%;
  227. display: flex;
  228. flex-direction: column;
  229. min-height: 520px;
  230. }
  231. .anomaly-heatmap-chart {
  232. flex: 1;
  233. min-height: 0;
  234. width: 100%;
  235. }
  236. .anomaly-carousel-card {
  237. padding: 12px;
  238. margin-top: 12px;
  239. }
  240. .anomaly-carousel-head {
  241. display: flex;
  242. align-items: center;
  243. justify-content: space-between;
  244. margin-bottom: 12px;
  245. }
  246. .anomaly-carousel-controls {
  247. display: flex;
  248. align-items: center;
  249. gap: 8px;
  250. position: relative;
  251. z-index: 5;
  252. flex-shrink: 0;
  253. }
  254. .anomaly-carousel-btn {
  255. width: 28px;
  256. height: 28px;
  257. border-radius: 50%;
  258. display: inline-flex;
  259. align-items: center;
  260. justify-content: center;
  261. cursor: pointer;
  262. transition: background 0.2s ease;
  263. padding: 0;
  264. }
  265. .anomaly-carousel-dots {
  266. display: flex;
  267. align-items: center;
  268. gap: 10px;
  269. padding: 6px 10px;
  270. margin: 0 4px;
  271. }
  272. .anomaly-carousel-dot {
  273. width: 10px;
  274. height: 10px;
  275. border-radius: 50%;
  276. cursor: pointer;
  277. flex-shrink: 0;
  278. position: relative;
  279. z-index: 6;
  280. transition: all 0.2s ease;
  281. }
  282. .anomaly-carousel-chart {
  283. height: 340px;
  284. width: 100%;
  285. position: relative;
  286. z-index: 1;
  287. }
  288. .anomaly-wind-list-head {
  289. display: flex;
  290. align-items: center;
  291. justify-content: space-between;
  292. gap: 12px;
  293. margin: 12px 0 8px;
  294. }
  295. .anomaly-wind-list-title {
  296. margin: 0;
  297. font-size: 14px;
  298. font-weight: 600;
  299. }
  300. .anomaly-wind-list-sort {
  301. display: inline-flex;
  302. align-items: center;
  303. gap: 6px;
  304. flex-shrink: 0;
  305. }
  306. .anomaly-wind-list-sort__label {
  307. font-size: 12px;
  308. color: var(--anomaly-muted, #8db6d1);
  309. }
  310. .anomaly-wind-list-sort__select {
  311. width: 108px;
  312. }
  313. .anomaly-wind-grid {
  314. display: grid;
  315. grid-template-columns: repeat(1, minmax(0, 1fr));
  316. gap: 12px;
  317. padding-bottom: 12px;
  318. }
  319. @media (min-width: 768px) {
  320. .anomaly-wind-grid {
  321. grid-template-columns: repeat(2, minmax(0, 1fr));
  322. }
  323. }
  324. @media (min-width: 1280px) {
  325. .anomaly-wind-grid {
  326. grid-template-columns: repeat(4, minmax(0, 1fr));
  327. }
  328. }
  329. .anomaly-wind-empty-card {
  330. grid-column: 1 / -1;
  331. min-height: 160px;
  332. display: flex;
  333. align-items: center;
  334. justify-content: center;
  335. padding: 24px 12px;
  336. }
  337. .anomaly-wind-empty-card__text {
  338. font-size: 14px;
  339. letter-spacing: 0.5px;
  340. }
  341. .anomaly-wind-card {
  342. position: relative;
  343. min-height: 200px;
  344. padding: 12px;
  345. }
  346. .anomaly-wind-card__header {
  347. display: flex;
  348. align-items: center;
  349. justify-content: space-between;
  350. gap: 8px;
  351. margin-bottom: 10px;
  352. }
  353. .anomaly-wind-card__title-wrap {
  354. min-width: 0;
  355. flex: 1;
  356. }
  357. .anomaly-wind-card__meta {
  358. display: flex;
  359. flex-wrap: wrap;
  360. gap: 4px 10px;
  361. margin-top: 6px;
  362. }
  363. .anomaly-wind-card__meta-item {
  364. font-size: 11px;
  365. line-height: 1.3;
  366. color: var(--anomaly-muted, #8da3c7);
  367. max-width: 100%;
  368. overflow: hidden;
  369. text-overflow: ellipsis;
  370. white-space: nowrap;
  371. }
  372. .anomaly-wind-card__modules {
  373. display: flex;
  374. flex-direction: column;
  375. gap: 10px;
  376. }
  377. .anomaly-wind-module {
  378. padding: 8px;
  379. border-radius: 6px;
  380. background: rgba(0, 36, 64, 0.22);
  381. border: 1px solid rgba(126, 172, 199, 0.18);
  382. }
  383. .anomaly-wind-module__title {
  384. margin-bottom: 8px;
  385. font-size: 11px;
  386. font-weight: 600;
  387. line-height: 1.2;
  388. color: var(--anomaly-title, #b7dff5);
  389. }
  390. .anomaly-wind-module--sensor {
  391. .anomaly-wind-sensors {
  392. font-size: 11px;
  393. line-height: 1.5;
  394. word-break: break-all;
  395. }
  396. }
  397. .anomaly-wind-turbine {
  398. grid-column: 3;
  399. grid-row: 1;
  400. display: flex;
  401. align-items: center;
  402. justify-content: center;
  403. min-height: 0;
  404. opacity: 0.9;
  405. }
  406. .anomaly-wind-turbine__icon {
  407. width: 100%;
  408. max-width: 96px;
  409. height: auto;
  410. max-height: 92px;
  411. display: block;
  412. object-fit: contain;
  413. }
  414. .anomaly-wind-id {
  415. flex-shrink: 0;
  416. font-size: 12px;
  417. font-weight: 700;
  418. line-height: 1;
  419. padding: 4px 8px;
  420. border-radius: 10px;
  421. }
  422. .anomaly-wind-metrics {
  423. display: grid;
  424. grid-template-columns: repeat(3, minmax(0, 1fr));
  425. grid-template-rows: auto auto;
  426. gap: 12px 8px;
  427. align-items: center;
  428. }
  429. .anomaly-wind-metric {
  430. display: flex;
  431. flex-direction: column;
  432. align-items: center;
  433. justify-content: center;
  434. text-align: center;
  435. min-width: 0;
  436. .anomaly-num {
  437. display: block;
  438. font-size: 18px;
  439. line-height: 1.4;
  440. }
  441. .anomaly-num--high {
  442. color: #f56c6c;
  443. }
  444. }
  445. .anomaly-wind-metric--wind {
  446. grid-column: 1;
  447. grid-row: 1;
  448. }
  449. .anomaly-wind-metric--yaw {
  450. grid-column: 2;
  451. grid-row: 1;
  452. }
  453. .anomaly-wind-metric--pitch {
  454. grid-column: 1;
  455. grid-row: 2;
  456. }
  457. .anomaly-wind-metric--run {
  458. grid-column: 2;
  459. grid-row: 2;
  460. }
  461. .anomaly-wind-metric--aero {
  462. grid-column: 3;
  463. grid-row: 2;
  464. }
  465. .anomaly-wind-label {
  466. display: block;
  467. margin-top: 4px;
  468. font-size: 11px;
  469. line-height: 1.35;
  470. min-height: 2.8em;
  471. word-break: break-all;
  472. }
  473. .anomaly-wind-sensors {
  474. min-width: 0;
  475. font-size: 11px;
  476. line-height: 1.5;
  477. }
  478. .anomaly-wind-detail__btn {
  479. flex-shrink: 0;
  480. display: inline-flex;
  481. align-items: center;
  482. gap: 4px;
  483. padding: 4px 12px;
  484. border-radius: 4px;
  485. font-size: 11px;
  486. line-height: 1.4;
  487. cursor: pointer;
  488. transition: all 0.25s ease;
  489. background: rgba(34, 211, 238, 0.08);
  490. border: 1px solid rgba(103, 232, 249, 0.45);
  491. color: #67e8f9;
  492. &:hover {
  493. background: rgba(34, 211, 238, 0.18);
  494. border-color: rgba(103, 232, 249, 0.75);
  495. color: #a5f3fc;
  496. }
  497. }
  498. .anomaly-wind-detail__icon {
  499. font-size: 12px;
  500. }
  501. /* —— 非科技蓝:浅色业务主题 —— */
  502. html:not([data-theme="tech-blue"]) & {
  503. background-color: var(--anomaly-page-bg, var(--content-bg, #f5f7fa));
  504. color: var(--anomaly-page-text, #303133);
  505. .el-loading-mask {
  506. background-color: var(--anomaly-loading-bg, rgba(255, 255, 255, 0.72)) !important;
  507. }
  508. .anomaly-card {
  509. background: var(--anomaly-card-bg, #ffffff);
  510. border: 1px solid var(--anomaly-card-border, #ebeef5);
  511. border-radius: 8px;
  512. box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  513. }
  514. .anomaly-title {
  515. color: var(--anomaly-title, #303133);
  516. font-size: 14px;
  517. font-weight: 600;
  518. margin-bottom: 10px;
  519. display: flex;
  520. align-items: center;
  521. gap: 6px;
  522. }
  523. .anomaly-num {
  524. color: var(--anomaly-num, var(--primary-color, #82780c));
  525. font-weight: 700;
  526. }
  527. .anomaly-overview-ring {
  528. border: 1px solid var(--anomaly-ring-border, #dcdfe6);
  529. background: var(--anomaly-ring-bg, #f5f7fa);
  530. box-shadow: none;
  531. .anomaly-num {
  532. color: var(--anomaly-ring-num, var(--primary-color, #82780c));
  533. }
  534. }
  535. .anomaly-overview-ring-label {
  536. color: var(--anomaly-ring-label, #606266);
  537. }
  538. .anomaly-overview-divider {
  539. background: var(--anomaly-divider, #ebeef5);
  540. }
  541. .anomaly-overview-watchlist__head {
  542. border-bottom-color: var(--anomaly-divider, #ebeef5);
  543. }
  544. .anomaly-overview-watchlist__title,
  545. .anomaly-overview-watchlist__name {
  546. color: var(--anomaly-title, #303133);
  547. }
  548. .anomaly-overview-watchlist__col {
  549. color: var(--anomaly-muted, #909399);
  550. }
  551. .anomaly-overview-watchlist__detail {
  552. color: var(--primary-color, #008080);
  553. }
  554. .anomaly-overview-watchlist__row:hover {
  555. background: rgba(0, 128, 128, 0.06);
  556. }
  557. .anomaly-overview-watchlist__empty {
  558. color: var(--anomaly-muted, #909399);
  559. }
  560. .anomaly-stat-card.sensor {
  561. background: var(--anomaly-stat-sensor-bg, rgba(64, 158, 255, 0.08));
  562. border: 1px solid var(--anomaly-stat-sensor-border, rgba(64, 158, 255, 0.2));
  563. }
  564. .anomaly-stat-card.detect {
  565. background: var(--anomaly-stat-detect-bg, rgba(103, 194, 58, 0.08));
  566. border: 1px solid var(--anomaly-stat-detect-border, rgba(103, 194, 58, 0.2));
  567. }
  568. .anomaly-stat-card.sensor .anomaly-stat-icon {
  569. background: rgba(64, 158, 255, 0.15);
  570. color: var(--anomaly-stat-sensor-icon, #409eff);
  571. box-shadow: none;
  572. }
  573. .anomaly-stat-card.detect .anomaly-stat-icon {
  574. background: rgba(103, 194, 58, 0.15);
  575. color: var(--anomaly-stat-detect-icon, #67c23a);
  576. box-shadow: none;
  577. }
  578. .anomaly-stat-label {
  579. color: var(--anomaly-stat-label, #606266);
  580. }
  581. .anomaly-stat-ratio {
  582. color: var(--anomaly-stat-ratio, #909399);
  583. }
  584. .anomaly-radar-wrap {
  585. border-top: 1px solid var(--anomaly-divider, #ebeef5);
  586. }
  587. .anomaly-radar-panel {
  588. background: var(--anomaly-radar-panel-bg, #f5f7fa);
  589. border: 1px solid var(--anomaly-radar-panel-border, #ebeef5);
  590. box-shadow: none;
  591. }
  592. .anomaly-radar-panel-title {
  593. color: var(--anomaly-radar-title, #303133);
  594. }
  595. .anomaly-radar-panel-unit {
  596. color: var(--anomaly-radar-unit, #909399);
  597. }
  598. .anomaly-carousel-btn {
  599. border: 1px solid var(--anomaly-carousel-btn-border, #dcdfe6);
  600. background: var(--anomaly-carousel-btn-bg, #ffffff);
  601. color: var(--anomaly-carousel-btn-text, #606266);
  602. &:hover {
  603. background: var(--anomaly-carousel-btn-hover, #f5f7fa);
  604. }
  605. }
  606. .anomaly-carousel-dot {
  607. background: var(--anomaly-carousel-dot, #dcdfe6);
  608. &.active {
  609. background: var(--anomaly-carousel-dot-active, var(--primary-color, #82780c));
  610. }
  611. }
  612. .anomaly-wind-list-title {
  613. color: var(--anomaly-title, #303133);
  614. }
  615. .anomaly-wind-empty-card__text {
  616. color: var(--anomaly-muted, #909399);
  617. }
  618. .anomaly-wind-turbine__icon {
  619. opacity: 0.72;
  620. }
  621. .anomaly-wind-id {
  622. color: var(--anomaly-wind-id-text, #303133);
  623. border: 1px solid var(--anomaly-wind-id-border, #dcdfe6);
  624. background: var(--anomaly-wind-id-bg, #f5f7fa);
  625. }
  626. .anomaly-wind-label {
  627. color: var(--anomaly-wind-label, #909399);
  628. }
  629. .anomaly-wind-module {
  630. background: var(--anomaly-module-bg, #f8fafc);
  631. border-color: var(--anomaly-divider, #ebeef5);
  632. }
  633. .anomaly-wind-module__title {
  634. color: var(--anomaly-title, #303133);
  635. }
  636. .anomaly-wind-sensors {
  637. color: var(--anomaly-muted, #909399);
  638. }
  639. .anomaly-wind-detail__btn {
  640. background: var(--anomaly-detail-btn-bg, rgba(0, 128, 128, 0.06));
  641. border-color: var(--anomaly-detail-btn-border, var(--primary-color, #82780c));
  642. color: var(--anomaly-detail-btn-text, var(--primary-color, #82780c));
  643. &:hover {
  644. background: var(
  645. --anomaly-detail-btn-hover-bg,
  646. var(--bgopacity-color, rgba(0, 128, 128, 0.12))
  647. );
  648. border-color: var(--primary-color, #82780c);
  649. color: var(--primary-color, #82780c);
  650. }
  651. }
  652. .anomaly-heatmap-ratio {
  653. color: var(--anomaly-heatmap-ratio, #909399);
  654. font-size: 10px;
  655. }
  656. }
  657. /* —— 科技蓝大屏(保持不变) —— */
  658. html[data-theme="tech-blue"] & {
  659. background-color: #090a10;
  660. color: #d8efff;
  661. .anomaly-card {
  662. background: #101628;
  663. border: 1px solid rgba(73, 183, 228, 0.28);
  664. border-radius: 8px;
  665. box-shadow: inset 0 0 14px rgba(65, 176, 225, 0.06);
  666. }
  667. .anomaly-title {
  668. color: #b7dff5;
  669. font-size: 14px;
  670. font-weight: 600;
  671. margin-bottom: 10px;
  672. display: flex;
  673. align-items: center;
  674. gap: 6px;
  675. }
  676. .anomaly-num {
  677. color: #4facca;
  678. font-weight: 700;
  679. }
  680. .anomaly-overview-ring {
  681. border: 1px solid rgba(95, 189, 227, 0.45);
  682. background: linear-gradient(
  683. 145deg,
  684. rgba(29, 145, 211, 0.35),
  685. rgba(22, 30, 56, 0.35)
  686. );
  687. box-shadow: 0 0 18px rgba(52, 182, 242, 0.22);
  688. .anomaly-num {
  689. color: #d8efff;
  690. }
  691. }
  692. .anomaly-overview-ring-label {
  693. color: #d6eefc;
  694. }
  695. .anomaly-overview-divider {
  696. background: linear-gradient(
  697. to bottom,
  698. transparent,
  699. rgba(95, 189, 227, 0.35),
  700. transparent
  701. );
  702. }
  703. .anomaly-overview-watchlist__head {
  704. border-bottom-color: rgba(95, 189, 227, 0.22);
  705. }
  706. .anomaly-overview-watchlist__title,
  707. .anomaly-overview-watchlist__name {
  708. color: #d8efff;
  709. }
  710. .anomaly-overview-watchlist__col {
  711. color: #9abed3;
  712. }
  713. .anomaly-overview-watchlist__detail {
  714. color: #67e8f9;
  715. }
  716. .anomaly-overview-watchlist__row:hover {
  717. background: rgba(34, 211, 238, 0.08);
  718. }
  719. .anomaly-overview-watchlist__empty {
  720. color: #9abed3;
  721. }
  722. .anomaly-stat-card.sensor {
  723. background: rgba(77, 141, 255, 0.12);
  724. border: 1px solid rgba(77, 141, 255, 0.22);
  725. }
  726. .anomaly-stat-card.detect {
  727. background: rgba(77, 230, 152, 0.1);
  728. border: 1px solid rgba(77, 230, 152, 0.22);
  729. }
  730. .anomaly-stat-card.sensor .anomaly-stat-icon {
  731. background: linear-gradient(
  732. 145deg,
  733. rgba(77, 141, 255, 0.55),
  734. rgba(77, 141, 255, 0.15)
  735. );
  736. color: #6ba3ff;
  737. box-shadow: 0 4px 12px rgba(77, 141, 255, 0.2);
  738. }
  739. .anomaly-stat-card.detect .anomaly-stat-icon {
  740. background: linear-gradient(
  741. 145deg,
  742. rgba(77, 230, 152, 0.5),
  743. rgba(77, 230, 152, 0.15)
  744. );
  745. color: #6effb0;
  746. box-shadow: 0 4px 12px rgba(77, 230, 152, 0.18);
  747. }
  748. .anomaly-stat-label {
  749. color: #d8efff;
  750. }
  751. .anomaly-stat-ratio {
  752. color: #8db6d1;
  753. }
  754. .anomaly-radar-wrap {
  755. border-top: 1px solid rgba(95, 189, 227, 0.22);
  756. }
  757. .anomaly-radar-panel {
  758. background: #111627;
  759. border: 1px solid rgba(95, 189, 227, 0.18);
  760. box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
  761. }
  762. .anomaly-radar-panel-title {
  763. color: #b7dff5;
  764. }
  765. .anomaly-radar-panel-unit {
  766. color: #6a9bb5;
  767. }
  768. .anomaly-carousel-btn {
  769. border: 1px solid rgba(95, 189, 227, 0.35);
  770. background: rgba(22, 30, 56, 0.88);
  771. color: #b7dff5;
  772. &:hover {
  773. background: rgba(29, 145, 211, 0.35);
  774. }
  775. }
  776. .anomaly-carousel-dot {
  777. background: rgba(95, 189, 227, 0.35);
  778. &.active {
  779. background: #5ecdee;
  780. }
  781. }
  782. .anomaly-wind-list-title {
  783. color: #9cc7df;
  784. }
  785. .anomaly-wind-empty-card__text {
  786. color: #8db6d1;
  787. }
  788. .anomaly-wind-turbine__icon {
  789. filter: drop-shadow(0 0 8px rgba(83, 217, 255, 0.35));
  790. }
  791. .anomaly-wind-id {
  792. color: #d8efff;
  793. border: 1px solid rgba(95, 189, 227, 0.45);
  794. background: rgba(22, 30, 56, 0.88);
  795. }
  796. .anomaly-wind-label {
  797. color: #b8d3e6;
  798. }
  799. .anomaly-wind-metric .anomaly-num--high {
  800. color: #ff6b81;
  801. }
  802. .anomaly-wind-module {
  803. background: rgba(17, 22, 39, 0.72);
  804. border-color: rgba(95, 189, 227, 0.22);
  805. }
  806. .anomaly-wind-module__title {
  807. color: #9cc7df;
  808. }
  809. .anomaly-wind-sensors {
  810. color: #9abed3;
  811. }
  812. .anomaly-wind-detail__btn {
  813. background: rgba(34, 211, 238, 0.08);
  814. border-color: rgba(103, 232, 249, 0.45);
  815. color: #67e8f9;
  816. &:hover {
  817. background: rgba(34, 211, 238, 0.18);
  818. border-color: rgba(103, 232, 249, 0.75);
  819. color: #a5f3fc;
  820. }
  821. }
  822. .anomaly-heatmap-ratio {
  823. color: #6a9bb5;
  824. font-size: 10px;
  825. }
  826. }
  827. }