style.min.css 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946
  1. @charset 'utf-8';
  2. /*************** global start ***************/
  3. html,body,div,ul,li,pre,blockquote,h1,h2,h3,h4,h5,h6,p,a,img,table,tr,td,dd,dt,dl {
  4. padding: 0;
  5. margin: 0;
  6. border: 0;
  7. text-decoration: none;
  8. }
  9. html {
  10. -ms-text-size-adjust: 100%;
  11. -webkit-text-size-adjust: 100%;
  12. }
  13. li {
  14. list-style: none;
  15. }
  16. article,aside,details,figcaption,figure,footer,header,hgroup,main,nav,section,summary {
  17. display: block;
  18. }
  19. audio,canvas,progress,video {
  20. display: inline-block;
  21. vertical-align: baseline;
  22. }
  23. canvas {
  24. image-rendering: -o-crisp-edges;
  25. image-rendering: optimize-contrast;
  26. -ms-interpolation-mode: nearest-neighbor;
  27. -webkit-tap-highlight-color: rgba(0,0,0,0);
  28. -moz-tap-highlight-color: rgba(0,0,0,0);
  29. tap-highlight-color: rgba(0,0,0,0);
  30. user-select: none;
  31. -webkit-touch-callout: none;
  32. -webkit-user-select: none;
  33. -moz-user-select: none;
  34. -ms-user-select: none;
  35. }
  36. audio:not([controls]) {
  37. display: none;
  38. height: 0;
  39. }
  40. [hidden],template {
  41. display: none;
  42. }
  43. a {
  44. background: transparent;
  45. }
  46. a:active,a:hover {
  47. outline: 0;
  48. }
  49. abbr[title] {
  50. border-bottom: 1px dotted;
  51. }
  52. b,strong {
  53. font-weight: bold;
  54. }
  55. dfn {
  56. font-style: italic;
  57. }
  58. h1 {
  59. font-size: 2em;
  60. margin: 0.67em 0;
  61. }
  62. mark {
  63. background: #ff0;
  64. color: #000;
  65. }
  66. small {
  67. font-size: 80%;
  68. }
  69. sub,sup {
  70. font-size: 75%;
  71. line-height: 0;
  72. position: relative;
  73. vertical-align: baseline;
  74. }
  75. sup {
  76. top: -0.5em;
  77. }
  78. sub {
  79. bottom: -0.25em;
  80. }
  81. img {
  82. border: 0;
  83. }
  84. svg:not(:root) {
  85. overflow: hidden;
  86. }
  87. figure {
  88. margin: 1em 40px;
  89. }
  90. hr {
  91. -moz-box-sizing: content-box;
  92. box-sizing: content-box;
  93. height: 0;
  94. }
  95. pre {
  96. overflow: auto;
  97. }
  98. code,kbd,pre,samp {
  99. font-family: monospace,monospace;
  100. font-size: 1em;
  101. }
  102. button,input,optgroup,select,textarea {
  103. color: inherit;
  104. font: inherit;
  105. margin: 0;
  106. }
  107. button {
  108. overflow: visible;
  109. }
  110. button,select {
  111. text-transform: none;
  112. }
  113. button,html input[type='button'],input[type='reset'],input[type='submit'] {
  114. -webkit-appearance: button;
  115. cursor: pointer;
  116. }
  117. button[disabled],html input[disabled] {
  118. cursor: default;
  119. }
  120. button::-moz-focus-inner,input::-moz-focus-inner {
  121. border: 0;
  122. padding: 0;
  123. }
  124. input {
  125. line-height: normal;
  126. }
  127. input[type='checkbox'],input[type='radio'] {
  128. box-sizing: border-box;
  129. padding: 0;
  130. }
  131. input[type='number']::-webkit-inner-spin-button,input[type='number']::-webkit-outer-spin-button {
  132. height: auto;
  133. }
  134. input[type='search'] {
  135. -webkit-appearance: textfield;
  136. -moz-box-sizing: content-box;
  137. -webkit-box-sizing: content-box;
  138. box-sizing: content-box;
  139. }
  140. input[type='search']::-webkit-search-cancel-button,input[type='search']::-webkit-search-decoration {
  141. -webkit-appearance: none;
  142. }
  143. fieldset {
  144. border: 1px solid #c0c0c0;
  145. margin: 0 2px;
  146. padding: 0.35em 0.625em 0.75em;
  147. }
  148. legend {
  149. border: 0;
  150. padding: 0;
  151. }
  152. textarea {
  153. overflow: auto;
  154. }
  155. optgroup {
  156. font-weight: bold;
  157. }
  158. table {
  159. border-collapse: collapse;
  160. border-spacing: 0;
  161. width: 100%;
  162. }
  163. td,th {
  164. padding: 0;
  165. }
  166. html,button,input,select,textarea {
  167. color: #222;
  168. }
  169. body {
  170. font-size: 1em;
  171. line-height: 1.4;
  172. }
  173. ::-moz-selection {
  174. background: #b3d4fc;
  175. text-shadow: none;
  176. }
  177. ::selection {
  178. background: #b3d4fc;
  179. text-shadow: none;
  180. }
  181. ::-webkit-scrollbar {
  182. width: 14px;
  183. }
  184. hr {
  185. display: block;
  186. height: 1px;
  187. border: 0;
  188. border-top: 1px solid #ccc;
  189. margin: 1em 0;
  190. padding: 0;
  191. }
  192. img {
  193. vertical-align: middle;
  194. }
  195. fieldset {
  196. border: 0;
  197. margin: 0;
  198. padding: 0;
  199. }
  200. textarea {
  201. resize: vertical;
  202. }
  203. .chromeframe {
  204. margin: 0.2em 0;
  205. background: #ccc;
  206. color: #000;
  207. padding: 0.2em 0;
  208. }
  209. body {
  210. background-color: #f4f4f4;
  211. font-family: 'Tahoma','Helvetica','Arial','Lucida Grande','Microsoft Yahei','Hiragino Sans GB','STXihei';
  212. width: 100%;
  213. height: 100%;
  214. }
  215. .wrapper {
  216. width: 90%;
  217. margin: 0 5%;
  218. }
  219. .header-container {
  220. border-bottom: 2px solid #eee;
  221. }
  222. nav ul {
  223. margin: 0;
  224. padding: 0;
  225. }
  226. nav a {
  227. display: block;
  228. margin-bottom: 10px;
  229. padding: 15px 0;
  230. text-align: center;
  231. text-decoration: none;
  232. font-weight: bold;
  233. color: white;
  234. background: #e44d26;
  235. }
  236. nav a:hover,nav a:visited {
  237. color: white;
  238. }
  239. nav a:hover {
  240. text-decoration: underline;
  241. }
  242. .main {
  243. padding: 30px 0;
  244. }
  245. .main article h1 {
  246. font-size: 2em;
  247. }
  248. .main aside {
  249. color: white;
  250. padding: 0px 5% 10px;
  251. }
  252. .footer-container footer {
  253. color: white;
  254. padding: 20px 0;
  255. }
  256. .ie7 .title {
  257. padding-top: 20px;
  258. }
  259. @media only screen and (max-width:480px) {
  260. .home-main {
  261. -webkit-transform: scale(0.5,0.5);
  262. -moz-transform: scale(0.5,0.5);
  263. -ms-transform: scale(0.5,0.5);
  264. -o-transform: scale(0.5,0.5);
  265. transform: scale(0.5,0.5);
  266. position: relative;
  267. width: 640px;
  268. left: 50%;
  269. margin-top: 1px;
  270. margin-left: -320px;
  271. float: left;
  272. height: 1px;
  273. }
  274. }
  275. @media only screen and (min-width:480px) {
  276. nav a {
  277. float: left;
  278. width: 27%;
  279. margin: 0 1.7%;
  280. padding: 25px 2%;
  281. margin-bottom: 0;
  282. }
  283. nav li:first-child a {
  284. margin-left: 0;
  285. }
  286. nav li:last-child a {
  287. margin-right: 0;
  288. }
  289. nav ul li {
  290. display: inline;
  291. }
  292. .oldie nav a {
  293. margin: 0 0.7%;
  294. }
  295. .home-main {
  296. -webkit-transform: scale(0.5,0.5);
  297. -moz-transform: scale(0.5,0.5);
  298. -ms-transform: scale(0.5,0.5);
  299. -o-transform: scale(0.5,0.5);
  300. transform: scale(0.5,0.5);
  301. position: relative;
  302. width: 640px;
  303. left: 50%;
  304. margin-top: 1px;
  305. margin-left: -320px;
  306. float: left;
  307. height: 1px;
  308. }
  309. }
  310. @media only screen and (min-width:768px) {
  311. .main aside {
  312. -webkit-box-shadow: 0 5px 10px #aaa;
  313. -moz-box-shadow: 0 5px 10px #aaa;
  314. box-shadow: 0 5px 10px #aaa;
  315. }
  316. .title {
  317. float: left;
  318. }
  319. nav {
  320. float: right;
  321. width: 38%;
  322. }
  323. .main article {
  324. width: 50%;
  325. margin: 0 auto;
  326. }
  327. .main aside {
  328. float: right;
  329. width: 28%;
  330. }
  331. .home-main {
  332. -webkit-transform: scale(0.8);
  333. -moz-transform: scale(0.8);
  334. -ms-transform: scale(0.8);
  335. -o-transform: scale(0.8);
  336. transform: scale(0.8);
  337. position: relative;
  338. width: 100%;
  339. left: 0;
  340. margin: 1px auto;
  341. height: 1px;
  342. }
  343. }
  344. @media only screen and (min-width:1140px) {
  345. .wrapper {
  346. width: 1026px;
  347. margin: 0 auto;
  348. }
  349. .home-main {
  350. -webkit-transform: scale(1);
  351. -moz-transform: scale(1);
  352. -ms-transform: scale(1);
  353. -o-transform: scale(1);
  354. transform: scale(1);
  355. position: relative;
  356. width: 100%;
  357. left: 0;
  358. margin: 1px auto;
  359. }
  360. }
  361. .hidden {
  362. display: none !important;
  363. visibility: hidden;
  364. }
  365. .invisible {
  366. visibility: hidden;
  367. }
  368. .clearfix:before,.clearfix:after {
  369. content: ' ';
  370. display: table;
  371. }
  372. .clearfix:after {
  373. clear: both;
  374. }
  375. .clearfix {
  376. *zoom: 1;
  377. }
  378. @media print {
  379. * {
  380. background: transparent !important;
  381. color: #000 !important;
  382. box-shadow: none !important;
  383. text-shadow: none !important;
  384. }
  385. a,a:visited {
  386. text-decoration: underline;
  387. }
  388. a[href]:after {
  389. content: ' (' attr(href) ')';
  390. }
  391. abbr[title]:after {
  392. content: ' (' attr(title) ')';
  393. }
  394. .ir a:after,a[href^='javascript:']:after,a[href^='#']:after {
  395. content: '';
  396. }
  397. pre,blockquote {
  398. border: 1px solid #999;
  399. page-break-inside: avoid;
  400. }
  401. thead {
  402. display: table-header-group;
  403. }
  404. tr,img {
  405. page-break-inside: avoid;
  406. }
  407. img {
  408. max-width: 100% !important;
  409. }
  410. @ page {
  411. margin: 0.5cm;
  412. }
  413. p,h2,h3 {
  414. orphans: 3;
  415. widows: 3;
  416. }
  417. h2,h3 {
  418. page-break-after: avoid;
  419. }
  420. }
  421. /*************** global start ***************/
  422. /*************** home start ***************/
  423. #meiriq {
  424. font-size: 22px;
  425. color: #369;
  426. position: absolute;
  427. left: 50%;
  428. bottom: -15%;
  429. margin-left: -100px;
  430. }
  431. .main-container {
  432. height: 460px;
  433. }
  434. .main-container iframe {
  435. position: relative;
  436. left: 50%;
  437. margin-left: -160px;
  438. }
  439. .banner {
  440. position: relative;
  441. float: left;
  442. width: 100%;
  443. }
  444. .banner .banner-img {
  445. background: url('../image/bannner.jpg?20140714V7') no-repeat scroll center top;
  446. height: 310px;
  447. width: 640px;
  448. margin: 0 auto;
  449. }
  450. .banner .banner-opacity {
  451. background: #000;
  452. opacity: 0.8;
  453. position: absolute;
  454. height: 50px;
  455. width: 100%;
  456. left: 0;
  457. bottom: 0;
  458. }
  459. .banner .banner-content {
  460. position: absolute;
  461. height: 50px;
  462. width: 100%;
  463. left: 0;
  464. bottom: 0;
  465. }
  466. .game-list {
  467. float: left;
  468. background: #f4f4f4;
  469. width: 100%
  470. }
  471. .game-list ul {
  472. float: left;
  473. margin-top: 14px;
  474. width: 100%;
  475. overflow: hidden;
  476. }
  477. .game-list ul li {
  478. float: left;
  479. height: 202px;
  480. background: #fff;
  481. border-top: 1px solid #ddd;
  482. border-bottom: 1px solid #ddd;
  483. position: relative;
  484. margin: 10px 0;
  485. padding-right: 2%;
  486. overflow: hidden;
  487. width: 100%;
  488. }
  489. .game-list ul li .icon {
  490. float: left;
  491. height: 128px;
  492. width: 128px;
  493. margin: 22px 24px 50px 22px;
  494. border-radius: 25px;
  495. }
  496. .game-list ul li .icon img {
  497. float: left;
  498. height: 128px;
  499. width: 128px;
  500. display: block;
  501. border-radius: 25px;
  502. }
  503. .game-list ul li .game-info {
  504. display: block;
  505. height: 180px;
  506. margin: 0 0 0 150px;
  507. }
  508. .game-list ul li .game-info .name {
  509. height: 40px;
  510. line-height: 40px;
  511. width: 290px;
  512. overflow: hidden;
  513. text-overflow: ellipsis;
  514. white-space: nowrap;
  515. font-size: 32px;
  516. color: #2a2a2a;
  517. display: block;
  518. margin-top: 26px;
  519. font-weight: 700;
  520. }
  521. .game-list ul li .game-info .rank-info {
  522. line-height: 52px;
  523. height: 50px;
  524. font-size: 18px;
  525. display: block;
  526. }
  527. .game-list ul li .game-info .rank-info .home-rank {
  528. margin-right: 30px;
  529. }
  530. .game-list ul li .game-info .rank-info .rank-icon {
  531. background: url('../image/home-icon.png?20140714V7') no-repeat scroll -36px -4px;
  532. width: 24px;
  533. height: 24px;
  534. display: inline-block;
  535. vertical-align: -6px;
  536. margin-right: 3px;
  537. }
  538. .game-list ul li .game-info .rank-info .rank-key,.game-list ul li .game-info .rank-info .rank-value {
  539. color: #f60;
  540. font-weight: bold;
  541. }
  542. .game-list ul li .game-info .rank-info .num-cion {
  543. background: url('../image/home-icon.png?20140714V7') no-repeat scroll -68px -4px;
  544. width: 24px;
  545. height: 24px;
  546. display: inline-block;
  547. vertical-align: -6px;
  548. /*margin: 0 3px 0 30px;*/
  549. margin: 0 3px 0 0;
  550. }
  551. .game-list ul li .game-info .rank-info .num-value,.game-list ul li .game-info .rank-info .num-key {
  552. color: #7a7a7a;
  553. }
  554. .game-list ul li .game-info .summary {
  555. font-size: 1.4em;
  556. color: #7a7a7a;
  557. display: block;
  558. padding-right: 30px;
  559. }
  560. .game-list ul li .game-info .challenge {
  561. position: absolute;
  562. line-height: 52px;
  563. height: 52px;
  564. width: 140px;
  565. right: 5%;
  566. top: 22px;
  567. background: #3399dc;
  568. text-align: center;
  569. color: #fff;
  570. font-size: 32px;
  571. border-radius: 5px;
  572. cursor: pointer;
  573. font-weight: 700;
  574. }
  575. /*************** home end ***************/
  576. /*************** play start ***************/
  577. #bg-block {
  578. background: url('../image/bg-block.png?20140714V7') no-repeat scroll 0 0;
  579. z-index: 101;
  580. top: 0;
  581. left: 0;
  582. position: absolute;
  583. display: none;
  584. width: 100%;
  585. height: 100%;
  586. background-size: 100% 100%;
  587. }
  588. #bg-gray {
  589. background: #000;
  590. opacity: 0.7;
  591. z-index: 103;
  592. top: 0;
  593. left: 0;
  594. position: fixed;
  595. display: none;
  596. filter: alpha(opacity=70);
  597. width: 100%;
  598. height: 100%;
  599. }
  600. #loading {
  601. z-index: 105;
  602. top: 0;
  603. left: 0;
  604. position: absolute;
  605. display: none;
  606. width: 100%;
  607. height: 100%;
  608. background-color: #fff;
  609. }
  610. #loading #mark {
  611. width: 100%;
  612. height: 100%;
  613. top: 20%;
  614. position: absolute;
  615. }
  616. #loading img {
  617. left: 50%;
  618. position: absolute;
  619. margin-left: -42px;
  620. }
  621. #loading .bar {
  622. height: 5px;
  623. }
  624. #loading .emtpy-bar {
  625. width: 80%;
  626. background-color: #ebebeb;
  627. margin: 120px auto 0;
  628. }
  629. #loading .loading-bar {
  630. width: 1%;
  631. background-color: #f45595;
  632. margin: -5px 10%;
  633. }
  634. .share-w {
  635. -webkit-transform: scale(0.55);
  636. -moz-transform: scale(0.55);
  637. -ms-transform: scale(0.55);
  638. -o-transform: scale(0.55);
  639. transform: scale(0.55);
  640. height: 265px;
  641. width: 520px;
  642. position: absolute;
  643. left: 50%;
  644. margin-left: -258px;
  645. margin-top: 60px;
  646. display: none;
  647. font-weight: bold;
  648. border-radius: 15px;
  649. z-index: 104;
  650. }
  651. @media only screen and (max-width:330px) {
  652. .share-w {
  653. -webkit-transform: scale(0.5);
  654. -moz-transform: scale(0.5);
  655. -ms-transform: scale(0.5);
  656. -o-transform: scale(0.5);
  657. transform: scale(0.5);
  658. margin-top: 25px;
  659. }
  660. }
  661. @media only screen and (min-width:600px) {
  662. .share-w {
  663. -webkit-transform: scale(0.8);
  664. -moz-transform: scale(0.8);
  665. -ms-transform: scale(0.8);
  666. -o-transform: scale(0.8);
  667. transform: scale(0.8);
  668. margin-top: 90px;
  669. }
  670. .share-w .share-main .textword {
  671. font-size: 20px;
  672. height: 78px;
  673. max-height: 78px;
  674. padding: 8px 15px;
  675. letter-spacing: 1.5px;
  676. }
  677. }
  678. .share-w .share-main {
  679. height: 406px;
  680. margin: 7px;
  681. width: 505px;
  682. float: left;
  683. background-color: #e7e7e7;
  684. border-radius: 10px;
  685. }
  686. .share-w .share-main h1 {
  687. margin-left: 30px;
  688. font-size: 34px;
  689. height: 60px;
  690. line-height: 60px;
  691. color: #040404;
  692. }
  693. .share-w .share-main .share-main-top {
  694. height: 124px;
  695. width: 505px;
  696. padding: 30px 0;
  697. border-top: 1px solid #ccc;
  698. }
  699. .share-w .share-main .share-main-top .img-bg {
  700. width: 120px;
  701. height: 120px;
  702. background-color: #fff;
  703. border: 2px solid #ccc;
  704. border-radius: 100%;
  705. margin-left: 30px;
  706. float: left;
  707. }
  708. .share-w .share-main .img-bg img {
  709. width: 100px;
  710. height: 100px;
  711. margin: 10px;
  712. float: left;
  713. border-radius: 100%;
  714. }
  715. .share-w .share-main .share-main-right {
  716. width: 300px;
  717. float: left;
  718. margin-left: 20px;
  719. }
  720. .share-w .share-main .share-main-right h2 {
  721. margin: 15px 0 5px 0;
  722. font-size: 30px;
  723. color: #040404;
  724. float: left;
  725. width: 100%;
  726. }
  727. .share-w .share-main .share-main-right h3 {
  728. font-size: 18px;
  729. color: #7f7f7f;
  730. float: left;
  731. width: 100%;
  732. line-height: 22px;
  733. }
  734. .share-w .share-main .btn {
  735. float: left;
  736. cursor: pointer;
  737. text-align: center;
  738. }
  739. .share-w .share-main .cancel-btn {
  740. margin: 10px 18px 18px 30px;
  741. line-height: 66px;
  742. font-size: 26px;
  743. }
  744. .share-w .share-main .cancel-btn .value {
  745. height: 66px;
  746. background-color: #fff;
  747. border: 2px solid #c3c3c3;
  748. border-radius: 8px;
  749. display: block;
  750. color: #999;
  751. width: 200px;
  752. }
  753. .share-w .share-main .cancel-btn .value:active {
  754. margin-top: 5px;
  755. }
  756. .share-w .share-main .follow-btn {
  757. margin: 10px 0 0 18px;
  758. line-height: 66px;
  759. font-size: 26px;
  760. }
  761. .share-w .share-main .follow-btn .value {
  762. height: 66px;
  763. background-color: #06be04;
  764. border: 2px solid #049902;
  765. border-radius: 8px;
  766. display: block;
  767. color: #fff;
  768. width: 200px;
  769. }
  770. .share-w .share-main .follow-btn .value:active {
  771. margin-top: 5px;
  772. }
  773. .weixin-share {
  774. display: none;
  775. z-index: 104;
  776. width: 320px;
  777. height: 254px;
  778. position: absolute;
  779. left: 50%;
  780. margin-left: -160px;
  781. top: 0;
  782. }
  783. .weixin-share img {
  784. -webkit-transform: scale(0.8,0.8);
  785. -moz-transform: scale(0.8,0.8);
  786. -ms-transform: scale(0.8,0.8);
  787. -o-transform: scale(0.8,0.8);
  788. transform: scale(0.8,0.8);
  789. }
  790. #bg-gray {
  791. background: #000;
  792. opacity: 0.7;
  793. z-index: 103;
  794. top: 0;
  795. left: 0;
  796. position: fixed;
  797. display: none;
  798. filter: alpha(opacity=70);
  799. width: 100%;
  800. height: 100%;
  801. }
  802. /*************** play end ***************/