index.css 15 KB

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