index.less 34 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602
  1. .app-hqchart {
  2. flex: 1;
  3. overflow: hidden;
  4. &__container {
  5. position: relative;
  6. width: 100%;
  7. height: 100%;
  8. }
  9. a {
  10. transition-duration: 0.4s, 0.5s;
  11. transition-property: background-color, color;
  12. transition-timing-function: ease, ease;
  13. }
  14. i {
  15. font-style: normal;
  16. }
  17. input,
  18. canvas {
  19. outline: 0px;
  20. }
  21. .redColor {
  22. color: #ee1515;
  23. }
  24. .greenColor {
  25. color: #199e00;
  26. }
  27. ::-webkit-scrollbar {
  28. width: 8px;
  29. height: 8px;
  30. }
  31. ::-webkit-scrollbar-button {
  32. display: none;
  33. }
  34. ::-webkit-scrollbar-track {
  35. background: #F1F1F1;
  36. border-radius: 4px;
  37. }
  38. ::-webkit-scrollbar-thumb {
  39. background: #C1C1C1;
  40. border-radius: 4px;
  41. }
  42. /*右键菜单*/
  43. .context-menu-wrapper {
  44. position: absolute;
  45. z-index: 500;
  46. overflow: auto;
  47. border: 1px solid;
  48. border-color: #b5b7b9;
  49. background-color: #fff;
  50. white-space: nowrap;
  51. }
  52. html.theme-dark .context-menu-wrapper {
  53. background-color: #1c2030;
  54. border-color: #363c4e;
  55. }
  56. .context-menu-wrapper .backlight {
  57. background-color: #f2f3f5;
  58. }
  59. html.theme-dark .context-menu-wrapper .backlight {
  60. background-color: #2f3241;
  61. }
  62. tr.context-menu.disabled {
  63. color: #9d9d9d;
  64. }
  65. /*
  66. tr.context-menu.spinner > td {
  67. background: url("/static/images/loading-small.0c15c93a2cb0.gif") 50% no-repeat;
  68. cursor: default;
  69. }
  70. */
  71. .submenu.center {
  72. background-color: #fff;
  73. }
  74. .context-menu {
  75. font-family: Tahoma, Arial, sans-serif;
  76. font-size: 11px;
  77. white-space: nowrap;
  78. }
  79. tr.context-menu {
  80. cursor: pointer;
  81. height: 29px;
  82. }
  83. tr.context-menu:hover {
  84. background: #f2f3f5;
  85. }
  86. html.theme-dark tr.context-menu-hover {
  87. background: #2f3241;
  88. }
  89. td.context-menu {
  90. opacity: 1;
  91. cursor: pointer;
  92. padding-left: 4px;
  93. }
  94. .context-menu-item-separated {
  95. border-bottom: 1px solid #cecece;
  96. }
  97. .context-menu .text {
  98. min-width: 100px;
  99. }
  100. .context-menu .spacer {
  101. width: 18px;
  102. text-align: center;
  103. }
  104. .context-menu .icon {
  105. height: 27px;
  106. width: 18px;
  107. }
  108. .context-menu .shortcut {
  109. text-align: right;
  110. color: #aaa;
  111. padding: 0 2px 0 10px;
  112. }
  113. .submenu-arrow {
  114. background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAUCAYAAACNiR0NAAAAKElEQVR4AWOgExgFo6Cvr+8/1Q0EYaoaCMNUNBCBB68LqRvLIxiMAgAKDyqRblYs2AAAAABJRU5ErkJggg==);
  115. background-repeat: no-repeat;
  116. background-position: 50%;
  117. width: 20px;
  118. }
  119. .border td {
  120. border-bottom: 1px solid #b5b7b9;
  121. }
  122. /*右键菜单结束*/
  123. /*工具条*/
  124. .tools {
  125. margin-bottom: 8px;
  126. height: 38px;
  127. color: #4c525e;
  128. float: left;
  129. }
  130. .tools .txt {
  131. height: 28px;
  132. width: 80px;
  133. border: none;
  134. margin-top: 3px;
  135. padding-left: 5px;
  136. }
  137. .tools .item {
  138. float: left;
  139. margin-right: 1px;
  140. padding: 0 5px;
  141. cursor: pointer;
  142. border: 1px solid #ECEFF2;
  143. height: 36px;
  144. line-height: 36px;
  145. }
  146. .button {
  147. -moz-box-shadow: inset 0px 0px 0px 0px #edf0f2;
  148. -webkit-box-shadow: inset 0px 0px 0px 0px #edf0f2;
  149. box-shadow: inset 0px 0px 0px 0px #edf0f2;
  150. background: -webkit-gradient(linear, left top, left bottom, color-stop(0.05, #fcfffa), color-stop(1, #ffffff));
  151. background: -moz-linear-gradient(top, #fcfffa 5%, #ffffff 100%);
  152. background: -webkit-linear-gradient(top, #fcfffa 5%, #ffffff 100%);
  153. background: -o-linear-gradient(top, #fcfffa 5%, #ffffff 100%);
  154. background: -ms-linear-gradient(top, #fcfffa 5%, #ffffff 100%);
  155. background: linear-gradient(to bottom, #fcfffa 5%, #ffffff 100%);
  156. filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fcfffa', endColorstr='#ffffff', GradientType=0);
  157. background-color: #fcfffa;
  158. border: 1px solid #eceff2;
  159. display: inline-block;
  160. cursor: pointer;
  161. font-family: Arial;
  162. font-size: 13px;
  163. text-decoration: none;
  164. }
  165. .button:hover {
  166. background: -webkit-gradient(linear, left top, left bottom, color-stop(0.05, #f2f3f5), color-stop(1, #f2f3f5));
  167. background: -moz-linear-gradient(top, #f2f3f5 5%, #f2f3f5 100%);
  168. background: -webkit-linear-gradient(top, #f2f3f5 5%, #f2f3f5 100%);
  169. background: -o-linear-gradient(top, #f2f3f5 5%, #f2f3f5 100%);
  170. background: -ms-linear-gradient(top, #f2f3f5 5%, #f2f3f5 100%);
  171. background: linear-gradient(to bottom, #f2f3f5 5%, #f2f3f5 100%);
  172. filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#f2f3f5', endColorstr='#f2f3f5', GradientType=0);
  173. background-color: #f2f3f5;
  174. }
  175. .button:active {
  176. position: relative;
  177. top: 1px;
  178. }
  179. /*工具条结束*/
  180. /*工具条下拉菜单*/
  181. .dropdownList {
  182. width: 200px;
  183. border: 1px solid #ECEFF2;
  184. position: absolute;
  185. z-index: 500;
  186. overflow: auto;
  187. padding: 5px 0;
  188. background-color: rgba(255, 255, 255, 1);
  189. box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.07);
  190. border-radius: 3px;
  191. display: none;
  192. color: #4c525e;
  193. }
  194. .dropdownList .item {
  195. padding: 2px 8px;
  196. height: 28px;
  197. line-height: 28px;
  198. }
  199. .dropdownList .item:hover {
  200. background-color: #EBF7FC;
  201. cursor: pointer;
  202. }
  203. /*工具条下拉菜单结束*/
  204. /*拖拽切换*/
  205. .selected {
  206. height: 38px;
  207. overflow: hidden;
  208. text-align: center;
  209. float: left;
  210. }
  211. .selected ul li {
  212. float: left;
  213. margin: 0 5px;
  214. list-style-type: none;
  215. }
  216. .selected ul a {
  217. display: block;
  218. background: #EBF7FC;
  219. height: 38px;
  220. text-decoration: none;
  221. color: #4c525e;
  222. -webkit-transition: margin .4s ease-in-out;
  223. -moz-transition: margin .4s ease-in-out;
  224. -o-transition: margin .4s ease-in-out;
  225. -ms-transition: margin .4s ease-in-out;
  226. transition: margin .4s ease-in-out;
  227. padding: 0px 8px;
  228. line-height: 38px;
  229. }
  230. .selected ul a:nth-of-type(even) {
  231. background: #fff2f4;
  232. color: #4c525e;
  233. }
  234. /*拖拽切换结束*/
  235. /*画图工具*/
  236. .drawing {
  237. height: 36px;
  238. float: left;
  239. border: 1px solid #ECEFF2;
  240. }
  241. .drawing .lable {
  242. background: #ECEFF2;
  243. height: 36px;
  244. line-height: 36px;
  245. float: left;
  246. margin-right: 1px;
  247. padding: 0px 5px;
  248. }
  249. .drawing .item {
  250. float: left;
  251. margin: 1px 1px 1px 0px;
  252. padding: 0 5px;
  253. cursor: pointer;
  254. border: 1px solid #ECEFF2;
  255. height: 32px;
  256. line-height: 32px;
  257. }
  258. .drawing .item.active {
  259. background: #1592e6;
  260. color: #fff;
  261. border-color: #1592e6;
  262. }
  263. .drawtools {
  264. border: 1px solid #ccc;
  265. background: #fff;
  266. }
  267. .drawtools .icon-image {
  268. text-align: center;
  269. padding: 5px 0 5px 10px;
  270. height: 24px;
  271. position: relative;
  272. }
  273. .drawtools .icon-image>i:nth-of-type(1) {
  274. font-size: 24px;
  275. }
  276. .drawtools .icon-image.active>i:nth-of-type(1) {
  277. color: #0182d4;
  278. }
  279. .drawtools .icon-image .menuTwo {
  280. position: absolute;
  281. top: 0;
  282. right: 46px;
  283. border: 1px solid #ccc;
  284. background-color: #fff;
  285. display: none;
  286. text-align: right;
  287. }
  288. .drawtools .icon-image .menuTwo .menuTwoItem {
  289. height: 24px;
  290. line-height: 24px;
  291. width: 125px;
  292. font-size: 12px;
  293. padding: 5px 0;
  294. display: block;
  295. padding-right: 10px;
  296. }
  297. .drawtools .icon-image .menuTwo .menuTwoItem::after {
  298. content: "";
  299. display: block;
  300. width: 0;
  301. height: 0;
  302. clear: both;
  303. overflow: hidden;
  304. }
  305. .drawtools .icon-image .menuTwo .menuTwoItem>i {
  306. float: right;
  307. margin-left: 5px;
  308. font-size: 24px;
  309. }
  310. .drawtools .icon-image .menuTwo .menuTwoItem:hover {
  311. background-color: #ebf7fc;
  312. }
  313. .drawtools .icon-image .menuTwo .menuTwoItem.current {
  314. background-color: #37a6ef;
  315. }
  316. .drawtools .icon-image .contentArrow {
  317. font-size: 12px;
  318. position: absolute;
  319. top: 12px;
  320. left: 0;
  321. transition: transform 0.2s;
  322. display: none;
  323. }
  324. .drawtools .icon-image .contentArrow.trans {
  325. transform: rotate(180deg);
  326. }
  327. .drawtools .icon-image:last-child {
  328. border-top: 1px solid #ccc;
  329. }
  330. .chartpicture-text-setting {
  331. width: 400px;
  332. background-color: #fff;
  333. border: 1px solid;
  334. border-color: #b5b7b9;
  335. box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.15)
  336. }
  337. .titleWrap {
  338. height: 53px;
  339. line-height: 53px;
  340. width: 100%;
  341. border-bottom: 1px solid;
  342. border-color: #dadde0;
  343. position: relative;
  344. }
  345. .titleWrap .titleName {
  346. height: 53px;
  347. line-height: 53px;
  348. display: inline-block;
  349. padding: 0 2px;
  350. font-size: 14px;
  351. color: #4f5966;
  352. margin-left: 14px;
  353. position: relative;
  354. }
  355. .titleWrap .titleName::after {
  356. content: ' ';
  357. position: absolute;
  358. display: block;
  359. left: 0;
  360. bottom: -1px;
  361. width: 100%;
  362. height: 3px;
  363. background-color: #5cb888;
  364. }
  365. .titleWrap .closeBtn {
  366. font-size: 12px;
  367. color: #777;
  368. position: absolute;
  369. top: 0;
  370. right: 0;
  371. padding-right: 14px;
  372. padding-left: 14px;
  373. cursor: pointer;
  374. }
  375. .contentWrap {
  376. padding: 15px 27px;
  377. }
  378. .contentWrap .styleOptions {
  379. height: 27px;
  380. margin-bottom: 7px;
  381. }
  382. .contentWrap .styleOptions .colorPicker {
  383. width: 25px;
  384. height: 25px;
  385. cursor: pointer;
  386. display: inline-block;
  387. border: 1px solid;
  388. border-color: #1e90ff;
  389. background-color: #1e90ff;
  390. margin-right: 5px;
  391. position: relative;
  392. }
  393. .contentWrap .colorPicker #fontColor {
  394. position: absolute;
  395. top: 0;
  396. left: 0;
  397. opacity: 0;
  398. width: 100%;
  399. height: 100%;
  400. display: block;
  401. }
  402. .contentWrap .likeSelect {
  403. height: 25px;
  404. width: 50px;
  405. background-color: #f1f3f6;
  406. line-height: 25px;
  407. cursor: pointer;
  408. display: inline-block;
  409. vertical-align: top;
  410. font-size: 14px;
  411. padding: 0 20px 0 10px;
  412. border: 1px solid;
  413. border-color: #dadde0;
  414. margin-right: 5px;
  415. position: relative;
  416. }
  417. .contentWrap .fontSelect {
  418. font-size: 12px;
  419. }
  420. .contentWrap .likeSelect .choicedText {
  421. display: inline-block;
  422. width: 78px;
  423. height: 100%;
  424. overflow: hidden;
  425. }
  426. /* .contentWrap .likeSelect select {position: absolute; width: 100%; height: 100%; left: 0; top: 0; z-index: 999; opacity: 0.5;}
  427. .contentWrap .likeSelect option {height: 30px; line-height: 30px;} */
  428. .contentWrap .likeSelect i {
  429. font-size: 15px;
  430. position: absolute;
  431. top: 0;
  432. right: 6px;
  433. }
  434. .contentWrap .likeSelect .selectList {
  435. position: absolute;
  436. top: 27px;
  437. left: 0;
  438. background-color: #fff;
  439. border: 1px solid #dadde0;
  440. display: none;
  441. }
  442. .contentWrap .selectList p {
  443. padding: 0 15px;
  444. height: 30px;
  445. line-height: 30px;
  446. cursor: pointer;
  447. white-space: nowrap;
  448. }
  449. .contentWrap .selectList p:hover {
  450. background-color: #f1f3f6;
  451. }
  452. .contentWrap .selectList p.active {
  453. background-color: #f1f3f6;
  454. border-left: 3px solid #5cb888;
  455. }
  456. .contentWrap .likeBtn {
  457. border: 1px solid;
  458. border-color: #dadde0;
  459. text-align: center;
  460. cursor: pointer;
  461. vertical-align: top;
  462. font-size: 16px;
  463. margin-right: 5px;
  464. color: #4a4a4a;
  465. display: inline-block;
  466. width: 25px;
  467. height: 25px;
  468. line-height: 25px;
  469. background-color: #f1f3f6;
  470. }
  471. .contentWrap .strongFont {
  472. font-weight: bold;
  473. }
  474. .contentWrap .italicsFont {
  475. font-style: italic;
  476. }
  477. .contentWrap .tArea {
  478. border: 1px solid #b5b7b9;
  479. background-color: #fff;
  480. resize: none;
  481. color: #4a4a4a;
  482. font-size: 12px;
  483. line-height: 18px;
  484. box-sizing: border-box;
  485. padding: 8px 5px;
  486. width: 100%;
  487. height: 200px;
  488. }
  489. .contentWrap .likeSelect:hover,
  490. .contentWrap .likeBtn:hover {
  491. border-color: #b5b7b9;
  492. }
  493. .contentWrap .likeSelect.hot,
  494. .contentWrap .likeBtn.hot {
  495. background-color: #fff;
  496. }
  497. .btnsContainer {
  498. text-align: right;
  499. padding: 0 13px 27px 13px;
  500. }
  501. .btnsContainer .btn {
  502. width: 72px;
  503. height: 24px;
  504. line-height: 24px;
  505. cursor: pointer;
  506. padding-top: 4px;
  507. text-align: center;
  508. font-size: 14px;
  509. color: #fff;
  510. margin-right: 10px;
  511. display: inline-block;
  512. }
  513. .btnsContainer .okBtn {
  514. background-color: #3bb3e4;
  515. }
  516. .btnsContainer .okBtn:hover {
  517. background-color: #38acdb;
  518. }
  519. .btnsContainer .cancelBtn {
  520. background-color: #9ca0a6;
  521. margin-right: 0;
  522. }
  523. .btnsContainer .cancelBtn:hover {
  524. background-color: #898c91;
  525. }
  526. /*画图工具结束*/
  527. /*区间统计*/
  528. .jchart-select-statistics-box {
  529. position: fixed;
  530. width: 100%;
  531. height: 100%;
  532. left: 0;
  533. top: 0;
  534. background-color: rgba(0, 0, 0, 0.01);
  535. display: none;
  536. z-index: 999;
  537. }
  538. .interval .top {
  539. padding-left: 10px;
  540. box-sizing: border-box;
  541. height: 40px;
  542. line-height: 40px;
  543. text-align: left;
  544. border-bottom: solid 1px #e1ecf2;
  545. font-size: 14px;
  546. color: #757d81;
  547. }
  548. .interval .top .closeBtn {
  549. float: right;
  550. margin-right: 15px;
  551. cursor: pointer;
  552. font-weight: 600;
  553. }
  554. .interval table {
  555. width: 100%;
  556. height: 170px;
  557. }
  558. .changColorR {
  559. border-right-color: #1295d9 !important;
  560. }
  561. .changColorL {
  562. border-left-color: #1295d9 !important;
  563. }
  564. .interval table .dateChange1 {
  565. /*padding :0px 3px;*/
  566. display: inline-block;
  567. cursor: pointer;
  568. width: 0;
  569. height: 0;
  570. border: 6px solid transparent;
  571. border-right: 6px solid #c8d2db;
  572. }
  573. .interval table .dateChange2 {
  574. /*padding :0px 3px;*/
  575. display: inline-block;
  576. cursor: pointer;
  577. width: 0;
  578. height: 0;
  579. border: 6px solid transparent;
  580. border-left: 6px solid #c8d2db;
  581. }
  582. .interval table tr td:nth-child(2),
  583. .interval table tr td:nth-child(4),
  584. .interval table tr td:nth-child(6) {
  585. font-weight: bold;
  586. }
  587. .interval table td {
  588. padding-left: 10px;
  589. border-bottom: 1px solid #ECEFF2;
  590. }
  591. .interval table td.name {
  592. text-align: right;
  593. }
  594. .interval table td:last-child {
  595. padding-right: 10px;
  596. }
  597. /*区间统计结束*/
  598. /*形态匹配*/
  599. .kLineMatch {
  600. position: absolute;
  601. z-index: 520;
  602. width: 300px;
  603. height: 600px;
  604. border: 1px solid #ECEFF2;
  605. background: #fff;
  606. display: none;
  607. }
  608. .kLineMatch .top {
  609. height: 30px;
  610. line-height: 30px;
  611. background: #ccc;
  612. text-align: center;
  613. }
  614. .kLineMatch .top .closeBtn {
  615. float: right;
  616. margin-right: 20px;
  617. cursor: pointer;
  618. }
  619. .kLineMatch .title {
  620. padding: 5px;
  621. }
  622. .kLineMatch .title .name {
  623. float: left;
  624. width: 70px;
  625. border-right: 1px solid #ccc;
  626. }
  627. .kLineMatch .title .time {
  628. float: left;
  629. width: 140px;
  630. padding-left: 5px;
  631. border-right: 1px solid #ccc;
  632. }
  633. .kLineMatch .title .similar {
  634. float: left;
  635. padding-left: 5px;
  636. }
  637. .kLineMatch .list {
  638. overflow-y: auto;
  639. height: 544px;
  640. width: 290px;
  641. padding: 5px 5px 0px 5px;
  642. }
  643. .kLineMatch .list .item .name {
  644. width: 70px;
  645. float: left;
  646. padding-bottom: 5px;
  647. }
  648. .kLineMatch .list .item .time {
  649. padding: 0px 0px 5px 5px;
  650. float: left;
  651. width: 140px;
  652. }
  653. .kLineMatch .list .item .similar {
  654. float: left;
  655. padding-left: 7px;
  656. padding-bottom: 5px;
  657. }
  658. /*形态匹配结束*/
  659. /*形态匹配结果列表 start*/
  660. .jchart-kline-match-box {
  661. font: 13px 'Microsoft Yahei';
  662. }
  663. .jchart-kline-match-box .matchTable {
  664. border-collapse: collapse;
  665. width: 100%;
  666. }
  667. .jchart-kline-match-box .matchTable td,
  668. .jchart-kline-match-box .matchTable th {
  669. line-height: 20px;
  670. border: 1px solid #ccc;
  671. padding: 0 10px;
  672. }
  673. .jchart-kline-match-box .matchTable td.red {
  674. color: red;
  675. }
  676. /*分页*/
  677. .pagination {
  678. height: 22px;
  679. text-align: center;
  680. margin-top: 10px;
  681. }
  682. .pagination span {
  683. display: inline-block;
  684. line-height: 20px;
  685. padding: 0 6px;
  686. border: 1px solid #ccc;
  687. margin-right: 6px;
  688. cursor: pointer;
  689. }
  690. .pagination span:hover,
  691. .pagination span.active {
  692. color: #ffb400;
  693. }
  694. /*形态匹配结果列表 end*/
  695. /*加载层*/
  696. .spinnerBg {
  697. background: #ccc;
  698. width: 100%;
  699. height: 100%;
  700. position: absolute;
  701. opacity: 0.5;
  702. display: none;
  703. }
  704. .spinner {
  705. width: 50px;
  706. height: 60px;
  707. font-size: 10px;
  708. position: absolute;
  709. top: 50%;
  710. left: 50%;
  711. display: none;
  712. }
  713. .spinner>div {
  714. background-color: #39adce;
  715. height: 100%;
  716. width: 6px;
  717. display: inline-block;
  718. -webkit-animation: stretchdelay 1.2s infinite ease-in-out;
  719. animation: stretchdelay 1.2s infinite ease-in-out;
  720. }
  721. .spinner .rect2 {
  722. -webkit-animation-delay: -1.1s;
  723. animation-delay: -1.1s;
  724. }
  725. .spinner .rect3 {
  726. -webkit-animation-delay: -1.0s;
  727. animation-delay: -1.0s;
  728. }
  729. .spinner .rect4 {
  730. -webkit-animation-delay: -0.9s;
  731. animation-delay: -0.9s;
  732. }
  733. .spinner .rect5 {
  734. -webkit-animation-delay: -0.8s;
  735. animation-delay: -0.8s;
  736. }
  737. @-webkit-keyframes stretchdelay {
  738. 0%,
  739. 40%,
  740. 100% {
  741. -webkit-transform: scaleY(0.4)
  742. }
  743. 20% {
  744. -webkit-transform: scaleY(1.0)
  745. }
  746. }
  747. @keyframes stretchdelay {
  748. 0%,
  749. 40%,
  750. 100% {
  751. transform: scaleY(0.4);
  752. -webkit-transform: scaleY(0.4);
  753. }
  754. 20% {
  755. transform: scaleY(1.0);
  756. -webkit-transform: scaleY(1.0);
  757. }
  758. }
  759. /*加载层结束*/
  760. .kline-info {
  761. position: absolute;
  762. /*opacity: 0.8;*/
  763. width: 16px;
  764. height: 16px;
  765. background-color: #fff;
  766. /*border: 2px solid #ff3232;*/
  767. color: #ff3232;
  768. text-align: center;
  769. cursor: pointer;
  770. font: bold 12px/1.4 arial;
  771. }
  772. .klineframe-toolbar {
  773. position: absolute;
  774. color: #fff;
  775. text-align: right;
  776. line-height: 24px;
  777. padding-right: 5px;
  778. box-sizing: border-box;
  779. }
  780. .klineframe-toolbar span:hover {
  781. color: #0182d4;
  782. }
  783. .klineframe-button {
  784. position: absolute;
  785. text-align: right;
  786. border: 1px solid #cccccc;
  787. padding: 2px;
  788. }
  789. /*.klineframe-button span:hover{*/
  790. /*color: #0182d4;*/
  791. /*}*/
  792. /*.klineframe-button span:active{*/
  793. /*color: #0182d4;*/
  794. /*}*/
  795. .icon-active {
  796. color: #0182d4;
  797. }
  798. .increase {
  799. margin-left: 3px;
  800. margin-right: 10px;
  801. }
  802. .rate-discount {
  803. font-weight: normal;
  804. margin-left: 90px;
  805. }
  806. .tipBoxTitle {
  807. display: inline-block;
  808. width: 130px;
  809. }
  810. .date-tipbox {
  811. margin-right: 10px;
  812. }
  813. /*参数设置面板*/
  814. .jchart-changeindex-box {
  815. position: fixed;
  816. display: none;
  817. width: 100%;
  818. height: 100%;
  819. left: 0;
  820. top: 0;
  821. z-index: 999;
  822. background-color: rgba(0, 0, 0, 0.01);
  823. }
  824. .jchart-modifyindex-box {
  825. position: fixed;
  826. display: none;
  827. width: 100%;
  828. height: 100%;
  829. left: 0;
  830. top: 0;
  831. z-index: 999;
  832. background-color: rgba(0, 0, 0, 0.01);
  833. }
  834. .jchart-kline-minute-box {
  835. position: absolute;
  836. display: none;
  837. width: 500px;
  838. height: 550px !important;
  839. padding: 0 5px 20px 10px;
  840. background-color: rgba(255, 255, 255, 0.95);
  841. border: solid 1px rgba(200, 210, 219, 0.92);
  842. box-shadow: 0px 1px 4px 0px rgba(0, 0, 0, 0.23);
  843. z-index: 999;
  844. }
  845. .parameter {
  846. position: absolute;
  847. top: 50%;
  848. left: 50%;
  849. transform: translateX(-50%) translateY(-50%);
  850. padding: 3px;
  851. box-sizing: border-box;
  852. width: 520px;
  853. height: 421px;
  854. background-color: rgba(255, 255, 255, 0.96);
  855. box-shadow: 0px 4px 17px 0px rgba(0, 0, 0, 0.55);
  856. border-radius: 2px;
  857. z-index: 999;
  858. }
  859. .parameter-header {
  860. position: relative;
  861. width: 100%;
  862. height: 42px;
  863. line-height: 42px;
  864. border-bottom: 1px solid #c8d2db;
  865. }
  866. .parameter-header span {
  867. font-family: 微软雅黑;
  868. font-size: 14px;
  869. margin-left: 10px;
  870. }
  871. .parameter-header strong {
  872. position: absolute;
  873. right: 10px;
  874. top: 10px;
  875. font-size: 14px;
  876. font-weight: 300;
  877. }
  878. .parameter-content {
  879. padding: 20px;
  880. box-sizing: border-box;
  881. }
  882. .row-line {
  883. margin-right: 20px;
  884. margin-top: 10px;
  885. padding-left: 3px;
  886. box-sizing: border-box;
  887. width: 100px;
  888. height: 24px;
  889. line-height: 24px;
  890. border: 1px solid #cccccc;
  891. }
  892. #close {
  893. cursor: pointer;
  894. }
  895. .parameter1 {
  896. cursor: pointer;
  897. }
  898. .parameter-footer {
  899. position: absolute;
  900. bottom: 20px;
  901. left: 50%;
  902. transform: translateX(-50%);
  903. }
  904. .parameter-footer button {
  905. margin-left: 15px;
  906. width: 78px;
  907. height: 28px;
  908. border: none;
  909. border-radius: 2px;
  910. color: #ffffff;
  911. }
  912. .submit {
  913. background-color: #0182d4;
  914. }
  915. .cancel {
  916. background-color: #c8d2db;
  917. }
  918. /*指数设置面板*/
  919. .target-box {
  920. position: absolute;
  921. display: none;
  922. width: 100%;
  923. height: 100%;
  924. background-color: rgba(0, 0, 0, 0.01);
  925. z-index: 999;
  926. }
  927. .target-panel {
  928. position: absolute;
  929. top: 50%;
  930. left: 50%;
  931. transform: translateX(-50%) translateY(-50%);
  932. width: 800px;
  933. height: 500px;
  934. background-color: rgba(255, 255, 255, 0.96);
  935. box-shadow: 0px 4px 17px 0px rgba(0, 0, 0, 0.55);
  936. border-radius: 3px;
  937. }
  938. .target-header {
  939. position: relative;
  940. width: 100%;
  941. height: 42px;
  942. line-height: 42px;
  943. border-bottom: 1px solid #c8d2db;
  944. }
  945. .target-header span {
  946. font-family: 微软雅黑;
  947. font-size: 14px;
  948. margin-left: 10px;
  949. }
  950. .target-header strong {
  951. position: absolute;
  952. right: 10px;
  953. top: 10px;
  954. font-size: 14px;
  955. font-weight: 300;
  956. }
  957. #close-tar {
  958. cursor: pointer;
  959. }
  960. .target-content {
  961. height: 100%;
  962. }
  963. .target-left {
  964. float: left;
  965. width: 200px;
  966. height: calc(100% - 43px);
  967. border-right: 1px solid #c8d2db;
  968. }
  969. .target-left input {
  970. margin-left: 10px;
  971. height: 40px;
  972. line-height: 40px;
  973. border: none;
  974. font-size: 14px;
  975. }
  976. .target-left ul {
  977. border-top: 1px solid #c8d2db;
  978. list-style: none;
  979. padding: 10px;
  980. box-sizing: border-box;
  981. }
  982. .target-left ul li {
  983. font-size: 13px;
  984. line-height: 30px;
  985. color: #757d81;
  986. cursor: pointer;
  987. }
  988. .active-list {
  989. color: #1295d9 !important;
  990. }
  991. .target-right {
  992. float: left;
  993. width: 595px;
  994. }
  995. .target-right ul {
  996. width: 590px;
  997. max-height: 450px;
  998. overflow: auto;
  999. padding-top: 10px;
  1000. padding-left: 20px;
  1001. box-sizing: border-box;
  1002. }
  1003. .target-right ul li {
  1004. display: inline-block;
  1005. margin-top: 5px;
  1006. margin-left: 10px;
  1007. list-style: none;
  1008. width: 175px;
  1009. line-height: 30px;
  1010. text-align: left;
  1011. float: left;
  1012. cursor: pointer;
  1013. }
  1014. /*分钟走势图*/
  1015. .minute-dialog-title {
  1016. position: relative;
  1017. margin-bottom: 10px;
  1018. height: 36px;
  1019. line-height: 36px;
  1020. width: 100%;
  1021. border-bottom: 1px solid #ccc;
  1022. }
  1023. .minute-dialog-title span {
  1024. margin-left: 5px;
  1025. }
  1026. .minute-dialog-title strong {
  1027. position: absolute;
  1028. right: 5px;
  1029. top: 0;
  1030. font-weight: 300;
  1031. font-size: 12px;
  1032. }
  1033. .minute-dialog-title strong:hover,
  1034. .parameter-header strong:hover {
  1035. color: #0182d4;
  1036. }
  1037. /*tooltip的外层样式*/
  1038. .jschart-tooltip {
  1039. box-shadow: 0px 1px 4px 0px rgba(0, 0, 0, 0.23);
  1040. border: solid 1px rgba(200, 210, 219, 0.92);
  1041. padding: 7px 20px 15px 13px;
  1042. box-sizing: border-box;
  1043. position: relative;
  1044. display: none;
  1045. z-index: 9;
  1046. user-select: none;
  1047. }
  1048. /*tooltip的内层样式*/
  1049. .tooltip-title {
  1050. color: #2b3645;
  1051. font-family: 微软雅黑;
  1052. font-size: 12px;
  1053. text-align: center;
  1054. display: block;
  1055. line-height: 24px;
  1056. }
  1057. .tooltip-con {
  1058. color: #2b3645;
  1059. font-family: 微软雅黑;
  1060. font-size: 12px;
  1061. line-height: 24px;
  1062. }
  1063. .tooltip-num {
  1064. font-family: 微软雅黑;
  1065. font-size: 12px;
  1066. line-height: 24px;
  1067. text-align: right;
  1068. display: inline-block;
  1069. width: 90px;
  1070. }
  1071. /*区间选择*/
  1072. .jschart-selectrect {
  1073. border: dashed 1px #0f248de0;
  1074. display: none;
  1075. }
  1076. /*提示详情*/
  1077. .jchart-klineinfo-tooltip {
  1078. position: absolute;
  1079. z-index: 10;
  1080. max-height: 270px;
  1081. line-height: 28px;
  1082. box-shadow: 0px 1px 4px 0px rgba(0, 0, 0, 0.23);
  1083. border: solid 1px rgba(200, 210, 219, 0.92);
  1084. padding: 15px;
  1085. background: rgba(255, 255, 255, 0.92);
  1086. box-sizing: border-box;
  1087. display: none;
  1088. user-select: none;
  1089. }
  1090. .total-list {
  1091. color: #f39800;
  1092. }
  1093. .jchart-klineinfo-tooltip span {
  1094. display: block;
  1095. /* width:100%; */
  1096. /* overflow: hidden; */
  1097. /* white-space: nowrap; */
  1098. /* text-overflow: ellipsis; */
  1099. vertical-align: bottom;
  1100. }
  1101. .title-length {
  1102. max-height: 220px;
  1103. overflow: hidden;
  1104. }
  1105. .close-munite {
  1106. cursor: pointer;
  1107. }
  1108. /*交易指标提示信息*/
  1109. .jchart-klinetrade-tooltip {
  1110. position: absolute;
  1111. z-index: 10;
  1112. max-height: 270px;
  1113. line-height: 28px;
  1114. box-shadow: 0px 1px 4px 0px rgba(0, 0, 0, 0.23);
  1115. border: solid 1px rgba(200, 210, 219, 0.92);
  1116. padding: 7px;
  1117. background: rgba(255, 255, 255, 0.92);
  1118. box-sizing: border-box;
  1119. display: none;
  1120. }
  1121. /*分时图异动信息*/
  1122. .jchart-minuteinfo-tooltip {
  1123. position: absolute;
  1124. z-index: 10;
  1125. max-height: 270px;
  1126. line-height: 28px;
  1127. box-shadow: 0px 1px 4px 0px rgba(0, 0, 0, 0.23);
  1128. border: solid 1px rgba(200, 210, 219, 0.92);
  1129. padding: 7px;
  1130. background: rgba(255, 255, 255, 0.92);
  1131. box-sizing: border-box;
  1132. display: none;
  1133. }
  1134. /*图标提示信息*/
  1135. .jchart-iconinfo-tooltip {
  1136. position: absolute;
  1137. z-index: 10;
  1138. max-height: 270px;
  1139. line-height: 28px;
  1140. box-shadow: 0px 1px 4px 0px rgba(0, 0, 0, 0.23);
  1141. border: solid 1px rgba(200, 210, 219, 0.92);
  1142. padding: 7px;
  1143. background: rgba(255, 255, 255, 0.92);
  1144. box-sizing: border-box;
  1145. display: none;
  1146. }
  1147. /*ox图提示信息*/
  1148. .jchart-chartox-tooltip {
  1149. position: absolute;
  1150. z-index: 10;
  1151. max-height: 270px;
  1152. line-height: 28px;
  1153. box-shadow: 0px 1px 4px 0px rgba(0, 0, 0, 0.23);
  1154. border: solid 1px rgba(200, 210, 219, 0.92);
  1155. padding: 7px;
  1156. background: rgba(255, 255, 255, 0.92);
  1157. box-sizing: border-box;
  1158. display: none;
  1159. }
  1160. /*散点图提示信息*/
  1161. .jchart-charscatterplot-tooltip {
  1162. position: absolute;
  1163. z-index: 10;
  1164. max-height: 270px;
  1165. line-height: 28px;
  1166. box-shadow: 0px 1px 4px 0px rgba(0, 0, 0, 0.23);
  1167. border: solid 1px rgba(200, 210, 219, 0.92);
  1168. padding: 7px;
  1169. background: rgba(255, 255, 255, 0.92);
  1170. box-sizing: border-box;
  1171. display: none;
  1172. }
  1173. /*ChartDrawSVG提示信息*/
  1174. .jchart-chartdrawsvg-tooltip {
  1175. position: absolute;
  1176. z-index: 10;
  1177. max-height: 270px;
  1178. line-height: 28px;
  1179. box-shadow: 0px 1px 4px 0px rgba(0, 0, 0, 0.23);
  1180. border: solid 1px rgba(200, 210, 219, 0.92);
  1181. padding: 7px;
  1182. background: rgba(255, 255, 255, 0.92);
  1183. box-sizing: border-box;
  1184. display: none;
  1185. /*禁止文字选中*/
  1186. -webkit-user-select: none;
  1187. -moz-user-select: none;
  1188. -ms-user-select: none;
  1189. user-select: none;
  1190. }
  1191. /*龙虎榜*/
  1192. .trade-detall {
  1193. margin-left: 80px;
  1194. }
  1195. .reason-list {
  1196. display: inline-block;
  1197. width: 200px;
  1198. text-overflow: ellipsis;
  1199. white-space: nowrap;
  1200. overflow: hidden;
  1201. vertical-align: bottom;
  1202. }
  1203. .trade-time {
  1204. vertical-align: top;
  1205. }
  1206. /*业绩预告*/
  1207. .prorecast-week {
  1208. margin-left: 70px;
  1209. }
  1210. /*=======区间选择弹出框=========*/
  1211. .jchart-select-section {
  1212. height: 340px;
  1213. }
  1214. .jchart-select-table-right .jchart-select-date {
  1215. width: 100%;
  1216. margin-bottom: 5px;
  1217. }
  1218. .jchart-select-date span {
  1219. display: inline-block;
  1220. width: 32%;
  1221. padding-left: 10px;
  1222. box-sizing: border-box;
  1223. font-size: 13px;
  1224. }
  1225. .jchart-select-date span i {
  1226. display: inline-block;
  1227. width: 12px;
  1228. height: 24px;
  1229. line-height: 24px;
  1230. text-align: center;
  1231. border: 1px solid #dddddd;
  1232. background-color: #f5f5f5;
  1233. cursor: pointer;
  1234. }
  1235. .start-date-left,
  1236. .end-date-left {
  1237. margin: 0 2px 0 5px;
  1238. }
  1239. .jchart-select-table-right>table {
  1240. width: 100%;
  1241. border-collapse: collapse;
  1242. }
  1243. .jchart-select-table-right>table,
  1244. .jchart-select-table-right>table tr,
  1245. .jchart-select-table-right>table td {
  1246. border: 1px solid #dddddd;
  1247. }
  1248. .jchart-select-table-right td {
  1249. padding-left: 10px;
  1250. box-sizing: border-box;
  1251. width: 32%;
  1252. height: 40px;
  1253. vertical-align: center;
  1254. }
  1255. .jchart-select-table-right>table td span {
  1256. margin-left: 20px;
  1257. }
  1258. .jchart-select-table-right>table td strong {
  1259. display: inline-block;
  1260. width: 50px;
  1261. font-weight: normal;
  1262. }
  1263. /*设置涨跌颜色*/
  1264. .PriceUp {
  1265. color: #ee1515 !important;
  1266. }
  1267. .PriceDown {
  1268. color: #199e00 !important;
  1269. }
  1270. .PriceNull {
  1271. color: black;
  1272. }
  1273. /*按钮背景色*/
  1274. .BtnBackground {
  1275. background-color: #ffffff !important;
  1276. color: #eeeeee;
  1277. }
  1278. /*K线右上角图标*/
  1279. .icon-image {
  1280. cursor: pointer;
  1281. }
  1282. .icon-image img {
  1283. /*margin-top: 12px;*/
  1284. padding: 10px 8px;
  1285. display: block;
  1286. width: 22px;
  1287. height: 22px;
  1288. border-left: 1px solid #cccccc;
  1289. border-right: 1px solid #cccccc;
  1290. }
  1291. .icon-image:first-child img {
  1292. border-top: 1px solid #cccccc;
  1293. }
  1294. .icon-image:last-child img {
  1295. border-bottom: 1px solid #cccccc;
  1296. }
  1297. /*K线子图标*/
  1298. .subTolls {
  1299. padding: 8px 5px 0px 8px;
  1300. border: 1px solid #aaaaaa;
  1301. background-color: #fff;
  1302. height: 26px;
  1303. }
  1304. .subTolls::after {
  1305. content: "";
  1306. display: block;
  1307. width: 0;
  1308. height: 0;
  1309. clear: both;
  1310. }
  1311. .subTolls>* {
  1312. margin: 0 3px;
  1313. cursor: pointer;
  1314. display: block;
  1315. width: 20px;
  1316. height: 20px;
  1317. float: left;
  1318. }
  1319. .subTolls>.subtool-set {
  1320. vertical-align: top;
  1321. }
  1322. .change-color {
  1323. width: 24px;
  1324. height: 3px;
  1325. outline: none;
  1326. border: 0;
  1327. position: relative;
  1328. }
  1329. .changes-color {
  1330. position: relative;
  1331. }
  1332. .change-image {
  1333. margin-left: 3px;
  1334. margin-bottom: 2px;
  1335. display: inline-block;
  1336. width: 16px;
  1337. height: 13px;
  1338. }
  1339. .changes-color input {
  1340. position: absolute;
  1341. left: 0;
  1342. bottom: 0;
  1343. }
  1344. input[type="color"] {
  1345. border: 0;
  1346. padding: 0;
  1347. cursor: pointer;
  1348. }
  1349. ::-webkit-color-swatch-wrapper {
  1350. background-color: #ffffff;
  1351. }
  1352. ::-webkit-color-swatch {
  1353. height: 4px;
  1354. width: 25px;
  1355. position: relative;
  1356. left: 0;
  1357. top: -5px;
  1358. border: 0;
  1359. }
  1360. .subtool-del {
  1361. position: relative;
  1362. }
  1363. }