Nessuna descrizione

indexs.css 39KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571
  1. html {
  2. /*IE10 IE11始终显示滚动条*/
  3. -ms-overflow-style:scrollbar;
  4. }
  5. body {
  6. margin: 0;
  7. padding: 0;
  8. font-size: 16px;
  9. /*font-family: "SimSun";*/
  10. /*background-color: #CDEBFB;*/
  11. /*-webkit-text-size-adjust: none;*/
  12. }
  13. .body {
  14. background-color: #fff;
  15. }
  16. ul,
  17. li {
  18. margin: 0;
  19. padding: 0;
  20. }
  21. .fl {
  22. float: left;
  23. }
  24. .rl {
  25. float: right;
  26. }
  27. li {
  28. list-style-type: none;
  29. }
  30. img {
  31. border: 0;
  32. }
  33. p {
  34. margin: 0;
  35. padding: 0;
  36. }
  37. .clearfix {
  38. zoom: 1;
  39. overflow: hidden;
  40. }
  41. .clearfix:after {
  42. content: "";
  43. display: block;
  44. clear: both;
  45. }
  46. a {
  47. text-decoration: none;
  48. }
  49. a:hover {
  50. color: rgb(22, 100, 162);
  51. }
  52. .s-14 {
  53. font-size: 14px;
  54. }
  55. .m-r {
  56. margin-right: 7px;
  57. }
  58. .min-wrap {
  59. max-width: 1280px;
  60. min-width: 1000px;
  61. margin: 0 auto;
  62. }
  63. .main-wrap {
  64. width: 1200px;
  65. margin: 0 auto;
  66. }
  67. .main-body {
  68. background-color: white;
  69. margin-bottom: 20px;
  70. }
  71. .header{
  72. width: 100%;
  73. margin: 0 auto;
  74. }
  75. .navcon {
  76. width:1246px;
  77. margin: 0 auto;
  78. background-color: #c12729;
  79. position: relative;
  80. }
  81. .navcon_box {
  82. width: 1246px;
  83. margin: 0 auto;
  84. }
  85. #navcon:before, #navcon:after{
  86. display: block;
  87. content: "";
  88. position: absolute;
  89. width: 0;
  90. height: 0;
  91. top: 0;
  92. }
  93. #navcon:before{
  94. left: 0;
  95. top: 54px;
  96. border-top: 13px solid #96140a;
  97. border-bottom: 13px solid transparent;
  98. border-left: 13px solid transparent;
  99. border-right: 13px solid #96140a;
  100. }
  101. #navcon:after{
  102. right: 0!important;
  103. border-top: 13px solid #96140a;
  104. border-bottom: 13px solid transparent;
  105. border-left: 13px solid #96140a;
  106. border-right: 13px solid transparent;
  107. top: 54px;
  108. }
  109. .logo_box {
  110. float: left;
  111. width: 35%;
  112. }
  113. .logo {
  114. float: left;
  115. height: 100%;
  116. line-height: 80px;
  117. font-size: 32px;
  118. color: #02b2b5;
  119. }
  120. .logoImg_box {
  121. padding-left: 76px;
  122. }
  123. .nav_right {
  124. width: 65%;
  125. float: right;
  126. }
  127. .navs .active {
  128. border-bottom: 2px solid #fff;
  129. }
  130. .Hidens {
  131. display: none;
  132. }
  133. .Input_box {
  134. border: 1px solid #99b6cd;
  135. height: 22px;
  136. width: 55%;
  137. position: relative;
  138. padding: 2px;
  139. margin-top: 20px;
  140. border-radius: 5px;
  141. }
  142. .Seach_box {
  143. height: 18px;
  144. width: 140px;
  145. border: 0;
  146. background: transparent;
  147. outline: none;
  148. position: absolute;
  149. font-size: 14px;
  150. padding: 2px;
  151. color: #99b6cd;
  152. }
  153. .Seac_icon {
  154. background: url(../img/ss.png)no-repeat;
  155. width: 20px;
  156. height: 20px;
  157. display: block;
  158. position: absolute;
  159. right: 0;
  160. /* line-height: 51px; */
  161. top: 7px;
  162. }
  163. .login_icon {
  164. background: url(../img/login.png)no-repeat;
  165. width: 20px;
  166. height: 20px;
  167. display: block;
  168. margin-top: 25px;
  169. }
  170. .login_btton {
  171. color: #fff;
  172. }
  173. .login_box {
  174. padding-left: 10px;
  175. }
  176. .login_box a {
  177. color: #fff;
  178. cursor: pointer;
  179. }
  180. input::-webkit-input-placeholder,
  181. textarea::-webkit-input-placeholder {
  182. color: #99b6cd;
  183. }
  184. input:-moz-placeholder,
  185. textarea:-moz-placeholder {
  186. color: #99b6cd;
  187. }
  188. input::-moz-placeholder,
  189. textarea::-moz-placeholder {
  190. color: #99b6cd6;
  191. }
  192. input:-ms-input-placeholder,
  193. textarea:-ms-input-placeholder {
  194. color: #99b6cd;
  195. }
  196. .navcon_1,.navcon_2 {
  197. margin-bottom: 10px;
  198. margin: 0 auto;
  199. margin-top: 30px;
  200. }
  201. .navcon_1 {
  202. width: 96%;
  203. }
  204. .navcon_2 {
  205. width: 100%;
  206. }
  207. .navCon {
  208. margin-top: 15px;
  209. }
  210. .Content_box {
  211. height: 290px;
  212. /*background-color: #03B2B7;*/
  213. border: 1px solid #CCCCCC;
  214. /*border-top: 5px solid #00a1cb;*/
  215. }
  216. .Content{
  217. width: 1246px;
  218. margin: 0 auto;
  219. }
  220. .ss_Content_box{
  221. border: 15px solid #eee2d6;
  222. border-radius: 15px;
  223. }
  224. .ss_CountBox{
  225. display: inline-block;
  226. background: #c29673;
  227. padding: 2px 5px;
  228. border-radius: 8px;
  229. margin: 8px 0 5px 0;
  230. }
  231. .ss_CountBox .Count_title,#totalCount{
  232. color: #fff;
  233. font-size: 18px;
  234. font-family: "SimSun";
  235. }
  236. #totalCount{
  237. color: #ff0000;
  238. }
  239. .content_title {
  240. padding-top: 4px;
  241. font-weight: bold;
  242. line-height: 26px;
  243. background: #efe2d7;
  244. padding-left: 15px;
  245. }
  246. .ms_content_title{
  247. background: -webkit-linear-gradient(left, #fcd07a , #fff); /* Safari 5.1 - 6.0 */
  248. background: -o-linear-gradient(right, #fcd07a , #fff); /* Opera 11.1 - 12.0 */
  249. background: -moz-linear-gradient(right, #fcd07a , #fff); /* Firefox 3.6 - 15 */
  250. background: linear-gradient(to right, #fcd07a , #fff); /* 标准的语法(必须放在最后) */
  251. color: #a14243;
  252. font-family: "仿宋";
  253. border-top-left-radius: 10px;
  254. }
  255. .ms_content_title .fl{
  256. font-size: 24px;
  257. background: #fff;
  258. padding: 10px 19px;
  259. border-top-left-radius: 7px;
  260. border-top-right-radius: 7px;
  261. }
  262. .ms_content_title .mores a{
  263. font-size: 16px;
  264. color: #a14243;
  265. }
  266. .content_moddile {
  267. padding: 0 15px;
  268. padding-top: 12px;
  269. }
  270. .cont_modtitle {
  271. color: #00a1cb;
  272. }
  273. .cont_wz {
  274. margin-bottom: 14px;
  275. }
  276. .fx {
  277. border-bottom: 1px dashed #ccc;
  278. }
  279. .new_list li {
  280. height: 30px;
  281. }
  282. .new_list li:hover {
  283. background-color: #f5f5f5;
  284. }
  285. /*.content_foot ul.MQ li:nth-of-type(even){
  286. background-color: #f3f3f3;
  287. } */
  288. .new_title {
  289. height: 100%;
  290. line-height: 30px;
  291. padding: 0 15px;
  292. }
  293. .new_title h1 {
  294. margin: 0;
  295. padding: 0;
  296. font-weight: normal;
  297. line-height: 30px;
  298. white-space: nowrap;
  299. overflow: hidden;
  300. text-overflow: ellipsis;
  301. float: left;
  302. width: 55%;
  303. }
  304. .new_title em {
  305. font-style: normal;
  306. }
  307. .new_title a {
  308. color: #000;
  309. display: block;
  310. width: 100%;
  311. font-size: 18px;
  312. font-family: "SimSun";
  313. white-space: nowrap;
  314. overflow: hidden;
  315. text-overflow: ellipsis;
  316. }
  317. .new_title a:hover {
  318. color: #00b5e4!important;
  319. }
  320. .mores {
  321. font-weight: normal;
  322. margin-right: 20px;
  323. font-size: 14px;
  324. }
  325. .mores a{
  326. color: #000;
  327. }
  328. .mores a:hover{
  329. color: #00a1cb;
  330. }
  331. .new_img li {
  332. float: left;
  333. width: 24%;
  334. }
  335. .content_foot_img {
  336. padding: 15px 10px 0 10px;
  337. }
  338. ._imgbox {
  339. margin-bottom: 15px;
  340. cursor: pointer;
  341. }
  342. /*主体*/
  343. .main-bar {
  344. height: 80px;
  345. background-color: #02B2B5;
  346. }
  347. .main-bar .logo {
  348. float: left;
  349. margin-top: 19px;
  350. width: 408px;
  351. height: 53px;
  352. /*background: * url("") no-repeat;*/
  353. border: 1px solid red;
  354. }
  355. .main-bar .back {
  356. float: right;
  357. background-color: #ea544a;
  358. border-radius: 20px;
  359. font-family: "Microsoft Yahei";
  360. height: 30px;
  361. line-height: 30px;
  362. width: 92px;
  363. text-align: center;
  364. margin-top: 28px;
  365. color: white;
  366. }
  367. .main-bar .back a {
  368. color: white;
  369. font-size: .93em;
  370. }
  371. .main-bar .back a:hover {
  372. color: white;
  373. text-decoration: underline;
  374. }
  375. .main-bar .nav {
  376. /*float: left;*/
  377. font-family: "Microsoft Yahei";
  378. }
  379. .Foots {
  380. border: 1px solid #ccc;
  381. }
  382. .foot_ul li {
  383. float: left;
  384. width: 20%;
  385. margin-bottom: 15px;
  386. cursor: pointer;
  387. }
  388. .FootBox {
  389. text-align: center;
  390. padding: 50px;
  391. }
  392. .index-banner {
  393. line-height: 0;
  394. height: 300px;
  395. }
  396. .index-banner img {
  397. display: block;
  398. width: 100%;
  399. height: 100%;
  400. }
  401. .col-wide {
  402. float: left;
  403. width: 650px;
  404. }
  405. .col-narrow {
  406. margin-left: 700px;
  407. }
  408. .box-01 .box-title {
  409. padding: 16px 10px 16px 0;
  410. height: 16px;
  411. margin-bottom: 20px;
  412. }
  413. .box-01.red-bg .box-title {
  414. background-color: #85c300;
  415. text-align: center;
  416. color: #fff;
  417. }
  418. .col-narrow .rt-box {
  419. height: 47px;
  420. line-height: 47px;
  421. border-bottom: 2px solid #000;
  422. position: relative;
  423. }
  424. .col-narrow .rt-box .right-title {
  425. float: left;
  426. color: #c44542;
  427. }
  428. .col-narrow .rt-box .bor-line {
  429. width: 50%;
  430. height: 2px;
  431. line-height: 0;
  432. background: #c44542;
  433. position: absolute;
  434. bottom: -2px;
  435. }
  436. .col-narrow .rt-box .right-more {
  437. float: right;
  438. }
  439. .col-narrow .rt-box .right-more a {
  440. color: #000;
  441. font-size: 12px;
  442. }
  443. .col-narrow .rt-box .right-more a:hover {
  444. color: #ac2e3b;
  445. }
  446. .col-narrow .bianmin-con {
  447. margin-left: -10px;
  448. height: 240px;
  449. }
  450. .col-narrow .bianmin-con li {
  451. float: left;
  452. width: 30%;
  453. height: 70px;
  454. margin-left: 10px;
  455. background: aqua;
  456. margin-top: 10px;
  457. }
  458. .col-narrow .bianmin-con li a,
  459. .col-narrow .bianmin-con li a img {
  460. display: block;
  461. width: 100%;
  462. height: 100%;
  463. }
  464. .col-narrow .bianmin-con li.seven,
  465. .col-narrow .bianmin-con li.four {
  466. width: 63%;
  467. }
  468. .col-narrow .sjtj-con {
  469. border: 1px solid #707070;
  470. text-align: center;
  471. font-size: 16px;
  472. border-radius: 5px;
  473. overflow: hidden;
  474. margin-top: 10px;
  475. padding-bottom: 15px;
  476. }
  477. .col-narrow .sjtj-con .sjtj-title {
  478. background: #ac2e3b;
  479. color: #fff;
  480. height: 45px;
  481. line-height: 45px;
  482. }
  483. .col-narrow .sjtj-con ul li {
  484. width: 50%;
  485. float: left;
  486. margin-top: 25px;
  487. }
  488. .box-01 .box-title-name {
  489. float: left;
  490. font-family: "Microsoft Yahei";
  491. line-height: 1em;
  492. height: 2em;
  493. padding-left: 10px;
  494. border-left: 7px solid #00a1cb;
  495. }
  496. .col-narrow .box-01.gray-bg .box-title .right-title {
  497. border-left: 0;
  498. color: rgb(22, 100, 162);
  499. }
  500. .col-narrow .box-01.gray-bg .box-title .box-title-name,
  501. .col-narrow .box-01.gray-bg .box-title .box-title-more a {
  502. /*color: #000;*/
  503. }
  504. .box-01.red-decoration .main-content {
  505. padding: 0px 30px 0px 20px;
  506. color: #333;
  507. font-size: .875em;
  508. border: 1px solid #d8d8d8;
  509. }
  510. .box-01.red-decoration .main-content .content-title {
  511. text-align: center;
  512. color: #000000;
  513. font-size: 20px;
  514. font-family: "宋体", "黑体", "新宋体";
  515. font-weight: bold;
  516. margin: 20px auto;
  517. }
  518. .box-01.red-decoration .main-content .gary-line {
  519. border-bottom: solid 1px #ddd;
  520. margin: 10px 36px;
  521. }
  522. .box-01.red-decoration .main-content .content-info {
  523. text-align: center;
  524. font-size: 12px;
  525. border: #dcdcdc dashed 1px;
  526. border-width: 0 0 1px 0;
  527. padding-bottom: 15px;
  528. }
  529. .box-01.red-decoration .main-content .content-text {
  530. margin: 15px 32px;
  531. line-height: 30px;
  532. }
  533. .box-01 .box-title-more {
  534. float: right;
  535. text-align: right;
  536. color: #999999;
  537. font-size: .75em;
  538. line-height: 1.34em;
  539. }
  540. .box-01 .box-title-more a {
  541. color: #333;
  542. }
  543. .box-01 .box-title-more a:hover {
  544. color: #ac2e3b;
  545. text-decoration: none;
  546. }
  547. ul.news-list.gray-line>li {
  548. height: 50px;
  549. border-bottom: 1px dashed #e0e0e0;
  550. padding-right: 20px;
  551. }
  552. ul.news-list.gray-line>li .news-title {
  553. height: 100%;
  554. }
  555. ul.news-list.gray-line>li:prev-child {
  556. border: none;
  557. padding-top: 10px;
  558. }
  559. ul.news-list.gray-line>li:after {
  560. content: "";
  561. display: block;
  562. clear: both;
  563. height: 0;
  564. }
  565. ul.news-list.gray-line .news-pic img {
  566. width: 120px;
  567. height: 90px;
  568. display: block;
  569. }
  570. ul.news-list.gray-line .news-title>h1 {
  571. margin: 0;
  572. padding: 0;
  573. font-weight: normal;
  574. color: #ea544a;
  575. font-size: .875em;
  576. line-height: 50px;
  577. white-space: nowrap;
  578. overflow: hidden;
  579. text-overflow: ellipsis;
  580. float: left;
  581. width: 55%;
  582. }
  583. ul.news-list.gray-line .news-title>h1>a {
  584. display: block;
  585. width: 100%;
  586. color: #666;
  587. white-space: nowrap;
  588. overflow: hidden;
  589. text-overflow: ellipsis;
  590. }
  591. ul.news-list.gray-line .news-title:hover h1>a {
  592. color: rgb(22, 100, 162);
  593. /*text-decoration: underline;*/
  594. }
  595. ul.news-list.gray-line .news-title>p {
  596. margin: 0;
  597. padding: 0;
  598. color: #999999;
  599. font-size: .75em;
  600. line-height: 2.4em;
  601. white-space: nowrap;
  602. overflow: hidden;
  603. text-overflow: ellipsis;
  604. }
  605. ul.news-list.gray-line .news-title>em {
  606. display: block;
  607. font-style: normal;
  608. font-family: Verdana;
  609. font-size: .75em;
  610. line-height: 50px;
  611. color: #666666;
  612. float: right;
  613. }
  614. .lm-table {
  615. table-layout: fixed;
  616. width: 100%;
  617. font-size: .75em;
  618. padding-bottom: 11px;
  619. }
  620. .lm-table td {
  621. border-bottom: 1px solid #f6f6f6;
  622. height: 48px;
  623. line-height: 48px;
  624. padding: 0 15px;
  625. text-align: center;
  626. font-size: 13px;
  627. }
  628. .lm-table .lm-title td {
  629. background-color: #f2f2f2;
  630. font-family: "Microsoft Yahei";
  631. color: #1a1a1a;
  632. font-size: 1.17em;
  633. height: 40px;
  634. line-height: 40px;
  635. }
  636. .lm-table .last td {
  637. border: none;
  638. }
  639. .lm-table .red {
  640. color: #f18c86;
  641. }
  642. .lm-table .date {
  643. color: #8c8c8c;
  644. font-family: Verdana;
  645. }
  646. .lm-table .organizer {
  647. color: #666666;
  648. white-space: nowrap;
  649. overflow: hidden;
  650. text-overflow: ellipsis;
  651. }
  652. .lm-table .content a {
  653. font-size: 13px;
  654. display: block;
  655. white-space: nowrap;
  656. overflow: hidden;
  657. text-overflow: ellipsis;
  658. color: #3f3f3f;
  659. }
  660. .lm-table .content a:hover {
  661. color: #c44542;
  662. }
  663. ul.news-list.news-r-red>li {
  664. border-bottom: 1px dashed #ccc;
  665. background-color: #F6F6F6;
  666. height: 50px;
  667. }
  668. ul.news-list.news-r-red>li>.m-across {
  669. padding: 0px 20px 0px;
  670. height: 100%;
  671. }
  672. ul.news-list.news-r-red>li>.m-across:hover {
  673. /* border-right: 2px solid #ff5256;*/
  674. cursor: pointer;
  675. }
  676. ul.news-list.news-r-red>li.odd {
  677. /*background-color: #f6f6f6;*/
  678. }
  679. ul.news-list.news-r-red>li>.m-across>a {
  680. display: block;
  681. font-size: .875em;
  682. line-height: 44px;
  683. color: #666;
  684. white-space: nowrap;
  685. overflow: hidden;
  686. text-overflow: ellipsis;
  687. float: left;
  688. width: 50%;
  689. height: 100%;
  690. line-height: 50px;
  691. }
  692. ul.news-list.news-r-red>li>.m-across:hover a {
  693. color: #c44542;
  694. }
  695. ul.news-list.news-r-red>li>.m-across>em {
  696. display: block;
  697. font-style: normal;
  698. font-family: Verdana;
  699. font-size: .75em;
  700. height: 100%;
  701. line-height: 50px;
  702. color: #666;
  703. float: right;
  704. }
  705. .count {
  706. font-family: "Microsoft Yahei";
  707. color: white;
  708. }
  709. .count .all-count {
  710. background-color: #F6F6F6;
  711. }
  712. .all-count ul.acceptance {
  713. font-size: .875em;
  714. color: #666666;
  715. }
  716. .today-count ul.acceptance {
  717. font-size: 14px;
  718. color: #666;
  719. }
  720. ul.acceptance li .pl-30 {
  721. height: 100%;
  722. line-height: 50px;
  723. }
  724. ul.acceptance li {
  725. width: 100%;
  726. height: 50px;
  727. text-align: center;
  728. }
  729. .all-count .dcon {
  730. text-indent: 30px;
  731. color: #262626;
  732. font-size: 14px;
  733. padding: 20px 10px 10px 10px;
  734. line-height: 25px;
  735. }
  736. .all-count .dcan {
  737. width: 75%;
  738. margin: 0 auto;
  739. padding: 10px 0;
  740. }
  741. .all-count .dcan a {
  742. display: block;
  743. height: 30px;
  744. width: 85px;
  745. text-align: center;
  746. line-height: 30px;
  747. background: #03b2b7;
  748. border-radius: 20px;
  749. color: #fff;
  750. font-size: 15px;
  751. }
  752. .all-count .dcan a.dc {
  753. float: left;
  754. }
  755. .all-count .dcan a.ck {
  756. float: right;
  757. }
  758. ul.acceptance>li>img {
  759. display: block;
  760. float: left;
  761. margin-top: 3px;
  762. }
  763. .count .number {
  764. margin: 0 15px;
  765. }
  766. .box-content .fw-guide {
  767. margin-left: -20px;
  768. }
  769. .box-content .fw-guide li {
  770. float: left;
  771. width: 22%;
  772. height: 70px;
  773. margin-left: 20px;
  774. margin-top: 25px;
  775. border-radius: 3px;
  776. }
  777. .box-content .fw-guide li a {
  778. display: block;
  779. width: 100%;
  780. height: 100%;
  781. text-align: center;
  782. color: #fff;
  783. font-size: 14px;
  784. box-sizing: border-box;
  785. }
  786. .box-content .fw-guide li a i {
  787. display: block;
  788. height: 32px;
  789. width: 32px;
  790. margin: 0 auto;
  791. margin-top: 8px;
  792. }
  793. .box-content .fw-guide li.serv1 {
  794. background: #4b83b4;
  795. }
  796. .box-content .fw-guide li.serv1 a i {
  797. background: url("../img/sky .png") no-repeat 0 0;
  798. }
  799. .box-content .fw-guide li.serv2 {
  800. background: #cdc27c;
  801. }
  802. .box-content .fw-guide li.serv2 a i {
  803. background: url(../img/email.png) no-repeat 0 3px;
  804. }
  805. .box-content .fw-guide li.serv3 {
  806. background: #cdb49e;
  807. }
  808. .box-content .fw-guide li.serv3 a i {
  809. background: url(../img/chaxun.png) no-repeat 0 0;
  810. }
  811. .box-content .fw-guide li.serv4 {
  812. background: #9cc0e0;
  813. }
  814. .box-content .fw-guide li.serv4 a i {
  815. background: url(../img/tousu.png) no-repeat 0 0;
  816. }
  817. .box-content .fw-guide li.serv5 {
  818. background: #d0c6de;
  819. }
  820. .box-content .fw-guide li.serv5 a i {
  821. background: url(../img/churu.png) no-repeat 0 0;
  822. }
  823. .box-content .fw-guide li.serv6 {
  824. background: #88bcb7;
  825. }
  826. .box-content .fw-guide li.serv6 a i {
  827. width: 34px;
  828. height: 34px;
  829. background: url(../img/trade.png) no-repeat 0 0;
  830. }
  831. .box-content .fw-guide li.serv7 {
  832. background: #9dadc6;
  833. }
  834. .box-content .fw-guide li.serv7 a i {
  835. background: url(../img/cost.png) no-repeat 0 0;
  836. }
  837. .box-content .fw-guide li.serv8 {
  838. background: #e48b93;
  839. }
  840. .box-content .fw-guide li.serv8 a i {
  841. background: url(../img/pulic.png) no-repeat 0 0;
  842. }
  843. .footer {
  844. background: #a22100;
  845. font-size: 16px;
  846. color: #fff;
  847. padding: 30px 0;
  848. padding-bottom:0px;
  849. }
  850. .footer .footer-con {
  851. height: 100%;
  852. width: 1000px;
  853. margin: 0 auto;
  854. }
  855. .footerbox {
  856. text-align: center;
  857. line-height: 20px;
  858. }
  859. .footerbox a{
  860. color: #fff;
  861. }
  862. .box-01 .sqsl_detail {
  863. position: relative;
  864. /*padding: 10px 36px 36px;*/
  865. }
  866. .box-01 .sqsl_detail table {
  867. width: 100%;
  868. border-collapse: collapse;
  869. }
  870. .box-01 .sqsl_detail table th {
  871. width: 15%;
  872. text-align: center;
  873. background: rgb(240, 244, 247);
  874. padding: 10px 15px;
  875. font-weight: normal;
  876. border: 1px solid #e6e6e6;
  877. font-size: 14px;
  878. color: #000;
  879. }
  880. .box-01 .sqsl_detail table td {
  881. padding: 5px 15px;
  882. font-size: 14px;
  883. line-height: 30px;
  884. border: 1px solid #e6e6e6;
  885. color: #666;
  886. }
  887. .accessible-wrap {
  888. display: none;
  889. -moz-user-select: none;
  890. -webkit-user-select: none;
  891. -ms-user-select: none;
  892. -khtml-user-select: none;
  893. user-select: none;
  894. }
  895. .accessible-body {
  896. position: fixed;
  897. z-index: 10;
  898. width: 100%;
  899. min-width: 1000px;
  900. text-align: right;
  901. padding: 10px 0;
  902. font-size: .875em;
  903. background-color: white !important;
  904. border-bottom: 1px solid #ddd;
  905. }
  906. .accessible-body-fixed {
  907. height: 47px;
  908. }
  909. .accessible-body span {
  910. display: inline-block;
  911. padding: 0 10px;
  912. margin-left: 6px;
  913. border: 1px solid #ccc;
  914. border-radius: 5px;
  915. background-color: #f3f3f3 !important;
  916. line-height: 24px;
  917. color: #444 !important;
  918. cursor: pointer;
  919. }
  920. .contrast,
  921. .contrast * {
  922. background: black !important;
  923. color: white !important;
  924. }
  925. .pagination {
  926. display: block;
  927. width: 100%;
  928. margin: 5px auto;
  929. }
  930. .pagination-detail{
  931. margin-top: 8px;
  932. }
  933. .fixed-table-pagination {
  934. font-size: 14px;
  935. }
  936. .fixed-table-pagination div.pagination {
  937. width: 55%;
  938. }
  939. .JumpPage {
  940. padding: 6px 0;
  941. height: 18px;
  942. }
  943. .ban-bottom {
  944. margin: 25px 0;
  945. }
  946. .ban-bottom li {
  947. float: left;
  948. width: 16.6%;
  949. height: 112px;
  950. box-sizing: border-box;
  951. padding: 10px;
  952. border-right: 1px dashed #ccc;
  953. }
  954. .firli {
  955. text-align: center;
  956. color: #ac2e3b;
  957. font-size: 20px;
  958. }
  959. .firli b {
  960. font-size: 45px;
  961. }
  962. .ban-bottom li a {
  963. display: block;
  964. width: 100%;
  965. text-align: center;
  966. }
  967. .ban-bottom li a .bbtop {
  968. margin: 8px 0;
  969. }
  970. .ban-bottom li a p {
  971. font-size: 14px;
  972. color: #666666;
  973. }
  974. .ban-bottom li a i.icon {
  975. display: inline-block;
  976. background: url(../img/icon.png) no-repeat;
  977. background-size: 25px;
  978. height: 25px;
  979. width: 25px;
  980. vertical-align: middle;
  981. margin-right: 5px;
  982. }
  983. .ban-bottom li a i.icon1 {
  984. background-position: 0 0;
  985. }
  986. .ban-bottom li a i.icon2 {
  987. background-position: 0 -25px;
  988. height: 23px;
  989. }
  990. .ban-bottom li a i.icon3 {
  991. background-position: 0 -47px;
  992. }
  993. .ban-bottom li a i.icon4 {
  994. background-position: 0 -72px;
  995. height: 21px
  996. }
  997. .ban-bottom li a i.icon5 {
  998. background-position: 0 -93px;
  999. }
  1000. .chaxun-con {
  1001. padding: 20px;
  1002. }
  1003. .box-title .chaxun>div {
  1004. float: left;
  1005. }
  1006. .box-title .chaxun {
  1007. float: right;
  1008. }
  1009. .box-title .chaxun>div>p {
  1010. display: inline-block;
  1011. width: 150px;
  1012. height: 25px;
  1013. border: 1px solid #ccc;
  1014. position: relative;
  1015. margin-right: 5px;
  1016. }
  1017. .box-title .chaxun>div>p>input {
  1018. border: 0;
  1019. width: 90%;
  1020. height: 23px;
  1021. outline: none;
  1022. padding-left: 5px;
  1023. }
  1024. .box-title .chaxun>div.zonghe {
  1025. margin-left: 35px;
  1026. cursor: pointer;
  1027. line-height: 26px;
  1028. }
  1029. .box-title .chaxun>div.zonghe .zhank {
  1030. display: inline-block;
  1031. background: url(../img/zhank.png);
  1032. height: 9px;
  1033. width: 15px;
  1034. margin-left: 5px;
  1035. animation: bounce .5s ease-in-out infinite;
  1036. }
  1037. @keyframes bounce {
  1038. 0% {
  1039. -webkit-transform: translate3d(0, 0px, 0);
  1040. transform: translate3d(0, 0px, 0);
  1041. }
  1042. 50% {
  1043. -webkit-transform: translate3d(0, -3px, 0);
  1044. transform: translate3d(0, -3px, 0);
  1045. }
  1046. 100% {
  1047. -webkit-transform: translate3d(0, 0px, 0);
  1048. transform: translate3d(0, 0px, 0);
  1049. }
  1050. }
  1051. .cxr * {
  1052. box-sizing: content-box!important;
  1053. }
  1054. .cxr {
  1055. height: auto;
  1056. }
  1057. .cx-title {
  1058. width: 100%;
  1059. height: 30px;
  1060. text-align: center;
  1061. line-height: 30px;
  1062. background: #02b2b7;
  1063. color: #fff;
  1064. margin-bottom: 20px;
  1065. }
  1066. .cxr p {
  1067. font-size: 15px;
  1068. }
  1069. .cxr .gjcx-row1 p,
  1070. .cxr .gjcx-row2 p {
  1071. float: left;
  1072. width: 33.3%;
  1073. text-align: center;
  1074. margin-bottom: 15px;
  1075. }
  1076. .cxr .gjcx-row1 input {
  1077. padding-left: 10px;
  1078. width: 143px;
  1079. }
  1080. .cxr .gjcx-row1 input.laydate-icon {
  1081. padding-right: 0;
  1082. }
  1083. .cxr .gjcx-row2 select {
  1084. height: 25px;
  1085. line-height: 25px;
  1086. outline: none;
  1087. padding-left: 30px;
  1088. width: 125px;
  1089. }
  1090. .gjcx-row3 {
  1091. width: 30%;
  1092. margin: 0 auto;
  1093. }
  1094. .gjcx-row3 .psw {
  1095. outline: none;
  1096. height: 27px;
  1097. padding-left: 10px;
  1098. font-size: 15px;
  1099. cursor: pointer;
  1100. width: 140px;
  1101. border-radius: 5px;
  1102. background-color: #337ab7;
  1103. border-color: #337ab7;
  1104. color: #fff;
  1105. margin-top: 10px;
  1106. border: 0;
  1107. }
  1108. .gjcx-row3 p span {
  1109. display: inline-block;
  1110. width: 300px;
  1111. height: 25px;
  1112. border: 1px solid #ccc;
  1113. position: relative;
  1114. }
  1115. .gjcx-row3 p span input {
  1116. height: 90%;
  1117. border: 0;
  1118. width: 90%;
  1119. }
  1120. .gjcx-row3 p span a {
  1121. display: block;
  1122. height: 25px;
  1123. width: 25px;
  1124. position: absolute;
  1125. right: 2px;
  1126. top: 0px;
  1127. background: url(../img/search.png) center center no-repeat;
  1128. background-position: center center;
  1129. }
  1130. .diaocha {
  1131. color: #4c4c4c;
  1132. font-family: "microsoft yahei";
  1133. padding: 30px 35px;
  1134. }
  1135. .diaocha .diaocha-title {
  1136. font-size: 24px;
  1137. text-align: center;
  1138. /*margin-top: 30px;*/
  1139. }
  1140. .dctle-con {
  1141. text-indent: 32px;
  1142. font-size: 16px;
  1143. padding: 30px 0;
  1144. }
  1145. .diaocha-con h2 {
  1146. font-weight: normal;
  1147. font-size: 16px;
  1148. }
  1149. .diaocha-con .radio,
  1150. .diaocha-con .checkbox {
  1151. font-size: 14px;
  1152. padding-left: 30px;
  1153. }
  1154. .diaocha-con .checkbox {
  1155. width: 22.5%;
  1156. float: left;
  1157. margin-top: 0;
  1158. }
  1159. .checkbox+.checkbox {
  1160. margin-top: 0px;
  1161. }
  1162. .diaocha hr {
  1163. border-top: 4px solid #ccc;
  1164. margin-bottom: 40px;
  1165. }
  1166. .tj-box {
  1167. width: 30%;
  1168. margin: 0 auto;
  1169. }
  1170. .tj-box a {
  1171. display: block;
  1172. height: 35px;
  1173. width: 100px;
  1174. text-align: center;
  1175. line-height: 35px;
  1176. background: #03b2b7;
  1177. color: #fff;
  1178. border-radius: 3px;
  1179. }
  1180. .tj-box .dctj {
  1181. float: left;
  1182. }
  1183. .tj-box .dcck {
  1184. float: right;
  1185. }
  1186. .result-con {
  1187. padding-left: 30px;
  1188. }
  1189. .result-con>div {
  1190. float: left;
  1191. font-size: 14px;
  1192. }
  1193. .result-con .releft {
  1194. width: 30%;
  1195. }
  1196. .result-con .remiddle {
  1197. width: 40%;
  1198. }
  1199. .result-con .reright {
  1200. width: 10%;
  1201. margin-left: 20px;
  1202. }
  1203. .progress {
  1204. height: 16px;
  1205. }
  1206. .progress-bar-success {
  1207. background-color: #97c44f;
  1208. }
  1209. .progress-bar-warning {
  1210. background-color: #f2d561;
  1211. }
  1212. .progress-bar-zise {
  1213. background-color: #c278a9;
  1214. }
  1215. .progress-bar-cheng {
  1216. background-color: #fc9765;
  1217. }
  1218. .progress-bar-bohe {
  1219. background-color: #87ebf1;
  1220. }
  1221. .progress-bar-fen {
  1222. background-color: #ffe6de;
  1223. }
  1224. .progress-bar-dousha {
  1225. background-color: #ef9c94;
  1226. }
  1227. .progress-bar-qing {
  1228. background-color: #deffde;
  1229. }
  1230. .lv {
  1231. color: #97c44f;
  1232. }
  1233. .huang {
  1234. color: #f2d561;
  1235. }
  1236. .hong {
  1237. color: #d9534f;
  1238. }
  1239. .lan {
  1240. color: #5bc0de;
  1241. }
  1242. .zise {
  1243. color: #c278a9;
  1244. }
  1245. .cheng {
  1246. color: #fc9765;
  1247. }
  1248. .bohe {
  1249. color: #87ebf1;
  1250. }
  1251. .fen {
  1252. color: #ffe6de;
  1253. }
  1254. .dousha {
  1255. color: #ef9c94;
  1256. }
  1257. .qing {
  1258. color: #deffde;
  1259. }
  1260. .return {
  1261. display: block;
  1262. height: 35px;
  1263. width: 100px;
  1264. text-align: center;
  1265. line-height: 35px;
  1266. background: #03b2b7;
  1267. color: #fff;
  1268. border-radius: 3px;
  1269. margin: 0 auto;
  1270. }
  1271. .nextGo {
  1272. display: block;
  1273. line-height: 35px;
  1274. width: 100px;
  1275. text-align: center;
  1276. line-height: 35px;
  1277. background: #00a1cb;
  1278. color: #fff;
  1279. border-radius: 3px;
  1280. margin: 0 auto;
  1281. outline: none;
  1282. border-color: #00a1cb;
  1283. }
  1284. .personal .table {
  1285. width: 90%;
  1286. margin: 20px auto;
  1287. }
  1288. .personal .table tr td {
  1289. text-align: center;
  1290. }
  1291. .personal .table tr td img {
  1292. margin-right: 5px;
  1293. }
  1294. .personal .table tr td input[type=text] {
  1295. width: 90%;
  1296. height: 20px;
  1297. border: 0;
  1298. outline: none;
  1299. text-align: center;
  1300. }
  1301. .personal .table tr td:first-child {
  1302. text-align: right;
  1303. width: 20%;
  1304. }
  1305. .personal .table tr td select {
  1306. vertical-align: middle;
  1307. font-size: 14px;
  1308. outline: none;
  1309. width: 100px;
  1310. height: 30px;
  1311. padding-left: 5px;
  1312. }
  1313. .personal .table tr td button {
  1314. color: #fff;
  1315. background: #ac2e3b;
  1316. border: 0;
  1317. padding: 5px 10px;
  1318. border-radius: 3px;
  1319. margin: 10px auto;
  1320. display: block;
  1321. }
  1322. .Input_ {
  1323. background-color: #FFF;
  1324. background-image: none;
  1325. border: 1px solid #ccc;
  1326. border-radius: 1px;
  1327. color: inherit;
  1328. padding: 6px 12px;
  1329. }
  1330. .sys-title {
  1331. color: #990000;
  1332. font-size: 40px;
  1333. font-family: "宋体";
  1334. height: 140px;
  1335. line-height: 140px;
  1336. padding-left: 50px;
  1337. }
  1338. .hr {
  1339. border-top: 1px solid #d9d9d9;
  1340. }
  1341. .sys-con img {
  1342. display: block;
  1343. height: 295px;
  1344. width: 340px;
  1345. margin: 40px auto;
  1346. }
  1347. .sys-word .weihu,
  1348. .sys-word .sys-time {
  1349. color: #b10808;
  1350. font-size: 36px;
  1351. text-align: center;
  1352. }
  1353. .sys-word .sys-time {
  1354. font-size: 25px;
  1355. }
  1356. .sys-word .sys-xuan {
  1357. text-align: right;
  1358. width: 50%;
  1359. margin: 0 auto;
  1360. color: #b10808;
  1361. font-size: 24px;
  1362. }
  1363. ._imgbox img {
  1364. width: 168px;
  1365. height: 110px;
  1366. }
  1367. .m-r a {
  1368. display: block;
  1369. width: 100%;
  1370. color: #666;
  1371. white-space: nowrap;
  1372. overflow: hidden;
  1373. text-overflow: ellipsis;
  1374. cursor: pointer;
  1375. }
  1376. .m-r .new_imga{
  1377. height: 20px;
  1378. line-height: 20px;
  1379. text-align: center;
  1380. margin-top: 5px;
  1381. margin-bottom: 10px;
  1382. }
  1383. /*头部*/
  1384. .topbar {
  1385. padding: 5px 0;
  1386. background-color: #e2e2e2;
  1387. }
  1388. .container {
  1389. width: 1246px;
  1390. font-size: 14px;
  1391. }
  1392. .Right_f li {
  1393. display: inline-block;
  1394. padding-left: 5px;
  1395. padding-right: 5px;
  1396. }
  1397. .Right_f img {
  1398. vertical-align: middle;
  1399. }
  1400. .Right_f .weibo {
  1401. vertical-align: middle;
  1402. margin-left: -6px;
  1403. line-height: 18px;
  1404. width: 22px;
  1405. height: 18px;
  1406. display: inline-block;
  1407. background: url(../img/sidebar-icons.jpg) 0 -2px no-repeat;
  1408. }
  1409. .container ul li a {
  1410. color: #5d5d5d;
  1411. }
  1412. .container ul li a:hover {
  1413. color: #00a1cb;
  1414. }
  1415. .headbar {
  1416. height: 120px;
  1417. background-color: #fff;
  1418. border-bottom: 1px solid #ddd;
  1419. }
  1420. .brand {
  1421. margin-top: 20px;
  1422. width: 50%;
  1423. margin-left: 30px;
  1424. }
  1425. .headbar .Right_nav{
  1426. margin-top: 34px;
  1427. width: 43%;
  1428. }
  1429. .Right_nav li{
  1430. display: inline-block;
  1431. height: 25px;
  1432. padding-left: 30px;
  1433. padding-right: 30px;
  1434. line-height: 25px;
  1435. position: relative;
  1436. }
  1437. .Right_nav li::after{
  1438. content: "";
  1439. position: absolute;
  1440. top: 0px;
  1441. height: 50px;
  1442. width: 1px;
  1443. right: 0;
  1444. background-color: #7ec5d7;
  1445. }
  1446. .Right_nav li:nth-of-type(5):after {
  1447. width: 0;
  1448. }
  1449. .container .Right_nav li a{
  1450. color: #8a8686;
  1451. width: 36px;
  1452. font-size: 16px;
  1453. display: inline-block;
  1454. }
  1455. .container .Right_nav li a:hover{
  1456. color: #00a1cb;
  1457. }
  1458. .container .Right_nav li a.active{
  1459. color: #00a1cb;
  1460. }
  1461. .nav-justified {
  1462. width: 100%;
  1463. }
  1464. .nav-justified>li>a {
  1465. display: block;
  1466. font-size: 18px;
  1467. color: #fff;
  1468. /*font-weight: bold;
  1469. border-left: 1px solid #00b5e4;*/
  1470. padding: 15px 0;
  1471. }
  1472. #navcon_box li{
  1473. width: 14.28571428571429%;
  1474. float: left;
  1475. }
  1476. #navcon_box li a{
  1477. display: block;
  1478. font-size: 18px;
  1479. color: #fff;
  1480. /*font-weight: bold;
  1481. border-left: 1px solid #00b5e4;*/
  1482. padding: 15px 0;
  1483. text-align: center;
  1484. position: relative;
  1485. }
  1486. #navcon_box li a:before{
  1487. content: "";
  1488. position: absolute;
  1489. width: 1px;
  1490. height: 25px;
  1491. background: #c58d8f;
  1492. right: 0;
  1493. top: 14px;
  1494. }
  1495. #navcon_box .navLast a:before{
  1496. width: 0;
  1497. height: 0;
  1498. }
  1499. .dongTaiTitle{
  1500. font-size: 26px;
  1501. color: #f5821b;
  1502. font-weight: 500;
  1503. width: 95%;
  1504. text-align: center;
  1505. margin: 15px auto;
  1506. white-space: nowrap;
  1507. overflow: hidden;
  1508. text-overflow: ellipsis;
  1509. font-family: "黑体";
  1510. }
  1511. .new_listBox{
  1512. font-family: "仿宋";
  1513. color: #757575;
  1514. font-size: 19px;
  1515. text-indent: 38px;
  1516. position: relative;
  1517. overflow: hidden;
  1518. line-height: 20px;
  1519. max-height: 40px;
  1520. }
  1521. .otherTitle{
  1522. background: #cc0014;
  1523. color: #fff;
  1524. font-size: 24px;
  1525. padding: 13px 0 9px 18px;
  1526. border-top-left-radius: 10px;
  1527. border-top-right-radius: 10px;
  1528. }
  1529. .otherCon{
  1530. background: #f4e9e7;
  1531. padding: 23px 0 43px 0;
  1532. }
  1533. .otherCon div p{
  1534. display: inline-block;
  1535. text-align: center;
  1536. width: 30%;
  1537. }
  1538. .otherCon div.secondDiv{
  1539. margin-top: 40px;
  1540. padding-left: 20%;
  1541. }
  1542. .otherCon div p img{
  1543. display: block;
  1544. margin: 0 auto 15px auto;
  1545. }
  1546. .carouselTitle{
  1547. background: #CC0014;
  1548. padding: 11px 0 11px 15px;
  1549. border-top-left-radius: 15px;
  1550. border-top-right-radius: 15px;
  1551. font-size: 24px;
  1552. color: #fff;
  1553. }
  1554. .carouselCon{
  1555. height: 200px;
  1556. border: 1px solid #ea99c8;
  1557. border-top: 0;
  1558. margin-bottom: 20px;
  1559. padding-top: 25px;
  1560. }
  1561. .GZ li {
  1562. list-style: none;
  1563. margin-bottom: 8px;
  1564. }
  1565. .GZ li span{
  1566. display: inline-block;
  1567. width: 7px;
  1568. height: 7px;
  1569. border-radius: 10px;
  1570. background: #ff7b00;
  1571. margin-right: 7px;
  1572. }
  1573. /*.MQ li a{
  1574. color: #86898a;
  1575. }*/
  1576. .MQ li{
  1577. padding: 6px 0;
  1578. }
  1579. .MQ li.active {
  1580. background: #eeeeee!important;
  1581. }
  1582. .ms_new_listBox{
  1583. border-top: 3px solid #cd1c1e;
  1584. }
  1585. .TG li{
  1586. padding: 2px 0;
  1587. }
  1588. .searchTitle{
  1589. width: 100%;
  1590. background: #f0ece1;
  1591. color: #a74f4f;
  1592. font-size: 24px;
  1593. padding: 6px 0;
  1594. text-align: center;
  1595. border-top-left-radius: 10px;
  1596. border-top-right-radius: 10px;
  1597. }
  1598. .searchTitle i{
  1599. display: inline-block;
  1600. height: 26px;
  1601. width: 26px;
  1602. background: url(../img/searchIcon.png) no-repeat center;
  1603. vertical-align: middle;
  1604. }
  1605. .searchCon{
  1606. background: #f3e8cf;
  1607. padding: 20px 0;
  1608. }
  1609. .searchCon p {
  1610. padding: 15px 0;
  1611. text-align: center;
  1612. }
  1613. .searchCon input{
  1614. width: 80%;
  1615. margin: 0 auto;
  1616. box-shadow: -1px -4px 8px #968f8f;
  1617. }
  1618. .searchCon p button{
  1619. background: #ff9456;
  1620. border: 0;
  1621. height: 54px;
  1622. width: 169px;
  1623. font-size: 22px;
  1624. }
  1625. .nav-justified>li:first-child>a {
  1626. border-left: 0;
  1627. }
  1628. .nav>li>a:focus,
  1629. .nav>li>a:hover {
  1630. text-decoration: none;
  1631. background-color: #c12729;
  1632. }
  1633. .btn-primary {
  1634. color: #ffffff;
  1635. background-color: #00a1cb;
  1636. border-color: transparent;
  1637. }
  1638. .btn {
  1639. display: inline-block;
  1640. margin-bottom: 0;
  1641. font-weight: normal;
  1642. text-align: center;
  1643. vertical-align: middle;
  1644. touch-action: manipulation;
  1645. cursor: pointer;
  1646. background-image: none;
  1647. border: 1px solid transparent;
  1648. white-space: nowrap;
  1649. padding: 6px 25px;
  1650. font-size: 14px;
  1651. line-height: 1.42857143;
  1652. border-radius: 0;
  1653. }
  1654. .bg-default {
  1655. background-color: #f5f5f5;
  1656. text-align: right;
  1657. }
  1658. #searchx {
  1659. outline: none;
  1660. box-shadow: none !important;
  1661. background-color: transparent !important;
  1662. padding: 6px 12px;
  1663. font-size: 14px;
  1664. line-height: 1.42857143;
  1665. color: #777777;
  1666. background-color: #ffffff;
  1667. background-image: none;
  1668. border: 1px solid #fff;
  1669. border-radius: 0;
  1670. -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  1671. box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  1672. -webkit-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
  1673. -o-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
  1674. transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s
  1675. }
  1676. .input-group-addon {
  1677. position: relative;
  1678. right: -12px;
  1679. border: none!important;
  1680. background: #f5f5f5!important;
  1681. padding: 6px 12px;
  1682. font-size: 14px;
  1683. font-weight: normal;
  1684. line-height: 1;
  1685. color: #777777;
  1686. text-align: center;
  1687. background-color: #ffffff;
  1688. border: 1px solid #cccccc;
  1689. border-radius: 0;
  1690. }
  1691. ::-webkit-input-placeholder {
  1692. /* WebKit browsers */
  1693. color: #ccc!important;
  1694. }
  1695. :-moz-placeholder {
  1696. /* Mozilla Firefox 4 to 18 */
  1697. color: #ccc!important;
  1698. opacity: 1;
  1699. }
  1700. ::-moz-placeholder {
  1701. /* Mozilla Firefox 19+ */
  1702. color: #ccc!important;
  1703. opacity: 1;
  1704. }
  1705. :-ms-input-placeholder {
  1706. /* Internet Explorer 10+ */
  1707. color: #ccc!important;
  1708. }
  1709. .seach_img {
  1710. background: url(../img/search.png)no-repeat;
  1711. width: 20px;
  1712. height: 20px;
  1713. display: block;
  1714. }
  1715. .actives {
  1716. /*background: #00B5e4;*/
  1717. background: #c1282a;
  1718. }
  1719. .imgs a {
  1720. color: #000000!important;
  1721. display: block;
  1722. }
  1723. .imgs a:hover {
  1724. color: #00b5e4!important;
  1725. }
  1726. ._imgbox img {
  1727. width: 168px;
  1728. height: 110px;
  1729. }
  1730. .Sl {
  1731. text-align: center;
  1732. padding: 10px;
  1733. }
  1734. .Sl li {
  1735. width: 50%;
  1736. float: left;
  1737. }
  1738. .btn {
  1739. text-align: center;
  1740. background: #00b5e4;
  1741. color: #fff;
  1742. border-radius: 3px;
  1743. margin: 0 auto;
  1744. outline: none;
  1745. border-color: #00b5e4;
  1746. }
  1747. .box-show {
  1748. cursor: pointer;
  1749. opacity: 0.5;
  1750. }
  1751. .new_imga:hover {
  1752. color: #00b5e4!important;
  1753. }
  1754. /*分界图片1*/
  1755. .img-boundary{
  1756. margin-bottom: 10px;
  1757. margin-left: 0;
  1758. padding-left:0;
  1759. padding-right: 0;
  1760. }
  1761. .img-boundary li{
  1762. float: left;
  1763. width: 19%;
  1764. height: 60px;
  1765. margin-right: 1%;
  1766. }
  1767. .img-boundary li:nth-of-type(5){
  1768. margin-right: 0;
  1769. }
  1770. /*实时统计*/
  1771. .content_foot{
  1772. padding: 10px;
  1773. }
  1774. /*.left-statistics,
  1775. .right-statistics{
  1776. margin: 20px;
  1777. width: 40%;
  1778. }*/
  1779. .left-statistics{
  1780. position: relative;
  1781. width: 100%;
  1782. padding-left: 10px;
  1783. padding-top: 5px;
  1784. }
  1785. .left-statistics p,
  1786. .right-statistics p{
  1787. margin-bottom: 20px;
  1788. }
  1789. .left-statistics p:nth-of-type(1){
  1790. margin-bottom: 10px;
  1791. }
  1792. .left-statistics span,
  1793. .right-statistics span{
  1794. color: #626262;
  1795. font-size: 14px;
  1796. }
  1797. .left-statistics p span:nth-of-type(1),
  1798. .left-statistics p span:nth-of-type(4),
  1799. .right-statistics p span:nth-of-type(1){
  1800. color: #616161;
  1801. font-weight: bold;
  1802. font-size: 16px;
  1803. }
  1804. .left-statistics .CountBox .Count_title{
  1805. color: #616161;
  1806. font-weight: bold;
  1807. font-size: 16px;
  1808. }
  1809. .left-statistics .CountBox #jrtotalCount,.left-statistics .CountBox #totalCount,.left-statistics .CountBox #jrtotalCountJ{
  1810. color: #bd261f;
  1811. font-weight: bold;
  1812. font-size: 16px;
  1813. }
  1814. .left-statistics p span:nth-of-type(2),
  1815. .left-statistics p span:nth-of-type(5),
  1816. .right-statistics p span:nth-of-type(2){
  1817. color: #bd261f;
  1818. font-weight: bold;
  1819. font-size: 16px;
  1820. }
  1821. .statistics-content li{
  1822. float: left;
  1823. position: relative;
  1824. height: 40px;
  1825. margin-bottom: 10px;
  1826. width: 25%;
  1827. }
  1828. .statistics-content li span:nth-of-type(1){
  1829. padding-left: 24px;
  1830. padding-right: 10px;
  1831. }
  1832. .statistics-content li span.fspan{
  1833. padding-left: 24px;
  1834. padding-right: 10px;
  1835. }
  1836. .statistics-content li span.tspan{
  1837. position: absolute;
  1838. color: #049ad9;
  1839. font-weight: bold;
  1840. width: 94px;
  1841. display: inline-block;
  1842. text-align: center;
  1843. left: 0;
  1844. top: 24px;
  1845. }
  1846. .statistics-content li span:nth-of-type(2){
  1847. position: absolute;
  1848. color: #049ad9;
  1849. font-weight: bold;
  1850. width: 94px;
  1851. display: inline-block;
  1852. text-align: center;
  1853. left: 0;
  1854. top: 24px;
  1855. }
  1856. .left-statistics .statistics-content li .grayColor{
  1857. color: #b3b3b3;
  1858. }
  1859. .statistics-icon{
  1860. width: 22px;
  1861. height: 19px;
  1862. display: inline-block;
  1863. background: url(../img/sidebar-icons.jpg) no-repeat left top;
  1864. position: absolute;
  1865. top: 2px;
  1866. }
  1867. .statistics-icon-1{
  1868. background-position: -93px 0;
  1869. }
  1870. .statistics-icon-2{
  1871. height: 13px;
  1872. line-height: 13px;
  1873. background-position: -93px -17px;
  1874. }
  1875. .statistics-icon-3{
  1876. background-position: -93px -30px;
  1877. }
  1878. .statistics-icon-4{
  1879. height: 16px;
  1880. line-height: 16px;
  1881. background-position: -93px -47px;
  1882. }
  1883. .statistics-icon-5{
  1884. height: 16px;
  1885. line-height: 16px;
  1886. background-position: -92px -63px;
  1887. }
  1888. .statistics-icon-6{
  1889. background-position: -93px -79px;
  1890. }
  1891. .statistics-icon-7{
  1892. background-position: -93px -97px;
  1893. }
  1894. /*商丘简介*/
  1895. .introduction{
  1896. margin-bottom: 10px;
  1897. margin-left: 0;
  1898. padding-left:0;
  1899. padding-right: 0;
  1900. }
  1901. .introduction-left{
  1902. width: 26%;
  1903. padding-left: 10px;
  1904. margin-right: 15px;
  1905. margin-top: 30px;
  1906. }
  1907. .introduction-left span{
  1908. float: left;
  1909. width: 112px;
  1910. height: 42px;
  1911. text-align: center;
  1912. line-height: 42px;
  1913. font-size: 42px;
  1914. font-weight: bold;
  1915. text-indent: 0.5em;
  1916. color: #00a1cb;
  1917. }
  1918. .introduction-left p{
  1919. color: #626262;
  1920. line-height: 26px;
  1921. }
  1922. .introduction-left p:not(:nth-of-type(1)){
  1923. text-indent: 2em;
  1924. }
  1925. .introduction-right{
  1926. width: 70%;
  1927. }
  1928. .introduction-right ul{
  1929. font-size: 0;
  1930. }
  1931. .introduction-right li{
  1932. display: inline-block;
  1933. position: relative;
  1934. width: 33.333%;
  1935. }
  1936. .introduction-right li:nth-of-type(1){
  1937. background-color: #4dabdc;
  1938. }
  1939. .introduction-right li:nth-of-type(2){
  1940. background-color: #2acfdf;
  1941. }
  1942. .introduction-right li:nth-of-type(3){
  1943. background-color: #86af5d;
  1944. }
  1945. .introduction-right li span{
  1946. display: inline-block;
  1947. height: 52px;
  1948. line-height: 52px;
  1949. color: #fff;
  1950. font-size: 24px;
  1951. padding-left: 16px;
  1952. }
  1953. .introduction-right .statistics-icon{
  1954. width: 26px;
  1955. height: 30px;
  1956. right: 10px;
  1957. top: 10px;
  1958. background: url(../img/statistics-icon.png) left top no-repeat;
  1959. background-position: 0 -74px;
  1960. }
  1961. .introduction-right li img{
  1962. display: block;
  1963. width: 100%;
  1964. height: 324px;
  1965. }
  1966. .Content+hr{
  1967. margin-top: 0;
  1968. }
  1969. /*footerbar*/
  1970. .footerbar{
  1971. margin-bottom: 8px;
  1972. padding-right: 0;
  1973. padding-left: 0;
  1974. }
  1975. .footerbar ul{
  1976. width: 97%;
  1977. margin: 18px auto;
  1978. }
  1979. .footerbar dt{
  1980. font-weight: normal;
  1981. }
  1982. .footerbar dt,
  1983. .footerbar dd{
  1984. padding-top: 8px;
  1985. padding-bottom: 8px;
  1986. }
  1987. .footerbar ul li dl a{
  1988. color: #4d4d4d;
  1989. }
  1990. .footerbar ul li dl a:hover{
  1991. color: #7ec5d7;
  1992. }
  1993. .footerbar ul li dl dt a{
  1994. font-size: 16px;
  1995. }
  1996. .footerbar ul li dl dd a{
  1997. font-size: 14px;
  1998. }
  1999. .footerbar li{
  2000. float: left;
  2001. margin-left: 80px;
  2002. margin-right: 80px;
  2003. }
  2004. .layui-layer-title{
  2005. background-color: #00a1cb !important;
  2006. }
  2007. .layui-layer-btn .layui-layer-btn0{
  2008. border-color: #00a1cb !important;
  2009. background-color: #00a1cb !important;
  2010. }
  2011. .bannerContainer {
  2012. width: 1246px;
  2013. margin: 0 auto;
  2014. overflow: hidden;
  2015. }
  2016. .bannerContainer img{
  2017. width: 100%;
  2018. height: 100%;
  2019. display: block;
  2020. font-size: 0;
  2021. text-align: center;
  2022. }
  2023. @media only screen and (max-width: 1920px) {
  2024. /*.Content {
  2025. min-height: 549px;/*1920屏幕下*/
  2026. }*/
  2027. .bannerContainer {
  2028. height: 136px;
  2029. }
  2030. }
  2031. @media only screen and (max-width: 1366px) {
  2032. .Content {
  2033. min-height: 220px;/*1366屏幕下*/
  2034. }
  2035. /*.bannerContainer {
  2036. height: 136px;
  2037. }*/
  2038. }
  2039. /*侧栏*/
  2040. .elevator {
  2041. position: fixed;
  2042. width: 80px;
  2043. bottom: 0;
  2044. margin-top: -140px;
  2045. right: 0px;
  2046. z-index: 999;
  2047. background-color: #fff;
  2048. box-shadow: 0 4px 12px 0 rgba(7,17,27,.1);
  2049. background-size: cover;
  2050. _position: absolute;
  2051. _bottom: "auto";
  2052. right/*\**/: 20px\9;
  2053. }
  2054. .elevator .elevator-title{
  2055. width: 100%;
  2056. display: block;
  2057. background-color: #e60111;
  2058. color: #fff;
  2059. text-align: center;
  2060. margin-bottom: 10px;
  2061. font-size: 13px;
  2062. height: 20px;
  2063. line-height: 20px;
  2064. }
  2065. .elevator a {
  2066. display: block;
  2067. box-sizing: border-box;
  2068. text-align: center;
  2069. padding: 10px 0;
  2070. border: 1px solid #fff;
  2071. font-size: 22px;
  2072. color: #fff;
  2073. background-color: #848484;
  2074. }
  2075. .elevator a i {
  2076. line-height: 38px;
  2077. width: 38px;
  2078. height: 38px;
  2079. display: block;
  2080. margin: 0 auto;
  2081. margin-bottom: -10px;
  2082. background: url(../img/sidebar-icons.jpg) no-repeat;
  2083. }
  2084. .elevator a i.icon-lineChat {
  2085. background: url(../img/lineChat.png) no-repeat;
  2086. }
  2087. .elevator .icon-wxgzh{
  2088. background-position: 0 -22px;
  2089. }
  2090. .elevator .icon-xlwb{
  2091. background-position: 0 -61px;
  2092. }
  2093. .elevator .icon-appdownload{
  2094. background-position: 0 -97px;
  2095. }
  2096. .elevator .icon-up2{
  2097. background-position: 0 -136px;
  2098. }
  2099. .elevator a span {
  2100. font-size: 12px;
  2101. color: #fff;
  2102. line-height: 12px;
  2103. }
  2104. .elevator a:hover{
  2105. background-color: #83d1f4;
  2106. }
  2107. .elevator .no-goto,
  2108. .elevator .elevator-app{
  2109. border-bottom: none;
  2110. width: 80px;
  2111. }
  2112. .elevator-weixin:hover .elevator-weixin-box{
  2113. opacity: 1;
  2114. filter: alpha(opacity=100);
  2115. -webkit-transform: scale(1);
  2116. transform: scale(1);
  2117. -webkit-transform-origin: 0 0;
  2118. transform-origin: 0 0;
  2119. top: 30px;
  2120. }
  2121. .elevator-weixin:hover .elevator-xlwb-box{
  2122. opacity: 1;
  2123. filter: alpha(opacity=100);
  2124. -webkit-transform: scale(1);
  2125. transform: scale(1);
  2126. -webkit-transform-origin: 0 0;
  2127. transform-origin: 0 0;
  2128. top: 110px;
  2129. }
  2130. .elevator-app:hover .elevator-app-box{
  2131. opacity: 1;
  2132. filter: alpha(opacity=100);
  2133. -webkit-transform: scale(1);
  2134. transform: scale(1);
  2135. -webkit-transform-origin: 0 0;
  2136. transform-origin: 0 0;
  2137. top: 110px;
  2138. }
  2139. .elevator .elevator-weixin-box,
  2140. .elevator .elevator-xlwb-box,
  2141. .elevator .elevator-app-box,
  2142. .topbarWx .topbarWx-box,
  2143. .topbarClient .topbarClient-box{
  2144. position: absolute;
  2145. width: 150px;
  2146. box-sizing: border-box;
  2147. border: 1px solid #EBEBEB;
  2148. background-color: #fff;
  2149. right: 80px;
  2150. padding: 18px 0 13px 0;
  2151. -webkit-transition: all .3s ease-in-out;
  2152. -moz-transition: all .3s ease-in-out;;
  2153. transition: all .3s ease-in-out;
  2154. opacity: 0;
  2155. filter: alpha(opacity=0);
  2156. -webkit-transform: scale(.01);
  2157. transform: scale(.01);
  2158. -webkit-transform-origin: 100% 95%;
  2159. transform-origin: 100% 95%;
  2160. }
  2161. .elevator a .elevator-weixin-code,
  2162. .elevator a .elevator-xlwb-code,
  2163. .topbarWx-box .topbarWx-code
  2164. {
  2165. width: 108px;
  2166. height: 108px;
  2167. line-height: 108px;
  2168. display: block;
  2169. margin: 0 auto;
  2170. background: url(../img/qrc2.jpg) no-repeat;
  2171. background-size: 108px 108px;
  2172. }
  2173. .elevator a #elevator-app-qrcode,
  2174. .topbarClient-box #elevator-app-qrcode0{
  2175. width: 108px;
  2176. height: 108px;
  2177. line-height: 108px;
  2178. display: block;
  2179. margin: 0 auto;
  2180. }
  2181. /* .elevator a .elevator-weixin-code,
  2182. .topbarWx-box .topbarWx-code{
  2183. background-position: -2px -179px;
  2184. } */
  2185. .elevator a .elevator-xlwb-code{
  2186. background-position: -2px -292px;;
  2187. }
  2188. .elevator .elevator-weixin-box span,
  2189. .elevator .elevator-xlwb-box span,
  2190. .elevator .elevator-app-box span,
  2191. .topbarWx-box span,
  2192. .topbarClient span{
  2193. color: #6c6c6c;
  2194. font-size: 14px;
  2195. }
  2196. /*顶部微信公众号添加二维码*/
  2197. .topbarWx:hover .topbarWx-box{
  2198. opacity: 1;
  2199. filter: alpha(opacity= 100);
  2200. -webkit-transform: scale(1);
  2201. transform: scale(1);
  2202. -webkit-transform-origin: 0 0;
  2203. transform-origin: 0 0;
  2204. top: 30px;
  2205. }
  2206. .topbarClient:hover .topbarClient-box{
  2207. opacity: 1;
  2208. filter: alpha(opacity= 100);
  2209. -webkit-transform: scale(1);
  2210. transform: scale(1);
  2211. -webkit-transform-origin: 0 0;
  2212. transform-origin: 0 0;
  2213. top: 30px;
  2214. }
  2215. .topbarWx .topbarWx-box{
  2216. text-align: center;
  2217. right: 23%;
  2218. top: -178px;
  2219. z-index: 99999;
  2220. }
  2221. .topbarWx-box span,
  2222. .topbarClient-box span{
  2223. display: inline-block;
  2224. padding-top: 7px;
  2225. }
  2226. .topbarClient .topbarClient-box{
  2227. text-align: center;
  2228. right:16%;
  2229. top: -178px;
  2230. z-index: 99999;
  2231. }
  2232. /*新增样式*/
  2233. #jobTypeBar{
  2234. display: none;
  2235. }
  2236. /*底部样式*/
  2237. #_ideConac a{
  2238. display: block;
  2239. }
  2240. #_ideConac a img{
  2241. display: block;
  2242. margin: 0 auto;
  2243. }
  2244. .footerBot{
  2245. width: 100%;
  2246. background: #a22100;
  2247. }