successPage.css 9.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505
  1. body {
  2. background-color: #F8F8F8;
  3. }
  4. * {
  5. padding: 0;
  6. margin: 0;
  7. border: 0;
  8. }
  9. ul,
  10. li,
  11. ol {
  12. list-style: none;
  13. }
  14. .hbtn {
  15. display: flex;
  16. align-items: center;
  17. justify-content: center;
  18. width: 150px;
  19. height: 35px;
  20. margin-left: 15px;
  21. background: #fff;
  22. border: 1px solid #2977ff;
  23. color: #619aff;
  24. font-size: 16px;
  25. border-radius: 4px;
  26. cursor: pointer;
  27. }
  28. .hbtn.disabled {
  29. border-color: #999;
  30. color: #999;
  31. cursor: default;
  32. }
  33. .hbtn.disabled:hover {
  34. border-color: #999;
  35. color: #999;
  36. cursor: default;
  37. background: #fff;
  38. }
  39. .hbtn:hover {
  40. background: #619aff;
  41. color: #fff;
  42. }
  43. .hgc_dialog {
  44. position: fixed;
  45. width: 100%;
  46. height: 100%;
  47. background: rgba(0, 0, 0, 0.3);
  48. top: 0;
  49. left: 0;
  50. z-index: 1000;
  51. }
  52. .hgc_dialog .hgc_dialogContent {
  53. position: fixed;
  54. width: 500px;
  55. left: calc((100% - 500px)/2);
  56. top: calc((100% - 300px)/2);
  57. background: #fff;
  58. }
  59. .hgc_dialog .hgc_dialogContent .warning {
  60. color: #FF4D59;
  61. }
  62. .hgc_dialog .hgc_dialogContent h2 {
  63. display: flex;
  64. align-items: center;
  65. justify-content: space-between;
  66. height: 40px;
  67. padding: 0 15px;
  68. background: #2977ff;
  69. color: #fff;
  70. font-size: 16px;
  71. margin: 0;
  72. cursor: move;
  73. }
  74. .hgc_dialog .hgc_dialogContent h2 i {
  75. display: flex;
  76. align-items: center;
  77. justify-content: center;
  78. width: 20px;
  79. height: 20px;
  80. font-style: normal;
  81. font-size: 18px;
  82. cursor: pointer;
  83. }
  84. .hgc_dialog .hgc_dialogContent .content {
  85. padding: 20px 10px;
  86. }
  87. .hgc_dialog .hgc_dialogContent .btns {
  88. display: flex;
  89. align-items: center;
  90. justify-content: center;
  91. padding: 20px 0;
  92. }
  93. .hgc_dialog .hgc_dialogContent .btns .hbtn {
  94. height: 35px;
  95. width: 88px;
  96. }
  97. .hgc_headOPerator {
  98. display: flex;
  99. align-items: center;
  100. height: 60px;
  101. padding: 0 15px;
  102. padding-left: 30px;
  103. font-size: 16px;
  104. background-color: #fff;
  105. }
  106. .hgc_headOPerator .menuBtn {
  107. display: flex;
  108. height: 60px;
  109. align-items: center;
  110. font-size: 18px;
  111. cursor: pointer;
  112. justify-content: center;
  113. }
  114. .hgc_headOPerator .menuBtn span {
  115. margin-left: 10px;
  116. font-size: 16px;
  117. font-weight: 600;
  118. color: #5d5d5d;
  119. }
  120. .hgc_siderBar {
  121. position: fixed;
  122. height: 100%;
  123. width: 240px;
  124. top: 0;
  125. left: -260px;
  126. display: flex;
  127. flex-direction: column;
  128. background-color: #fff;
  129. box-shadow: 4px 0 4px 0 rgba(0, 0, 0, 0.1);
  130. transition: left 0.5s ease;
  131. -webkit-transition: left 0.5s ease;
  132. z-index: 1000;
  133. }
  134. .hgc_siderBar.active {
  135. left: 0;
  136. }
  137. .hgc_siderBar .menuBtn {
  138. display: flex;
  139. height: 60px;
  140. padding-left: 20px;
  141. align-items: center;
  142. font-size: 18px;
  143. cursor: pointer;
  144. border-bottom: 1px solid #E4EAEF;
  145. justify-content: flex-start;
  146. }
  147. .hgc_siderBar .menuBtn span {
  148. margin-left: 20px;
  149. font-size: 16px;
  150. font-weight: 600;
  151. color: #5d5d5d;
  152. }
  153. .hgc_siderBar .menuList {
  154. background-color: #fff;
  155. }
  156. .hgc_siderBar .menuList li {
  157. display: flex;
  158. cursor: pointer;
  159. }
  160. .hgc_siderBar .menuList li.active a {
  161. color: #619aff;
  162. }
  163. .hgc_siderBar .menuList li.back a:hover {
  164. background: #fff;
  165. color: #333;
  166. border-right-color: transparent;
  167. }
  168. .hgc_siderBar .menuList li a {
  169. height: 48px;
  170. width: 240px;
  171. line-height: 48px;
  172. border-right: 2px solid transparent;
  173. color: #333;
  174. text-align: center;
  175. font-size: 16px;
  176. }
  177. .hgc_siderBar .menuList li a:hover {
  178. background: #F0F3F6;
  179. color: #619aff;
  180. border-right-color: #619aff;
  181. }
  182. .hgc_content {
  183. padding: 20px;
  184. font-size: 16px;
  185. }
  186. .hgc_content .theme {
  187. color: #619aff;
  188. }
  189. .hgc_content .notice {
  190. position: relative;
  191. padding-left: 5px;
  192. cursor: pointer;
  193. position: absolute;
  194. right: 10px;
  195. top: 50%;
  196. transform: translateY(-50%);
  197. }
  198. .hgc_content .notice:hover i {
  199. display: block;
  200. }
  201. .hgc_content .notice img {
  202. width: 16px;
  203. height: 16px;
  204. display: block;
  205. }
  206. .hgc_content .notice i {
  207. display: block;
  208. position: absolute;
  209. padding: 5px;
  210. background: rgba(0, 0, 0, 0.5);
  211. bottom: 23px;
  212. left: 50%;
  213. transform: translateX(-50%);
  214. color: #fff;
  215. border-radius: 3px;
  216. min-width: 220px;
  217. font-style: normal;
  218. display: none;
  219. font-weight: normal;
  220. }
  221. .hgc_content .notice i:after {
  222. content: '';
  223. position: absolute;
  224. width: 0;
  225. height: 0;
  226. border: 7px solid transparent;
  227. border-top-color: rgba(0, 0, 0, 0.5);
  228. bottom: -14px;
  229. left: 50%;
  230. transform: translateX(-50%);
  231. }
  232. .hgc_content .module {
  233. margin-bottom: 20px;
  234. background: #fff;
  235. }
  236. .hgc_content .module h2 {
  237. position: relative;
  238. display: flex;
  239. align-items: center;
  240. justify-content: space-between;
  241. height: 60px;
  242. padding: 0 20px;
  243. font-size: 18px;
  244. font-weight: normal;
  245. border-bottom: 1px solid #eee;
  246. }
  247. .hgc_content .module h2:after {
  248. content: '';
  249. position: absolute;
  250. width: 2px;
  251. height: 18px;
  252. left: 10px;
  253. top: 50%;
  254. transform: translateY(-50%);
  255. background: #2977ff;
  256. }
  257. .hgc_content .backModule {
  258. background: transparent;
  259. }
  260. .hgc_content .backModule h2 {
  261. height: 20px;
  262. margin-top: 0;
  263. border: none;
  264. font-size: 14px;
  265. }
  266. .hgc_content .backModule h2:after {
  267. height: 12px;
  268. background: #333;
  269. }
  270. .hgc_content .backModule h2 .backIcon {
  271. text-decoration: none;
  272. color: #333;
  273. cursor: pointer;
  274. }
  275. .hgc_content .backModule h2 .backIcon img {
  276. display: inline-block;
  277. vertical-align: -1px;
  278. }
  279. .hgc_content .abstract .content {
  280. display: flex;
  281. padding: 30px 0;
  282. align-items: center;
  283. justify-content: flex-start;
  284. }
  285. .hgc_content .abstract .content .item {
  286. position: relative;
  287. flex: 1;
  288. display: flex;
  289. align-items: center;
  290. justify-content: center;
  291. height: 125px;
  292. background: #FFFFFF;
  293. box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
  294. border-radius: 4px;
  295. margin: 0 10px;
  296. }
  297. .hgc_content .abstract .content .item .pic {
  298. flex: 1;
  299. display: flex;
  300. justify-content: flex-end;
  301. }
  302. .hgc_content .abstract .content .item .pic img {
  303. width: 80%;
  304. max-width: 80px;
  305. height: auto;
  306. }
  307. .hgc_content .abstract .content .item .download {
  308. position: absolute;
  309. width: 40px;
  310. height: 40px;
  311. right: 0;
  312. top: 0;
  313. background: url('/images/assist/icon_hgc_download.svg') no-repeat center;
  314. cursor: pointer;
  315. }
  316. .hgc_content .abstract .content .item:last-child .data span strong i {
  317. left: auto;
  318. transform: none;
  319. right: -10px;
  320. }
  321. .hgc_content .abstract .content .item:last-child .data span strong i:after {
  322. left: auto;
  323. transform: none;
  324. right: 10px;
  325. }
  326. .hgc_content .abstract .content .item .data {
  327. flex: 1;
  328. padding: 0 10px;
  329. }
  330. .hgc_content .abstract .content .item .data h3 {
  331. font-weight: bold;
  332. font-size: 32px;
  333. }
  334. .hgc_content .abstract .content .item .data span {
  335. display: flex;
  336. align-items: center;
  337. color: #555;
  338. }
  339. .hgc_content .abstract .content .item .data span strong {
  340. position: relative;
  341. padding-left: 5px;
  342. cursor: pointer;
  343. z-index: 10;
  344. }
  345. .hgc_content .abstract .content .item .data span strong img {
  346. width: 16px;
  347. height: 16px;
  348. display: block;
  349. }
  350. .hgc_content .abstract .content .item .data span strong:hover i {
  351. display: block;
  352. }
  353. .hgc_content .abstract .content .item .data span strong i {
  354. display: block;
  355. position: absolute;
  356. padding: 5px;
  357. background: rgba(0, 0, 0, 0.5);
  358. bottom: 23px;
  359. left: 50%;
  360. transform: translateX(-65%);
  361. color: #fff;
  362. border-radius: 3px;
  363. min-width: 200px;
  364. font-style: normal;
  365. font-weight: normal;
  366. display: none;
  367. }
  368. .hgc_content .abstract .content .item .data span strong i:after {
  369. content: '';
  370. position: absolute;
  371. width: 0;
  372. height: 0;
  373. border: 7px solid transparent;
  374. border-top-color: rgba(0, 0, 0, 0.5);
  375. bottom: -14px;
  376. left: 50%;
  377. transform: translateX(175%);
  378. }
  379. .hgc_content .artical h2 .btns {
  380. display: flex;
  381. }
  382. .hgc_content .artical .content {
  383. display: flex;
  384. align-items: center;
  385. justify-content: flex-start;
  386. height: 60px;
  387. flex-wrap: wrap;
  388. }
  389. .hgc_content .artical .content span {
  390. position: relative;
  391. padding: 0 35px;
  392. }
  393. .hgc_content .artical .content span i {
  394. font-style: normal;
  395. }
  396. .hgc_content .artical .content span:last-child:after {
  397. display: none;
  398. }
  399. .hgc_content .artical .content span:after {
  400. position: absolute;
  401. content: '';
  402. right: 0;
  403. width: 1px;
  404. height: 16px;
  405. background: #eee;
  406. top: 50%;
  407. transform: translateY(-50%);
  408. }
  409. .hgc_dialog .problemList {
  410. display: flex;
  411. flex-direction: column;
  412. justify-content: center;
  413. height: 300px;
  414. }
  415. .hgc_dialog .problemList .problemItem {
  416. display: flex;
  417. align-items: center;
  418. justify-content: space-between;
  419. padding: 0 10px;
  420. height: 54px;
  421. margin-bottom: 10px;
  422. background: #FFFFFF;
  423. border: 1px solid #F8F8F8;
  424. box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.1);
  425. border-radius: 4px;
  426. }
  427. .hgc_dialog .process {
  428. display: flex;
  429. flex-direction: column;
  430. justify-content: center;
  431. height: 300px;
  432. }
  433. .hgc_dialog .process p {
  434. padding: 20px 0;
  435. text-align: center;
  436. }
  437. .hgc_dialog .process .processBar {
  438. height: 20px;
  439. background: #eee;
  440. border-radius: 20px;
  441. padding: 0;
  442. }
  443. .hgc_dialog .process .processBar .processBarIn {
  444. display: block;
  445. width: 20%;
  446. height: 20px;
  447. border-radius: 20px;
  448. background: #2977ff;
  449. }
  450. .hgc_dialog .process .text {
  451. display: flex;
  452. justify-content: space-between;
  453. align-items: center;
  454. color: #666;
  455. }
  456. .hgc_dialog .process .hbtn {
  457. margin: 0 auto;
  458. }
  459. .hgc_dialog .steps {
  460. display: flex;
  461. justify-content: center;
  462. align-items: center;
  463. }
  464. .hgc_dialog .steps i {
  465. width: 24px;
  466. height: 24px;
  467. border-radius: 50%;
  468. background: #999;
  469. color: #666;
  470. text-align: center;
  471. line-height: 24px;
  472. font-style: normal;
  473. cursor: pointer;
  474. }
  475. .hgc_dialog .steps i.active {
  476. background: #2977ff;
  477. color: #fff;
  478. }
  479. .hgc_dialog .steps label {
  480. width: 32px;
  481. height: 1px;
  482. margin: 0 10px;
  483. background: #eee;
  484. }
  485. .hgc_totalHeader {
  486. display: flex;
  487. justify-content: flex-start;
  488. height: 60px;
  489. background: #F3F8F9;
  490. }
  491. .hgc_totalHeader span {
  492. width: 150px;
  493. height: 60px;
  494. text-align: center;
  495. line-height: 60px;
  496. cursor: pointer;
  497. font-size: 16px;
  498. }
  499. .hgc_totalHeader span a {
  500. display: block;
  501. color: #333;
  502. }
  503. .hgc_totalHeader span.active {
  504. font-weight: bold;
  505. }