common.css 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858
  1. .c-12b7f5 {
  2. color: #12b7f5;
  3. }
  4. .c-17b3ec {
  5. color: #17b3ec;
  6. }
  7. .c-4ecd70 {
  8. color: #4ecd70;
  9. }
  10. .c-323232 {
  11. color: #323232;
  12. }
  13. .c-19d5c5 {
  14. color: #19d5c5;
  15. }
  16. .c-ffc800 {
  17. color: #ffc800;
  18. }
  19. .c-75ed59 {
  20. color: #75ed59;
  21. }
  22. .c-w-33 {
  23. width: 33%;
  24. }
  25. ul {
  26. list-style: none;
  27. }
  28. .info-icon {
  29. vertical-align: middle;
  30. margin-bottom: 5px;
  31. }
  32. .information {
  33. background-color: rgba(0, 0, 0, 0.5);
  34. font-size: 14px;
  35. color: #fff;
  36. }
  37. .information .ui-col-0 {
  38. width: 40px;
  39. text-align: center;
  40. }
  41. .location-div {
  42. height: 40px;
  43. line-height: 40px;
  44. padding: 0 10px;
  45. }
  46. .location-div img {
  47. vertical-align: text-bottom;
  48. }
  49. .choose-label {
  50. color: #17B3EC;
  51. display: inline-block;
  52. max-width: 100%;
  53. _width: 100%;
  54. overflow: hidden;
  55. white-space: nowrap;
  56. text-overflow: ellipsis;
  57. }
  58. .blue-column {
  59. display: inline-block;
  60. width: 4px;
  61. height: 12px;
  62. background-color: #12b7f5;
  63. }
  64. .date-tag {
  65. display: inline-block;
  66. text-align: center;
  67. width: 50px;
  68. padding: 5px 0;
  69. font-size: 14px;
  70. color: #17b3ec;
  71. border: 1px solid #17b3ec;
  72. }
  73. .date-tag:first-child {
  74. border-top-left-radius: 15px;
  75. border-bottom-left-radius: 15px;
  76. }
  77. .date-tag:nth-child(2) {
  78. border-right: 0;
  79. border-left: 0;
  80. }
  81. .date-tag:nth-child(3) {
  82. border-top-right-radius: 15px;
  83. border-bottom-right-radius: 15px;
  84. }
  85. .date-tag.active {
  86. background-color: #17b3ec;
  87. color: #fff;
  88. }
  89. .area-tab-panel {
  90. display: -webkit-box;
  91. height: 45px;
  92. line-height: 45px;
  93. margin: 0 50px;
  94. background-color: #fff;
  95. border: 1px solid #e1e1e1;
  96. border-bottom: 0;
  97. border-top-left-radius: 8px;
  98. border-top-right-radius: 8px;
  99. box-shadow: 0px 0px 1px #ccc;
  100. }
  101. .area-tab {
  102. -webkit-box-flex: 1;
  103. text-align: center;
  104. position: relative;
  105. }
  106. .area-tab:after {
  107. content: '';
  108. position: absolute;
  109. width: 1px;
  110. height: 20px;
  111. right: 0;
  112. top: 50%;
  113. margin-top: -10px;
  114. background-color: #e1e1e1;
  115. }
  116. .area-tab:last-child:after {
  117. width: 0;
  118. }
  119. .area-tab .border-line-right {
  120. display: inline-block;
  121. position: absolute;
  122. width: 1px;
  123. height: 20px;
  124. right: 0;
  125. top: 50%;
  126. margin-top: -10px;
  127. background-color: #e1e1e1;
  128. }
  129. .area-tab span {
  130. display: inline-block;
  131. height: 45px;
  132. border-bottom: 2px solid transparent;
  133. font-size: 16px;
  134. color: #666;
  135. padding: 0 10px;
  136. }
  137. .area-tab.active span {
  138. color: #12b7f5;
  139. border-bottom: 2px solid #12b7f5;
  140. }
  141. .bottom-list-table {
  142. border-top: 1px solid #e1e1e1;
  143. border-left: 1px solid #e1e1e1;
  144. border-right: 1px solid #e1e1e1;
  145. background-color: #fff;
  146. width: 100%;
  147. text-align: center;
  148. font-size: 14px;
  149. border-spacing: 0;
  150. }
  151. .bottom-list-table thead {
  152. height: 40px;
  153. background-color: #ebebf5;
  154. border-bottom: 1px solid #e1e1e1;
  155. color: #999;
  156. }
  157. .bottom-list-table thead tr {
  158. height: 40px;
  159. }
  160. .bottom-list-table td,
  161. .bottom-list-table th {
  162. text-align: center;
  163. vertical-align: middle;
  164. }
  165. .bottom-list-table td {
  166. padding: 10px 0;
  167. border-bottom: 1px solid #e1e1e1;
  168. }
  169. .bottom-list-table tbody>tr {
  170. border-bottom: 1px solid #e1e1e1;
  171. }
  172. .bottom-list-table tbody>tr:hover {
  173. background-color: #f2f4f6;
  174. }
  175. /*.bottom-list-table tbody>tr:first-child{
  176. border-top: 0;
  177. }*/
  178. .bottom-list-table tbody tr td.area-name {
  179. text-align: left;
  180. padding-left: 10px;
  181. font-size: 16px;
  182. display: -webkit-box;
  183. -webkit-box-pack: center;
  184. -webkit-box-align: center;
  185. }
  186. @media only screen and (max-width: 320px) {
  187. .bottom-list-table tbody tr td.area-name {
  188. max-width: 125px;
  189. }
  190. }
  191. @media only screen and (min-width: 321px) and (max-width: 414px) {
  192. .bottom-list-table tbody tr td.area-name {
  193. max-width: 180px;
  194. }
  195. }
  196. @media only screen and (min-width: 414px) and (max-width: 640px) {
  197. .bottom-list-table tbody tr td.area-name {
  198. /*max-width: 200px;*/
  199. }
  200. }
  201. .bottom-list-table .fa {
  202. font-size: 18px;
  203. color: #909090;
  204. }
  205. .ranking {
  206. background-image: url(../../../images/paiming_4_icon.png);
  207. background-size: 18px 24px;
  208. width: 18px;
  209. height: 24px;
  210. font-size: 12px;
  211. line-height: 20px;
  212. color: #fff;
  213. text-align: center;
  214. margin-right: 10px;
  215. -webkit-box-flex: 0;
  216. }
  217. .ranking1 {
  218. background-image: url(../../../images/paiming_1_icon.png);
  219. }
  220. .ranking2 {
  221. background-image: url(../../../images/paiming_2_icon.png);
  222. }
  223. .ranking3 {
  224. background-image: url(../../../images/paiming_3_icon.png);
  225. }
  226. .modal-overlay {
  227. position: absolute;
  228. left: 0;
  229. top: 0;
  230. width: 100%;
  231. height: 100%;
  232. background: rgba(0, 0, 0, 0.4);
  233. z-index: 9999;
  234. visibility: hidden;
  235. opacity: 0;
  236. -webkit-transition-duration: 400ms;
  237. transition-duration: 400ms;
  238. }
  239. .modal-overlay.modal-overlay-visible {
  240. visibility: visible;
  241. opacity: 1;
  242. }
  243. .modal-content {
  244. height: 400px;
  245. position: absolute;
  246. width: 80%;
  247. z-index: 9999;
  248. top: 50%;
  249. left: 50%;
  250. margin-left: -40%;
  251. margin-top: -200px;
  252. display: none;
  253. }
  254. .div-header-title {
  255. height: 80px;
  256. background: #17B3EC;
  257. width: 100%;
  258. position: relative;
  259. border-top-left-radius: 10px;
  260. border-top-right-radius: 10px;
  261. }
  262. .div-close {
  263. width: 26px;
  264. height: 26px;
  265. background: url(../images/tankuang_guanbi_icon.png) no-repeat center top;
  266. background-size: 26px;
  267. position: absolute;
  268. top: 10px;
  269. right: 10px;
  270. }
  271. .div-overlay-img {
  272. width: 170px;
  273. height: 53px;
  274. background: url(../images/tankuang_bg_img.png) no-repeat center top;
  275. background-size: 170px 53px;
  276. position: absolute;
  277. top: 15px;
  278. left: 50%;
  279. margin-left: -85px;
  280. }
  281. .div-overlay-title {
  282. position: absolute;
  283. top: 38px;
  284. left: 40%;
  285. color: #fff;
  286. font-weight: bold;
  287. font-size: 18px;
  288. }
  289. .div-overlay-content {
  290. height: 320px;
  291. background: #fff;
  292. width: 100%;
  293. border-bottom-left-radius: 10px;
  294. border-bottom-right-radius: 10px;
  295. }
  296. .div-jf-title2 {
  297. position: absolute;
  298. font-size: 14px;
  299. top: 50%;
  300. width: 100%;
  301. margin-top: -21px;
  302. }
  303. /*总体分析页面样式*/
  304. .l-banner {
  305. display: -webkit-box;
  306. height: auto;
  307. margin-bottom: 10px;
  308. padding: 0 10px;
  309. margin-top: 20px;
  310. }
  311. .l-banner li {
  312. -webkit-box-flex: 0;
  313. width: 33.3%;
  314. width: calc(100% / 3);
  315. }
  316. .l-banner li:first-child {
  317. /*margin-left: 0;*/
  318. }
  319. .l-banner li .tag {
  320. width: 80%;
  321. border: 1px solid #e1e1e1;
  322. border-radius: 5px;
  323. text-align: center;
  324. padding: 17px 0;
  325. margin: 0 auto;
  326. position: relative;
  327. }
  328. .l-banner li .l-name {
  329. color: #666;
  330. }
  331. .l-banner li .tag.active,
  332. .l-banner li .tag.active .l-name {
  333. color: #12B7F5;
  334. border-color: #12B7F5;
  335. }
  336. .l-banner li .tag.active:after {
  337. content: "";
  338. width: 100%;
  339. height: 4px;
  340. background-color: #12B7F5;
  341. position: absolute;
  342. bottom: 0;
  343. left: 0;
  344. border-bottom-left-radius: 5px;
  345. border-bottom-right-radius: 5px;
  346. }
  347. .blur-cycle-box {
  348. position: absolute;
  349. width: 70px;
  350. height: 70px;
  351. top: 50%;
  352. margin-top: -35px;
  353. left: 50%;
  354. margin-left: -35px;
  355. /*z-index: 2;*/
  356. background-color: #17b3ec;
  357. border-radius: 50%;
  358. text-align: center;
  359. }
  360. .position-center-text {
  361. position: absolute;
  362. width: 100%;
  363. top: 50%;
  364. left: 0;
  365. text-align: center;
  366. margin-top: -10px;
  367. }
  368. .div-header {
  369. padding: 0px 10px 0px 20px;
  370. height: 40px;
  371. border-bottom: 1px solid #DCDCDC;
  372. }
  373. .div-header img {
  374. cursor: pointer;
  375. }
  376. .fl {
  377. float: left;
  378. }
  379. .fr {
  380. float: right
  381. }
  382. .mt10 {
  383. margin-top: 10px;
  384. }
  385. .mr10 {
  386. margin-right: 10px;
  387. }
  388. .vam {
  389. vertical-align: middle;
  390. }
  391. .vertical-line {
  392. border-right: 1px solid #ccc;
  393. height: 25px;
  394. width: 1px;
  395. display: inline-block;
  396. margin-right: 10px;
  397. vertical-align: middle;
  398. }
  399. .application-name {
  400. font-size: 14px;
  401. color: #333;
  402. font-weight: bold;
  403. margin-right: 10px;
  404. display: inline-block;
  405. height: 40px;
  406. line-height: 40px;
  407. }
  408. .c-666 {
  409. color: #666;
  410. }
  411. .c-12b7f5 {
  412. color: #12B7F5;
  413. }
  414. .cb-ebebf5 {
  415. background: #EBEBF5;
  416. }
  417. .c-f12 {
  418. font-size: 12px;
  419. }
  420. .height-30 {
  421. height: 30px;
  422. }
  423. .lheight-30 {
  424. line-height: 30px;
  425. }
  426. .pl20 {
  427. padding-left: 20px;
  428. }
  429. .ml20 {
  430. margin-left: 20px;
  431. }
  432. .mr20 {
  433. margin-right: 20px;
  434. }
  435. .tac {
  436. text-align: center;
  437. }
  438. .role-select {
  439. height: 30px;
  440. min-width: 100px;
  441. display: inline-block;
  442. }
  443. .role-select select {
  444. width: 100%;
  445. height: 30px;
  446. appearance: none;
  447. -moz-appearance: none;
  448. -webkit-appearance: none;
  449. background: url(../../../images/zhankai_jiantou_icon.png) no-repeat scroll right center transparent;
  450. background-position-x: 95%;
  451. background-size: 11px 11px;
  452. padding-right: 30px;
  453. padding-left: 10px;
  454. border: none;
  455. color: #909090;
  456. }
  457. .section-header {
  458. position: relative;
  459. }
  460. .section-label {
  461. display: inline-block;
  462. padding: 3px 15px;
  463. background-color: #ebebf5;
  464. border-radius: 12px;
  465. font-size: 14px;
  466. position: relative;
  467. }
  468. .section-header .grey-line {
  469. display: inline-block;
  470. position: absolute;
  471. top: 50%;
  472. left: 10px;
  473. right: 10px;
  474. width: calc(100% - 20px);
  475. height: 1px;
  476. background-color: #ebebf5;
  477. z-index: -1;
  478. }
  479. .div-radius-panel {
  480. width: 60px;
  481. height: 60px;
  482. background: #EBEBF5;
  483. border-radius: 60px;
  484. position: absolute;
  485. top: 50%;
  486. left: 50%;
  487. margin-top: -30px;
  488. margin-left: -30px;
  489. }
  490. .height-120 {
  491. height: 120px;
  492. }
  493. .div-data-value {
  494. position: absolute;
  495. bottom: -20px;
  496. width: 150px;
  497. left: 50%;
  498. margin-left: -75px;
  499. }
  500. .mlr8 {
  501. margin-left: 8px;
  502. margin-right: 8px;
  503. }
  504. .c-row .c-33 {
  505. text-align: center;
  506. }
  507. .c-row .c-33 a {
  508. display: inline-block;
  509. width: 100%;
  510. height: 24px;
  511. font-size: 12px;
  512. line-height: 24px;
  513. /*background: #EEEEEE;*/
  514. border: 1px solid #e1e1e1;
  515. border-radius: 5px;
  516. white-space: nowrap;
  517. overflow: hidden;
  518. text-overflow: ellipsis;
  519. color: #666;
  520. }
  521. .c-row .c-33.active a {
  522. color: #fff;
  523. border: 1px solid #12B7F5;
  524. background: #12B7F5;
  525. }
  526. .c-row .c-33 {
  527. width: calc(31.333333333333332% - 10px);
  528. }
  529. .filter-title {
  530. color: #333333;
  531. font-size: 14px;
  532. font-weight: bold;
  533. }
  534. a {
  535. background-color: transparent;
  536. text-decoration: none;
  537. }
  538. #footer {
  539. position: absolute;
  540. bottom: 10px;
  541. width: 100%;
  542. right: 10px;
  543. }
  544. .fr {
  545. float: right;
  546. }
  547. .div-foot-btn {
  548. height: 26px;
  549. line-height: 26px;
  550. width: 68px;
  551. background: #fafafa;
  552. text-align: center;
  553. border: 1px solid #dcdcdc;
  554. display: inline-block;
  555. }
  556. .div-foot-btn.active {
  557. border: 1px solid #12b7f5;
  558. }
  559. .div-title {
  560. font-size: 14px;
  561. color: #323232;
  562. margin: 20px;
  563. }
  564. .vuedal.md {
  565. will-change: initial !important;
  566. width: 400px !important;
  567. padding-right: 3px !important;
  568. margin-left: -200px;
  569. padding: 0 !important;}
  570. .vuedal.md header {
  571. padding: 10px 20px 0 20px;
  572. }
  573. .vuedal.md header .title {
  574. font-size: 16px !important;
  575. font-weight: bold !important;
  576. color: #333 !important;
  577. }
  578. .vuedal.lg header {
  579. font-size: 18px;
  580. color: #333333;
  581. padding-bottom: 15px;
  582. }
  583. .vuedal.lg header .close {
  584. font-size: 32px;
  585. line-height: 30px;
  586. }
  587. .mod {
  588. background-color: #fff;
  589. }
  590. .mod .mod-hd {
  591. height: 33px;
  592. line-height: 33px;
  593. border-bottom: .05rem solid #e1e1e1;
  594. padding-left: .5rem;
  595. color: #323232;
  596. }
  597. .mod .mod-hd .title {
  598. font-size: .75rem;
  599. }
  600. .icon-cyc.sszql {
  601. background-image: url(../../../images/snashi_icon.png);
  602. }
  603. .icon-cyc {
  604. display: inline-block;
  605. vertical-align: middle;
  606. width: 22px;
  607. height: 22px;
  608. background: center no-repeat;
  609. background-size: auto 100%;
  610. }
  611. .icon-cyc.gwrq {
  612. background-image: url(../../../images/gaoweirenqun.png);
  613. }
  614. .div-ssqql canvas {
  615. width: 150px;
  616. height: 150px;
  617. margin-top: 20px;
  618. }
  619. .div-ssqql {
  620. height: 195px;
  621. position: relative;
  622. text-align: center;
  623. margin: 0 auto;
  624. }
  625. .p-sanshilv {
  626. position: absolute;
  627. top: 20px;
  628. left: 50%;
  629. font-size: 33px;
  630. color: #323232;
  631. width: 106px;
  632. margin-left: -53px;
  633. }
  634. .p-sanshicount {
  635. position: absolute;
  636. top: 90px;
  637. left: 50%;
  638. font-size: 15px;
  639. color: #323232;
  640. width: 116px;
  641. margin-left: -58px;
  642. }
  643. .p-gaoweilv {
  644. position: absolute;
  645. top: 20px;
  646. left: 50%;
  647. font-size: 33px;
  648. color: #323232;
  649. width: 106px;
  650. margin-left: -53px;
  651. }
  652. .p-gaoweicount {
  653. position: absolute;
  654. top: 90px;
  655. left: 50%;
  656. font-size: 15px;
  657. color: #323232;
  658. width: 116px;
  659. margin-left: -58px;
  660. }
  661. .c-row.n-row .c-20:nth-child(5n+1){
  662. margin-left: 0;
  663. }
  664. body .el-table th.gutter{
  665. display: table-cell!important;
  666. }
  667. [v-cloak] {
  668. display: none;
  669. }
  670. .el-table th>.cell{
  671. font-weight: normal;
  672. }
  673. .el-table td, .el-table th{
  674. padding: 8px 0;
  675. }
  676. .bgc-12B7F5,.bgc1-12B7F5{
  677. background-color: #12B7F5;
  678. }
  679. .bgc-12B7F5:hover{
  680. background-color: #00adee;
  681. color: #fff;
  682. }
  683. .c-12B7F5{
  684. color: #12B7F5;
  685. }
  686. .bgc-FF9630,.bgc1-FF9630{
  687. background-color: #FF9630;
  688. }
  689. .bgc-FF9630:hover{
  690. background-color: #f58920;
  691. color: #fff;
  692. }
  693. .c-FF9630{
  694. color: #FF9630;
  695. }
  696. .btn{
  697. color:#fff;
  698. width: 80px;
  699. padding: 4px 8px;
  700. height: 28px;
  701. }
  702. .searchDiv .el-input__inner,.searchDiv .el-input__icon{
  703. height: 28px;
  704. line-height: 28px;
  705. }
  706. .searchDiv .el-date-editor .el-range-separator{
  707. height: 28px;
  708. line-height: 28px;
  709. width: 10%;
  710. }
  711. .team-info-dyy .ui-col-1,.team-info-dyy .ui-col-0{word-break: break-all;}
  712. .dyy-title{
  713. font-size: 16px;
  714. color:#333333;
  715. padding-bottom: 20px;
  716. border-bottom: 1px solid #e1e1e1;
  717. }
  718. #sc_table{}
  719. #sc_table tr td:nth-child(2):hover{
  720. color:#12B7F5;
  721. cursor: pointer;
  722. }
  723. #sc_table th,#sc_table td{
  724. height: 40px;
  725. font-size: 14px;
  726. padding-left:5px;
  727. padding-right:5px;
  728. }
  729. #sc_table th{
  730. background-color: #F5F5FA;
  731. text-align: center;
  732. color: #909090;
  733. font-weight: normal;
  734. }