public.css 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182
  1. /*公共样式*/
  2. * {
  3. padding: 0;
  4. margin: 0;
  5. box-sizing: border-box;
  6. }
  7. .container{
  8. padding: 0
  9. }
  10. html {
  11. font-size: 62.5%;
  12. }
  13. body {
  14. font: 14px "simsun", Arial, Helvetica, sans-serif;
  15. width: 100%;
  16. background-color: #fff;
  17. -webkit-font-smoothing: antialiased;
  18. -moz-osx-font-smoothing: grayscale;
  19. /*font-size:1.4rem;*/
  20. }
  21. body,
  22. h1,
  23. h2,
  24. h3,
  25. h4,
  26. h6,
  27. p,
  28. ul,
  29. ol,
  30. dl,
  31. dd {
  32. margin: 0;
  33. padding: 0;
  34. list-style: none;
  35. }
  36. a {
  37. color: #000;
  38. text-decoration: none;
  39. }
  40. a:hover {
  41. color: #000;
  42. text-decoration: none;
  43. }
  44. /*
  45. .container {
  46. width: 1200px;
  47. margin: 0 auto;
  48. } */
  49. a:focus {
  50. text-decoration: none;
  51. }
  52. .lf {
  53. float: left;
  54. }
  55. .rf {
  56. float: right;
  57. }
  58. .clear {
  59. clear: both;
  60. }
  61. img {
  62. border: none;
  63. }
  64. ::-webkit-input-placeholder {
  65. color: #CCCCCC;
  66. }
  67. ::-webkit-input-placeholder {
  68. color: #CCCCCC;
  69. }
  70. .ct-img-small {
  71. display: none;
  72. }
  73. input:-webkit-autofill {
  74. -webkit-box-shadow: 0 0 0 1000px white inset !important;
  75. }
  76. input:focus {
  77. outline: none;
  78. }
  79. ul,
  80. ol {
  81. padding: 0;
  82. margin: 0;
  83. list-style: none;
  84. }
  85. /*顶部区域*/
  86. /* header */
  87. .header {
  88. color:#333;
  89. height: 64px;
  90. line-height: 64px;
  91. background-color: #f9f9f9;
  92. }
  93. .header div>div{
  94. margin-left: 30px;
  95. float:right;
  96. }
  97. .header ul li {
  98. float: left;
  99. margin: 0 10px;
  100. }
  101. .header a{
  102. color:#333;
  103. }
  104. .header .colorRed{
  105. color: #ff570c;
  106. }
  107. /* 新导航 */
  108. .navHeader {
  109. background: #ffffff;
  110. line-height: 90px;
  111. height:90px;
  112. }
  113. .navHeader .nav ul li img {
  114. width: 30px;
  115. height: 30px;
  116. position: absolute;
  117. right: 0px;
  118. top: 9px;
  119. }
  120. .navHeader .logo {
  121. float: left;
  122. padding-left: 20px;
  123. }
  124. /* .navHeader .logo_right {
  125. margin-top:12px;
  126. float: left;
  127. padding-left: 20px;
  128. width: 120px;
  129. height: 75px;
  130. background: url("../../img/index_xuan.png") no-repeat center center;
  131. margin-left: 10px;
  132. } */
  133. .navHeader .nav {
  134. float: right;
  135. padding-left: 40px;
  136. }
  137. .navHeader .nav>ul>li {
  138. float: left;
  139. width: 120px;
  140. text-align: center;
  141. line-height: 90px;
  142. position: relative;
  143. }
  144. .navHeader .nav>ul>li>a {
  145. color: #074d88;
  146. width: 120px;
  147. line-height: 90px;
  148. display: inline-block;
  149. font-size: 20px;
  150. }
  151. .navHeader .nav>ul>li:hover a {
  152. color: #074F88;
  153. }
  154. .navHeader .nav_right{
  155. float: right;
  156. color:#ff570c;
  157. }
  158. .navHeader .nav_right img {
  159. width: 82px;
  160. height: 62px;
  161. margin-right: 14px;
  162. }
  163. /* 旧导航 */
  164. header {
  165. width: 100%;
  166. background: #ffffff;
  167. line-height: 90px;
  168. height: 90px;
  169. }
  170. header .logo {
  171. float: left;
  172. padding-left: 20px;
  173. }
  174. header .logo_right {
  175. margin-top: 8px;
  176. float: left;
  177. padding-left: 20px;
  178. width: 120px;
  179. height: 75px;
  180. background: url("../../img/index_xuan.png") no-repeat center center;
  181. margin-left: 10px;
  182. }
  183. .h_fix {
  184. position: fixed;
  185. top: 0px;
  186. left: 0;
  187. z-index: 9999;
  188. box-shadow: 2px 4px 10px #CCCCCC;
  189. display: none;
  190. }
  191. header .nav {
  192. float: left;
  193. padding-left: 35px;
  194. }
  195. header .nav>ul>li {
  196. float: left;
  197. width: 120px;
  198. text-align: center;
  199. line-height: 90px;
  200. position: relative;
  201. }
  202. header .nav>ul>li>a {
  203. color: #074d88;
  204. width: 120px;
  205. line-height: 90px;
  206. display: inline-block;
  207. font-size: 20px;
  208. }
  209. header .nav>ul>li:hover a {
  210. color: #074F88;
  211. }
  212. .active a {
  213. color: #074F88!important;
  214. }
  215. /*2级导航*/
  216. header .nav ul li .subnavigation {
  217. width: 120px;
  218. position: absolute;
  219. top: 76px;
  220. z-index: 9999;
  221. background: #ffffff;
  222. display: none;
  223. box-shadow: 0 2px 10px #ccc;
  224. }
  225. .subnavigation {
  226. padding-top: 18px;
  227. padding-bottom: 15px;
  228. }
  229. .subnavigation li>a {
  230. width: 120px;
  231. height: 30px;
  232. line-height: 30px;
  233. display: inline-block;
  234. color: #333333;
  235. }
  236. .subnavigation li a:hover {
  237. letter-spacing: 5px;
  238. background: rgba(22,151, 234, .7);
  239. box-shadow: 0 4px 6px #ccc;
  240. transition: all .2s ease-in;
  241. color:#ffffff!important;
  242. }
  243. .subnavigation li {
  244. height: 30px!important;
  245. line-height: 30px!important;
  246. }
  247. /*hot*/
  248. .nav ul li:hover img {
  249. animation: hot 1s infinite linear;
  250. transition: all 1s;
  251. }
  252. @keyframes hot {
  253. 0% {
  254. width: 30px;
  255. height: 30px;
  256. }
  257. 25% {
  258. width: 25px;
  259. height: 25px;
  260. top: 9px;
  261. }
  262. 50% {
  263. width: 30px;
  264. height: 30px;
  265. }
  266. 100% {
  267. width: 25px;
  268. height: 25px;
  269. top: 9px;
  270. }
  271. }
  272. header .nav_right>div {
  273. width: 180px;
  274. height: 25px;
  275. position: absolute;
  276. right: 0;
  277. top: 10px;
  278. background: url("../../img/index400.png")
  279. }
  280. header .nav_right a {
  281. color: #333333;
  282. margin: 2px;
  283. }
  284. header .nav_right a:hover {
  285. color: #2a6597;
  286. }
  287. .nav ul li {
  288. position: relative;
  289. }
  290. .nav ul li img {
  291. width: 30px;
  292. height: 30px;
  293. position: absolute;
  294. right: 0px;
  295. top: 9px;
  296. }
  297. .nav_right a:first-child+a+a {
  298. display: none;
  299. }
  300. header .nav_right .head_login {
  301. width: 40px;
  302. height: 50px;
  303. display: inline-block;
  304. line-height: 40px;
  305. position: absolute;
  306. right: 0;
  307. bottom: 0;
  308. color: #616161;
  309. }
  310. /*bottom的css*/
  311. #bottom {
  312. width: 100%;
  313. height: 386px;
  314. margin: 20px auto 0;
  315. position: relative;
  316. background: url(../../img/bottom_bg.png) no-repeat center center;
  317. background-size: 120% 100%;
  318. ;
  319. }
  320. .bottom {
  321. width: 1200px;
  322. height: 386px;
  323. margin: 20px auto 0;
  324. position: relative;
  325. }
  326. .bottom_text {
  327. width: 1200px;
  328. height: 386px;
  329. position: absolute;
  330. left: 0;
  331. top: 0;
  332. }
  333. .text_top {
  334. width: 100%;
  335. height: 55px;
  336. position: absolute;
  337. top: 140px;
  338. left: 0;
  339. text-align: center;
  340. color: #fff;
  341. }
  342. .text_top>a {
  343. color: #fff;
  344. line-height: 25px;
  345. }
  346. .text_center {
  347. width: 100%;
  348. height: 90px;
  349. position: absolute;
  350. top: 195px;
  351. left: 0;
  352. color: #fff;
  353. margin-top: 10px;
  354. }
  355. .cont_left {
  356. vertical-align: top;
  357. width: 350px;
  358. height: 90px;
  359. display: inline-block;
  360. margin-left: 45px;
  361. }
  362. .cont_left>p{
  363. margin-top: 15px;
  364. }
  365. .cont_left>img {
  366. margin-left: 85px;
  367. width: 40px;
  368. }
  369. .cont_guanli>a>img {
  370. width: 40px;
  371. height: 40px;
  372. }
  373. .cont_guanli {
  374. width: 200px;
  375. height: 90px;
  376. display: inline-block;
  377. text-align: center;
  378. margin-left: 70px;
  379. }
  380. .cont_center {
  381. width: 200px;
  382. height: 90px;
  383. display: inline-block;
  384. text-align: center;
  385. }
  386. .cont_right,
  387. .cont_rightapp {
  388. width: 82px;
  389. height: 90px;
  390. display: inline-block;
  391. text-align: center;
  392. vertical-align: top;
  393. }
  394. .text_center p {
  395. color: #F5F6F9;
  396. font-weight: bold;
  397. }
  398. .cont_rightapp {
  399. margin-right: 5px;
  400. margin-left: 50px;
  401. }
  402. .cont_rightapp p {
  403. line-height: 30px;
  404. }
  405. .cont_right p {
  406. line-height: 30px;
  407. width: 80px;
  408. text-align: center;
  409. }
  410. .text_bottom {
  411. width: 100%;
  412. height: 75px;
  413. position: absolute;
  414. top: 285px;
  415. left: 0;
  416. color: #fff;
  417. padding-left: 45px;
  418. margin-top: 15px;
  419. }
  420. .text_bottom p {
  421. font-weight: bold;
  422. line-height: 25px;
  423. }
  424. .text_bottom a {
  425. color: #fff;
  426. font-size: 1.2rem;
  427. line-height: 18px;
  428. }
  429. .pol_act {
  430. margin-left: 5px;
  431. }
  432. .android {
  433. margin-right: 5px;
  434. }
  435. /*右侧挂件*/
  436. .index_blur {
  437. font-size: 18px;
  438. color: #fff;
  439. text-align: right;
  440. padding-right: 15px;
  441. cursor: pointer;
  442. }
  443. .pub_fix {
  444. width: 70px;
  445. position: fixed;
  446. right: 10px;
  447. bottom: 80px;
  448. border-radius: 10px;
  449. border: 1px solid #e0e0e0;
  450. overflow: hidden;
  451. text-align: center;
  452. height: auto;
  453. background: #ffd68f;
  454. z-index: 999;
  455. }
  456. .right_cebian {
  457. width: 40px;
  458. height: 120px;
  459. position: fixed;
  460. right: 0;
  461. bottom: 180px;
  462. border-radius: 10px 0 0 10px;
  463. text-align: center;
  464. color: #fff;
  465. display: none;
  466. cursor: pointer;
  467. background: #5888B5 url("../../img/youce_daohang.png") no-repeat center 5px;
  468. z-index: 999999;
  469. letter-spacing: 5px;
  470. font-size: 18px;
  471. padding-top: 30px;
  472. padding-left: 5px;
  473. line-height: 20px;
  474. }
  475. .pub_fix .index_blur {
  476. width: 100%;
  477. height: 30px;
  478. line-height: 30px;
  479. background: #4c7fa9;
  480. display: inline-block;
  481. }
  482. .pub_fix .index_orange {
  483. width: 100%;
  484. height: 24px;
  485. line-height: 24px;
  486. background: #ffd68f;
  487. display: inline-block;
  488. }
  489. .pub_fix ul li:first-child {
  490. border: none;
  491. }
  492. .pub_fix ul li {
  493. padding-top: 6px;
  494. padding-bottom: 6px;
  495. border-top: 1px dotted #e0e0e0;
  496. background: #FFFFFF;
  497. }
  498. .pub_fix ul li a{
  499. width: 38px;
  500. height: 40px;
  501. display: inline-block;
  502. }
  503. .pub_fix ul li img {
  504. margin-bottom: 4px;
  505. }
  506. .pub_fix ul li:hover {
  507. cursor: pointer;
  508. }
  509. .pub_fix ul li p {
  510. color: #074d88;
  511. font-size: 14px;
  512. }
  513. .pub_fix ul li a {
  514. text-decoration: none;
  515. }
  516. .pub_fix ul li a img {
  517. width: 45px;
  518. height: 45px;
  519. border-radius: 50%;
  520. background: #ffc443;
  521. display: inline-block;
  522. }
  523. .pub_fix ul li:hover a img {
  524. background: #fc9501
  525. }
  526. /*登陆页面*/
  527. .login {
  528. width: 100%;
  529. background: rgba(6, 6, 6, .4);
  530. position: fixed;
  531. top: 0;
  532. left: 0;
  533. z-index: 999999;
  534. display: none;
  535. }
  536. .login_mian {
  537. width: 600px;
  538. background: #ffffff;
  539. position: absolute;
  540. top: 50%;
  541. margin-top: -200px;
  542. left: 50%;
  543. margin-left: -300px;
  544. padding-top: 60px;
  545. padding-bottom: 96px;
  546. }
  547. .login_left {
  548. float: left;
  549. padding-bottom: 10px;
  550. width: 265px;
  551. text-align: center;
  552. }
  553. .login_left .login_ewm {
  554. width: 95px;
  555. padding-top: 34px;
  556. margin-bottom: 10px;
  557. display: inline-block;
  558. text-align: center;
  559. }
  560. .login_left .login_ewm img {
  561. margin-bottom: 10px;
  562. width: 90px;
  563. }
  564. .login_left p {
  565. line-height: 26px;
  566. font-size: 16px;
  567. text-align: center;
  568. }
  569. .login_right {
  570. float: left;
  571. padding-left: 32px;
  572. width: 288px;
  573. border-left: 1px solid #E5E5E5;
  574. }
  575. .login_check,
  576. .login_submit {
  577. width: 260px!important;
  578. margin-top: 20px;
  579. }
  580. .login_right h5 {
  581. font-size: 18px;
  582. color: #373739;
  583. font-weight: normal;
  584. margin-bottom: 10px;
  585. }
  586. .login_right h5 a {
  587. font-size: 14px;
  588. color: #f81009;
  589. margin-left: 56px;
  590. }
  591. #customerType{border:none;width:200px;height:36px;color:#707070; background: transparent;
  592. outline: none;}
  593. .login_right form .login_uesr,
  594. .login_pass {
  595. width: 256px;
  596. height: 40px;
  597. position: relative;
  598. border: 1px solid #cccccc;
  599. }
  600. .login_uesr label img,
  601. .login_pass label img {
  602. width: 20px;
  603. height: 22px;
  604. position: absolute;
  605. top: 8px;
  606. left: 10px;
  607. border: none;
  608. }
  609. #Lo_user,
  610. #Lo_pass {
  611. width: 214px;
  612. height: 37px;
  613. line-height: 40px;
  614. border: none;
  615. border-left: 1px solid #CCCCCC;
  616. padding-left: 12px;
  617. left: 40px;
  618. top: 8px;
  619. font-size: 16px;
  620. position: absolute;
  621. color: #cdcdcd;
  622. }
  623. .login_uesr .log_del {
  624. width: 16px;
  625. height: 16px;
  626. position: absolute;
  627. top: 10px;
  628. right: 10px;
  629. }
  630. .log_del:hover {
  631. cursor: pointer;
  632. }
  633. .login_uesr {
  634. margin-bottom: 20px;
  635. }
  636. .login_check a {
  637. color: #f18101;
  638. float: right;
  639. line-height: 38px;
  640. }
  641. .login_check label {
  642. height: 38px;
  643. line-height: 38px;
  644. color: #f18101;
  645. font-weight: normal;
  646. }
  647. .lab_check {
  648. background: url(../../img/check_lo.png) no-repeat center left;
  649. background-size: 20% 40%;
  650. }
  651. .lab_checkno {
  652. background: url(../../img/check_lono.png) no-repeat center left;
  653. background-size: 20% 40%;
  654. }
  655. .login_check label input {
  656. margin-right: 4px;
  657. visibility: hidden;
  658. }
  659. .login_check label:hover {
  660. cursor: pointer;
  661. }
  662. .login_submit {
  663. width: 100%;
  664. height: 38px;
  665. font-size: 20px;
  666. background: #f18101;
  667. color: #FFFFFF;
  668. text-align: center;
  669. border: none;
  670. }
  671. .login_hua {
  672. position: absolute;
  673. top: 0;
  674. left: 0;
  675. }
  676. .login_close {
  677. position: absolute;
  678. top: 10px;
  679. right: 10px;
  680. width: 24px;
  681. height: 22px;
  682. z-index: 2000;
  683. }
  684. .login_close:hover {
  685. cursor: pointer;
  686. }
  687. .login_shadow {
  688. position: absolute;
  689. bottom: -25px;
  690. width: 600px;
  691. height: 25px;
  692. right: 0;
  693. z-index: 2000;
  694. }
  695. .login_check label:first-child {
  696. margin-right: 15px;
  697. }
  698. .head_login:focus {
  699. text-decoration: none;
  700. }
  701. /*忘记密码页面*/
  702. #forget {
  703. width: 100%;
  704. height: 100%;
  705. background: rgba(6, 6, 6, .4);
  706. position: fixed;
  707. top: 0;
  708. left: 0;
  709. z-index: 999999;
  710. display: none;
  711. }
  712. .forget {
  713. width: 600px;
  714. background: #ffffff;
  715. position: absolute;
  716. top: 50%;
  717. margin-top: -200px;
  718. left: 50%;
  719. margin-left: -300px;
  720. padding-top: 10px;
  721. padding-bottom: 50px;
  722. }
  723. .forget_top {
  724. width: 100%;
  725. height: 50px;
  726. border-bottom: 1px solid #E5E5E5;
  727. padding-left: 20px;
  728. line-height: 50px;
  729. }
  730. .forget_top>a {
  731. color: #383838;
  732. font-size: 20px;
  733. float: left;
  734. }
  735. .forget_top>div {
  736. float: left;
  737. }
  738. .forget_center {
  739. padding-top: 30px;
  740. width: 100%;
  741. text-align: center;
  742. padding-right: 40px;
  743. }
  744. .forget_center>div {
  745. color: #616161;
  746. font-size: 16px;
  747. font-weight: normal;
  748. height: 40px;
  749. line-height: 40px;
  750. width: 410px;
  751. margin: 0 auto;
  752. margin-bottom: 15px;
  753. text-align: right;
  754. position: relative;
  755. }
  756. .forget_center>div input {
  757. height: 40px;
  758. margin-left: 5px;
  759. }
  760. .phone>label {
  761. font-weight: normal;
  762. font-size: 18px;
  763. }
  764. .phone input {
  765. width: 250px;
  766. font-size: 16px;
  767. border: 1px solid #E5E5E5;
  768. padding-left: 5px;
  769. }
  770. .yanzheng>label {
  771. display: inline-block;
  772. color: #616161;
  773. font-weight: normal;
  774. font-size: 18px;
  775. }
  776. .yanzheng input {
  777. width: 160px;
  778. font-size: 16px;
  779. border: 1px solid #E5E5E5;
  780. padding-left: 5px;
  781. }
  782. .yanzheng {
  783. padding-right: 90px;
  784. }
  785. .yanzhengma_cont_ {
  786. width: 80px;
  787. height: 40px;
  788. display: inline-block;
  789. position: absolute;
  790. top: 0;
  791. right: 0;
  792. }
  793. .yanzhengma_cont_>img {
  794. width: 100%;
  795. height: 100%;
  796. }
  797. .cellcode_ {
  798. padding-right: 90px;
  799. }
  800. .cellcode_>div {
  801. display: inline-block;
  802. font-size: 18px;
  803. }
  804. .cellcode_>div>input {
  805. width: 160px;
  806. font-size: 16px;
  807. border: 1px solid #E5E5E5;
  808. padding-left: 5px;
  809. }
  810. .cellcode_>input {
  811. width: 80px;
  812. height: 40px;
  813. font-size: 14px;
  814. position: absolute;
  815. top: 0;
  816. right: 0;
  817. background: #fff;
  818. border: 1px solid #eee;
  819. cursor: pointer;
  820. color: #ccc;
  821. display: inline-block;
  822. padding-left: 0;
  823. background: none;
  824. text-align: center;
  825. }
  826. .forget_center .fastener {
  827. margin-top: 40px;
  828. text-align: center;
  829. padding-left: 30px;
  830. }
  831. .fastener>div {
  832. display: inline-block;
  833. width: 150px;
  834. height: 40px;
  835. }
  836. .fastener .forget_sub {
  837. background: #F18101;
  838. width: 150px;
  839. height: 40px;
  840. border: 1px solid #E5E5E5;
  841. margin-right: 20px;
  842. color: #fff;
  843. letter-spacing: 8px;
  844. font-size: 18px;
  845. }
  846. .fastener_right {
  847. color: #F18101;
  848. border: 1px solid #E5E5E5;
  849. text-align: center;
  850. letter-spacing: 8px;
  851. font-size: 18px;
  852. cursor: pointer;
  853. }
  854. /*新密码设置*/
  855. #new_password {
  856. width: 100%;
  857. height: 100%;
  858. background: rgba(6, 6, 6, .4);
  859. position: fixed;
  860. top: 0;
  861. left: 0;
  862. z-index: 999999;
  863. display: none;
  864. }
  865. .new_password {
  866. width: 600px;
  867. background: #ffffff;
  868. position: absolute;
  869. top: 50%;
  870. margin-top: -200px;
  871. left: 50%;
  872. margin-left: -300px;
  873. padding-top: 10px;
  874. padding-bottom: 50px;
  875. }
  876. .password_top {
  877. width: 100%;
  878. height: 50px;
  879. border-bottom: 1px solid #E5E5E5;
  880. padding-left: 20px;
  881. line-height: 50px;
  882. }
  883. .password_top>h4 {
  884. display: inline-block;
  885. color: #616161;
  886. font-size: 20px;
  887. }
  888. .password_top>span {
  889. font-size: 16px;
  890. color: #616161;
  891. background: url("../../img/zhongdian.png") no-repeat left center;
  892. padding-left: 25px;
  893. margin-left: 15px;
  894. }
  895. .password_center {
  896. padding-top: 30px;
  897. width: 100%;
  898. text-align: center;
  899. padding-right: 40px;
  900. }
  901. .password_center>div {
  902. color: #616161;
  903. font-size: 16px;
  904. font-weight: normal;
  905. height: 40px;
  906. line-height: 40px;
  907. width: 410px;
  908. margin: 0 auto;
  909. margin-bottom: 15px;
  910. text-align: right;
  911. position: relative;
  912. }
  913. .password_center>div>label {
  914. font-weight: normal;
  915. font-size: 18px;
  916. }
  917. .password_center>div input {
  918. width: 250px;
  919. height: 40px;
  920. font-size: 16px;
  921. padding-left: 5px;
  922. }
  923. .new_password .fastener {
  924. margin-top: 40px;
  925. padding-left: 30px;
  926. }
  927. .fastener .new_password_sub {
  928. background: #F18101;
  929. width: 150px;
  930. height: 40px;
  931. border: 1px solid #E5E5E5;
  932. margin-right: 20px;
  933. color: #fff;
  934. letter-spacing: 8px;
  935. font-size: 18px;
  936. }
  937. /*弹出消息提示*/
  938. /*弹出消息提示*/
  939. .smg{
  940. width: 260px;height: 40px;text-align: center;transform: scale(0) rotate(360deg);
  941. line-height:40px;background:#17a2b8;border-radius: 10px;
  942. position: fixed;top: -200px; left: 50%;margin-left: -130px;color:#ffffff;
  943. transition: all .1s ease-in-out;
  944. }
  945. .smg input{width: 260px;height: 40px;border: none;background: none;text-align: center;font-size: 14px;}
  946. .smg.active{
  947. transform: scale(1) ;
  948. top: 200px;
  949. z-index: 9999999999;
  950. transition: all .1s ease-in;
  951. }
  952. /* msg tools*/
  953. .message {
  954. position: fixed;
  955. top: 80px;
  956. text-align: center;
  957. width: 100%;
  958. display: none;
  959. z-index: 9999999
  960. }
  961. .message span {
  962. background: rgba(0, 0, 0, 0.6);
  963. padding: 8px 20px;
  964. color: #fff;
  965. border-radius: 6px
  966. }
  967. /* 导航 */
  968. .topNav{
  969. width: 100%;
  970. background: #ffffff;
  971. height: 90px;
  972. }
  973. .topNav.navFix{
  974. position: fixed;
  975. top: 0;
  976. left: 0;
  977. height: 90px;
  978. z-index: 999999;
  979. box-shadow: 0 4px 10px #ccc;
  980. }
  981. @media screen and (max-width:600px) {
  982. .pub_fix {
  983. display: none;
  984. }
  985. }
  986. .loading{
  987. position: fixed;
  988. width: 100%;
  989. height: 100%;
  990. background: rgba(0, 0, 0, 0.1);
  991. top: 0;
  992. left: 0;
  993. z-index: 99999999999;
  994. }
  995. .loading{
  996. display: none;
  997. }
  998. .loading div{
  999. position: fixed;
  1000. width: 98vw;
  1001. height: 100vh;
  1002. }
  1003. .loading p{
  1004. position: absolute;
  1005. left: 50%;
  1006. top: 50%;
  1007. width: 200px;
  1008. height: 40px;
  1009. margin-left: -100px;
  1010. margin-top: -20px;
  1011. }
  1012. .loading p span{
  1013. display: inline-block;
  1014. font-size: 30px;
  1015. color: #17a2b8;
  1016. transition: all .2s ease-in-out;
  1017. }
  1018. .loading p span.active{
  1019. margin-left: -10px;
  1020. transition: all .2s ease-in;
  1021. }