index.css 24 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397
  1. @charset "utf-8";
  2. .otheader {
  3. width: 100%;
  4. height: 110px;
  5. background: url(../images/linebg.jpg) bottom repeat-x;
  6. }
  7. .header {
  8. margin: 0 auto;
  9. width: 1200px;
  10. height: 77px;
  11. }
  12. .logo {
  13. float: left;
  14. width: 500px;
  15. height: 77px;
  16. line-height: 77px;
  17. }
  18. .logo img {
  19. vertical-align: middle;
  20. height: 50%;
  21. }
  22. .hdmenu {
  23. float: right;
  24. width: 80%;
  25. height: 77px;
  26. text-align: right;
  27. margin-top: -6%
  28. }
  29. .hdmenu ul {
  30. display: inline-block;
  31. }
  32. .hdmenu ul li {
  33. float: left;
  34. font-size: 14px;
  35. color: #666;
  36. margin-left: 25px;
  37. line-height: 75px;
  38. padding: 0 5px;
  39. position: relative;
  40. cursor: pointer;
  41. }
  42. .hdmenu ul li a {
  43. color: #666;
  44. }
  45. .hdmenu ul li:hover,
  46. .hdmenu ul li.on {
  47. border-bottom: 2px solid #73bee4;
  48. }
  49. .hdmenu ul li:hover>a,
  50. .hdmenu ul li.on>a {
  51. color: #73bee4;
  52. }
  53. .banner {
  54. width: 100%!important;
  55. height: 400px;
  56. position: relative;
  57. }
  58. .banner .bd {
  59. width: 100%!important;
  60. }
  61. .banner .bd ul {
  62. width: 100%!important;
  63. }
  64. .banner .bd ul li {
  65. width: 100%!important;
  66. height: 400px;
  67. }
  68. .banner .nextbut {
  69. position: absolute;
  70. z-index: 99;
  71. height: 60px;
  72. width: 1200px;
  73. margin: 0 auto;
  74. left: 0;
  75. right: 0;
  76. bottom: 0;
  77. top: 200px;
  78. }
  79. .banner .nextbut .next {
  80. cursor: pointer;
  81. display: block;
  82. height: 60px;
  83. width: 60px;
  84. position: absolute;
  85. z-index: 100;
  86. left: 0;
  87. top: 0;
  88. background: url(../images/bannernext.png) no-repeat;
  89. }
  90. .banner .hd {
  91. width: 100%;
  92. height: 4px;
  93. position: absolute;
  94. left: 0;
  95. bottom: 85px;
  96. z-index: 101;
  97. text-align: center;
  98. }
  99. .banner .hd ul {
  100. display: inline-block;
  101. }
  102. .banner .hd ul li {
  103. cursor: pointer;
  104. float: left;
  105. width: 15px;
  106. height: 15px;
  107. margin: 0 5px;
  108. border-radius: 50%;
  109. background: #fff;
  110. }
  111. .banner .hd ul li.on {
  112. background: #73bee4;
  113. }
  114. .otheader .hdtop {
  115. width: 100%;
  116. height: 33px;
  117. background: #2b343c;
  118. }
  119. .otheader .hdtop .inhdt {
  120. width: 1200px;
  121. height: 33px;
  122. margin: 0 auto;
  123. }
  124. .otheader .hdtop .inhdt .inhleft {
  125. float: left;
  126. width: 700px;
  127. height: 33px;
  128. line-height: 33px;
  129. font-size: 12px;
  130. color: #999;
  131. }
  132. .yellow {
  133. color: #f90d2e;
  134. }
  135. .otheader .hdtop .inhdt .inhright {
  136. float: right;
  137. width: 500px;
  138. height: 33px;
  139. text-align: right;
  140. line-height: 33px;
  141. color: #ccc;
  142. font-size: 12px;
  143. }
  144. .otheader .hdtop .inhdt .inhright span {
  145. margin: 0 10px;
  146. }
  147. .otheader .hdtop .inhdt .inhright span a {
  148. color: #73bee4;
  149. }
  150. .denglu {
  151. border: 1px solid #e55600;
  152. border-radius: 3px;
  153. height: 19px;
  154. margin-top: 6px;
  155. color: #e55600;
  156. float: right;
  157. }
  158. .denglu a {
  159. display: inline-block;
  160. padding: 0 8px;
  161. }
  162. .denglu a:hover {
  163. color: #ffffff;
  164. background: #e55600;
  165. text-decoration: none;
  166. }
  167. .login_text {
  168. width: 250px;
  169. margin-bottom: 15px;
  170. position: relative;
  171. font-size: 12px
  172. }
  173. .login_text input {
  174. background: #fff;
  175. outline: none;
  176. width: 230px;
  177. border: 1px #d7d7d7 solid;
  178. height: 18px;
  179. padding: 10px 0;
  180. padding-right: 7px;
  181. padding-left: 11px;
  182. line-height: 18px;
  183. vertical-align: middle;
  184. color: #999;
  185. border-radius: 3px;
  186. }
  187. .prompt {
  188. position: absolute;
  189. left: 0;
  190. top: 40px;
  191. width: 237px;
  192. padding-left: 11px;
  193. height: 25px;
  194. background: #fff7d9;
  195. border: 1px solid #f6d49f;
  196. color: #c00;
  197. line-height: 25px
  198. }
  199. .login_box {
  200. width: 305px;
  201. height: 328px;
  202. position: absolute;
  203. right: 5px;
  204. top: 36px;
  205. background: none;
  206. color: #333;
  207. }
  208. .login_bg {
  209. width: 314px;
  210. height: 356px;
  211. background: #fff;
  212. filter: alpha(opacity=60);
  213. position: absolute;
  214. left: 0;
  215. top: 0;
  216. border-radius: 5px;
  217. }
  218. .login_box_1 {
  219. padding-left: 0px;
  220. padding-top: 0px;
  221. height: 308px;
  222. position: relative;
  223. left: 0;
  224. top: -16px;
  225. }
  226. .login_box_2 {
  227. padding-left: 33px;
  228. padding-top: 21px;
  229. position: absolute;
  230. left: 0;
  231. top: 0
  232. }
  233. .login_box_2 h2 {
  234. line-height: 30px;
  235. margin-bottom: 14px;
  236. font-size: 18px;
  237. color: #333;
  238. font-weight: normal
  239. }
  240. .login_box_2 dl {
  241. font-size: 14px;
  242. color: #333;
  243. margin-bottom: 11px
  244. }
  245. .login_box_2_btn {
  246. height: 28px;
  247. margin-bottom: 19px
  248. }
  249. .login_box_2_btn a {
  250. float: left;
  251. width: 58px;
  252. height: 26px;
  253. border: 1px solid #e55600;
  254. border-radius: 3px;
  255. margin-right: 8px;
  256. -webkit-transition: 0.3s ease all;
  257. transition: 0.3s ease all;
  258. -o-transition: 0.3s ease all;
  259. -moz-transition: 0.3s ease all;
  260. -ms-transition: 0.3s ease all;
  261. background: #fff;
  262. color: #e55600;
  263. line-height: 26px;
  264. text-align: center;
  265. font-size: 12px
  266. }
  267. /*.login_box_2_btn a:hover{background:#e55600;color:#fff}*/
  268. /*.login_box_2 dt{height:22px;line-height:22px}
  269. .login_box_2 dd{height:30px;line-height:30px;overflow:hidden}
  270. .login_box_2 dd span,.login_box_2 dd a{color:#e55600}
  271. .login_box_2 dd a:hover{text-decoration:underline}*/
  272. .login_title {
  273. height: 30px;
  274. line-height: 30px;
  275. font-size: 18px;
  276. margin-bottom: 19px
  277. }
  278. .login_text {
  279. /* width:250px; */
  280. margin-bottom: 15px;
  281. position: relative;
  282. font-size: 12px;
  283. }
  284. .login_text input {
  285. background: #fff;
  286. outline: none;
  287. width: 230px;
  288. border: 1px #d7d7d7 solid;
  289. height: 18px;
  290. padding: 10px 0;
  291. padding-right: 7px;
  292. padding-left: 11px;
  293. line-height: 18px;
  294. vertical-align: middle;
  295. color: #999;
  296. border-radius: 3px;
  297. }
  298. .login-footer {
  299. font-size: 16px;
  300. width: 314px;
  301. text-align: center;
  302. text-indent: 1.2em;
  303. background: rgba(255, 255, 255, .7);
  304. height: 37px;
  305. line-height: 40px;
  306. position: absolute;
  307. bottom: -19px;
  308. right: -24px;
  309. font-size: 14px;
  310. border-radius: 0 0 3px 3px;
  311. }
  312. .login-footer a {
  313. color: #73bee4
  314. }
  315. .banner .banin {
  316. width: 1200px;
  317. height: 1px;
  318. position: absolute;
  319. left: 0;
  320. right: 0;
  321. top: 0;
  322. bottom: 0;
  323. margin: 0 auto;
  324. }
  325. /*.banner .banin .logbox{position:absolute;top:50px;right:0;width:260px;height:290px;background:#fff;z-index:99;padding:30px;}*/
  326. .banner .banin .logbox {
  327. position: absolute;
  328. top: 38px;
  329. right: 0;
  330. width: 260px;
  331. height: 290px;
  332. z-index: 99;
  333. padding: 30px;
  334. }
  335. .login-fm-item {
  336. margin-bottom: 10px;
  337. }
  338. .banner .banin .logbox h3 {
  339. color: #333;
  340. font-weight: normal;
  341. margin-bottom: 25px;
  342. }
  343. .banner .banin .logbox span {
  344. font-size: 14px;
  345. display: inline-block;
  346. text-align: left;
  347. width: 80px;
  348. }
  349. .banner .banin .logbox .logipt {
  350. width: 165px;
  351. height: 34px;
  352. border: 1px solid #eee;
  353. outline: none;
  354. font-size: 14px;
  355. color: #999;
  356. text-indent: 10px;
  357. margin-bottom: 4px;
  358. }
  359. .banner .banin .logbox .iptbox {
  360. width: 180px;
  361. height: auto;
  362. overflow: hidden;
  363. position: relative;
  364. }
  365. .banner .banin .logbox .yzm {
  366. display: inline-block;
  367. vertical-align: top;
  368. z-index: 9;
  369. width: 100px;
  370. height: 34px;
  371. }
  372. .banner .banin .logbox .logbut {
  373. width: 250px;
  374. height: 30px;
  375. background: #73bee4;
  376. cursor: pointer;
  377. border: none;
  378. outline: none;
  379. font-size: 16px;
  380. color: #fff;
  381. margin-top: 8px;
  382. margin-bottom: 10px;
  383. margin-left: 6px;
  384. border-radius: 3px;
  385. }
  386. .banner .banin .logbox .toreg {
  387. text-align: right;
  388. font-size: 14px;
  389. }
  390. .banner .banin .logbox .toreg .ftpws {
  391. color: #ccc;
  392. }
  393. .banner .banin .logbox .toreg .reglink {
  394. color: #e75600;
  395. margin-left: 10px;
  396. }
  397. .banner .dnwbox {
  398. width: 100%;
  399. height: 50px;
  400. position: absolute;
  401. bottom: 0;
  402. left: 0;
  403. z-index: 999;
  404. background: #fcf8e3;
  405. }
  406. .banner .dnwbox .indnw {
  407. width: 1200px;
  408. height: 50px;
  409. margin: 0 auto;
  410. }
  411. .banner .dnwbox .indnw .indleft {
  412. width: 950px;
  413. padding-left: 50px;
  414. height: 50px;
  415. float: left;
  416. line-height: 50px;
  417. background: url(../images/newicon.png) left center no-repeat;
  418. }
  419. .banner .dnwbox .indnw .indleft ul li {
  420. width: 430px;
  421. line-height: 50px;
  422. font-size: 14px;
  423. }
  424. .banner .dnwbox .indnw .indleft ul li a {
  425. color: #e75600;
  426. }
  427. .banner .dnwbox .indnw .indleft ul li .date {
  428. display: block;
  429. float: right;
  430. font-size: 14px;
  431. color: #ccc;
  432. }
  433. .banner .dnwbox .indnw .indright {
  434. display: block;
  435. float: right;
  436. line-height: 50px;
  437. font-size: 14px;
  438. color: rgba(255, 255, 255, .5);
  439. }
  440. .coinbox {
  441. width: 100%;
  442. height: auto;
  443. overflow: hidden;
  444. /*margin: -23px auto;*/
  445. }
  446. .coinbox .cbhd {
  447. width: 100%;
  448. height: auto;
  449. overflow: hidden;
  450. border-bottom: 2px solid #73bee4;
  451. }
  452. .coinbox .cbhd ul {
  453. width: 1200px;
  454. height: auto;
  455. overflow: hidden;
  456. margin: 0 auto;
  457. }
  458. .coinbox .cbhd ul li {
  459. width: 160px;
  460. height: 40px;
  461. float: left;
  462. line-height: 40px;
  463. text-align: center;
  464. cursor: pointer;
  465. margin-right: 10px;
  466. background: #eee;
  467. font-size: 18px;
  468. color: #666;
  469. }
  470. .coinbox .cbhd ul li img {
  471. vertical-align: middle;
  472. margin-right: 3px;
  473. margin-top: -2px;
  474. }
  475. .coinbox .cbhd ul li .img2 {
  476. display: none;
  477. }
  478. .coinbox .cbhd ul li.on {
  479. background: #73bee4;
  480. color: #fff;
  481. }
  482. .coinbox .cbhd ul li.on .img2 {
  483. display: inline-block;
  484. }
  485. .coinbox .cbhd ul li.on .img1 {
  486. display: none;
  487. }
  488. .coinbox .cbbd {
  489. width: 100%;
  490. height: auto;
  491. overflow: hidden;
  492. }
  493. .coinbox .cbbd ul li {
  494. width: 100%;
  495. height: auto;
  496. overflow: hidden;
  497. }
  498. .coinbox .cbbd ul li .tbox {
  499. width: 100%;
  500. height: auto;
  501. overflow: hidden;
  502. min-height: 40px;
  503. }
  504. .coinbox .cbbd ul li .tbox:nth-child(even) {
  505. background: #fff;
  506. }
  507. .coinbox .cbbd ul li .tbox:nth-child(odd) {
  508. background: #f6f6f6;
  509. }
  510. .borbot {
  511. border-bottom: 1px solid #eee;
  512. }
  513. .coinbox .cbbd ul li {
  514. border-bottom: 1px solid #eee;
  515. }
  516. .coinbox .cbbd ul li .tbox .titletable {
  517. width: 1200px;
  518. margin: 0 auto;
  519. table-layout: fixed;
  520. word-break: break-all;
  521. }
  522. .coinbox .cbbd ul li .tbox .titletable tr td {
  523. line-height: 40px;
  524. font-size: 14px;
  525. color: #333;
  526. text-align: center;
  527. }
  528. .coinbox .cbbd ul li .tbox .titletable tr td.wd180 {
  529. width: 180px;
  530. }
  531. .coinbox .cbbd ul li .tbox .titletable tr td.wd140 {
  532. width: 140px;
  533. }
  534. .coinbox .cbbd ul li .tbox .titletable tr td.wd120 {
  535. width: 120px;
  536. }
  537. .coinbox .cbbd ul li .tbox .titletable tr td.wd100 {
  538. width: 100px;
  539. }
  540. .coinbox .cbbd ul li .tbox .titletable tr td div {
  541. display: inline-block;
  542. height: 14px;
  543. width: 10px;
  544. margin-left: 5px;
  545. position: relative;
  546. }
  547. .coinbox .cbbd ul li .tbox .titletable tr td div a {
  548. display: block;
  549. width: 10px;
  550. height: 5px;
  551. position: absolute;
  552. z-index: 9;
  553. left: 0;
  554. cursor: pointer;
  555. }
  556. .coinbox .cbbd ul li .tbox .titletable tr td div a.top {
  557. top: 3px;
  558. background: url(../images/top1.png) center no-repeat;
  559. }
  560. .coinbox .cbbd ul li .tbox .titletable tr td div a.top:hover {
  561. top: 3px;
  562. background: url(../images/top2.png) center no-repeat;
  563. }
  564. .coinbox .cbbd ul li .tbox .titletable tr td div a.down {
  565. bottom: 0;
  566. background: url(../images/down1.png) center no-repeat;
  567. }
  568. .coinbox .cbbd ul li .tbox .titletable tr td div a.down:hover {
  569. bottom: 0;
  570. background: url(../images/down2.png) center no-repeat;
  571. }
  572. .coinbox .cbbd ul li .tbox .listtable {
  573. width: 1200px;
  574. margin: 0 auto;
  575. table-layout: fixed;
  576. word-break: break-all;
  577. }
  578. .coinbox .cbbd ul li .tbox .listtable tr td {
  579. line-height: 40px;
  580. font-size: 14px;
  581. color: #666;
  582. text-align: center;
  583. }
  584. .coinbox .cbbd ul li .tbox .listtable tr td.wd180 {
  585. width: 180px;
  586. }
  587. .coinbox .cbbd ul li .tbox .listtable tr td.wd140 {
  588. width: 140px;
  589. }
  590. .coinbox .cbbd ul li .tbox .listtable tr td.wd120 {
  591. width: 120px;
  592. }
  593. .coinbox .cbbd ul li .tbox .listtable tr td.wd100 {
  594. width: 100px;
  595. }
  596. .coinbox .cbbd ul li .tbox .listtable tr td img {
  597. vertical-align: middle;
  598. margin-right: 5px;
  599. }
  600. .trustbox {
  601. width: 100%;
  602. height: auto;
  603. overflow: hidden;
  604. min-height: 494px;
  605. background: url(../images/trustbg.jpg) top center no-repeat;
  606. }
  607. .trustbox .truinner {
  608. width: 1200px;
  609. height: auto;
  610. overflow: hidden;
  611. margin: 0 auto;
  612. margin-top: 85px;
  613. }
  614. .trustbox .truinner h1 {
  615. font-size: 36px;
  616. color: #fff;
  617. text-align: center;
  618. }
  619. .trustbox .truinner .trubot {
  620. margin-top: 85px;
  621. }
  622. .trustbox .truinner .trubot li {
  623. float: left;
  624. width: 240px;
  625. height: auto;
  626. padding: 0 30px;
  627. text-align: center;
  628. }
  629. .trustbox .truinner .trubot li .topimg {
  630. width: 100%;
  631. height: 67px;
  632. text-align: center;
  633. }
  634. .trustbox .truinner .trubot li h2 {
  635. color: #fff;
  636. margin-top: 15px;
  637. }
  638. .trustbox .truinner .trubot li .desc {
  639. margin-top: 15px;
  640. text-align: center;
  641. font-size: 14px;
  642. color: #fff;
  643. line-height: 24px;
  644. }
  645. .trustbox .truinner .trubot li:hover .topimg img {
  646. transform: rotateY(360deg);
  647. transition: all 0.9s;
  648. }
  649. .nwbbox {
  650. width: 1200px;
  651. height: auto;
  652. overflow: hidden;
  653. margin: 50px auto;
  654. }
  655. .nwbbox .nwbleft {
  656. width: 430px;
  657. height: auto;
  658. overflow: hidden;
  659. float: left;
  660. }
  661. .nwbbox .top {
  662. width: 100%;
  663. height: 36px;
  664. line-height: 36px;
  665. margin-bottom: 45px;
  666. }
  667. .nwbbox .top h1 {
  668. float: left;
  669. font-size: 30px;
  670. font-weight: 900;
  671. color: #333;
  672. }
  673. .nwbbox .top h1 img {
  674. vertical-align: middle;
  675. margin-right: 10px;
  676. }
  677. .nwbbox .top .more {
  678. float: right;
  679. display: block;
  680. font-size: 14px;
  681. line-height: 36px;
  682. }
  683. .nwbbox .top .more a {
  684. color: #73bee4;
  685. }
  686. .nwbbox .nwbot {
  687. width: 100%;
  688. height: auto;
  689. overflow: hidden;
  690. }
  691. .nwbbox .nwbot .topnew {
  692. width: 100%;
  693. height: 100px;
  694. background: #f6f6f6;
  695. margin-bottom: 30px;
  696. }
  697. .nwbbox .nwbot .topnew .leftimg {
  698. float: left;
  699. width: 100px;
  700. height: 100px;
  701. position: relative;
  702. }
  703. .nwbbox .nwbot .topnew .leftimg img {
  704. width: 100px;
  705. height: 100px;
  706. }
  707. .nwbbox .nwbot .topnew .leftimg .arrow {
  708. display: block;
  709. width: 12px;
  710. height: 18px;
  711. position: absolute;
  712. right: 0;
  713. top: 43px;
  714. z-index: 2;
  715. background: url(../images/leftarrow.png) center no-repeat;
  716. }
  717. .nwbbox .nwbot .topnew .rightext {
  718. height: auto;
  719. overflow: hidden;
  720. width: 290px;
  721. float: right;
  722. margin-right: 22px;
  723. }
  724. .nwbbox .nwbot .topnew .rightext h4 {
  725. margin-top: 20px;
  726. }
  727. .nwbbox .nwbot .topnew .rightext h4 a {
  728. color: #333;
  729. }
  730. .nwbbox .nwbot .topnew .rightext .desc {
  731. margin-top: 10px;
  732. font-size: 14px;
  733. line-height: 22px;
  734. }
  735. .nwbbox .nwbot .topnew .rightext .desc a {
  736. color: #999;
  737. }
  738. .nwbbox .nwbot .btlist {
  739. border-top: 1px solid #eee;
  740. }
  741. .nwbbox .nwbot .btlist li {
  742. height: 43px;
  743. line-height: 43px;
  744. border-bottom: 1px solid #eee;
  745. padding: 0 20px 0 35px;
  746. font-size: 16px;
  747. background: url(../images/graysquare.png) 20px center no-repeat;
  748. }
  749. .nwbbox .nwbot .btlist li a {
  750. color: #666;
  751. }
  752. .nwbbox .nwbot .btlist li .date {
  753. display: block;
  754. float: right;
  755. line-height: 43px;
  756. font-size: 14px;
  757. color: #ccc;
  758. }
  759. .nwbbox .nwbot .btlist li:hover {
  760. background: rgba(255, 153, 0, .1) url(../images/yellowsquare.png) 20px center no-repeat;
  761. }
  762. .nwbbox .nwbot .btlist li:hover a,
  763. .nwbbox .nwbot .btlist li:hover * {
  764. color: #e75600;
  765. }
  766. .nwbbox .nwbright {
  767. width: 710px;
  768. height: auto;
  769. overflow: hidden;
  770. float: right;
  771. }
  772. .nwbbox .nwbright .nwbbot {
  773. width: 710px;
  774. height: 346px;
  775. background: #f6f6f6;
  776. }
  777. .nwbbox .nwbright .nwbbot .nwbbleft {
  778. width: 346px;
  779. height: 346px;
  780. position: relative;
  781. float: left;
  782. }
  783. .nwbbox .nwbright .nwbbot .nwbbleft ul li {
  784. width: 346px;
  785. height: 346px;
  786. position: relative;
  787. overflow: hidden;
  788. }
  789. .nwbbox .nwbright .nwbbot .nwbbleft ul li:hover img {
  790. transform: scale(1.1);
  791. transition: all 1s;
  792. }
  793. .nwbbox .nwbright .nwbbot .nwbbleft ul li img {
  794. width: 346px;
  795. height: 346px;
  796. transition: all 1s;
  797. }
  798. .nwbbox .nwbright .nwbbot .nwbbleft ul li .cover {
  799. width: 306px;
  800. height: 70px;
  801. position: absolute;
  802. left: 0;
  803. bottom: 0;
  804. z-index: 0;
  805. background: rgba(0, 0, 0, .8);
  806. padding: 15px 20px;
  807. }
  808. .nwbbox .nwbright .nwbbot .nwbbleft ul li .cover .title {
  809. font-size: 16px;
  810. color: #fff;
  811. }
  812. .nwbbox .nwbright .nwbbot .nwbbleft ul li .cover .title a {
  813. color: #fff;
  814. }
  815. .nwbbox .nwbright .nwbbot .nwbbleft ul li .cover .desc {
  816. font-size: 14px;
  817. color: #fff;
  818. color: #fff;
  819. line-height: 20px;
  820. margin-top: 8px;
  821. }
  822. .nwbbox .nwbright .nwbbot .nwbbleft ul li .cover .desc a {
  823. color: #fff;
  824. }
  825. .nwbbox .nwbright .nwbbot .nwbbleft .prev,
  826. .nwbbox .nwbright .nwbbot .nwbbleft .next {
  827. display: block;
  828. width: 24px;
  829. height: 42px;
  830. position: absolute;
  831. z-index: 99;
  832. top: 102px;
  833. cursor: pointer;
  834. }
  835. .nwbbox .nwbright .nwbbot .nwbbleft .prev {
  836. left: 20px;
  837. background: url(../images/nwbleft.png) center no-repeat;
  838. }
  839. .nwbbox .nwbright .nwbbot .nwbbleft .prev:hover {
  840. background: url(../images/nwbleft2.png) center no-repeat;
  841. }
  842. .nwbbox .nwbright .nwbbot .nwbbleft .next {
  843. right: 20px;
  844. background: url(../images/nwbright.png) center no-repeat;
  845. }
  846. .nwbbox .nwbright .nwbbot .nwbbleft .next:hover {
  847. background: url(../images/nwbright2.png) center no-repeat;
  848. }
  849. .nwbbox .nwbright .nwbbot .nwbbright {
  850. width: 325px;
  851. height: auto;
  852. overflow: hidden;
  853. float: right;
  854. margin-right: 20px;
  855. }
  856. .nwbbox .nwbright .nwbbot .nwbbright ul li {
  857. height: 96px;
  858. width: 100%;
  859. border-bottom: 1px solid #eee;
  860. margin-top: 18px;
  861. }
  862. .nwbbox .nwbright .nwbbot .nwbbright ul li h4 a {
  863. color: #666;
  864. }
  865. .nwbbox .nwbright .nwbbot .nwbbright ul li h4 a:hover {
  866. color: #73bee4;
  867. }
  868. .nwbbox .nwbright .nwbbot .nwbbright ul li .desc {
  869. font-size: 14px;
  870. color: #999;
  871. line-height: 20px;
  872. margin-top: 6px;
  873. }
  874. .nwbbox .nwbright .nwbbot .nwbbright ul li .desc a {
  875. color: #999;
  876. }
  877. .nwbbox .nwbright .nwbbot .nwbbright ul li .date {
  878. margin-top: 6px;
  879. font-size: 14px;
  880. color: #ccc;
  881. }
  882. .copbox {
  883. width: 100%;
  884. height: auto;
  885. overflow: hidden;
  886. padding: 50px 0;
  887. background: #eee;
  888. }
  889. .copbox .incop {
  890. width: 1200px;
  891. height: auto;
  892. overflow: hidden;
  893. margin: 0 auto;
  894. }
  895. .copbox .incop h1 {
  896. text-align: center;
  897. font-size: 30px;
  898. color: #333;
  899. margin-bottom: 20px;
  900. }
  901. .copbox .incop .coplist li {
  902. float: left;
  903. width: 208px;
  904. height: 90px;
  905. line-height: 90px;
  906. text-align: center;
  907. background: #fff;
  908. margin: 20px 40px 0 0;
  909. overflow: hidden;
  910. }
  911. .copbox .incop .coplist li img {
  912. max-width: 208px;
  913. max-height: 90px;
  914. vertical-align: middle;
  915. transition: all 0.8s;
  916. }
  917. .copbox .incop .coplist li:nth-child(5n) {
  918. margin-right: 0px;
  919. }
  920. .copbox .incop .coplist li:hover img {
  921. transform: scale(1.1);
  922. transition: all 0.8s;
  923. }
  924. .bottom {
  925. width: 100%;
  926. height: auto;
  927. overflow: hidden;
  928. background: #2b343c;
  929. padding-top: 30px;
  930. }
  931. .bottom .bottop {
  932. width: 1200px;
  933. height: auto;
  934. overflow: hidden;
  935. margin: 0 auto;
  936. padding-bottom: 40px;
  937. border-bottom: 1px solid rgba(255, 255, 255, .2)
  938. }
  939. .bottom .bottop .botleft {
  940. width: 450px;
  941. height: auto;
  942. overflow: hidden;
  943. float: left;
  944. text-align: center;
  945. }
  946. .bottom .bottop .botleft h1 {
  947. text-align: center;
  948. font-size: 36px;
  949. color: #e75600;
  950. line-height: 36px;
  951. }
  952. .bottom .bottop .botleft .time {
  953. font-size: 14px;
  954. color: rgba(255, 255, 255, .5);
  955. margin-top: 5px;
  956. }
  957. .bottom .bottop .botleft .kefu {
  958. display: inline-block;
  959. *display: inline;
  960. *zoom: 1;
  961. width: 85px;
  962. height: auto;
  963. overflow: hidden;
  964. margin: 0 15px;
  965. margin-top: 20px;
  966. }
  967. .bottom .bottop .botleft .kefu p {
  968. font-size: 14px;
  969. color: rgba(255, 255, 255, .5);
  970. margin-top: 5px;
  971. }
  972. .bottom .bottop .botcent {
  973. height: auto;
  974. overflow: hidden;
  975. min-height: 126px;
  976. /*float: left;*/
  977. /*border-left: 1px solid rgba(255, 255, 255, .2);*/
  978. /*border-right: 1px solid rgba(255, 255, 255, .2);*/
  979. padding: 0 20px;
  980. }
  981. .bottom .bottop .botcent .ftmenu {
  982. float: left;
  983. min-width: 130px;
  984. height: auto;
  985. overflow: hidden;
  986. width: 20%;
  987. text-align: center;
  988. }
  989. .bottom .bottop .botcent .ftmenu h4 {
  990. color: rgba(255, 255, 255, .8);
  991. font-weight: normal;
  992. margin-bottom: 25px;
  993. }
  994. .bottom .bottop .botcent .ftmenu ul li {
  995. font-size: 14px;
  996. color: rgba(255, 255, 255, .5);
  997. line-height: 25px;
  998. }
  999. .bottom .bottop .botcent .ftmenu ul li a {
  1000. color: rgba(255, 255, 255, .5);
  1001. }
  1002. .bottom .bottop .ewm {
  1003. float: right;
  1004. width: 100px;
  1005. height: auto;
  1006. margin-left: 30px;
  1007. line-height: 30px;
  1008. font-size: 14px;
  1009. color: rgba(255, 255, 255, .5);
  1010. text-align: center;
  1011. overflow: hidden;
  1012. }
  1013. .bottom .bottop .ewm img {
  1014. width: 100px!important;
  1015. }
  1016. .bottom .linkbox {
  1017. width: 1200px;
  1018. height: auto;
  1019. margin: 0 auto;
  1020. padding: 10px 0;
  1021. font-size: 14px;
  1022. overflow: hidden;
  1023. color: rgba(255, 255, 255, .2);
  1024. }
  1025. .bottom .linkbox a {
  1026. color: rgba(255, 255, 255, .2);
  1027. }
  1028. .bottom .linkbox ul li {
  1029. float: left;
  1030. margin: 3px 0;
  1031. margin-right: 10px;
  1032. }
  1033. .bottom .notice {
  1034. width: 1200px;
  1035. height: auto;
  1036. margin: 0 auto;
  1037. padding: 16px 0;
  1038. font-size: 14px;
  1039. overflow: hidden;
  1040. color: #fff;
  1041. text-align: center;
  1042. border-top: 1px solid rgba(255, 255, 255, .2);
  1043. border-bottom: 1px solid rgba(255, 255, 255, .2);
  1044. }
  1045. .bottom .picbox {
  1046. width: 1200px;
  1047. height: auto;
  1048. overflow: hidden;
  1049. margin: 0 auto;
  1050. text-align: center;
  1051. padding: 20px 0;
  1052. }
  1053. .bottom .picbox img {
  1054. margin: 3px 0;
  1055. }
  1056. .bottom .botbox {
  1057. width: 100%;
  1058. height: 60px;
  1059. background: #2b343c;
  1060. }
  1061. .bottom .botbox .inbot {
  1062. width: 1200px;
  1063. height: 60px;
  1064. margin: 0 auto;
  1065. }
  1066. .bottom .botbox .inbot .inbotleft {
  1067. float: left;
  1068. width: 600px;
  1069. height: 60px;
  1070. line-height: 60px;
  1071. font-size: 12px;
  1072. color: rgba(255, 255, 255, .2);
  1073. }
  1074. .bottom .botbox .inbot .inbotright {
  1075. float: right;
  1076. width: 600px;
  1077. height: 60px;
  1078. line-height: 60px;
  1079. font-size: 12px;
  1080. color: rgba(255, 255, 255, .2);
  1081. text-align: right;
  1082. }
  1083. .rightkefu {
  1084. width: 70px;
  1085. height: 220px;
  1086. position: fixed;
  1087. right: 10px;
  1088. bottom: 0px;
  1089. z-index: 99999;
  1090. }
  1091. .rightkefu ul li {
  1092. transform: all 0.3s;
  1093. width: 70px;
  1094. height: 70px;
  1095. margin-bottom: 1px;
  1096. background: #eee;
  1097. text-align: center;
  1098. font-size: 12px;
  1099. color: #666;
  1100. cursor: pointer;
  1101. position: relative;
  1102. }
  1103. .rightkefu ul li p {
  1104. color: #666;
  1105. transform: all 0.3s;
  1106. }
  1107. .rightkefu ul li .topimg {
  1108. width: 100%;
  1109. text-align: center;
  1110. padding-top: 12px;
  1111. height: 35px;
  1112. transform: all 0.3s;
  1113. }
  1114. .rightkefu ul li .topimg .img2 {
  1115. display: none;
  1116. transform: all 0.3s;
  1117. }
  1118. .rightkefu ul li:hover {
  1119. background: #73bee4;
  1120. color: #fff;
  1121. transform: all 0.3s;
  1122. }
  1123. .rightkefu ul li:hover p {
  1124. color: #fff;
  1125. transform: all 0.3s;
  1126. }
  1127. .rightkefu ul li:hover .img1 {
  1128. display: none;
  1129. transform: all 0.3s;
  1130. }
  1131. .rightkefu ul li:hover .img2 {
  1132. display: inline-block;
  1133. transform: all 0.3s;
  1134. }
  1135. .rightkefu ul li .fengxian {
  1136. transform: all 0.3s;
  1137. display: none;
  1138. width: 118px;
  1139. height: 55px;
  1140. background: url(../images/fengxinbg.png) center no-repeat;
  1141. top: 0;
  1142. right: 85px;
  1143. position: absolute;
  1144. z-index: 99999;
  1145. font-size: 14px;
  1146. color: #fff;
  1147. text-align: center;
  1148. line-height: 20px;
  1149. padding-top: 15px;
  1150. }
  1151. .rightkefu ul li:hover .fengxian {
  1152. display: block;
  1153. transform: all 0.3s;
  1154. }
  1155. /* NEW CSS */
  1156. .convert{
  1157. margin: 30px 0;
  1158. overflow: hidden;
  1159. }
  1160. .convert .item{
  1161. display: inline-block;
  1162. margin-right: 2.5rem;
  1163. }
  1164. .convert .item .value{
  1165. line-height: 3.5rem;
  1166. font-size: 2rem;
  1167. font-weight: 400;
  1168. color: #118fff;
  1169. }
  1170. .convert .item .name{
  1171. font-size: 0.8rem;
  1172. }
  1173. .convert .item .name b{
  1174. font-size: 14px;
  1175. font-weight: normal;
  1176. }