nav.css 5.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289
  1. * {
  2. margin: 0;
  3. padding: 0;
  4. }
  5. a {
  6. text-decoration: none;
  7. }
  8. *,*:before,*:after {
  9. -webkit-box-sizing: border-box;
  10. -moz-box-sizing: border-box;
  11. box-sizing: border-box;
  12. }
  13. p {
  14. margin: 0 0 10px;
  15. display: block;
  16. -webkit-margin-before: 1em;
  17. -webkit-margin-after: 1em;
  18. -webkit-margin-start: 0px;
  19. -webkit-margin-end: 0px;
  20. }
  21. #header-container {
  22. position: fixed;
  23. top: 0;
  24. left: 0;
  25. width: 100%;
  26. z-index: 9999;
  27. background-color: #FF7300;
  28. height: 50px;
  29. font-size: 15px;
  30. font-weight: bold;
  31. letter-spacing: 2px;
  32. -moz-box-shadow: inset 0 0 1px #fff, inset 4px 4px 20px
  33. rgba(255, 255, 255, 0.33), inset -2px -2px 10px
  34. rgba(255, 255, 255, 0.25);
  35. -webkit-box-shadow: inset 0 0 1px #fff, inset 4px 4px 20px
  36. rgba(255, 255, 255, 0.33), inset -2px -2px 10px
  37. rgba(255, 255, 255, 0.25);
  38. box-shadow: inset 0 0 1px #fff, inset 4px 4px 20px
  39. rgba(255, 255, 255, 0.33), inset -2px -2px 10px
  40. rgba(255, 255, 255, 0.25);
  41. }
  42. #header-container div {
  43. line-height: 50px;
  44. margin-left: 5px;
  45. display: inline-block;
  46. }
  47. #header-container a {
  48. color: #fff;
  49. }
  50. #header-container .left {
  51. float: left;
  52. }
  53. #header-container .right {
  54. float: right;
  55. }
  56. #header-container .active {
  57. z-index: 10;
  58. -webkit-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.3), 0 0 40px
  59. rgba(0, 0, 0, 0.1) inset;
  60. -moz-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.3), 0 0 40px
  61. rgba(0, 0, 0, 0.1) inset;
  62. box-shadow: 0 1px 4px rgba(0, 0, 0, 0.3), 0 0 40px rgba(0, 0, 0, 0.1)
  63. inset;
  64. -webkit-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.3), 0 0 40px
  65. rgba(0, 0, 0, 0.1) inset;
  66. }
  67. #header-container .homeIcon {
  68. width: 20px;
  69. height: 22px;
  70. background-size: 20px 22px;
  71. margin: 14px 3px;
  72. background-image: url('img/home.png');
  73. background-position: 0px 0px;
  74. background-repeat: no-repeat;
  75. display: inline-block;
  76. float: left;
  77. }
  78. #header-container .clubIcon {
  79. width: 25px;
  80. height: 26px;
  81. background-size: 25px 26px;
  82. margin: 14px 3px;
  83. background-image: url('img/club_r.png');
  84. background-position: 0px 0px;
  85. background-repeat: no-repeat;
  86. display: inline-block;
  87. float: left;
  88. }
  89. #header-container .appIcon {
  90. width: 20px;
  91. height: 22px;
  92. background-size: 20px 22px;
  93. margin: 15px 3px;
  94. background-image: url('img/app.png');
  95. background-position: 0px 0px;
  96. background-repeat: no-repeat;
  97. display: inline-block;
  98. float: left;
  99. }
  100. #header-container a div {
  101. margin-left: 1px;
  102. }
  103. #header-container ul {
  104. width: 96%;
  105. list-style: none;
  106. text-align: center;
  107. left: -9999px;
  108. position: absolute;
  109. background: #f9f9f9;
  110. }
  111. #header-container ul.active {
  112. left: 8px;
  113. padding-bottom: 40px;
  114. z-index: 10;
  115. }
  116. #header-container ul li {
  117. width: 32%;
  118. float: left;
  119. border: 1px solid #ddd;
  120. border-left: 0px;
  121. border-top: 0px;
  122. float: left;
  123. border-top: 0px;
  124. }
  125. #header-container ul li:hover,#header-container ul li:active,#header-container ul li.active
  126. {
  127. background: #FF7300;
  128. }
  129. #header-container ul li:active a,#header-container ul li.active a {
  130. color: white;
  131. letter-spacing: 1px;
  132. }
  133. #header-container ul li a {
  134. border-left: 0px;
  135. border-top: 0px;
  136. padding: 10px 0px;
  137. font-size: 11px;
  138. color: #333;
  139. letter-spacing: normal;
  140. }
  141. #app-container {
  142. margin: 15px 14px;
  143. padding-top: 15px;
  144. width: 100%;
  145. margin: 0 auto;
  146. padding-top: 50px;
  147. padding-bottom: 50px;
  148. }
  149. #app-container ul {
  150. width: 100%;
  151. display: table;
  152. border-collapse: collapse;
  153. margin-top: 15px;
  154. list-style: none;
  155. }
  156. #app-container ul li {
  157. display: table-cell;
  158. width: 25%;
  159. text-align: center;
  160. vertical-align: middle;
  161. padding-bottom: 5px;
  162. }
  163. #app-container .iconIn {
  164. width: 52px;
  165. height: 52px;
  166. }
  167. #app-container .desc {
  168. line-height: 12px;
  169. font-size: 12px;
  170. color: #333333;
  171. }
  172. #app-container .count {
  173. color: #FF7300;
  174. }
  175. #app-container .info {
  176. display: none;
  177. padding-top: 20px;
  178. }
  179. .info .info-item {
  180. position: relative;
  181. display: block;
  182. padding: 10px 15px;
  183. margin-bottom: -1px;
  184. background-color: #fff;
  185. border: 1px solid #ddd;
  186. }
  187. .info .info-item:hover,.info .info-item.active {
  188. background-color: #FF7300;
  189. }
  190. .info .info-item .info-item-heading {
  191. color: #333;
  192. margin-top: 0;
  193. margin-bottom: 5px;
  194. }
  195. .info .info-item .info-item-heading:hover,.info .info-item.active .info-item-heading
  196. {
  197. color: white;
  198. }
  199. .info .info-item p {
  200. line-height: 2;
  201. margin: 0 0 10px;
  202. }
  203. .info .info-item .info-item-text {
  204. margin-bottom: 0;
  205. line-height: 1.3;
  206. color: #333;
  207. white-space: nowrap;
  208. overflow: hidden;
  209. text-overflow: ellipsis;
  210. }
  211. #frame-container {
  212. display: none;
  213. padding-top: 50px;
  214. padding-bottom: 50px;
  215. width: 100%;
  216. height: 100%;
  217. }
  218. #footer-container {
  219. background: #f9f9f9;
  220. text-align: center;
  221. font: 12px/1.5 Tahoma, Arial, "\5b8b\4f53", sans-serif;
  222. color: #999;
  223. border-top: 1px solid #ddd;
  224. -moz-box-shadow: inset 0 20px 20px -20px #333333;
  225. -webkit-box-shadow: inset 0 20px 20px -20px #333333;
  226. box-shadow: inset 0 20px 20px -20px #333333;
  227. position: fixed;
  228. bottom: 0;
  229. width: 100%;
  230. z-index: 9999;
  231. opacity: .60;
  232. filter: alpha(opacity = 60);
  233. _bottom: auto;
  234. _width: 100%;
  235. _position: absolute;
  236. _top: expression(eval(document.documentElement.scrollTop +
  237. document.documentElement.clientHeight-this.offsetHeight- ( parseInt(this.currentStyle.marginTop
  238. , 10)||0)-(parseInt(this.currentStyle.marginBottom, 10)||0)));
  239. }
  240. #footer-container .link {
  241. height: 1em;
  242. line-height: 1em;
  243. }
  244. #app-container .active {
  245. position: relative;
  246. z-index: 2;
  247. -webkit-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.3), 0 0 40px
  248. rgba(0, 0, 0, 0.1) inset;
  249. -moz-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.3), 0 0 40px
  250. rgba(0, 0, 0, 0.1) inset;
  251. box-shadow: 0 1px 4px rgba(0, 0, 0, 0.3), 0 0 40px rgba(0, 0, 0, 0.1)
  252. inset;
  253. }