home.css 26 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695
  1. *{
  2. margin:0;
  3. padding: 0;
  4. font-family: '微软雅黑';
  5. }
  6. a:hover{
  7. /*color:#A7FFF6;*/
  8. cursor: pointer;
  9. text-decoration: none;
  10. }
  11. .textColor{
  12. color:#999;
  13. }
  14. .relative {
  15. position: relative;
  16. }
  17. /*主题宽度设置*/
  18. .main{
  19. height: auto;
  20. overflow: hidden;
  21. /*margin-top:10px;*/
  22. /*padding:0 0 45px 0px*/
  23. }
  24. /*头部宽度设置*/
  25. .head{
  26. /*height: 58px;*/
  27. background: #fff;
  28. color: #333;
  29. line-height: 80px;
  30. height: 80px;
  31. /*background: url("../image/header-bg.jpg") no-repeat center top;*/
  32. background-color: #fff;
  33. /*border-bottom: 1px solid #ededee;*/
  34. }
  35. .headLine{
  36. height: 100%;
  37. width: 100%;
  38. display: flex;
  39. justify-content: space-between;
  40. align-items: center;
  41. }
  42. span{
  43. display: inline-block;
  44. }
  45. h1{
  46. margin:0;
  47. padding: 0;
  48. }
  49. body{
  50. background-color: #fff;
  51. margin:0 auto;
  52. min-width: 1250px;
  53. }
  54. .fl{
  55. float: left;
  56. }
  57. .fr{
  58. float: right;
  59. }
  60. .headlineStyle{
  61. padding: 12px;
  62. background-color: #2976CE;
  63. color: #fff;
  64. margin-top: 20px;
  65. }
  66. .inline{
  67. display: inline;
  68. }
  69. .inline_block{
  70. display: inline-block;
  71. vertical-align: middle;
  72. }
  73. .activityList > div {
  74. padding: 25px 30px;
  75. border: 1px solid #e7e8ec;
  76. margin-left: 0;
  77. margin-right: 0;
  78. display: flex;
  79. align-items: center;
  80. justify-content: space-between;
  81. }
  82. .activityList > div:nth-of-type(2n) {
  83. background-color: #e7e8ec;
  84. }
  85. .centerContent ul li {
  86. margin-top: 20px;
  87. }
  88. h2{
  89. font-size: 18px;
  90. }
  91. /*轮播图样式*/
  92. #swiper-content {
  93. height: auto;
  94. overflow: hidden;
  95. }
  96. .pagination {
  97. position: absolute;
  98. z-index: 20;
  99. bottom: 5%;
  100. width: 100%;
  101. text-align: center;
  102. margin: 0;
  103. }
  104. .swiper-pagination-switch {
  105. display: inline-block;
  106. width: 1em;
  107. height: 1em;
  108. border-radius: 8px;
  109. background: #555;
  110. margin: 0 8px;
  111. opacity: 0.8;
  112. border: 1px solid #fff;
  113. cursor: pointer;
  114. }
  115. .swiper-active-switch {
  116. background: #fff;
  117. }
  118. .red{
  119. color:#D0021B;
  120. padding: 0 5px;
  121. font-size: 24px;
  122. font-weight: bold;
  123. }
  124. .navbar-default {
  125. margin-bottom:0;
  126. background-color: #fff;
  127. border-bottom: 1px solid #EDEDEE;
  128. }
  129. .device .arrow-left {
  130. position: absolute;
  131. left: 10px;
  132. top: 80px;
  133. margin-top: -15px;
  134. }
  135. .device .arrow-right {
  136. position: absolute;
  137. right: 10px;
  138. top: 80px;
  139. margin-top: -15px;
  140. }
  141. .device .iconfont {
  142. font-size: 40px;
  143. cursor: pointer;
  144. color: #666;
  145. }
  146. #swiper-footer {
  147. height: 110px;
  148. text-align: center;
  149. /*width: 90%;*/
  150. }
  151. #swiper-footer .swiper-slide{
  152. /*height: 100%;*/
  153. }
  154. #swiper-footer .swiper-slide a{
  155. display: inline-block;
  156. border:1px solid #edf2f5;
  157. /*height: 90%;*/
  158. margin-top: 10px;
  159. }
  160. .device a:focus{
  161. text-decoration: none;
  162. }
  163. /*#swiper-footer .swiper-slide a img{*/
  164. /*width: 110px;*/
  165. /*height: 90px;*/
  166. /*line-height: 0;*/
  167. /*}*/
  168. .content-slide {
  169. padding: 20px;
  170. color: #fff;
  171. }
  172. .title {
  173. font-size: 25px;
  174. margin-bottom: 10px;
  175. }
  176. .post_meta{
  177. text-align: center;
  178. margin-top:15px ;
  179. }
  180. .post_meta ul li {
  181. display: inline-block;
  182. margin:0 15px;
  183. color:#999;
  184. }
  185. .right-member {
  186. position: relative;
  187. margin-left: 15px;
  188. }
  189. .member-btn {
  190. cursor: pointer;
  191. }
  192. .right-member ul {
  193. display: none;
  194. position: absolute;
  195. top: 36px;
  196. left: -30px;
  197. z-index: 99;
  198. width: 100px;
  199. background: #fff;
  200. box-shadow: 0 1px 2px rgba(0,0,0,0.1);
  201. border: solid 1px #f2f2f2;
  202. line-height: 30px;
  203. }
  204. .checkout-btn {
  205. border-top: solid 1px #f2f2f2;
  206. }
  207. .right-member:hover ul{
  208. display: block;
  209. }
  210. /*面包屑导航*/
  211. .breadcrumb{
  212. background-color: #fff;
  213. border-bottom:1px solid #F6F7FB;
  214. padding: 20px 15px;
  215. width: 100%;
  216. color: #fff;
  217. }
  218. .breadcrumb > li {
  219. display: inline-block;
  220. float: left;
  221. }
  222. .breadcrumb > li + li:before {
  223. color: #CCCCCC;
  224. content: "> ";
  225. padding-left: 7px;
  226. }
  227. .breadcrumbFixed{
  228. border-bottom:1px solid #F6F7FB;
  229. padding: 25px 30px;
  230. font-size: 16px;
  231. width: 100%;
  232. background-color: #878CA0;
  233. color: #fff;
  234. border-radius: 0px;
  235. }
  236. .breadcrumbFixed > li {
  237. display: inline-block;
  238. float: left;
  239. }
  240. .breadcrumbFixed > li > a{
  241. color: #fff;
  242. }
  243. .breadcrumbFixed > li + li:before {
  244. color: #CCCCCC;
  245. content: "> ";
  246. padding-left: 7px;
  247. }
  248. /*按钮样式*/
  249. .btn:hover, .btn:focus, .btn.focus{
  250. border-color: #F6B242;
  251. color:#F6B242;
  252. background-color: #fff;
  253. outline: none;
  254. }
  255. .btn:focus, .btn:active:focus{
  256. outline: none;
  257. }
  258. .btn:active{
  259. background-image: none;
  260. outline: 0;
  261. -webkit-box-shadow: none;
  262. box-shadow: none;
  263. }
  264. /*新增按钮*/
  265. .btn-add,.btn-add:focus{
  266. background-color: #F6B242;
  267. color:#fff;
  268. border-color: #F6B242;
  269. }
  270. .btn-add:hover{
  271. background-color: #fff;
  272. color:#F6B242;
  273. border-color: #F6B242;
  274. }
  275. .btn-enter{
  276. background-color: #fff;
  277. color:#FF0000;
  278. border-color: #FF0000;
  279. }
  280. .btn-enter:hover{
  281. background-color: #FF0000;
  282. color:#fff;
  283. border-color: #FF0000;
  284. }
  285. .layui-input, .layui-select, .layui-textarea{
  286. height: 35px;
  287. line-height: 1.3;
  288. line-height: 38px\9;
  289. border: 1px solid #e6e6e6;
  290. background-color: #fff;
  291. border-radius: 2px;
  292. }
  293. .layui-laypage .layui-laypage-curr .layui-laypage-em{
  294. position: absolute;
  295. left: -1px;
  296. top: -1px;
  297. padding: 1px;
  298. width: 100%;
  299. height: 100%;
  300. background-color: #151517 !important;
  301. }
  302. .layui-laypage a:hover{
  303. color: #2976CE !important;
  304. font-size: 12px;
  305. }
  306. em{
  307. cursor: pointer;
  308. }
  309. .layui-laypage{
  310. margin: 0;
  311. }
  312. /*图标*/
  313. #keywordSearch{
  314. position: relative;
  315. height: 35px;
  316. width: 35px;
  317. line-height: 35px;
  318. top: -37px;
  319. top:-37px\9\0;/* ie9 */
  320. }
  321. .icon-sousuo{
  322. cursor: pointer;
  323. color:#fff;
  324. position: relative;
  325. height: 35px;
  326. width: 35px;
  327. line-height: 35px;
  328. left: -1px;
  329. text-align: center;
  330. vertical-align: middle;
  331. background-color: #2976CE;
  332. border-bottom-right-radius: 2px;
  333. border-top-right-radius: 2px;
  334. display: inline-block;
  335. }
  336. .logo{
  337. width: auto;
  338. height: 100%;
  339. /*height: 80px;*/
  340. /*margin-top: 5px;*/
  341. font-size: 22px;
  342. }
  343. .logoNew img {
  344. width: auto;
  345. height: 100%;
  346. display: inline-block;
  347. background-color: #488DFB;
  348. margin-top: -5px;
  349. }
  350. .logoNew span {
  351. font-size: 20px;
  352. padding-left: 15px;
  353. }
  354. .logo img{
  355. width: auto;
  356. height: 100%;
  357. /*background-color: #488DFB;*/
  358. display: inline-block;
  359. margin-top: -5px;
  360. }
  361. .logo span {
  362. font-size: 18px;
  363. font-weight: bold;
  364. }
  365. .small-logo {
  366. display: none;
  367. }
  368. .nav-login {
  369. display: none;
  370. margin: 7px 15px 0 0;
  371. }
  372. @media (max-width: 767px) {
  373. .logo.hidden-xs {
  374. display: block !important;
  375. }
  376. .logo.hidden-xs .small-logo {
  377. display: block !important;
  378. }
  379. .logo.hidden-xs .logo-big {
  380. display: none !important;
  381. }
  382. .nav-login {
  383. display: block;
  384. }
  385. .login {
  386. display: none;
  387. }
  388. }
  389. .name{
  390. margin-left: 20px;
  391. font-size: 24px;
  392. overflow: hidden;
  393. }
  394. .login{
  395. height: 100%;
  396. font-size: 14px;
  397. }
  398. .login > a > img {
  399. background-color: #488dfb;
  400. margin-top: -3px;
  401. }
  402. .login > .login-link {
  403. margin-right: 10px;
  404. font-weight: bold;
  405. cursor: pointer;
  406. }
  407. .login i {
  408. height: 100%;
  409. width: 60px;
  410. display: inline-block;
  411. font-size: 24px;
  412. text-align: center;
  413. background-color: #488DFB;
  414. color: #fff;
  415. }
  416. .navbar-collapse {
  417. padding-right: 0;
  418. }
  419. .btn-user {
  420. background: #2976CE;
  421. border-radius: 3px;
  422. padding: 0 15px;
  423. color: #fff;
  424. margin-left: 15px;
  425. }
  426. .btn-user:hover {
  427. background: #FF3D3D;
  428. color: #fff;
  429. }
  430. .left_list{
  431. width: 160px;
  432. height:100%;
  433. background-color: #f6f6f6;
  434. /* border:1px solid #ededed;*/
  435. }
  436. .list_title{
  437. height: 50px;
  438. width: 100%;
  439. line-height: 50px;
  440. padding: 0 25px;
  441. font-size: 16px;
  442. color: #0085d0;
  443. }
  444. .list-group-item.active,
  445. .list-group-item.active:hover,
  446. .list-group-item.active:focus {
  447. z-index: 2;
  448. color: #fff;
  449. background-color: #0085d0;
  450. border-color:#0085d0;
  451. }
  452. .list-group-item {
  453. position: relative;
  454. display: block;
  455. padding: 10px 25px;
  456. margin-bottom: -1px;
  457. background-color: #fff;
  458. border: 1px solid #ededed;
  459. border-radius: 0px;
  460. border-left: none;
  461. border-right: none;
  462. }
  463. .list-group-item:last-child {
  464. margin-bottom: 0;
  465. border-bottom-right-radius: 0px;
  466. border-bottom-left-radius: 0px;
  467. }
  468. .list-group-item:first-child {
  469. border-top-left-radius: 0px;
  470. border-top-right-radius: 0px;
  471. }
  472. .navbar-brand{
  473. font-size: 14px;
  474. }
  475. .headlineStyle p{
  476. display: inline-block;
  477. margin: 0 5px 0 0;
  478. }
  479. .headlineStyle p img{
  480. display: inline-block;
  481. width: 18px;
  482. height: 18px;
  483. }
  484. .abstract{
  485. margin-left: 15px !important;
  486. color: #AAAAAA ;
  487. }
  488. .container h3{
  489. font-size: 18px;
  490. margin-bottom: 10px;
  491. width: 100%;
  492. overflow: hidden;
  493. display: inline-block;
  494. white-space: nowrap;
  495. text-overflow: ellipsis;
  496. }
  497. .contentStyle span{
  498. width: 100%;
  499. overflow: hidden;
  500. display: inline-block;
  501. white-space: nowrap;
  502. text-overflow: ellipsis;
  503. margin: 0 0 10px;
  504. }
  505. .contentStyle a:hover{
  506. color:#2976CE
  507. }
  508. .contentStyle p a{
  509. color: #333;
  510. }
  511. .footer{
  512. width: 100%;
  513. margin-top: 30px;
  514. font-size: 14px;
  515. /*color: #e8e8e8;*/
  516. height: auto;
  517. overflow: hidden;
  518. background: #19273c;
  519. }
  520. .footer a {
  521. /*color: #fff;*/
  522. }
  523. .link{
  524. padding: 35px 0 20px;
  525. }
  526. .link ul{
  527. vertical-align: middle;
  528. }
  529. .link-line {
  530. display: inline-block;
  531. width: 1px;
  532. height: 25px;
  533. background: #328ed7;
  534. margin-right: 10px;
  535. float: left;
  536. }
  537. .copy-box {
  538. padding-top: 20px;
  539. border-top: solid 1px #273c5c;
  540. }
  541. .footer .home-content ul{
  542. display: inline-block;
  543. list-style: none;
  544. width: auto;
  545. height: auto;
  546. overflow: hidden;
  547. margin:0 auto;
  548. }
  549. .footer .home-content ul li{
  550. /*float: left;*/
  551. width: auto ;
  552. text-align: justify;
  553. display: inline-block;
  554. padding: 0 15px;
  555. margin-top: 5px;
  556. border-right: solid 1px #314a70;
  557. }
  558. .footer .home-content ul li:last-child{
  559. border-right: none;
  560. }
  561. .footer .home-content ul li a{
  562. text-decoration: none;
  563. }
  564. .footer .home-content ul li a:hover{
  565. color: #2976CE;
  566. }
  567. .cord-box {
  568. background: #273c5c;
  569. border-top: solid 4px #328ed7;
  570. text-align: center;
  571. padding-top: 10px;
  572. }
  573. .cord-line-box {
  574. position: relative;
  575. }
  576. .cord-line {
  577. display: block;
  578. width: 100%;
  579. height: 1px;
  580. background: #55667e;
  581. position: absolute;
  582. top: 10px;
  583. z-index: 1;
  584. }
  585. .cord-samll-name {
  586. background: #273c5c;
  587. color: #56a5e5;
  588. padding: 0 20px;
  589. position: relative;
  590. z-index: 10;
  591. }
  592. .cord-list {
  593. margin: 20px 0;
  594. }
  595. .cord-img {
  596. border: solid 5px #fff;
  597. }
  598. .iframeDiv{
  599. height: auto;
  600. width:1290px;
  601. }
  602. .insert-main{
  603. width: 1130px;
  604. height: auto;
  605. }
  606. .navbar {
  607. /*background-color: #19273c;*/
  608. }
  609. .navbar-default .nave_style ul li a{
  610. font-size: 18px;
  611. color: #a3a3a3;
  612. padding: 0 20px;
  613. line-height: 65px;
  614. }
  615. .navbar-default .nave_style ul li a:hover{
  616. color: #488DFB;
  617. }
  618. .navbar-default .nave_style ul li a:focus{
  619. color: #488DFB;
  620. }
  621. .navbar-default .nave_style ul li .second-menu {
  622. display: none;
  623. position: absolute;
  624. left: 0;
  625. background: #fff;
  626. z-index: 10;
  627. }
  628. .navbar-default .nave_style ul li .second-menu a {
  629. font-size: 14px;
  630. display: block;
  631. text-align: center;
  632. line-height: 40px;
  633. text-align: left;
  634. padding: 5px 20px;
  635. white-space: nowrap;
  636. }
  637. .navbar-default .nave_style ul li .second-menu a:hover {
  638. background: #eee;
  639. color: #000;
  640. -webkit-transform: translateX(2px);
  641. transform: translateX(2px);
  642. }
  643. .navbar-default .nave_style ul li:hover .second-menu {
  644. display: block;
  645. }
  646. .navbar-default .navbar-brand{
  647. color: #fff;
  648. padding-left: 15px;
  649. }
  650. .navbar-default .navbar-nav > .active > a,
  651. .navbar-default .navbar-nav > .active > a:hover,
  652. .navbar-default .navbar-nav > .active > a:focus{
  653. color:#333;
  654. background-color: #fff;
  655. }
  656. .navbar-default .navbar-toggle{
  657. border-color: #ddd;
  658. margin-left: 15px;
  659. }
  660. .navbar-default .navbar-toggle .icon-bar{
  661. background-color: #fff;
  662. }
  663. .navbar-default .navbar-toggle:hover, .navbar-default .navbar-toggle:focus{
  664. background-color: #2976ce;
  665. }
  666. .swiper-wrapper img{
  667. width:100%;
  668. /*height: 100%;*/
  669. /*display: block;*/
  670. }
  671. .line{
  672. border:1px solid #979797;
  673. margin-top:5px;
  674. border-bottom:none;
  675. border-left:none;
  676. border-right:none;
  677. }
  678. /*文本省略号*/
  679. .textEllipsis{
  680. width: 100%;
  681. overflow: hidden;
  682. white-space: nowrap;
  683. text-overflow: ellipsis;
  684. font-size: 16px;
  685. }
  686. .textEllipsis a{
  687. color: #333333;
  688. }
  689. .textEllipsis1{
  690. width: 100%;
  691. overflow: hidden;
  692. white-space: nowrap;
  693. text-overflow: ellipsis;
  694. font-size: 12px;
  695. padding-left: 10px;
  696. margin: 0 0 10px;
  697. }
  698. .rightContent{
  699. padding-left:15px;
  700. overflow: hidden;
  701. margin-top: 17px;
  702. }
  703. .leftContent{
  704. overflow: hidden;
  705. margin-top: 17px;
  706. }
  707. .leftImageStyle{
  708. width:585px;
  709. height:350px;
  710. margin-top: 15px;
  711. }
  712. .rightImageStyle{
  713. padding-left:15px;
  714. width:585px;
  715. height:350px;
  716. margin-top: 15px;
  717. }
  718. .leftImageStyle img ,.rightImageStyle img{
  719. min-width: 100%;
  720. max-width: 100%;
  721. min-height: 100%;
  722. max-height: 100%;
  723. }
  724. #tan{
  725. position: absolute;
  726. left: 182px;
  727. top:143px;
  728. text-align: center;
  729. width:158px;
  730. border:1px solid #ededed;
  731. border-bottom:0px;
  732. }
  733. #tan>a{
  734. width:158px;
  735. height:41px;
  736. line-height:41px;
  737. text-align:center;
  738. display:block;
  739. border-bottom:1px solid #ededed;
  740. }
  741. #tan_box{
  742. position: absolute;
  743. left: 182px;
  744. top:184px;
  745. text-align: center;
  746. width:158px;
  747. border:1px solid #ededed;
  748. border-bottom:0px;
  749. }
  750. #tan_box>a{
  751. width:158px;
  752. height:41px;
  753. line-height:41px;
  754. text-align:center;
  755. display:block;
  756. border-bottom:1px solid #ededed;
  757. }
  758. .get-mod-more {
  759. display: inline-block;
  760. height: 60px;
  761. width: 100%;
  762. line-height: 60px;
  763. border: 1px solid #f0f0f0;
  764. color: #bbb;
  765. font-size: 16px;
  766. text-align: center;
  767. cursor: pointer;
  768. }
  769. .get-mod-more:hover {
  770. background-color: #fafafa;
  771. color: #999;
  772. border-color: #fafafa;
  773. }
  774. .search-box {
  775. margin-top: 8px;
  776. }
  777. .search-input {
  778. width: 225px;
  779. height: 44px;
  780. padding: 0 10px;
  781. line-height: 34px;
  782. border: 1px solid #999999;
  783. cursor: initial;
  784. }
  785. .search-btn {
  786. width: 56px;
  787. height: 44px;
  788. color: #fff;
  789. background: #177be6;
  790. border: none;
  791. cursor: pointer;
  792. }
  793. .search-btn .iconfont {
  794. font-size: 26px;
  795. line-height: 44px;
  796. cursor: pointer;
  797. }
  798. .datetime {
  799. background: #e9e9e9;
  800. font-size: 14px;
  801. color: #7b7a7a;
  802. height: 32px;
  803. line-height: 32px;
  804. border-radius: 16px;
  805. padding: 0 20px 0 40px;
  806. }
  807. .icon-time {
  808. display: block;
  809. width: 40px;
  810. height: 40px;
  811. color: #fff;
  812. background: #177be6;
  813. border-radius: 50%;
  814. position: absolute;
  815. top: -2px;
  816. left: -10px;
  817. line-height: 39px;
  818. }
  819. .icon-time .iconfont {
  820. font-size: 24px;
  821. }
  822. .iconlogin {
  823. float: left;
  824. display: block;
  825. width: 40px;
  826. height: 40px;
  827. color: #fff;
  828. background: #177be6;
  829. border-radius: 50%;
  830. margin-left: 15px;
  831. }
  832. .iconlogin:hover {
  833. color: #A7FFF6;
  834. }
  835. .iconlogin .iconfont {
  836. font-size: 24px;
  837. }
  838. .center_nav .navbar {
  839. border-radius: 0;
  840. }
  841. .num-box {
  842. height: 110px;
  843. padding: 20px 10px 0 20px;
  844. background: #EBF0F4;
  845. margin-bottom: 11px;
  846. }
  847. .num-box:last-child{
  848. margin-bottom: 0;
  849. }
  850. .num-box .iconfont {
  851. float: left;
  852. font-size: 60px;
  853. color: #2976CE;
  854. margin-right: 10px;
  855. }
  856. /*.num-box-img {*/
  857. /*position: absolute;*/
  858. /*left: 0;*/
  859. /*top: 0;*/
  860. /*z-index: 1;*/
  861. /*width: 368px;*/
  862. /*height: 204px;*/
  863. /*}*/
  864. .num-box-text {
  865. /*background: rgba(23,123,230,.8);*/
  866. color: #333;
  867. font-size: 20px;
  868. text-align: left;
  869. padding: 0 10px;
  870. }
  871. .num-nm {
  872. font-size: 36px;
  873. color: #F74F39;
  874. }
  875. .ft-blue{
  876. font-family: MicrosoftYaHei;
  877. font-size: 36px;
  878. color: #2976CE;
  879. line-height: 36px;
  880. }
  881. .ft-yellow{
  882. color: #ffcc51;
  883. }
  884. .ft-18 {
  885. font-size: 18px;
  886. }
  887. .ft-20 {
  888. font-size: 20px;
  889. }
  890. .ft-40 {
  891. font-size: 40px;
  892. }
  893. .tab-menu {
  894. position: relative;
  895. text-align: center;
  896. background: #ebf0f4;
  897. border-bottom: solid 1px #fff;
  898. color: #328ed7;
  899. height: 90px;
  900. line-height: 90px;
  901. cursor: pointer;
  902. }
  903. .tab-menu:hover {
  904. background: #9ED4FF;
  905. color: #fff;
  906. }
  907. .tab-menu-icon {
  908. display: inline-block;
  909. width: 124px;
  910. height: 124px;
  911. border-radius: 50%;
  912. border: 4px solid #FF3D3D;
  913. text-align: center;
  914. line-height: 115px;
  915. cursor: pointer;
  916. margin-bottom:20px;
  917. }
  918. .tab-menu-icon .iconfont {
  919. font-size: 70px;
  920. color:#FF3D3D;
  921. cursor: pointer;
  922. }
  923. .menu-text {
  924. font-size: 24px;
  925. position: relative;
  926. top: -8px;
  927. }
  928. .icon-arrow-right {
  929. display: none;
  930. position: absolute;
  931. right: -8px;
  932. top: 38px;
  933. z-index: 10;
  934. width: 0;
  935. height: 0;
  936. border-left: solid 8px #328ed7;
  937. border-top: solid 8px transparent;
  938. border-bottom: solid 8px transparent;
  939. }
  940. .icon-more-btn {
  941. position: absolute;
  942. top: 0;
  943. right: 20px;
  944. display: block;
  945. width: 68px;
  946. height: 60px;
  947. background: url("../image/icon-more.png") no-repeat;
  948. color: #fff;
  949. line-height: 60px;
  950. text-align: center;
  951. }
  952. .icon-more-btn:hover {
  953. color: #A7FFF6;
  954. }
  955. .tab-menu.active .tab-menu-icon {
  956. background: #FF3D3D;
  957. }
  958. .tab-menu.active .icon-arrow-right {
  959. display: block;
  960. }
  961. .tab-menu.active .tab-menu-icon .iconfont {
  962. color: #fff;
  963. }
  964. .tab-menu.active{
  965. background:#328ed7;
  966. color: #fff;
  967. }
  968. .tab-content {
  969. position: relative;
  970. display: none;
  971. background: #fafafa;
  972. padding: 20px 70px;
  973. min-height: 360px;
  974. }
  975. .contentStyle {
  976. padding-right: 20px;
  977. }
  978. .contentStyle h3 a {
  979. color: #328ed7;
  980. font-size: 16px;
  981. font-weight: bold;
  982. }
  983. .ellipsis{
  984. overflow: hidden;
  985. text-overflow: ellipsis;
  986. white-space: nowrap;
  987. }
  988. .contentStyle p {
  989. line-height: 30px;
  990. }
  991. .contentStyle p.brief-info {
  992. font-size: 12px;
  993. color: #aaa;
  994. line-height: 20px;
  995. margin-bottom: 20px;
  996. }
  997. .hot-news {
  998. color:#FF3C3C;
  999. font-size: 38px;
  1000. position: relative;
  1001. top: 7px;
  1002. }
  1003. .services-title {
  1004. text-align:center;
  1005. margin: 60px 0 20px;
  1006. }
  1007. .service-title-zh {
  1008. font-size: 30px;
  1009. color: #328ed7;
  1010. }
  1011. .service-title-en {
  1012. font-size: 18px;
  1013. color: #818e98;
  1014. font-family: MicrosoftYaHeiLight;
  1015. }
  1016. .service-title-line {
  1017. display: inline-block;
  1018. width: 52px;
  1019. height: 2px;
  1020. background: #ebf0f4;
  1021. }
  1022. .link-list {
  1023. height: 62px;
  1024. line-height: 62px;
  1025. background: #EBF0F4;
  1026. text-align: center;
  1027. font-size: 20px;
  1028. color: #2C8DDB;
  1029. }
  1030. .link-item-box {
  1031. margin-top: 40px;
  1032. overflow: hidden;
  1033. }
  1034. .link-item-box ul {
  1035. margin-right: -100px;
  1036. }
  1037. .link-item-box ul li{
  1038. float: left;
  1039. margin-right: 84px;
  1040. }
  1041. .centerContent {
  1042. min-height: 500px;
  1043. word-break: break-all;
  1044. }
  1045. #activity_top .notice-img {
  1046. width: 440px;
  1047. height: 260px;
  1048. }
  1049. .activity-left,.home-activity-left {
  1050. line-height: 30px;
  1051. }
  1052. .activity-title {
  1053. font-size: 24px;
  1054. color: #333;
  1055. margin-bottom: 15px;
  1056. }
  1057. #timer span {
  1058. background-color: #0c80fe;
  1059. color: #fff;
  1060. padding: 0 5px;
  1061. }
  1062. #activity_top {
  1063. border-bottom: solid 1px #ccc;
  1064. padding-bottom: 20px;
  1065. }
  1066. .screen-box {
  1067. padding: 20px 30px;
  1068. border-left: solid 1px #dadada;
  1069. border-right: solid 1px #dadada;
  1070. }
  1071. .sort-box {
  1072. border: solid 1px #dadada;
  1073. height: 36px;
  1074. line-height: 36px;
  1075. margin-right: 20px;
  1076. }
  1077. .right-line {
  1078. border-right: solid 1px #dadada;
  1079. padding-right: 10px; margin-right: 10px;
  1080. }
  1081. .screen-tj {
  1082. padding-top: 8px;
  1083. }
  1084. .sort-box span, .sort-box a {
  1085. display: inline-block;
  1086. border-right: solid 1px #dadada;
  1087. padding: 0 20px;
  1088. cursor: pointer;
  1089. }
  1090. .sort-box span:last-child, .sort-box a:last-child {
  1091. border-right: none;
  1092. }
  1093. .kind-tip {
  1094. border: solid 1px #dadada;
  1095. border-bottom: none;
  1096. padding: 15px 30px;
  1097. }
  1098. .kind-box {
  1099. display: inline-block;
  1100. border: solid 1px #dadada;
  1101. border-radius: 15px;
  1102. height: 34px;
  1103. line-height: 34px;
  1104. padding: 0 15px;
  1105. margin-right: 10px;
  1106. }
  1107. .kind-box.active {
  1108. background: #2976CE;
  1109. color: #fff;
  1110. }
  1111. .activity-list ul li{
  1112. padding: 25px 30px;
  1113. border: 1px solid #e7e8ec;
  1114. margin-left: 0;
  1115. margin-right: 0;
  1116. display: flex;
  1117. align-items: center;
  1118. }
  1119. .activity-list ul li:nth-child(2n ){
  1120. background-color: #e7e8ec;
  1121. }
  1122. .notice-img-box {
  1123. width: 270px;
  1124. height: 160px;
  1125. float: left;
  1126. margin-right: 20px;
  1127. }
  1128. .notice-img {
  1129. width: 270px;
  1130. height: 160px;
  1131. }
  1132. .activity-left {
  1133. position: relative;
  1134. float: left;
  1135. width: 800px;
  1136. color: #666;
  1137. }
  1138. .import-tip {
  1139. position: absolute;
  1140. top: 0;
  1141. right: 0;
  1142. }
  1143. .activity-title {
  1144. color: #333;
  1145. font-size: 30px;
  1146. }
  1147. .activity-tj-title {
  1148. color: #333;
  1149. font-size: 20px;
  1150. }
  1151. .activity-list ul li .activity-title {
  1152. padding-top: 10px;
  1153. padding-right: 60px;
  1154. }
  1155. .popup-signUp {
  1156. width: 600px;
  1157. max-height: 500px;
  1158. position: absolute;
  1159. top: 40px;
  1160. left: 0;
  1161. background: #fff;
  1162. border: solid 1px #dadada;
  1163. z-index: 9;
  1164. padding: 15px;
  1165. overflow: auto;
  1166. }
  1167. .popup-signUp input{
  1168. width: 100%;
  1169. border: solid 1px #dadada;
  1170. height: 30px;
  1171. line-height: 30px;
  1172. margin-bottom: 10px;
  1173. padding: 0 5px;
  1174. }
  1175. @media (max-width: 768px) {
  1176. .num-box {
  1177. width: 90%;
  1178. }
  1179. .tab-menu-list {
  1180. float: left;
  1181. width: 25%;
  1182. }
  1183. .tab-menu-icon {
  1184. width: 60px;
  1185. height: 60px;
  1186. line-height: 60px;
  1187. border: 1px solid #FF3D3D;
  1188. margin-bottom: 5px;
  1189. }
  1190. .menu-text {
  1191. font-size: 14px;
  1192. padding: 0;
  1193. }
  1194. .tab-menu-icon .iconfont {
  1195. font-size: 35px;
  1196. }
  1197. .tab-menu.active .menu-text {
  1198. border-bottom: solid 2px #2976CE;
  1199. }
  1200. .services-title {
  1201. font-size: 20px;
  1202. }
  1203. .footer span.bottom-logo {
  1204. display: none;
  1205. }
  1206. }
  1207. .icon-time,.iconlogin {
  1208. background: #dd0000;
  1209. }
  1210. .datetime {
  1211. background: #fff;
  1212. }
  1213. .navbar {
  1214. /*background: #ff0000;*/
  1215. }
  1216. /*.navbar-default .navbar-nav > .active > a, .navbar-default .navbar-nav > .active > a:hover, .navbar-default .navbar-nav > .active > a:focus {*/
  1217. /*background: #dd0000;*/
  1218. /*}*/
  1219. /*.navbar-default .nave_style ul li a:hover {*/
  1220. /*background: #fff;*/
  1221. /*}*/
  1222. .banner-bg {
  1223. background: url("../image/banner-bg.jpg") no-repeat center top;
  1224. height: 317px;
  1225. }
  1226. .main {
  1227. padding-bottom: 40px;
  1228. }
  1229. .list-main {
  1230. padding-top: 40px;
  1231. }
  1232. .main-bg {
  1233. /*background: url("../image/main-bg.jpg") no-repeat center top;*/
  1234. background: #f9f9f9;
  1235. min-height: 575px;
  1236. }
  1237. .num-info {
  1238. position: absolute;
  1239. top: -184px;
  1240. left: 15px;
  1241. width: 1220px;
  1242. height: 220px;
  1243. background: #fff;
  1244. box-shadow: 0 -6px 10px rgba(0,0,0,.2);
  1245. padding-top: 20px;
  1246. padding-left: 60px;
  1247. opacity: 0.8;
  1248. }
  1249. .num-info ul li {
  1250. width: 220px;
  1251. float: left;
  1252. border-right: solid 1px #e4e4e4;
  1253. text-align: center;
  1254. color: #666;
  1255. padding: 20px 0;
  1256. }
  1257. .num-info ul li .iconfont {
  1258. font-size: 40px;
  1259. }
  1260. .num-info ul li:last-child{
  1261. border-right: none;
  1262. }
  1263. .num-font {
  1264. font-size: 32px;
  1265. color: #dd0000;
  1266. margin: 10px 0 5px;
  1267. }
  1268. .center-main {
  1269. padding: 50px 35px 0;
  1270. }
  1271. .news-box {
  1272. margin-right: 20px;
  1273. }
  1274. .news-title {
  1275. margin-bottom: 15px;
  1276. }
  1277. .news-title span {
  1278. font-size: 14px;
  1279. color: #333;
  1280. border-bottom: solid 3px #f21f1f;
  1281. padding-bottom: 5px;
  1282. font-weight: bold;
  1283. }
  1284. .home-news-pic {
  1285. width: 265px;
  1286. height: 142px;
  1287. margin-right: 15px;
  1288. }
  1289. .home-news-pic img {
  1290. width: 100%;
  1291. height: 100%;
  1292. }
  1293. .home-news-list {
  1294. /*margin-top: 10px;*/
  1295. }
  1296. .home-news-list ul li {
  1297. line-height: 30px;
  1298. }
  1299. .home-news-list ulswiper-footer .swiper-slide a img li a {
  1300. color: #666;
  1301. }
  1302. .device {
  1303. position: relative;
  1304. padding: 0 30px;
  1305. }
  1306. .device .arrow-left,.device .arrow-right {
  1307. display: inline-block;
  1308. width: 40px;
  1309. height: 40px;
  1310. background: rgba(255,0,0,.8);
  1311. z-index: 999;
  1312. text-align: center;
  1313. line-height: 40px;
  1314. top: 100px;
  1315. }
  1316. .device .iconfont {
  1317. color: #fff;
  1318. font-size: 20px;
  1319. }
  1320. #swiper-footer {
  1321. height: 196px;
  1322. }
  1323. #swiper-footer .swiper-slide a img {
  1324. width: 288px;
  1325. height: 196px;
  1326. }
  1327. .footer {
  1328. margin-top: 0;
  1329. background: #878ca0;
  1330. padding: 30px 0;
  1331. }
  1332. .footer .home-content {
  1333. max-height: 575px;
  1334. width: 100%;
  1335. margin: 0 auto;
  1336. padding:0 18%;
  1337. display: flex;
  1338. justify-content: space-between;
  1339. align-items: center;
  1340. }
  1341. .footer .footer-left {
  1342. max-width: 60%;
  1343. display: flex;
  1344. justify-content: space-between;
  1345. align-items: flex-start;
  1346. }
  1347. .footer .footer-right {
  1348. display: flex;
  1349. justify-content: space-between;
  1350. align-items: center;
  1351. }
  1352. .footer-right div {
  1353. width:90px;
  1354. text-align: center;
  1355. }
  1356. .footer-right div img {
  1357. max-height: 100px;
  1358. }
  1359. .footer-right div p {
  1360. font-size: 10px;
  1361. color: #fff;
  1362. }
  1363. .footer .link {
  1364. width: 670px;
  1365. padding: 20px;
  1366. }
  1367. .link-title {
  1368. font-size: 16px;
  1369. color: #333;
  1370. border-bottom: 2px solid #9fa3b3;
  1371. color: #fff;
  1372. }
  1373. .footer .home-content ul li {
  1374. border-right: solid 1px #b3b3b3;
  1375. }
  1376. .link-line {
  1377. background: #dd0000;
  1378. }
  1379. .link .friendlyLink {
  1380. padding: 3px 50px 3px 0;
  1381. }
  1382. .link .helpLink {
  1383. padding: 3px 20px 3px 0;
  1384. }
  1385. .link a {
  1386. font-size: 13px;
  1387. color: #c9cbd3;
  1388. margin-top: 10px;
  1389. cursor: pointer;
  1390. display: inline-block;
  1391. border-bottom: 1px solid transparent;
  1392. }
  1393. .link a:hover{
  1394. color:#fff;
  1395. border-bottom: 1px solid #fff;
  1396. }
  1397. .cord-box {
  1398. border-top: none;
  1399. width: 510px;
  1400. background: #fff;
  1401. color: #666;
  1402. padding: 10px;
  1403. }
  1404. .cord-left {
  1405. padding: 20px 0 0 20px;
  1406. }
  1407. .cord-samll-name {
  1408. background: none;
  1409. color: #666;
  1410. }
  1411. .cord-list {
  1412. margin: 0;
  1413. }
  1414. .ewm-box {
  1415. width: 120px;
  1416. float: left;
  1417. margin-right: 10px;
  1418. line-height: 1.2;
  1419. }
  1420. .ewm-box img {
  1421. width: 96px;
  1422. height: 96px;
  1423. }
  1424. .copy-box {
  1425. position: relative;
  1426. border-top: none;
  1427. text-align: center;
  1428. color: #464953;
  1429. border-top: 2px solid #797E90;
  1430. }
  1431. .fangwen {
  1432. position: absolute;
  1433. right: 0;
  1434. top: 0;
  1435. }
  1436. .right-menu {
  1437. position: fixed;
  1438. right: 20px;
  1439. bottom: 20px;
  1440. background: #f4f4f4;
  1441. width: 140px;
  1442. padding: 20px;
  1443. border-top: solid 20px #dd0000;
  1444. z-index: 99999;
  1445. }
  1446. .r-item {
  1447. background: #fff;
  1448. border: solid 1px #e7e7e7;
  1449. }
  1450. .r-item ul li {
  1451. border-bottom: solid 1px #e7e7e7;
  1452. text-align: center;
  1453. }
  1454. .r-item ul li.backTop{
  1455. border-bottom: none;
  1456. }
  1457. .r-item ul li a {
  1458. display: block;
  1459. color: #666;
  1460. padding: 10px 0;
  1461. }
  1462. .r-item ul li a:hover {
  1463. background: #dd0000;
  1464. color: #fff;
  1465. }
  1466. .r-item ul li .iconfont {
  1467. font-size: 40px;
  1468. color: #dd0000;
  1469. }
  1470. .r-item ul li a:hover .iconfont {
  1471. color: #fff;
  1472. }
  1473. .r-item-name {
  1474. font-size: 16px;
  1475. }
  1476. .take-btn {
  1477. background: #dd0000;
  1478. color: #fff;
  1479. font-size: 20px;
  1480. text-align: center;
  1481. padding: 10px 0;
  1482. cursor: pointer;
  1483. }
  1484. .detail-leftNav {
  1485. width: 200px;
  1486. position: fixed;
  1487. background: #fff;
  1488. z-index: 10;
  1489. border: solid 1px #dadada;
  1490. margin-top: 100px;
  1491. }
  1492. .detail-leftNav-title {
  1493. font-size: 16px;
  1494. text-align: center;
  1495. height: 40px;
  1496. line-height: 40px;
  1497. background: #0c80fe;
  1498. color: #fff;
  1499. }
  1500. .detail-leftNav ul li {
  1501. border-bottom: solid 1px #dadada;
  1502. }
  1503. .detail-leftNav ul li:last-child {
  1504. border-bottom: none;
  1505. }
  1506. .detail-leftNav ul li a {
  1507. display: inline-block;
  1508. width: 100%;
  1509. height: 40px;
  1510. line-height: 40px;
  1511. padding: 0 10px;
  1512. }
  1513. .detail-leftNav ul li.active a {
  1514. background: #f5f5f5;;
  1515. color:#0c80fe ;
  1516. }
  1517. .detailTab p {
  1518. line-height: 2;
  1519. }
  1520. .app-box {
  1521. position: relative;
  1522. }
  1523. .app-code {
  1524. /*display: none;*/
  1525. /*position: absolute;*/
  1526. width: 100%;
  1527. /*right: 100px;*/
  1528. /*top: -60px;*/
  1529. text-align: center;
  1530. background: #fff;
  1531. }
  1532. .app-code p {
  1533. background: #dd0000;
  1534. line-height: 36px;
  1535. color: #fff;
  1536. }
  1537. .app-code-box {
  1538. width: 170px;
  1539. float: left;
  1540. margin: 5px;
  1541. }
  1542. .app-code-box img {
  1543. width: 100%;
  1544. }
  1545. .app-box a:hover .app-code {
  1546. display: block;
  1547. }
  1548. .tips-content.appCodestyle {
  1549. height: 280px;
  1550. }
  1551. .tips-content.appCodestyle #popupCentent {
  1552. padding-top: 40px;
  1553. }
  1554. @media screen and (max-width: 1560px) {
  1555. .right-menu {
  1556. width: 100px;
  1557. padding: 10px;
  1558. bottom: 80px;
  1559. right: 0;
  1560. }
  1561. .r-item ul li .iconfont {
  1562. font-size: 30px;
  1563. }
  1564. /*.app-code {*/
  1565. /*right: 80px;*/
  1566. /*}*/
  1567. }
  1568. .tips-popup {
  1569. display: none;
  1570. position: fixed;
  1571. width: 100%;
  1572. height: 100%;
  1573. top: 0;
  1574. left: 0;
  1575. background: rgba(0,0,0,.3);
  1576. z-index: 10000;
  1577. }
  1578. .tips-content {
  1579. position: absolute;
  1580. top: 50%;
  1581. left: 50%;
  1582. margin: -100px 0 0 -200px;
  1583. width: 400px;
  1584. height: 200px;
  1585. font-size: 20px;
  1586. text-align: center;
  1587. /*padding-top: 90px;*/
  1588. background: #fff;
  1589. box-shadow: 2px 2px 10px rgba(0,0,0,.2);
  1590. }
  1591. .tips-content .tipsclose {
  1592. position: absolute;
  1593. top: 10px;
  1594. right: 10px;
  1595. font-size: 14px;
  1596. cursor: pointer;
  1597. }
  1598. #popupCentent {
  1599. padding: 70px 20px 0;
  1600. line-height: 2;
  1601. }
  1602. .popupInfo {
  1603. font-size: 16px;
  1604. text-align: left;
  1605. }
  1606. .dropMenu{
  1607. display: inline-block;
  1608. position: relative;
  1609. height: 100%;
  1610. vertical-align: middle;
  1611. margin-right: 15px;
  1612. }
  1613. .loginName {
  1614. font-size: 14px;
  1615. overflow: hidden;
  1616. margin-left: 0;
  1617. cursor: pointer;
  1618. }
  1619. .dropMenu .menu{
  1620. display: none;
  1621. background: #fff;
  1622. position: absolute;
  1623. top: 60px;
  1624. right: 0;
  1625. z-index: 5;
  1626. line-height: 40px;
  1627. white-space: nowrap;
  1628. border: 1px solid #ebeef5;
  1629. border-radius: 4px;
  1630. box-shadow: 0 2px 12px 0 rgba(0,0,0,.1)
  1631. }
  1632. .dropMenu:hover .menu{
  1633. display: block;
  1634. }
  1635. .dropMenu .menu a{
  1636. display: block;
  1637. color: #606266;
  1638. padding: 3px 15px;
  1639. }
  1640. .dropMenu .menu a:hover {
  1641. color: #66b1ff;
  1642. background-color: #ecf5ff;
  1643. }
  1644. .toAdmin {
  1645. margin-right: 15px;
  1646. cursor: pointer;
  1647. }
  1648. .loginIcon {
  1649. margin-right: 15px;
  1650. max-height:80px;
  1651. max-width: 80px;
  1652. }