index.css 22 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152
  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: 40px;
  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
  353. :active {
  354. border: transparent 0;
  355. }
  356. .login-phone-code {
  357. display: flex;
  358. justify-content: center;
  359. margin: 0 auto 20px auto;
  360. width: 308px;
  361. }
  362. .login-phone-code-input {
  363. height: 32px;
  364. width: 150px;
  365. border-radius: 15px;
  366. border: 2px #dddddd solid;
  367. padding: 3px 10px;
  368. background-color: transparent;
  369. }
  370. .login-phone-code-input input {
  371. height: 32px;
  372. width: 140px;
  373. background: transparent;
  374. border: transparent 0;
  375. font-size: 18px;
  376. outline: none;
  377. }
  378. .login-phone-code-input :active {
  379. border: transparent 0;
  380. }
  381. .login-phone-code-btn {
  382. margin-left: 20px;
  383. height: 42px;
  384. width: 120px;
  385. user-select: none;
  386. border-radius: 15px;
  387. background: #0971ef;
  388. color: #dddddd;
  389. line-height: 42px;
  390. font-size: 16px;
  391. font-weight: bold;
  392. cursor: pointer;
  393. }
  394. .login-email {
  395. display: flex;
  396. justify-content: center;
  397. flex-direction: column;
  398. margin: 20px auto 20px auto;
  399. width: 300px;
  400. }
  401. .login-email .login-email-input {
  402. margin: 0 auto 20px auto;
  403. }
  404. .login-email-input {
  405. height: 32px;
  406. width: 290px;
  407. border-radius: 15px;
  408. border: 2px #dddddd solid;
  409. padding: 3px 10px;
  410. background-color: transparent;
  411. }
  412. .login-email-input input {
  413. height: 32px;
  414. width: 280px;
  415. background: transparent;
  416. border: transparent 0;
  417. font-size: 18px;
  418. outline: none;
  419. text-security: disc;
  420. }
  421. .login-email-input:active {
  422. /*border: transparent 0;*/
  423. }
  424. .login-btn {
  425. height: 42px;
  426. border-radius: 15px;
  427. width: 300px;
  428. margin: 30px auto;
  429. background: #0971ef;
  430. }
  431. .login-btn-div {
  432. cursor: pointer;
  433. user-select: none;
  434. color: #dddddd;
  435. font-size: 18px;
  436. line-height: 42px;
  437. font-weight: bold;
  438. }
  439. .login-type-email {
  440. padding-top: 20px;
  441. }
  442. .login-email {
  443. display: flex;
  444. justify-content: center;
  445. margin: 20px auto 20px auto;
  446. width: 300px;
  447. }
  448. .login-email-input {
  449. height: 32px;
  450. width: 290px;
  451. border-radius: 15px;
  452. border: 2px #dddddd solid;
  453. padding: 3px 10px;
  454. background-color: transparent;
  455. }
  456. .login-email-input input {
  457. height: 32px;
  458. width: 280px;
  459. background: transparent;
  460. border: transparent 0;
  461. font-size: 18px;
  462. outline: none;
  463. text-security: disc;
  464. }
  465. .login-email-input
  466. :active {
  467. border: transparent 0;
  468. }
  469. .login-email-code {
  470. display: flex;
  471. justify-content: center;
  472. margin: 0 auto 20px auto;
  473. width: 308px;
  474. }
  475. .login-email-code-input {
  476. height: 32px;
  477. width: 150px;
  478. border-radius: 15px;
  479. border: 2px #dddddd solid;
  480. padding: 3px 10px;
  481. background-color: transparent;
  482. }
  483. .login-email-code-input input {
  484. height: 32px;
  485. width: 140px;
  486. background: transparent;
  487. border: transparent 0;
  488. font-size: 20px;
  489. outline: none;
  490. }
  491. .login-email-code-input:active {
  492. border: transparent 0;
  493. }
  494. .login-email-code-btn {
  495. margin-left: 20px;
  496. height: 42px;
  497. width: 120px;
  498. user-select: none;
  499. border-radius: 15px;
  500. background: #0971ef;
  501. color: #dddddd;
  502. line-height: 42px;
  503. font-size: 16px;
  504. font-weight: bold;
  505. cursor: pointer;
  506. }
  507. .login-btn {
  508. height: 42px;
  509. border-radius: 15px;
  510. width: 300px;
  511. margin: 30px auto;
  512. background: #0971ef;
  513. }
  514. .login-btn-div {
  515. cursor: pointer;
  516. user-select: none;
  517. color: #dddddd;
  518. font-size: 18px;
  519. line-height: 42px;
  520. font-weight: bold;
  521. }
  522. .login-type-wx {
  523. }
  524. .login-wx-refresh {
  525. cursor: pointer;
  526. user-select: none;
  527. width: 125px;
  528. margin: 10px auto 5px auto;
  529. display: flex;
  530. justify-content: center;
  531. align-items: center;
  532. height: 25px;
  533. font-weight: bold;
  534. color: #888888;
  535. }
  536. .login-wx-refresh-icon {
  537. }
  538. .login-wx-refresh-icon img {
  539. display: flex;
  540. justify-content: center;
  541. align-items: center;
  542. width: 25px;
  543. height: 25px;
  544. }
  545. .login-wx-refresh-text {
  546. font-size: 20px;
  547. line-height: 25px;
  548. }
  549. .login-wx-tip {
  550. margin: 0;
  551. padding: 0;
  552. font-size: 14px;
  553. display: inline-block;
  554. font-weight: bolder;
  555. color: #555555;
  556. }
  557. .login-wx-image {
  558. width: 180px;
  559. height: 180px;
  560. background: #888888;
  561. margin: 10px auto;
  562. }
  563. .login-register-btn {
  564. margin: 20px auto;
  565. cursor: pointer;
  566. user-select: none;
  567. color: #888888;
  568. }
  569. .login-register-btn:hover {
  570. color: #207cfb;
  571. }
  572. .login-register-btn:active {
  573. color: #1a6adc;
  574. }
  575. .login-image {
  576. border-radius: 25px;
  577. background-image: url('https://cdn.yicanggongyi.com/yinhe/icon/login.png');
  578. width: 430px;
  579. height: 430px;
  580. /*background-image: linear-gradient(to right, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.9));*/
  581. position: absolute;
  582. transform: translateX(-70%);
  583. width: 437px;
  584. height: 430px;
  585. background-size: 100% 100%;
  586. }
  587. .nav-user-icon {
  588. display: flex;
  589. justify-content: center;
  590. align-items: center;
  591. height: 35px;
  592. margin: 17px 0;
  593. cursor: pointer;
  594. }
  595. .nav-user-icon-bg {
  596. min-width: 35px;
  597. min-height: 35px;
  598. background: #1d1d1d;
  599. margin-right: 5px;
  600. display: flex;
  601. border-radius: 50%;
  602. justify-content: center;
  603. align-items: center;
  604. cursor: pointer;
  605. }
  606. .nav-user-icon-bg img {
  607. border-radius: 50%;
  608. max-width: 35px;
  609. max-height: 35px;
  610. }
  611. .login-body {
  612. left: 0;
  613. right: 0;
  614. top: 0;
  615. bottom: 0;
  616. position: fixed;
  617. z-index: 999;
  618. width: 100VW;
  619. }
  620. .login-body-shield {
  621. left: 0;
  622. right: 0;
  623. top: 0;
  624. bottom: 0;
  625. position: fixed;
  626. background: rgba(0, 0, 0, 0.5);
  627. width: 100VW;
  628. z-index: -1;
  629. }
  630. .mobile-bottom {
  631. display: none;
  632. }
  633. .bottom-bar {
  634. background: white;
  635. margin: 0;
  636. padding: 70px 0 0 0;
  637. }
  638. .partners-line {
  639. margin: auto;
  640. width: 1170px;
  641. }
  642. .partners-line ul {
  643. list-style: none;
  644. display: flex;
  645. justify-content: space-between;
  646. padding: 0;
  647. }
  648. .partners-line ul li {
  649. height: 46px;
  650. display: flex;
  651. margin: 0 10px;
  652. justify-content: space-between;
  653. align-items: center;
  654. }
  655. .partners-service-guarantee {
  656. display: flex;
  657. justify-content: space-between;
  658. align-items: center;
  659. width: 1170px;
  660. margin: 10px auto 30px;
  661. border-bottom: 1px solid #e5e5e5;
  662. }
  663. .service-guarantee {
  664. display: flex;
  665. text-align: left;
  666. margin-top: 40px;
  667. margin-bottom: 20px;
  668. }
  669. .sg-icon {
  670. height: 60px;
  671. width: 60px;
  672. border-radius: 50%;
  673. background: #daD5D9;
  674. display: flex;
  675. justify-content: center;
  676. align-items: center;
  677. }
  678. .sg-info {
  679. justify-content: center;
  680. align-items: center;
  681. height: 38px;
  682. margin-top: 8px;
  683. margin-bottom: 20px;
  684. margin-left: 16px;
  685. }
  686. .sg-info div:nth-child(1) {
  687. color: #333333;
  688. display: block;
  689. box-sizing: border-box;
  690. line-height: 14px;
  691. width: 100%;
  692. font-size: 16px;
  693. }
  694. .sg-info div:nth-child(2) {
  695. color: #666666;
  696. display: block;
  697. margin-top: 8px;
  698. box-sizing: border-box;
  699. line-height: 14px;
  700. width: 100%;
  701. font-size: 12px;
  702. }
  703. .filing-body {
  704. text-align: center;
  705. color: #8b8b8b;
  706. border-top: #dddddd 1px solid;
  707. width: 1170px;
  708. margin: 30px auto 0;
  709. padding: 15px 0;
  710. }
  711. .bottom-bar-about {
  712. width: 1170px;
  713. margin: 0 auto;
  714. display: flex;
  715. justify-content: space-between;
  716. }
  717. .bottom-bar-about-left {
  718. display: flex;
  719. justify-content: space-between;
  720. text-align: left;
  721. }
  722. .about-contact {
  723. width: 185px;
  724. }
  725. .about-me {
  726. margin-left: 95px;
  727. }
  728. .about-issue {
  729. margin-left: 134px;
  730. }
  731. .about-row {
  732. font-size: 14px;
  733. }
  734. .about-row-title {
  735. font-size: 16px;
  736. margin-bottom: 16px;
  737. color: #000000;
  738. }
  739. .about-row-item {
  740. height: 16px;
  741. line-height: 16px;
  742. color: #666666;
  743. margin-bottom: 10px;
  744. cursor: pointer;
  745. }
  746. .about-row-item:hover {
  747. color: #1a6adc;
  748. }
  749. .about-row-imgs {
  750. margin-top: 16px;
  751. }
  752. .about-row-imgs img {
  753. margin-right: 16px;
  754. }
  755. .bottom-bar-about-right {
  756. display: flex;
  757. flex-direction: column;
  758. width: 278px;
  759. }
  760. .about-row-title {
  761. font-size: 16px;
  762. margin-bottom: 16px;
  763. }
  764. .my-user-images {
  765. display: flex;
  766. flex-wrap: wrap;
  767. }
  768. .my-user-images img {
  769. margin: 0 4px 4px 0;
  770. }
  771. .bottom-bar-active {
  772. display: flex;
  773. justify-content: center;
  774. margin-top: 30px;
  775. }
  776. .bottom-bar-active img {
  777. margin-right: 30px;
  778. }
  779. .footer-about-box {
  780. display: flex;
  781. justify-content: center;
  782. margin-top: 30px;
  783. }
  784. .footer-about-app {
  785. display: flex;
  786. justify-content: center;
  787. margin-top: 10px;
  788. }
  789. .footer-about-app img {
  790. margin-right: 30px;
  791. }
  792. /*注册*/
  793. body, html {
  794. margin: 0;
  795. padding: 0;
  796. font-family: Arial, sans-serif;
  797. }
  798. .register-center {
  799. position: absolute;
  800. margin: 10% auto 0 auto;
  801. top: 10%;
  802. left: calc(50% - 200px);
  803. display: flex;
  804. justify-content: center;
  805. align-items: center;
  806. color: #888;
  807. }
  808. .register-content {
  809. display: flex;
  810. flex-direction: column;
  811. align-items: center;
  812. width: 350px;
  813. height: 430px;
  814. background-color: white;
  815. border-radius: 20px;
  816. padding: 20px 40px;
  817. box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  818. }
  819. .register-content-title {
  820. color: #333;
  821. font-size: 24px;
  822. font-weight: bold;
  823. margin-bottom: 20px;
  824. }
  825. .register-content-input {
  826. width: 100%;
  827. margin-bottom: 20px;
  828. }
  829. .register-content-input input {
  830. width: 100%;
  831. height: 32px;
  832. padding: 5px;
  833. border: 2px solid #ddd;
  834. border-radius: 15px;
  835. outline: none;
  836. font-size: 16px;
  837. }
  838. .register-content-code {
  839. display: flex;
  840. justify-content: space-between;
  841. width: 100%;
  842. }
  843. .register-content-code-input {
  844. width: 60%;
  845. }
  846. .register-content-code-input input {
  847. width: 100%;
  848. height: 32px;
  849. padding: 5px;
  850. border: 2px solid #ddd;
  851. border-radius: 15px;
  852. outline: none;
  853. font-size: 16px;
  854. }
  855. .register-content-code-btn {
  856. width: 32%;
  857. height: 42px;
  858. background-color: #207cfb;
  859. color: white;
  860. border-radius: 15px;
  861. display: flex;
  862. justify-content: center;
  863. align-items: center;
  864. cursor: pointer;
  865. user-select: none;
  866. }
  867. .register-content-submit {
  868. width: 100%;
  869. height: 42px;
  870. background-color: #207cfb;
  871. color: white;
  872. border-radius: 15px;
  873. display: flex;
  874. justify-content: center;
  875. align-items: center;
  876. cursor: pointer;
  877. user-select: none;
  878. font-weight: bold;
  879. margin-top: 20px;
  880. }
  881. .page {
  882. padding-top: 80px;
  883. background-color: white;
  884. border-bottom: #dddddd 1px solid;
  885. }
  886. .page .info-page {
  887. width: 1170px;
  888. margin: 0 auto;
  889. background-color: #FFFFFF;
  890. min-height: 800px;
  891. text-align: left;
  892. font-size: 16px;
  893. }
  894. .page .info-page .info-title {
  895. padding-top: 30px;
  896. text-align: left;
  897. font-size: 30px;
  898. font-weight: bold;
  899. }
  900. /*todo 路由栏*/
  901. .router-jump-bar {
  902. width: 100%;
  903. background: white;
  904. }
  905. .router-bar {
  906. text-align: left;
  907. margin: 0 auto;
  908. color: #333;
  909. width: 1170px;
  910. height: 50px;
  911. display: flex;
  912. align-items: center;
  913. }
  914. .router-bar .router-bar-list {
  915. list-style: none;
  916. margin: 0;
  917. padding: 0;
  918. font-size: 14px;
  919. color: #888888;
  920. font-weight: bold;
  921. display: flex;
  922. justify-content: left;
  923. align-items: center;
  924. }
  925. .router-bar-list .router-bar-item {
  926. cursor: pointer;
  927. margin: 0 10px;
  928. height: 20px;
  929. }
  930. .router-bar-list .router-bar-text {
  931. cursor: pointer;
  932. margin: 0 10px;
  933. height: 20px;
  934. }
  935. .router-bar-list .router-bar-arrow {
  936. margin: 0;
  937. height: 20px;
  938. user-select: none;
  939. }
  940. .router-bar-list .router-bar-item:hover {
  941. /* 下划线*/
  942. text-decoration: underline;
  943. }
  944. .router-bar-list .router-bar-item :nth-child(1) {
  945. margin-left: 0;
  946. color: red;
  947. }
  948. .router-bar-item :hover {
  949. cursor: pointer;
  950. color: #207cfb;
  951. text-decoration: underline;
  952. }
  953. }