staticInfo.less 9.2 KB

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