style.css 40 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373
  1. @charset "utf-8";
  2. input[type="button"],
  3. input[type="submit"],
  4. input[type="reset"],
  5. select {
  6. -webkit-appearance: none;
  7. }
  8. .header {
  9. height: 44px;
  10. width: 100%;
  11. border-bottom: 1px solid #ebf4f3;
  12. }
  13. .header-left {
  14. height: 100%;
  15. width: 50%;
  16. float: left;
  17. line-height: 44px;
  18. }
  19. .header-right {
  20. height: 100%;
  21. width: 50%;
  22. float: right;
  23. position: relative;
  24. }
  25. .header-left img {
  26. vertical-align: middle;
  27. margin-left: 10px;
  28. height: 60%;
  29. }
  30. .menu {
  31. cursor: pointer;
  32. width: 44px;
  33. height: 44px;
  34. position: absolute;
  35. right: 0px;
  36. top: 0px;
  37. margin-left: 1px;
  38. background: #666 url(../images/close.png) center center no-repeat;
  39. background-size: 18px;
  40. z-index: 100;
  41. }
  42. .menu1 {
  43. cursor: pointer;
  44. width: 44px;
  45. height: 44px;
  46. float: right;
  47. margin-left: 1px;
  48. background: #fff url(../images/menu.png) center center no-repeat;
  49. background-size: 20px;
  50. z-index: 100;
  51. }
  52. .topmenu {
  53. display: none;
  54. width: 100%;
  55. height: 100%;
  56. background: rgba(0, 0, 0, .8);
  57. position: absolute;
  58. left: 0px;
  59. top: 0px;
  60. z-index: 99;
  61. }
  62. .fmenu {
  63. width: 60%;
  64. height: auto;
  65. overflow: hidden;
  66. background-color: #666;
  67. float: right;
  68. margin-top: 44px;
  69. padding-bottom: 20px;
  70. }
  71. .fme1 {
  72. cursor: pointer;
  73. font-size: 1.3rem;
  74. font-weight: 900;
  75. color: #fff;
  76. width: 90%;
  77. height: 3.0rem;
  78. line-height: 3.0rem;
  79. border-bottom: 1px solid #fff;
  80. float: right;
  81. background: url(../images/close.jpg) no-repeat;
  82. background-position: 90% center;
  83. background-size: 13px;
  84. }
  85. .semenu {
  86. float: right;
  87. width: 90%;
  88. display: none;
  89. }
  90. .semenu li {
  91. width: 100%;
  92. height: 2.5rem;
  93. border-bottom: 1px solid #fff;
  94. line-height: 2.5rem;
  95. font-size: 1.1rem;
  96. }
  97. .semenu li a {
  98. color: #fff;
  99. }
  100. .banner {
  101. width: 100%;
  102. height: auto;
  103. overflow: hidden;
  104. position: relative;
  105. }
  106. .banner .bd ul li img {
  107. width: 100%;
  108. vertical-align: top;
  109. }
  110. .banner .hd {
  111. text-align: center;
  112. width: 100%;
  113. position: absolute;
  114. left: 0;
  115. bottom: 10px;
  116. }
  117. .banner .hd ul {
  118. display: inline-block;
  119. }
  120. .banner .hd ul li {
  121. height: 4px;
  122. width: 40px;
  123. float: left;
  124. background-color: #fff;
  125. margin-right: 5px;
  126. font-size: 0px;
  127. }
  128. .banner .hd ul li.on {
  129. background-color: #73bee4;
  130. }
  131. .fme2 {
  132. cursor: pointer;
  133. font-size: 1.3rem;
  134. font-weight: 900;
  135. color: #fff;
  136. width: 90%;
  137. height: 3.0rem;
  138. line-height: 3.0rem;
  139. border-bottom: 1px solid #fff;
  140. float: right;
  141. background-color: #f44336;
  142. background-image: none;
  143. }
  144. .searchbox {
  145. width: 96%;
  146. height:
  147. }
  148. .header_title {
  149. width: 100%;
  150. height: 2.0rem;
  151. background: #1d1d28;
  152. text-align: center;
  153. line-height: 2.0rem;
  154. font-size: 0.9rem;
  155. color: #fff;
  156. position: relative;
  157. }
  158. .graybg {
  159. background: #efeff4;
  160. }
  161. .newbox {
  162. width: 96%;
  163. padding: 0 2%;
  164. height: 40px;
  165. background: #fff;
  166. font-size: 14px;
  167. color: #fff;
  168. line-height: 40px;
  169. overflow: hidden;
  170. text-overflow: ellipsis;
  171. }
  172. .newbox img {
  173. vertical-align: middle;
  174. height: 22px;
  175. margin-right: 3px;
  176. }
  177. .newbox a {
  178. color: #292c34;
  179. }
  180. .menubox {
  181. width: 95%;
  182. height: auto;
  183. overflow: hidden;
  184. padding: 10px 2.5%;
  185. background: #fff;
  186. margin-top: 15px;
  187. }
  188. .menubox ul li {
  189. width: 20%;
  190. height: auto;
  191. overflow: hidden;
  192. float: left;
  193. text-align: center;
  194. line-height: 1.0;
  195. }
  196. .menubox ul li p {
  197. text-align: center;
  198. font-size: 14px;
  199. color: #666;
  200. margin-top: 2px;
  201. }
  202. .menubox ul li img {
  203. height: 35px;
  204. }
  205. .xslist {
  206. width: 96%;
  207. height: auto;
  208. overflow: hidden;
  209. margin: 0 auto;
  210. }
  211. .xslist li {
  212. width: 100%;
  213. height: auto;
  214. overflow: hidden;
  215. margin-top: 15px;
  216. }
  217. .xslist li .xsltop {
  218. width: 100%;
  219. padding-left: 2%;
  220. height: 35px;
  221. line-height: 35px;
  222. background: #292c34 url(../images/rightarrow.png) 96% center no-repeat;
  223. background-size: 10px;
  224. font-size: 15px;
  225. color: #fff;
  226. }
  227. .xslist li .xsltop img {
  228. vertical-align: middle;
  229. margin-right: 5px;
  230. height: 22px;
  231. margin-top: -2px;
  232. }
  233. .xslist li .xslbot {
  234. height: auto;
  235. overflow: hidden;
  236. background: #292c34;
  237. margin-top: 0.8px;
  238. padding: 5px 2%;
  239. }
  240. .xslist li .xslbot table {
  241. width: 100%;
  242. }
  243. .xslist li .xslbot table tr td {
  244. width: 25%;
  245. font-size: 14px;
  246. color: rgba(255, 255, 255, .3);
  247. line-height: 20px;
  248. padding: 2px;
  249. }
  250. .xslist li .xslbot table tr th {
  251. padding: 2px;
  252. }
  253. .xslist li .xslbot table tr th.price {
  254. font-size: 20px;
  255. font-weight: 900;
  256. color: #fff;
  257. }
  258. .xslist li .xslbot table tr th.price img {
  259. height: 16px;
  260. }
  261. .xslist li .xslbot table tr th.percent {
  262. text-align: right;
  263. font-size: 14px;
  264. font-weight: normal;
  265. color: #fff;
  266. }
  267. .red {
  268. color: #ff0000!important;
  269. }
  270. .green {
  271. color: #00c183!important;
  272. }
  273. .gray {
  274. color: rgba(255, 255, 255, .3)!important;
  275. }
  276. .bottom {
  277. position: fixed;
  278. height: 38px;
  279. width: 100%;
  280. background: #1d1d28;
  281. z-index: 9999;
  282. bottom: 0;
  283. left: 0;
  284. padding: 6px 0 7px 0;
  285. overflow: hidden;
  286. }
  287. .bottom ul li {
  288. float: left;
  289. width:33.33%;
  290. text-align: center;
  291. line-height: 1.0;
  292. }
  293. .bottom ul li a {
  294. display: block;
  295. width: 100%;
  296. height: 100%;
  297. }
  298. .bottom ul li img {
  299. height: 28px;
  300. }
  301. .bottom ul li .img2 {
  302. display: none;
  303. }
  304. .bottom ul li p {
  305. font-size: 12px;
  306. color: #fff;
  307. margin-top: 0px;
  308. }
  309. /*.bottom ul li:hover .img1,*/
  310. .bottom ul li.on .img1 {
  311. display: none;
  312. }
  313. /*.bottom ul li:hover .img2,*/
  314. .bottom ul li.on .img2 {
  315. display: inline-block;
  316. }
  317. /*.bottom ul li:hover p,*/
  318. .bottom ul li.on p {
  319. color: #73bee4;
  320. }
  321. .log_title {
  322. width: 100%;
  323. height: 2.0rem;
  324. background: #080814;
  325. text-align: center;
  326. line-height: 2.0rem;
  327. font-size: 0.9rem;
  328. color: #fff;
  329. position: relative;
  330. }
  331. .log_title .back {
  332. display: block;
  333. width: 40px;
  334. height: 2.0rem;
  335. line-height: 2.0rem;
  336. position: absolute;
  337. z-index: 2;
  338. left: 3%;
  339. top: 0;
  340. text-align: left;
  341. background: url(../images/leftarrow.png) left center no-repeat;
  342. background-size: 12px;
  343. }
  344. .log_title .back a {
  345. display: block;
  346. width: 100%;
  347. height: 100%;
  348. }
  349. .log_title .menubut {
  350. display: block;
  351. width: 40px;
  352. height: 2.0rem;
  353. line-height: 2.0rem;
  354. position: absolute;
  355. z-index: 2;
  356. right: 3%;
  357. top: 0;
  358. text-align: left;
  359. background: url(../images/menu.png) right center no-repeat;
  360. background-size: 18px;
  361. }
  362. .log_title .menubut a {
  363. display: block;
  364. width: 100%;
  365. height: 100%;
  366. }
  367. .blackbg {
  368. background: #1d1d29;
  369. }
  370. .logbot {
  371. width: 94%;
  372. height: auto;
  373. overflow: hidden;
  374. margin: 0 auto;
  375. }
  376. .logbot .logipt {
  377. width: 100%;
  378. height: 40px;
  379. background: #0e0e14;
  380. border: none;
  381. margin-top: 15px;
  382. text-indent: 10px;
  383. font-size: 14px;
  384. color: rgba(255, 255, 255, .8);
  385. }
  386. .logbot .yzmbox {
  387. width: 100%;
  388. height: auto;
  389. overflow: hidden;
  390. }
  391. .logbot .yzmbox .yzmipt {
  392. width: 60%;
  393. }
  394. .logbot .yzmbox img {
  395. width: 35%;
  396. height: 40px;
  397. margin-top: 15px;
  398. float: right;
  399. }
  400. .logbot .logbut {
  401. width: 100%;
  402. height: 40px;
  403. background: #73bee4;
  404. border-radius: 2px;
  405. font-size: 14px;
  406. color: #fff;
  407. margin-top: 15px;
  408. cursor: pointer;
  409. }
  410. .logbot .phonebox {
  411. width: 100%;
  412. height: auto;
  413. overflow: hidden;
  414. margin-top: 10px;
  415. }
  416. .logbot .phonebox .phleft {
  417. float: left;
  418. font-size: 14px;
  419. color: #fff;
  420. }
  421. .logbot .phonebox .phright {
  422. float: right;
  423. text-align: right;
  424. font-size: 14px;
  425. color: #73bee4;
  426. }
  427. .logbot .phonebox .phright a {
  428. color: #73bee4;
  429. margin-left: 5px;
  430. }
  431. .logbot .logipt::-webkit-input-placeholder {
  432. color: #666;
  433. }
  434. .logbot .yzmbox .phonebut {
  435. width: 35%;
  436. height: 40px;
  437. float: right;
  438. background: #0e0e14;
  439. font-size: 14px;
  440. border: none;
  441. margin-top: 15px;
  442. font-size: 14px;
  443. color: rgba(255, 255, 255, .3);
  444. }
  445. .logbot h3 {
  446. font-size: 18px;
  447. text-align: center;
  448. color: #73bee4;
  449. font-weight: 900;
  450. margin-top: 10px;
  451. }
  452. .gotrade {
  453. display: block;
  454. width: 100%;
  455. height: 40px;
  456. background: #73bee4;
  457. border-radius: 2px;
  458. font-size: 14px;
  459. color: #fff;
  460. margin-top: 15px;
  461. text-align: center;
  462. line-height: 40px;
  463. }
  464. .logbot .infors {
  465. font-size: 14px;
  466. color: rgba(255, 255, 255, .3);
  467. line-height: 20px;
  468. text-align: center;
  469. margin-top: 15px;
  470. }
  471. .tdlist {
  472. width: 96%;
  473. height: auto;
  474. overflow: hidden;
  475. margin: 0 auto;
  476. }
  477. .tdlist li {
  478. width: 100%;
  479. height: auto;
  480. overflow: hidden;
  481. margin-top: 10px;
  482. }
  483. .tdlist li .xsltop {
  484. width: 100%;
  485. padding-left: 2%;
  486. height: 35px;
  487. line-height: 35px;
  488. background: rgba(0, 0, 0, .5) url(../images/rightarrow.png) 96% center no-repeat;
  489. background-size: 10px;
  490. font-size: 15px;
  491. color: #fff;
  492. }
  493. .tdlist li .xsltop img {
  494. vertical-align: middle;
  495. margin-right: 5px;
  496. height: 22px;
  497. margin-top: -2px;
  498. }
  499. .tdlist li a {
  500. display: block;
  501. width: 100%;
  502. height: 100%;
  503. }
  504. .tadtop {
  505. width: 96%;
  506. height: 101px;
  507. margin: 0 auto;
  508. margin-top: 15px;
  509. background: rgba(0, 0, 0, .5);
  510. }
  511. .tadtop .tadtitle {
  512. width: 96%;
  513. height: 40px;
  514. border-bottom: 1px solid rgba(255, 255, 255, .1);
  515. margin: 0 auto;
  516. line-height: 40px;
  517. }
  518. .tadtop .tadtitle .tadleft {
  519. float: left;
  520. line-height: 40px;
  521. font-size: 15px;
  522. color: #fff;
  523. }
  524. .tadtop .tadtitle .tadleft img {
  525. height: 22px;
  526. margin-right: 5px;
  527. vertical-align: middle;
  528. }
  529. .tadtop .tadtitle .tadright {
  530. float: right;
  531. text-align: right;
  532. }
  533. .tadtop .tadtitle .tadright .price {
  534. font-size: 20px;
  535. color: #fff;
  536. font-weight: 900;
  537. }
  538. .tadtop .tadtitle .tadright .percent {
  539. font-size: 14px;
  540. color: #fff;
  541. }
  542. .tadtop .tadtable {
  543. width: 96%;
  544. margin: 0 auto;
  545. }
  546. .tadtop .tadtable tr th {
  547. width: 25%;
  548. font-size: 12px;
  549. color: #fff;
  550. text-align: center;
  551. padding: 5px 2px;
  552. }
  553. .tadtop .tadtable tr td {
  554. width: 25%;
  555. font-size: 14px;
  556. color: #fff;
  557. font-weight: 900;
  558. text-align: center;
  559. padding: 5px 2px;
  560. }
  561. .apibox {
  562. width: 96%;
  563. height: auto;
  564. overflow: hidden;
  565. background: rgba(0, 0, 0, .3);
  566. margin: 0 auto;
  567. color: #fff;
  568. margin-top: 15px;
  569. }
  570. .business {
  571. width: 96%;
  572. height: auto;
  573. overflow: hidden;
  574. margin: 0 auto;
  575. border: 1px solid rgba(255, 255, 255, .2);
  576. margin-top: 15px;
  577. }
  578. .business h4 {
  579. font-size: 18px;
  580. color: #fff;
  581. font-weight: 900;
  582. width: 96%;
  583. margin: 10px auto;
  584. line-height: 30px;
  585. }
  586. .business h4 img {
  587. height: 30px;
  588. vertical-align: middle;
  589. margin-right: 5px;
  590. }
  591. .business .busbox {
  592. width: 98%;
  593. padding-left: 2%;
  594. height: 200px;
  595. overflow-y: scroll;
  596. -webkit-overflow-scrolling: touch;
  597. }
  598. .business .bustitle {
  599. width: 98%;
  600. background: rgba(0, 0, 0, .3);
  601. padding-left: 2%;
  602. }
  603. .business .bustitle table {
  604. width: 100%;
  605. }
  606. .business .bustitle table tr th {
  607. width: 25%;
  608. padding: 8px 0 8px 0;
  609. font-size: 14px;
  610. color: rgba(255, 255, 255, .5);
  611. text-align: left;
  612. }
  613. .business .busdts {
  614. width: 50%;
  615. float: left;
  616. }
  617. .business .busdts tr td {
  618. width: 25%;
  619. padding: 8px 0 8px 0;
  620. font-size: 14px;
  621. color: rgba(255, 255, 255, .5);
  622. text-align: left;
  623. }
  624. .dealbox {
  625. width: 96%;
  626. height: auto;
  627. overflow: hidden;
  628. margin: 0 auto;
  629. border: 1px solid rgba(255, 255, 255, .2);
  630. margin-top: 15px;
  631. }
  632. .dealbox h4 {
  633. font-size: 18px;
  634. color: #fff;
  635. font-weight: 900;
  636. width: 96%;
  637. margin: 10px auto;
  638. line-height: 30px;
  639. }
  640. .dealbox h4 img {
  641. height: 30px;
  642. vertical-align: middle;
  643. margin-right: 5px;
  644. }
  645. .dealbox .busbox {
  646. width: 100%;
  647. height: 200px;
  648. overflow-y: scroll;
  649. -webkit-overflow-scrolling: touch;
  650. }
  651. .dealbox .bustitle {
  652. width: 98%;
  653. background: rgba(0, 0, 0, .3);
  654. padding-left: 2%;
  655. }
  656. .dealbox .bustitle table {
  657. width: 100%;
  658. }
  659. .dealbox .bustitle table tr th {
  660. padding: 8px 0 8px 0;
  661. font-size: 14px;
  662. color: rgba(255, 255, 255, .5);
  663. text-align: left;
  664. }
  665. .dealbox .busdts {
  666. width: 98%;
  667. margin-left: 2%;
  668. }
  669. .dealbox .busdts tr td {
  670. padding: 8px 0 8px 0;
  671. font-size: 14px;
  672. color: rgba(255, 255, 255, .5);
  673. text-align: left;
  674. }
  675. .white {
  676. color: #fff;
  677. }
  678. .tdts_top {
  679. width: 96%;
  680. height: 60px;
  681. margin: 0 auto;
  682. margin-top: 15px;
  683. background: rgba(0, 0, 0, .3);
  684. padding: 10px 0;
  685. }
  686. .tdts_top .tdts_top_left {
  687. width: 64%;
  688. height: 60px;
  689. float: left;
  690. margin-left: 2%;
  691. border-right: 1px solid rgba(255, 255, 255, .2)
  692. }
  693. .tdts_top .tdts_top_right {
  694. width: 30%;
  695. height: 60px;
  696. background: red;
  697. float: right;
  698. margin-right: 2%;
  699. font-size: 20px;
  700. font-weight: 900;
  701. color: #fff;
  702. line-height: 60px;
  703. background: url(../images/rightarrow.png) right center no-repeat;
  704. background-size: 10px;
  705. }
  706. .tdts_top .tdts_top_left .tdtname {
  707. font-size: 15px;
  708. color: #fff;
  709. line-height: 30px;
  710. }
  711. .tdts_top .tdts_top_left .tdtname img {
  712. vertical-align: middle;
  713. margin-right: 5px;
  714. height: 22px;
  715. }
  716. .tdts_top .tdts_top_left .price {
  717. font-size: 12px;
  718. color: rgba(255, 255, 255, .5);
  719. padding: 10px 3px;
  720. }
  721. .salebox {
  722. width: 96%;
  723. height: auto;
  724. overflow: hidden;
  725. margin: 0 auto;
  726. margin-top: 15px;
  727. border: 1px solid rgba(0, 0, 0, .5);
  728. }
  729. .salebox .salehd {
  730. width: 100%;
  731. height: 35px;
  732. }
  733. .salebox .salehd ul li {
  734. float: left;
  735. width: 33%;
  736. height: 35px;
  737. text-align: center;
  738. line-height: 35px;
  739. font-size: 14px;
  740. color: rgba(255, 255, 255, .3);
  741. background: url(../images/blackline.png) right center repeat-y;
  742. }
  743. .salebox .salehd ul li:nth-child(3n) {
  744. background: transparent;
  745. }
  746. .salebox .salehd ul li.on {
  747. color: #fff;
  748. font-weight: 900;
  749. background: rgba(0, 0, 0, .5);
  750. }
  751. .salebox .salebd {
  752. padding: 0 2%;
  753. width: 96%;
  754. height: auto;
  755. overflow: hidden;
  756. min-height: 100px;
  757. background: rgba(0, 0, 0, .5);
  758. padding-bottom: 10px;
  759. }
  760. .salebox .salebd ul li {
  761. width: 100%;
  762. height: auto;
  763. overflow: hidden;
  764. }
  765. .salebox .salebd ul li .bdts_top {
  766. width: 100%;
  767. height: auto;
  768. overflow: hidden;
  769. padding: 12px 0;
  770. border-bottom: 1px solid rgba(255, 255, 255, .1);
  771. font-size: 14px;
  772. color: #fff;
  773. }
  774. .salebox .salebd ul li .bdts_top .recharge {
  775. float: right;
  776. font-size: 14px;
  777. }
  778. .salebox .salebd ul li .bdts_top .recharge a {
  779. color: #ff0000;
  780. }
  781. .salebox .salebd ul li .iptbox {
  782. width: 100%;
  783. height: auto;
  784. overflow: hidden;
  785. margin-top: 10px;
  786. position: relative;
  787. }
  788. .salebox .salebd ul li .iptbox label {
  789. font-size: 14px;
  790. color: #fff;
  791. line-height: 40px;
  792. vertical-align: top;
  793. }
  794. .salebox .salebd ul li .iptbox .priceipt {
  795. width: 73%;
  796. height: 40px;
  797. background: rgba(0, 0, 0, .5);
  798. border: none;
  799. text-indent: 10px;
  800. font-size: 16px;
  801. color: rgba(255, 255, 255, 1.0);
  802. float: right;
  803. }
  804. .salebox .salebd ul li .iptbox .delete {
  805. width: 40px;
  806. height: 40px;
  807. position: absolute;
  808. right: 0;
  809. top: 0;
  810. z-index: 9;
  811. background: url(../images/delect.png) center no-repeat;
  812. background-size: 18px;
  813. }
  814. .salebox .salebd ul li .iptbox .priceipt.readonly {
  815. background: transparent;
  816. }
  817. .salebox .salebd ul li .cancel {
  818. width: 100%;
  819. height: auto;
  820. overflow: hidden;
  821. margin-top: 5px;
  822. border-collapse: collapse;
  823. }
  824. .salebox .salebd ul li .cancel tr th {
  825. width: 16.5%;
  826. font-size: 14px;
  827. color: #fff;
  828. font-weight: 900;
  829. text-align: center;
  830. padding: 10px 0;
  831. background: rgba(0, 0, 0, .5);
  832. border: 0.5px solid #27272c;
  833. }
  834. .salebox .salebd ul li .cancel tr td {
  835. font-size: 14px;
  836. color: #fff;
  837. text-align: center;
  838. padding: 10px 0;
  839. border: 0.5px solid #27272c;
  840. }
  841. .salebox .salebd ul li .cancel tr .left {
  842. text-align: left;
  843. padding-left: 5px;
  844. }
  845. .salebox .salebd ul li .cancel tr .right {
  846. text-align: right;
  847. padding-right: 5px;
  848. }
  849. .salebox .salebd ul li .buyin {
  850. width: 100%;
  851. height: 40px;
  852. margin-top: 10px;
  853. background: #ff0000;
  854. font-size: 14px;
  855. color: #fff;
  856. cursor: pointer;
  857. }
  858. .saletable {
  859. width: 96%;
  860. height: auto;
  861. overflow: hidden;
  862. margin: 0 auto;
  863. margin-top: 0px;
  864. border: 1px solid rgba(0, 0, 0, .5);
  865. }
  866. .saletable .saletable_top {
  867. width: 96%;
  868. margin: 2% auto;
  869. }
  870. .saletable .saletable_top table {
  871. width: 100%;
  872. }
  873. .saletable .saletable_top table th {
  874. font-size: 14px;
  875. line-height: 35px;
  876. color: rgba(255, 255, 255, .5);
  877. text-align: left;
  878. }
  879. .saletable .saletable_bot {
  880. width: 100%;
  881. height: auto;
  882. overflow: hidden;
  883. background: rgba(0, 0, 0, .5);
  884. }
  885. .saletable .saletable_bot table {
  886. width: 96%;
  887. margin: 2% auto;
  888. }
  889. .saletable .saletable_bot table th {
  890. font-size: 14px;
  891. line-height: 35px;
  892. color: rgba(255, 255, 255, .5);
  893. text-align: left;
  894. }
  895. .saletable .saletable_bot table td {
  896. font-size: 14px;
  897. color: rgba(255, 255, 255, .5);
  898. padding: 8px 0;
  899. }
  900. .saletable .saletable_bot table.green {
  901. border-bottom: 1px solid rgba(255, 255, 255, .1)
  902. }
  903. .saletable .saletable_bot table.green td {
  904. color: #00c183;
  905. }
  906. .saletable .saletable_bot table.red td {
  907. color: #ff0000;
  908. }
  909. .useifor {
  910. width: 92%;
  911. padding: 10px 2%;
  912. height: auto;
  913. overflow: hidden;
  914. margin: 0 auto;
  915. background: rgba(0, 0, 0, .5);
  916. margin-top: 15px;
  917. font-size: 14px;
  918. color: #fff;
  919. line-height: 24px;
  920. text-align: center;
  921. }
  922. .usermenu {
  923. width: 92%;
  924. padding: 0 2%;
  925. height: auto;
  926. overflow: hidden;
  927. margin: 0 auto;
  928. background: rgba(0, 0, 0, .5);
  929. margin-top: 15px;
  930. }
  931. .usermenu ul li {
  932. height: 40px;
  933. border-bottom: 1px solid rgba(255, 255, 255, .1);
  934. font-size: 14px;
  935. color: #fff;
  936. line-height: 40px;
  937. background: url(../images/rightarrow.png) right center no-repeat;
  938. background-size: 10px;
  939. }
  940. .usermenu ul li:last-child {
  941. border-bottom: none;
  942. }
  943. .usermenu ul li img {
  944. vertical-align: middle;
  945. max-height: 25px;
  946. max-width: 25px;
  947. }
  948. .usermenu ul li a {
  949. color: #fff;
  950. display: block;
  951. width: 100%;
  952. height: 100%;
  953. }
  954. .usermenu ul li .imgbox {
  955. width: 40px;
  956. height: 40px;
  957. display: inline-block;
  958. line-height: 40px;
  959. text-align: center;
  960. }
  961. .usermenu ul li .price {
  962. float: right;
  963. color: #73bee4;
  964. margin-right: 20px;
  965. }
  966. .layout {
  967. display: block;
  968. width: 96%;
  969. height: 40px;
  970. margin: 0 auto;
  971. background: #73bee4;
  972. font-size: 14px;
  973. color: #fff;
  974. margin-top: 15px;
  975. text-align: center;
  976. line-height: 40px;
  977. border-radius: 2px;
  978. }
  979. .layout a {
  980. color: #fff;
  981. display: block;
  982. width: 100%;
  983. height: 100%;
  984. }
  985. .addbankbut {
  986. display: block;
  987. width: 96%;
  988. height: 40px;
  989. margin: 0 auto;
  990. font-size: 14px;
  991. color: #fff;
  992. margin-top: 15px;
  993. text-align: center;
  994. line-height: 40px;
  995. border-radius: 2px;
  996. }
  997. .addbankbut a {
  998. width: 100%;
  999. height: 100%;
  1000. display: block;
  1001. background: #73bee4;
  1002. border-radius: 2px;
  1003. font-size: 14px;
  1004. color: #fff;
  1005. margin-top: 15px;
  1006. cursor: pointer;
  1007. }
  1008. /*.addbankbut a{color:rgba(255,255,255,.5);display:block;height:100%;border:1px solid rgba(255,255,255,.2);}*/
  1009. .addbankbut img {
  1010. vertical-align: middle;
  1011. margin-right: 10px;
  1012. width: 18px;
  1013. margin-top: -3px;
  1014. }
  1015. .chgbox {
  1016. width: 96%;
  1017. height: auto;
  1018. overflow: hidden;
  1019. margin: 0 auto;
  1020. margin-top: 15px;
  1021. }
  1022. .chgbox ul li {
  1023. border: 1px solid rgba(255, 255, 255, .2);
  1024. margin-bottom: 10px;
  1025. }
  1026. .chgbox ul li .chglist_top {
  1027. height: 35px;
  1028. padding: 0 2%;
  1029. line-height: 35px;
  1030. border-bottom: 1px solid rgba(255, 255, 255, .2);
  1031. font-size: 12px;
  1032. color: #fff;
  1033. }
  1034. .chgbox ul li .chglist_top img {
  1035. height: 22px;
  1036. vertical-align: middle;
  1037. }
  1038. .chgbox ul li .chglist_top .state {
  1039. display: block;
  1040. float: right;
  1041. font-size: 14px;
  1042. font-weight: 900;
  1043. }
  1044. .chgbox ul li .chglist_top .state.wait {
  1045. color: #73bee4;
  1046. }
  1047. .chgbox ul li .chglist_bot {
  1048. width: 100%;
  1049. margin: 5px 0;
  1050. }
  1051. .chgbox ul li .chglist_bot tr th {
  1052. font-size: 12px;
  1053. color: rgba(255, 255, 255, .5);
  1054. text-align: center;
  1055. padding: 5px 0;
  1056. }
  1057. .chgbox ul li .chglist_bot tr td {
  1058. width: 30%;
  1059. font-size: 14px;
  1060. color: rgba(255, 255, 255, .5);
  1061. text-align: center;
  1062. padding: 3px 0;
  1063. }
  1064. .chgbox ul li .chglist_bot tr th img {
  1065. height: 22px;
  1066. }
  1067. .chgbox ul li .chglist_bot tr td.bankid {
  1068. border-bottom: 1px solid rgba(255, 255, 255, .2);
  1069. text-align: left;
  1070. padding: 7px 2%;
  1071. }
  1072. .chgbox ul li .chglist_bot tr td.bankid b {
  1073. font-size: 16px;
  1074. }
  1075. .chgbox ul li .chglist_top .state.success {
  1076. color: #00c084;
  1077. }
  1078. .chgntb {
  1079. width: 96%;
  1080. height: auto;
  1081. overflow: hidden;
  1082. margin: 0 auto;
  1083. }
  1084. .chgntb .chgntb_top {
  1085. text-align: center;
  1086. font-size: 12px;
  1087. color: #ff0000;
  1088. margin: 15px;
  1089. }
  1090. .chgntb .chgntb_top img {
  1091. height: 22px;
  1092. margin-bottom: 5px;
  1093. }
  1094. .chgntb .chgntb_bot {
  1095. border: 1px solid rgba(255, 255, 255, .2);
  1096. border-bottom: none;
  1097. }
  1098. .chgntb .chgntb_bot table {
  1099. width: 100%;
  1100. }
  1101. .chgntb .chgntb_bot table td {
  1102. border-bottom: 1px solid rgba(255, 255, 255, .2);
  1103. padding: 10px;
  1104. }
  1105. .chgntb .chgntb_bot table td.tdleft {
  1106. font-size: 14px;
  1107. text-align: left;
  1108. color: rgba(255, 255, 255, .3);
  1109. }
  1110. .chgntb .chgntb_bot table td.tdright {
  1111. font-size: 14px;
  1112. text-align: right;
  1113. color: #fff;
  1114. }
  1115. .log_title .cashbut {
  1116. display: block;
  1117. width: 40px;
  1118. height: 2.5rem;
  1119. line-height: 2.5rem;
  1120. position: absolute;
  1121. z-index: 2;
  1122. right: 3%;
  1123. top: 0;
  1124. text-align: left;
  1125. background: url(../images/cash.png) right center no-repeat;
  1126. background-size: 18px;
  1127. }
  1128. .log_title .cashbut a {
  1129. display: block;
  1130. width: 100%;
  1131. height: 100%;
  1132. }
  1133. .cashbox {
  1134. width: 96%;
  1135. height: auto;
  1136. overflow: hidden;
  1137. margin: 0 auto;
  1138. border: 1px solid rgba(0, 0, 0, .5);
  1139. margin-top: 15px;
  1140. }
  1141. .cashbox .cashd ul li {
  1142. float: left;
  1143. width: 50%;
  1144. height:
  1145. }
  1146. .pages {
  1147. clear: both;
  1148. margin: 15px 15px 0px;
  1149. text-align: center;
  1150. font-size: 14px;
  1151. color: rgba(2558, 255, 255, .5);
  1152. }
  1153. .pages a {
  1154. background: #ffffff;
  1155. display: inline-block;
  1156. padding: 4px 8px;
  1157. border-radius: 3px;
  1158. font-size: 12px;
  1159. border: 1px solid #e55600;
  1160. margin: 10px 2px;
  1161. color: #e55600;
  1162. }
  1163. .pages a:hover {
  1164. text-decoration: none;
  1165. }
  1166. .pages .current,
  1167. .pages a:hover {
  1168. background: #e55600;
  1169. color: #ffffff;
  1170. padding: 4px 8px;
  1171. border-radius: 3px;
  1172. border: 1px solid #e55600;
  1173. margin: 0 2px;
  1174. }
  1175. .pages a.arr {
  1176. width: 19px;
  1177. height: 19px;
  1178. display: inline-block;
  1179. border-radius: 0;
  1180. border: 0;
  1181. }
  1182. .pages a.arr.prev {
  1183. background-position: -182px -286px;
  1184. }
  1185. .pages a:hover.arr.prev {
  1186. background-position: -182px -265px;
  1187. }
  1188. .pages a.arr.next {
  1189. background-position: -206px -265px;
  1190. }
  1191. .nwlist li {
  1192. margin-top: 15px;
  1193. }
  1194. .nwlist li .nwl_top {
  1195. border-bottom: 1px solid #dadadc;
  1196. border-top: 1px solid #dadadc;
  1197. padding: 0 2%;
  1198. height: 38px;
  1199. background: #fff;
  1200. }
  1201. .nwlist li .nwl_top img {
  1202. margin-top: 7px;
  1203. height: 23px;
  1204. float: left;
  1205. }
  1206. .nwlist li .nwl_top .rightext {
  1207. float: left;
  1208. margin-left: 10px;
  1209. }
  1210. .nwlist li .nwl_top .rightext h3 {
  1211. font-size: 15px;
  1212. color: #1d1d28;
  1213. margin-top: 6px;
  1214. }
  1215. .nwlist li .nwl_top .rightext .time {
  1216. font-size: 12px;
  1217. color: #999;
  1218. margin-top: 2px;
  1219. }
  1220. .nwlist li .nwl_bot {
  1221. padding: 15px 2%;
  1222. background: rgba(255, 255, 255, .4);
  1223. border-bottom: 1px solid #dadadc;
  1224. }
  1225. .nwlist li .nwl_bot h3 {
  1226. font-size: 15px;
  1227. color: #333333;
  1228. font-weight: 900;
  1229. margin-bottom: 10px;
  1230. line-height: 16px;
  1231. }
  1232. .nwlist li .nwl_bot h3 a {
  1233. color: #333;
  1234. }
  1235. .nwlist li .nwl_bot .desc {
  1236. font-size: 14px;
  1237. color: #666;
  1238. line-height: 20px;
  1239. }
  1240. .nwlist li .nwl_bot .desc a {
  1241. color: #666;
  1242. }
  1243. .morelist {
  1244. text-align: center;
  1245. font-size: 15px;
  1246. margin-top: 15px;
  1247. }
  1248. .morelist a {
  1249. color: #73bee4;
  1250. }
  1251. .selbox {
  1252. width: 96%;
  1253. height: auto;
  1254. overflow: hidden;
  1255. margin: 0 auto;
  1256. margin-top: 15px;
  1257. }
  1258. .selbox select {
  1259. width: 48%;
  1260. height: 40px;
  1261. font-size: 14px;
  1262. color: rgba(255, 255, 255, .5);
  1263. background: rgba(0, 0, 0, .5);
  1264. text-indent: 10px;
  1265. }
  1266. .nwdtsbox {
  1267. width: 100%;
  1268. height: auto;
  1269. overflow: hidden;
  1270. margin-top: 15px;
  1271. }
  1272. .nwdtsbox .nwtop {
  1273. height: auto;
  1274. overflow: hidden;
  1275. border-bottom: 1px solid #dadadc;
  1276. border-top: 1px solid #dadadc;
  1277. padding: 10px 2%;
  1278. background: #fff;
  1279. }
  1280. .nwdtsbox .nwbot {
  1281. height: auto;
  1282. overflow: hidden;
  1283. padding: 10px 2%;
  1284. background: rgba(255, 255, 255, .4);
  1285. border-bottom: 1px solid #dadadc;
  1286. font-size: 14px;
  1287. color: #666;
  1288. line-height: 20px;
  1289. }
  1290. .nwdtsbox .nwbot img {
  1291. max-width: 100%;
  1292. }
  1293. .nwdtsbox .nwtop h3 {
  1294. text-align: center;
  1295. font-size: 16px;
  1296. color: #333;
  1297. font-weight: 900;
  1298. }
  1299. .nwdtsbox .nwtop .time {
  1300. font-size: 14px;
  1301. color: #999;
  1302. text-align: center;
  1303. margin-top: 10px;
  1304. }
  1305. .hpiclist {
  1306. width: 96%;
  1307. height: auto;
  1308. overflow: hidden;
  1309. margin: 0 auto;
  1310. margin-top: 15px;
  1311. }
  1312. .hpiclist ul li {
  1313. width: 49%;
  1314. height: auto;
  1315. overflow: hidden;
  1316. float: left;
  1317. margin-right: 2%;
  1318. position: relative;
  1319. }
  1320. .hpiclist ul li:nth-child(2n) {
  1321. margin-right: 0px;
  1322. }
  1323. .hpiclist ul li img {
  1324. width: 100%;
  1325. }
  1326. .hpiclist ul li .cover {
  1327. position: absolute;
  1328. left: 0px;
  1329. top: 0px;
  1330. right: 0;
  1331. bottom: 0;
  1332. width: 100%;
  1333. height: 40px;
  1334. z-index: 1;
  1335. margin: auto;
  1336. }
  1337. .hpiclist ul li .cover h1 {
  1338. text-align: center;
  1339. font-size: 16px;
  1340. color: #fff;
  1341. }
  1342. .hpiclist ul li .cover p {
  1343. font-size: 14px;
  1344. color: #fff;
  1345. margin-top: 7px;
  1346. letter-spacing: 4px;
  1347. text-align: center;
  1348. }
  1349. .ifor_flow {
  1350. width: 92%;
  1351. height: auto;
  1352. overflow: hidden;
  1353. margin: 0 auto;
  1354. margin-top: 15px;
  1355. background: rgba(0, 0, 0, .5);
  1356. padding: 15px 2%;
  1357. font-size: 14px;
  1358. line-height: 20px;
  1359. color: rgba(255, 255, 255, .5);
  1360. }
  1361. .ifor_flow h2 {
  1362. font-size: 16px;
  1363. color: #73bee4;
  1364. font-weight: 900;
  1365. }
  1366. .ifor_flow p {
  1367. margin-top: 10px;
  1368. }
  1369. .nxslist {
  1370. width: 96%;
  1371. height: auto;
  1372. overflow: hidden;
  1373. margin: 0 auto;
  1374. }
  1375. .nxslist li .outborder {
  1376. border: 1px solid rgba(255, 255, 255, .2);
  1377. }
  1378. .nxslist li {
  1379. width: 100%;
  1380. height: auto;
  1381. overflow: hidden;
  1382. margin-top: 15px;
  1383. }
  1384. .nxslist li .xsltop {
  1385. width: 100%;
  1386. padding-left: 2%;
  1387. height: 35px;
  1388. line-height: 35px;
  1389. background: url(../images/rightarrow.png) 96% center no-repeat;
  1390. background-size: 10px;
  1391. font-size: 15px;
  1392. color: rgba(255, 255, 255, .9);
  1393. }
  1394. .nxslist li .xsltop img {
  1395. vertical-align: middle;
  1396. margin-right: 5px;
  1397. height: 22px;
  1398. margin-top: -2px;
  1399. }
  1400. .nxslist li .xslbot {
  1401. height: auto;
  1402. overflow: hidden;
  1403. background: rgba(41, 44, 52, .4);
  1404. margin-top: 0.8px;
  1405. padding: 5px 2%;
  1406. }
  1407. .nxslist li .xslbot table {
  1408. width: 100%;
  1409. }
  1410. .nxslist li .xslbot table tr td {
  1411. width: 25%;
  1412. font-size: 14px;
  1413. color: rgba(255, 255, 255, .7);
  1414. line-height: 20px;
  1415. padding: 2px;
  1416. }
  1417. .nxslist li .xslbot table tr th {
  1418. padding: 2px;
  1419. }
  1420. .nxslist li .xslbot table tr th.price {
  1421. font-size: 20px;
  1422. font-weight: 900;
  1423. color: rgba(255, 255, 255, .9);
  1424. }
  1425. .nxslist li .xslbot table tr th.price img {
  1426. height: 16px;
  1427. }
  1428. .nxslist li .xslbot table tr th.percent {
  1429. text-align: right;
  1430. font-size: 14px;
  1431. font-weight: normal;
  1432. color: #fff;
  1433. }
  1434. .nmenubox {
  1435. width: 100%;
  1436. height: auto;
  1437. overflow: hidden;
  1438. background: #fff;
  1439. margin-top: 15px;
  1440. }
  1441. .nmenubox ul li {
  1442. width: 50%;
  1443. height: auto;
  1444. overflow: hidden;
  1445. float: left;
  1446. text-align: center;
  1447. line-height: 1.0;
  1448. border-bottom: 1px solid #efeff4;
  1449. }
  1450. .nmenubox ul li a {
  1451. display: block;
  1452. border-right: 1px solid #efeff4;
  1453. height: 100%;
  1454. padding: 15px 0;
  1455. }
  1456. .nmenubox ul li p {
  1457. text-align: center;
  1458. font-size: 14px;
  1459. color: #666;
  1460. margin-top: 2px;
  1461. }
  1462. .nmenubox ul li img {
  1463. height: 30px;
  1464. }
  1465. .nhpiclist {
  1466. width: 96%;
  1467. height: auto;
  1468. overflow: hidden;
  1469. margin: 0 auto;
  1470. padding: 10px 2%;
  1471. margin-top: 15px;
  1472. background: #fff;
  1473. }
  1474. .nhpiclist h3 {
  1475. font-size: 18px;
  1476. color: #292c34;
  1477. margin-bottom: 10px;
  1478. }
  1479. .nhpiclist ul li {
  1480. width: 49%;
  1481. height: auto;
  1482. overflow: hidden;
  1483. float: left;
  1484. margin-right: 2%;
  1485. position: relative;
  1486. }
  1487. .nhpiclist ul li:nth-child(2n) {
  1488. margin-right: 0px;
  1489. }
  1490. .nhpiclist ul li img {
  1491. width: 100%;
  1492. }
  1493. .nhpiclist ul li .cover {
  1494. position: absolute;
  1495. left: 0px;
  1496. top: 0px;
  1497. right: 0;
  1498. bottom: 0;
  1499. width: 100%;
  1500. height: 40px;
  1501. z-index: 1;
  1502. margin: auto;
  1503. }
  1504. .nhpiclist ul li .cover h1 {
  1505. text-align: center;
  1506. font-size: 16px;
  1507. color: #fff;
  1508. }
  1509. .nhpiclist ul li .cover p {
  1510. font-size: 14px;
  1511. color: #fff;
  1512. margin-top: 7px;
  1513. letter-spacing: 4px;
  1514. text-align: center;
  1515. }
  1516. .darkbg {
  1517. background: #1d1d29;
  1518. }
  1519. .layui-layer-msg {
  1520. width: 80%!important;
  1521. left: 10%!important;
  1522. }
  1523. /*******************************help*****************************/
  1524. .helpmain {
  1525. width: 96%;
  1526. height: auto;
  1527. overflow: hidden;
  1528. margin: 0 auto;
  1529. margin-top: 15px;
  1530. }
  1531. .helpmain .helplist {
  1532. height: 40px;
  1533. background: #0e0e14;
  1534. font-size: 14px;
  1535. color: #fff;
  1536. line-height: 40px;
  1537. padding: 0 2%;
  1538. border-radius: 2px;
  1539. margin-bottom: 5px;
  1540. }
  1541. .helpmain .helplist img {
  1542. vertical-align: middle;
  1543. max-height: 25px;
  1544. width: 23px;
  1545. margin-right: 5px;
  1546. }
  1547. .helpmain .helplist a {
  1548. color: #fff;
  1549. display: block;
  1550. width: 100%;
  1551. height: 100%;
  1552. background: url(../images/rightarrow.png) right center no-repeat;
  1553. background-size: 10px;
  1554. }
  1555. .helpmain .helplist.nwlist a {
  1556. background: url(../images/closebut.png) right center no-repeat;
  1557. background-size: 15px;
  1558. }
  1559. .helpmain .helplist.nwlist.open a {
  1560. background: url(../images/openbut.png) right center no-repeat;
  1561. background-size: 15px;
  1562. }
  1563. .helpmain .nwlistbot {
  1564. display: none;
  1565. width: 100%;
  1566. height: auto;
  1567. overflow: hidden;
  1568. background: #0e0e14;
  1569. margin-top: -5px;
  1570. margin-bottom: 5px;
  1571. }
  1572. .helpmain .nwlistbot ul {
  1573. padding: 0 2%;
  1574. }
  1575. .helpmain .nwlistbot ul li {
  1576. height: 40px;
  1577. border-top: 1px solid rgba(255, 255, 255, .1);
  1578. background: url(../images/rightarrow.png) right center no-repeat;
  1579. background-size: 10px;
  1580. font-size: 14px;
  1581. color: #fff;
  1582. line-height: 40px;
  1583. padding-left: 28px;
  1584. }
  1585. .helpmain .nwlistbot ul li a {
  1586. color: #fff;
  1587. display: block;
  1588. width: 100%;
  1589. height: 100%;
  1590. }
  1591. .chgbox ul li .banktable {
  1592. width: 100%;
  1593. }
  1594. .chgbox ul li .banktable tr th {
  1595. font-size: 12px;
  1596. color: rgba(255, 255, 255, .5);
  1597. text-align: center;
  1598. padding: 5px 0;
  1599. }
  1600. .chgbox ul li .banktable tr td {
  1601. width: 30%;
  1602. font-size: 14px;
  1603. line-height: 16px;
  1604. color: rgba(255, 255, 255, .5);
  1605. text-align: left;
  1606. padding: 3px 0;
  1607. padding: 6px 0;
  1608. padding-left: 6px;
  1609. }
  1610. .chgbox ul li .banktable tr th img {
  1611. height: 22px;
  1612. }
  1613. .chgbox ul li .banktable tr td.bankid {
  1614. border-bottom: 1px solid rgba(255, 255, 255, .2);
  1615. text-align: left;
  1616. padding: 8px 6px;
  1617. background: rgba(255, 255, 255, .05);
  1618. }
  1619. .chgbox ul li .banktable tr td.bankid b {
  1620. font-size: 16px;
  1621. }
  1622. .chgbox .qbname {
  1623. text-align: center;
  1624. margin-bottom: 15px;
  1625. }
  1626. .chgbox .qbname img {
  1627. max-width: 40px;
  1628. }
  1629. .chgbox .qbname p {
  1630. margin-top: 5px;
  1631. font-size: 16px;
  1632. color: rgba(255, 255, 255, .9);
  1633. }
  1634. .chgbox ul li .qbtable {
  1635. width: 100%;
  1636. }
  1637. .chgbox ul li .qbtable tr th {
  1638. font-size: 12px;
  1639. color: rgba(255, 255, 255, .5);
  1640. text-align: center;
  1641. padding: 5px 0;
  1642. }
  1643. .chgbox ul li .qbtable tr td {
  1644. width: 30%;
  1645. font-size: 14px;
  1646. line-height: 16px;
  1647. color: rgba(255, 255, 255, .5);
  1648. text-align: left;
  1649. padding: 3px 0;
  1650. padding: 4px 0;
  1651. padding-left: 6px;
  1652. word-break: break-all;
  1653. }
  1654. .chgbox ul li .qbtable tr th img {
  1655. height: 22px;
  1656. }
  1657. .chgbox ul li .qbtable tr td.bankid {
  1658. border-bottom: 1px solid rgba(255, 255, 255, .2);
  1659. text-align: left;
  1660. padding: 8px 6px;
  1661. background: rgba(255, 255, 255, .05);
  1662. }
  1663. .chgbox ul li .qbtable tr td.bankid b {
  1664. font-size: 16px;
  1665. }
  1666. .chgbox ul li .qbtable tr td .state {
  1667. vertical-align: top;
  1668. float: right;
  1669. }
  1670. .chgbox ul li .withdrawtop {
  1671. border-bottom: 1px solid rgba(255, 255, 255, .2);
  1672. text-align: left;
  1673. padding: 8px 6px;
  1674. padding-right: 10%;
  1675. background: rgba(255, 255, 255, .05) url(../images/openbut.png) 97% center no-repeat;
  1676. background-size: 15px;
  1677. font-size: 14px;
  1678. line-height: 16px;
  1679. color: rgba(255, 255, 255, .5);
  1680. }
  1681. .chgbox ul li .withdrawtop b {
  1682. font-size: 16px;
  1683. }
  1684. .chgbox ul li .withdrawtable {
  1685. width: 96%;
  1686. margin: 0 auto;
  1687. border-bottom: 1px solid rgba(255, 255, 255, .2);
  1688. }
  1689. .chgbox ul li .withdrawtable tr th {
  1690. font-size: 14px;
  1691. color: rgba(255, 255, 255, .5);
  1692. text-align: center;
  1693. padding: 5px 0;
  1694. padding-top: 10px;
  1695. font-weight: normal;
  1696. line-height: 20px;
  1697. }
  1698. .chgbox ul li .withdrawtable tr th b {
  1699. font-weight: 900;
  1700. }
  1701. .chgbox ul li .withdrawtable tr td {
  1702. width: 30%;
  1703. font-size: 14px;
  1704. line-height: 16px;
  1705. color: rgba(255, 255, 255, .5);
  1706. text-align: left;
  1707. padding: 3px 0;
  1708. padding: 4px 0;
  1709. word-break: break-all;
  1710. }
  1711. .chgbox ul li .withdrawtable tr th img {
  1712. height: 22px;
  1713. }
  1714. .chgbox ul li .withdrawtop.on {
  1715. background: rgba(255, 255, 255, .05) url(../images/closebut.png) 97% center no-repeat;
  1716. background-size: 15px;
  1717. }
  1718. .chgbox ul li.nobotcolor {
  1719. border-bottom: none;
  1720. }
  1721. .chgbox ul li .withdrawtable.bottable {
  1722. border-bottom: 0px;
  1723. display: none;
  1724. }
  1725. .chgbox ul li .withdrawtable.nobotcolor {
  1726. border-bottom: none;
  1727. }
  1728. .chgbox .rechargetop {
  1729. border-bottom: 1px solid rgba(255, 255, 255, .2);
  1730. font-size: 14px;
  1731. line-height: 16px;
  1732. color: rgba(255, 255, 255, .5);
  1733. text-align: left;
  1734. padding: 8px 6px;
  1735. background: rgba(255, 255, 255, .05);
  1736. }
  1737. .chgbox .rechargetop b {
  1738. font-size: 16px;
  1739. }
  1740. .chgbox ul li .rmb_top {
  1741. background: rgba(255, 255, 255, .05);
  1742. height: 35px;
  1743. padding: 0 2%;
  1744. line-height: 35px;
  1745. border-bottom: 1px solid rgba(255, 255, 255, .2);
  1746. font-size: 14px;
  1747. color: rgba(255, 255, 255, .5);
  1748. text-align: center;
  1749. }
  1750. .chgbox ul li .rmb_top img {
  1751. height: 22px;
  1752. vertical-align: middle;
  1753. }
  1754. .chgbox ul li .rmb_bot {
  1755. width: 100%;
  1756. }
  1757. .chgbox ul li .rmb_bot tr th {
  1758. background: rgba(255, 255, 255, .05);
  1759. font-size: 14px;
  1760. color: rgba(255, 255, 255, .5);
  1761. font-weight: normal;
  1762. text-align: center;
  1763. padding: 5px 0;
  1764. padding-top: 10px;
  1765. }
  1766. .chgbox ul li .rmb_bot tr td {
  1767. background: rgba(255, 255, 255, .05);
  1768. width: 30%;
  1769. font-size: 14px;
  1770. line-height: 16px;
  1771. color: rgba(255, 255, 255, .5);
  1772. text-align: center;
  1773. padding: 3px 0;
  1774. padding: 4px 0;
  1775. padding-left: 6px;
  1776. word-break: break-all;
  1777. padding-bottom: 10px;
  1778. }
  1779. .chgbox ul li .rmb_bot tr th img {
  1780. height: 22px;
  1781. }
  1782. .chgbox ul li .rmb_bot tr td.bankid {
  1783. border-bottom: 1px solid rgba(255, 255, 255, .2);
  1784. text-align: left;
  1785. padding: 8px 6px;
  1786. background: rgba(255, 255, 255, .05);
  1787. }
  1788. .chgbox ul li .rmb_bot tr td.bankid b {
  1789. font-size: 16px;
  1790. }
  1791. .chgbox ul li .rmb_bot tr td .state {
  1792. vertical-align: top;
  1793. float: right;
  1794. }
  1795. .chgbox ul li .jf_table {
  1796. width: 96%;
  1797. margin: 0 auto;
  1798. }
  1799. .chgbox ul li .jf_table tr th {
  1800. font-size: 14px;
  1801. color: rgba(255, 255, 255, .5);
  1802. font-weight: normal;
  1803. text-align: center;
  1804. padding: 5px 0;
  1805. }
  1806. .chgbox ul li .jf_table tr td {
  1807. width: 30%;
  1808. font-size: 14px;
  1809. line-height: 16px;
  1810. color: rgba(255, 255, 255, .5);
  1811. text-align: center;
  1812. padding: 3px 0;
  1813. padding: 4px 0;
  1814. padding-left: 6px;
  1815. word-break: break-all;
  1816. }
  1817. .chgbox ul li .jf_table tr td img {
  1818. height: 22px;
  1819. vertical-align: middle;
  1820. }
  1821. .chgbox ul li .jf_table tr td.bankid {
  1822. border-bottom: 1px solid rgba(255, 255, 255, .2);
  1823. text-align: left;
  1824. padding: 8px 6px;
  1825. background: rgba(255, 255, 255, .05);
  1826. }
  1827. .chgbox ul li .jf_table tr td.bankid b {
  1828. font-size: 16px;
  1829. }
  1830. .chgbox ul li .jf_table tr td .state {
  1831. vertical-align: top;
  1832. float: right;
  1833. }
  1834. .chgbox ul li .jf_top {
  1835. font-size: 14px;
  1836. color: rgba(255, 255, 255, .5);
  1837. border-bottom: 1px solid rgba(255, 255, 255, .2);
  1838. text-align: left;
  1839. padding: 8px 6px;
  1840. background: rgba(255, 255, 255, .05);
  1841. }
  1842. .chgbox ul li .jf_top img {
  1843. height: 22px;
  1844. vertical-align: middle;
  1845. }
  1846. .chgbox ul li .jf_table tr td.total {
  1847. text-align: left;
  1848. border-top: 1px solid rgba(255, 255, 255, .1);
  1849. padding: 8px 0;
  1850. }
  1851. .logbot .successicon {
  1852. text-align: center;
  1853. margin-top: 20px;
  1854. }
  1855. .logbot .successicon img {
  1856. height: 40px;
  1857. }
  1858. .logbot .infors.infors_top {
  1859. height: auto;
  1860. overflow: hidden;
  1861. border: 1px solid rgba(255, 255, 255, .2);
  1862. }
  1863. .logbot .infors .infor_table {
  1864. width: 100%;
  1865. }
  1866. .logbot .infors .infor_table .tdleft {
  1867. width: 30%;
  1868. text-align: left;
  1869. font-size: 14px;
  1870. color: rgba(255, 255, 255, .5);
  1871. padding: 7px 0;
  1872. padding-left: 6px;
  1873. }
  1874. .logbot .infors .infor_table .tdright {
  1875. text-align: right;
  1876. font-size: 14px;
  1877. color: rgba(255, 255, 255, 1);
  1878. padding: 5px 0;
  1879. padding-right: 6px;
  1880. }
  1881. .logbot .infors .infor_table td {
  1882. border-bottom: 1px solid rgba(255, 255, 255, .1);
  1883. }
  1884. .logbot .infors .infor_table tr:last-child td {
  1885. border-bottom: none;
  1886. }
  1887. .gotrade1 {
  1888. color: rgba(255, 255, 255, .5);
  1889. border: 1px solid rgba(255, 255, 255, .2);
  1890. display: block;
  1891. height: 40px;
  1892. margin: 0 auto;
  1893. font-size: 14px;
  1894. text-align: center;
  1895. line-height: 40px;
  1896. border-radius: 2px;
  1897. }
  1898. .chgbox ul li .jfcz_table {
  1899. width: 100%;
  1900. margin: 0 auto;
  1901. }
  1902. .chgbox ul li .jfcz_table tr th {
  1903. font-size: 14px;
  1904. color: rgba(255, 255, 255, .5);
  1905. font-weight: normal;
  1906. text-align: center;
  1907. padding: 5px 0;
  1908. }
  1909. .chgbox ul li .jfcz_table tr td {
  1910. width: 30%;
  1911. font-size: 14px;
  1912. line-height: 18px;
  1913. color: rgba(255, 255, 255, .5);
  1914. text-align: left;
  1915. padding: 3px 0;
  1916. padding: 3px 0;
  1917. padding-left: 6px;
  1918. word-break: break-all;
  1919. }
  1920. .chgbox ul li .jfcz_table tr td img {
  1921. height: 22px;
  1922. vertical-align: middle;
  1923. }
  1924. .chgbox ul li .jfcz_table tr td.bankid {
  1925. border-bottom: 1px solid rgba(255, 255, 255, .2);
  1926. text-align: left;
  1927. padding: 8px 6px;
  1928. background: rgba(255, 255, 255, .05);
  1929. }
  1930. .chgbox ul li .jfcz_table tr td.bankid b {
  1931. font-size: 16px;
  1932. }
  1933. .chgbox ul li .jfcz_table tr td .state {
  1934. vertical-align: top;
  1935. float: right;
  1936. }
  1937. .chgbox ul li .weituo_top {
  1938. border-bottom: 1px solid rgba(255, 255, 255, .2);
  1939. text-align: left;
  1940. padding: 8px 6px;
  1941. background: rgba(255, 255, 255, .05);
  1942. font-size: 14px;
  1943. line-height: 18px;
  1944. color: rgba(255, 255, 255, .5)
  1945. }
  1946. .chgbox ul li .weituo_top b {
  1947. font-size: 16px;
  1948. }
  1949. .chgbox ul li .weituo_bot {
  1950. width: 100%;
  1951. }
  1952. .chgbox ul li .weituo_bot tr th {
  1953. background: rgba(255, 255, 255, .05);
  1954. font-size: 14px;
  1955. color: rgba(255, 255, 255, .5);
  1956. font-weight: normal;
  1957. text-align: center;
  1958. padding: 5px 0;
  1959. }
  1960. .chgbox ul li .weituo_bot tr td {
  1961. background: rgba(255, 255, 255, .05);
  1962. font-size: 14px;
  1963. line-height: 16px;
  1964. color: rgba(255, 255, 255, .5);
  1965. text-align: center;
  1966. padding: 5px 0;
  1967. word-break: break-all;
  1968. }
  1969. .chgbox ul li .weituo_bot tr th img {
  1970. height: 22px;
  1971. }
  1972. .chgbox ul li .weituo_bot tr td.bankid {
  1973. border-bottom: 1px solid rgba(255, 255, 255, .2);
  1974. text-align: left;
  1975. padding: 8px 6px;
  1976. background: rgba(255, 255, 255, .05);
  1977. }
  1978. .chgbox ul li .weituo_bot tr td.bankid b {
  1979. font-size: 16px;
  1980. }
  1981. .chgbox ul li .weituo_bot tr td .state {
  1982. vertical-align: top;
  1983. float: right;
  1984. }
  1985. .chgbox ul li .cj_table {
  1986. width: 100%;
  1987. }
  1988. .chgbox ul li .cj_table tr th {
  1989. font-size: 14px;
  1990. color: rgba(255, 255, 255, .5);
  1991. font-weight: normal;
  1992. text-align: center;
  1993. padding: 5px 0;
  1994. }
  1995. .chgbox ul li .cj_table tr td {
  1996. font-size: 14px;
  1997. line-height: 16px;
  1998. color: rgba(255, 255, 255, .5);
  1999. text-align: center;
  2000. padding: 5px 0;
  2001. word-break: break-all;
  2002. }
  2003. .chgbox ul li .cj_table tr th img {
  2004. height: 22px;
  2005. }
  2006. .chgbox ul li .cj_table tr td.bankid {
  2007. border-bottom: 1px solid rgba(255, 255, 255, .1);
  2008. text-align: left;
  2009. padding: 9px 6px;
  2010. background: rgba(255, 255, 255, .05);
  2011. }
  2012. .chgbox ul li .cj_table tr td.bankid b {
  2013. font-size: 16px;
  2014. }
  2015. .chgbox ul li .cj_table tr td .state {
  2016. vertical-align: top;
  2017. float: right;
  2018. }