index.css 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873
  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'); width: 430px; height: 430px;
  432. /*background-image: linear-gradient(to right, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.9));*/
  433. position: absolute;
  434. transform: translateX(-70%);
  435. width: 437px;
  436. height: 430px;
  437. background-size: 100% 100%;
  438. }
  439. .nav-user-icon {
  440. display: flex;
  441. justify-content: center;
  442. align-items: center;
  443. height: 35px;
  444. margin: 17px 0;
  445. cursor: pointer;
  446. }
  447. .nav-user-icon-bg {
  448. min-width: 35px;
  449. min-height: 35px;
  450. background: #1d1d1d;
  451. margin-right: 5px;
  452. display: flex;
  453. border-radius: 50%;
  454. justify-content: center;
  455. align-items: center;
  456. cursor: pointer;
  457. }
  458. .nav-user-icon-bg img {
  459. border-radius: 50%;
  460. max-width: 35px;
  461. max-height: 35px;
  462. }
  463. .login-body {
  464. left: 0;
  465. right: 0;
  466. top: 0;
  467. bottom: 0;
  468. position: fixed;
  469. z-index: 999;
  470. width: 100VW;
  471. }
  472. .login-body-shield {
  473. left: 0;
  474. right: 0;
  475. top: 0;
  476. bottom: 0;
  477. position: fixed;
  478. background: rgba(0, 0, 0, 0.5);
  479. width: 100VW;
  480. z-index: -1;
  481. }
  482. .bottom-bar {
  483. background: white;
  484. margin: 0;
  485. padding: 70px 0 0 0;
  486. }
  487. .partners-line {
  488. margin: auto;
  489. width: 1170px;
  490. }
  491. .partners-line ul {
  492. list-style: none;
  493. display: flex;
  494. justify-content: space-between;
  495. padding: 0;
  496. }
  497. .partners-line ul li {
  498. height: 46px;
  499. display: flex;
  500. margin: 0 10px;
  501. justify-content: space-between;
  502. align-items: center;
  503. }
  504. .partners-service-guarantee {
  505. display: flex;
  506. justify-content: space-between;
  507. align-items: center;
  508. width: 1170px;
  509. margin: 10px auto 30px;
  510. border-bottom: 1px solid #e5e5e5;
  511. }
  512. .service-guarantee {
  513. display: flex;
  514. text-align: left;
  515. margin-top: 40px;
  516. margin-bottom: 20px;
  517. }
  518. .sg-icon {
  519. height: 60px;
  520. width: 60px;
  521. border-radius: 50%;
  522. background: #daD5D9;
  523. display: flex;
  524. justify-content: center;
  525. align-items: center;
  526. }
  527. .sg-info {
  528. justify-content: center;
  529. align-items: center;
  530. height: 38px;
  531. margin-top: 8px;
  532. margin-bottom: 20px;
  533. margin-left: 16px;
  534. }
  535. .sg-info div:nth-child(1) {
  536. color: #333333;
  537. display: block;
  538. box-sizing: border-box;
  539. line-height: 14px;
  540. width: 100%;
  541. font-size: 16px;
  542. }
  543. .sg-info div:nth-child(2) {
  544. color: #666666;
  545. display: block;
  546. margin-top: 8px;
  547. box-sizing: border-box;
  548. line-height: 14px;
  549. width: 100%;
  550. font-size: 12px;
  551. }
  552. .filing-body {
  553. text-align: center;
  554. color: #8b8b8b;
  555. border-top: #dddddd 1px solid;
  556. width: 1170px;
  557. margin: 30px auto 0;
  558. padding: 15px 0;
  559. }
  560. .bottom-bar-about {
  561. width: 1170px;
  562. margin: 0 auto;
  563. display: flex;
  564. justify-content: space-between;
  565. }
  566. .bottom-bar-about-left {
  567. display: flex;
  568. justify-content: space-between;
  569. text-align: left;
  570. }
  571. .about-contact {
  572. width: 185px;
  573. }
  574. .about-me {
  575. margin-left: 95px;
  576. }
  577. .about-issue {
  578. margin-left: 134px;
  579. }
  580. .about-row {
  581. font-size: 14px;
  582. }
  583. .about-row-title {
  584. font-size: 16px;
  585. margin-bottom: 16px;
  586. color: #000000;
  587. }
  588. .about-row-item {
  589. height: 16px;
  590. line-height: 16px;
  591. color: #666666;
  592. margin-bottom: 10px;
  593. }
  594. .about-row-imgs {
  595. margin-top: 16px;
  596. }
  597. .about-row-imgs img {
  598. margin-right: 16px;
  599. }
  600. .bottom-bar-about-right {
  601. display: flex;
  602. flex-direction: column;
  603. width: 278px;
  604. }
  605. .about-row-title {
  606. font-size: 16px;
  607. margin-bottom: 16px;
  608. }
  609. .my-user-images {
  610. display: flex;
  611. flex-wrap: wrap;
  612. }
  613. .my-user-images img {
  614. margin: 0 4px 4px 0;
  615. }
  616. .bottom-bar-active {
  617. display: flex;
  618. justify-content: center;
  619. margin-top: 30px;
  620. }
  621. .bottom-bar-active img {
  622. margin-right: 30px;
  623. }
  624. .footer-about-box {
  625. display: flex;
  626. justify-content: center;
  627. margin-top: 30px;
  628. }
  629. .footer-about-app {
  630. display: flex;
  631. justify-content: center;
  632. margin-top: 10px;
  633. }
  634. .footer-about-app img {
  635. margin-right: 30px;
  636. }
  637. /*注册*/
  638. body, html {
  639. margin: 0;
  640. padding: 0;
  641. font-family: Arial, sans-serif;
  642. }
  643. .register-center {
  644. position: absolute;
  645. margin: 10% auto 0 auto;
  646. top: 10%;
  647. left: calc(50% - 200px);
  648. display: flex;
  649. justify-content: center;
  650. align-items: center;
  651. color: #888;
  652. }
  653. .register-content {
  654. display: flex;
  655. flex-direction: column;
  656. align-items: center;
  657. width: 350px;
  658. height: 430px;
  659. background-color: white;
  660. border-radius: 20px;
  661. padding: 20px 40px;
  662. box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  663. }
  664. .register-content-title {
  665. color: #333;
  666. font-size: 24px;
  667. font-weight: bold;
  668. margin-bottom: 20px;
  669. }
  670. .register-content-input {
  671. width: 100%;
  672. margin-bottom: 20px;
  673. }
  674. .register-content-input input {
  675. width: 100%;
  676. height: 32px;
  677. padding: 5px;
  678. border: 2px solid #ddd;
  679. border-radius: 15px;
  680. outline: none;
  681. font-size: 16px;
  682. }
  683. .register-content-code {
  684. display: flex;
  685. justify-content: space-between;
  686. width: 100%;
  687. }
  688. .register-content-code-input {
  689. width: 60%;
  690. }
  691. .register-content-code-input input {
  692. width: 100%;
  693. height: 32px;
  694. padding: 5px;
  695. border: 2px solid #ddd;
  696. border-radius: 15px;
  697. outline: none;
  698. font-size: 16px;
  699. }
  700. .register-content-code-btn {
  701. width: 32%;
  702. height: 42px;
  703. background-color: #207cfb;
  704. color: white;
  705. border-radius: 15px;
  706. display: flex;
  707. justify-content: center;
  708. align-items: center;
  709. cursor: pointer;
  710. user-select: none;
  711. }
  712. .register-content-submit {
  713. width: 100%;
  714. height: 42px;
  715. background-color: #207cfb;
  716. color: white;
  717. border-radius: 15px;
  718. display: flex;
  719. justify-content: center;
  720. align-items: center;
  721. cursor: pointer;
  722. user-select: none;
  723. font-weight: bold;
  724. margin-top: 20px;
  725. }