report.css 27 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317
  1. /*author linan@umeng.com*/
  2. /*reset*/
  3. html{color:#000;background:#fff;height:100%;}
  4. body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,code,form,fieldset,legend,input,textarea,p,blockquote,th,td{margin:0;padding:0;outline:0;}
  5. body{font-family:helvetica,"Microsoft Yahei",sans-serif;font-weight:normal;font-size:12px;line-height:20px;color:#333;height:100%;position:relative;}
  6. table{border-collapse:collapse;border-spacing:0;}
  7. fieldset,img{border:0;}
  8. address,caption,cite,code,dfn,em,strong,th,var{font-style:normal;font-weight:normal;}
  9. li{list-style:none;}
  10. caption,th{text-align:left;}
  11. h1,h2,h3,h4,h5,h6{font-size:100%;font-weight:normal;}
  12. q:before,q:after{content:'';}
  13. abbr,acronym{border:0;font-variant:normal;}
  14. sup{vertical-align:text-top;}
  15. sub{vertical-align:text-bottom;}
  16. input,textarea,select,button{font-family:inherit;font-size:inherit;font-weight:inherit;outline:none;}
  17. input,textarea,select{*font-size:100%;resize:none;}
  18. legend{color:#000;}
  19. b{font-weight:normal;}
  20. a{text-decoration:none;color:#2a5295;cursor:pointer;}
  21. a.normal{font-size:12px;color:#333;text-decoration:underline;}
  22. a:active,a:focus,a:link {outline: none;}
  23. /*clear float*/
  24. .clear{clear:both;display:block;overflow:hidden;visibility:hidden;width:0;height:0;}
  25. .clearfix:after{clear:both;content:' ';display:block;font-size:0;line-height:0;visibility:hidden;height:0;overflow: hidden;}
  26. .clearfix{*zoom:1;}
  27. .mr10{margin-right:10px;}
  28. .ml10{margin-left:10px;}
  29. .ell{overflow:hidden;text-overflow:ellipsis;white-space:nowrap;}
  30. /*gird*/
  31. /*mod*/
  32. /*author linan@umeng.com*/
  33. #doc{
  34. min-width: 1200px;
  35. position:relative;
  36. min-height:100%;
  37. }
  38. .hd .userHeader{
  39. height:50px;
  40. line-height:50px;
  41. padding-right:35px;
  42. border-bottom:1px solid #fff;
  43. background:url(images/backg.png) repeat-x 0 0;
  44. font-size:13px;
  45. color:#bebebe;
  46. }
  47. .hd .userHeader .logo{
  48. height:50px;
  49. float:left;
  50. }
  51. .hd .globalNav{
  52. height:60px;
  53. line-height:60px;
  54. background:url(images/backg.png) repeat-x 0 -61px;
  55. }
  56. #doc .bd{
  57. margin:0 12px;
  58. padding:15px 0 20px 228px;
  59. overflow-x:hidden;
  60. }
  61. #doc .ft{
  62. height:105px;
  63. background:url(images/backg.png) repeat-x 0 -748px;
  64. color:#999;
  65. text-align:center;
  66. position:absolute;
  67. bottom:0;
  68. width:100%;
  69. }
  70. #doc .hiddenft{
  71. height:105px;
  72. }
  73. #doc .ft a{
  74. color:#999;
  75. }
  76. #doc .ft .copyright{
  77. padding:27px 0;
  78. line-height:20px;
  79. }
  80. #doc .ft .copyright .copy{
  81. margin-top:10px;
  82. }
  83. .bd #leftColContainer{
  84. float:left;
  85. display:inline;
  86. margin-left:-228px;
  87. padding-bottom:50px;
  88. }
  89. .bd .leftCol{
  90. width:198px;
  91. }
  92. .bd #mainContainer{
  93. float:left;
  94. width:100%;
  95. }
  96. .bd2{
  97. padding:0 12px;
  98. }
  99. .bd2 .leftCol{
  100. float:left;
  101. display:inline;
  102. width:198px;
  103. }
  104. .bd2 .contentCol{
  105. margin-left:228px;
  106. text-align:center;
  107. overflow: visible;
  108. padding-bottom:0px;
  109. }
  110. .bd3 .leftCol{
  111. float:left;
  112. height:30px;
  113. display:inline;
  114. width:400px;
  115. }
  116. .bd3 .contentCol{
  117. margin-left:430px;
  118. text-align:right;
  119. overflow: visible;
  120. padding-bottom:0px;
  121. }
  122. .bd4 .leftCol{
  123. float:left;
  124. height:30px;
  125. display:inline;
  126. width:400px;
  127. }
  128. .bd4 .contentCol{
  129. margin-left:430px;
  130. text-align:right;
  131. overflow: visible;
  132. padding-bottom:0px;
  133. }
  134. label.error {
  135. color: #ff0400;
  136. }
  137. /*icon*/
  138. .icon{
  139. background:url(images/icon.png) no-repeat 0 0 transparent;
  140. display:inline-block;
  141. height:24px;
  142. overflow:hidden;
  143. vertical-align:middle;
  144. width:24px;
  145. *zoom:1;
  146. line-height:24px;
  147. text-indent:-9999px;
  148. }
  149. .icon2{
  150. background:url(images/iconEx.png) no-repeat 0 0 transparent;
  151. display:inline-block;
  152. height:24px;
  153. overflow:hidden;
  154. vertical-align:middle;
  155. width:24px;
  156. *zoom:1;
  157. line-height:24px;
  158. text-indent:-9999px;
  159. }
  160. .no_action{
  161. cursor:not-allowed!important;
  162. }
  163. .export{
  164. background-position:0 -72px;
  165. cursor:pointer;
  166. }
  167. .icon-lt{
  168. background-position:0 -1009px;
  169. }
  170. .icon-close{
  171. background-position:0 -793px;
  172. }
  173. .font-weight{
  174. font-weight:bold;
  175. }
  176. .icon-staroff{
  177. background-position:0 -818px;
  178. }
  179. .icon-staron,.icon-top{
  180. background-position:-24px -818px;
  181. }
  182. .icon-delete{
  183. background-position:0 -745px;
  184. }
  185. .icon-delete:hover{
  186. background-position:-24px -745px;
  187. }
  188. .icon-edit{
  189. background-position: 0 -697px;
  190. }
  191. .icon-edit:hover{
  192. background-position: -24px -697px;
  193. }
  194. .icon-add{
  195. background-position: 0 -1057px;
  196. }
  197. .icon-add:hover{
  198. background-position: -24px -1057px;
  199. }
  200. .tip-helper{
  201. background-position: 0 -217px;
  202. }
  203. .tip-helper-on{
  204. background-position: -24px -217px;
  205. }
  206. .export-icon-load{
  207. background:url(/images/pic/load-s.gif) no-repeat 0 0;
  208. }
  209. .icon-setting{
  210. background-position: 0 -1176px;
  211. }
  212. .icon-setting:hover{
  213. background-position: -24px -1176px;
  214. }
  215. .globalNav .linkpanel a .back-old-ver{
  216. background-position: 0px -194px;
  217. }
  218. .globalNav .linkpanel a:hover .back-old-ver{
  219. background-position:-24px -194px;
  220. }
  221. .icon-calendar .icon{
  222. background-position:0px -1250px;
  223. }
  224. .icon-calendar:hover .icon{
  225. background-position:-24px -1250px;
  226. }
  227. .globalNav .linkpanel{
  228. position:absolute;
  229. right:0;
  230. }
  231. .globalNav .linkpanel a{
  232. color:#333;
  233. font-size:12px;
  234. text-decoration: underline;
  235. margin-right:15px;
  236. }
  237. .globalNav .linkpanel a .au{
  238. background-position: 0px -168px;
  239. }
  240. .globalNav .linkpanel a:hover .au{
  241. background-position:-24px -168px;
  242. }
  243. .feedback_help {
  244. display: block;
  245. position: fixed;
  246. right: 0;
  247. top:40%;
  248. z-index:300;
  249. font-size: 12px;
  250. padding:0;
  251. line-height: 44px;
  252. }
  253. .feedback_help .relative{
  254. position: relative;
  255. }
  256. .feedback_help .relative div{
  257. position: absolute;
  258. }
  259. .feedback_help .feed, .feedback_help .dev{
  260. line-height: 44px;
  261. width: 60px;
  262. border-radius: 4px;
  263. vertical-align: middle;
  264. background: #565656;
  265. border: 1px solid #393939;
  266. }
  267. .feedback_help .cssline{
  268. border-top: 1px solid #393939;
  269. border-bottom: 1px solid #838383;
  270. border-radius: 0;
  271. height: 0px;
  272. width: 62px;
  273. right: -37px;
  274. top: 44px;
  275. z-index: 302;
  276. text-indent: -9999px;
  277. }
  278. .feedback_help div.feed{
  279. border-bottom: 0;
  280. border-radius: 4px 0 0 0;
  281. top: 0px;
  282. right: -37px;
  283. }
  284. .feedback_help div.dev{
  285. border-top: 0;
  286. border-radius: 0 0 0 4px;
  287. top: 46px;
  288. right: -37px;
  289. }
  290. .feedback_help a{
  291. padding: 0 10px 0 0;
  292. color: #cccccc;
  293. display: block;
  294. }
  295. .icon-feedback{
  296. background: url(images/feedbackicon.png) 2px -1px;
  297. }
  298. .icon-help{
  299. background: url(images/feedbackicon.png) 2px 24px;
  300. }
  301. .feedback_help a:hover .icon-feedback{
  302. background: url(images/feedbackicon.png) -22px -1px;
  303. }
  304. .feedback_help a:hover .icon-help{
  305. background: url(images/feedbackicon.png) -22px 24px;
  306. }
  307. a.feed_back_all {
  308. display: block;
  309. position: fixed;
  310. right: 0;
  311. top: 40%;
  312. width: 29px;
  313. height: 72px;
  314. line-height: 72px;
  315. z-index: 300;
  316. font-size: 12px;
  317. color: white;
  318. text-align: center;
  319. padding: 10px 0;
  320. background: url(images/bg-feedback.png) no-repeat 0 0;
  321. color: white;
  322. text-indent: -9999px;
  323. }
  324. /*logo*/
  325. .logo a{
  326. display: inline-block;
  327. line-height: 50px;
  328. height: 50px;
  329. margin:0 0 0 39px;
  330. }
  331. /*float*/
  332. .fl{
  333. float:left;
  334. display:inline;
  335. }
  336. .fr{
  337. float:right;
  338. display:inline;
  339. }
  340. .small{
  341. font-size:10px;
  342. }
  343. .bold{
  344. font-weight:bold;
  345. }
  346. .hidden{display:none;}
  347. /*column*/
  348. .fix-column{
  349. width:100%;
  350. overflow:hidden;
  351. }
  352. .fix-column .col{
  353. display:inline;
  354. float:left;
  355. }
  356. .fix-column .col:last-child{
  357. margin-right:0;
  358. }
  359. .column-bg{
  360. background: url(images/backg.png) 0 -418px repeat-x;
  361. }
  362. .pos{
  363. text-align:center;
  364. border-right:1px solid #d6d6d6;
  365. padding:25px 0 53px;
  366. }
  367. .nopos{
  368. border-right:0;
  369. }
  370. .skimtitle{
  371. font-size:14px;
  372. color:#333333;
  373. margin-bottom:28px;
  374. }
  375. .skimnum{
  376. font-size:28px;
  377. color:#01a7ad;
  378. }
  379. /*topNav*/
  380. .topNav{
  381. height:60px;
  382. }
  383. .navItem{
  384. display:inline-block;
  385. *display:inline;
  386. zoom:1;
  387. margin-right:60px;
  388. vertical-align: middle;
  389. overflow:hidden;
  390. }
  391. .navItem .icons1{
  392. margin:0 auto;
  393. background:url(images/icon.png) no-repeat 0 0;
  394. }
  395. .navItem .icons2{
  396. margin:0 auto;
  397. background:url(images/icon.png) no-repeat 0 -24px;
  398. }
  399. .navItem .icons3{
  400. margin:0 auto;
  401. background:url(images/icon.png) no-repeat 0 -48px;
  402. }
  403. .navItem .icons4{
  404. margin:0 auto;
  405. background:url(images/icon.png) no-repeat 0 -1080px;
  406. }
  407. div.currentItem .icons1{
  408. margin:0 auto;
  409. background:url(images/icon.png) no-repeat -24px 0;
  410. }
  411. div.currentItem .icons2{
  412. margin:0 auto;
  413. background:url(images/icon.png) no-repeat -24px -24px;
  414. }
  415. div.currentItem .icons3{
  416. margin:0 auto;
  417. background:url(images/icon.png) no-repeat -24px -48px;
  418. }
  419. div.currentItem .icons4{
  420. margin:0 auto;
  421. background:url(images/icon.png) no-repeat -24px -1080px;
  422. }
  423. .navItem span{
  424. line-height:16px;
  425. font-size:16px;
  426. color:#333333;
  427. display:block;
  428. zoom:1;
  429. }
  430. .navItem .bot{
  431. margin-top: 4px;
  432. height: 5px;
  433. }
  434. .currentItem .bot{
  435. background: #01A7AD;
  436. }
  437. /*topNav*/
  438. /*wrap*/
  439. .wrap-table{
  440. }
  441. .nav-wrap-table{
  442. float:left;
  443. width:100%;
  444. margin-right:15px;
  445. }
  446. .wrap-move{
  447. position:relative;
  448. }
  449. /*mod*/
  450. .mod{
  451. position:relative;
  452. }
  453. .mod1{
  454. margin-bottom:15px;
  455. }
  456. .mod2{
  457. margin-bottom:10px;
  458. }
  459. .mod3{
  460. margin-top:10px;
  461. }
  462. .mod4 .mod-header{
  463. border-top:0;
  464. }
  465. .mod1 .mod-header{
  466. height:43px;
  467. line-height:43px;
  468. padding:0 23px;
  469. background: url(images/backg.png) 0 -297px repeat-x;
  470. border:1px solid #b4b4b4;
  471. }
  472. .mod1 .mod-header .back{
  473. float:left;
  474. }
  475. .mod1 .mod-header h2{
  476. font-size:15px;
  477. color:#333;
  478. }
  479. .mod .mod-header{
  480. text-align:right;
  481. }
  482. .mod .mod-header h2{
  483. float:left;
  484. }
  485. .mod .mod-header .option{
  486. }
  487. .mod .mod-body{
  488. border:1px solid #b4b4b4;
  489. border-top:0px none;
  490. position:relative;
  491. padding-bottom: 1px;
  492. }
  493. .mod .mod-body .content{
  494. padding:15px 23px;
  495. }
  496. .mod-body .filter_tag_body{
  497. line-height:45px;
  498. padding:0 80px 0 18px;
  499. border-bottom:1px solid #B4B4B4;
  500. }
  501. .margin-l-1{
  502. margin-left:10px;
  503. }
  504. .filter_tag_body .edit_tags{
  505. position: absolute;
  506. right: 15px;
  507. top:9px;
  508. }
  509. .filter_tag_body ul{
  510. display: inline-block;
  511. padding-top:10px;
  512. -webkit-margin-before:-10px;
  513. }
  514. .colorPannel{
  515. position:absolute;
  516. background:white;
  517. -moz-border-radius:8px;
  518. -webkit-border-radius:8px;
  519. border-radius:8px;
  520. -moz-box-shadow:0 0 3px rgba(0,0,0,.3);
  521. -webkit-box-shadow:0 0 3px rgba(0,0,0,.3);
  522. box-shadow:0 0 3px rgba(0,0,0,.3);
  523. text-align:center;
  524. line-height:200%;
  525. padding-top:5px;
  526. }
  527. .colorPannel .colorList i,.cus_cr_preview{
  528. display: inline-block;
  529. vertical-align: middle;
  530. height:15px;
  531. width:20px;
  532. -moz-border-radius:2px;
  533. -webkit-border-radius:2px;
  534. border-radius:2px;
  535. }
  536. .cus_cr_preview{
  537. margin-left:10px;
  538. background:#fff;
  539. }
  540. .colorPannel .colorList i.sel,.colorPannel .colorList i:hover,.cus_cr_preview{
  541. -webkit-box-shadow:0 0 2px rgba(0,0,0,.4), inset 1px 1px 0 rgba(0,0,0,.2),inset -1px -1px 0 rgba(0,0,0,.2);
  542. -moz-box-shadow:0 0 2px rgba(0,0,0,.4), inset 1px 1px 0 rgba(0,0,0,.2),inset -1px -1px 0 rgba(0,0,0,.2);
  543. box-shadow:0 0 2px rgba(0,0,0,.4), inset 1px 1px 0 rgba(0,0,0,.2),inset -1px -1px 0 rgba(0,0,0,.2);
  544. border:1px solid grey\9;
  545. }
  546. .c1{
  547. background:#18c2c6;
  548. }
  549. .c2{
  550. background:#1fb8ff;
  551. }
  552. .c3{
  553. background:#439e16;
  554. }
  555. .c4{
  556. background:#c91d1d;
  557. }
  558. .c5{
  559. background:#ef8032;
  560. }
  561. .c6{
  562. background:#ab497f;
  563. }
  564. .colorPannel .new_tag_sure{
  565. margin:5px;
  566. }
  567. .tag{
  568. font-size:12px;
  569. padding:6px 11px;
  570. display:inline-block;
  571. box-sizing:border-box;
  572. -moz-box-sizing:border-box;
  573. font-style:normal;
  574. margin:0 5px;
  575. line-height:18px;
  576. position:relative;
  577. cursor: pointer;
  578. background-size:100% 3px;
  579. background-position:0 15px;
  580. border-bottom:3px solid silver;
  581. max-width: 300px;
  582. overflow: hidden;
  583. text-overflow: ellipsis;
  584. }
  585. .tag_td .tag{
  586. border:none;
  587. cursor: auto;
  588. }
  589. .filter_tag_body li span.close:hover{
  590. background: url(images/icon_tools.png) no-repeat -22px -19px;
  591. }
  592. .filter_tag_body li span.close{
  593. position: absolute;
  594. right: 5px;
  595. height:18px;
  596. width:18px;
  597. -webkit-border-radius:50%;
  598. -moz-border-radius:50%;
  599. border-radius:50%;
  600. background: url(images/icon_tools.png) no-repeat 2px -19px;
  601. text-align:center;
  602. top: 5px;
  603. color: white;
  604. cursor: pointer;
  605. display:none;
  606. }
  607. .tag:hover,.tag.sel,.tag.edit{
  608. background:#1FB8FF;
  609. color:white;
  610. text-shadow:0 1px 0 rgba(0,0,0,.21);
  611. -webkit-box-shadow:inset 0 2px 0 rgba(255,255,255,.29) ,inset 1px 1px 0 rgba(0,0,0,.2),inset -1px -1px 0 rgba(0,0,0,0.2);
  612. -moz-box-shadow:inset 0 2px 0 rgba(255,255,255,.29) ,inset 1px 1px 0 rgba(0,0,0,.2),inset -1px -1px 0 rgba(0,0,0,0.2);
  613. box-shadow:inset 0 2px 0 rgba(255,255,255,.29) ,inset 1px 1px 0 rgba(0,0,0,.2),inset -1px -1px 0 rgba(0,0,0,0.2);
  614. -moz-border-radius:6px;
  615. -webkit-border-radius:6px;
  616. border-radius:6px;
  617. border:none;
  618. }
  619. .tag.edit{
  620. padding-right:26px;
  621. }
  622. .filter_tag_body li.new_tag:hover{
  623. background:none;
  624. -webkit-box-shadow:none;
  625. -moz-box-shadow:none;
  626. box-shadow:none;
  627. }
  628. .tag.edit span.close{
  629. display: block;
  630. }
  631. .filter_tag_body li.new_tag{
  632. display:inline-block;
  633. vertical-align: top;
  634. border:none;
  635. position: relative;
  636. }
  637. .mod-body .filter_tab_body{
  638. line-height:60px;
  639. padding-left:23px;
  640. border-bottom:1px solid #B4B4B4;
  641. }
  642. .mod-body .mod-inner-header th{
  643. line-height:45px;
  644. font-size:15px;
  645. background:#EAEAEA;
  646. -moz-box-shadow:inset 0 1px 0 white,inset 0 -1px white;
  647. -webkit-box-shadow:inset 0 1px 0 white,inset 0 -1px white;
  648. box-shadow:inset 0 1px 0 white,inset 0 -1px white;
  649. padding-left:23px;
  650. }
  651. .mod-body.fb_list .mod-inner-header th{
  652. -moz-box-shadow:none;
  653. -webkit-box-shadow:none;
  654. box-shadow:none;
  655. }
  656. .mod-body .list_table {
  657. table-layout:fixed;
  658. }
  659. .mod-body .list_table tr:hover td{
  660. background:#D3F0F1;
  661. -moz-box-shadow:inset 0 1px 0 white,inset 0 -1px white;
  662. -webkit-box-shadow:inset 0 1px 0 white,inset 0 -1px white;
  663. box-shadow:inset 0 1px 0 white,inset 0 -1px white;
  664. }
  665. .mod-body .list_table tr:hover li.del_msg{
  666. display:block;
  667. }
  668. .mod-body .list_table td{
  669. border-top:1px solid #b4b4b4;
  670. padding:5px 0 5px 36px ;
  671. line-height:25px;
  672. font-size:14px;
  673. word-break:break-all;
  674. word-wrap:break-word;
  675. }
  676. .mod-body .list_table tr td:nth-of-type(2){
  677. padding-left:24px;
  678. }
  679. .mod-body .list_table .reply_list li{
  680. line-height:2em;
  681. }
  682. .mod-body .list_table .reply{
  683. text-align:center;
  684. }
  685. .mod-body .list_table .reply textarea{
  686. width:90%;
  687. padding:5px;
  688. vertical-align: middle;
  689. -moz-border-radius:8px;
  690. -webkit-border-radius:8px;
  691. border-radius:8px;
  692. border:1px solid #b4b4b4;
  693. }
  694. .mod-body .list_table .reply button{
  695. vertical-align: middle;
  696. }
  697. .mod-body .list_table td .title{
  698. word-break:break-all;
  699. word-wrap:break-word;
  700. }
  701. .mod-body .list_table td .tags{
  702. position:relative;
  703. display: inline-block;
  704. width: 100%;
  705. height: 100%;
  706. }
  707. .mod-body .list_table td .tags_val{
  708. height: 100%;
  709. display: inline-block;
  710. vertical-align: middle;
  711. word-break:break-all;
  712. max-width: 90%;
  713. line-height:300%;
  714. }
  715. .mod-body .list_table td .hover_btns{
  716. position:absolute;
  717. right:10px;
  718. bottom:10px;
  719. }
  720. .mod-body .list_table td .hover_btns li{
  721. float:left;
  722. margin-left:10px;
  723. }
  724. .mod-body .list_table td .hover_btns li:hover{
  725. text-decoration:underline;
  726. color:#008386;
  727. cursor: pointer;
  728. }
  729. .mod-body .list_table td .time,.mod-body .list_table td .profile{
  730. font-size:12px;
  731. color:#888;
  732. display:inline-block;
  733. min-width:130px;
  734. }
  735. .mod-body .list_table td .time{
  736. /*width:150px;*/
  737. white-space: nowrap;
  738. font-style: italic;
  739. }
  740. .mod-body .list_table .tag_td .filterlist{
  741. min-width:120px;
  742. }
  743. .mod-body .list_table td .remark dd{
  744. word-break:break-all;
  745. word-wrap:break-word;
  746. }
  747. .icon_add{
  748. background:#E4E4E4;
  749. color:#7F7F7F;
  750. border:1px solid #B4B4B4;
  751. border-radius:2px;
  752. display:inline-block;
  753. width:15px;
  754. height:15px;
  755. text-align:center;
  756. cursor: pointer;
  757. line-height:100%;
  758. font-size:14px;
  759. }
  760. .icon_star{
  761. background:url(images/star.png) no-repeat 0 0;
  762. height:13px;
  763. width:13px;
  764. float:left;
  765. margin:20px 0 0 -25px;
  766. display: block;
  767. cursor: pointer;
  768. }
  769. .icon_star.grey{
  770. background-position: 0 -67px;
  771. }
  772. .icon_edit{
  773. background:url(images/icon_tools.png) no-repeat 0 2px;
  774. height:20px;
  775. width:20px;
  776. display:inline-block;
  777. vertical-align:3px;
  778. -webkit-margin-after: -8px;
  779. margin-left:5px;
  780. }
  781. .icon_edit:hover{
  782. background-position:-23px 2px;
  783. }
  784. .profile_icon{
  785. background:url(images/icon.png) no-repeat 0 -220px;
  786. height:20px;
  787. width:20px;
  788. display:inline-block;
  789. vertical-align: middle;
  790. }
  791. .profile_icon:hover{
  792. background-position:-24px -220px;
  793. }
  794. /*.render-table{
  795. position:relative;
  796. width:100%;
  797. overflow:hidden;
  798. }
  799. .render-table table{
  800. position:absolute;
  801. }*/
  802. .load-chart{
  803. height:300px;
  804. margin:0 auto;
  805. }
  806. .load-chart img{
  807. position: absolute;
  808. left: 50%;
  809. top: 50%;
  810. margin-left: -16px;
  811. margin-top: -16px;
  812. }
  813. .wait-load{
  814. text-indent:24px;
  815. }
  816. .wait-load img{
  817. position: absolute;
  818. left: 50%;
  819. top: 50%;
  820. margin-left: -16px;
  821. margin-top: -16px;
  822. }
  823. table.data-load{
  824. min-height:70px;
  825. min-height:0px\9;
  826. }
  827. table.data-load .colorGrad1{
  828. background:#49afb4;
  829. }
  830. table.data-load .colorGrad2{
  831. background:#5dcacf;
  832. }
  833. table.data-load .colorGrad3{
  834. background:#8ee6ea;
  835. }
  836. table.data-load .colorGrad4{
  837. background:#b6f2f3;
  838. }
  839. table.data-load th,dl.data-load dt{
  840. font-size:14px;
  841. color:#333333;
  842. overflow:hidden;
  843. background-color:#f5f5f5;
  844. height:36px;
  845. line-height:36px;
  846. text-indent:22px;
  847. border-right:1px solid #e8e8e8;
  848. border-left:1px solid #fff;
  849. border-bottom:1px solid #e8e8e8;
  850. }
  851. .small-table table.data-load th{
  852. font-size:12px;
  853. text-indent:0;
  854. text-align:center;
  855. }
  856. table.data-load th:first-child{
  857. border-left:0;
  858. }
  859. table.data-load th:last-child{
  860. border-right:0;
  861. }
  862. table.data-load td,dl.data-load dd{
  863. font-size:12px;
  864. color:#333333;
  865. height: 34px;
  866. line-height: 34px;
  867. padding:0 0 0 22px;
  868. border-right:1px solid #e8e8e8;
  869. border-left:1px solid #fff;
  870. border-bottom:1px solid #e8e8e8;
  871. word-break:break-all;
  872. }
  873. table.data-load .limit-height{
  874. height: 34px;
  875. line-height: 34px;
  876. overflow:hidden;
  877. }
  878. table.data-load td .mod-select{
  879. text-indent: 0px;
  880. }
  881. table.data-load td:first-child{
  882. border-left:0;
  883. }
  884. table.data-load td:last-child{
  885. border-right:0;
  886. }
  887. table.data-load tbody tr:hover{
  888. background-color:#d3f0f1;
  889. }
  890. .table-warning{
  891. margin-bottom:1px;
  892. border:1px solid #E5674A;
  893. background:#F5C2B7;
  894. color:#802626;
  895. font-size:14px;
  896. padding: 7px 20px;
  897. line-height:20px;
  898. }
  899. .table-info{
  900. margin-bottom:1px;
  901. border:1px solid #73d3d6;
  902. background:#c7edef;
  903. color:#333333;
  904. font-size:14px;
  905. padding: 7px 20px;
  906. line-height:20px;
  907. }
  908. .page-info-content{
  909. position:relative;
  910. height:0;
  911. z-index:199;
  912. text-align:center;
  913. }
  914. .page-info{
  915. height:30px;
  916. line-height:30px;
  917. font-size:14px;
  918. padding:0 18px;
  919. background:#73d3d6;
  920. filter:alpha(opacity=60);
  921. opacity:0.6;
  922. position:relative;
  923. display:inline-block;
  924. top:-7px;
  925. border-radius:8px;
  926. z-index:200;
  927. color:#000;
  928. }
  929. .tabpanel ul{
  930. display: inline-block;
  931. border:1px solid #B4B4B4;
  932. font-size:0;
  933. }
  934. .tabpanel li{
  935. height:28px;
  936. line-height:28px;
  937. font-size:13px;
  938. border-left: 1px solid #fff;
  939. display: inline-block;
  940. padding:0 14px;
  941. border-right: 1px solid #B4B4B4;
  942. cursor: pointer;
  943. background: url(images/backg2.png) 0 -120px repeat-x;
  944. }
  945. .tabpanel li.off{
  946. color: #666;
  947. }
  948. .tabpanel li:last-child{
  949. border-right:0;
  950. border-top-right-radius:6px;
  951. border-bottom-right-radius:6px;
  952. }
  953. .tabpanel li:first-child{
  954. border-left:0;
  955. border-top-left-radius:6px;
  956. border-bottom-left-radius:6px;
  957. }
  958. .tabpanel li.on{
  959. background:url(images/backg2.png) 0 1px repeat-x;
  960. }
  961. .tabpanel li a{
  962. display:block;
  963. color:#333;
  964. }
  965. /* left-nav begin*/
  966. #siderNav ul.nav-items{
  967. border: 1px solid #b4b4b4;
  968. border-radius: 8px;
  969. }
  970. #siderNav .nav-item{
  971. background-color: #eaeaea;
  972. border-top: 1px solid #fff;
  973. border-bottom: 1px solid #c9c9c9;
  974. }
  975. #siderNav li.item-top{
  976. border-top-left-radius: 8px;
  977. border-top-right-radius: 8px;
  978. border-bottom: 1px solid #b4b4b4;
  979. zoom: 1;
  980. }
  981. #siderNav li.item-bottom{
  982. border-bottom: 0;
  983. border-bottom-left-radius: 8px;
  984. border-bottom-right-radius: 8px;
  985. }
  986. #siderNav li.item-bottom ul{
  987. border-bottom-left-radius: 8px;
  988. border-bottom-right-radius: 8px;
  989. }
  990. #siderNav .nav-item span{
  991. display: block;
  992. height: 47px;
  993. line-height: 47px;
  994. }
  995. #siderNav .nav-item span a{
  996. font-size: 16px;
  997. color: #555555;
  998. height:47px;
  999. line-height:47px;
  1000. display:block;
  1001. padding-left:23px;
  1002. vertical-align: middle;
  1003. }
  1004. #siderNav .nav-item span a img.icon-new{
  1005. position:relative;
  1006. top:-3px;
  1007. left:4px;
  1008. }
  1009. #siderNav .nav-item span a.icons{
  1010. height:24px;
  1011. line-height:24px;
  1012. width:24px;
  1013. margin-right:2px;
  1014. }
  1015. #siderNav .nav-item span b.item-1{
  1016. background:url(images/icon.png) no-repeat 0 -98px;
  1017. }
  1018. #siderNav .nav-item span b.item-2{
  1019. background:url(images/icon.png) no-repeat -1px -266px;
  1020. }
  1021. #siderNav .nav-item span b.item-3{
  1022. background:url(images/icon.png) no-repeat -1px -216px;
  1023. }
  1024. #siderNav .nav-item span b.item-4{
  1025. background:url(images/icon.png) no-repeat -1px -386px;
  1026. }
  1027. #siderNav .nav-item span b.item-5{
  1028. background:url(images/icon.png) no-repeat -1px -241px;
  1029. }
  1030. #siderNav .nav-item span b.item-6{
  1031. background:url(images/icon.png) no-repeat -1px -362px;
  1032. }
  1033. #siderNav .nav-item span b.item-7{
  1034. background:url(images/icon.png) no-repeat -1px -601px;
  1035. }
  1036. #siderNav .nav-item span b.item-8{
  1037. background:url(images/icon.png) no-repeat -1px -146px;
  1038. }
  1039. #siderNav .nav-item span b.item-9{
  1040. background:url(images/icon.png) no-repeat -1px -410px;
  1041. }
  1042. #siderNav .nav-item span b.item-10{
  1043. background:url(images/iconEx.png) no-repeat 0px -145px;
  1044. }
  1045. #siderNav .nav-item span b.item-11{
  1046. background:url(images/icon.png) no-repeat -1px -433px;
  1047. }
  1048. #siderNav .nav-item span b.item-12{
  1049. background:url(images/icon.png) no-repeat -1px -458px;
  1050. }
  1051. #siderNav .nav-item span b.item-13{
  1052. background:url(images/iconEx.png) no-repeat 0px -49px;
  1053. }
  1054. #siderNav .nav-item span b.item-14{
  1055. background:url(images/iconEx.png) no-repeat 0px -73px;
  1056. }
  1057. #siderNav .nav-item span b.item-15{
  1058. background:url(images/iconEx.png) no-repeat 0px -97px;
  1059. }
  1060. #siderNav .nav-item span b.item-16{
  1061. background:url(images/iconEx.png) no-repeat 0px -121px;
  1062. }
  1063. #siderNav .nav-item span b.item-17{
  1064. background:url(images/icon.png) no-repeat 0px -506px;
  1065. }
  1066. #siderNav .nav-item span b.item-18{
  1067. background:url(images/iconEx.png) no-repeat 0px -2px;
  1068. }
  1069. #siderNav .nav-item span b.item-19{
  1070. background:url(images/iconEx.png) no-repeat 0px -26px;
  1071. }
  1072. #siderNav .nav-item span b.item-20{
  1073. background:url(images/aliyun.png) no-repeat;
  1074. }
  1075. #siderNav .nav-item span b.item-21{
  1076. background:url(images/iconEx.png) no-repeat -1px -241px;
  1077. }
  1078. #siderNav .nav-items .current-item span b.item-1{
  1079. background:url(images/icon.png) no-repeat -24px -98px;
  1080. }
  1081. #siderNav .nav-items .current-item span b.item-2{
  1082. background:url(images/icon.png) no-repeat -25px -266px;
  1083. }
  1084. #siderNav .nav-items .current-item span b.item-3{
  1085. background:url(images/icon.png) no-repeat -25px -216px;
  1086. }
  1087. #siderNav .nav-items .current-item span b.item-4{
  1088. background:url(images/icon.png) no-repeat -25px -386px;
  1089. }
  1090. #siderNav .nav-items .current-item span b.item-5{
  1091. background:url(images/icon.png) no-repeat -25px -241px;
  1092. }
  1093. #siderNav .nav-items .current-item span b.item-6{
  1094. background:url(images/icon.png) no-repeat -25px -362px;
  1095. }
  1096. #siderNav .nav-items .current-item span b.item-7{
  1097. background:url(images/icon.png) no-repeat -25px -601px;
  1098. }
  1099. #siderNav .nav-items .current-item span b.item-8{
  1100. background:url(images/icon.png) no-repeat -25px -146px;
  1101. }
  1102. #siderNav .current-item span b.item-9{
  1103. background:url(images/icon.png) no-repeat -25px -410px;
  1104. }
  1105. #siderNav .current-item span b.item-10{
  1106. background:url(images/iconEx.png) no-repeat -24px -145px;
  1107. }
  1108. #siderNav .current-item span b.item-11{
  1109. background:url(images/icon.png) no-repeat -25px -433px;
  1110. }
  1111. #siderNav .current-item span b.item-12{
  1112. background:url(images/icon.png) no-repeat -25px -458px;
  1113. }
  1114. #siderNav .current-item span b.item-13{
  1115. background:url(images/iconEx.png) no-repeat -24px -49px;
  1116. }
  1117. #siderNav .current-item span b.item-14{
  1118. background:url(images/iconEx.png) no-repeat -24px -73px;
  1119. }
  1120. #siderNav .current-item span b.item-15{
  1121. background:url(images/iconEx.png) no-repeat -24px -97px;
  1122. }
  1123. #siderNav .current-item span b.item-16{
  1124. background:url(images/iconEx.png) no-repeat -24px -121px;
  1125. }
  1126. #siderNav .current-item span b.item-17{
  1127. background:url(images/icon.png) no-repeat -25px -506px;
  1128. }
  1129. #siderNav .current-item span b.item-18{
  1130. background:url(images/iconEx.png) no-repeat -24px -1px;
  1131. }
  1132. #siderNav .current-item span b.item-19{
  1133. background:url(images/iconEx.png) no-repeat -24px -26px;
  1134. }
  1135. #siderNav .current-item span b.item-20{
  1136. background:url(images/aliyun-hl.png) no-repeat;
  1137. }
  1138. .sider-game #siderNav .nav-item span b.item-1{
  1139. background:url(images/icon-game.png) no-repeat 0px 0px;
  1140. }
  1141. .sider-game #siderNav .nav-item span b.item-2{
  1142. background:url(images/icon-game.png) no-repeat 0px -24px;
  1143. }
  1144. .sider-game #siderNav .nav-item span b.item-3{
  1145. background:url(images/icon-game.png) no-repeat 0px -48px;
  1146. }
  1147. .sider-game #siderNav .nav-item span b.item-4{
  1148. background:url(images/icon-game.png) no-repeat 0px -72px;
  1149. }
  1150. .sider-game #siderNav .current-item span b.item-1{
  1151. background:url(images/icon-game.png) no-repeat -24px 0px;
  1152. }
  1153. .sider-game #siderNav .current-item span b.item-2{
  1154. background:url(images/icon-game.png) no-repeat -24px -24px;
  1155. }
  1156. .sider-game #siderNav .current-item span b.item-3{
  1157. background:url(images/icon-game.png) no-repeat -24px -48px;
  1158. }
  1159. .sider-game #siderNav .current-item span b.item-4{
  1160. background:url(images/icon-game.png) no-repeat -24px -72px;
  1161. }
  1162. ul.sub-list{
  1163. border-top: 1px solid #b4b4b4;
  1164. background-color:#fff;
  1165. display:none;
  1166. }
  1167. #siderNav .nav-items .on .sub-list{
  1168. display:block;
  1169. }
  1170. ul.sub-list li{
  1171. height:40px;
  1172. line-height:40px;
  1173. }
  1174. #siderNav .nav-items ul.sub-list a{
  1175. font-size: 13px;
  1176. color: #444444;
  1177. display:block;
  1178. padding: 0 0 0 48px;
  1179. }
  1180. #siderNav .nav-items ul.sub-list a img.icon-new{
  1181. position: relative;
  1182. left: 4px;
  1183. top: -2px;
  1184. }
  1185. #siderNav .nav-items .sub-list .current-item,#siderNav .nav-items .current-item span a{
  1186. color: #008386;
  1187. }
  1188. #siderDownLoad{
  1189. margin-top:33px;
  1190. }
  1191. #siderDownLoad .sdkdown{
  1192. margin-bottom: 13px;
  1193. /*-moz-box-shadow: 0px -1px 1px #8986A9;
  1194. -webkit-box-shadow: 0px -1px 1px #8986A9;
  1195. box-shadow: 0px -1px 1px #8986A9;
  1196. border-top: 1px solid #C8C6E3;*/
  1197. -moz-border-radius:8px;
  1198. -webkit-border-radius:8px;
  1199. border-radius: 8px;
  1200. }
  1201. #siderDownLoad .sdkdown a{
  1202. font-size:13px;
  1203. color:#fff;
  1204. display:inline-block;
  1205. border:1px solid #8986a9;
  1206. -moz-border-radius:8px;
  1207. -webkit-border-radius:8px;
  1208. border-radius: 8px;
  1209. background: #8C87BB;
  1210. padding: 15px 0px 14px 0px;
  1211. width: 195px;
  1212. text-align:center;
  1213. box-shadow:inset 0px 1px 1px #c8c6e3;
  1214. }
  1215. #siderDownLoad .updatetime{
  1216. text-align:center;
  1217. font-size: 12px;
  1218. color:#666666;
  1219. }
  1220. /* left-nav end*/
  1221. /*particle*/
  1222. .particle{
  1223. display:inline-block;
  1224. zoom:1;
  1225. height:30px;
  1226. line-height:30px;
  1227. }
  1228. .particle li{
  1229. padding:0 3px;
  1230. margin-right:22px;
  1231. cursor:pointer;
  1232. display:inline-block;
  1233. zoom:1;
  1234. }
  1235. .particle li.on{
  1236. background:url(images/backg.png) repeat-x 0 -256px;
  1237. }
  1238. .particle li.off{
  1239. color:#999;
  1240. cursor:default;
  1241. }
  1242. /*operations-panel*/
  1243. .operations{
  1244. margin-bottom:15px;
  1245. height: 30px;
  1246. }
  1247. .radius {
  1248. border-top-left-radius: 8px;
  1249. border-top-right-radius: 8px;
  1250. }
  1251. .borders {
  1252. height: 28px;
  1253. line-height: 28px;
  1254. -moz-border-radius: 8px;
  1255. -webkit-border-radius: 8px;
  1256. border-radius: 8px;
  1257. }
  1258. .contrastpanel {
  1259. height: 30px;
  1260. line-height: 30px;
  1261. text-align: right;
  1262. position: relative;
  1263. }
  1264. .borders {
  1265. height: 28px;
  1266. line-height: 28px;
  1267. -moz-border-radius: 8px;
  1268. -webkit-border-radius: 8px;
  1269. border-radius: 8px;
  1270. }
  1271. .constr {
  1272. display: inline-block;
  1273. font-size: 14px;
  1274. color: #333;
  1275. padding: 0 14px;
  1276. background: url(/images/bgs/backg2.png) repeat-x 0 -120px;
  1277. border: 1px solid #b4b4b4;
  1278. }
  1279. input[type="text"].Wdate {
  1280. height: 15px;
  1281. padding: 2px;
  1282. }
  1283. input[type="text"] {
  1284. border: 1px solid #54A5D5;
  1285. }
  1286. .mod1 .mod-header {
  1287. height: 30px;
  1288. line-height: 30px;
  1289. padding: 0 23px;
  1290. border: 1px solid #b4b4b4;
  1291. background: rgb(236, 242, 255);
  1292. }
  1293. .export {
  1294. margin-top: 2px;
  1295. }
  1296. body{padding: 0px 10px;}
  1297. table.data-load .title{background: #1c3a70; color: white; line-height: 22px;}
  1298. .operations{padding: 10px; margin-bottom: 0px; height: auto;}
  1299. .bd3 .contentCol {margin-left: 100px;}
  1300. .Wdate{width: 90px; padding-left: 5px;}