home.css 29 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809
  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: #000;
  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. box-shadow: -1px 1px 5px #bebebe;
  628. }
  629. .navbar-default .nave_style ul li .second-menu a {
  630. font-size: 14px;
  631. display: block;
  632. text-align: center;
  633. line-height: 40px;
  634. text-align: left;
  635. padding: 5px 20px;
  636. white-space: nowrap;
  637. }
  638. .navbar-default .nave_style ul li .second-menu a:hover {
  639. background: #eee;
  640. color: #000;
  641. -webkit-transform: translateX(2px);
  642. transform: translateX(2px);
  643. }
  644. .navbar-default .nave_style ul li:hover .second-menu {
  645. display: block;
  646. }
  647. .navbar-default .navbar-brand{
  648. color: #fff;
  649. padding-left: 15px;
  650. }
  651. .navbar-default .navbar-nav > .active > a,
  652. .navbar-default .navbar-nav > .active > a:hover,
  653. .navbar-default .navbar-nav > .active > a:focus{
  654. color:#333;
  655. background-color: #fff;
  656. }
  657. .navbar-default .navbar-toggle{
  658. border-color: #ddd;
  659. margin-left: 15px;
  660. }
  661. .navbar-default .navbar-toggle .icon-bar{
  662. background-color: #fff;
  663. }
  664. .navbar-default .navbar-toggle:hover, .navbar-default .navbar-toggle:focus{
  665. background-color: #2976ce;
  666. }
  667. .swiper-wrapper img{
  668. width:100%;
  669. /*height: 100%;*/
  670. /*display: block;*/
  671. }
  672. .line{
  673. border:1px solid #979797;
  674. margin-top:5px;
  675. border-bottom:none;
  676. border-left:none;
  677. border-right:none;
  678. }
  679. /*文本省略号*/
  680. .textEllipsis{
  681. width: 100%;
  682. overflow: hidden;
  683. white-space: nowrap;
  684. text-overflow: ellipsis;
  685. font-size: 16px;
  686. }
  687. .textEllipsis a{
  688. color: #333333;
  689. }
  690. .textEllipsis1{
  691. width: 100%;
  692. overflow: hidden;
  693. white-space: nowrap;
  694. text-overflow: ellipsis;
  695. font-size: 12px;
  696. padding-left: 10px;
  697. margin: 0 0 10px;
  698. }
  699. .rightContent{
  700. padding-left:15px;
  701. overflow: hidden;
  702. margin-top: 17px;
  703. }
  704. .leftContent{
  705. overflow: hidden;
  706. margin-top: 17px;
  707. }
  708. .leftImageStyle{
  709. width:585px;
  710. height:350px;
  711. margin-top: 15px;
  712. }
  713. .rightImageStyle{
  714. padding-left:15px;
  715. width:585px;
  716. height:350px;
  717. margin-top: 15px;
  718. }
  719. .leftImageStyle img ,.rightImageStyle img{
  720. min-width: 100%;
  721. max-width: 100%;
  722. min-height: 100%;
  723. max-height: 100%;
  724. }
  725. #tan{
  726. position: absolute;
  727. left: 182px;
  728. top:143px;
  729. text-align: center;
  730. width:158px;
  731. border:1px solid #ededed;
  732. border-bottom:0px;
  733. }
  734. #tan>a{
  735. width:158px;
  736. height:41px;
  737. line-height:41px;
  738. text-align:center;
  739. display:block;
  740. border-bottom:1px solid #ededed;
  741. }
  742. #tan_box{
  743. position: absolute;
  744. left: 182px;
  745. top:184px;
  746. text-align: center;
  747. width:158px;
  748. border:1px solid #ededed;
  749. border-bottom:0px;
  750. }
  751. #tan_box>a{
  752. width:158px;
  753. height:41px;
  754. line-height:41px;
  755. text-align:center;
  756. display:block;
  757. border-bottom:1px solid #ededed;
  758. }
  759. .get-mod-more {
  760. display: inline-block;
  761. height: 60px;
  762. width: 100%;
  763. line-height: 60px;
  764. border: 1px solid #f0f0f0;
  765. color: #bbb;
  766. font-size: 16px;
  767. text-align: center;
  768. cursor: pointer;
  769. }
  770. .get-mod-more:hover {
  771. background-color: #fafafa;
  772. color: #999;
  773. border-color: #fafafa;
  774. }
  775. .search-box {
  776. margin-top: 8px;
  777. }
  778. .search-input {
  779. width: 225px;
  780. height: 44px;
  781. padding: 0 10px;
  782. line-height: 34px;
  783. border: 1px solid #999999;
  784. cursor: initial;
  785. }
  786. .search-btn {
  787. width: 56px;
  788. height: 44px;
  789. color: #fff;
  790. background: #177be6;
  791. border: none;
  792. cursor: pointer;
  793. }
  794. .search-btn .iconfont {
  795. font-size: 26px;
  796. line-height: 44px;
  797. cursor: pointer;
  798. }
  799. .datetime {
  800. background: #e9e9e9;
  801. font-size: 14px;
  802. color: #7b7a7a;
  803. height: 32px;
  804. line-height: 32px;
  805. border-radius: 16px;
  806. padding: 0 20px 0 40px;
  807. }
  808. .icon-time {
  809. display: block;
  810. width: 40px;
  811. height: 40px;
  812. color: #fff;
  813. background: #177be6;
  814. border-radius: 50%;
  815. position: absolute;
  816. top: -2px;
  817. left: -10px;
  818. line-height: 39px;
  819. }
  820. .icon-time .iconfont {
  821. font-size: 24px;
  822. }
  823. .iconlogin {
  824. float: left;
  825. display: block;
  826. width: 40px;
  827. height: 40px;
  828. color: #fff;
  829. background: #177be6;
  830. border-radius: 50%;
  831. margin-left: 15px;
  832. }
  833. .iconlogin:hover {
  834. color: #A7FFF6;
  835. }
  836. .iconlogin .iconfont {
  837. font-size: 24px;
  838. }
  839. .center_nav .navbar {
  840. border-radius: 0;
  841. }
  842. .num-box {
  843. height: 110px;
  844. padding: 20px 10px 0 20px;
  845. background: #EBF0F4;
  846. margin-bottom: 11px;
  847. }
  848. .num-box:last-child{
  849. margin-bottom: 0;
  850. }
  851. .num-box .iconfont {
  852. float: left;
  853. font-size: 60px;
  854. color: #2976CE;
  855. margin-right: 10px;
  856. }
  857. /*.num-box-img {*/
  858. /*position: absolute;*/
  859. /*left: 0;*/
  860. /*top: 0;*/
  861. /*z-index: 1;*/
  862. /*width: 368px;*/
  863. /*height: 204px;*/
  864. /*}*/
  865. .num-box-text {
  866. /*background: rgba(23,123,230,.8);*/
  867. color: #333;
  868. font-size: 20px;
  869. text-align: left;
  870. padding: 0 10px;
  871. }
  872. .num-nm {
  873. font-size: 36px;
  874. color: #F74F39;
  875. }
  876. .ft-blue{
  877. font-family: MicrosoftYaHei;
  878. font-size: 36px;
  879. color: #2976CE;
  880. line-height: 36px;
  881. }
  882. .ft-yellow{
  883. color: #ffcc51;
  884. }
  885. .ft-18 {
  886. font-size: 18px;
  887. }
  888. .ft-20 {
  889. font-size: 20px;
  890. }
  891. .ft-40 {
  892. font-size: 40px;
  893. }
  894. .tab-menu {
  895. position: relative;
  896. text-align: center;
  897. background: #ebf0f4;
  898. border-bottom: solid 1px #fff;
  899. color: #328ed7;
  900. height: 90px;
  901. line-height: 90px;
  902. cursor: pointer;
  903. }
  904. .tab-menu:hover {
  905. background: #9ED4FF;
  906. color: #fff;
  907. }
  908. .tab-menu-icon {
  909. display: inline-block;
  910. width: 124px;
  911. height: 124px;
  912. border-radius: 50%;
  913. border: 4px solid #FF3D3D;
  914. text-align: center;
  915. line-height: 115px;
  916. cursor: pointer;
  917. margin-bottom:20px;
  918. }
  919. .tab-menu-icon .iconfont {
  920. font-size: 70px;
  921. color:#FF3D3D;
  922. cursor: pointer;
  923. }
  924. .menu-text {
  925. font-size: 24px;
  926. position: relative;
  927. top: -8px;
  928. }
  929. .icon-arrow-right {
  930. display: none;
  931. position: absolute;
  932. right: -8px;
  933. top: 38px;
  934. z-index: 10;
  935. width: 0;
  936. height: 0;
  937. border-left: solid 8px #328ed7;
  938. border-top: solid 8px transparent;
  939. border-bottom: solid 8px transparent;
  940. }
  941. .icon-more-btn {
  942. position: absolute;
  943. top: 0;
  944. right: 20px;
  945. display: block;
  946. width: 68px;
  947. height: 60px;
  948. background: url("../image/icon-more.png") no-repeat;
  949. color: #fff;
  950. line-height: 60px;
  951. text-align: center;
  952. }
  953. .icon-more-btn:hover {
  954. color: #A7FFF6;
  955. }
  956. .tab-menu.active .tab-menu-icon {
  957. background: #FF3D3D;
  958. }
  959. .tab-menu.active .icon-arrow-right {
  960. display: block;
  961. }
  962. .tab-menu.active .tab-menu-icon .iconfont {
  963. color: #fff;
  964. }
  965. .tab-menu.active{
  966. background:#328ed7;
  967. color: #fff;
  968. }
  969. .tab-content {
  970. position: relative;
  971. display: none;
  972. background: #fafafa;
  973. padding: 20px 70px;
  974. min-height: 360px;
  975. }
  976. .contentStyle {
  977. padding-right: 20px;
  978. }
  979. .contentStyle h3 a {
  980. color: #328ed7;
  981. font-size: 16px;
  982. font-weight: bold;
  983. }
  984. .ellipsis{
  985. overflow: hidden;
  986. text-overflow: ellipsis;
  987. white-space: nowrap;
  988. }
  989. .contentStyle p {
  990. line-height: 30px;
  991. }
  992. .contentStyle p.brief-info {
  993. font-size: 12px;
  994. color: #aaa;
  995. line-height: 20px;
  996. margin-bottom: 20px;
  997. }
  998. .hot-news {
  999. color:#FF3C3C;
  1000. font-size: 38px;
  1001. position: relative;
  1002. top: 7px;
  1003. }
  1004. .services-title {
  1005. text-align:center;
  1006. margin: 60px 0 20px;
  1007. }
  1008. .service-title-zh {
  1009. font-size: 30px;
  1010. color: #328ed7;
  1011. }
  1012. .service-title-en {
  1013. font-size: 18px;
  1014. color: #818e98;
  1015. font-family: MicrosoftYaHeiLight;
  1016. }
  1017. .service-title-line {
  1018. display: inline-block;
  1019. width: 52px;
  1020. height: 2px;
  1021. background: #ebf0f4;
  1022. }
  1023. .link-list {
  1024. height: 62px;
  1025. line-height: 62px;
  1026. background: #EBF0F4;
  1027. text-align: center;
  1028. font-size: 20px;
  1029. color: #2C8DDB;
  1030. }
  1031. .link-item-box {
  1032. margin-top: 40px;
  1033. overflow: hidden;
  1034. }
  1035. .link-item-box ul {
  1036. margin-right: -100px;
  1037. }
  1038. .link-item-box ul li{
  1039. float: left;
  1040. margin-right: 84px;
  1041. }
  1042. .centerContent {
  1043. min-height: 500px;
  1044. word-break: break-all;
  1045. }
  1046. #activity_top .notice-img {
  1047. width: 440px;
  1048. height: 260px;
  1049. }
  1050. .activity-left,.home-activity-left {
  1051. line-height: 30px;
  1052. }
  1053. .activity-title {
  1054. font-size: 24px;
  1055. color: #333;
  1056. margin-bottom: 15px;
  1057. }
  1058. #timer span {
  1059. background-color: #0c80fe;
  1060. color: #fff;
  1061. padding: 0 5px;
  1062. }
  1063. #activity_top {
  1064. border-bottom: solid 1px #ccc;
  1065. padding-bottom: 20px;
  1066. }
  1067. .screen-box {
  1068. padding: 20px 30px;
  1069. border-left: solid 1px #dadada;
  1070. border-right: solid 1px #dadada;
  1071. }
  1072. .sort-box {
  1073. border: solid 1px #dadada;
  1074. height: 36px;
  1075. line-height: 36px;
  1076. margin-right: 20px;
  1077. }
  1078. .right-line {
  1079. border-right: solid 1px #dadada;
  1080. padding-right: 10px; margin-right: 10px;
  1081. }
  1082. .screen-tj {
  1083. padding-top: 8px;
  1084. }
  1085. .sort-box span, .sort-box a {
  1086. display: inline-block;
  1087. border-right: solid 1px #dadada;
  1088. padding: 0 20px;
  1089. cursor: pointer;
  1090. }
  1091. .sort-box span:last-child, .sort-box a:last-child {
  1092. border-right: none;
  1093. }
  1094. .kind-tip {
  1095. border: solid 1px #dadada;
  1096. border-bottom: none;
  1097. padding: 15px 30px;
  1098. }
  1099. .kind-box {
  1100. display: inline-block;
  1101. border: solid 1px #dadada;
  1102. border-radius: 15px;
  1103. height: 34px;
  1104. line-height: 34px;
  1105. padding: 0 15px;
  1106. margin-right: 10px;
  1107. }
  1108. .kind-box.active {
  1109. background: #2976CE;
  1110. color: #fff;
  1111. }
  1112. .activity-list ul li{
  1113. padding: 25px 30px;
  1114. border: 1px solid #e7e8ec;
  1115. margin-left: 0;
  1116. margin-right: 0;
  1117. display: flex;
  1118. align-items: center;
  1119. }
  1120. .activity-list ul li:nth-child(2n ){
  1121. background-color: #e7e8ec;
  1122. }
  1123. .notice-img-box {
  1124. width: 270px;
  1125. height: 160px;
  1126. float: left;
  1127. margin-right: 20px;
  1128. }
  1129. .notice-img {
  1130. width: 270px;
  1131. height: 160px;
  1132. }
  1133. .activity-left {
  1134. position: relative;
  1135. float: left;
  1136. width: 800px;
  1137. color: #666;
  1138. }
  1139. .import-tip {
  1140. position: absolute;
  1141. top: 0;
  1142. right: 0;
  1143. }
  1144. .activity-title {
  1145. color: #333;
  1146. font-size: 30px;
  1147. }
  1148. .activity-tj-title {
  1149. color: #333;
  1150. font-size: 20px;
  1151. }
  1152. .activity-list ul li .activity-title {
  1153. padding-top: 10px;
  1154. padding-right: 60px;
  1155. }
  1156. .popup-signUp {
  1157. width: 600px;
  1158. max-height: 500px;
  1159. position: absolute;
  1160. top: 40px;
  1161. left: 0;
  1162. background: #fff;
  1163. border: solid 1px #dadada;
  1164. z-index: 9;
  1165. padding: 15px;
  1166. overflow: auto;
  1167. }
  1168. .popup-signUp input{
  1169. width: 100%;
  1170. border: solid 1px #dadada;
  1171. height: 30px;
  1172. line-height: 30px;
  1173. margin-bottom: 10px;
  1174. padding: 0 5px;
  1175. }
  1176. @media (max-width: 768px) {
  1177. .num-box {
  1178. width: 90%;
  1179. }
  1180. .tab-menu-list {
  1181. float: left;
  1182. width: 25%;
  1183. }
  1184. .tab-menu-icon {
  1185. width: 60px;
  1186. height: 60px;
  1187. line-height: 60px;
  1188. border: 1px solid #FF3D3D;
  1189. margin-bottom: 5px;
  1190. }
  1191. .menu-text {
  1192. font-size: 14px;
  1193. padding: 0;
  1194. }
  1195. .tab-menu-icon .iconfont {
  1196. font-size: 35px;
  1197. }
  1198. .tab-menu.active .menu-text {
  1199. border-bottom: solid 2px #2976CE;
  1200. }
  1201. .services-title {
  1202. font-size: 20px;
  1203. }
  1204. .footer span.bottom-logo {
  1205. display: none;
  1206. }
  1207. }
  1208. .icon-time,.iconlogin {
  1209. background: #dd0000;
  1210. }
  1211. .datetime {
  1212. background: #fff;
  1213. }
  1214. .navbar {
  1215. /*background: #ff0000;*/
  1216. }
  1217. /*.navbar-default .navbar-nav > .active > a, .navbar-default .navbar-nav > .active > a:hover, .navbar-default .navbar-nav > .active > a:focus {*/
  1218. /*background: #dd0000;*/
  1219. /*}*/
  1220. /*.navbar-default .nave_style ul li a:hover {*/
  1221. /*background: #fff;*/
  1222. /*}*/
  1223. .banner-bg {
  1224. background: url("../image/banner-bg.jpg") no-repeat center top;
  1225. height: 317px;
  1226. }
  1227. .main {
  1228. padding-bottom: 40px;
  1229. }
  1230. .list-main {
  1231. padding-top: 40px;
  1232. }
  1233. .main-bg {
  1234. /*background: url("../image/main-bg.jpg") no-repeat center top;*/
  1235. background: #f9f9f9;
  1236. min-height: 575px;
  1237. }
  1238. .num-info {
  1239. position: absolute;
  1240. top: -184px;
  1241. left: 15px;
  1242. width: 1220px;
  1243. height: 220px;
  1244. background: #fff;
  1245. box-shadow: 0 -6px 10px rgba(0,0,0,.2);
  1246. padding-top: 20px;
  1247. padding-left: 60px;
  1248. opacity: 0.8;
  1249. }
  1250. .num-info ul li {
  1251. width: 220px;
  1252. float: left;
  1253. border-right: solid 1px #e4e4e4;
  1254. text-align: center;
  1255. color: #666;
  1256. padding: 20px 0;
  1257. }
  1258. .num-info ul li .iconfont {
  1259. font-size: 40px;
  1260. }
  1261. .num-info ul li:last-child{
  1262. border-right: none;
  1263. }
  1264. .num-font {
  1265. font-size: 32px;
  1266. color: #dd0000;
  1267. margin: 10px 0 5px;
  1268. }
  1269. .center-main {
  1270. padding: 50px 35px 0;
  1271. }
  1272. .news-box {
  1273. margin-right: 20px;
  1274. }
  1275. .news-title {
  1276. margin-bottom: 15px;
  1277. }
  1278. .news-title span {
  1279. font-size: 14px;
  1280. color: #333;
  1281. border-bottom: solid 3px #f21f1f;
  1282. padding-bottom: 5px;
  1283. font-weight: bold;
  1284. }
  1285. .home-news-pic {
  1286. width: 265px;
  1287. height: 142px;
  1288. margin-right: 15px;
  1289. }
  1290. .home-news-pic img {
  1291. width: 100%;
  1292. height: 100%;
  1293. }
  1294. .home-news-list {
  1295. /*margin-top: 10px;*/
  1296. }
  1297. .home-news-list ul li {
  1298. line-height: 30px;
  1299. }
  1300. .home-news-list ulswiper-footer .swiper-slide a img li a {
  1301. color: #666;
  1302. }
  1303. .device {
  1304. position: relative;
  1305. padding: 0 30px;
  1306. }
  1307. .device .arrow-left,.device .arrow-right {
  1308. display: inline-block;
  1309. width: 40px;
  1310. height: 40px;
  1311. background: rgba(255,0,0,.8);
  1312. z-index: 999;
  1313. text-align: center;
  1314. line-height: 40px;
  1315. top: 100px;
  1316. }
  1317. .device .iconfont {
  1318. color: #fff;
  1319. font-size: 20px;
  1320. }
  1321. #swiper-footer {
  1322. height: 196px;
  1323. }
  1324. #swiper-footer .swiper-slide a img {
  1325. width: 288px;
  1326. height: 196px;
  1327. }
  1328. .footer {
  1329. margin-top: 0;
  1330. background: #878ca0;
  1331. padding: 30px 0;
  1332. }
  1333. .footer .home-content {
  1334. max-height: 575px;
  1335. width: 100%;
  1336. margin: 0 auto;
  1337. padding:0 18%;
  1338. display: flex;
  1339. justify-content: space-between;
  1340. align-items: center;
  1341. }
  1342. .footer .footer-left {
  1343. max-width: 60%;
  1344. display: flex;
  1345. justify-content: space-between;
  1346. align-items: flex-start;
  1347. }
  1348. .footer .footer-right {
  1349. display: flex;
  1350. justify-content: space-between;
  1351. align-items: center;
  1352. }
  1353. .footer-right div {
  1354. width:90px;
  1355. text-align: center;
  1356. }
  1357. .footer-right div img {
  1358. max-height: 100px;
  1359. }
  1360. .footer-right div p {
  1361. font-size: 10px;
  1362. color: #fff;
  1363. }
  1364. .footer .link {
  1365. width: 670px;
  1366. padding: 20px;
  1367. }
  1368. .link-title {
  1369. font-size: 16px;
  1370. color: #333;
  1371. border-bottom: 2px solid #9fa3b3;
  1372. color: #fff;
  1373. }
  1374. .footer .home-content ul li {
  1375. border-right: solid 1px #b3b3b3;
  1376. }
  1377. .link-line {
  1378. background: #dd0000;
  1379. }
  1380. .link .friendlyLink {
  1381. padding: 3px 50px 3px 0;
  1382. }
  1383. .link .helpLink {
  1384. padding: 3px 20px 3px 0;
  1385. }
  1386. .link a {
  1387. font-size: 13px;
  1388. color: #c9cbd3;
  1389. margin-top: 10px;
  1390. cursor: pointer;
  1391. display: inline-block;
  1392. border-bottom: 1px solid transparent;
  1393. }
  1394. .link a:hover{
  1395. color:#fff;
  1396. border-bottom: 1px solid #fff;
  1397. }
  1398. .cord-box {
  1399. border-top: none;
  1400. width: 510px;
  1401. background: #fff;
  1402. color: #666;
  1403. padding: 10px;
  1404. }
  1405. .cord-left {
  1406. padding: 20px 0 0 20px;
  1407. }
  1408. .cord-samll-name {
  1409. background: none;
  1410. color: #666;
  1411. }
  1412. .cord-list {
  1413. margin: 0;
  1414. }
  1415. .ewm-box {
  1416. width: 120px;
  1417. float: left;
  1418. margin-right: 10px;
  1419. line-height: 1.2;
  1420. }
  1421. .ewm-box img {
  1422. width: 96px;
  1423. height: 96px;
  1424. }
  1425. .copy-box {
  1426. position: relative;
  1427. border-top: none;
  1428. text-align: center;
  1429. color: #464953;
  1430. border-top: 2px solid #797E90;
  1431. }
  1432. .fangwen {
  1433. position: absolute;
  1434. right: 0;
  1435. top: 0;
  1436. }
  1437. .right-menu {
  1438. position: fixed;
  1439. right: 20px;
  1440. bottom: 20px;
  1441. background: #f4f4f4;
  1442. width: 140px;
  1443. padding: 20px;
  1444. border-top: solid 20px #dd0000;
  1445. z-index: 99999;
  1446. }
  1447. .r-item {
  1448. background: #fff;
  1449. border: solid 1px #e7e7e7;
  1450. }
  1451. .r-item ul li {
  1452. border-bottom: solid 1px #e7e7e7;
  1453. text-align: center;
  1454. }
  1455. .r-item ul li.backTop{
  1456. border-bottom: none;
  1457. }
  1458. .r-item ul li a {
  1459. display: block;
  1460. color: #666;
  1461. padding: 10px 0;
  1462. }
  1463. .r-item ul li a:hover {
  1464. background: #dd0000;
  1465. color: #fff;
  1466. }
  1467. .r-item ul li .iconfont {
  1468. font-size: 40px;
  1469. color: #dd0000;
  1470. }
  1471. .r-item ul li a:hover .iconfont {
  1472. color: #fff;
  1473. }
  1474. .r-item-name {
  1475. font-size: 16px;
  1476. }
  1477. .take-btn {
  1478. background: #dd0000;
  1479. color: #fff;
  1480. font-size: 20px;
  1481. text-align: center;
  1482. padding: 10px 0;
  1483. cursor: pointer;
  1484. }
  1485. .detail-leftNav {
  1486. width: 200px;
  1487. position: fixed;
  1488. background: #fff;
  1489. z-index: 10;
  1490. border: solid 1px #dadada;
  1491. margin-top: 100px;
  1492. }
  1493. .detail-leftNav-title {
  1494. font-size: 16px;
  1495. text-align: center;
  1496. height: 40px;
  1497. line-height: 40px;
  1498. background: #0c80fe;
  1499. color: #fff;
  1500. }
  1501. .detail-leftNav ul li {
  1502. border-bottom: solid 1px #dadada;
  1503. }
  1504. .detail-leftNav ul li:last-child {
  1505. border-bottom: none;
  1506. }
  1507. .detail-leftNav ul li a {
  1508. display: inline-block;
  1509. width: 100%;
  1510. height: 40px;
  1511. line-height: 40px;
  1512. padding: 0 10px;
  1513. }
  1514. .detail-leftNav ul li.active a {
  1515. background: #f5f5f5;;
  1516. color:#0c80fe ;
  1517. }
  1518. .detailTab p {
  1519. line-height: 2;
  1520. }
  1521. .app-box {
  1522. position: relative;
  1523. }
  1524. .app-code {
  1525. /*display: none;*/
  1526. /*position: absolute;*/
  1527. width: 100%;
  1528. /*right: 100px;*/
  1529. /*top: -60px;*/
  1530. text-align: center;
  1531. background: #fff;
  1532. }
  1533. .app-code p {
  1534. background: #dd0000;
  1535. line-height: 36px;
  1536. color: #fff;
  1537. }
  1538. .app-code-box {
  1539. width: 170px;
  1540. float: left;
  1541. margin: 5px;
  1542. }
  1543. .app-code-box img {
  1544. width: 100%;
  1545. }
  1546. .app-box a:hover .app-code {
  1547. display: block;
  1548. }
  1549. .tips-content.appCodestyle {
  1550. height: 280px;
  1551. }
  1552. .tips-content.appCodestyle #popupCentent {
  1553. padding-top: 40px;
  1554. }
  1555. @media screen and (max-width: 1560px) {
  1556. .right-menu {
  1557. width: 100px;
  1558. padding: 10px;
  1559. bottom: 80px;
  1560. right: 0;
  1561. }
  1562. .r-item ul li .iconfont {
  1563. font-size: 30px;
  1564. }
  1565. /*.app-code {*/
  1566. /*right: 80px;*/
  1567. /*}*/
  1568. }
  1569. .tips-popup {
  1570. display: none;
  1571. position: fixed;
  1572. width: 100%;
  1573. height: 100%;
  1574. top: 0;
  1575. left: 0;
  1576. background: rgba(0,0,0,.3);
  1577. z-index: 10000;
  1578. }
  1579. .tips-content {
  1580. position: absolute;
  1581. top: 50%;
  1582. left: 50%;
  1583. transform: translateY(-50%) translateX(-50%);
  1584. width: 500px;
  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: 5px;
  1594. right: 10px;
  1595. font-size: 30px;
  1596. cursor: pointer;
  1597. color: #909399;
  1598. }
  1599. .tips-content .tipstitle {
  1600. position: absolute;
  1601. top: 20px;
  1602. left: 20px;
  1603. font-size: 18px;
  1604. color: #000000;
  1605. }
  1606. #popupCentent {
  1607. padding: 70px 20px 0;
  1608. line-height: 2;
  1609. }
  1610. .popupInfo {
  1611. font-size: 16px;
  1612. text-align: left;
  1613. }
  1614. .dropMenu{
  1615. display: inline-block;
  1616. position: relative;
  1617. height: 100%;
  1618. vertical-align: middle;
  1619. margin-right: 15px;
  1620. }
  1621. .loginName {
  1622. font-size: 14px;
  1623. overflow: hidden;
  1624. margin-left: 0;
  1625. cursor: pointer;
  1626. }
  1627. .dropMenu .menu{
  1628. display: none;
  1629. background: #fff;
  1630. position: absolute;
  1631. top: 60px;
  1632. right: 0;
  1633. z-index: 5;
  1634. line-height: 40px;
  1635. white-space: nowrap;
  1636. border: 1px solid #ebeef5;
  1637. border-radius: 4px;
  1638. box-shadow: 0 2px 12px 0 rgba(0,0,0,.1)
  1639. }
  1640. .dropMenu:hover .menu{
  1641. display: block;
  1642. }
  1643. .dropMenu .menu a{
  1644. display: block;
  1645. color: #606266;
  1646. padding: 3px 15px;
  1647. }
  1648. .dropMenu .menu a:hover {
  1649. color: #66b1ff;
  1650. background-color: #ecf5ff;
  1651. }
  1652. .toAdmin {
  1653. margin-right: 15px;
  1654. cursor: pointer;
  1655. }
  1656. .loginIcon {
  1657. margin-right: 15px;
  1658. max-height:80px;
  1659. max-width: 80px;
  1660. }
  1661. .feedback-form {
  1662. margin: 0;
  1663. padding: 0;
  1664. margin-bottom: 30px;
  1665. }
  1666. .feedback-form .feedback-single {
  1667. margin-bottom: 22px;
  1668. }
  1669. .feedback-single > span {
  1670. display: inline-block;
  1671. width: 100px;
  1672. text-align: right;
  1673. vertical-align: middle;
  1674. float: left;
  1675. font-size: 14px;
  1676. color: #606266;
  1677. line-height: 40px;
  1678. padding: 0 12px 0 0;
  1679. box-sizing: border-box;
  1680. }
  1681. .feedback-single .is_error {
  1682. border-color: #F56C6C;
  1683. }
  1684. .feedback-input {
  1685. margin-left: 100px;
  1686. line-height: 40px;
  1687. position: relative;
  1688. font-size: 14px;
  1689. }
  1690. .feedback-input .feedback_error {
  1691. color: #F56C6C;
  1692. font-size: 12px;
  1693. line-height: 1;
  1694. padding-top: 4px;
  1695. position: absolute;
  1696. top: 100%;
  1697. left: 0;
  1698. }
  1699. .feedback-input .feedback_right {
  1700. position: relative;
  1701. font-size: 14px;
  1702. display: inline-block;
  1703. width: 100%;
  1704. }
  1705. .feedback_right input {
  1706. -webkit-appearance: none;
  1707. background-color: #FFF;
  1708. background-image: none;
  1709. border-radius: 4px;
  1710. border: 1px solid #DCDFE6;
  1711. box-sizing: border-box;
  1712. color: #606266;
  1713. display: inline-block;
  1714. font-size: inherit;
  1715. height: 40px;
  1716. line-height: 40px;
  1717. outline: 0;
  1718. padding: 0 15px;
  1719. transition: border-color .2s cubic-bezier(.645,.045,.355,1);
  1720. width: 100%;
  1721. }
  1722. .feedback_right textarea {
  1723. display: block;
  1724. resize: vertical;
  1725. padding: 5px 15px;
  1726. line-height: 1.5;
  1727. min-height: 80px;
  1728. box-sizing: border-box;
  1729. width: 100%;
  1730. font-size: inherit;
  1731. color: #606266;
  1732. background-color: #FFF;
  1733. background-image: none;
  1734. border: 1px solid #DCDFE6;
  1735. border-radius: 4px;
  1736. }
  1737. .feedback-button {
  1738. padding: 10px 0 20px 20px;
  1739. text-align: right;
  1740. -webkit-box-sizing: border-box;
  1741. box-sizing: border-box;
  1742. }
  1743. .feedback_default {
  1744. font-weight: normal;
  1745. display: inline-block;
  1746. line-height: 1;
  1747. white-space: nowrap;
  1748. cursor: pointer;
  1749. background: #FFF;
  1750. border: 1px solid #DCDFE6;
  1751. color: #606266;
  1752. -webkit-appearance: none;
  1753. text-align: center;
  1754. box-sizing: border-box;
  1755. outline: 0;
  1756. margin: 0;
  1757. transition: .1s;
  1758. padding: 12px 20px;
  1759. font-size: 14px;
  1760. border-radius: 4px;
  1761. }
  1762. .feedback_confirm{
  1763. color: #FFF;
  1764. background-color: #409EFF;
  1765. border-color: #409EFF;
  1766. }