personal.css 54 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358
  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. display: none;
  653. background: url(../img/attention-bg.png);
  654. width: 42px;
  655. height: 19px;
  656. margin-top: 2px;
  657. margin-left: 5px;
  658. cursor: pointer;
  659. vertical-align: -3px; }
  660. .attention.already {
  661. width: 52px !important;
  662. background: url(../img/attention-already-bg.png); }
  663. .tier_0, .tier_1, .tier_2, .tier_3, .tier_4, .tier_5, .tier_6 {
  664. text-align: center;
  665. font-weight: bold; }
  666. .tier_0 div, .tier_1 div, .tier_2 div, .tier_3 div, .tier_4 div, .tier_5 div, .tier_6 div {
  667. margin: 0 auto 5px; }
  668. .tier_0 p {
  669. color: #c6521e; }
  670. .tier_1 p {
  671. color: #e89c25; }
  672. .tier_2 p {
  673. color: #4c9c95; }
  674. .tier_3 p {
  675. color: #4c9c95; }
  676. .tier_4 p {
  677. color: #3d8fc8; }
  678. .tier_5 p {
  679. color: #4c9c95; }
  680. .tier_6 p {
  681. color: #c06625; }
  682. .tier_img_1 {
  683. *right: -6px !important;
  684. *bottom: -8px !important;
  685. right: -6px\0 !important;
  686. bottom: -8px\0 !important;
  687. width: 53px;
  688. height: 41px;
  689. background: url(../img/rank-vip1.png) no-repeat; }
  690. .tier_img_2 {
  691. *right: -6px !important;
  692. *bottom: -8px !important;
  693. right: -8px\0 !important;
  694. bottom: -10px\0 !important;
  695. width: 53px;
  696. height: 45px;
  697. background: url(../img/rank-vip2.png) no-repeat; }
  698. .tier_img_3 {
  699. *right: -6px !important;
  700. *bottom: -8px !important;
  701. right: -6px\0 !important;
  702. bottom: -8px\0 !important;
  703. width: 53px;
  704. height: 48px;
  705. background: url(../img/rank-vip3.png) no-repeat; }
  706. .tier_img_4 {
  707. *right: -6px !important;
  708. *bottom: -8px !important;
  709. right: -8px\0 !important;
  710. bottom: -8px\0 !important;
  711. width: 52px;
  712. height: 50px;
  713. background: url(../img/rank-vip4.png) no-repeat; }
  714. .tier_img_5 {
  715. *right: -12px !important;
  716. *bottom: -14px !important;
  717. right: -12px\0 !important;
  718. bottom: -14px\0 !important;
  719. width: 64px;
  720. height: 50px;
  721. background: url(../img/rank-vip5.png) no-repeat; }
  722. .tier_img_6 {
  723. width: 60px;
  724. height: 50px;
  725. background: url(../img/rank-vip7.png) no-repeat; }
  726. .tier_img_7 {
  727. width: 63px;
  728. height: 52px;
  729. background: url(../img/rank-vip6.png) no-repeat; }
  730. .intro {
  731. position: relative;
  732. z-index: 9;
  733. height: 84px;
  734. width: 600px;
  735. float: left;
  736. _display: inline; }
  737. .intro .info {
  738. width: 285px;
  739. float: left;
  740. _display: inline; }
  741. .intro.b-bottom {
  742. border-bottom: 1px solid #f0f0f0; }
  743. .blacklist {
  744. padding-left: 5px;
  745. *margin-left: -2px; }
  746. .blacklist .black-eye {
  747. display: inline-block;
  748. *display: inline;
  749. *zoom: 1;
  750. width: 14px;
  751. height: 11px;
  752. background-image: url(../slice/eye.png); }
  753. .blacklist label {
  754. color: #666; }
  755. .mod-tabs {
  756. clear: both; }
  757. .mod-tabs-bd {
  758. position: relative;
  759. z-index: 1;
  760. }
  761. .mod-tabs-content {
  762. clear: both; }
  763. .avatar {
  764. position: relative;
  765. width: 66px;
  766. float: left;
  767. _display: inline;
  768. margin-right: 10px; }
  769. .avatar a {
  770. display: block; }
  771. .avatar a img {
  772. width: 66px;
  773. height: 66px;
  774. -webkit-border-radius: 66px;
  775. border-radius: 66px;
  776. -webkit-background-clip: padding-box;
  777. -moz-background-clip: padding;
  778. background-clip: padding-box;
  779. behavior: url(js/PIE.htc); }
  780. .avatar .p_level {
  781. position: absolute;
  782. right: 0;
  783. bottom: 0;
  784. color: #fff;
  785. width: 18px;
  786. height: 18px;
  787. line-height: 18px;
  788. text-align: center;
  789. background: url(../img/p_level.png); }
  790. .text {
  791. position: relative;
  792. float: left;
  793. _display: inline;
  794. line-height: 24px;
  795. }
  796. .text .name-info {
  797. padding-top: 7px;
  798. margin-bottom: -2px;
  799. }
  800. .text .name-info .name {
  801. color: #666;
  802. font-size: 16px;
  803. font-weight: bold;
  804. width: 125px;
  805. float: left;
  806. display: block;
  807. white-space: nowrap;
  808. overflow: hidden;
  809. text-overflow: ellipsis;
  810. }
  811. .text img {
  812. vertical-align: -2px; }
  813. .text .more-info {
  814. margin-top: 4px;
  815. height: 20px;
  816. color: #666;
  817. font-size: 12px; }
  818. .blacklist-content2 a {
  819. display: inline-block;
  820. *display: inline;
  821. *zoom: 1;
  822. color: #408bcb;
  823. margin-left: 5px; }
  824. .fighting {
  825. width: 95px;
  826. height: 64px;
  827. position: absolute;
  828. top: 5px;
  829. right: 175px;
  830. background: url(../img/bg-flighting.png); }
  831. .fighting p, .fighting .fight-block {
  832. text-align: center;
  833. font-weight: bold; }
  834. .fighting p strong, .fighting .fight-block strong {
  835. line-height: 32px;
  836. color: #fff;
  837. font-size: 14px; }
  838. .fighting p a.question-mark, .fighting .fight-block a.question-mark {
  839. display: inline-block;
  840. *display: inline;
  841. *zoom: 1;
  842. width: 16px;
  843. height: 16px;
  844. background-image: url(../slice/question.png);
  845. margin-left: 2px;
  846. vertical-align: -2px;
  847. *vertical-align: 1px; }
  848. .fighting p em, .fighting .fight-block em {
  849. line-height: 35px;
  850. font-size: 18px;
  851. color: #408bcb; }
  852. .fight-rank {
  853. right: -312px;
  854. top: 32px;
  855. width: 316px;
  856. padding: 15px; }
  857. .fight-rank p {
  858. text-align: left;
  859. margin-bottom: 5px; }
  860. .fight-rank h3 {
  861. margin-bottom: 15px;
  862. text-align: left; }
  863. .fight-rank a {
  864. color: #408bcb;
  865. float: left;
  866. _display: inline; }
  867. .com-hero {
  868. position: relative;
  869. width: 390px;
  870. float: left;
  871. _display: inline;
  872. padding-top: 4px;
  873. line-height: 20px;
  874. padding-bottom: 15px;
  875. z-index: 1;
  876. clear: both;
  877. margin-top: -62px; }
  878. .com-hero h3 {
  879. color: #666;
  880. line-height: 16px;
  881. display: inline;
  882. font-weight: bold; }
  883. .com-hero ul.mod-pic {
  884. height: 45px;
  885. margin-left: 15px;
  886. margin-top: -3px;
  887. *margin-top: 2px;
  888. _margin-top: 2px; }
  889. .com-hero .more {
  890. display: inline-block;
  891. *display: inline;
  892. *zoom: 1; }
  893. .mod-pic-li {
  894. position: relative;
  895. width: 45px;
  896. height: 45px;
  897. margin-left: 15px;
  898. *margin-left: 14px;
  899. float: left;
  900. _display: inline; }
  901. .mod-pic-li a.core {
  902. display: inline-block;
  903. *display: inline;
  904. *zoom: 1;
  905. text-align: center;
  906. position: relative; }
  907. .mod-pic-li a.core p {
  908. color: #666;
  909. clear: both;
  910. height: 20px;
  911. width: 53px;
  912. margin-top: -4px; }
  913. .mod-pic-li img.core-img {
  914. width: 45px;
  915. height: 45px; }
  916. .phone-card .left-part {
  917. float: left;
  918. _display: inline;
  919. border-right: 1px solid #f0f0f0;
  920. width: 374px;
  921. height: 344px;
  922. padding-right: 6px; }
  923. .phone-card .left-part h2 {
  924. font-size: 12px;
  925. color: #666;
  926. font-weight: bold; }
  927. .phone-card .left-part ul li {
  928. float: left;
  929. _display: inline;
  930. margin: 10px 12px 0 0; }
  931. .phone-card .left-part ul li img {
  932. width: 110px;
  933. height: 105px; }
  934. .phone-card .left-part ul li p {
  935. font-size: 12px;
  936. color: #666;
  937. padding-top: 5px; }
  938. .right-part {
  939. float: left;
  940. _display: inline;
  941. padding-left: 20px; }
  942. .right-part .qrcode {
  943. margin: 0 auto;
  944. text-align: center;
  945. padding: 20px 0; }
  946. .right-part .qrcode a {
  947. display: inline-block;
  948. *display: inline;
  949. *zoom: 1;
  950. width: 115px;
  951. height: 38px;
  952. line-height: 38px;
  953. text-align: center;
  954. color: #fff;
  955. background-color: #408bcb;
  956. -webkit-border-radius: 3px;
  957. border-radius: 3px;
  958. -webkit-background-clip: padding-box;
  959. -moz-background-clip: padding;
  960. background-clip: padding-box;
  961. margin-top: 20px; }
  962. .right-part .qrcode a:hover {
  963. background-color: #4b9add; }
  964. .right-part .info h2 {
  965. font-size: 12px;
  966. color: #666;
  967. font-weight: bold;
  968. padding-bottom: 6px; }
  969. .right-part .info p {
  970. width: 358px;
  971. line-height: 20px; }
  972. .personal-tabs {
  973. position: relative; }
  974. .personal-tabs .J_nav li {
  975. width: 25%; }
  976. .daye-hover {
  977. width: 102px;
  978. top: 37px;
  979. left: 111px; }
  980. .daye-hover .avatar-arrow {
  981. top: 39px;
  982. left: -7px; }
  983. .daye-hover p {
  984. padding-bottom: 10px; }
  985. .da-ye-types {
  986. padding-bottom: 10px; }
  987. .da-ye-types a {
  988. display: inline-block;
  989. *display: inline;
  990. *zoom: 1;
  991. float: left;
  992. _display: inline;
  993. width: 50%;
  994. color: #666;
  995. margin-bottom: 5px; }
  996. .da-ye-types i {
  997. display: inline-block;
  998. *display: inline;
  999. *zoom: 1;
  1000. width: 8px;
  1001. height: 8px;
  1002. margin-right: 5px; }
  1003. .da-ye-types i.a-yellow {
  1004. background-color: #fbb28f; }
  1005. .da-ye-types i.a-blue {
  1006. background-color: #9dc7eb; }
  1007. .da-ye-types i.a-purple {
  1008. background-color: #cea9d7; }
  1009. .da-ye-types i.a-red {
  1010. background-color: #fa9f9f; }
  1011. .da-ye-types i.a-green {
  1012. background-color: #80c989; }
  1013. .kda-hover {
  1014. width: 174px;
  1015. top: 37px;
  1016. left: 254px; }
  1017. .kda-hover .avatar-arrow {
  1018. top: 39px;
  1019. left: -7px; }
  1020. .kda-hover .da-ye-types {
  1021. text-align: center;
  1022. padding: 5px 0 0;
  1023. border-bottom: 1px solid #e7e7e7; }
  1024. .kda-hover .da-ye-types a {
  1025. display: block;
  1026. margin-bottom: 10px;
  1027. color: #666;
  1028. cursor: inherit; }
  1029. .kda-hover .formula {
  1030. text-align: center;
  1031. padding: 5px 0 0;
  1032. color: #999; }
  1033. .arrow-hover-top .win-lost p {
  1034. text-align: center;
  1035. color: #666;
  1036. font-weight: bold; }
  1037. .win-line {
  1038. margin: 8px 0;
  1039. position: relative;
  1040. width: 100%;
  1041. height: 5px;
  1042. background: #ebebeb; }
  1043. .win-line em {
  1044. position: absolute;
  1045. left: 0;
  1046. height: 5px;
  1047. background: #64bf8c; }
  1048. .kill-hover {
  1049. width: 54px;
  1050. top: 37px;
  1051. left: 386px; }
  1052. .kill-hover .avatar-arrow {
  1053. top: 39px;
  1054. left: -7px; }
  1055. .kill-hover .da-ye-types {
  1056. margin-top: 10px;
  1057. border-top: 1px solid #e7e7e7;
  1058. padding-top: 10px; }
  1059. .kill-hover .da-ye-types a {
  1060. display: block;
  1061. margin-bottom: 5px;
  1062. color: #666; }
  1063. .more {
  1064. float: right;
  1065. _display: inline;
  1066. font-size: 12px;
  1067. color: #999; }
  1068. .more i {
  1069. display: inline-block;
  1070. *display: inline;
  1071. *zoom: 1;
  1072. width: 6px;
  1073. height: 4px;
  1074. margin-left: 3px;
  1075. vertical-align: middle;
  1076. background-image: url(../slice/arrow.png); }
  1077. .my-card .left-part .how {
  1078. float: right;
  1079. _display: inline;
  1080. margin-top: -16px;
  1081. margin-right: 10px;
  1082. color: #408bcb;
  1083. cursor: pointer; }
  1084. .my-card .left-part .top {
  1085. color: #666; }
  1086. .my-card .left-part .top img {
  1087. width: 80px !important;
  1088. height: 85px !important;
  1089. float: left;
  1090. _display: inline; }
  1091. .my-card .left-part .top .top-info {
  1092. float: left;
  1093. _display: inline;
  1094. margin-left: 15px; }
  1095. .my-card .left-part .top h3 {
  1096. margin-top: 4px;
  1097. color: #666;
  1098. font-size: 12px;
  1099. font-weight: bold; }
  1100. .my-card .left-part .small, .my-card .left-part .block {
  1101. margin-top: 15px; }
  1102. .my-card .left-part .small h3, .my-card .left-part .block h3 {
  1103. color: #666;
  1104. font-size: 12px;
  1105. font-weight: bold; }
  1106. .my-card .left-part .small ul li, .my-card .left-part .block ul li {
  1107. float: left;
  1108. _display: inline; }
  1109. .my-card .left-part .block img {
  1110. width: 65px !important;
  1111. height: 65px !important; }
  1112. .my-card .left-part .block li {
  1113. margin-right: 7px !important; }
  1114. .my-card .left-part .small img {
  1115. width: 35px !important;
  1116. height: 35px !important; }
  1117. .my-card .left-part .small li {
  1118. margin-right: 5px !important; }
  1119. .my-card .left-part .phone-p {
  1120. margin-top: 20px;
  1121. color: #ff7a43; }
  1122. .my-card .right-part h3 {
  1123. color: #666;
  1124. font-size: 12px;
  1125. font-weight: bold; }
  1126. .my-card .right-part .back {
  1127. cursor: pointer;
  1128. float: right;
  1129. _display: inline;
  1130. color: #999;
  1131. *margin-top: -18px; }
  1132. .my-card .right-part .back i {
  1133. display: inline-block;
  1134. *display: inline;
  1135. *zoom: 1;
  1136. width: 6px;
  1137. height: 5px;
  1138. background-image: url(../slice/arrow-left.png);
  1139. vertical-align: middle;
  1140. margin-right: 3px; }
  1141. .my-card .right-part ul {
  1142. height: 320px;
  1143. width: 355px;
  1144. overflow-y: hidden; }
  1145. .my-card .right-part ul li {
  1146. border-bottom: 1px solid #f0f0f0;
  1147. padding-bottom: 10px; }
  1148. .my-card .right-part ul li p {
  1149. color: #666;
  1150. line-height: 20px;
  1151. margin: 10px 0; }
  1152. .my-card .right-part ul li p span {
  1153. float: right;
  1154. _display: inline;
  1155. color: #ccc;
  1156. *margin-top: -20px;
  1157. margin-right: 5px;
  1158. display: inline-block;
  1159. *display: inline;
  1160. *zoom: 1; }
  1161. .my-card .right-part ul li img {
  1162. margin-right: 5px; }
  1163. .comment-info {
  1164. margin-right: 5px;
  1165. padding-top: 5px;
  1166. float: right;
  1167. _display: inline;
  1168. color: #666; }
  1169. .comment-info .first {
  1170. display: inline-block;
  1171. *display: inline;
  1172. *zoom: 1;
  1173. margin-right: 5px; }
  1174. .comment-info i {
  1175. display: inline-block;
  1176. *display: inline;
  1177. *zoom: 1;
  1178. vertical-align: middle; }
  1179. .comment-info .comment {
  1180. width: 14px;
  1181. height: 12px;
  1182. background-image: url(../slice/comment.png); }
  1183. .comment-info .like {
  1184. width: 13px;
  1185. height: 12px;
  1186. cursor: pointer;
  1187. background-image: url(../slice/like.png); }
  1188. .comment-info .like:hover {
  1189. background-image: url(../slice/like-hover.png); }
  1190. .mobile-huya {
  1191. padding-top: 15px; }
  1192. .mobile-huya .huya-ad-info-inner {
  1193. width: 238px; }
  1194. .mobile-huya .huya-ad-v2 .huya-ad-pic {
  1195. float: left;
  1196. _display: inline;
  1197. width: 305px;
  1198. height: 310px; }
  1199. .mobile-huya .huya-ad-v2 .huya-ad-info {
  1200. margin-left: 40px;
  1201. float: left;
  1202. _display: inline; }
  1203. .mobile-huya .huya-ad-v2 .huya-top {
  1204. text-align: center; }
  1205. .mobile-huya .huya-ad-v2 .blue-btn {
  1206. display: block;
  1207. width: 140px;
  1208. margin: 20px auto 15px; }
  1209. .mobile-huya .huya-ad-v2 .txt-list li {
  1210. padding: 4px 0; }
  1211. .mobile-huya .huya-ad-v2 .txt-list i {
  1212. display: inline-block;
  1213. *display: inline;
  1214. *zoom: 1;
  1215. width: 4px;
  1216. height: 2px;
  1217. vertical-align: middle;
  1218. margin-right: 3px;
  1219. background: url(../img/dot.png) no-repeat; }
  1220. .da-ye-bd {
  1221. float: left;
  1222. _display: inline;
  1223. width: 390px;
  1224. padding: 2px 0 0px 10px; }
  1225. .da-ye-bd .da-ye-wrap {
  1226. position: relative; }
  1227. .da-ye-bd .da-ye-wrap p {
  1228. position: absolute;
  1229. top: 0;
  1230. left: 0px;
  1231. color: #666; }
  1232. .da-ye-bd .da-ye {
  1233. float: left;
  1234. _display: inline;
  1235. width: 110px;
  1236. height: 110px;
  1237. margin: 11px -25px 0 -5px;
  1238. font-size: 30px; }
  1239. .da-ye-bd #kda {
  1240. margin: 28px 0 0 0; }
  1241. .da-ye-bd .avatar-arrow {
  1242. width: 7px !important;
  1243. height: 13px !important;
  1244. background: url(../img/p-arrow-left.png) no-repeat !important; }
  1245. .da-ye-bd .da-ye2 {
  1246. margin: -10px -20px 0 -72px !important; }
  1247. .da-ye-bd li {
  1248. float: left;
  1249. _display: inline;
  1250. text-align: center;
  1251. margin-left: 75px; }
  1252. .da-ye-bd li .percent1 {
  1253. background: url(../img/round.png) no-repeat;
  1254. width: 83px;
  1255. height: 83px;
  1256. line-height: 20px;
  1257. text-align: center; }
  1258. .da-ye-bd li .percent1 h2 {
  1259. padding-top: 24px;
  1260. color: #fa935b;
  1261. font-size: 20px;
  1262. font-weight: bold; }
  1263. .da-ye-bd li .percent1 p {
  1264. color: #fa935b;
  1265. font-size: 12px;
  1266. margin-top: 0px; }
  1267. .da-ye-bd li.kill-li {
  1268. margin-left: 39px; }
  1269. .da-ye-bd li .percent2 {
  1270. background-image: url(../slice/circle.png);
  1271. width: 80px;
  1272. height: 80px;
  1273. line-height: 20px;
  1274. text-align: center;
  1275. margin-top: 11px; }
  1276. .da-ye-bd li .percent2 h2 {
  1277. padding-top: 24px;
  1278. color: #408bcb;
  1279. font-size: 20px;
  1280. font-weight: bold; }
  1281. .da-ye-bd li .percent2 p {
  1282. color: #408bcb;
  1283. font-size: 12px;
  1284. margin-top: 0px; }
  1285. .da-ye-bd li p {
  1286. font-size: 12px;
  1287. color: #666;
  1288. margin-top: -26px; }
  1289. .history_info {
  1290. float: left;
  1291. _display: inline; }
  1292. .result {
  1293. float: right;
  1294. _display: inline; }
  1295. .history_li img {
  1296. float: left;
  1297. _display: inline;
  1298. width: 30px;
  1299. height: 30px; }
  1300. .mod-top {
  1301. position: relative;
  1302. clear: both;
  1303. padding: 16px 0 0;
  1304. *padding-top: 2px;
  1305. _padding-top: 2px;
  1306. width: 390px;
  1307. z-index: 10;
  1308. float: left;
  1309. _display: inline; }
  1310. .mod-top li {
  1311. float: left;
  1312. _display: inline;
  1313. width: 24%;
  1314. *width: 25%;
  1315. margin-bottom: 10px; }
  1316. .mod-top li .percent {
  1317. float: left;
  1318. _display: inline;
  1319. width: 67px;
  1320. height: 66px;
  1321. line-height: 20px;
  1322. text-align: center; }
  1323. .mod-top li .percent h2 {
  1324. padding-top: 15px;
  1325. color: #408bcb;
  1326. font-size: 20px;
  1327. font-weight: bold; }
  1328. .mod-top li .percent p {
  1329. color: #999;
  1330. font-size: 12px; }
  1331. .mod-top li .percent.p-0 {
  1332. background-image: url(../slice/ratio-bg-0.png); }
  1333. .mod-top li .percent.p-5 {
  1334. background-image: url(../slice/ratio-bg-5.png); }
  1335. .mod-top li .percent.p-10 {
  1336. background-image: url(../slice/ratio-bg-10.png); }
  1337. .mod-top li .percent.p-20 {
  1338. background-image: url(../slice/ratio-bg-20.png); }
  1339. .mod-top li .percent.p-30 {
  1340. background-image: url(../slice/ratio-bg-30.png); }
  1341. .mod-top li .percent.p-40 {
  1342. background-image: url(../slice/ratio-bg-40.png); }
  1343. .mod-top li .percent.p-50 {
  1344. background-image: url(../slice/ratio-bg-50.png); }
  1345. .mod-top li .percent.p-60 {
  1346. background-image: url(../slice/ratio-bg-60.png); }
  1347. .mod-top li .percent.p-70 {
  1348. background-image: url(../slice/ratio-bg-70.png); }
  1349. .mod-top li .percent.p-80 {
  1350. background-image: url(../slice/ratio-bg-80.png); }
  1351. .mod-top li .percent.p-90 {
  1352. background-image: url(../slice/ratio-bg-90.png); }
  1353. .mod-top li .percent.p-95 {
  1354. background-image: url(../slice/ratio-bg-95.png); }
  1355. .mod-top li .percent.p-100 {
  1356. background-image: url(../slice/ratio-bg-100.png); }
  1357. .mod-top li .game-info {
  1358. float: left;
  1359. _display: inline;
  1360. margin-left: 20px;
  1361. padding-top: 3px;
  1362. line-height: 20px; }
  1363. .mod-top li .game-info h3 {
  1364. font-size: 12px;
  1365. color: #666; }
  1366. .mod-top li .game-info p {
  1367. font-size: 12px;
  1368. color: #999; }
  1369. .mod-top li .game-info .win-blue {
  1370. color: #408bcb; }
  1371. .mod-top li .game-info .lost-red {
  1372. color: #f16868; }
  1373. .mod-top li .circle-div {
  1374. float: left;
  1375. _display: inline;
  1376. color: #408bcb; }
  1377. .mod-top li .g-win {
  1378. color: #408bcb;
  1379. padding-right: 10px; }
  1380. .mod-top li .g-lost {
  1381. color: #f16868; }
  1382. .mod-top li .g-total {
  1383. color: #999; }
  1384. .mod-top .no-data {
  1385. margin-left: 72px;
  1386. height: 95px;
  1387. padding-top: 26px; }
  1388. .mod-top .no-data img {
  1389. float: left;
  1390. _display: inline;
  1391. height: 71px; }
  1392. .mod-top .no-data .no-data-info {
  1393. float: left;
  1394. _display: inline;
  1395. margin-left: 15px;
  1396. padding-top: 20px; }
  1397. #gameCount {
  1398. padding-left: 15px; }
  1399. .mod-bottom {
  1400. padding-top: 8px; }
  1401. .mod-bottom .left-part {
  1402. position: absolute;
  1403. top: 192px;
  1404. left: 0;
  1405. z-index: 100; }
  1406. .right-part {
  1407. float: left;
  1408. _display: inline;
  1409. width: 190px;
  1410. *margin-top: 4px;
  1411. _margin-top: 4px; }
  1412. .right-hd h2, .right-hd span {
  1413. float: left;
  1414. _display: inline; }
  1415. .right-hd h2 {
  1416. color: #666;
  1417. font-size: 12px;
  1418. font-weight: bold;
  1419. margin-right: 3px; }
  1420. .right-hd span.flag {
  1421. width: 63px;
  1422. height: 19px;
  1423. line-height: 19px;
  1424. text-align: center; }
  1425. .right-hd span.flag i {
  1426. display: inline-block;
  1427. *display: inline;
  1428. *zoom: 1;
  1429. vertical-align: -2px;
  1430. margin-right: 2px; }
  1431. .right-hd .flag1 {
  1432. background-image: url(../slice/angle-pink.png);
  1433. color: #f16868; }
  1434. .right-hd .flag1 i {
  1435. width: 13px;
  1436. height: 13px;
  1437. background-image: url(../slice/flag1.png); }
  1438. .right-hd .flag2 {
  1439. background-image: url(../slice/angle-blue.png);
  1440. color: #5490c0; }
  1441. .right-hd .flag2 i {
  1442. width: 14px;
  1443. height: 13px;
  1444. background-image: url(../slice/flag2.png); }
  1445. .right-hd .flag3 {
  1446. background-image: url(../slice/angle-yellow.png);
  1447. width: 78px !important;
  1448. color: #f16868; }
  1449. .right-hd .flag3 i {
  1450. width: 14px;
  1451. height: 12px;
  1452. background-image: url(../slice/flag3.png); }
  1453. .right-hd .flag4 {
  1454. background-image: url(../slice/pink-bg.png);
  1455. width: 79px !important;
  1456. color: #af73c7; }
  1457. .right-hd .flag4 i {
  1458. width: 14px;
  1459. height: 13px;
  1460. background-image: url(../slice/flag4.png); }
  1461. .first-win .first-msg {
  1462. display: inline-block;
  1463. *display: inline;
  1464. *zoom: 1;
  1465. margin-right: 3px;
  1466. width: 18px;
  1467. height: 18px;
  1468. background: url(../img/first-win-dark.png); }
  1469. .first-win .first-msg.active-status {
  1470. cursor: pointer;
  1471. background: url(../img/first-win.png); }
  1472. .first-win .first-time {
  1473. color: #7e92a5;
  1474. display: inline-block;
  1475. *display: inline;
  1476. *zoom: 1; }
  1477. .first-win .first-time .f-time {
  1478. float: none; }
  1479. .first-win-hover {
  1480. display: none;
  1481. position: absolute;
  1482. padding: 10px;
  1483. border: 1px solid #e7e7e7;
  1484. background: #fff;
  1485. z-index: 9;
  1486. width: 105px;
  1487. top: 35px;
  1488. right: 38px; }
  1489. .right-bd {
  1490. margin-top: 8px;
  1491. width: 190px; }
  1492. .right-bd ul {
  1493. height: 314px; }
  1494. .right-bd li {
  1495. cursor: pointer;
  1496. margin-bottom: 15px;
  1497. height: 32px; }
  1498. .right-bd li img {
  1499. vertical-align: middle;
  1500. margin-right: 10px; }
  1501. .right-bd li span {
  1502. display: inline-block;
  1503. *display: inline;
  1504. *zoom: 1;
  1505. text-align: left; }
  1506. .right-bd li .result {
  1507. width: 32px;
  1508. color: #4eb95a;
  1509. padding-right: 5px; }
  1510. .right-bd li .result.red {
  1511. color: #ef3d3d; }
  1512. .right-bd li .type {
  1513. width: 100px;
  1514. *width: 99px;
  1515. color: #666; }
  1516. .right-bd li .time {
  1517. color: #999; }
  1518. .hero-wrap {
  1519. position: absolute;
  1520. top: 138px;
  1521. clear: both; }
  1522. .hero-tip {
  1523. float: left;
  1524. _display: inline;
  1525. width: 78px;
  1526. height: 62px;
  1527. color: #666;
  1528. font-weight: bold;
  1529. text-align: center;
  1530. background: url(../img/more.png) no-repeat; }
  1531. .hero-tip span {
  1532. display: inline-block;
  1533. *display: inline;
  1534. *zoom: 1;
  1535. padding-top: 6px; }
  1536. .hero-tip.tip-large {
  1537. height: 70px;
  1538. background: url(../img/more-big.png) no-repeat; }
  1539. .hero-tip.tip-large span {
  1540. padding-top: 10px; }
  1541. .hero-nav {
  1542. position: absolute;
  1543. top: -1px;
  1544. width: 17px;
  1545. height: 64px;
  1546. text-align: center;
  1547. background-color: #ddebf7;
  1548. -webkit-border-radius: 3px;
  1549. -moz-border-radius: 3px;
  1550. -ms-border-radius: 3px;
  1551. -o-border-radius: 3px;
  1552. border-radius: 3px; }
  1553. .hero-nav i {
  1554. display: inline-block;
  1555. *display: inline;
  1556. *zoom: 1;
  1557. width: 5px;
  1558. height: 9px;
  1559. margin-top: 26px; }
  1560. .hero-nav.h-l {
  1561. left: 0; }
  1562. .hero-nav.h-l i {
  1563. background: url(../img/h-l.png); }
  1564. .hero-nav.h-r {
  1565. right: 0; }
  1566. .hero-nav.h-r i {
  1567. background: url(../img/h-r.png); }
  1568. .hero-nav:hover {
  1569. background-color: #ecf3f9; }
  1570. #gameCount2015 ul {
  1571. height: 68px;
  1572. padding: 2px 0;
  1573. border-bottom: 1px solid #f0f0f0; }
  1574. #gameCount2015 ul.last {
  1575. border-bottom: none !important; }
  1576. #gameCount2015 li {
  1577. width: 23% !important;
  1578. margin-bottom: 3px !important; }
  1579. .content-2015 {
  1580. position: absolute;
  1581. width: 100%;
  1582. z-index: 999999;
  1583. background-color: #fff; }
  1584. .mode-2 {
  1585. border-bottom: none;
  1586. padding: 10px 0 !important; }
  1587. .nav-top-bottom {
  1588. height: 9px;
  1589. line-height: 9px;
  1590. background: #ddebf7;
  1591. text-align: center;
  1592. cursor: pointer;
  1593. display: block; }
  1594. .nav-top-bottom i {
  1595. display: inline-block;
  1596. *display: inline;
  1597. *zoom: 1;
  1598. width: 9px;
  1599. height: 5px;
  1600. vertical-align: 2px;
  1601. background-image: url(../slice/blue-arrow-down.png); }
  1602. .nav-top-bottom.active i {
  1603. background-image: url(../slice/blue-arrow-up.png); }
  1604. .table-history {
  1605. text-align: center;
  1606. color: #666; }
  1607. .table-history th {
  1608. height: 36px;
  1609. line-height: 36px; }
  1610. .table-history td {
  1611. height: 34px;
  1612. line-height: 34px; }
  1613. .table-history .last {
  1614. border-right: none; }
  1615. .table-history th {
  1616. background: #ecf3f9; }
  1617. .table-history td {
  1618. background: #fcfdfd;
  1619. border-bottom: 1px solid #f0f0f0; }
  1620. .table-history td:first-child {
  1621. border-right: 1px solid #f0f0f0; }
  1622. .table-history td .lase {
  1623. border-bottom: none; }
  1624. .table-history table {
  1625. border: 1px solid #f0f0f0; }
  1626. .table-history .table-win {
  1627. color: #52c15f; }
  1628. .table-history .table-lose {
  1629. color: #ef3d3d; }
  1630. .table-history .s4-s5 {
  1631. display: none; }
  1632. .toggle-s4-s5 {
  1633. cursor: default; }
  1634. .toggle-s4-s5 i {
  1635. display: inline-block;
  1636. *display: inline;
  1637. *zoom: 1;
  1638. width: 7px;
  1639. height: 4px;
  1640. margin-left: 5px;
  1641. vertical-align: 5px;
  1642. background-image: url(../slice/arrow-gray-d.png); }
  1643. .toggle-s4-s5 i.up {
  1644. background-image: url(../slice/arrow-gray-u.png); }
  1645. .p-table {
  1646. position: relative;
  1647. z-index: 100;
  1648. margin-top: -55px;
  1649. margin-bottom: 5px; }
  1650. .duan-wei {
  1651. width: 70px;
  1652. float: left;
  1653. }
  1654. .duan-wei .duan-wei-msg {
  1655. color: #ed4925;
  1656. font-weight: bold;
  1657. text-align: center;
  1658. }
  1659. .duan-wei h3 {
  1660. color: #666;
  1661. font-size: 14px; }
  1662. .duan-wei p {
  1663. color: #999; }
  1664. .ch_level {
  1665. position: absolute;
  1666. left: -10px;
  1667. top: -8px;
  1668. z-index: 2;
  1669. width: 35px;
  1670. height: 30px; }
  1671. .ch_level.level_1 {
  1672. background: url(../img/champion_level_1.png); }
  1673. .ch_level.level_2 {
  1674. background: url(../img/champion_level_2.png); }
  1675. .ch_level.level_3 {
  1676. background: url(../img/champion_level_3.png); }
  1677. .ch_level.level_4 {
  1678. background: url(../img/champion_level_4.png); }
  1679. .ch_level.level_5 {
  1680. background: url(../img/champion_level_5.png); }
  1681. .personal-hover .hover-bd li {
  1682. margin-bottom: 8px !important; }
  1683. .split-line {
  1684. position: absolute;
  1685. top: 15px;
  1686. width: 1px;
  1687. height: 100px;
  1688. background: #f0f0f0;
  1689. z-index: 100; }
  1690. .split-line.one {
  1691. left: 195px; }
  1692. .split-line.two {
  1693. right: 115px; }
  1694. .li-golden {
  1695. border-right: 1px solid #f0f0f0;
  1696. margin-right: 21px;
  1697. padding-right: 5px; }
  1698. .new-split {
  1699. width: 1px;
  1700. height: 11px;
  1701. background: #ccc;
  1702. margin: 0 9px;
  1703. display: inline-block;
  1704. vertical-align: -1px; }
  1705. .ad-wrap {
  1706. position: absolute;
  1707. bottom: -3px;
  1708. left: 0; }
  1709. .personal-nav-wrap {
  1710. width: 600px;
  1711. padding: 15px;
  1712. padding-bottom: 0; }
  1713. .personal-nav-wrap .mod-tabs-hd{
  1714. width: 100%;
  1715. overflow: hidden; }
  1716. .personal-nav-wrap .mod-tabs-trigger{
  1717. width: 524px;
  1718. background: #ecf3f9; }
  1719. .button_qzone span, .button_tqq span, .button_tsina span {
  1720. background: none; }
  1721. .col-3 {
  1722. width: 33.3% !important; }
  1723. .col-2 {
  1724. width: 50% !important; }
  1725. .line-small {
  1726. width: 1px;
  1727. height: 11px;
  1728. background-color: #ccc;
  1729. vertical-align: -1px;
  1730. margin: 0 5px;
  1731. display: inline-block;
  1732. *display: inline;
  1733. *zoom: 1; }
  1734. .blacklist {
  1735. padding: 3px 5px;
  1736. *padding: 0px 5px;
  1737. background-color: #ddebf7;
  1738. color: #666;
  1739. text-align: center;
  1740. border-radius: 3px;
  1741. cursor: pointer;
  1742. margin-left: 5px; }
  1743. .round-mask {
  1744. position: absolute;
  1745. width: 75px;
  1746. height: 75px;
  1747. top: 40px;
  1748. left: 28px;
  1749. text-align: center;
  1750. background: url(../img/round.png) no-repeat; }
  1751. .round-mask h3 {
  1752. padding-top: 30px;
  1753. padding-bottom: 5px;
  1754. color: #408bcb;
  1755. font-size: 14px; }
  1756. .round-mask p {
  1757. color: #408bcb; }
  1758. .charts-wrap {
  1759. min-width: 130px;
  1760. max-width: 160px;
  1761. height: 160px;
  1762. margin-top: -20px;
  1763. margin-left: 0; }
  1764. .charts-round-wrap {
  1765. position: relative; }
  1766. .charts-round-wrap h3 {
  1767. text-align: center; }
  1768. .charts-title {
  1769. position: absolute;
  1770. top: 10px;
  1771. left: 38px;
  1772. z-index: 1000; }
  1773. .charts-more {
  1774. position: absolute;
  1775. left: 120px;
  1776. top: 10px;
  1777. width: 92px;
  1778. z-index: 10; }
  1779. .charts-more h3 {
  1780. padding-bottom: 17px; }
  1781. .charts-more p {
  1782. color: #999;
  1783. padding-bottom: 10px; }
  1784. .charts-more .col-l {
  1785. display: inline-block;
  1786. *display: inline;
  1787. *zoom: 1;
  1788. width: 48px; }
  1789. .charts-more .col-r {
  1790. color: #666;
  1791. font-weight: bold;
  1792. padding-left: 2px; }
  1793. .recent-game-wrap {
  1794. margin-left: -31px; }
  1795. .jungle-area-wrap {
  1796. margin-left: 78px; }
  1797. .composite-rate .round-mask h3, .composite-rate .round-mask p {
  1798. color: #408bcb; }
  1799. .jungle-area .round-mask h3, .jungle-area .round-mask p {
  1800. color: #37925f; }
  1801. .mod-title {
  1802. position: absolute;
  1803. z-index: 100; }
  1804. .achievement {
  1805. padding-top: 20px; }
  1806. .achievement li {
  1807. position: relative;
  1808. text-align: center; }
  1809. .achievement li p.msg {
  1810. position: absolute;
  1811. left: 18px;
  1812. width: 84px;
  1813. color: #999;
  1814. top: 94px; }
  1815. .achievement li p.msg span {
  1816. color: #666;
  1817. font-weight: bold; }
  1818. .achievement .charts-wrap {
  1819. min-width: 120px;
  1820. max-width: 140px;
  1821. height: 140px; }
  1822. .achievement .round-mask {
  1823. width: 69px;
  1824. height: 69px;
  1825. top: 33px;
  1826. left: 26px;
  1827. background: url(../img/round2.png) no-repeat; }
  1828. .achievement .round-mask h3 {
  1829. font-size: 18px;
  1830. padding-top: 15px;
  1831. padding-bottom: 0px; }
  1832. .achievement .round-mask p {
  1833. font-size: 14px; }
  1834. .super-god .round-mask h3, .super-god .round-mask p {
  1835. color: #f47f5c; }
  1836. /* 相关开关设置 */
  1837. .lock-wrap li.unfinish:hover .no-lock-mask, .lock-wrap li.finish:hover .lock-hover-mask, .lock-wrap li.active .lock-active-mask{
  1838. display: block;
  1839. }
  1840. .lock-wrap li.unfinish{
  1841. /* -webkit-filter: grayscale(100%);
  1842. -moz-filter: grayscale(100%);
  1843. -ms-filter: grayscale(100%);
  1844. -o-filter: grayscale(100%);
  1845. filter: grayscale(100%);
  1846. filter: gray; */
  1847. }
  1848. .lock-wrap li.unfinish:hover{
  1849. -webkit-filter: grayscale(0%);
  1850. -moz-filter: grayscale(0%);
  1851. -ms-filter: grayscale(0%);
  1852. -o-filter: grayscale(0%);
  1853. filter: grayscale(0%);
  1854. filter: none;
  1855. }
  1856. .lock-wrap li.unfinish .no-lock-mask{
  1857. cursor: not-allowed;
  1858. }
  1859. .lock-wrap {
  1860. margin-top: 20px; }
  1861. .lock-wrap li {
  1862. cursor: pointer;
  1863. position: relative;
  1864. width: 110px;
  1865. height: 65px;
  1866. background-color: #ecf3f9;
  1867. text-align: center;
  1868. margin-right: 12px;
  1869. margin-bottom: 10px; }
  1870. .lock-wrap li.boundary {
  1871. margin-right: 0; }
  1872. .lock-wrap li p {
  1873. color: #999; }
  1874. .lock-wrap li img {
  1875. padding-top: 6px; }
  1876. .lock-wrap li p.title{
  1877. margin-top: -3px;
  1878. }
  1879. .lock-wrap li p.num{
  1880. font-weight: bold;
  1881. margin-top: -2px;
  1882. }
  1883. .no-lock-mask {
  1884. display: none;
  1885. position: absolute;
  1886. top: 0;
  1887. left: 0;
  1888. width: 100%;
  1889. height: 100%;
  1890. background: rgba(133, 181, 211, 0.4);
  1891. filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#7f85b5dd, endColorstr=#7f85b5dd);
  1892. text-align: center; }
  1893. .no-lock-mask p {
  1894. color: #fff !important;
  1895. font-size: 14px;
  1896. font-weight: bold;
  1897. padding-top: 22px; }
  1898. .no-lock-mask p i {
  1899. margin-right: 8px;
  1900. vertical-align: -5px; }
  1901. .lock {
  1902. display: inline-block;
  1903. *display: inline;
  1904. *zoom: 1;
  1905. width: 15px;
  1906. height: 21px;
  1907. background: url(../img/lock.png) no-repeat; }
  1908. .lock-hover-mask {
  1909. display: none;
  1910. position: absolute;
  1911. top: 0;
  1912. left: 0;
  1913. width: 106px;
  1914. height: 61px;
  1915. border: 2px solid #9ec8eb; }
  1916. .lock-hover-mask .inner {
  1917. position: absolute;
  1918. width: 100%;
  1919. left: 0;
  1920. bottom: 0;
  1921. height: 20px;
  1922. line-height: 20px;
  1923. background: rgba(133, 181, 211, 0.4);
  1924. filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#7f85b5dd, endColorstr=#7f85b5dd);
  1925. text-align: center; }
  1926. .lock-hover-mask .inner a {
  1927. color: #fff; }
  1928. .lock-active-mask {
  1929. display: none;
  1930. position: absolute;
  1931. top: 0;
  1932. left: 0;
  1933. width: 106px;
  1934. height: 61px;
  1935. border: 2px solid #9ec8eb; }
  1936. .lock-active-mask i {
  1937. position: absolute;
  1938. right: -1px;
  1939. bottom: 0;
  1940. display: inline-block;
  1941. *display: inline;
  1942. *zoom: 1;
  1943. width: 18px;
  1944. height: 16px;
  1945. background: url(../img/vertical_triangle.png) no-repeat; }
  1946. .page-ad {
  1947. *margin-top: 10px; }
  1948. .content-nav {
  1949. position: relative;
  1950. z-index: 1; }
  1951. .content-nav li {
  1952. position: relative;
  1953. width: 198px;
  1954. height: 27px;
  1955. line-height: 27px;
  1956. background-color: #ecf3f9;
  1957. text-align: center;
  1958. font-weight: bold;
  1959. border-radius: 5px;
  1960. margin-right: 3px; }
  1961. .content-nav li a {
  1962. display: block;
  1963. width: 100%;
  1964. height: 100%; }
  1965. .content-nav li.last {
  1966. margin-right: 0; }
  1967. .content-nav li.active {
  1968. background-color: #ddebf7; }
  1969. .content-nav li.active .arrow-down {
  1970. display: inline-block;
  1971. *display: inline;
  1972. *zoom: 1; }
  1973. .arrow-down {
  1974. display: none;
  1975. position: absolute;
  1976. bottom: -6px;
  1977. left: 50%;
  1978. margin-left: -6.5px;
  1979. width: 13px;
  1980. height: 6px;
  1981. background: url(../img/blue-arrow.png) no-repeat; }
  1982. .detail-main {
  1983. padding-top: 10px;
  1984. position: relative;
  1985. height: 224px; }
  1986. .detail-main .main-left {
  1987. position: relative;
  1988. width: 496px;
  1989. margin-right: 17px; }
  1990. .detail-main .main-right {
  1991. width: 85px; }
  1992. .main-right ul {
  1993. height: 207px;
  1994. overflow: hidden; }
  1995. .main-right li {
  1996. margin-top: 9px; }
  1997. .main-right .detail {
  1998. padding-top: 5px;
  1999. padding-left: 10px; }
  2000. .main-right .detail span {
  2001. color: #999; }
  2002. .main-right .detail p {
  2003. color: #666; }
  2004. .detail-videos {
  2005. margin-top: 5px; }
  2006. .detail-videos ul {
  2007. padding-left: 2px; }
  2008. .detail-videos li {
  2009. position: relative;
  2010. margin-left: 10px;
  2011. width: 120px; }
  2012. .detail-videos li img {
  2013. width: 120px;
  2014. height: 70px; }
  2015. .video-more {
  2016. position: absolute;
  2017. left: 0;
  2018. bottom: 3px;
  2019. width: 100%;
  2020. height: 24px;
  2021. line-height: 24px;
  2022. background: rgba(0, 0, 0, 0.5);
  2023. filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#7f000000,endColorstr=#7f000000); }
  2024. .video-more .inner {
  2025. padding: 0 10px; }
  2026. .video-more .title {
  2027. color: #ccc;
  2028. width: 62px; }
  2029. .video-more .time {
  2030. color: #999; }
  2031. .level-charts {
  2032. margin-top: 14px; }
  2033. .level-charts ul {
  2034. padding-left: 50px; }
  2035. .level-charts li {
  2036. position: relative; }
  2037. .level-charts .charts-round-wrap {
  2038. cursor: pointer; }
  2039. .level-charts .msg {
  2040. width: 100%;
  2041. position: absolute;
  2042. top: 112px;
  2043. left: 0;
  2044. right: 0;
  2045. margin: auto;
  2046. text-align: center; }
  2047. .level-charts .tip {
  2048. position: absolute;
  2049. right: 27px;
  2050. bottom: 50px;
  2051. display: inline-block;
  2052. *display: inline;
  2053. *zoom: 1;
  2054. width: 14px;
  2055. height: 14px; }
  2056. .level-charts .tip.wrong {
  2057. background: url(../img/wrong.png) no-repeat; }
  2058. .level-charts .tip.check {
  2059. background: url(../img/check1.png) no-repeat; }
  2060. .level-charts .active .round-mask {
  2061. width: 87px;
  2062. height: 87px;
  2063. top: 39px;
  2064. left: 26px;
  2065. background: url(../img/round3.png) no-repeat; }
  2066. .level-charts .active .round-mask h3, .level-charts .active .round-mask p {
  2067. color: #f47f5c; }
  2068. .level-charts .active .round-mask h3 {
  2069. font-size: 20px; }
  2070. .level-charts .active .round-mask p {
  2071. font-size: 14px; }
  2072. .level-charts .active .charts-wrap {
  2073. min-width: 140px;
  2074. max-width: 170px;
  2075. height: 170px;
  2076. margin-top: -24px; }
  2077. .level-charts .round-arrow {
  2078. position: absolute;
  2079. left: 47%;
  2080. bottom: 32px;
  2081. width: 11px;
  2082. height: 7px;
  2083. background: url(../img/triangle-down.png) no-repeat; }
  2084. .detail-info {
  2085. position: absolute;
  2086. left: 0;
  2087. z-index: 10;
  2088. color: #666; }
  2089. .detail-info .title {
  2090. font-weight: bold;
  2091. padding-right: 10px; }
  2092. .detail-info .question {
  2093. display: inline-block;
  2094. *display: inline;
  2095. *zoom: 1;
  2096. width: 13px;
  2097. height: 13px;
  2098. vertical-align: -1px;
  2099. cursor: pointer;
  2100. background: url(../img/question2.png) no-repeat; }
  2101. .detail-desc {
  2102. position: absolute;
  2103. left: 0;
  2104. top: 0;
  2105. text-align: center;
  2106. z-index: 10;
  2107. color: #999999;
  2108. }
  2109. .detail-left-more {
  2110. margin-top: 12px;
  2111. height: 50px;
  2112. background: #ecf3f9;
  2113. text-align: center; }
  2114. .detail-left-more ul {
  2115. padding: 10px 0; }
  2116. .detail-left-more li {
  2117. width: 123px;
  2118. border-right: 1px solid #e4e4e4; }
  2119. .detail-left-more li h3 {
  2120. font-size: 14px;
  2121. color: #666; }
  2122. .detail-left-more li p {
  2123. color: #999; }
  2124. .detail-left-more li.last {
  2125. border-right: none; }
  2126. #modeTabs a{display: block;width: 131px;height: 30px;}
  2127. .detail-desc__winRate{font-size: 14px;font-weight: 600;}
  2128. /* .best-position__data .col-l{width: 42px;} */
  2129. .record-ad__wrap{position: absolute;top: 65px;left: 0;width: 387px;height: 90px;overflow: hidden;}
  2130. .mod-tabs-trigger{float: left;}
  2131. .common-page__control{width: 75px;height: 30px;float: left;background: #ddebf7;}
  2132. .common-page__control a{display: block;width: 30px;height: 23px;float: left;margin: 3px 0 0 5px;}
  2133. .common-page__goBack{background: url(/frontend/img/common/back.png?__sprite);visibility: hidden;}
  2134. .common-page__goBack:hover{background: url(/frontend/img/common/back-hover.png?__sprite);}
  2135. .common-page__reflash{background: url(/frontend/img/common/reflash.png?__sprite);}
  2136. .common-page__reflash:hover{background: url(/frontend/img/common/reflash-hover.png?__sprite);}
  2137. .userMedal{position: absolute;top: -5px;left: -11px;}
  2138. .lock-wrap .lock{position: absolute;top: 20px;left: 20px;}
  2139. .no-lock__info{position: absolute;top: 12px;left: 40px;}
  2140. .no-lock__info p{padding-top: 0;}
  2141. .name-info__nameServer{color: #999999;float: left;}
  2142. .user-hero__box{width: 230px;height: 69px;float: right;}
  2143. .user-hero__header{width: 100%;height: 18px;line-height: 18px;}
  2144. .user-hero__header h3{float: left;}
  2145. .user-hero__header a{float: right;}
  2146. .user-hero__list{margin-top: 8px;margin-left: -5px;}
  2147. .user-hero__list li{width: 42px;height: 42px;float: left;position: relative;margin-left: 5px;}
  2148. .user-hero__list li a, .user-hero__list li a img{display: block;width: 100%;height: 100%;}
  2149. .user-hero__info,.user-hero__mask{position: absolute;top: 0;left: 0;width: 100%;height: 100%;text-align: center;display: none;}
  2150. .user-hero__list li:hover .user-hero__info,.user-hero__list li:hover .user-hero__mask{
  2151. display: block;
  2152. }
  2153. .user-hero__info{z-index: 101;}
  2154. .user-hero__info p{color: #fff;}
  2155. .user-hero__mask{
  2156. filter:Alpha(Opacity=50);opacity:0.5;
  2157. z-index: 100;
  2158. background: #000;
  2159. }
  2160. .user-hero__info--title{margin-top: 5px;}
  2161. .userInfo-common__focus{position: absolute;top: -15px;left: 30px;}
  2162. .user-hero__info--tips{width: 90px;height: 42px;background: url(../img/tips.png);position: absolute;top: 45px;left: -45px;}
  2163. .user-hero__info--tips p{width: 85px;height: 30px;line-height: 30px;color: #666666;text-align: center;margin: 7px auto;}