personal.css 54 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385
  1. @charset "UTF-8";
  2. /*! normalize.css v1.1.3 | MIT License | git.io/normalize */
  3. /* ==========================================================================
  4. HTML5 display definitions
  5. ========================================================================== */
  6. /**
  7. * Correct `block` display not defined in IE 6/7/8/9 and Firefox 3.
  8. */
  9. article,
  10. aside,
  11. details,
  12. figcaption,
  13. figure,
  14. footer,
  15. header,
  16. hgroup,
  17. main,
  18. nav,
  19. section,
  20. summary {
  21. display: block; }
  22. /**
  23. * Correct `inline-block` display not defined in IE 6/7/8/9 and Firefox 3.
  24. */
  25. audio,
  26. canvas,
  27. video {
  28. display: inline-block;
  29. *display: inline;
  30. *zoom: 1; }
  31. /**
  32. * Prevent modern browsers from displaying `audio` without controls.
  33. * Remove excess height in iOS 5 devices.
  34. */
  35. audio:not([controls]) {
  36. display: none;
  37. height: 0; }
  38. /**
  39. * Address styling not present in IE 7/8/9, Firefox 3, and Safari 4.
  40. * Known issue: no IE 6 support.
  41. */
  42. [hidden] {
  43. display: none; }
  44. /* ==========================================================================
  45. Base
  46. ========================================================================== */
  47. /**
  48. * 1. Correct text resizing oddly in IE 6/7 when body `font-size` is set using
  49. * `em` units.
  50. * 2. Prevent iOS text size adjust after orientation change, without disabling
  51. * user zoom.
  52. */
  53. html {
  54. font-size: 100%;
  55. /* 1 */
  56. -ms-text-size-adjust: 100%;
  57. /* 2 */
  58. -webkit-text-size-adjust: 100%;
  59. /* 2 */ }
  60. /**
  61. * Address margins handled incorrectly in IE 6/7.
  62. */
  63. body {
  64. margin: 0; }
  65. /* ==========================================================================
  66. Links
  67. ========================================================================== */
  68. /**
  69. * Address `outline` inconsistency between Chrome and other browsers.
  70. */
  71. a:focus {
  72. outline: thin dotted; }
  73. /**
  74. * Improve readability when focused and also mouse hovered in all browsers.
  75. */
  76. a:active,
  77. a:hover {
  78. outline: 0; }
  79. /* ==========================================================================
  80. Typography
  81. ========================================================================== */
  82. /**
  83. * Address font sizes and margins set differently in IE 6/7.
  84. * Address font sizes within `section` and `article` in Firefox 4+, Safari 5,
  85. * and Chrome.
  86. */
  87. h1 {
  88. font-size: 2em;
  89. margin: 0.67em 0; }
  90. h2 {
  91. font-size: 1.5em;
  92. margin: 0.83em 0; }
  93. h3 {
  94. font-size: 1.17em;
  95. margin: 1em 0; }
  96. h4 {
  97. font-size: 1em;
  98. margin: 1.33em 0; }
  99. h5 {
  100. font-size: 0.83em;
  101. margin: 1.67em 0; }
  102. h6 {
  103. font-size: 0.67em;
  104. margin: 2.33em 0; }
  105. /**
  106. * Address styling not present in IE 7/8/9, Safari 5, and Chrome.
  107. */
  108. abbr[title] {
  109. border-bottom: 1px dotted; }
  110. /**
  111. * Address style set to `bolder` in Firefox 3+, Safari 4/5, and Chrome.
  112. */
  113. b,
  114. strong {
  115. font-weight: bold; }
  116. blockquote {
  117. margin: 1em 40px; }
  118. /**
  119. * Address styling not present in Safari 5 and Chrome.
  120. */
  121. dfn {
  122. font-style: italic; }
  123. /**
  124. * Address differences between Firefox and other browsers.
  125. * Known issue: no IE 6/7 normalization.
  126. */
  127. hr {
  128. -moz-box-sizing: content-box;
  129. box-sizing: content-box;
  130. height: 0; }
  131. /**
  132. * Address styling not present in IE 6/7/8/9.
  133. */
  134. mark {
  135. background: #ff0;
  136. color: #000; }
  137. /**
  138. * Address margins set differently in IE 6/7.
  139. */
  140. p,
  141. pre {
  142. margin: 1em 0; }
  143. /**
  144. * Correct font family set oddly in IE 6, Safari 4/5, and Chrome.
  145. */
  146. code,
  147. kbd,
  148. pre,
  149. samp {
  150. font-family: monospace, serif;
  151. _font-family: 'courier new', monospace;
  152. font-size: 1em; }
  153. /**
  154. * Improve readability of pre-formatted text in all browsers.
  155. */
  156. pre {
  157. white-space: pre;
  158. white-space: pre-wrap;
  159. word-wrap: break-word; }
  160. /**
  161. * Address CSS quotes not supported in IE 6/7.
  162. */
  163. q {
  164. quotes: none; }
  165. /**
  166. * Address `quotes` property not supported in Safari 4.
  167. */
  168. q:before,
  169. q:after {
  170. content: '';
  171. content: none; }
  172. /**
  173. * Address inconsistent and variable font size in all browsers.
  174. */
  175. small {
  176. font-size: 80%; }
  177. /**
  178. * Prevent `sub` and `sup` affecting `line-height` in all browsers.
  179. */
  180. sub,
  181. sup {
  182. font-size: 75%;
  183. line-height: 0;
  184. position: relative;
  185. vertical-align: baseline; }
  186. sup {
  187. top: -0.5em; }
  188. sub {
  189. bottom: -0.25em; }
  190. /* ==========================================================================
  191. Lists
  192. ========================================================================== */
  193. /**
  194. * Address margins set differently in IE 6/7.
  195. */
  196. dl,
  197. menu,
  198. ol,
  199. ul {
  200. margin: 1em 0; }
  201. dd {
  202. margin: 0 0 0 40px; }
  203. /**
  204. * Address paddings set differently in IE 6/7.
  205. */
  206. menu,
  207. ol,
  208. ul {
  209. padding: 0 0 0 40px; }
  210. /**
  211. * Correct list images handled incorrectly in IE 7.
  212. */
  213. nav ul,
  214. nav ol {
  215. list-style: none;
  216. list-style-image: none; }
  217. /* ==========================================================================
  218. Embedded content
  219. ========================================================================== */
  220. /**
  221. * 1. Remove border when inside `a` element in IE 6/7/8/9 and Firefox 3.
  222. * 2. Improve image quality when scaled in IE 7.
  223. */
  224. img {
  225. border: 0;
  226. /* 1 */
  227. -ms-interpolation-mode: bicubic;
  228. /* 2 */ }
  229. /**
  230. * Correct overflow displayed oddly in IE 9.
  231. */
  232. svg:not(:root) {
  233. overflow: hidden; }
  234. /* ==========================================================================
  235. Figures
  236. ========================================================================== */
  237. /**
  238. * Address margin not present in IE 6/7/8/9, Safari 5, and Opera 11.
  239. */
  240. figure {
  241. margin: 0; }
  242. /* ==========================================================================
  243. Forms
  244. ========================================================================== */
  245. /**
  246. * Correct margin displayed oddly in IE 6/7.
  247. */
  248. form {
  249. margin: 0; }
  250. /**
  251. * Define consistent border, margin, and padding.
  252. */
  253. fieldset {
  254. border: 1px solid #c0c0c0;
  255. margin: 0 2px;
  256. padding: 0.35em 0.625em 0.75em; }
  257. /**
  258. * 1. Correct color not being inherited in IE 6/7/8/9.
  259. * 2. Correct text not wrapping in Firefox 3.
  260. * 3. Correct alignment displayed oddly in IE 6/7.
  261. */
  262. legend {
  263. border: 0;
  264. /* 1 */
  265. padding: 0;
  266. white-space: normal;
  267. /* 2 */
  268. *margin-left: -7px;
  269. /* 3 */ }
  270. /**
  271. * 1. Correct font size not being inherited in all browsers.
  272. * 2. Address margins set differently in IE 6/7, Firefox 3+, Safari 5,
  273. * and Chrome.
  274. * 3. Improve appearance and consistency in all browsers.
  275. */
  276. button,
  277. input,
  278. select,
  279. textarea {
  280. font-size: 100%;
  281. /* 1 */
  282. margin: 0;
  283. /* 2 */
  284. vertical-align: middle;
  285. /* 3 */ }
  286. /**
  287. * Address Firefox 3+ setting `line-height` on `input` using `!important` in
  288. * the UA stylesheet.
  289. */
  290. button,
  291. input {
  292. line-height: normal; }
  293. /**
  294. * Address inconsistent `text-transform` inheritance for `button` and `select`.
  295. * All other form control elements do not inherit `text-transform` values.
  296. * Correct `button` style inheritance in Chrome, Safari 5+, and IE 6+.
  297. * Correct `select` style inheritance in Firefox 4+ and Opera.
  298. */
  299. button,
  300. select {
  301. text-transform: none; }
  302. /**
  303. * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
  304. * and `video` controls.
  305. * 2. Correct inability to style clickable `input` types in iOS.
  306. * 3. Improve usability and consistency of cursor style between image-type
  307. * `input` and others.
  308. * 4. Remove inner spacing in IE 7 without affecting normal text inputs.
  309. * Known issue: inner spacing remains in IE 6.
  310. */
  311. button,
  312. html input[type="button"],
  313. input[type="reset"],
  314. input[type="submit"] {
  315. -webkit-appearance: button;
  316. /* 2 */
  317. cursor: pointer;
  318. /* 3 */
  319. *overflow: visible;
  320. /* 4 */ }
  321. /**
  322. * Re-set default cursor for disabled elements.
  323. */
  324. button[disabled],
  325. html input[disabled] {
  326. cursor: default; }
  327. /**
  328. * 1. Address box sizing set to content-box in IE 8/9.
  329. * 2. Remove excess padding in IE 8/9.
  330. * 3. Remove excess padding in IE 7.
  331. * Known issue: excess padding remains in IE 6.
  332. */
  333. input[type="checkbox"],
  334. input[type="radio"] {
  335. box-sizing: border-box;
  336. /* 1 */
  337. padding: 0;
  338. /* 2 */
  339. *height: 13px;
  340. /* 3 */
  341. *width: 13px;
  342. /* 3 */ }
  343. /**
  344. * 1. Address `appearance` set to `searchfield` in Safari 5 and Chrome.
  345. * 2. Address `box-sizing` set to `border-box` in Safari 5 and Chrome
  346. * (include `-moz` to future-proof).
  347. */
  348. input[type="search"] {
  349. -webkit-appearance: textfield;
  350. /* 1 */
  351. -moz-box-sizing: content-box;
  352. -webkit-box-sizing: content-box;
  353. /* 2 */
  354. box-sizing: content-box; }
  355. /**
  356. * Remove inner padding and search cancel button in Safari 5 and Chrome
  357. * on OS X.
  358. */
  359. input[type="search"]::-webkit-search-cancel-button,
  360. input[type="search"]::-webkit-search-decoration {
  361. -webkit-appearance: none; }
  362. /**
  363. * Remove inner padding and border in Firefox 3+.
  364. */
  365. button::-moz-focus-inner,
  366. input::-moz-focus-inner {
  367. border: 0;
  368. padding: 0; }
  369. /**
  370. * 1. Remove default vertical scrollbar in IE 6/7/8/9.
  371. * 2. Improve readability and alignment in all browsers.
  372. */
  373. textarea {
  374. overflow: auto;
  375. /* 1 */
  376. vertical-align: top;
  377. /* 2 */ }
  378. /* ==========================================================================
  379. Tables
  380. ========================================================================== */
  381. /**
  382. * Remove most spacing between table cells.
  383. */
  384. table {
  385. border-collapse: collapse;
  386. border-spacing: 0; }
  387. .clearfix, .mod-tabs-trigger, .hover-content .hover-hd, .personal, .text .more-info, .fight-rank, .phone-card .left-part ul, .da-ye-types, .my-card .left-part .top, .my-card .left-part .small ul, .my-card .left-part .block ul, .my-card .right-part, .my-card .right-part ul li, .my-card .right-part ul li p, .mobile-huya .huya-ad-v2, .da-ye-bd ul, .mod-top .no-data, .mod-bottom, .right-hd {
  388. *zoom: 1; }
  389. .clearfix:before, .mod-tabs-trigger:before, .hover-content .hover-hd:before, .personal:before, .text .more-info:before, .fight-rank:before, .phone-card .left-part ul:before, .da-ye-types:before, .my-card .left-part .top:before, .my-card .left-part .small ul:before, .my-card .left-part .block ul:before, .my-card .right-part:before, .my-card .right-part ul li:before, .my-card .right-part ul li p:before, .mobile-huya .huya-ad-v2:before, .da-ye-bd ul:before, .mod-top .no-data:before, .mod-bottom:before, .right-hd:before, .clearfix:after, .mod-tabs-trigger:after, .hover-content .hover-hd:after, .personal:after, .text .more-info:after, .fight-rank:after, .phone-card .left-part ul:after, .da-ye-types:after, .my-card .left-part .top:after, .my-card .left-part .small ul:after, .my-card .left-part .block ul:after, .my-card .right-part:after, .my-card .right-part ul li:after, .my-card .right-part ul li p:after, .mobile-huya .huya-ad-v2:after, .da-ye-bd ul:after, .mod-top .no-data:after, .mod-bottom:after, .right-hd:after {
  390. content: "";
  391. display: table;
  392. line-height: 0; }
  393. .clearfix:after, .mod-tabs-trigger:after, .hover-content .hover-hd:after, .personal:after, .text .more-info:after, .fight-rank:after, .phone-card .left-part ul:after, .da-ye-types:after, .my-card .left-part .top:after, .my-card .left-part .small ul:after, .my-card .left-part .block ul:after, .my-card .right-part:after, .my-card .right-part ul li:after, .my-card .right-part ul li p:after, .mobile-huya .huya-ad-v2:after, .da-ye-bd ul:after, .mod-top .no-data:after, .mod-bottom:after, .right-hd:after {
  394. clear: both; }
  395. html, body, div, span, ul, li, a, em, h1, h2, h3, h4, h5, p, input, em, i, img {
  396. margin: 0;
  397. padding: 0;
  398. border: none; }
  399. em, i {
  400. font-style: normal;
  401. color: #666; }
  402. body {
  403. font-family: "microsoft yahei",Tahoma,sans-serif;
  404. font-size: 12px;
  405. background: #fdfdfd;
  406. moz-user-select: -moz-none;
  407. -moz-user-select: none;
  408. -o-user-select: none;
  409. -khtml-user-select: none;
  410. /* you could also put this in a class */
  411. -webkit-user-select: none;
  412. /* and add the CSS class here instead */
  413. -ms-user-select: none;
  414. user-select: none;
  415. /**禁止选中文字*/ }
  416. a {
  417. text-decoration: none;
  418. cursor: pointer;
  419. color: #666;
  420. outline: none; }
  421. body a {
  422. outline: none;
  423. blr: expression(this.onFocus=this.blur()); }
  424. a:hover, a:focus {
  425. outline: none; }
  426. input {
  427. outline: none; }
  428. ul, li {
  429. list-style: none; }
  430. h3 {
  431. font-size: 12px;
  432. font-weight: bold;
  433. color: #666; }
  434. p {
  435. color: #999; }
  436. .fl {
  437. float: left;
  438. _display: inline; }
  439. .fr {
  440. float: right;
  441. _display: inline; }
  442. .no-data-tip {
  443. text-align: center;
  444. margin: 135px 0; }
  445. .no-data-tip img {
  446. margin-bottom: 10px; }
  447. .box {
  448. width: 600px;
  449. /*overflow: hidden;*/
  450. padding: 15px; }
  451. .box .nav {
  452. background-color: #ecf3f9; }
  453. .box .nav a {
  454. display: inline-block;
  455. *display: inline;
  456. *zoom: 1;
  457. width: 190px;
  458. height: 30px;
  459. line-height: 30px;
  460. text-align: center;
  461. color: #666; }
  462. .box .nav a.active {
  463. background-color: #ddebf7;
  464. font-weight: bold; }
  465. .hide {
  466. display: none; }
  467. #daoshiList, #rankUl, .rank-ul {
  468. display: none;
  469. position: absolute;
  470. right: 28px;
  471. top: 30px;
  472. height: auto;
  473. max-height: 230px;
  474. overflow-y: auto;
  475. border: 1px solid #e7e7e7;
  476. padding: 5px;
  477. z-index: 10;
  478. background-color: #fff;
  479. font-weight: normal; }
  480. #daoshiList li, #rankUl li, .rank-ul li {
  481. padding: 0 5px !important;
  482. height: 30px;
  483. line-height: 30px;
  484. text-align: center; }
  485. #daoshiList li:hover, #rankUl li:hover, .rank-ul li:hover {
  486. background-color: #ecf3f9; }
  487. .arrow-hover-wrap {
  488. display: none;
  489. position: absolute;
  490. padding: 10px;
  491. border: 1px solid #e7e7e7;
  492. background: #fff;
  493. z-index: 9; }
  494. .avatar-arrow {
  495. position: absolute;
  496. top: -6px;
  497. left: 22px;
  498. display: inline-block;
  499. *display: inline;
  500. *zoom: 1;
  501. width: 13px;
  502. height: 7px;
  503. background-image: url(../slice/avatar-arrow.png); }
  504. .word {
  505. display: inline-block;
  506. *display: inline;
  507. *zoom: 1;
  508. -webkit-text-overflow: ellipsis;
  509. -ms-text-overflow: ellipsis;
  510. -o-text-overflow: ellipsis;
  511. text-overflow: ellipsis;
  512. overflow: hidden;
  513. vertical-align: bottom;
  514. white-space: nowrap; }
  515. .mod-tabs-trigger li {
  516. width: 50%;
  517. float: left;
  518. _display: inline;
  519. height: 30px;
  520. line-height: 30px;
  521. text-align: center;
  522. color: #666;
  523. font-size: 12px;
  524. background-color: #ecf3f9;
  525. cursor: pointer; }
  526. .mod-tabs-trigger li.selected {
  527. background-color: #ddebf7;
  528. font-weight: bold; }
  529. .col-4 li {
  530. width: 131px; }
  531. .coll-2 li {
  532. width: 262px; }
  533. .coll-2 #modeTabs a{
  534. width: 100%;
  535. }
  536. .personal-top {
  537. position: relative !important;
  538. top: 0 !important;
  539. left: 0 !important; }
  540. .hover-content {
  541. position: absolute;
  542. left: 56px;
  543. top: -61px;
  544. width: 252px;
  545. height: 200px;
  546. border: 1px solid #e7e7e7;
  547. background-color: #fff;
  548. z-index: 9;
  549. padding-bottom: 5px; }
  550. .hover-content.blank-content {
  551. height: 37px !important;
  552. border-bottom: 1px solid #e7e7e7; }
  553. .hover-content.hover-hero {
  554. display: block; }
  555. .hover-content .inner {
  556. padding: 10px 10px 10px; }
  557. .hover-content .hover-hd {
  558. border-bottom: 1px solid #e7e7e7;
  559. padding-bottom: 5px; }
  560. .hover-content .hover-hd img {
  561. float: left;
  562. _display: inline;
  563. margin-right: 10px;
  564. width: 40px;
  565. height: 40px; }
  566. .hover-content .info {
  567. float: left;
  568. _display: inline;
  569. line-height: 20px; }
  570. .hover-content .info h3, .hover-content .info p {
  571. font-size: 12px;
  572. color: #666; }
  573. .hover-content .info h3 {
  574. font-weight: bold; }
  575. .hover-content .info p span {
  576. color: #ff7a43; }
  577. .hover-content .championStat {
  578. position: absolute;
  579. right: 10px;
  580. top: 20px; }
  581. .hover-content .fuzhu, .hover-content .daye, .hover-content .adc, .hover-content .zhongdan, .hover-content .shangdan {
  582. width: 35px;
  583. height: 17px;
  584. display: block; }
  585. .hover-content .fuzhu {
  586. background: url(../img/fuzhu.png); }
  587. .hover-content .daye {
  588. background: url(../img/daye.png); }
  589. .hover-content .adc {
  590. background: url(../img/adc.png); }
  591. .hover-content .zhongdan {
  592. background: url(../img/zhongdan.png); }
  593. .hover-content .shangdan {
  594. background: url(../img/shangdan.png); }
  595. .hover-content .ch_level {
  596. left: 152px !important;
  597. top: 13px !important; }
  598. .hover-content .hover-bd {
  599. padding: 5px 0; }
  600. .hover-content .hover-bd li {
  601. margin-bottom: 6px; }
  602. .hover-content .hover-bd li i {
  603. display: inline-block;
  604. *display: inline;
  605. *zoom: 1;
  606. width: 4px;
  607. height: 2px;
  608. vertical-align: middle;
  609. background-image: url(../slice/dot.png); }
  610. .hover-content .hover-bd li .first {
  611. display: inline-block;
  612. *display: inline;
  613. *zoom: 1;
  614. width: 102px; }
  615. .hover-content .hover-bd .handles {
  616. color: #666; }
  617. .hover-content .hover-bd .handles a {
  618. color: #408bcb; }
  619. .hover-content .hover-bd .handles .share {
  620. display: inline-block;
  621. *display: inline;
  622. *zoom: 1;
  623. width: 16px;
  624. height: 16px;
  625. vertical-align: middle;
  626. margin-right: 15px;
  627. float: right !important;
  628. _display: inline;
  629. *margin-top: -18px; }
  630. .hover-content .avatar-arrow {
  631. top: 75px;
  632. left: -7px;
  633. width: 7px !important;
  634. height: 13px !important;
  635. background-image: url(../slice/p-arrow-left.png) !important; }
  636. .no-data-tip {
  637. text-align: center;
  638. margin: 135px 0; }
  639. .no-data-tip img {
  640. margin-bottom: 10px; }
  641. .personal {
  642. position: relative;
  643. clear: both; }
  644. .personal .links span {
  645. float: none !important; }
  646. .personal .a-hide {
  647. display: none !important; }
  648. .personal .box-bd {
  649. position: relative;
  650. clear: both; }
  651. .attention {
  652. float: left;
  653. background: url(../img/attention-bg.png);
  654. width: 42px;
  655. height: 19px;
  656. margin-top: 2px;
  657. cursor: pointer;
  658. vertical-align: -3px; }
  659. .attention.already {
  660. width: 52px !important;
  661. background: url(../img/attention-already-bg.png); }
  662. .tier_0, .tier_1, .tier_2, .tier_3, .tier_4, .tier_5, .tier_6 {
  663. text-align: center;
  664. font-weight: bold; }
  665. .tier_0 div, .tier_1 div, .tier_2 div, .tier_3 div, .tier_4 div, .tier_5 div, .tier_6 div {
  666. margin: 0 auto 5px; }
  667. .tier_0 p {
  668. color: #c6521e; }
  669. .tier_1 p {
  670. color: #e89c25; }
  671. .tier_2 p {
  672. color: #4c9c95; }
  673. .tier_3 p {
  674. color: #4c9c95; }
  675. .tier_4 p {
  676. color: #3d8fc8; }
  677. .tier_5 p {
  678. color: #4c9c95; }
  679. .tier_6 p {
  680. color: #c06625; }
  681. .tier_img_1 {
  682. *right: -6px !important;
  683. *bottom: -8px !important;
  684. right: -6px\0 !important;
  685. bottom: -8px\0 !important;
  686. width: 53px;
  687. height: 41px;
  688. background: url(../img/rank-vip1.png) no-repeat; }
  689. .tier_img_2 {
  690. *right: -6px !important;
  691. *bottom: -8px !important;
  692. right: -8px\0 !important;
  693. bottom: -10px\0 !important;
  694. width: 53px;
  695. height: 45px;
  696. background: url(../img/rank-vip2.png) no-repeat; }
  697. .tier_img_3 {
  698. *right: -6px !important;
  699. *bottom: -8px !important;
  700. right: -6px\0 !important;
  701. bottom: -8px\0 !important;
  702. width: 53px;
  703. height: 48px;
  704. background: url(../img/rank-vip3.png) no-repeat; }
  705. .tier_img_4 {
  706. *right: -6px !important;
  707. *bottom: -8px !important;
  708. right: -8px\0 !important;
  709. bottom: -8px\0 !important;
  710. width: 52px;
  711. height: 50px;
  712. background: url(../img/rank-vip4.png) no-repeat; }
  713. .tier_img_5 {
  714. *right: -12px !important;
  715. *bottom: -14px !important;
  716. right: -12px\0 !important;
  717. bottom: -14px\0 !important;
  718. width: 64px;
  719. height: 50px;
  720. background: url(../img/rank-vip5.png) no-repeat; }
  721. .tier_img_6 {
  722. width: 60px;
  723. height: 50px;
  724. background: url(../img/rank-vip7.png) no-repeat; }
  725. .tier_img_7 {
  726. width: 63px;
  727. height: 52px;
  728. background: url(../img/rank-vip6.png) no-repeat; }
  729. .intro {
  730. position: relative;
  731. z-index: 9;
  732. height: 84px;
  733. width: 600px;
  734. float: left;
  735. _display: inline; }
  736. .intro .info {
  737. width: 285px;
  738. float: left;
  739. _display: inline; }
  740. .intro.b-bottom {
  741. border-bottom: 1px solid #f0f0f0; }
  742. .blacklist {
  743. padding-left: 5px;
  744. *margin-left: -2px; }
  745. .blacklist .black-eye {
  746. display: inline-block;
  747. *display: inline;
  748. *zoom: 1;
  749. width: 14px;
  750. height: 11px;
  751. background-image: url(../slice/eye.png); }
  752. .blacklist label {
  753. color: #666; }
  754. .mod-tabs {
  755. clear: both; }
  756. .mod-tabs-bd {
  757. position: relative;
  758. z-index: 1;
  759. }
  760. .mod-tabs-content {
  761. clear: both; }
  762. .avatar {
  763. position: relative;
  764. width: 66px;
  765. float: left;
  766. _display: inline;
  767. margin-right: 10px; }
  768. .avatar a {
  769. display: block; }
  770. .avatar a img {
  771. width: 66px;
  772. height: 66px;
  773. -webkit-border-radius: 66px;
  774. border-radius: 66px;
  775. -webkit-background-clip: padding-box;
  776. -moz-background-clip: padding;
  777. background-clip: padding-box;
  778. behavior: url(js/PIE.htc); }
  779. .avatar .p_level {
  780. position: absolute;
  781. right: 0;
  782. bottom: 0;
  783. color: #fff;
  784. width: 18px;
  785. height: 18px;
  786. line-height: 18px;
  787. text-align: center;
  788. background: url(../img/p_level.png); }
  789. .text {
  790. position: relative;
  791. float: left;
  792. _display: inline;
  793. line-height: 24px;
  794. }
  795. .text .name-info {
  796. padding-top: 7px;
  797. margin-bottom: -2px;
  798. }
  799. .text .name-info .name {
  800. color: #666;
  801. font-size: 16px;
  802. font-weight: bold;
  803. width: 125px;
  804. float: left;
  805. display: block;
  806. white-space: nowrap;
  807. overflow: hidden;
  808. text-overflow: ellipsis;
  809. }
  810. .text img {
  811. vertical-align: -2px; }
  812. .text .more-info {
  813. margin-top: 4px;
  814. height: 20px;
  815. color: #666;
  816. font-size: 12px; }
  817. .blacklist-content2 a {
  818. display: inline-block;
  819. *display: inline;
  820. *zoom: 1;
  821. color: #408bcb;
  822. margin-left: 5px; }
  823. .fighting {
  824. width: 95px;
  825. height: 64px;
  826. position: absolute;
  827. top: 5px;
  828. right: 175px;
  829. background: url(../img/bg-flighting.png); }
  830. .fighting p, .fighting .fight-block {
  831. text-align: center;
  832. font-weight: bold; }
  833. .fighting p strong, .fighting .fight-block strong {
  834. line-height: 32px;
  835. color: #fff;
  836. font-size: 14px; }
  837. .fighting p a.question-mark, .fighting .fight-block a.question-mark {
  838. display: inline-block;
  839. *display: inline;
  840. *zoom: 1;
  841. width: 16px;
  842. height: 16px;
  843. background-image: url(../slice/question.png);
  844. margin-left: 2px;
  845. vertical-align: -2px;
  846. *vertical-align: 1px; }
  847. .fighting p em, .fighting .fight-block em {
  848. line-height: 35px;
  849. font-size: 18px;
  850. color: #408bcb; }
  851. .fight-rank {
  852. right: -312px;
  853. top: 32px;
  854. width: 316px;
  855. padding: 15px; }
  856. .fight-rank p {
  857. text-align: left;
  858. margin-bottom: 5px; }
  859. .fight-rank h3 {
  860. margin-bottom: 15px;
  861. text-align: left; }
  862. .fight-rank a {
  863. color: #408bcb;
  864. float: left;
  865. _display: inline; }
  866. .com-hero {
  867. position: relative;
  868. width: 390px;
  869. float: left;
  870. _display: inline;
  871. padding-top: 4px;
  872. line-height: 20px;
  873. padding-bottom: 15px;
  874. z-index: 1;
  875. clear: both;
  876. margin-top: -62px; }
  877. .com-hero h3 {
  878. color: #666;
  879. line-height: 16px;
  880. display: inline;
  881. font-weight: bold; }
  882. .com-hero ul.mod-pic {
  883. height: 45px;
  884. margin-left: 15px;
  885. margin-top: -3px;
  886. *margin-top: 2px;
  887. _margin-top: 2px; }
  888. .com-hero .more {
  889. display: inline-block;
  890. *display: inline;
  891. *zoom: 1; }
  892. .mod-pic-li {
  893. position: relative;
  894. width: 45px;
  895. height: 45px;
  896. margin-left: 15px;
  897. *margin-left: 14px;
  898. float: left;
  899. _display: inline; }
  900. .mod-pic-li a.core {
  901. display: inline-block;
  902. *display: inline;
  903. *zoom: 1;
  904. text-align: center;
  905. position: relative; }
  906. .mod-pic-li a.core p {
  907. color: #666;
  908. clear: both;
  909. height: 20px;
  910. width: 53px;
  911. margin-top: -4px; }
  912. .mod-pic-li img.core-img {
  913. width: 45px;
  914. height: 45px; }
  915. .phone-card .left-part {
  916. float: left;
  917. _display: inline;
  918. border-right: 1px solid #f0f0f0;
  919. width: 374px;
  920. height: 344px;
  921. padding-right: 6px; }
  922. .phone-card .left-part h2 {
  923. font-size: 12px;
  924. color: #666;
  925. font-weight: bold; }
  926. .phone-card .left-part ul li {
  927. float: left;
  928. _display: inline;
  929. margin: 10px 12px 0 0; }
  930. .phone-card .left-part ul li img {
  931. width: 110px;
  932. height: 105px; }
  933. .phone-card .left-part ul li p {
  934. font-size: 12px;
  935. color: #666;
  936. padding-top: 5px; }
  937. .right-part {
  938. float: left;
  939. _display: inline;
  940. padding-left: 20px; }
  941. .right-part .qrcode {
  942. margin: 0 auto;
  943. text-align: center;
  944. padding: 20px 0; }
  945. .right-part .qrcode a {
  946. display: inline-block;
  947. *display: inline;
  948. *zoom: 1;
  949. width: 115px;
  950. height: 38px;
  951. line-height: 38px;
  952. text-align: center;
  953. color: #fff;
  954. background-color: #408bcb;
  955. -webkit-border-radius: 3px;
  956. border-radius: 3px;
  957. -webkit-background-clip: padding-box;
  958. -moz-background-clip: padding;
  959. background-clip: padding-box;
  960. margin-top: 20px; }
  961. .right-part .qrcode a:hover {
  962. background-color: #4b9add; }
  963. .right-part .info h2 {
  964. font-size: 12px;
  965. color: #666;
  966. font-weight: bold;
  967. padding-bottom: 6px; }
  968. .right-part .info p {
  969. width: 358px;
  970. line-height: 20px; }
  971. .personal-tabs {
  972. position: relative; }
  973. .personal-tabs .J_nav li {
  974. width: 25%; }
  975. .daye-hover {
  976. width: 102px;
  977. top: 37px;
  978. left: 111px; }
  979. .daye-hover .avatar-arrow {
  980. top: 39px;
  981. left: -7px; }
  982. .daye-hover p {
  983. padding-bottom: 10px; }
  984. .da-ye-types {
  985. padding-bottom: 10px; }
  986. .da-ye-types a {
  987. display: inline-block;
  988. *display: inline;
  989. *zoom: 1;
  990. float: left;
  991. _display: inline;
  992. width: 50%;
  993. color: #666;
  994. margin-bottom: 5px; }
  995. .da-ye-types i {
  996. display: inline-block;
  997. *display: inline;
  998. *zoom: 1;
  999. width: 8px;
  1000. height: 8px;
  1001. margin-right: 5px; }
  1002. .da-ye-types i.a-yellow {
  1003. background-color: #fbb28f; }
  1004. .da-ye-types i.a-blue {
  1005. background-color: #9dc7eb; }
  1006. .da-ye-types i.a-purple {
  1007. background-color: #cea9d7; }
  1008. .da-ye-types i.a-red {
  1009. background-color: #fa9f9f; }
  1010. .da-ye-types i.a-green {
  1011. background-color: #80c989; }
  1012. .kda-hover {
  1013. width: 174px;
  1014. top: 37px;
  1015. left: 254px; }
  1016. .kda-hover .avatar-arrow {
  1017. top: 39px;
  1018. left: -7px; }
  1019. .kda-hover .da-ye-types {
  1020. text-align: center;
  1021. padding: 5px 0 0;
  1022. border-bottom: 1px solid #e7e7e7; }
  1023. .kda-hover .da-ye-types a {
  1024. display: block;
  1025. margin-bottom: 10px;
  1026. color: #666;
  1027. cursor: inherit; }
  1028. .kda-hover .formula {
  1029. text-align: center;
  1030. padding: 5px 0 0;
  1031. color: #999; }
  1032. .arrow-hover-top .win-lost p {
  1033. text-align: center;
  1034. color: #666;
  1035. font-weight: bold; }
  1036. .win-line {
  1037. margin: 8px 0;
  1038. position: relative;
  1039. width: 100%;
  1040. height: 5px;
  1041. background: #ebebeb; }
  1042. .win-line em {
  1043. position: absolute;
  1044. left: 0;
  1045. height: 5px;
  1046. background: #64bf8c; }
  1047. .kill-hover {
  1048. width: 54px;
  1049. top: 37px;
  1050. left: 386px; }
  1051. .kill-hover .avatar-arrow {
  1052. top: 39px;
  1053. left: -7px; }
  1054. .kill-hover .da-ye-types {
  1055. margin-top: 10px;
  1056. border-top: 1px solid #e7e7e7;
  1057. padding-top: 10px; }
  1058. .kill-hover .da-ye-types a {
  1059. display: block;
  1060. margin-bottom: 5px;
  1061. color: #666; }
  1062. .more {
  1063. float: right;
  1064. _display: inline;
  1065. font-size: 12px;
  1066. color: #999; }
  1067. .more i {
  1068. display: inline-block;
  1069. *display: inline;
  1070. *zoom: 1;
  1071. width: 6px;
  1072. height: 4px;
  1073. margin-left: 3px;
  1074. vertical-align: middle;
  1075. background-image: url(../slice/arrow.png); }
  1076. .my-card .left-part .how {
  1077. float: right;
  1078. _display: inline;
  1079. margin-top: -16px;
  1080. margin-right: 10px;
  1081. color: #408bcb;
  1082. cursor: pointer; }
  1083. .my-card .left-part .top {
  1084. color: #666; }
  1085. .my-card .left-part .top img {
  1086. width: 80px !important;
  1087. height: 85px !important;
  1088. float: left;
  1089. _display: inline; }
  1090. .my-card .left-part .top .top-info {
  1091. float: left;
  1092. _display: inline;
  1093. margin-left: 15px; }
  1094. .my-card .left-part .top h3 {
  1095. margin-top: 4px;
  1096. color: #666;
  1097. font-size: 12px;
  1098. font-weight: bold; }
  1099. .my-card .left-part .small, .my-card .left-part .block {
  1100. margin-top: 15px; }
  1101. .my-card .left-part .small h3, .my-card .left-part .block h3 {
  1102. color: #666;
  1103. font-size: 12px;
  1104. font-weight: bold; }
  1105. .my-card .left-part .small ul li, .my-card .left-part .block ul li {
  1106. float: left;
  1107. _display: inline; }
  1108. .my-card .left-part .block img {
  1109. width: 65px !important;
  1110. height: 65px !important; }
  1111. .my-card .left-part .block li {
  1112. margin-right: 7px !important; }
  1113. .my-card .left-part .small img {
  1114. width: 35px !important;
  1115. height: 35px !important; }
  1116. .my-card .left-part .small li {
  1117. margin-right: 5px !important; }
  1118. .my-card .left-part .phone-p {
  1119. margin-top: 20px;
  1120. color: #ff7a43; }
  1121. .my-card .right-part h3 {
  1122. color: #666;
  1123. font-size: 12px;
  1124. font-weight: bold; }
  1125. .my-card .right-part .back {
  1126. cursor: pointer;
  1127. float: right;
  1128. _display: inline;
  1129. color: #999;
  1130. *margin-top: -18px; }
  1131. .my-card .right-part .back i {
  1132. display: inline-block;
  1133. *display: inline;
  1134. *zoom: 1;
  1135. width: 6px;
  1136. height: 5px;
  1137. background-image: url(../slice/arrow-left.png);
  1138. vertical-align: middle;
  1139. margin-right: 3px; }
  1140. .my-card .right-part ul {
  1141. height: 320px;
  1142. width: 355px;
  1143. overflow-y: hidden; }
  1144. .my-card .right-part ul li {
  1145. border-bottom: 1px solid #f0f0f0;
  1146. padding-bottom: 10px; }
  1147. .my-card .right-part ul li p {
  1148. color: #666;
  1149. line-height: 20px;
  1150. margin: 10px 0; }
  1151. .my-card .right-part ul li p span {
  1152. float: right;
  1153. _display: inline;
  1154. color: #ccc;
  1155. *margin-top: -20px;
  1156. margin-right: 5px;
  1157. display: inline-block;
  1158. *display: inline;
  1159. *zoom: 1; }
  1160. .my-card .right-part ul li img {
  1161. margin-right: 5px; }
  1162. .comment-info {
  1163. margin-right: 5px;
  1164. padding-top: 5px;
  1165. float: right;
  1166. _display: inline;
  1167. color: #666; }
  1168. .comment-info .first {
  1169. display: inline-block;
  1170. *display: inline;
  1171. *zoom: 1;
  1172. margin-right: 5px; }
  1173. .comment-info i {
  1174. display: inline-block;
  1175. *display: inline;
  1176. *zoom: 1;
  1177. vertical-align: middle; }
  1178. .comment-info .comment {
  1179. width: 14px;
  1180. height: 12px;
  1181. background-image: url(../slice/comment.png); }
  1182. .comment-info .like {
  1183. width: 13px;
  1184. height: 12px;
  1185. cursor: pointer;
  1186. background-image: url(../slice/like.png); }
  1187. .comment-info .like:hover {
  1188. background-image: url(../slice/like-hover.png); }
  1189. .mobile-huya {
  1190. padding-top: 15px; }
  1191. .mobile-huya .huya-ad-info-inner {
  1192. width: 238px; }
  1193. .mobile-huya .huya-ad-v2 .huya-ad-pic {
  1194. float: left;
  1195. _display: inline;
  1196. width: 305px;
  1197. height: 310px; }
  1198. .mobile-huya .huya-ad-v2 .huya-ad-info {
  1199. margin-left: 40px;
  1200. float: left;
  1201. _display: inline; }
  1202. .mobile-huya .huya-ad-v2 .huya-top {
  1203. text-align: center; }
  1204. .mobile-huya .huya-ad-v2 .blue-btn {
  1205. display: block;
  1206. width: 140px;
  1207. margin: 20px auto 15px; }
  1208. .mobile-huya .huya-ad-v2 .txt-list li {
  1209. padding: 4px 0; }
  1210. .mobile-huya .huya-ad-v2 .txt-list i {
  1211. display: inline-block;
  1212. *display: inline;
  1213. *zoom: 1;
  1214. width: 4px;
  1215. height: 2px;
  1216. vertical-align: middle;
  1217. margin-right: 3px;
  1218. background: url(../img/dot.png) no-repeat; }
  1219. .da-ye-bd {
  1220. float: left;
  1221. _display: inline;
  1222. width: 390px;
  1223. padding: 2px 0 0px 10px; }
  1224. .da-ye-bd .da-ye-wrap {
  1225. position: relative; }
  1226. .da-ye-bd .da-ye-wrap p {
  1227. position: absolute;
  1228. top: 0;
  1229. left: 0px;
  1230. color: #666; }
  1231. .da-ye-bd .da-ye {
  1232. float: left;
  1233. _display: inline;
  1234. width: 110px;
  1235. height: 110px;
  1236. margin: 11px -25px 0 -5px;
  1237. font-size: 30px; }
  1238. .da-ye-bd #kda {
  1239. margin: 28px 0 0 0; }
  1240. .da-ye-bd .avatar-arrow {
  1241. width: 7px !important;
  1242. height: 13px !important;
  1243. background: url(../img/p-arrow-left.png) no-repeat !important; }
  1244. .da-ye-bd .da-ye2 {
  1245. margin: -10px -20px 0 -72px !important; }
  1246. .da-ye-bd li {
  1247. float: left;
  1248. _display: inline;
  1249. text-align: center;
  1250. margin-left: 75px; }
  1251. .da-ye-bd li .percent1 {
  1252. background: url(../img/round.png) no-repeat;
  1253. width: 83px;
  1254. height: 83px;
  1255. line-height: 20px;
  1256. text-align: center; }
  1257. .da-ye-bd li .percent1 h2 {
  1258. padding-top: 24px;
  1259. color: #fa935b;
  1260. font-size: 20px;
  1261. font-weight: bold; }
  1262. .da-ye-bd li .percent1 p {
  1263. color: #fa935b;
  1264. font-size: 12px;
  1265. margin-top: 0px; }
  1266. .da-ye-bd li.kill-li {
  1267. margin-left: 39px; }
  1268. .da-ye-bd li .percent2 {
  1269. background-image: url(../slice/circle.png);
  1270. width: 80px;
  1271. height: 80px;
  1272. line-height: 20px;
  1273. text-align: center;
  1274. margin-top: 11px; }
  1275. .da-ye-bd li .percent2 h2 {
  1276. padding-top: 24px;
  1277. color: #408bcb;
  1278. font-size: 20px;
  1279. font-weight: bold; }
  1280. .da-ye-bd li .percent2 p {
  1281. color: #408bcb;
  1282. font-size: 12px;
  1283. margin-top: 0px; }
  1284. .da-ye-bd li p {
  1285. font-size: 12px;
  1286. color: #666;
  1287. margin-top: -26px; }
  1288. .history_info {
  1289. float: left;
  1290. _display: inline; }
  1291. .result {
  1292. float: right;
  1293. _display: inline; }
  1294. .history_li img {
  1295. float: left;
  1296. _display: inline;
  1297. width: 30px;
  1298. height: 30px; }
  1299. .mod-top {
  1300. position: relative;
  1301. clear: both;
  1302. padding: 16px 0 0;
  1303. *padding-top: 2px;
  1304. _padding-top: 2px;
  1305. width: 390px;
  1306. z-index: 10;
  1307. float: left;
  1308. _display: inline; }
  1309. .mod-top li {
  1310. float: left;
  1311. _display: inline;
  1312. width: 24%;
  1313. *width: 25%;
  1314. margin-bottom: 10px; }
  1315. .mod-top li .percent {
  1316. float: left;
  1317. _display: inline;
  1318. width: 67px;
  1319. height: 66px;
  1320. line-height: 20px;
  1321. text-align: center; }
  1322. .mod-top li .percent h2 {
  1323. padding-top: 15px;
  1324. color: #408bcb;
  1325. font-size: 20px;
  1326. font-weight: bold; }
  1327. .mod-top li .percent p {
  1328. color: #999;
  1329. font-size: 12px; }
  1330. .mod-top li .percent.p-0 {
  1331. background-image: url(../slice/ratio-bg-0.png); }
  1332. .mod-top li .percent.p-5 {
  1333. background-image: url(../slice/ratio-bg-5.png); }
  1334. .mod-top li .percent.p-10 {
  1335. background-image: url(../slice/ratio-bg-10.png); }
  1336. .mod-top li .percent.p-20 {
  1337. background-image: url(../slice/ratio-bg-20.png); }
  1338. .mod-top li .percent.p-30 {
  1339. background-image: url(../slice/ratio-bg-30.png); }
  1340. .mod-top li .percent.p-40 {
  1341. background-image: url(../slice/ratio-bg-40.png); }
  1342. .mod-top li .percent.p-50 {
  1343. background-image: url(../slice/ratio-bg-50.png); }
  1344. .mod-top li .percent.p-60 {
  1345. background-image: url(../slice/ratio-bg-60.png); }
  1346. .mod-top li .percent.p-70 {
  1347. background-image: url(../slice/ratio-bg-70.png); }
  1348. .mod-top li .percent.p-80 {
  1349. background-image: url(../slice/ratio-bg-80.png); }
  1350. .mod-top li .percent.p-90 {
  1351. background-image: url(../slice/ratio-bg-90.png); }
  1352. .mod-top li .percent.p-95 {
  1353. background-image: url(../slice/ratio-bg-95.png); }
  1354. .mod-top li .percent.p-100 {
  1355. background-image: url(../slice/ratio-bg-100.png); }
  1356. .mod-top li .game-info {
  1357. float: left;
  1358. _display: inline;
  1359. margin-left: 20px;
  1360. padding-top: 3px;
  1361. line-height: 20px; }
  1362. .mod-top li .game-info h3 {
  1363. font-size: 12px;
  1364. color: #666; }
  1365. .mod-top li .game-info p {
  1366. font-size: 12px;
  1367. color: #999; }
  1368. .mod-top li .game-info .win-blue {
  1369. color: #408bcb; }
  1370. .mod-top li .game-info .lost-red {
  1371. color: #f16868; }
  1372. .mod-top li .circle-div {
  1373. float: left;
  1374. _display: inline;
  1375. color: #408bcb; }
  1376. .mod-top li .g-win {
  1377. color: #408bcb;
  1378. padding-right: 10px; }
  1379. .mod-top li .g-lost {
  1380. color: #f16868; }
  1381. .mod-top li .g-total {
  1382. color: #999; }
  1383. .mod-top .no-data {
  1384. margin-left: 72px;
  1385. height: 95px;
  1386. padding-top: 26px; }
  1387. .mod-top .no-data img {
  1388. float: left;
  1389. _display: inline;
  1390. height: 71px; }
  1391. .mod-top .no-data .no-data-info {
  1392. float: left;
  1393. _display: inline;
  1394. margin-left: 15px;
  1395. padding-top: 20px; }
  1396. #gameCount {
  1397. padding-left: 15px; }
  1398. .mod-bottom {
  1399. padding-top: 8px; }
  1400. .mod-bottom .left-part {
  1401. position: absolute;
  1402. top: 192px;
  1403. left: 0;
  1404. z-index: 100; }
  1405. .right-part {
  1406. float: left;
  1407. _display: inline;
  1408. width: 190px;
  1409. *margin-top: 4px;
  1410. _margin-top: 4px; }
  1411. .right-hd h2, .right-hd span {
  1412. float: left;
  1413. _display: inline; }
  1414. .right-hd h2 {
  1415. color: #666;
  1416. font-size: 12px;
  1417. font-weight: bold;
  1418. margin-right: 3px; }
  1419. .right-hd span.flag {
  1420. width: 63px;
  1421. height: 19px;
  1422. line-height: 19px;
  1423. text-align: center; }
  1424. .right-hd span.flag i {
  1425. display: inline-block;
  1426. *display: inline;
  1427. *zoom: 1;
  1428. vertical-align: -2px;
  1429. margin-right: 2px; }
  1430. .right-hd .flag1 {
  1431. background-image: url(../slice/angle-pink.png);
  1432. color: #f16868; }
  1433. .right-hd .flag1 i {
  1434. width: 13px;
  1435. height: 13px;
  1436. background-image: url(../slice/flag1.png); }
  1437. .right-hd .flag2 {
  1438. background-image: url(../slice/angle-blue.png);
  1439. color: #5490c0; }
  1440. .right-hd .flag2 i {
  1441. width: 14px;
  1442. height: 13px;
  1443. background-image: url(../slice/flag2.png); }
  1444. .right-hd .flag3 {
  1445. background-image: url(../slice/angle-yellow.png);
  1446. width: 78px !important;
  1447. color: #f16868; }
  1448. .right-hd .flag3 i {
  1449. width: 14px;
  1450. height: 12px;
  1451. background-image: url(../slice/flag3.png); }
  1452. .right-hd .flag4 {
  1453. background-image: url(../slice/pink-bg.png);
  1454. width: 79px !important;
  1455. color: #af73c7; }
  1456. .right-hd .flag4 i {
  1457. width: 14px;
  1458. height: 13px;
  1459. background-image: url(../slice/flag4.png); }
  1460. .first-win .first-msg {
  1461. display: inline-block;
  1462. *display: inline;
  1463. *zoom: 1;
  1464. margin-right: 3px;
  1465. width: 18px;
  1466. height: 18px;
  1467. background: url(../img/first-win-dark.png); }
  1468. .first-win .first-msg.active-status {
  1469. cursor: pointer;
  1470. background: url(../img/first-win.png); }
  1471. .first-win .first-time {
  1472. color: #7e92a5;
  1473. display: inline-block;
  1474. *display: inline;
  1475. *zoom: 1; }
  1476. .first-win .first-time .f-time {
  1477. float: none; }
  1478. .first-win-hover {
  1479. display: none;
  1480. position: absolute;
  1481. padding: 10px;
  1482. border: 1px solid #e7e7e7;
  1483. background: #fff;
  1484. z-index: 9;
  1485. width: 105px;
  1486. top: 35px;
  1487. right: 38px; }
  1488. .right-bd {
  1489. margin-top: 8px;
  1490. width: 190px; }
  1491. .right-bd ul {
  1492. height: 320px; }
  1493. .right-bd li {
  1494. cursor: pointer;
  1495. margin-bottom: 15px;
  1496. height: 32px; }
  1497. .right-bd li:last-child {
  1498. margin-bottom: 0;}
  1499. .right-bd li img {
  1500. vertical-align: middle;
  1501. margin-right: 10px; }
  1502. .right-bd li span {
  1503. display: inline-block;
  1504. *display: inline;
  1505. *zoom: 1;
  1506. text-align: left; }
  1507. .right-bd li .result {
  1508. width: 32px;
  1509. color: #4eb95a;
  1510. padding-right: 5px; }
  1511. .right-bd li .result.red {
  1512. color: #ef3d3d; }
  1513. .right-bd li .type {
  1514. width: 100px;
  1515. *width: 99px;
  1516. color: #666; }
  1517. .right-bd li .time {
  1518. color: #999; }
  1519. .right-bd li:hover{
  1520. background: #ecf3f9;
  1521. }
  1522. .hero-wrap {
  1523. position: absolute;
  1524. top: 138px;
  1525. clear: both; }
  1526. .hero-tip {
  1527. float: left;
  1528. _display: inline;
  1529. width: 78px;
  1530. height: 62px;
  1531. color: #666;
  1532. font-weight: bold;
  1533. text-align: center;
  1534. background: url(../img/more.png) no-repeat; }
  1535. .hero-tip span {
  1536. display: inline-block;
  1537. *display: inline;
  1538. *zoom: 1;
  1539. padding-top: 6px; }
  1540. .hero-tip.tip-large {
  1541. height: 70px;
  1542. background: url(../img/more-big.png) no-repeat; }
  1543. .hero-tip.tip-large span {
  1544. padding-top: 10px; }
  1545. .hero-nav {
  1546. position: absolute;
  1547. top: -1px;
  1548. width: 17px;
  1549. height: 64px;
  1550. text-align: center;
  1551. background-color: #ddebf7;
  1552. -webkit-border-radius: 3px;
  1553. -moz-border-radius: 3px;
  1554. -ms-border-radius: 3px;
  1555. -o-border-radius: 3px;
  1556. border-radius: 3px; }
  1557. .hero-nav i {
  1558. display: inline-block;
  1559. *display: inline;
  1560. *zoom: 1;
  1561. width: 5px;
  1562. height: 9px;
  1563. margin-top: 26px; }
  1564. .hero-nav.h-l {
  1565. left: 0; }
  1566. .hero-nav.h-l i {
  1567. background: url(../img/h-l.png); }
  1568. .hero-nav.h-r {
  1569. right: 0; }
  1570. .hero-nav.h-r i {
  1571. background: url(../img/h-r.png); }
  1572. .hero-nav:hover {
  1573. background-color: #ecf3f9; }
  1574. #gameCount2015 ul {
  1575. height: 68px;
  1576. padding: 2px 0;
  1577. border-bottom: 1px solid #f0f0f0; }
  1578. #gameCount2015 ul.last {
  1579. border-bottom: none !important; }
  1580. #gameCount2015 li {
  1581. width: 23% !important;
  1582. margin-bottom: 3px !important; }
  1583. .content-2015 {
  1584. position: absolute;
  1585. width: 100%;
  1586. z-index: 999999;
  1587. background-color: #fff; }
  1588. .mode-2 {
  1589. border-bottom: none;
  1590. padding: 10px 0 !important; }
  1591. .nav-top-bottom {
  1592. height: 9px;
  1593. line-height: 9px;
  1594. background: #ddebf7;
  1595. text-align: center;
  1596. cursor: pointer;
  1597. display: block; }
  1598. .nav-top-bottom i {
  1599. display: inline-block;
  1600. *display: inline;
  1601. *zoom: 1;
  1602. width: 9px;
  1603. height: 5px;
  1604. vertical-align: 2px;
  1605. background-image: url(../slice/blue-arrow-down.png); }
  1606. .nav-top-bottom.active i {
  1607. background-image: url(../slice/blue-arrow-up.png); }
  1608. .table-history {
  1609. text-align: center;
  1610. color: #666; }
  1611. .table-history th {
  1612. height: 36px;
  1613. line-height: 36px; }
  1614. .table-history td {
  1615. height: 34px;
  1616. line-height: 34px; }
  1617. .table-history .last {
  1618. border-right: none; }
  1619. .table-history th {
  1620. background: #ecf3f9; }
  1621. .table-history td {
  1622. background: #fcfdfd;
  1623. border-bottom: 1px solid #f0f0f0; }
  1624. .table-history td:first-child {
  1625. border-right: 1px solid #f0f0f0; }
  1626. .table-history td .lase {
  1627. border-bottom: none; }
  1628. .table-history table {
  1629. border: 1px solid #f0f0f0; }
  1630. .table-history .table-win {
  1631. color: #52c15f; }
  1632. .table-history .table-lose {
  1633. color: #ef3d3d; }
  1634. .table-history .s4-s5 {
  1635. display: none; }
  1636. .toggle-s4-s5 {
  1637. cursor: default; }
  1638. .toggle-s4-s5 i {
  1639. display: inline-block;
  1640. *display: inline;
  1641. *zoom: 1;
  1642. width: 7px;
  1643. height: 4px;
  1644. margin-left: 5px;
  1645. vertical-align: 5px;
  1646. background-image: url(../slice/arrow-gray-d.png); }
  1647. .toggle-s4-s5 i.up {
  1648. background-image: url(../slice/arrow-gray-u.png); }
  1649. .p-table {
  1650. position: relative;
  1651. z-index: 100;
  1652. margin-top: -55px;
  1653. margin-bottom: 5px; }
  1654. .duan-wei {
  1655. width: 70px;
  1656. float: left;
  1657. }
  1658. .duan-wei .duan-wei-msg {
  1659. color: #ed4925;
  1660. font-weight: bold;
  1661. text-align: center;
  1662. }
  1663. .duan-wei h3 {
  1664. color: #666;
  1665. font-size: 14px; }
  1666. .duan-wei p {
  1667. color: #999; }
  1668. .ch_level {
  1669. position: absolute;
  1670. left: -10px;
  1671. top: -8px;
  1672. z-index: 2;
  1673. width: 35px;
  1674. height: 30px; }
  1675. .ch_level.level_1 {
  1676. background: url(../img/champion_level_1.png); }
  1677. .ch_level.level_2 {
  1678. background: url(../img/champion_level_2.png); }
  1679. .ch_level.level_3 {
  1680. background: url(../img/champion_level_3.png); }
  1681. .ch_level.level_4 {
  1682. background: url(../img/champion_level_4.png); }
  1683. .ch_level.level_5 {
  1684. background: url(../img/champion_level_5.png); }
  1685. .personal-hover .hover-bd li {
  1686. margin-bottom: 8px !important; }
  1687. .split-line {
  1688. position: absolute;
  1689. top: 15px;
  1690. width: 1px;
  1691. height: 100px;
  1692. background: #f0f0f0;
  1693. z-index: 100; }
  1694. .split-line.one {
  1695. left: 195px; }
  1696. .split-line.two {
  1697. right: 115px; }
  1698. .li-golden {
  1699. border-right: 1px solid #f0f0f0;
  1700. margin-right: 21px;
  1701. padding-right: 5px; }
  1702. .new-split {
  1703. width: 1px;
  1704. height: 11px;
  1705. background: #ccc;
  1706. margin: 0 9px;
  1707. display: inline-block;
  1708. vertical-align: -1px; }
  1709. .ad-wrap {
  1710. position: absolute;
  1711. bottom: -3px;
  1712. left: 0; }
  1713. .personal-nav-wrap {
  1714. width: 600px;
  1715. padding: 15px;
  1716. padding-bottom: 0; }
  1717. .personal-nav-wrap .mod-tabs-hd{
  1718. width: 100%;
  1719. overflow: hidden; }
  1720. .personal-nav-wrap .mod-tabs-trigger{
  1721. width: 524px;
  1722. background: #ecf3f9; }
  1723. .button_qzone span, .button_tqq span, .button_tsina span {
  1724. background: none; }
  1725. .col-3 {
  1726. width: 33.3% !important; }
  1727. .col-2 {
  1728. width: 50% !important; }
  1729. .line-small {
  1730. width: 1px;
  1731. height: 11px;
  1732. background-color: #ccc;
  1733. vertical-align: -1px;
  1734. margin: 0 5px;
  1735. display: inline-block;
  1736. *display: inline;
  1737. *zoom: 1; }
  1738. .blacklist {
  1739. padding: 3px 5px;
  1740. *padding: 0px 5px;
  1741. background-color: #ddebf7;
  1742. color: #666;
  1743. text-align: center;
  1744. border-radius: 3px;
  1745. cursor: pointer;
  1746. margin-left: 5px; }
  1747. .round-mask {
  1748. position: absolute;
  1749. width: 75px;
  1750. height: 75px;
  1751. top: 40px;
  1752. left: 28px;
  1753. text-align: center;
  1754. background: url(../img/round.png) no-repeat; }
  1755. .round-mask h3 {
  1756. padding-top: 30px;
  1757. padding-bottom: 5px;
  1758. color: #408bcb;
  1759. font-size: 14px; }
  1760. .round-mask p {
  1761. color: #408bcb; }
  1762. .charts-wrap {
  1763. min-width: 130px;
  1764. max-width: 160px;
  1765. height: 160px;
  1766. margin-top: -20px;
  1767. margin-left: 0; }
  1768. .charts-round-wrap {
  1769. position: relative; }
  1770. .charts-round-wrap h3 {
  1771. text-align: center; }
  1772. .charts-title {
  1773. position: absolute;
  1774. top: 10px;
  1775. left: 38px;
  1776. z-index: 1000; }
  1777. .charts-more {
  1778. position: absolute;
  1779. left: 120px;
  1780. top: 10px;
  1781. width: 92px;
  1782. z-index: 10; }
  1783. .charts-more h3 {
  1784. padding-bottom: 17px; }
  1785. .charts-more p {
  1786. color: #999;
  1787. padding-bottom: 10px; }
  1788. .charts-more .col-l {
  1789. display: inline-block;
  1790. *display: inline;
  1791. *zoom: 1;
  1792. width: 48px; }
  1793. .charts-more .col-r {
  1794. color: #666;
  1795. font-weight: bold;
  1796. padding-left: 2px; }
  1797. .recent-game-wrap {
  1798. margin-left: -31px; }
  1799. .jungle-area-wrap {
  1800. margin-left: 78px; }
  1801. .composite-rate .round-mask h3, .composite-rate .round-mask p {
  1802. color: #408bcb; }
  1803. .jungle-area .round-mask h3, .jungle-area .round-mask p {
  1804. color: #37925f; }
  1805. .mod-title {
  1806. position: absolute;
  1807. z-index: 100; }
  1808. .achievement {
  1809. padding-top: 20px; }
  1810. .achievement li {
  1811. position: relative;
  1812. text-align: center; }
  1813. .achievement li p.msg {
  1814. position: absolute;
  1815. left: 18px;
  1816. width: 84px;
  1817. color: #999;
  1818. top: 94px; }
  1819. .achievement li p.msg span {
  1820. color: #666;
  1821. font-weight: bold; }
  1822. .achievement .charts-wrap {
  1823. min-width: 120px;
  1824. max-width: 140px;
  1825. height: 140px; }
  1826. .achievement .round-mask {
  1827. width: 69px;
  1828. height: 69px;
  1829. top: 33px;
  1830. left: 26px;
  1831. background: url(../img/round2.png) no-repeat; }
  1832. .achievement .round-mask h3 {
  1833. font-size: 18px;
  1834. padding-top: 15px;
  1835. padding-bottom: 0px; }
  1836. .achievement .round-mask p {
  1837. font-size: 14px; }
  1838. .super-god .round-mask h3, .super-god .round-mask p {
  1839. color: #f47f5c; }
  1840. /* 相关开关设置 */
  1841. .lock-wrap li.unfinish:hover .no-lock-mask, .lock-wrap li.finish:hover .lock-hover-mask, .lock-wrap li.active .lock-active-mask{
  1842. display: block;
  1843. }
  1844. .lock-wrap li.unfinish{
  1845. /* -webkit-filter: grayscale(100%);
  1846. -moz-filter: grayscale(100%);
  1847. -ms-filter: grayscale(100%);
  1848. -o-filter: grayscale(100%);
  1849. filter: grayscale(100%);
  1850. filter: gray; */
  1851. }
  1852. .lock-wrap li.unfinish:hover{
  1853. -webkit-filter: grayscale(0%);
  1854. -moz-filter: grayscale(0%);
  1855. -ms-filter: grayscale(0%);
  1856. -o-filter: grayscale(0%);
  1857. filter: grayscale(0%);
  1858. filter: none;
  1859. }
  1860. .lock-wrap li.unfinish .no-lock-mask{
  1861. cursor: not-allowed;
  1862. }
  1863. .lock-wrap {
  1864. margin-top: 20px; }
  1865. .lock-wrap li {
  1866. cursor: pointer;
  1867. position: relative;
  1868. width: 110px;
  1869. height: 65px;
  1870. background-color: #ecf3f9;
  1871. text-align: center;
  1872. margin-right: 12px;
  1873. margin-bottom: 10px; }
  1874. .lock-wrap li.boundary {
  1875. margin-right: 0; }
  1876. .lock-wrap li p {
  1877. color: #999; }
  1878. .lock-wrap li img {
  1879. padding-top: 6px; }
  1880. .lock-wrap li p.title{
  1881. margin-top: -3px;
  1882. }
  1883. .lock-wrap li p.num{
  1884. font-weight: bold;
  1885. margin-top: -2px;
  1886. }
  1887. .no-lock-mask {
  1888. display: none;
  1889. position: absolute;
  1890. top: 0;
  1891. left: 0;
  1892. width: 100%;
  1893. height: 100%;
  1894. background: rgba(133, 181, 211, 0.4);
  1895. filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#7f85b5dd, endColorstr=#7f85b5dd);
  1896. text-align: center; }
  1897. .no-lock-mask p {
  1898. color: #fff !important;
  1899. font-size: 14px;
  1900. font-weight: bold;
  1901. padding-top: 22px; }
  1902. .no-lock-mask p i {
  1903. margin-right: 8px;
  1904. vertical-align: -5px; }
  1905. .lock {
  1906. display: inline-block;
  1907. *display: inline;
  1908. *zoom: 1;
  1909. width: 15px;
  1910. height: 21px;
  1911. background: url(../img/lock.png) no-repeat; }
  1912. .lock-hover-mask {
  1913. display: none;
  1914. position: absolute;
  1915. top: 0;
  1916. left: 0;
  1917. width: 106px;
  1918. height: 61px;
  1919. border: 2px solid #9ec8eb; }
  1920. .lock-hover-mask .inner {
  1921. position: absolute;
  1922. width: 100%;
  1923. left: 0;
  1924. bottom: 0;
  1925. height: 20px;
  1926. line-height: 20px;
  1927. background: rgba(133, 181, 211, 0.4);
  1928. filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#7f85b5dd, endColorstr=#7f85b5dd);
  1929. text-align: center; }
  1930. .lock-hover-mask .inner a {
  1931. color: #fff; }
  1932. .lock-active-mask {
  1933. display: none;
  1934. position: absolute;
  1935. top: 0;
  1936. left: 0;
  1937. width: 106px;
  1938. height: 61px;
  1939. border: 2px solid #9ec8eb; }
  1940. .lock-active-mask i {
  1941. position: absolute;
  1942. right: -1px;
  1943. bottom: 0;
  1944. display: inline-block;
  1945. *display: inline;
  1946. *zoom: 1;
  1947. width: 18px;
  1948. height: 16px;
  1949. background: url(../img/vertical_triangle.png) no-repeat; }
  1950. .page-ad {
  1951. *margin-top: 10px; }
  1952. .content-nav {
  1953. position: relative;
  1954. z-index: 1; }
  1955. .content-nav li {
  1956. position: relative;
  1957. width: 198px;
  1958. height: 27px;
  1959. line-height: 27px;
  1960. background-color: #ecf3f9;
  1961. text-align: center;
  1962. font-weight: bold;
  1963. border-radius: 5px;
  1964. margin-right: 3px; }
  1965. .content-nav li a {
  1966. display: block;
  1967. width: 100%;
  1968. height: 100%; }
  1969. .content-nav li.last {
  1970. margin-right: 0; }
  1971. .content-nav li.active {
  1972. background-color: #ddebf7; }
  1973. .content-nav li.active .arrow-down {
  1974. display: inline-block;
  1975. *display: inline;
  1976. *zoom: 1; }
  1977. .arrow-down {
  1978. display: none;
  1979. position: absolute;
  1980. bottom: -6px;
  1981. left: 50%;
  1982. margin-left: -6.5px;
  1983. width: 13px;
  1984. height: 6px;
  1985. background: url(../img/blue-arrow.png) no-repeat; }
  1986. .detail-main {
  1987. padding-top: 10px;
  1988. position: relative;
  1989. height: 224px; }
  1990. .detail-main .main-left {
  1991. position: relative;
  1992. width: 496px;
  1993. margin-right: 17px; }
  1994. .detail-main .main-right {
  1995. width: 85px; }
  1996. .main-right ul {
  1997. height: 207px;
  1998. overflow: hidden; }
  1999. .main-right li {
  2000. margin-top: 9px; }
  2001. .main-right .detail {
  2002. padding-top: 5px;
  2003. padding-left: 10px; }
  2004. .main-right .detail span {
  2005. color: #999; }
  2006. .main-right .detail p {
  2007. color: #666; }
  2008. .detail-videos {
  2009. margin-top: 5px; }
  2010. .detail-videos ul {
  2011. padding-left: 2px; }
  2012. .detail-videos li {
  2013. position: relative;
  2014. margin-left: 10px;
  2015. width: 120px; }
  2016. .detail-videos li img {
  2017. width: 120px;
  2018. height: 70px; }
  2019. .video-more {
  2020. position: absolute;
  2021. left: 0;
  2022. bottom: 3px;
  2023. width: 100%;
  2024. height: 24px;
  2025. line-height: 24px;
  2026. background: rgba(0, 0, 0, 0.5);
  2027. filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#7f000000,endColorstr=#7f000000); }
  2028. .video-more .inner {
  2029. padding: 0 10px; }
  2030. .video-more .title {
  2031. color: #ccc;
  2032. width: 62px; }
  2033. .video-more .time {
  2034. color: #999; }
  2035. .level-charts {
  2036. margin-top: 14px; }
  2037. .level-charts ul {
  2038. padding-left: 50px; }
  2039. .level-charts li {
  2040. position: relative; }
  2041. .level-charts .charts-round-wrap {
  2042. cursor: pointer; }
  2043. .level-charts .msg {
  2044. width: 100%;
  2045. position: absolute;
  2046. top: 112px;
  2047. left: 0;
  2048. right: 0;
  2049. margin: auto;
  2050. text-align: center; }
  2051. .level-charts .tip {
  2052. position: absolute;
  2053. right: 27px;
  2054. bottom: 50px;
  2055. display: inline-block;
  2056. *display: inline;
  2057. *zoom: 1;
  2058. width: 14px;
  2059. height: 14px; }
  2060. .level-charts .tip.wrong {
  2061. background: url(../img/wrong.png) no-repeat; }
  2062. .level-charts .tip.check {
  2063. background: url(../img/check1.png) no-repeat; }
  2064. .level-charts .active .round-mask {
  2065. width: 87px;
  2066. height: 87px;
  2067. top: 39px;
  2068. left: 26px;
  2069. background: url(../img/round3.png) no-repeat; }
  2070. .level-charts .active .round-mask h3, .level-charts .active .round-mask p {
  2071. color: #f47f5c; }
  2072. .level-charts .active .round-mask h3 {
  2073. font-size: 20px; }
  2074. .level-charts .active .round-mask p {
  2075. font-size: 14px; }
  2076. .level-charts .active .charts-wrap {
  2077. min-width: 140px;
  2078. max-width: 170px;
  2079. height: 170px;
  2080. margin-top: -24px; }
  2081. .level-charts .round-arrow {
  2082. position: absolute;
  2083. left: 47%;
  2084. bottom: 32px;
  2085. width: 11px;
  2086. height: 7px;
  2087. background: url(../img/triangle-down.png) no-repeat; }
  2088. .detail-info {
  2089. position: absolute;
  2090. left: 0;
  2091. z-index: 10;
  2092. color: #666; }
  2093. .detail-info .title {
  2094. font-weight: bold;
  2095. padding-right: 10px; }
  2096. .detail-info .question {
  2097. display: inline-block;
  2098. *display: inline;
  2099. *zoom: 1;
  2100. width: 13px;
  2101. height: 13px;
  2102. vertical-align: -1px;
  2103. cursor: pointer;
  2104. background: url(../img/question2.png) no-repeat; }
  2105. .detail-desc {
  2106. position: absolute;
  2107. left: 0;
  2108. top: 0;
  2109. text-align: center;
  2110. z-index: 10;
  2111. color: #999999;
  2112. }
  2113. .detail-left-more {
  2114. margin-top: 12px;
  2115. height: 50px;
  2116. background: #ecf3f9;
  2117. text-align: center; }
  2118. .detail-left-more ul {
  2119. padding: 10px 0; }
  2120. .detail-left-more li {
  2121. width: 123px;
  2122. border-right: 1px solid #e4e4e4; }
  2123. .detail-left-more li h3 {
  2124. font-size: 14px;
  2125. color: #666; }
  2126. .detail-left-more li p {
  2127. color: #999; }
  2128. .detail-left-more li.last {
  2129. border-right: none; }
  2130. #modeTabs a{display: block;width: 131px;height: 30px;}
  2131. .detail-desc__winRate{font-size: 14px;font-weight: 600;}
  2132. /* .best-position__data .col-l{width: 42px;} */
  2133. .record-ad__wrap{position: absolute;top: 65px;left: 0;width: 387px;height: 90px;overflow: hidden;}
  2134. .mod-tabs-trigger{float: left;}
  2135. .common-page__control{width: 75px;height: 30px;float: left;background: #ddebf7;}
  2136. .common-page__control a{display: block;width: 30px;height: 23px;float: left;margin: 3px 0 0 5px;}
  2137. .common-page__goBack{background: url(/frontend/img/common/back.png?__sprite);visibility: hidden;}
  2138. .common-page__goBack:hover{background: url(/frontend/img/common/back-hover.png?__sprite);}
  2139. .common-page__reflash{background: url(/frontend/img/common/reflash.png?__sprite);}
  2140. .common-page__reflash:hover{background: url(/frontend/img/common/reflash-hover.png?__sprite);}
  2141. .userMedal{position: absolute;top: -5px;left: -11px;}
  2142. .lock-wrap .lock{position: absolute;top: 20px;left: 20px;}
  2143. .no-lock__info{position: absolute;top: 12px;left: 40px;}
  2144. .no-lock__info p{padding-top: 0;}
  2145. .name-info__nameServer{color: #999999;float: left;}
  2146. .user-hero__box{width: 230px;height: 69px;float: right;}
  2147. .user-hero__header{width: 100%;height: 18px;line-height: 18px;}
  2148. .user-hero__header h3{float: left;}
  2149. .user-hero__header a{float: right;}
  2150. .user-hero__list{margin-top: 8px;margin-left: -5px;}
  2151. .user-hero__list li{width: 42px;height: 42px;float: left;position: relative;margin-left: 5px;}
  2152. .user-hero__list li a, .user-hero__list li a img{display: block;width: 100%;height: 100%;}
  2153. .user-hero__info,.user-hero__mask{position: absolute;top: 0;left: 0;width: 100%;height: 100%;text-align: center;display: none;}
  2154. .user-hero__list li:hover .user-hero__info,.user-hero__list li:hover .user-hero__mask{
  2155. display: block;
  2156. }
  2157. .user-hero__info{z-index: 101;}
  2158. .user-hero__info p{color: #fff;}
  2159. .user-hero__mask{
  2160. filter:Alpha(Opacity=50);opacity:0.5;
  2161. z-index: 100;
  2162. background: #000;
  2163. }
  2164. .user-hero__info--title{margin-top: 5px;}
  2165. .userInfo-common__focus{position: absolute;top: -15px;left: 30px;width: 135px;display: none;overflow: hidden;}
  2166. .user-hero__info--tips{width: 90px;height: 42px;background: url(../img/tips.png);position: absolute;top: 45px;left: -45px;}
  2167. .user-hero__info--tips p{width: 85px;height: 30px;line-height: 30px;color: #666666;text-align: center;margin: 7px auto;}
  2168. .userInfo-common__focus .btn-copy{
  2169. float: left;
  2170. background: url(../img/btncopy-bg.png) no-repeat;
  2171. width: 69px;
  2172. height: 19px;
  2173. line-height: 19px;
  2174. margin-top: 2px;
  2175. margin-left: 5px;
  2176. cursor: pointer;
  2177. vertical-align: -3px;
  2178. font-size: 10px;
  2179. color: #fff;
  2180. text-align: center;}
  2181. .right-bd{margin-top:0;}
  2182. .right-bd li{margin: 0; padding: 7px 0 6px;}
  2183. .icon-fighting{
  2184. width: 70px;
  2185. height: 52px;
  2186. background: url(../img/user-common__fighting.png) no-repeat;
  2187. }