common.css 26 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408
  1. a {
  2. color:#00a5e0
  3. }
  4. @-webkit-keyframes tinydown2 {
  5. 0% {
  6. -webkit-transform:translateY(10px)
  7. }
  8. to {
  9. -webkit-transform:translateY(30px)
  10. }
  11. }@keyframes tinydown2 {
  12. 0% {
  13. transform:translateY(10px)
  14. }
  15. to {
  16. transform:translateY(30px)
  17. }
  18. }@-webkit-keyframes fadeIn {
  19. 0% {
  20. opacity:0
  21. }
  22. to {
  23. opacity:1
  24. }
  25. }@keyframes fadeIn {
  26. 0% {
  27. opacity:0
  28. }
  29. to {
  30. opacity:1
  31. }
  32. }@-webkit-keyframes spin {
  33. form {
  34. -webkit-transform:rotate(0)
  35. }
  36. to {
  37. -webkit-transform:rotate(-360deg)
  38. }
  39. }@keyframes spin {
  40. form {
  41. transform:rotate(0)
  42. }
  43. to {
  44. transform:rotate(-360deg)
  45. }
  46. }.spin {
  47. -webkit-animation:spin2 1s linear infinite;
  48. animation:spin2 1s linear infinite
  49. }
  50. @-webkit-keyframes spin2 {
  51. 0% {
  52. -webkit-transform:rotate(-360deg)
  53. }
  54. to {
  55. -webkit-transform:rotate(0)
  56. }
  57. }@keyframes spin2 {
  58. 0% {
  59. transform:rotate(-360deg)
  60. }
  61. to {
  62. transform:rotate(0)
  63. }
  64. }@-webkit-keyframes bounceIn {
  65. 0% {
  66. -webkit-transform:scale(0)
  67. }
  68. 75% {
  69. -webkit-transform:scale(1.1)
  70. }
  71. to {
  72. -webkit-transform:scale(1)
  73. }
  74. }@keyframes bounceIn {
  75. 0% {
  76. transform:scale(0)
  77. }
  78. 75% {
  79. transform:scale(1.1)
  80. }
  81. to {
  82. transform:scale(1)
  83. }
  84. }::-webkit-input-placeholder {
  85. color:#9facba;
  86. line-height:inherit
  87. }
  88. ::-moz-placeholder {
  89. color:#9facba
  90. }
  91. :-ms-input-placeholder {
  92. color:#9facba
  93. }
  94. .dark {
  95. color:#4c5161
  96. }
  97. a.dark:hover {
  98. color:#00a5e0
  99. }
  100. .red {
  101. color:#ff5236
  102. }
  103. .gray {
  104. color:#9facba
  105. }
  106. .blue,a.blue:hover,a.gray:hover {
  107. color:#00a5e0
  108. }
  109. .green {
  110. color:#18c09d
  111. }
  112. .white,.white:hover {
  113. color:#fff
  114. }
  115. ol.ol {
  116. padding-left:22px;
  117. list-style-type:decimal
  118. }
  119. .loading {
  120. display:inline-block;
  121. width:20px;
  122. height:20px;
  123. background:url(images/loading.gif);
  124. background:url(images/loading.png),linear-gradient(transparent,transparent);
  125. -webkit-animation:spin .8s linear infinite;
  126. animation:spin .8s linear infinite
  127. }
  128. s.loading {
  129. padding:5px;
  130. background:url(images/loading2.gif);
  131. background:url(images/loading2.png),linear-gradient(transparent,transparent)
  132. }
  133. html {
  134. overflow:auto
  135. }
  136. body {
  137. overflow:hidden;
  138. min-width:1263px;
  139. background-color:#edf1f5
  140. }
  141. header {
  142. position:relative;
  143. z-index:3;
  144. height:62px;
  145. background-color:#00a5e0
  146. }
  147. .logo {
  148. overflow:hidden;
  149. margin-top:14px;
  150. margin-left:17px;
  151. width:200px;
  152. height:34px;
  153. background:url(images/logo_beta.png) no-repeat center;
  154. text-indent:-99em
  155. }
  156. .header_l,.logo {
  157. float:left
  158. }
  159. .header_r {
  160. float:right;
  161. height:100%
  162. }
  163. .header_avatar {
  164. padding:14px 35px 0 0;
  165. height:34px;
  166. white-space:nowrap;
  167. letter-spacing:-.25em
  168. }
  169. .header_avatar .avatar {
  170. width:34px;
  171. height:34px;
  172. border-radius:34px
  173. }
  174. .header_avatar,.header_name {
  175. display:inline-block;
  176. vertical-align:top
  177. }
  178. .header_name {
  179. margin:0 2px 0 11px;
  180. height:100%;
  181. color:#fff;
  182. letter-spacing:0;
  183. font-weight:400;
  184. line-height:2pc;
  185. cursor:pointer
  186. }
  187. .header_avatar>.icon {
  188. position:absolute;
  189. margin-top:7px
  190. }
  191. .header_icon {
  192. display:inline-block;
  193. width:62px;
  194. height:100%;
  195. text-align:center;
  196. cursor:pointer;
  197. -webkit-transition:background-color .25s;
  198. transition:background-color .25s
  199. }
  200. .header_icon:hover {
  201. background-color:#01b0ee
  202. }
  203. .header_icon>.icon {
  204. margin-top:8px
  205. }
  206. .main {
  207. min-height: 400px;
  208. margin-bottom:30px;
  209. overflow:hidden;
  210. margin-right:auto
  211. }
  212. .logo,aside,img {
  213. -webkit-user-select:none;
  214. -moz-user-select:none;
  215. -ms-user-select:none;
  216. user-select:none
  217. }
  218. @media all and (min-width:1281px) {
  219. .main {
  220. margin-right:auto
  221. }
  222. body {
  223. min-width:calc(80pc - 100vw - 100%)
  224. }
  225. }.aside_bg {
  226. position:absolute;
  227. top:0;
  228. bottom:0;
  229. width:199px;
  230. border-right:1px solid #dbdee5;
  231. background-color:#fff
  232. }
  233. .aside_bg {
  234. width:199px;
  235. -webkit-transition:width .25s;
  236. transition:width .25s
  237. }
  238. .aside_main {
  239. position:relative;
  240. display:inline-block;
  241. width:100%;
  242. background-color:#fff;
  243. white-space:nowrap
  244. }
  245. .checked .aside_main {
  246. z-index:2
  247. }
  248. .aside_toggle {
  249. display:block;
  250. margin-bottom:-8px;
  251. padding:7px 9px 0 15px;
  252. height:14px;
  253. text-align:right;
  254. line-height:0;
  255. cursor:pointer;
  256. -webkit-transition:all .25s;
  257. transition:all .25s
  258. }
  259. .aside_toggle+dl {
  260. margin-top:0
  261. }
  262. .aside_arrow {
  263. display:inline-block;
  264. overflow:hidden;
  265. width:0;
  266. height:0;
  267. border:6px solid transparent;
  268. -webkit-transition:border-color .25s;
  269. transition:border-color .25s;
  270. border-right-color:#d0d4da
  271. }
  272. .aside_toggle:hover .aside_arrow {
  273. border-right-color:#9facba
  274. }
  275. .aside_dl {
  276. margin:10px 0
  277. }
  278. .aside_dt {
  279. text-overflow: ellipsis;
  280. overflow:hidden;
  281. padding-left:22px;
  282. height:30px;
  283. color:#8d8d8d;
  284. line-height:30px;
  285. cursor:default;
  286. -webkit-transition:height .25s;
  287. transition:height .25s
  288. }
  289. .aside_nav {
  290. position:relative;
  291. display:block;
  292. padding:9pt 40px;
  293. color:#4c5161;
  294. cursor:pointer;
  295. -webkit-transition:background-color .25s,color .5s;
  296. transition:background-color .25s,color .5s
  297. }
  298. .aside_group>.aside_nav {
  299. display:none
  300. }
  301. .aside_nav:hover {
  302. background-color:#eceef3;
  303. color:#4c5161
  304. }
  305. .aside_button_add:after,.aside_button_add:before,.aside_nav:after,.aside_nav:before {
  306. position:absolute;
  307. top:50%;
  308. left:62px;
  309. z-index:1;
  310. color:#fff
  311. }
  312. .aside_button_add:after,.aside_button_add:before {
  313. left:50px
  314. }
  315. .aside_button_add:before,.aside_nav[data-title]:before {
  316. overflow:hidden;
  317. margin:-6px 0 0 -6px;
  318. width:0;
  319. height:0;
  320. border:6px solid transparent;
  321. border-right-color:#373c42
  322. }
  323. .aside_button_add:after,.aside_nav[data-title]:after {
  324. margin:-15px 0 0 6px;
  325. padding:5px 10px;
  326. border-radius:4px;
  327. background-color:#373c42;
  328. color:#fff;
  329. letter-spacing:0;
  330. font-size:9pt;
  331. line-height:20px
  332. }
  333. .aside_nav>.icon {
  334. margin-right:7px;
  335. vertical-align:-5px;
  336. text-align:center;
  337. line-height:20px
  338. }
  339. .aside_nav>.icon>img {
  340. display:none
  341. }
  342. .active>.icon[style] {
  343. visibility:hidden
  344. }
  345. .active>.icon>img {
  346. display:inline;
  347. visibility:visible;
  348. vertical-align:middle
  349. }
  350. .aside_dl .active {
  351. background-color:#00a5e0;
  352. color:#fff
  353. }
  354. .aside_divide {
  355. margin:10px;
  356. border-top:1px solid #e9ebf2
  357. }
  358. .checked>.aside_bg,aside.checked {
  359. width:61px
  360. }
  361. .checked .aside_toggle {
  362. margin-bottom:3px;
  363. text-align:center
  364. }
  365. .checked .aside_arrow {
  366. border-right-color:transparent;
  367. border-left-color:#d0d4da
  368. }
  369. .checked .aside_toggle:hover .aside_arrow {
  370. border-left-color:#9facba;
  371. border-right-color:transparent
  372. }
  373. .checked .aside_dt {
  374. overflow:hidden;
  375. height:0
  376. }
  377. .checked .aside_nav {
  378. color:#00a5e0;
  379. -webkit-transition-property:background-color;
  380. transition-property:background-color
  381. }
  382. .checked .aside_main>dl .aside_nav {
  383. letter-spacing:-9em
  384. }
  385. .checked .aside_main>dl .aside_nav>.icon {
  386. margin-right:50px
  387. }
  388. .checked.aside_group .aside_nav {
  389. color:#4c5161;
  390. letter-spacing:0
  391. }
  392. .checked .aside_group .active {
  393. background-color:#00a5e0;
  394. color:#fff
  395. }
  396. .checked .aside_button_add:hover:before,.checked .aside_nav:hover:before {
  397. content:''
  398. }
  399. .checked .aside_button_add:hover:after,.checked .aside_nav:hover:after {
  400. content:attr(data-title)
  401. }
  402. .checked .aside_button_add:hover {
  403. overflow:visible
  404. }
  405. .checked .aside_group>.aside_nav {
  406. display:block
  407. }
  408. .checked .aside_group .aside_dl {
  409. position:absolute;
  410. visibility:hidden
  411. }
  412. .checked>.aside_nav:after,.checked>.aside_nav:before {
  413. display:none
  414. }
  415. .checked>.aside_nav {
  416. background-color:#eceef3
  417. }
  418. .checked .checked>.aside_dl {
  419. left:70px;
  420. z-index:1;
  421. visibility:visible;
  422. margin-top:-55px;
  423. padding:5px 0;
  424. max-width:220px;
  425. border:1px solid rgba(0,0,0,.1);
  426. border-radius:4px;
  427. background-color:#fff;
  428. box-shadow:0 6px 9pt rgba(0,0,0,.175)
  429. }
  430. .checked .aside_group .aside_dt {
  431. position:absolute;
  432. top:70px;
  433. left:-9pt;
  434. padding:0;
  435. width:0;
  436. border:6px solid transparent;
  437. border-right-color:#fff
  438. }
  439. :root .checked .aside_group .aside_dt {
  440. top:30px;
  441. left:-6px;
  442. width:8px;
  443. height:8px;
  444. border:0 none;
  445. border-top:1px solid rgba(0,0,0,.05);
  446. border-left:1px solid rgba(0,0,0,.05);
  447. background-color:#fff;
  448. background-clip:content-box;
  449. -webkit-transition:background-color .25s;
  450. transition:background-color .25s;
  451. -webkit-transform:rotate(-45deg);
  452. transform:rotate(-45deg);
  453. -ms-transform:rotate(-45deg)
  454. }
  455. .checked .aside_group .i1 .aside_dt {
  456. background-color:#eceef3;
  457. border-right-color:#eceef3
  458. }
  459. .checked .aside_group .a1 .aside_dt {
  460. background-color:#00a5e0;
  461. border-right-color:#00a5e0
  462. }
  463. .aside_button_add {
  464. display:block;
  465. overflow:hidden;
  466. margin:10px 22px 20px;
  467. padding:8px 8px 8px 45px;
  468. height:20px;
  469. border:2px dashed;
  470. color:#ccc;
  471. line-height:20px;
  472. cursor:pointer;
  473. -webkit-transition:all .25s;
  474. transition:all .25s
  475. }
  476. .aside_shape_add {
  477. position:absolute;
  478. margin-left:-28px;
  479. width:20px;
  480. height:20px
  481. }
  482. .aside_shape_add .h,.aside_shape_add .v {
  483. position:absolute
  484. }
  485. .aside_shape_add .v {
  486. top:2px;
  487. left:9px;
  488. height:1pc;
  489. border-left:2px solid
  490. }
  491. .aside_shape_add .h {
  492. top:9px;
  493. left:2px;
  494. width:1pc;
  495. border-top:2px solid
  496. }
  497. .aside_button_add:hover {
  498. position:relative;
  499. color:#a6a6a6
  500. }
  501. .checked .aside_button_add {
  502. margin-right:10px;
  503. margin-left:10px;
  504. padding-right:0;
  505. padding-left:37px
  506. }
  507. .checked .aside_button_text {
  508. position:absolute;
  509. color:transparent;
  510. line-height:0
  511. }
  512. .section-main {
  513. padding:0 30px
  514. }
  515. .section-auto {
  516. margin-right:auto;
  517. margin-left:auto;
  518. padding-bottom:60px;
  519. max-width:930pt;
  520. min-width:1003px
  521. }
  522. .checked~section .section-auto {
  523. min-width:1157px
  524. }
  525. .section-title {
  526. margin:36px 0 24px;
  527. font-size:28px
  528. }
  529. @media all and (max-width:1440px) {
  530. .section-title {
  531. margin:31px 0 19px;
  532. font-size:26px
  533. }
  534. }.footer-icon {
  535. position:fixed;
  536. right:20px;
  537. z-index:9999;
  538. width:40px;
  539. height:40px;
  540. background-image:url(images/footer-icons.png);
  541. background-repeat:no-repeat
  542. }
  543. .footer-icon:hover {
  544. cursor:pointer
  545. }
  546. .footer-scroll2top {
  547. bottom:20px;
  548. display:none
  549. }
  550. .footer-scroll2top:hover {
  551. background-position:-40px 0
  552. }
  553. .footer-support {
  554. bottom:20px;
  555. display:none;
  556. background-position:0 -40px
  557. }
  558. .footer-support:hover {
  559. background-position:-40px -40px
  560. }
  561. .footer-support-title {
  562. margin-bottom:15px
  563. }
  564. .footer-support-textarea {
  565. height:210px;
  566. resize:none
  567. }
  568. .footer-support-comment {
  569. display:inline-block;
  570. margin:15px 0 15px 13px;
  571. color:#a2a9b6;
  572. font-size:9pt;
  573. line-height:20px
  574. }
  575. .footer-support-fileupload {
  576. margin-bottom:20px
  577. }
  578. .footer-support-submit {
  579. position:absolute;
  580. right:25px;
  581. bottom:25px;
  582. display:block
  583. }
  584. @media(-webkit-min-device-pixel-ratio:1.5),(min-resolution:2dppx) {
  585. background-size:200px 34px
  586. }
  587. }.icon {
  588. display:inline-block;
  589. overflow:hidden;
  590. width:20px;
  591. height:20px;
  592. background:url(images/icons.png) no-repeat 20px 20px;
  593. color:transparent!important;
  594. line-height:0;
  595. -webkit-user-select:none;
  596. -moz-user-select:none;
  597. -ms-user-select:none;
  598. user-select:none
  599. }
  600. .active .icon_nav_ablity {
  601. background-position:-20px 0
  602. }
  603. .active .icon_nav_api {
  604. background-position:-60px -5pc
  605. }
  606. .active .icon_nav_comment {
  607. background-position:0 -20px
  608. }
  609. .active .icon_nav_developer {
  610. background-position:-20px -20px
  611. }
  612. .active .icon_nav_fans {
  613. background-position:-40px 0
  614. }
  615. .active .icon_nav_limit {
  616. background-position:-40px -20px
  617. }
  618. .active .icon_nav_menu {
  619. background-position:0 -40px
  620. }
  621. .active .icon_nav_msg {
  622. background-position:-20px -40px
  623. }
  624. .active .icon_nav_news {
  625. background-position:-40px -40px
  626. }
  627. .active .icon_nav_pay {
  628. background-position:-60px 0
  629. }
  630. .active .icon_nav_reply {
  631. background-position:-60px -20px
  632. }
  633. .active .icon_nav_run {
  634. background-position:-60px -40px
  635. }
  636. .active .icon_nav_security {
  637. background-position:0 -60px
  638. }
  639. .active .icon_nav_send {
  640. background-position:-20px -60px
  641. }
  642. .active .icon_nav_set {
  643. background-position:-40px -60px
  644. }
  645. .active .icon_nav_source {
  646. background-position:-60px -60px
  647. }
  648. .active .icon_nav_stat {
  649. background-position:-5pc 0
  650. }
  651. .active .icon_nav_tag {
  652. background-position:-5pc -20px
  653. }
  654. .active .icon_nav_user {
  655. background-position:-5pc -40px
  656. }
  657. .active .icon_nav_ux {
  658. background-position:-5pc -60px
  659. }
  660. .active .icon_nav_verity {
  661. background-position:0 -5pc
  662. }
  663. .icon_hook {
  664. background-position:-20px -5pc
  665. }
  666. .icon_logout {
  667. background-position:-40px -5pc
  668. }
  669. .icon_nav_ablity {
  670. background-position:0 0
  671. }
  672. .icon_nav_api {
  673. background-position:-5pc -5pc
  674. }
  675. .icon_nav_comment {
  676. background-position:-75pt 0
  677. }
  678. .icon_nav_developer {
  679. background-position:-75pt -20px
  680. }
  681. .icon_nav_fans {
  682. background-position:-75pt -40px
  683. }
  684. .icon_nav_limit {
  685. background-position:-75pt -60px
  686. }
  687. .icon_nav_menu {
  688. background-position:-75pt -5pc
  689. }
  690. .icon_nav_msg {
  691. background-position:0 -75pt
  692. }
  693. .icon_nav_news {
  694. background-position:-20px -75pt
  695. }
  696. .icon_nav_pay {
  697. background-position:-40px -75pt
  698. }
  699. .icon_nav_reply {
  700. background-position:-60px -75pt
  701. }
  702. .icon_nav_run {
  703. background-position:-5pc -75pt
  704. }
  705. .icon_nav_security {
  706. background-position:-75pt -75pt
  707. }
  708. .icon_nav_send {
  709. background-position:-90pt 0
  710. }
  711. .icon_nav_set {
  712. background-position:-90pt -20px
  713. }
  714. .icon_nav_source {
  715. background-position:-90pt -40px
  716. }
  717. .icon_nav_stat {
  718. background-position:-90pt -60px
  719. }
  720. .icon_nav_tag {
  721. background-position:-90pt -5pc
  722. }
  723. .icon_nav_user {
  724. background-position:-90pt -75pt
  725. }
  726. .icon_nav_ux {
  727. background-position:0 -90pt
  728. }
  729. .icon_nav_verity {
  730. background-position:-20px -90pt
  731. }
  732. .icon_title_inf:hover {
  733. background-position:-40px -90pt
  734. }
  735. .icon_title_inf {
  736. background-position:-60px -90pt
  737. }
  738. .icon-pages {
  739. display:inline-block;
  740. overflow:hidden;
  741. width:1pc;
  742. height:1pc;
  743. background:url(images/icons-pages.png) no-repeat;
  744. color:transparent!important;
  745. vertical-align:middle
  746. }
  747. .icon-pages-disabled {
  748. opacity:.5;
  749. filter:alpha(opacity=50)
  750. }
  751. .icon-pages-comment {
  752. padding-right:5px;
  753. vertical-align:middle
  754. }
  755. .icon-pages-comment-close {
  756. background-position:0 0
  757. }
  758. .icon-pages-comment-open {
  759. background-position:0 -22pc
  760. }
  761. .icon-pages-manage {
  762. background-position:0 -4pc
  763. }
  764. .icon-pages-yes {
  765. background-position:0 -6pc
  766. }
  767. .icon-pages-no {
  768. background-position:0 -8pc
  769. }
  770. .icon-pages-del {
  771. background-position:0 -10pc
  772. }
  773. .icon-pages-del-black {
  774. background-position:0 -420px
  775. }
  776. .icon-pages-v {
  777. background-position:0 -2in
  778. }
  779. .icon-pages-x {
  780. background-position:0 -14pc
  781. }
  782. .icon-pages-i {
  783. background-position:0 -16pc
  784. }
  785. .icon-pages-up {
  786. height:18px;
  787. background-position:0 -286px
  788. }
  789. .icon-pages-down {
  790. height:18px;
  791. background-position:0 -318px
  792. }
  793. .icon-pages-dis {
  794. visibility:hidden;
  795. background:0;
  796. pointer-events:none
  797. }
  798. a .icon-con-arrow {
  799. display:inline-block;
  800. width:20px;
  801. height:20px;
  802. background:url(images/icon-table-arrow.png) no-repeat;
  803. vertical-align:-4px;
  804. cursor:pointer
  805. }
  806. a:hover .icon-con-arrow {
  807. background-position:0 -20px
  808. }
  809. a:hover .icon-pages-comment-close {
  810. background-position:0 -517px
  811. }
  812. a:hover .icon-pages-comment-open {
  813. background-position:0 -485px
  814. }
  815. a:hover .icon-pages-del-black {
  816. background-position:0 -550px
  817. }
  818. @media(-webkit-min-device-pixel-ratio:1.5),(min-resolution:2dppx) {
  819. .active .icon_nav_ablity {
  820. background-position:-20px 0
  821. }
  822. .active .icon_nav_comment {
  823. background-position:0 -5pc
  824. }
  825. .active .icon_nav_developer {
  826. background-position:0 -20px
  827. }
  828. .active .icon_nav_fans {
  829. background-position:-20px -20px
  830. }
  831. .active .icon_nav_limit {
  832. background-position:-40px 0
  833. }
  834. .active .icon_nav_menu {
  835. background-position:-40px -20px
  836. }
  837. .active .icon_nav_msg {
  838. background-position:0 -40px
  839. }
  840. .active .icon_nav_news {
  841. background-position:-20px -40px
  842. }
  843. .active .icon_nav_pay {
  844. background-position:-40px -40px
  845. }
  846. .active .icon_nav_reply {
  847. background-position:-60px 0
  848. }
  849. .active .icon_nav_run {
  850. background-position:-60px -20px
  851. }
  852. .active .icon_nav_security {
  853. background-position:-60px -40px
  854. }
  855. .active .icon_nav_send {
  856. background-position:0 -60px
  857. }
  858. .active .icon_nav_set {
  859. background-position:-20px -60px
  860. }
  861. .active .icon_nav_source {
  862. background-position:-40px -60px
  863. }
  864. .active .icon_nav_stat {
  865. background-position:-60px -60px
  866. }
  867. .active .icon_nav_user {
  868. background-position:-5pc 0
  869. }
  870. .active .icon_nav_ux {
  871. background-position:-5pc -20px
  872. }
  873. .active .icon_nav_verity {
  874. background-position:-5pc -40px
  875. }
  876. .icon_hook {
  877. background-position:-5pc -60px
  878. }
  879. .icon_nav_ablity {
  880. background-position:-20px -5pc
  881. }
  882. .icon_nav_comment {
  883. background-position:-40px -5pc
  884. }
  885. .icon_nav_developer {
  886. background-position:-60px -5pc
  887. }
  888. .icon_nav_fans {
  889. background-position:-5pc -5pc
  890. }
  891. .icon_nav_limit {
  892. background-position:-75pt 0
  893. }
  894. .icon_nav_menu {
  895. background-position:-75pt -20px
  896. }
  897. .icon_nav_msg {
  898. background-position:-75pt -40px
  899. }
  900. .icon_nav_news {
  901. background-position:-75pt -60px
  902. }
  903. .icon_nav_pay {
  904. background-position:-75pt -5pc
  905. }
  906. .icon_nav_reply {
  907. background-position:0 -75pt
  908. }
  909. .icon_nav_run {
  910. background-position:-20px -75pt
  911. }
  912. .icon_nav_security {
  913. background-position:-40px -75pt
  914. }
  915. .icon_nav_send {
  916. background-position:-60px -75pt
  917. }
  918. .icon_nav_set {
  919. background-position:-5pc -75pt
  920. }
  921. .icon_nav_source {
  922. background-position:-75pt -75pt
  923. }
  924. .icon_nav_stat {
  925. background-position:-90pt 0
  926. }
  927. .icon_nav_user {
  928. background-position:-90pt -20px
  929. }
  930. .icon_nav_ux {
  931. background-position:-90pt -40px
  932. }
  933. .icon_nav_verity {
  934. background-position:-90pt -60px
  935. }
  936. }.hidden {
  937. display:none!important
  938. }
  939. .table-content {
  940. background-color:#fff;
  941. box-shadow:0 1px 3px rgba(0,0,1,.1)
  942. }
  943. .table {
  944. width:100%;
  945. table-layout:fixed;
  946. border-spacing:0
  947. }
  948. .table-base {
  949. line-height:49px
  950. }
  951. .table-base th,.table-base thead td {
  952. padding-right:5px;
  953. padding-left:5px;
  954. background-color:#f7f9fa;
  955. text-align:left;
  956. font-weight:400;
  957. font-style:normal
  958. }
  959. .table-base th.col-chk,.table-base thead td.col-chk {
  960. padding-right:0
  961. }
  962. .table-base th.col1,.table-base thead td.col1 {
  963. padding-left:1px
  964. }
  965. .table-base th [type=checkbox],.table-base thead td [type=checkbox] {
  966. position:absolute;
  967. clip:rect(0 0 0 0)
  968. }
  969. .table-base tbody td {
  970. padding:10px 5px;
  971. border-bottom:1px solid #ededed;
  972. background-color:#fff;
  973. vertical-align:top;
  974. line-height:210%
  975. }
  976. .table-base tbody td span {
  977. display:block;
  978. overflow:hidden;
  979. text-overflow:ellipsis;
  980. white-space:nowrap
  981. }
  982. .table-base tbody td span.multi-line {
  983. display:block;
  984. white-space:normal
  985. }
  986. .table-base tbody td.col1 {
  987. padding-left:1px
  988. }
  989. .table-base tbody td.col-ctrl {
  990. padding-right:0;
  991. text-align:center
  992. }
  993. .table-base tbody td.col-ctrl span {
  994. visibility:hidden;
  995. overflow:visible
  996. }
  997. .table-base tbody td.col-ctrl span a {
  998. margin-right:6px;
  999. margin-left:6px
  1000. }
  1001. .table-base tbody td.col-expand span,.table-base tbody td.col-fold span {
  1002. float:left
  1003. }
  1004. .table-base tbody td.col-expand span em,.table-base tbody td.col-expand span i,.table-base tbody td.col-fold span em,.table-base tbody td.col-fold span i {
  1005. font-weight:400;
  1006. font-style:normal
  1007. }
  1008. .table-base tbody td.col-expand span i,.table-base tbody td.col-fold span i {
  1009. color:#a2a9b6
  1010. }
  1011. .table-base tbody td.col-expand span .icon-con-arrow-link,.table-base tbody td.col-fold span .icon-con-arrow-link {
  1012. margin-right:50px
  1013. }
  1014. .table-base tbody td.col-expand span {
  1015. margin-right:60px;
  1016. white-space:normal
  1017. }
  1018. .table-base tbody td.col-expand .icon-con-arrow-link {
  1019. float:right;
  1020. margin-top:-28px;
  1021. margin-right:50px
  1022. }
  1023. .table-base tbody td.col-expand .icon-con-arrow-link .icon-con-arrow {
  1024. background:url(images/icon-table-arrow-up.png) no-repeat 0 0
  1025. }
  1026. .table-base tbody td.col-expand .icon-con-arrow-link:hover .icon-con-arrow {
  1027. background-position:0 -20px
  1028. }
  1029. .table-base td.col-chk,.table-base th.col-chk {
  1030. padding-right:0;
  1031. width:45px;
  1032. text-align:center
  1033. }
  1034. .table-base tr {
  1035. cursor:default
  1036. }
  1037. .table-base tr:hover td {
  1038. background-color:#f2fcff
  1039. }
  1040. .table-base tr:hover td.col-ctrl span {
  1041. visibility:visible
  1042. }
  1043. .table-base tr.selected td {
  1044. background-color:#e0f7ff
  1045. }
  1046. .table-transition tbody {
  1047. opacity:0
  1048. }
  1049. .table-transition[data-transition] tbody {
  1050. opacity:1;
  1051. -webkit-animation:fadeIn .35s;
  1052. animation:fadeIn .35s
  1053. }
  1054. .table-page {
  1055. padding:10px 10px 8px 22px;
  1056. height:2pc;
  1057. background-color:#f7f9fa
  1058. }
  1059. .table-page-data {
  1060. float:left;
  1061. padding-top:5px
  1062. }
  1063. .table-page-a {
  1064. display:inline-block;
  1065. margin-left:6px
  1066. }
  1067. .table-page-a:hover {
  1068. color:#00a5e0
  1069. }
  1070. .table-page-a:hover i {
  1071. background-position:0 -20px
  1072. }
  1073. .table-loading {
  1074. position:relative;
  1075. height:300px;
  1076. background-color:#fff;
  1077. text-align:center
  1078. }
  1079. .table-loading .loading {
  1080. position:absolute;
  1081. top:50%;
  1082. left:50%;
  1083. margin:-15px 0 0 -15px
  1084. }
  1085. .table-null {
  1086. display:none;
  1087. padding-top:70px;
  1088. height:230px;
  1089. background-color:#fff;
  1090. text-align:center
  1091. }
  1092. .table-null-icon {
  1093. display:inline-block;
  1094. width:75pt;
  1095. height:75pt;
  1096. background:url(images/icons-null.png) no-repeat
  1097. }
  1098. .table-null-title {
  1099. margin-top:10px;
  1100. font-size:24px
  1101. }
  1102. .table-null-desc {
  1103. padding-bottom:40px
  1104. }
  1105. .ui_switch {
  1106. display:inline-block;
  1107. box-sizing:border-box;
  1108. width:44px;
  1109. height:26px;
  1110. border:2px solid;
  1111. border-radius:26px;
  1112. background-color:currentColor;
  1113. color:#b5b5b5;
  1114. vertical-align:middle;
  1115. cursor:pointer;
  1116. -webkit-transition:all .2s;
  1117. transition:all .2s
  1118. }
  1119. .switch input {
  1120. position:absolute;
  1121. clip:rect(0,0,0,0)
  1122. }
  1123. .ui_switch:before {
  1124. display:block;
  1125. width:22px;
  1126. height:22px;
  1127. border-radius:22px;
  1128. background-color:#fff;
  1129. content:'';
  1130. -webkit-transition:margin-left .2s;
  1131. transition:margin-left .2s
  1132. }
  1133. :checked+.ui_switch {
  1134. color:#00a5e0
  1135. }
  1136. :checked+.ui_switch:before {
  1137. margin-left:18px
  1138. }
  1139. :disabled+.ui_switch {
  1140. opacity:.38;
  1141. cursor:default
  1142. }
  1143. @media \0screen\,screen\9 {
  1144. .ui_switch {
  1145. border:0 none;
  1146. background:url(images/Switch/switch.png) no-repeat
  1147. }
  1148. .checked+.ui_switch {
  1149. background-position:0 -30px
  1150. }
  1151. [disabled]+.ui_switch {
  1152. cursor:default;
  1153. filter:alpha(opacity=38)
  1154. }
  1155. }.header_nav {
  1156. float:left;
  1157. margin:0 auto;
  1158. height:62px;
  1159. line-height:62px
  1160. }
  1161. .header_nav>li {
  1162. padding-right: 10px;
  1163. padding-left: 10px;
  1164. float:left;
  1165. margin-left:10px;
  1166. font-size:1.2em
  1167. }
  1168. .header_nav>li:hover {
  1169. background-color:#0ab0eb
  1170. }
  1171. .header_nav>li>a {
  1172. color:#fff
  1173. }
  1174. .header_nav>li>a:focus {
  1175. color:#e2eaf1
  1176. }
  1177. .ui_tab_tabs {
  1178. position:relative;
  1179. height:40px;
  1180. border-bottom:1px solid #dfdfe0;
  1181. line-height:40px
  1182. }
  1183. .ui_tab_tab {
  1184. float:left;
  1185. overflow:hidden;
  1186. margin-right:50px;
  1187. color:#4c5161;
  1188. text-align:center;
  1189. font-size:1pc;
  1190. cursor:pointer
  1191. }
  1192. .ui_tab_tab a {
  1193. display:block;
  1194. color:#4c5161
  1195. }
  1196. .ui_tab_tab:hover,.ui_tab_tab:hover a {
  1197. color:#00a5e0
  1198. }
  1199. .ui_tab_tabs .checked,.ui_tab_tabs .checked a,.ui_tab_tabs .checked:hover {
  1200. margin-bottom:-1px;
  1201. padding-top:2px;
  1202. border-bottom:3px solid;
  1203. color:#00a5e0;
  1204. line-height:36px;
  1205. cursor:default
  1206. }
  1207. .ui_tab_line {
  1208. position:absolute;
  1209. bottom:-1px;
  1210. left:0;
  1211. display:none;
  1212. width:0;
  1213. border-bottom:3px solid #00a5e0;
  1214. -webkit-transition:all .35s;
  1215. transition:all .35s
  1216. }
  1217. .ui_tab_tabs>.ui_tab_line~.ui_tab_tab {
  1218. margin-bottom:0;
  1219. padding-top:0;
  1220. border-bottom:0;
  1221. line-height:40px
  1222. }
  1223. .ui_tab_contents {
  1224. margin:0 auto;
  1225. margin-top:30px
  1226. }
  1227. .ui_tab_content {
  1228. display:none
  1229. }
  1230. .ui_tab_content.checked {
  1231. display:block
  1232. }
  1233. ::-webkit-input-placeholder {
  1234. color:#9facba;
  1235. font-size:14px;
  1236. line-height:inherit;
  1237. -webkit-transition:opacity .15s
  1238. }
  1239. :focus::-webkit-input-placeholder {
  1240. opacity:.38
  1241. }
  1242. ::-moz-placeholder {
  1243. color:#9facba;
  1244. font-size:14px;
  1245. transition:opacity .15s
  1246. }
  1247. :focus::-moz-placeholder {
  1248. opacity:.38
  1249. }
  1250. :-ms-input-placeholder {
  1251. color:#9facba!important;
  1252. font-size:14px;
  1253. transition:opacity .15s
  1254. }
  1255. :focus:-ms-input-placeholder {
  1256. opacity:.38
  1257. }
  1258. .row {
  1259. margin-right:0!important;
  1260. margin-left:0!important
  1261. }
  1262. .checked .aside_dl .active {
  1263. color:#fff!important
  1264. }
  1265. .checked>.aside_main>.aside_group>.aside_nav {
  1266. margin-right:-150px;
  1267. padding:9pt 20px;
  1268. background-color:hsla(0,0%,100%,0)
  1269. }
  1270. .aside_nav {
  1271. overflow:hidden;
  1272. text-overflow:ellipsis;
  1273. white-space:nowrap;
  1274. word-wrap:break-word
  1275. }
  1276. .aside_group {
  1277. margin-top:8px
  1278. }
  1279. .aside_dl>dd>.aside_nav>.fa,.aside_dt>.fa {
  1280. margin-left:-4px;
  1281. color:#00a5e0
  1282. }
  1283. .well .page-header {
  1284. margin-top:15px;
  1285. margin-bottom:15px;
  1286. padding-left:1em;
  1287. border:none;
  1288. border-left:.3em #8c8c8c solid;
  1289. color:#8c8c8c;
  1290. text-transform:uppercase;
  1291. font-weight:600;
  1292. font-size:15px
  1293. }
  1294. .well .tile.tile-2x {
  1295. width:10em
  1296. }
  1297. .well .tile {
  1298. float:left;
  1299. display:block;
  1300. margin:.4em;
  1301. padding:.2em 1em .5em;
  1302. width:8em;
  1303. background:#14a4d9;
  1304. color:hsla(0,0%,100%,.85);
  1305. text-align:center;
  1306. text-decoration:none;
  1307. font-weight:400
  1308. }
  1309. .well .tile:hover {
  1310. background:#34acd8;
  1311. color:#fff
  1312. }
  1313. .well .account .panel .list-group-bottom {
  1314. height:40px;
  1315. background:#f5f5f5;
  1316. line-height:40px
  1317. }
  1318. .well .account .panel-heading {
  1319. border-bottom:1px solid #e9e9e9;
  1320. background:#fff
  1321. }
  1322. .well .account .panel-body {
  1323. padding:0 15px
  1324. }
  1325. .well .account .panel-body li {
  1326. padding:0
  1327. }
  1328. .well .account .panel .list-group-bottom-right>a {
  1329. padding:0 6px;
  1330. color:#999
  1331. }
  1332. margin-right:4px;
  1333. .well .tile:hover {
  1334. background:#15aadf
  1335. }
  1336. .well .tile>i {
  1337. display:block;
  1338. margin:.3em auto .1em;
  1339. color:#fff;
  1340. font-size:2em
  1341. }
  1342. .well .account .panel .list-group-bottom-right>a>i {
  1343. margin-right:4px
  1344. }
  1345. .template .item {
  1346. margin:0 18px 20px 0!important
  1347. }
  1348. .table {
  1349. table-layout:inherit!important
  1350. }
  1351. .btn-group>.btn {
  1352. margin-bottom:4px!important
  1353. }
  1354. #search-menu .input-lg {
  1355. margin:0;
  1356. padding:0 0 0 35px;
  1357. height:40px;
  1358. border:medium none;
  1359. background:none repeat scroll 0 0 transparent;
  1360. background:url(images/pos.png) no-repeat 10px center;
  1361. background-size:25px 25px;
  1362. box-shadow:inset 0 1px 1px transparent;
  1363. color:#00a5e0;
  1364. font-size:14px;
  1365. cursor:auto
  1366. }
  1367. .foot {
  1368. height: 40px;
  1369. position: fixed;
  1370. bottom:0;
  1371. padding:9pt 0;
  1372. margin-left: -30px;
  1373. width:110%;
  1374. background-color:hsla(0,2%,59%,.85);
  1375. color:#f1f1f1;
  1376. text-align:center
  1377. }
  1378. .navbar-default {
  1379. background-color: #f8f8f8 !important;
  1380. border-color: #e7e7e7 !important;
  1381. }
  1382. .navbar-default .navbar-nav>li>a {
  1383. color: #777 !important;
  1384. }
  1385. .navbar-static-top .container-fluid .navbar-nav>li>a {
  1386. color: #FFF ;
  1387. }
  1388. .container-fluid .form .panel {
  1389. margin-bottom: 20px !important;
  1390. }
  1391. .container-fluid .panel:last-child {
  1392. margin-bottom: 20px !important;
  1393. }
  1394. .container-fluid .panel {
  1395. margin-bottom: 30px !important;
  1396. }
  1397. .container-fluid .panel-body {
  1398. margin-bottom: 30px;
  1399. }
  1400. .container-fluid .table {
  1401. margin-bottom: 30px !important;
  1402. }
  1403. .checked .btn-group {
  1404. display: none;
  1405. }
  1406. .welcome-container .shortcut a i {
  1407. color: #00a5e0;
  1408. }