index.css 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761
  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. margin: 10% auto 0 auto;
  115. }
  116. .login-content {
  117. display: inline-block;
  118. width: 437px;
  119. height: 430px;
  120. background-color: transparent;
  121. padding: 10px 0;
  122. }
  123. .login-content form {
  124. height: 390px;
  125. margin: 20px 0;
  126. }
  127. .login-from {
  128. width: 400px;
  129. height: 370px;
  130. border-radius: 25px;
  131. padding-left: 100px;
  132. padding-top: 20px;
  133. background: white;
  134. color: #333333;
  135. }
  136. .login-select {
  137. display: flex;
  138. justify-content: center;
  139. border-radius: 20px;
  140. width: 308px;
  141. margin: 10px auto;
  142. background: #e8e8e8;
  143. color: #888888;
  144. font-size: 16px;
  145. font-weight: bold;
  146. }
  147. .login-select-item {
  148. width: 112px;
  149. height: 40px;
  150. cursor: pointer;
  151. line-height: 40px;
  152. padding: 0 3px;
  153. }
  154. .login-select-item span {
  155. z-index: -2;
  156. }
  157. .login-select-phone {
  158. border-radius: 20px 0 0 20px;
  159. }
  160. .login-select-wx {
  161. border-radius: 0 20px 20px 0;
  162. }
  163. .select-item {
  164. border-radius: 20px;
  165. z-index: 2;
  166. }
  167. .select-item2 {
  168. position: absolute;
  169. width: 103px;
  170. height: 40px;
  171. background: rgba(255, 255, 255, 1);
  172. border-radius: 20px;
  173. box-shadow: #888888 0 0 5px;
  174. transition: margin-left 0.2s ease-in-out;
  175. z-index: 0;
  176. }
  177. .login-type-phone {
  178. }
  179. .login-phone {
  180. display: flex;
  181. justify-content: center;
  182. margin: 50px auto 20px auto;
  183. width: 300px;
  184. }
  185. .login-phone-input {
  186. height: 32px;
  187. width: 290px;
  188. border-radius: 15px;
  189. border: 2px #dddddd solid;
  190. padding: 3px 10px;
  191. background-color: transparent;
  192. }
  193. .login-phone-input input {
  194. height: 32px;
  195. width: 280px;
  196. background: transparent;
  197. border: transparent 0;
  198. font-size: 18px;
  199. outline: none;
  200. text-security: disc;
  201. }
  202. .login-phone-input
  203. :active {
  204. border: transparent 0;
  205. }
  206. .login-phone-code {
  207. display: flex;
  208. justify-content: center;
  209. margin: 0 auto 20px auto;
  210. width: 308px;
  211. }
  212. .login-phone-code-input {
  213. height: 32px;
  214. width: 150px;
  215. border-radius: 15px;
  216. border: 2px #dddddd solid;
  217. padding: 3px 10px;
  218. background-color: transparent;
  219. }
  220. .login-phone-code-input input {
  221. height: 32px;
  222. width: 140px;
  223. background: transparent;
  224. border: transparent 0;
  225. font-size: 18px;
  226. outline: none;
  227. }
  228. .login-phone-code-input :active {
  229. border: transparent 0;
  230. }
  231. .login-phone-code-btn {
  232. margin-left: 20px;
  233. height: 42px;
  234. width: 120px;
  235. user-select: none;
  236. border-radius: 15px;
  237. background: #0971ef;
  238. color: #dddddd;
  239. line-height: 42px;
  240. font-size: 16px;
  241. font-weight: bold;
  242. cursor: pointer;
  243. }
  244. .login-email {
  245. display: flex;
  246. justify-content: center;
  247. margin: 20px auto 20px auto;
  248. width: 300px;
  249. }
  250. .login-email-input {
  251. height: 32px;
  252. width: 290px;
  253. border-radius: 15px;
  254. border: 2px #dddddd solid;
  255. padding: 3px 10px;
  256. background-color: transparent;
  257. }
  258. .login-email-input input {
  259. height: 32px;
  260. width: 280px;
  261. background: transparent;
  262. border: transparent 0;
  263. font-size: 18px;
  264. outline: none;
  265. text-security: disc;
  266. }
  267. .login-email-input:active {
  268. border: transparent 0;
  269. }
  270. .login-btn {
  271. height: 42px;
  272. border-radius: 15px;
  273. width: 300px;
  274. margin: 30px auto;
  275. background: #0971ef;
  276. }
  277. .login-btn-div {
  278. cursor: pointer;
  279. user-select: none;
  280. color: #dddddd;
  281. font-size: 18px;
  282. line-height: 42px;
  283. font-weight: bold;
  284. }
  285. .login-type-email {
  286. padding-top: 20px;
  287. }
  288. .login-email {
  289. display: flex;
  290. justify-content: center;
  291. margin: 20px auto 20px auto;
  292. width: 300px;
  293. }
  294. .login-email-input {
  295. height: 32px;
  296. width: 290px;
  297. border-radius: 15px;
  298. border: 2px #dddddd solid;
  299. padding: 3px 10px;
  300. background-color: transparent;
  301. }
  302. .login-email-input input {
  303. height: 32px;
  304. width: 280px;
  305. background: transparent;
  306. border: transparent 0;
  307. font-size: 18px;
  308. outline: none;
  309. text-security: disc;
  310. }
  311. .login-email-input
  312. :active {
  313. border: transparent 0;
  314. }
  315. .login-email-code {
  316. display: flex;
  317. justify-content: center;
  318. margin: 0 auto 20px auto;
  319. width: 308px;
  320. }
  321. .login-email-code-input {
  322. height: 32px;
  323. width: 150px;
  324. border-radius: 15px;
  325. border: 2px #dddddd solid;
  326. padding: 3px 10px;
  327. background-color: transparent;
  328. }
  329. .login-email-code-input input {
  330. height: 32px;
  331. width: 140px;
  332. background: transparent;
  333. border: transparent 0;
  334. font-size: 20px;
  335. outline: none;
  336. }
  337. .login-email-code-input:active {
  338. border: transparent 0;
  339. }
  340. .login-email-code-btn {
  341. margin-left: 20px;
  342. height: 42px;
  343. width: 120px;
  344. user-select: none;
  345. border-radius: 15px;
  346. background: #0971ef;
  347. color: #dddddd;
  348. line-height: 42px;
  349. font-size: 16px;
  350. font-weight: bold;
  351. cursor: pointer;
  352. }
  353. .login-btn {
  354. height: 42px;
  355. border-radius: 15px;
  356. width: 300px;
  357. margin: 30px auto;
  358. background: #0971ef;
  359. }
  360. .login-btn-div {
  361. cursor: pointer;
  362. user-select: none;
  363. color: #dddddd;
  364. font-size: 18px;
  365. line-height: 42px;
  366. font-weight: bold;
  367. }
  368. .login-type-wx {
  369. }
  370. .login-wx-refresh {
  371. cursor: pointer;
  372. user-select: none;
  373. width: 125px;
  374. margin: 10px auto 5px auto;
  375. display: flex;
  376. justify-content: center;
  377. align-items: center;
  378. height: 25px;
  379. font-weight: bold;
  380. color: #888888;
  381. }
  382. .login-wx-refresh-icon {
  383. }
  384. .login-wx-refresh-icon img {
  385. display: flex;
  386. justify-content: center;
  387. align-items: center;
  388. width: 25px;
  389. height: 25px;
  390. }
  391. .login-wx-refresh-text {
  392. font-size: 20px;
  393. line-height: 25px;
  394. }
  395. .login-wx-tip {
  396. margin: 0;
  397. padding: 0;
  398. font-size: 14px;
  399. display: inline-block;
  400. font-weight: bolder;
  401. color: #555555;
  402. }
  403. .login-wx-image {
  404. width: 180px;
  405. height: 180px;
  406. background: #888888;
  407. margin: 10px auto;
  408. }
  409. .login-register-btn {
  410. margin: 20px auto;
  411. cursor: pointer;
  412. user-select: none;
  413. color: #888888;
  414. }
  415. .login-register-btn:hover {
  416. color: #207cfb;
  417. }
  418. .login-register-btn:active {
  419. color: #1a6adc;
  420. }
  421. .login-image {
  422. border-radius: 25px;
  423. background-image: linear-gradient(to right, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.9));
  424. position: absolute;
  425. transform: translateX(-70%);
  426. width: 437px;
  427. height: 430px;
  428. background-size: 100% 100%;
  429. }
  430. .nav-user-icon {
  431. display: flex;
  432. justify-content: center;
  433. align-items: center;
  434. height: 35px;
  435. margin: 17px 0;
  436. cursor: pointer;
  437. }
  438. .nav-user-icon-bg {
  439. min-width: 35px;
  440. min-height: 35px;
  441. background: #1d1d1d;
  442. margin-right: 5px;
  443. display: flex;
  444. border-radius: 50%;
  445. justify-content: center;
  446. align-items: center;
  447. cursor: pointer;
  448. }
  449. .nav-user-icon-bg img {
  450. border-radius: 50%;
  451. max-width: 35px;
  452. max-height: 35px;
  453. }
  454. .login-body {
  455. left: 0;
  456. right: 0;
  457. top: 0;
  458. bottom: 0;
  459. position: fixed;
  460. z-index: 999;
  461. width: 100VW;
  462. }
  463. .login-body-shield {
  464. left: 0;
  465. right: 0;
  466. top: 0;
  467. bottom: 0;
  468. position: fixed;
  469. background: rgba(0, 0, 0, 0.5);
  470. width: 100VW;
  471. z-index: -1;
  472. }
  473. .bottom-bar {
  474. background: white;
  475. margin: 0;
  476. padding: 70px 0 0 0;
  477. }
  478. .partners-line {
  479. margin: auto;
  480. width: 1170px;
  481. }
  482. .partners-line ul {
  483. list-style: none;
  484. display: flex;
  485. justify-content: space-between;
  486. padding: 0;
  487. }
  488. .partners-line ul li {
  489. height: 46px;
  490. display: flex;
  491. margin: 0 10px;
  492. justify-content: space-between;
  493. align-items: center;
  494. }
  495. .partners-service-guarantee {
  496. display: flex;
  497. justify-content: space-between;
  498. align-items: center;
  499. width: 1170px;
  500. margin: 10px auto 30px;
  501. border-bottom: 1px solid #e5e5e5;
  502. }
  503. .service-guarantee {
  504. display: flex;
  505. text-align: left;
  506. margin-top: 40px;
  507. margin-bottom: 20px;
  508. }
  509. .sg-icon {
  510. height: 60px;
  511. width: 60px;
  512. border-radius: 50%;
  513. background: #daD5D9;
  514. display: flex;
  515. justify-content: center;
  516. align-items: center;
  517. }
  518. .sg-info {
  519. justify-content: center;
  520. align-items: center;
  521. height: 38px;
  522. margin-top: 8px;
  523. margin-bottom: 20px;
  524. margin-left: 16px;
  525. }
  526. .sg-info div:nth-child(1) {
  527. color: #333333;
  528. display: block;
  529. box-sizing: border-box;
  530. line-height: 14px;
  531. width: 100%;
  532. font-size: 16px;
  533. }
  534. .sg-info div:nth-child(2) {
  535. color: #666666;
  536. display: block;
  537. margin-top: 8px;
  538. box-sizing: border-box;
  539. line-height: 14px;
  540. width: 100%;
  541. font-size: 12px;
  542. }
  543. .filing-body {
  544. text-align: center;
  545. color: #8b8b8b;
  546. border-top: #dddddd 1px solid;
  547. width: 1170px;
  548. margin: 30px auto 0;
  549. padding: 15px 0;
  550. }
  551. .bottom-bar-about {
  552. width: 1170px;
  553. margin: 0 auto;
  554. display: flex;
  555. justify-content: space-between;
  556. }
  557. .bottom-bar-about-left {
  558. display: flex;
  559. justify-content: space-between;
  560. text-align: left;
  561. }
  562. .about-contact {
  563. width: 185px;
  564. }
  565. .about-me {
  566. margin-left: 95px;
  567. }
  568. .about-issue {
  569. margin-left: 134px;
  570. }
  571. .about-row {
  572. font-size: 14px;
  573. }
  574. .about-row-title {
  575. font-size: 16px;
  576. margin-bottom: 16px;
  577. color: #000000;
  578. }
  579. .about-row-item {
  580. height: 16px;
  581. line-height: 16px;
  582. color: #666666;
  583. margin-bottom: 10px;
  584. }
  585. .about-row-imgs {
  586. margin-top: 16px;
  587. }
  588. .about-row-imgs img {
  589. margin-right: 16px;
  590. }
  591. .bottom-bar-about-right {
  592. display: flex;
  593. flex-direction: column;
  594. width: 278px;
  595. }
  596. .about-row-title {
  597. font-size: 16px;
  598. margin-bottom: 16px;
  599. }
  600. .my-user-images {
  601. display: flex;
  602. flex-wrap: wrap;
  603. }
  604. .my-user-images img {
  605. margin: 0 4px 4px 0;
  606. }
  607. .bottom-bar-active {
  608. display: flex;
  609. justify-content: center;
  610. margin-top: 30px;
  611. }
  612. .bottom-bar-active img {
  613. margin-right: 30px;
  614. }
  615. .footer-about-box {
  616. display: flex;
  617. justify-content: center;
  618. margin-top: 30px;
  619. }
  620. .footer-about-app {
  621. display: flex;
  622. justify-content: center;
  623. margin-top: 10px;
  624. }
  625. .footer-about-app img {
  626. margin-right: 30px;
  627. }