index.css 22 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149
  1. * {
  2. margin: 0;
  3. padding: 0;
  4. font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji
  5. }
  6. /*移动端*/
  7. @media screen and (min-width: 10px) and (max-width: 768px) {
  8. .bottom-bar {
  9. display: none;
  10. }
  11. .mobile-bottom {
  12. display: block;
  13. color: #888888;
  14. padding: 5px 10px;
  15. background: #fafafa;
  16. line-height: 40px;
  17. text-align: center;
  18. }
  19. .navigation-bar {
  20. display: flex;
  21. position: fixed;
  22. place-items: center;
  23. top: 0;
  24. width: calc(100% - 5.8666667vw);
  25. height: calc(100VW / 10);
  26. z-index: 11;
  27. background-color: #000000;
  28. padding: 2.66667vw 3.2vw;
  29. }
  30. .nav-body {
  31. height: 100%;
  32. width: 100%;
  33. margin: auto auto;
  34. display: flex;
  35. justify-content: space-between;
  36. }
  37. .nav-logo {
  38. width: 20%;
  39. height: auto;
  40. cursor: pointer;
  41. }
  42. .nav-logo img {
  43. height: 100%;
  44. width: 100%;
  45. }
  46. .nav-search {
  47. width: 80%;
  48. height: 80%;
  49. margin: auto 0;
  50. display: flex;
  51. border: none;
  52. border-radius: 50%;
  53. }
  54. .nav-search form {
  55. width: 100%;
  56. display: flex;
  57. min-height: 15px;
  58. }
  59. .nav-search-div {
  60. width: 100%;
  61. height: 100%;
  62. }
  63. .nav-search-div .search-input {
  64. height: 100%;
  65. width: calc(100%);
  66. padding: 0 0 0 15px;
  67. font-size: calc(100VW / 10 / 8 * 3);
  68. border: none;
  69. outline: none;
  70. border-radius: 5px 0 0 5px;
  71. }
  72. .search-btn {
  73. width: calc(100VW / 6);
  74. outline: none;
  75. margin: 0;
  76. border: none;
  77. background: #1475fa;
  78. border-radius: 0 5px 5px 0;
  79. display: flex;
  80. justify-content: center;
  81. align-items: center;
  82. }
  83. .search-btn:hover {
  84. border: none;
  85. cursor: pointer;
  86. }
  87. .search-btn:active {
  88. border: none;
  89. background: #1470da;
  90. cursor: pointer;
  91. }
  92. .search-btn .search-btn-icon {
  93. width: 22px;
  94. color: white;
  95. }
  96. .nav-top {
  97. padding-top: calc(10VW + 2.667vw * 2);
  98. }
  99. .home-suspension {
  100. display: none;
  101. }
  102. .nav-user {
  103. display: none;
  104. }
  105. .footer-interval {
  106. height: calc(5.666VW + 16px + 1em);
  107. }
  108. .footer-bar {
  109. text-align: center;
  110. display: flex;
  111. position: fixed;
  112. justify-content: space-evenly;
  113. bottom: 0;
  114. left: 0;
  115. right: 0;
  116. min-height: 40px;
  117. padding: 5px 0 0 0;
  118. border-top: 1px solid #e8e8e8;
  119. box-shadow: rgba(0, 0, 0, 0.1) 0 0 5px;
  120. background-color: white;
  121. z-index: 11;
  122. }
  123. .footer-item {
  124. display: flex;
  125. justify-content: center;
  126. align-items: center;
  127. flex-direction: column;
  128. margin: 5px 0;
  129. padding: 0 10px;
  130. border-radius: 5px;
  131. background-color: rgba(0, 0, 0, 0);
  132. }
  133. .footer-item-img {
  134. width: 5.666VW;
  135. height: 5.666VW;
  136. }
  137. .footer-item-img img {
  138. width: 100%;
  139. height: 100%;
  140. }
  141. .footer-item-text {
  142. font-size: 1em;
  143. color: #666666;
  144. }
  145. }
  146. @media screen and (min-width: 769px) {
  147. body {
  148. background: #f0f0f0;
  149. }
  150. body, html, div {
  151. margin: 0;
  152. padding: 0;
  153. }
  154. .footer-bar {
  155. display: none;
  156. }
  157. .navigation-bar {
  158. display: flex;
  159. position: fixed;
  160. place-items: center;
  161. top: 0;
  162. height: 80px;
  163. width: 100%;
  164. z-index: 11;
  165. background-color: #000000;
  166. }
  167. .nav-body {
  168. height: 100%;
  169. width: 1170px;
  170. margin: auto auto;
  171. display: flex;
  172. justify-content: space-between;
  173. grid-template-columns: 135px 1fr 150px;
  174. }
  175. .nav-logo {
  176. max-width: 135px;
  177. cursor: pointer;
  178. margin: auto 20px;
  179. }
  180. .nav-logo img {
  181. max-height: 80px;
  182. }
  183. .nav-search {
  184. width: 450px;
  185. height: 40px;
  186. margin: auto auto;
  187. display: flex;
  188. border: none;
  189. }
  190. .nav-search form {
  191. display: flex;
  192. }
  193. .nav-search-div .search-input {
  194. width: 370px;
  195. height: 40px;
  196. /*/ / padding-left: 15 px;*/
  197. padding: 0 0 0 15px;
  198. font-size: 14px;
  199. border: none;
  200. outline: none;
  201. border-radius: 5px 0 0 5px;
  202. }
  203. .search-btn {
  204. width: 70px;
  205. height: 40px;
  206. outline: none;
  207. margin: 0;
  208. border: none;
  209. background: #1475fa;
  210. border-radius: 0 5px 5px 0;
  211. display: flex;
  212. justify-content: center;
  213. align-items: center;
  214. }
  215. .search-btn:hover {
  216. border: none;
  217. cursor: pointer;
  218. }
  219. .search-btn:active {
  220. border: none;
  221. background: #1470da;
  222. cursor: pointer;
  223. }
  224. .search-btn .search-btn-icon {
  225. width: 22px;
  226. height: 22px;
  227. color: white;
  228. }
  229. .nav-user {
  230. display: flex;
  231. justify-content: right;
  232. margin: auto 20px;
  233. height: 70px;
  234. color: white;
  235. }
  236. .nav-user-menu {
  237. display: flex;
  238. justify-content: center;
  239. align-items: center;
  240. width: 48px;
  241. margin-left: 30px;
  242. }
  243. .nav-user-icon-bg {
  244. min-width: 35px;
  245. min-height: 35px;
  246. border-radius: 50%;
  247. background: #1d1d1d;
  248. margin-right: 5px;
  249. display: flex;
  250. justify-content: center;
  251. align-items: center;
  252. cursor: pointer;
  253. }
  254. .nav-top {
  255. padding-top: 80px;
  256. }
  257. /*登录*/
  258. .login-center {
  259. display: inline-block;
  260. position: absolute;
  261. margin: 10% auto 0 auto;
  262. top: 10%;
  263. left: calc(50% - 200px);
  264. text-align: center;
  265. }
  266. .login-content {
  267. display: inline-block;
  268. width: 437px;
  269. height: 430px;
  270. background-color: transparent;
  271. padding: 10px 0;
  272. }
  273. .login-content form {
  274. height: 390px;
  275. margin: 20px 0;
  276. }
  277. .login-from {
  278. width: 400px;
  279. height: 370px;
  280. border-radius: 25px;
  281. padding-left: 100px;
  282. padding-top: 20px;
  283. background: white;
  284. color: #333333;
  285. }
  286. .login-select {
  287. display: flex;
  288. justify-content: center;
  289. border-radius: 20px;
  290. width: 308px;
  291. margin: 10px auto;
  292. background: #e8e8e8;
  293. color: #888888;
  294. font-size: 16px;
  295. font-weight: bold;
  296. }
  297. .login-select-item {
  298. width: 112px;
  299. height: 40px;
  300. cursor: pointer;
  301. line-height: 40px;
  302. padding: 0 3px;
  303. }
  304. .login-select-item span {
  305. z-index: -2;
  306. }
  307. .login-select-phone {
  308. border-radius: 20px 0 0 20px;
  309. }
  310. .login-select-wx {
  311. border-radius: 0 20px 20px 0;
  312. }
  313. .select-item {
  314. border-radius: 20px;
  315. z-index: 2;
  316. }
  317. .select-item2 {
  318. position: absolute;
  319. width: 103px;
  320. height: 40px;
  321. background: rgba(255, 255, 255, 1);
  322. border-radius: 20px;
  323. box-shadow: #888888 0 0 5px;
  324. transition: margin-left 0.2s ease-in-out;
  325. z-index: 1;
  326. }
  327. .login-type-phone {
  328. }
  329. .login-phone {
  330. display: flex;
  331. justify-content: center;
  332. margin: 50px auto 20px auto;
  333. width: 300px;
  334. }
  335. .login-phone-input {
  336. height: 32px;
  337. width: 290px;
  338. border-radius: 15px;
  339. border: 2px #dddddd solid;
  340. padding: 3px 10px;
  341. background-color: transparent;
  342. }
  343. .login-phone-input input {
  344. height: 32px;
  345. width: 280px;
  346. background: transparent;
  347. border: transparent 0;
  348. font-size: 18px;
  349. outline: none;
  350. text-security: disc;
  351. }
  352. .login-phone-input :active {
  353. border: transparent 0;
  354. }
  355. .login-phone-code {
  356. display: flex;
  357. justify-content: center;
  358. margin: 0 auto 20px auto;
  359. width: 308px;
  360. }
  361. .login-phone-code-input {
  362. height: 32px;
  363. width: 150px;
  364. border-radius: 15px;
  365. border: 2px #dddddd solid;
  366. padding: 3px 10px;
  367. background-color: transparent;
  368. }
  369. .login-phone-code-input input {
  370. height: 32px;
  371. width: 140px;
  372. background: transparent;
  373. border: transparent 0;
  374. font-size: 18px;
  375. outline: none;
  376. }
  377. .login-phone-code-input :active {
  378. border: transparent 0;
  379. }
  380. .login-phone-code-btn {
  381. margin-left: 20px;
  382. height: 42px;
  383. width: 120px;
  384. user-select: none;
  385. border-radius: 15px;
  386. background: #0971ef;
  387. color: #dddddd;
  388. line-height: 42px;
  389. font-size: 16px;
  390. font-weight: bold;
  391. cursor: pointer;
  392. }
  393. .login-email {
  394. display: flex;
  395. justify-content: center;
  396. flex-direction: column;
  397. margin: 20px auto 20px auto;
  398. width: 300px;
  399. }
  400. .login-email .login-email-input {
  401. margin: 0 auto 20px auto;
  402. }
  403. .login-email-input {
  404. height: 32px;
  405. width: 290px;
  406. border-radius: 15px;
  407. border: 2px #dddddd solid;
  408. padding: 3px 10px;
  409. background-color: transparent;
  410. }
  411. .login-email-input input {
  412. height: 32px;
  413. width: 280px;
  414. background: transparent;
  415. border: transparent 0;
  416. font-size: 18px;
  417. outline: none;
  418. text-security: disc;
  419. }
  420. .login-email-input:active {
  421. /*border: transparent 0;*/
  422. }
  423. .login-btn {
  424. height: 42px;
  425. border-radius: 15px;
  426. width: 300px;
  427. margin: 30px auto;
  428. background: #0971ef;
  429. }
  430. .login-btn-div {
  431. cursor: pointer;
  432. user-select: none;
  433. color: #dddddd;
  434. font-size: 18px;
  435. line-height: 42px;
  436. font-weight: bold;
  437. }
  438. .login-type-email {
  439. padding-top: 20px;
  440. }
  441. .login-email {
  442. display: flex;
  443. justify-content: center;
  444. margin: 20px auto 20px auto;
  445. width: 300px;
  446. }
  447. .login-email-input {
  448. height: 32px;
  449. width: 290px;
  450. border-radius: 15px;
  451. border: 2px #dddddd solid;
  452. padding: 3px 10px;
  453. background-color: transparent;
  454. }
  455. .login-email-input input {
  456. height: 32px;
  457. width: 280px;
  458. background: transparent;
  459. border: transparent 0;
  460. font-size: 18px;
  461. outline: none;
  462. text-security: disc;
  463. }
  464. .login-email-input :active {
  465. border: transparent 0;
  466. }
  467. .login-email-code {
  468. display: flex;
  469. justify-content: center;
  470. margin: 0 auto 20px auto;
  471. width: 308px;
  472. }
  473. .login-email-code-input {
  474. height: 32px;
  475. width: 150px;
  476. border-radius: 15px;
  477. border: 2px #dddddd solid;
  478. padding: 3px 10px;
  479. background-color: transparent;
  480. }
  481. .login-email-code-input input {
  482. height: 32px;
  483. width: 140px;
  484. background: transparent;
  485. border: transparent 0;
  486. font-size: 20px;
  487. outline: none;
  488. }
  489. .login-email-code-input:active {
  490. border: transparent 0;
  491. }
  492. .login-email-code-btn {
  493. margin-left: 20px;
  494. height: 42px;
  495. width: 120px;
  496. user-select: none;
  497. border-radius: 15px;
  498. background: #0971ef;
  499. color: #dddddd;
  500. line-height: 42px;
  501. font-size: 16px;
  502. font-weight: bold;
  503. cursor: pointer;
  504. }
  505. .login-btn {
  506. height: 42px;
  507. border-radius: 15px;
  508. width: 300px;
  509. margin: 30px auto;
  510. background: #0971ef;
  511. }
  512. .login-btn-div {
  513. cursor: pointer;
  514. user-select: none;
  515. color: #dddddd;
  516. font-size: 18px;
  517. line-height: 42px;
  518. font-weight: bold;
  519. }
  520. .login-type-wx {
  521. }
  522. .login-wx-refresh {
  523. cursor: pointer;
  524. user-select: none;
  525. width: 125px;
  526. margin: 10px auto 5px auto;
  527. display: flex;
  528. justify-content: center;
  529. align-items: center;
  530. height: 25px;
  531. font-weight: bold;
  532. color: #888888;
  533. }
  534. .login-wx-refresh-icon {
  535. }
  536. .login-wx-refresh-icon img {
  537. display: flex;
  538. justify-content: center;
  539. align-items: center;
  540. width: 25px;
  541. height: 25px;
  542. }
  543. .login-wx-refresh-text {
  544. font-size: 20px;
  545. line-height: 25px;
  546. }
  547. .login-wx-tip {
  548. margin: 0;
  549. padding: 0;
  550. font-size: 14px;
  551. display: inline-block;
  552. font-weight: bolder;
  553. color: #555555;
  554. }
  555. .login-wx-image {
  556. width: 180px;
  557. height: 180px;
  558. background: #888888;
  559. margin: 10px auto;
  560. }
  561. .login-register-btn {
  562. margin: 20px auto;
  563. cursor: pointer;
  564. user-select: none;
  565. color: #888888;
  566. }
  567. .login-register-btn:hover {
  568. color: #207cfb;
  569. }
  570. .login-register-btn:active {
  571. color: #1a6adc;
  572. }
  573. .login-image {
  574. border-radius: 25px;
  575. background-image: url('https://cdn.yicanggongyi.com/yinhe/icon/login.png');
  576. width: 430px;
  577. height: 430px;
  578. /*background-image: linear-gradient(to right, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.9));*/
  579. position: absolute;
  580. transform: translateX(-70%);
  581. width: 437px;
  582. height: 430px;
  583. background-size: 100% 100%;
  584. }
  585. .nav-user-icon {
  586. display: flex;
  587. justify-content: center;
  588. align-items: center;
  589. height: 35px;
  590. margin: 17px 0;
  591. cursor: pointer;
  592. }
  593. .nav-user-icon-bg {
  594. min-width: 35px;
  595. min-height: 35px;
  596. background: #1d1d1d;
  597. margin-right: 5px;
  598. display: flex;
  599. border-radius: 50%;
  600. justify-content: center;
  601. align-items: center;
  602. cursor: pointer;
  603. }
  604. .nav-user-icon-bg img {
  605. border-radius: 50%;
  606. max-width: 35px;
  607. max-height: 35px;
  608. }
  609. .login-body {
  610. left: 0;
  611. right: 0;
  612. top: 0;
  613. bottom: 0;
  614. position: fixed;
  615. z-index: 999;
  616. width: 100VW;
  617. }
  618. .login-body-shield {
  619. left: 0;
  620. right: 0;
  621. top: 0;
  622. bottom: 0;
  623. position: fixed;
  624. background: rgba(0, 0, 0, 0.5);
  625. width: 100VW;
  626. z-index: -1;
  627. }
  628. .mobile-bottom {
  629. display: none;
  630. }
  631. .bottom-bar {
  632. background: white;
  633. margin: 0;
  634. padding: 70px 0 0 0;
  635. }
  636. .partners-line {
  637. margin: auto;
  638. width: 1170px;
  639. }
  640. .partners-line ul {
  641. list-style: none;
  642. display: flex;
  643. justify-content: space-between;
  644. padding: 0;
  645. }
  646. .partners-line ul li {
  647. height: 46px;
  648. display: flex;
  649. margin: 0 10px;
  650. justify-content: space-between;
  651. align-items: center;
  652. }
  653. .partners-service-guarantee {
  654. display: flex;
  655. justify-content: space-between;
  656. align-items: center;
  657. width: 1170px;
  658. margin: 10px auto 30px;
  659. border-bottom: 1px solid #e5e5e5;
  660. }
  661. .service-guarantee {
  662. display: flex;
  663. text-align: left;
  664. margin-top: 40px;
  665. margin-bottom: 20px;
  666. }
  667. .sg-icon {
  668. height: 60px;
  669. width: 60px;
  670. border-radius: 50%;
  671. background: #daD5D9;
  672. display: flex;
  673. justify-content: center;
  674. align-items: center;
  675. }
  676. .sg-info {
  677. justify-content: center;
  678. align-items: center;
  679. height: 38px;
  680. margin-top: 8px;
  681. margin-bottom: 20px;
  682. margin-left: 16px;
  683. }
  684. .sg-info div:nth-child(1) {
  685. color: #333333;
  686. display: block;
  687. box-sizing: border-box;
  688. line-height: 14px;
  689. width: 100%;
  690. font-size: 16px;
  691. }
  692. .sg-info div:nth-child(2) {
  693. color: #666666;
  694. display: block;
  695. margin-top: 8px;
  696. box-sizing: border-box;
  697. line-height: 14px;
  698. width: 100%;
  699. font-size: 12px;
  700. }
  701. .filing-body {
  702. text-align: center;
  703. color: #8b8b8b;
  704. border-top: #dddddd 1px solid;
  705. width: 1170px;
  706. margin: 30px auto 0;
  707. padding: 15px 0;
  708. }
  709. .bottom-bar-about {
  710. width: 1170px;
  711. margin: 0 auto;
  712. display: flex;
  713. justify-content: space-between;
  714. }
  715. .bottom-bar-about-left {
  716. display: flex;
  717. justify-content: space-between;
  718. text-align: left;
  719. }
  720. .about-contact {
  721. width: 185px;
  722. }
  723. .about-me {
  724. margin-left: 95px;
  725. }
  726. .about-issue {
  727. margin-left: 134px;
  728. }
  729. .about-row {
  730. font-size: 14px;
  731. }
  732. .about-row-title {
  733. font-size: 16px;
  734. margin-bottom: 16px;
  735. color: #000000;
  736. }
  737. .about-row-item {
  738. height: 16px;
  739. line-height: 16px;
  740. color: #666666;
  741. margin-bottom: 10px;
  742. cursor: pointer;
  743. }
  744. .about-row-item:hover {
  745. color: #1a6adc;
  746. }
  747. .about-row-imgs {
  748. margin-top: 16px;
  749. }
  750. .about-row-imgs img {
  751. margin-right: 16px;
  752. }
  753. .bottom-bar-about-right {
  754. display: flex;
  755. flex-direction: column;
  756. width: 278px;
  757. }
  758. .about-row-title {
  759. font-size: 16px;
  760. margin-bottom: 16px;
  761. }
  762. .my-user-images {
  763. display: flex;
  764. flex-wrap: wrap;
  765. }
  766. .my-user-images img {
  767. margin: 0 4px 4px 0;
  768. }
  769. .bottom-bar-active {
  770. display: flex;
  771. justify-content: center;
  772. margin-top: 30px;
  773. }
  774. .bottom-bar-active img {
  775. margin-right: 30px;
  776. }
  777. .footer-about-box {
  778. display: flex;
  779. justify-content: center;
  780. margin-top: 30px;
  781. }
  782. .footer-about-app {
  783. display: flex;
  784. justify-content: center;
  785. margin-top: 10px;
  786. }
  787. .footer-about-app img {
  788. margin-right: 30px;
  789. }
  790. /*注册*/
  791. body, html {
  792. margin: 0;
  793. padding: 0;
  794. font-family: Arial, sans-serif;
  795. }
  796. .register-center {
  797. position: absolute;
  798. margin: 10% auto 0 auto;
  799. top: 10%;
  800. left: calc(50% - 200px);
  801. display: flex;
  802. justify-content: center;
  803. align-items: center;
  804. color: #888;
  805. }
  806. .register-content {
  807. display: flex;
  808. flex-direction: column;
  809. align-items: center;
  810. width: 350px;
  811. height: 430px;
  812. background-color: white;
  813. border-radius: 20px;
  814. padding: 20px 40px;
  815. box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  816. }
  817. .register-content-title {
  818. color: #333;
  819. font-size: 24px;
  820. font-weight: bold;
  821. margin-bottom: 20px;
  822. }
  823. .register-content-input {
  824. width: 100%;
  825. margin-bottom: 20px;
  826. }
  827. .register-content-input input {
  828. width: 100%;
  829. height: 32px;
  830. padding: 5px;
  831. border: 2px solid #ddd;
  832. border-radius: 15px;
  833. outline: none;
  834. font-size: 16px;
  835. }
  836. .register-content-code {
  837. display: flex;
  838. justify-content: space-between;
  839. width: 100%;
  840. }
  841. .register-content-code-input {
  842. width: 60%;
  843. }
  844. .register-content-code-input input {
  845. width: 100%;
  846. height: 32px;
  847. padding: 5px;
  848. border: 2px solid #ddd;
  849. border-radius: 15px;
  850. outline: none;
  851. font-size: 16px;
  852. }
  853. .register-content-code-btn {
  854. width: 32%;
  855. height: 42px;
  856. background-color: #207cfb;
  857. color: white;
  858. border-radius: 15px;
  859. display: flex;
  860. justify-content: center;
  861. align-items: center;
  862. cursor: pointer;
  863. user-select: none;
  864. }
  865. .register-content-submit {
  866. width: 100%;
  867. height: 42px;
  868. background-color: #207cfb;
  869. color: white;
  870. border-radius: 15px;
  871. display: flex;
  872. justify-content: center;
  873. align-items: center;
  874. cursor: pointer;
  875. user-select: none;
  876. font-weight: bold;
  877. margin-top: 20px;
  878. }
  879. .page {
  880. padding-top: 80px;
  881. background-color: white;
  882. border-bottom: #dddddd 1px solid;
  883. }
  884. .page .info-page {
  885. width: 1170px;
  886. margin: 0 auto;
  887. background-color: #FFFFFF;
  888. min-height: 800px;
  889. text-align: left;
  890. font-size: 16px;
  891. }
  892. .page .info-page .info-title {
  893. padding-top: 30px;
  894. text-align: left;
  895. font-size: 30px;
  896. font-weight: bold;
  897. }
  898. /*todo 路由栏*/
  899. .router-jump-bar {
  900. width: 100%;
  901. background: white;
  902. }
  903. .router-bar {
  904. text-align: left;
  905. margin: 0 auto;
  906. color: #333;
  907. width: 1170px;
  908. height: 50px;
  909. display: flex;
  910. align-items: center;
  911. }
  912. .router-bar .router-bar-list {
  913. list-style: none;
  914. margin: 0;
  915. padding: 0;
  916. font-size: 14px;
  917. color: #888888;
  918. font-weight: bold;
  919. display: flex;
  920. justify-content: left;
  921. align-items: center;
  922. }
  923. .router-bar-list .router-bar-item {
  924. cursor: pointer;
  925. margin: 0 10px;
  926. height: 20px;
  927. }
  928. .router-bar-list .router-bar-text {
  929. cursor: pointer;
  930. margin: 0 10px;
  931. height: 20px;
  932. }
  933. .router-bar-list .router-bar-arrow {
  934. margin: 0;
  935. height: 20px;
  936. user-select: none;
  937. }
  938. .router-bar-list .router-bar-item:hover {
  939. /* 下划线*/
  940. text-decoration: underline;
  941. }
  942. .router-bar-list .router-bar-item :nth-child(1) {
  943. margin-left: 0;
  944. color: red;
  945. }
  946. .router-bar-item :hover {
  947. cursor: pointer;
  948. color: #207cfb;
  949. text-decoration: underline;
  950. }
  951. }