staticInfo.less 9.2 KB

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