home.css 29 KB

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