index.css 20 KB

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