staticInfoOut.less 9.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524
  1. @import './common.less';
  2. ul,
  3. li {
  4. list-style: none;
  5. }
  6. div,li,span,i,p,h1,h2,h3,h4,h5,pre{
  7. font-family: '微软雅黑', '宋体';
  8. }
  9. table {
  10. border-collapse: collapse;
  11. border-spacing: 0;
  12. }
  13. body {
  14. /*min-width: 650px;*/
  15. font-size: 14px;
  16. overflow-y: hidden;
  17. font-family: '微软雅黑', '宋体';
  18. background: #dde2ea;
  19. height: 100%;
  20. color: #1E1E1E;
  21. line-height: 21px;
  22. }
  23. h1 {
  24. margin: 0 0px 15px 0px !important;
  25. font-size: 18px !important;
  26. /*line-height: 37px;*/
  27. padding: 0 0 0 40px;
  28. }
  29. .titleH2 {
  30. font-size: 18px;
  31. position: relative;
  32. background: #fff;
  33. padding-right: 6px;
  34. padding-left: 15px;
  35. font-weight: bold;
  36. border-left: 4px solid @staticMainColor;
  37. }
  38. .content {
  39. position: relative;
  40. height: 550px;
  41. }
  42. .infoBox {
  43. }
  44. .infoWrapper {
  45. padding: 0 0 0 40px;
  46. }
  47. .circleBox {
  48. position: absolute;
  49. z-index: 10;
  50. background: #fff;
  51. left: -38px;
  52. height: 32px;
  53. top: -1px;
  54. }
  55. .circle {
  56. display: inline-block;
  57. *display:inline;
  58. *zoom:1;
  59. width: 10px;
  60. height: 10px;
  61. border-radius: 50%;
  62. background: #3B9ED0;
  63. position: relative;
  64. top: 2px;
  65. }
  66. .infos {
  67. height: 100%;
  68. overflow-y: auto;
  69. /*padding: 0 60px 0 0;*/
  70. width: calc(100% - 250px);
  71. }
  72. .infos>div {
  73. margin-right: 6.5%;
  74. .contentWrapper img{
  75. max-width: 100%;
  76. }
  77. }
  78. .infoBox {
  79. border-bottom: 1px #E6E6E6 solid;
  80. margin-bottom: 10px;
  81. }
  82. .title {
  83. position: relative;
  84. line-height: 24px;
  85. margin: 0 0 4px;
  86. }
  87. .line {
  88. border-bottom: 1px dashed #ccc;
  89. }
  90. .container {
  91. width:100%;
  92. overflow: hidden;
  93. background: #fff;
  94. margin: 0 auto;
  95. padding: 8px 0 0px 0px;
  96. display: none;
  97. position: relative;
  98. left: 0;
  99. right: 0;
  100. }
  101. pre {
  102. white-space: pre-wrap;
  103. word-wrap: break-word;
  104. color: #1E1E1E;
  105. ol li {
  106. list-style: decimal;
  107. list-style-position:inside;
  108. }
  109. ul {
  110. padding-left: 20px;
  111. li {
  112. list-style-position:inside;
  113. list-style: inside;
  114. }
  115. }
  116. }
  117. .anchors {
  118. width: 210px;
  119. position: absolute;
  120. right:15px;
  121. top: 0;
  122. margin-right: 14px;
  123. overflow-y: auto;
  124. background-color: #EDFAFF;
  125. padding: 25px 0;
  126. height: calc(100% - 50px);
  127. overflow-x: hidden;
  128. }
  129. .anchors ul {
  130. margin-left: 30px;
  131. padding: 15px 0px 15px 20px;
  132. border-radius: 4px;
  133. border: 1px solid #EDFAFF;
  134. /*background-color: #EDFAFF;*/
  135. line-height: 19px;
  136. }
  137. .anchors li {
  138. position: relative;
  139. border-left: 1px solid #8DD1EE;
  140. }
  141. .anchors li:first-child {
  142. padding-top:30px
  143. }
  144. .anchors .anchor-line {
  145. height: 30px;
  146. width: 0;
  147. border-left: 1px solid #8DD1EE;
  148. }
  149. .anchors .a-circle{
  150. border:2px #8DD1EE solid;
  151. width: 16px;
  152. height: 16px;
  153. background: #fff;
  154. border-radius: 16px;
  155. position: absolute;
  156. left: 41px;
  157. z-index: 1;
  158. }
  159. .anchors .a-circle:last-child{
  160. position: unset;
  161. margin-left: 41px;
  162. margin-top: -16px;
  163. }
  164. .anchors i {
  165. position: absolute;
  166. display: inline-block;
  167. width: 16px;
  168. height: 16px;
  169. border-radius: 8px;
  170. border: 1px solid @staticMainColor;
  171. background-color: @staticMainColor;
  172. left: -10px;
  173. top: 5px;
  174. z-index: 1;
  175. }
  176. .anchors li:first-child i{
  177. top:35px;
  178. }
  179. .anchors a {
  180. display: inline-block;
  181. position: relative;
  182. top: 4px;
  183. left: 0;
  184. width: 126px;
  185. padding: 0 0px 0 20px;
  186. text-decoration: none;
  187. font-size: 16px;
  188. font-weight: 400;
  189. word-wrap: break-word;
  190. }
  191. .anchors .active a {
  192. /*color: #3B9ED0 !important;
  193. font-weight: 700 !important;*/
  194. }
  195. .anchors .active i {
  196. width: 26px;
  197. height: 16px;
  198. top: 6px;
  199. left: -14px;
  200. border-radius: 0;
  201. border: none;
  202. background-color: #F5F6F7;
  203. background: url('../images/icon_current.svg') center center no-repeat;
  204. }
  205. .disCopy {
  206. -webkit-touch-callout: none;
  207. -webkit-user-select: none;
  208. -khtml-user-select: none;
  209. -moz-user-select: none;
  210. -ms-user-select: none;
  211. user-select: none;
  212. }
  213. .tabBox{
  214. position: relative;
  215. background: #fff;
  216. padding: 0 40px 0;
  217. }
  218. .showWhich {
  219. width: 187px;
  220. text-align: center;
  221. padding: 30px 0 20px;
  222. position: relative;
  223. .showWhichSelect {
  224. display: inline-block;
  225. color: @staticMainColor;
  226. background: url("../images/d1.png") 200px 9px #EAFCFF no-repeat;
  227. font-size: 16px;
  228. padding:1px 24px 2px 9px;
  229. width: 100%;
  230. cursor: pointer;
  231. }
  232. ul {
  233. display: none;
  234. position: absolute;
  235. left: 0;
  236. top: 52px;
  237. z-index: 10;
  238. background-color: #fff;
  239. width: 220px;
  240. box-shadow: 0px 6px 16px 0px rgba(0, 0, 0, 0.18);
  241. border-radius: 4px;
  242. border: 1px solid #E6E6E6;
  243. li {
  244. height: 35px;
  245. line-height: 35px;
  246. white-space: nowrap;/*强制在一行显示*/
  247. text-overflow:ellipsis;/*设置超出内容显示...*/
  248. overflow: hidden;/*一定不能少 超出的内容进行隐藏*/
  249. padding:0 20px;
  250. cursor: pointer;
  251. &:hover {
  252. background-color: #E2F1F8;
  253. }
  254. }
  255. }
  256. }
  257. .titleCont{
  258. background: #fff;
  259. padding-left: 39px;
  260. padding-bottom: 20px;
  261. }
  262. .titleCont .title{
  263. font-size: 20px;
  264. font-weight: bold;
  265. margin-right: 23px;
  266. }
  267. .tabList{
  268. display: inline-block;
  269. }
  270. .tab{
  271. display: inline-block;
  272. padding: 0 5px;
  273. margin-right: 20px;
  274. background: #fff;
  275. border-radius:2px;
  276. cursor: pointer;
  277. font-size: 11px;
  278. color: #2A9BD5;
  279. border:1px #2A9BD5 solid;
  280. vertical-align: text-bottom;
  281. }
  282. .activeTab{
  283. background: #2A9BD5;
  284. color: #fff;
  285. }
  286. .ql-align-right{
  287. text-align: right;
  288. }
  289. .ql-align-center{
  290. text-align: center;
  291. }
  292. .ellipsis{
  293. white-space: nowrap;/*强制在一行显示*/
  294. text-overflow:ellipsis;/*设置超出内容显示...*/
  295. overflow: hidden;/*一定不能少 超出的内容进行隐藏*/
  296. }
  297. .empty{
  298. text-align: center;
  299. padding-top: 32vh;
  300. img{
  301. width: 140px;
  302. height: 75px;
  303. }
  304. p{
  305. margin-top: 10px;
  306. font-size: 15px;
  307. color: #aaa;
  308. }
  309. }
  310. .open-win{
  311. position: absolute;
  312. right: 38px;
  313. bottom: 28px;
  314. cursor: pointer;
  315. color: #3B9ED0;
  316. font-size: 14px;
  317. padding-left: 30px;
  318. background: url("../images/link.png") 0 -2px no-repeat;
  319. background-size: 25px 25px;
  320. }
  321. .footer{
  322. width: 100%;
  323. height: 52px;
  324. background: #172238;
  325. padding-top: 8px;
  326. position: absolute;
  327. bottom: 0;
  328. z-index: 1;
  329. p{
  330. color:#fff;
  331. text-align: center;
  332. font-size: 12px;
  333. white-space: nowrap;
  334. }
  335. }
  336. .scaletitle{
  337. font-size: 20px;
  338. font-weight: 500;
  339. color: #333333;
  340. line-height: 28px;
  341. margin: 30px 0 8px 0;
  342. text-align: center;
  343. }
  344. .scaleBox{
  345. border-bottom: none;
  346. }
  347. .contentList{
  348. max-width: 100%;
  349. border-bottom: 1PX solid #F3F3F3;
  350. margin-bottom: 6px;
  351. .item-list{
  352. padding: 0 21px;
  353. .item-title{
  354. font-size: 14px;
  355. font-weight: 400;
  356. color: #333333;
  357. line-height: 20px;
  358. margin-top: 14px;
  359. }
  360. .item-content{
  361. margin: 10px 0;
  362. display: flex;
  363. flex-flow: wrap;
  364. .radio {
  365. display: flex;
  366. margin: 5px;
  367. margin-right: 25px;
  368. label{
  369. display: flex;
  370. align-items: center;
  371. font-weight: 400;
  372. color: #666666;
  373. line-height: 20px;
  374. & input{
  375. margin-right: 6px;
  376. }
  377. .num{
  378. margin-left: 10px;
  379. }
  380. }
  381. .recommend{
  382. width: 18px;
  383. height: 18px;
  384. }
  385. }
  386. }
  387. }
  388. }
  389. .scalebot{
  390. display: flex;
  391. align-items: center;
  392. justify-content: flex-end;
  393. margin-bottom: 44px;
  394. .but{
  395. width: 94px;
  396. height: 34px;
  397. background: #FFFFFF;
  398. border-radius: 8px;
  399. border: 1px solid #2A9BD5;
  400. font-size: 16px;
  401. font-weight: 400;
  402. color: #2A9BD5;
  403. margin-right: 9px;
  404. }
  405. .score{
  406. font-size: 16px;
  407. font-weight: 400;
  408. color: #333333;
  409. margin-right: 30px;
  410. display: none;
  411. }
  412. }
  413. .result{
  414. background: #EDFAFF;
  415. border-radius: 10px;
  416. font-size: 14px;
  417. font-weight: 500;
  418. color: #333333;
  419. display: none;
  420. margin: 0 75px;
  421. .result_box{
  422. display: flex;
  423. justify-content: center;
  424. padding: 25px 56px;
  425. .hel{
  426. width: 21px;
  427. height: 21px;
  428. background: #2C96E5;
  429. border-radius: 50%;
  430. display: flex;
  431. align-items: center;
  432. justify-content: center;
  433. color: #fff;
  434. margin-right: 9px;
  435. font-size: 12px;
  436. }
  437. }
  438. }
  439. .result_title{
  440. max-width: 85%;
  441. }
  442. .foot{
  443. margin-bottom: 20px;
  444. margin-top: 40px;
  445. display: none;
  446. .foot_box{
  447. display: flex;
  448. justify-content: center;
  449. .printing{
  450. display: flex;
  451. align-items: center;
  452. justify-content: space-around;
  453. width: 94px;
  454. height: 32px;
  455. background: #FFFFFF;
  456. border-radius: 4px;
  457. border: 1px solid #333333;
  458. cursor: pointer;
  459. }
  460. .printing:hover{
  461. background: #2C96E5;
  462. color: #fff;
  463. border:1px solid #2C96E5;
  464. }
  465. .copy{
  466. width: 132px;
  467. height: 32px;
  468. background: #FFFFFF;
  469. border-radius: 4px;
  470. border: 1px solid #333333;
  471. text-align: center;
  472. line-height: 32px;
  473. margin-left: 38px;
  474. cursor: pointer;
  475. }
  476. .copy:hover{
  477. background: #2C96E5;
  478. color: #fff;
  479. border:1px solid #2C96E5;
  480. }
  481. }
  482. }
  483. #inputs{
  484. position: absolute;top: 0;left: 0;opacity: 0;z-index: -10;
  485. }
  486. #Print{
  487. overflow-x: hidden;
  488. }
  489. .scale{
  490. .infos-box{
  491. border: 1px solid #E6E6E6;
  492. margin: 0 71px 20px 38px;
  493. .infoWrapper {
  494. padding: 0 75px;
  495. }
  496. .scalebot{
  497. padding-right: 75px;
  498. }
  499. }
  500. }
  501. .chColor{
  502. color: red!important;
  503. }