index.css 5.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349
  1. body {
  2. margin:0px;
  3. font-size:12px;
  4. background:#000;
  5. overflow:hidden;
  6. }
  7. .radius {
  8. border-radius:5px;
  9. -webkit-border-radius:5px;
  10. -moz-border-radius:5px;
  11. -o-border-radius:5px;
  12. -ms-border-radius:5px;
  13. }
  14. #screenFrame {
  15. width:100%;
  16. margin:auto auto auto auto;
  17. display:none;
  18. }
  19. #screenFrame iframe {
  20. width:100%;
  21. border:0px;
  22. overflow:hidden;
  23. }
  24. a {
  25. text-decoration:none;
  26. }
  27. a.menuBtn1 {
  28. position:relative;
  29. display:inline-block;
  30. width:50px;
  31. height:50px;
  32. padding:5px;
  33. border:1px solid #CCC;
  34. background:#FFF;
  35. cursor:pointer;
  36. }
  37. a.menuBtn1:hover {
  38. background:#CCC;
  39. }
  40. .menuBtn1-icon {
  41. display:inline-block;
  42. width:18px;
  43. height:18px;
  44. background:url(../img/icons-18-black.png) -216px 0px;
  45. }
  46. a.menuBtn2 {
  47. position:relative;
  48. display:inline-block;
  49. width:105px;
  50. height:40px;
  51. padding:5px;
  52. border:1px solid #CCC;
  53. background:#FFF;
  54. cursor:pointer;
  55. }
  56. a.menuBtn2:hover {
  57. background:#CCC;
  58. }
  59. .menuBtn2-icon {
  60. display:inline-block;
  61. width:18px;
  62. height:18px;
  63. background:url(../img/icons-18-black.png) -144px 0px;
  64. }
  65. .menuBtn2-desc {
  66. position:absolute;
  67. display:inline-block;
  68. height:18px;
  69. line-height:18px;
  70. font-size:14px;
  71. font-weight:bold;
  72. color:#000;
  73. }
  74. a.menuBtn3 {
  75. position:relative;
  76. display:inline-block;
  77. width:50px;
  78. height:40px;
  79. padding:5px;
  80. border:1px solid #CCC;
  81. background:#FFF;
  82. cursor:pointer;
  83. }
  84. a.menuBtn3:hover {
  85. background:#CCC;
  86. }
  87. .menuBtn3-icon {
  88. display:inline-block;
  89. width:18px;
  90. height:18px;
  91. background:url(../img/icons-18-black.png) -73px 0px;
  92. }
  93. #topMenu {
  94. position:absolute;
  95. left:0px;
  96. top: -60px;
  97. width:100%;
  98. height:60px;
  99. background:#FFF;
  100. }
  101. .transition-ease {
  102. -moz-transition: top 0.3s linear 0s;
  103. -webkit-transition: top 0.3s linear 0s;
  104. -o-transition: top 0.3s linear 0s;
  105. -ms-transition: top 0.3s linear 0s;
  106. transition: top 0.3s linear 0s;
  107. }
  108. .w_mask{
  109. position: fixed;
  110. top: 0;
  111. left: 0;
  112. width: 100%;
  113. height: 100%;
  114. background: rgba(0,0,0,0.7);
  115. z-index: 1000000;
  116. }
  117. .w_panel{
  118. display: block;
  119. position: absolute;
  120. height: auto;
  121. border-radius: 5px;
  122. -webkit-border-radius: 5px;
  123. border: 1px solid #aaaaaa;
  124. background:#fff;
  125. padding: .2em;
  126. outline: 0;
  127. left: 50%;
  128. top: 50%;
  129. z-index: 1000001;
  130. -webkit-transform:translate3d(-50%,-50%,0);
  131. transform:translate3d(-50%,-50%,0);
  132. }
  133. .w_title{
  134. border-radius: 4px;
  135. -webkit-border-radius: 4px;
  136. background: #cccccc;
  137. padding: .4em 1em;
  138. position: relative;
  139. }
  140. .w_title .menuBtn3-icon{
  141. float: right;
  142. margin-top: -3px;
  143. cursor: pointer;
  144. }
  145. .w_content{
  146. position: relative;
  147. border: 0;
  148. padding: .5em 1em;
  149. background: none;
  150. min-height: 60px;
  151. overflow: auto;
  152. }
  153. .rank_list{
  154. display: table;
  155. width: 100%;
  156. border-collapse: collapse;
  157. border-radius: 5px;
  158. }
  159. .rank_list .list_item{
  160. display: table-row;
  161. table-layout: fixed;
  162. line-height: 20px;
  163. padding: 5px 0;
  164. border:1px solid #cccccc;
  165. border-width: 1px 0;
  166. background: #ede8df;
  167. }
  168. .rank_list .list_item .icon{
  169. display: table-cell;
  170. position: relative;
  171. width: 50px;
  172. height: 51px;
  173. }
  174. .rank_list .list_item .icon img{
  175. border-radius: 50%;
  176. -webkit-border-radius: 50%;
  177. width: 45px;
  178. height: 45px;
  179. position: absolute;
  180. top: 3px;
  181. left: 5px;
  182. }
  183. .rank_list .list_item .info{
  184. display: table-cell;
  185. padding: 5px 0;
  186. }
  187. .list_item_title{
  188. }
  189. .list_item_content{
  190. }
  191. .your_rank{
  192. font-size: 18px;
  193. color: #007aff;
  194. line-height: 30px;
  195. }
  196. .w_button{
  197. background: #fff;
  198. border: 1px solid #007aff;
  199. color: #007aff;
  200. text-align: center;
  201. cursor: pointer;
  202. }
  203. .w_button_small{
  204. height: 28px;
  205. line-height: 28px;
  206. border-radius: 5px;
  207. padding:0.1em 1.2em;
  208. }
  209. .fr{
  210. float: right;
  211. }
  212. .fl{
  213. float: left;
  214. }
  215. .w_button:hover {
  216. background-color: #ebebeb;
  217. border-color: #007aff;
  218. color: #007aff;
  219. }
  220. .w_button:active {
  221. background: rgb(59, 164, 255);
  222. color: #fff;
  223. }
  224. .man_name{
  225. color: rgb(59, 164, 255);
  226. font-family: '微软雅黑';
  227. }
  228. .woman_name{
  229. color: rgb(226,90,144);
  230. font-family: '微软雅黑';
  231. }
  232. .scoreinfo {
  233. display:none;
  234. position:absolute;
  235. width:100%;
  236. height:5000px;
  237. top:0;
  238. left:0;
  239. background:#fcba04;
  240. text-align:center;
  241. z-index:9999999;
  242. }
  243. .scoreinfo .holder {
  244. width:100%;
  245. overflow:hidden;
  246. }
  247. .scoreinfo .holder .head {
  248. margin-top:10px;
  249. margin-top:20px;
  250. width:100%;
  251. clear:both;
  252. overflow:hidden;
  253. }
  254. .scoreinfo .holder .head img {
  255. width:50%;
  256. margin:0 auto;
  257. clear:both;
  258. overflow:hidden;
  259. }
  260. .scoreinfo .holder hr {
  261. border:0;
  262. width:100%;
  263. height:5px;
  264. background:url(/images/showline.jpg) center center no-repeat;
  265. }
  266. .scoreinfo .holder .record {
  267. width:100%;
  268. clear:both;
  269. overflow:hidden;
  270. }
  271. .scoreinfo .holder .record .nowrecord {
  272. width:100%;
  273. clear:both;
  274. margin:30px auto;
  275. overflow:hidden;
  276. color:#be2618;
  277. font-family:"微软雅黑";
  278. font-size:30px;
  279. line-height:30px;
  280. font-weight:bold;
  281. }
  282. .scoreinfo .holder .record .bestrecord {
  283. width:100%;
  284. clear:both;
  285. margin:30px auto;
  286. overflow:hidden;
  287. color:#be2618;
  288. font-family:"微软雅黑";
  289. font-size:30px;
  290. line-height:30px;
  291. font-weight:bold;
  292. }
  293. .scoreinfo .holder .foot {
  294. width:100%;
  295. clear:both;
  296. overflow:hidden;
  297. }
  298. .scoreinfo .holder .foot .btngrp {
  299. margin:50px auto 10px auto;
  300. width:50%;
  301. clear:both;
  302. overflow:hidden;
  303. }
  304. .scoreinfo .holder .foot .btngrp .return {
  305. width:45%;
  306. float:left;
  307. cursor:pointer;
  308. }
  309. .scoreinfo .holder .foot .btngrp .xuyao {
  310. width:45%;
  311. float:right;
  312. cursor:pointer;
  313. }
  314. .scoreinfo .holder .foot .btngrp img {
  315. width:100%;
  316. clear:both;
  317. overflow:hidden;
  318. }
  319. .weixinshare {
  320. display:none;
  321. position:absolute;
  322. width:100%;
  323. height:5000px;
  324. top:0;
  325. left:0;
  326. background:#000000 url(/images/xuanyao.png) right top no-repeat;
  327. z-index:10000000;
  328. }