index.css 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002
  1. body {
  2. line-height: 1.6;
  3. font-family: "Helvetica Neue", "Hiragino Sans GB", "Microsoft YaHei",
  4. "\9ED1\4F53", Arial, sans-serif;
  5. color: #222;
  6. font-size: 14px;
  7. background-color: #eff2f9;
  8. }
  9. h1,h2,h3 {
  10. font-size: 20px;
  11. font-weight: 400;
  12. font-style: normal;
  13. }
  14. a {
  15. color: #333;
  16. text-decoration: none;
  17. }
  18. .block {
  19. background-color: #fff;
  20. width: 100%;
  21. position: relative;
  22. }
  23. .f12 {
  24. font-size: 12px !important;
  25. }
  26. .f14 {
  27. font-size: 14px !important;
  28. }
  29. .f16 {
  30. font-size: 16px !important;
  31. }
  32. [ng-click] {
  33. cursor: pointer;
  34. }
  35. .br-r {
  36. border-right: 1px solid #e6e6e6;
  37. }
  38. .br-l {
  39. border-left: 1px solid #e6e6e6;
  40. }
  41. .br-b {
  42. border-bottom: 1px solid #e6e6e6;
  43. }
  44. /*inverse*/
  45. .text-default {
  46. color: #56a022;
  47. }
  48. .text-inverse {
  49. color: #f40 !important
  50. }
  51. .text-muted {
  52. color: #888 !important;
  53. }
  54. .text-light {
  55. color: #666;
  56. }
  57. .text-simple {
  58. color: #aaa;
  59. }
  60. .text-num {
  61. font-style: normal;
  62. font-family: verdana;
  63. }
  64. .text-small {
  65. font-size: 10px;
  66. font-family: "microsoft yahei";
  67. -webkit-transform: scale(0.83);
  68. -o-transform: scale(0.83);
  69. transform: scale(0.83);
  70. }
  71. .text-bold {
  72. font-weight: 700;
  73. }
  74. .text-border-success {
  75. border: 1px solid #f40;
  76. color: #f40;
  77. background-color: #fff;
  78. padding: 2px 4px;
  79. }
  80. .form-control {
  81. border-color: #e1e1e1;
  82. }
  83. /*dropdown*/
  84. .dropdown>.dropdown-toggle {
  85. border-style: solid;
  86. border-width: 0 1px;
  87. border-color: transparent;
  88. }
  89. .dropdown:hover>.dropdown-toggle {
  90. position: relative;
  91. background-color: #ffffff;
  92. border: 1px solid #eee;
  93. border-top: 0;
  94. border-bottom: 0;
  95. z-index: 1001;
  96. }
  97. .dropdown:hover>.dropdown-menu {
  98. display: block;
  99. position: absolute;
  100. border-color: #eee;
  101. webkit-box-shadow: none;
  102. box-shadow: none;
  103. margin-top: -1px;
  104. min-width: 100%;
  105. font-size: 12px;
  106. }
  107. .dropdown-submenu {
  108. position: relative;
  109. }
  110. .dropdown-submenu>.dropdown-menu {
  111. top: 0;
  112. left: 100%;
  113. margin-top: 0;
  114. -webkit-border-radius: 0 6px 6px 6px;
  115. -moz-border-radius: 0 6px 6px 6px;
  116. border-radius: 0 6px 6px 6px;
  117. }
  118. .dropdown-submenu:hover>.dropdown-toggle {
  119. position: relative;
  120. background-color: #ffffff;
  121. border-color: transparent;
  122. z-index: 1001;
  123. }
  124. .dropdown-submenu:hover>.dropdown-menu {
  125. display: block;
  126. min-width: 120px;
  127. font-size: 12px;
  128. }
  129. .dropup .dropdown-submenu>.dropdown-menu {
  130. top: auto;
  131. bottom: 0;
  132. margin-top: 0;
  133. margin-bottom: -2px;
  134. -webkit-border-radius: 5px 5px 5px 0;
  135. -moz-border-radius: 5px 5px 5px 0;
  136. border-radius: 5px 5px 5px 0;
  137. }
  138. .dropdown-submenu.pull-left {
  139. float: none;
  140. }
  141. .dropdown-submenu.pull-left>.dropdown-menu {
  142. left: -100%;
  143. margin-left: 10px;
  144. -webkit-border-radius: 6px 0 6px 6px;
  145. -moz-border-radius: 6px 0 6px 6px;
  146. border-radius: 6px 0 6px 6px;
  147. }
  148. .navbar {
  149. margin-bottom: 0;
  150. border-radius: 0;
  151. }
  152. .icon-left {
  153. margin-right: 5px;
  154. }
  155. /*chart*/
  156. [ac-chart] {
  157. width: 46%;
  158. height: 200px;
  159. margin: 0 1%;
  160. }
  161. .ac-title {
  162. height: 39px;
  163. line-height: 39px;
  164. padding: 0 15px;
  165. color: #333;
  166. font-weight: 500 !important;
  167. }
  168. .ac-legend {
  169. color: #666;
  170. }
  171. .ac-legend tr>td {
  172. padding: 2px 0;
  173. max-width: 120px;
  174. overflow: hidden;
  175. text-overflow: ellipsis;
  176. white-space: nowrap;
  177. word-wrap: normal;
  178. }
  179. .ac-legend-box {
  180. border-radius: 10px;
  181. margin-right: 3px;
  182. }
  183. .angular-charts-template table {
  184. margin-left: 15px !important;
  185. }
  186. /* top css stylesheet*/
  187. #top {
  188. background-color: #f5f5f5;
  189. height: 35px;
  190. line-height: 35px;
  191. z-index: 5;
  192. font: 12px/23px Tahoma, Arial, "\5B8B\4F53", sans-serif;
  193. color: #6c6c6c;
  194. }
  195. #top.navbar {
  196. min-height: 35px;
  197. border-bottom: 1px solid #eee;
  198. }
  199. #top ul>li>a {
  200. color: #6c6c6c;
  201. }
  202. #top .navbar-nav>li>a,#top .navbar-nav>li.brand {
  203. padding-top: 0;
  204. padding-bottom: 0;
  205. line-height: 35px;
  206. }
  207. #top ul.navbar-nav>li>a:hover,#top ul.navbar-nav>li>a:focus,#top ul.navbar-nav>li>a:hover *,#top ul.navbar-nav>li>a:focus *
  208. {
  209. color: #f40;
  210. }
  211. #top .dropdown .fa-angle-down {
  212. transition: transform .2s ease-in 0s;
  213. -webkit-transition: -webkit-transform .2s ease-in 0s;
  214. }
  215. #top .dropdown:hover .fa-angle-down {
  216. transform: rotate(180deg);
  217. -webkit-transform: rotate(180deg);
  218. filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2);
  219. }
  220. #top .dropdown:hover>.dropdown-menu {
  221. margin-top: -1px;
  222. min-width: 100%;
  223. font-size: 12px;
  224. }
  225. #top .dropdown-menu ul>li>h4 {
  226. font-size: 100%;
  227. font-weight: 700;
  228. color: #404040;
  229. }
  230. #top .dropdown-menu .nav-pills>li+li {
  231. margin-left: 0;
  232. }
  233. #top .dropdown-menu .nav-pills>li>a {
  234. padding: 5px 10px;
  235. }
  236. #top .dropdown-menu .pills>div {
  237. border-right: 1px solid #eee;
  238. padding: 5px 15px;
  239. }
  240. #top .dropdown-menu .pills>div:last-child {
  241. border-right: none;
  242. }
  243. #top .dropdown-menu .pills ul>li {
  244. padding: 2px;
  245. }
  246. #top .dropdown-menu .pills ul>li>a {
  247. color: #3c3c3c;
  248. }
  249. #top .dropdown-menu .pills ul>li:hover a {
  250. color: white;
  251. text-decoration: none;
  252. }
  253. #top .dropdown-menu .pills>div>h4 {
  254. font-family: "Microsoft YaHei", "Hiragino Sans GB";
  255. font-weight: 700;
  256. font-size: 17px;
  257. }
  258. #top .dropdown-menu .pills>div:nth-child(1) h4 {
  259. color: #f50;
  260. }
  261. #top .dropdown-menu .pills>div:nth-child(2) h4 {
  262. color: #a0b959;
  263. }
  264. #top .dropdown-menu .pills>div:nth-child(3) h4 {
  265. color: #df61ab;
  266. }
  267. #top .dropdown-menu .pills>div:nth-child(4) h4 {
  268. color: #52a0e5;
  269. }
  270. #top .dropdown-menu .pills>div:nth-child(5) h4 {
  271. color: #52a015;
  272. }
  273. #top .dropdown-menu .pills>div:nth-child(6) h4 {
  274. color: #b68571;
  275. }
  276. #top .dropdown-menu .pills ul>li>a:hover {
  277. color: #fff;
  278. }
  279. #top .dropdown-menu .pills>div:nth-child(1) ul>li>a:hover {
  280. background-color: #f50
  281. }
  282. #top .dropdown-menu .pills>div:nth-child(2) ul>li>a:hover {
  283. background-color: #a0b959
  284. }
  285. #top .dropdown-menu .pills>div:nth-child(3) ul>li>a:hover {
  286. background-color: #df61ab
  287. }
  288. #top .dropdown-menu .pills>div:nth-child(4) ul>li>a:hover {
  289. background-color: #52a0e5
  290. }
  291. #top .dropdown-menu .pills>div:nth-child(5) ul>li>a:hover {
  292. background-color: #52a015
  293. }
  294. #top .dropdown-menu .pills>div:nth-child(6) ul>li>a:hover {
  295. background-color: #b68571
  296. }
  297. /* header css stylesheet*/
  298. #header {
  299. color: #ffffff;
  300. z-index: 4;
  301. }
  302. #header a {
  303. font-family: "\5fae\8f6f\96c5\9ed1", sans-serif;
  304. }
  305. #header .navbar-nav>li>a {
  306. color: #ffffff;
  307. font-size: 16px;
  308. font-weight: 500;
  309. }
  310. #header.navbar-inverse {
  311. background-color: #56a022;
  312. border: none;
  313. }
  314. #header.navbar-inverse .navbar-brand {
  315. color: #ffffff;
  316. }
  317. #header.navbar-inverse .navbar-brand:hover,#header.navbar-inverse .navbar-brand:focus
  318. {
  319. color: #ffffff;
  320. background-color: transparent;
  321. }
  322. #header.navbar-inverse .navbar-text {
  323. color: #969696;
  324. }
  325. #header.navbar-inverse .navbar-nav>li>a {
  326. color: #ffffff;
  327. padding: 15px 20px;
  328. }
  329. #header.navbar-inverse .navbar-nav>li>a:hover,#header.navbar-inverse .navbar-nav>li>a:focus
  330. {
  331. color: #ffffff;
  332. background-color: #4b8b1e;
  333. }
  334. #header.navbar-inverse .navbar-nav>.active>a,#header.navbar-inverse .navbar-nav>.active>a:hover,#header.navbar-inverse .navbar-nav>.active>a:focus
  335. {
  336. color: #ffffff;
  337. background-color: #4b8b1e;
  338. }
  339. #header.navbar-inverse .navbar-nav>.disabled>a,#header.navbar-inverse .navbar-nav>.disabled>a:hover,#header.navbar-inverse .navbar-nav>.disabled>a:focus
  340. {
  341. color: #444444;
  342. background-color: transparent;
  343. }
  344. #header.navbar-inverse .navbar-toggle {
  345. border-color: #333333;
  346. }
  347. #header.navbar-inverse .navbar-toggle:hover,#header.navbar-inverse .navbar-toggle:focus
  348. {
  349. background-color: #333333;
  350. }
  351. #header.navbar-inverse .navbar-toggle .icon-bar {
  352. background-color: #ffffff;
  353. }
  354. #header.navbar-inverse .navbar-collapse,#header.navbar-inverse .navbar-form
  355. {
  356. border-color: #101010;
  357. }
  358. #header.navbar-inverse .navbar-nav>.open>a,#header.navbar-inverse .navbar-nav>.open>a:hover,#header.navbar-inverse .navbar-nav>.open>a:focus
  359. {
  360. background-color: #56a022;
  361. color: #ffffff;
  362. }
  363. #header.navbar-inverse .navbar-link {
  364. color: #777777;
  365. }
  366. #header.navbar-inverse .navbar-link:hover {
  367. color: #ffffff;
  368. }
  369. #header.navbar-inverse .btn-link {
  370. color: #777777;
  371. }
  372. #header.navbar-inverse .btn-link:hover,#header.navbar-inverse .btn-link:focus
  373. {
  374. color: #ffffff;
  375. }
  376. #header.navbar-inverse .btn-link[disabled]:hover,#header fieldset[disabled] .navbar-inverse .btn-link:hover,#header.navbar-inverse .btn-link[disabled]:focus,#header fieldset[disabled] .navbar-inverse .btn-link:focus
  377. {
  378. color: #444444;
  379. }
  380. #header.navbar-inverse .dropdown-menu>li>a {
  381. font-size: 14px;
  382. }
  383. #header.navbar-inverse .dropdown-menu>li>a:hover {
  384. background-color: #56a022;
  385. color: #ffffff;
  386. }
  387. #header .navbar-header .navbar-brand {
  388. background: url("../img/logo/ubtob.png") no-repeat;
  389. width: 195px;
  390. margin: 0
  391. }
  392. #header .dropdown:hover>.dropdown-menu {
  393. margin-top: 0;
  394. }
  395. /*body*/
  396. .body>.left {
  397. width: 196px;
  398. float: left;
  399. margin-right: 14px;
  400. background-color: #fff;
  401. border-right: 1px solid #ddd;
  402. }
  403. .body>.right {
  404. width: 930px;
  405. float: right;
  406. font-size: 12px;
  407. }
  408. .body ul {
  409. margin-bottom: 0;
  410. }
  411. .user {
  412. font-size: 12px;
  413. }
  414. .user .user-image {
  415. float: left;
  416. margin-top: 20px;
  417. margin-bottom: 20px;
  418. margin-left: 20px;
  419. height: 76px;
  420. cursor: pointer;
  421. }
  422. .user-image img {
  423. border-radius: 50%;
  424. border: 1px solid #ccc;
  425. width: 70px;
  426. height: 70px;
  427. }
  428. .user .user-name {
  429. float: right;
  430. width: 90px;
  431. margin-top: 35px;
  432. color: #333;
  433. }
  434. .user .user-lv {
  435. padding-left: 20px;
  436. clear: both;
  437. height: 40px;
  438. margin-bottom: 20px;
  439. }
  440. .user .user-count {
  441. display: table;
  442. width: 100%;
  443. table-layout: fixed;
  444. border-collapse: separate;
  445. background-color: #fbfbfb;
  446. padding: 18px 5px;
  447. border-top: 1px solid #e8e8e8;
  448. border-bottom: 1px solid #e8e8e8;
  449. }
  450. .user-count>li {
  451. display: table-cell;
  452. float: none;
  453. width: 1%;
  454. height: 50px;
  455. text-align: center;
  456. }
  457. .user-count
  458. >
  459. li
  460. :not
  461. (
  462. :last-child
  463. )
  464. {
  465. border-right
  466. :
  467. 1
  468. px
  469. solid
  470. #e8e8e8
  471. ;
  472. }
  473. .user-count .count {
  474. color: #56a022;
  475. font-size: 24px;
  476. line-height: 32px;
  477. font-family: Arial;
  478. }
  479. .use .use-label {
  480. line-height: 50px;
  481. border-bottom: 1px solid #e8e8e8;
  482. text-indent: 25px;
  483. position: relative;
  484. }
  485. .use-label>i {
  486. position: absolute;
  487. left: 30px;
  488. bottom: 0;
  489. width: 0;
  490. height: 0;
  491. border-color: transparent;
  492. border-style: solid;
  493. border-width: 0 4px 4px 4px;
  494. border-bottom-color: #ddd;
  495. }
  496. .use>ul {
  497. padding: 10px 0;
  498. border-bottom: 1px solid #e8e8e8;
  499. }
  500. .use>ul>li {
  501. padding: 8px 25px;
  502. }
  503. .left-nav>ul>li {
  504. text-indent: 35px;
  505. padding: 5px 15px 5px 0;
  506. }
  507. .use>ul>li:hover,.left-nav>ul>li:hover {
  508. background-color: #56a022;
  509. }
  510. .use>ul>li:hover>*,.left-nav>ul>li:hover>* {
  511. color: #fff;
  512. text-decoration: none
  513. }
  514. .icon-right {
  515. float: right;
  516. color: #888;
  517. line-height: 1.6
  518. }
  519. .left-nav {
  520. margin-top: 10px;
  521. padding-bottom: 10px;
  522. border-bottom: 1px solid #e8e8e8;
  523. }
  524. .left-nav.left-home {
  525. padding: 0;
  526. margin: 0;
  527. }
  528. .nav-home {
  529. height: 50px;
  530. line-height: 50px;
  531. cursor: pointer;
  532. }
  533. .nav-label {
  534. text-indent: 35px;
  535. height: 40px;
  536. line-height: 40px;
  537. color: #9ea9c0;
  538. cursor: pointer;
  539. position: relative;
  540. }
  541. .nav-label>i {
  542. position: absolute;
  543. left: 15px;
  544. top: 18px;
  545. width: 0;
  546. height: 0;
  547. border-color: transparent;
  548. border-style: solid;
  549. border-width: 5px 5px 0 5px;
  550. border-top-color: #9ea9c0;
  551. }
  552. .left-nav .icon-left {
  553. margin-left: 15px;
  554. margin-right: 10px;
  555. }
  556. .right .company {
  557. margin-bottom: 15px;
  558. margin-left: -14px;
  559. }
  560. .company .inner {
  561. line-height: 40px;
  562. height: 40px;
  563. padding-left: 12px;
  564. }
  565. .company .inner>div {
  566. float: left;
  567. margin-right: 3px;
  568. }
  569. .right .data-wrap {
  570. float: left;
  571. width: 685px;
  572. }
  573. .data-wrap .todo {
  574. height: 244px;
  575. margin-bottom: 15px;
  576. }
  577. .todo .todo-label {
  578. border-bottom: 1px solid #e8e8e8;
  579. height: 39px;
  580. line-height: 40px;
  581. }
  582. .todo .todo-label>li {
  583. float: left;
  584. margin-left: 140px;
  585. text-align: center;
  586. background-image: url("../img/all/line.png");
  587. background-repeat: no-repeat;
  588. background-position: 8px 32px;
  589. height: 55px;
  590. font-size: 14px;
  591. }
  592. .todo .todo-content {
  593. clear: both;
  594. }
  595. .todo .todo-content>ul {
  596. height: 85px;
  597. }
  598. .todo .todo-content a {
  599. color: #666;
  600. }
  601. .todo .todo-content a:hover,.todo .todo-content a:focus {
  602. color: #2a6496;
  603. }
  604. .todo
  605. .todo-content
  606. >
  607. ul
  608. :not
  609. (
  610. :last-child
  611. )
  612. {
  613. border-bottom
  614. :
  615. 1
  616. px
  617. dashed
  618. #e8e8e8
  619. ;
  620. margin-bottom
  621. :
  622. 20
  623. px
  624. ;
  625. }
  626. .todo-content .icon {
  627. margin-left: 20px;
  628. float: left;
  629. width: 60px;
  630. height: 60px;
  631. line-height: 60px;
  632. text-align: center;
  633. margin-top: 5px;
  634. color: #56a022;
  635. font-size: 16px;
  636. border-radius: 50%;
  637. border: 1px solid #56a022;
  638. }
  639. .todo-content .start {
  640. float: left;
  641. border-right: 1px solid #e8e8e8;
  642. height: 50px;
  643. width: 150px;
  644. margin-left: 20px;
  645. margin-top: 12px;
  646. }
  647. .todo-content .start li,.todo-content .doing li,.todo-content .end li {
  648. width: 100px;
  649. float: left;
  650. margin-left: 20px;
  651. margin-bottom: 10px;
  652. }
  653. .todo-content .doing {
  654. float: left;
  655. border-right: 1px solid #e8e8e8;
  656. height: 50px;
  657. width: 200px;
  658. margin-top: 12px;
  659. }
  660. .todo-content .end {
  661. width: 240px;
  662. float: left;
  663. margin-top: 12px;
  664. }
  665. .data-charts .chart:nth-child(2n+1) {
  666. border-right: 1px dashed #e8e8e8;
  667. }
  668. .right .feed-wrap {
  669. float: right;
  670. width: 230px;
  671. }
  672. .pane {
  673. margin-bottom: 15px;
  674. background-color: #fff;
  675. }
  676. .pane .pane-header {
  677. height: 39px;
  678. line-height: 39px;
  679. font-size: 14px;
  680. padding: 0 15px;
  681. border-bottom: 1px solid #e8e8e8;
  682. color: #333
  683. }
  684. .pane .pane-body {
  685. padding: 15px;
  686. }
  687. .pane.addon {
  688. height: 185px;
  689. text-align: center;
  690. line-height: 1.4;
  691. cursor: pointer;
  692. }
  693. .pane.addon .pane-body {
  694. padding-top: 60px;
  695. }
  696. .pane.addon i,.pane.addon span {
  697. display: block;
  698. }
  699. .notice .detail>li {
  700. clear: both;
  701. display: block;
  702. padding: 8px 10px 8px 15px;
  703. position: relative;
  704. }
  705. .notice .detail>li:before {
  706. position: absolute;
  707. left: 0;
  708. top: 5px;
  709. content: "."
  710. }
  711. .feed-wrap .service .detail>li {
  712. height: 28px;
  713. line-height: 28px;
  714. }
  715. .state-wrap {
  716. position: relative;
  717. height: 40px;
  718. line-height: 40px;
  719. padding: 0 20px;
  720. border-bottom: 1px solid #e8e8e8;
  721. font-size: 14px;
  722. }
  723. .state-wrap a:hover {
  724. text-decoration: none;
  725. }
  726. .state-wrap li {
  727. width: 100px;
  728. text-align: center;
  729. position: relative;
  730. }
  731. .state-wrap li.active {
  732. border-bottom: 2px solid #f40;
  733. }
  734. .state-wrap li.active a {
  735. color: #f40;
  736. }
  737. .state-wrap li em {
  738. font-style: normal;
  739. margin-left: 5px;
  740. color: #f40;
  741. }
  742. .state-wrap li:after {
  743. position: absolute;
  744. content: "|";
  745. margin-left: 20px;
  746. color: #eee
  747. }
  748. /*footer*/
  749. #footer {
  750. color: #f1f1f1;
  751. background-color: #b8b9b9;
  752. margin-top: 20px;
  753. padding: 20px 0;
  754. font-size: 12px;
  755. }
  756. #footer a {
  757. color: #f1f1f1;
  758. }
  759. #footer ul {
  760. margin: 0;
  761. }
  762. #footer .list-inline>li:not (:last-child ):after {
  763. margin-left: 15px;
  764. content: "|"
  765. }
  766. /*loading*/
  767. .loading {
  768. display: none;
  769. position: absolute;
  770. width: 100%;
  771. height: 300px;
  772. top: 0;
  773. left: 0;
  774. }
  775. .loading.in {
  776. display: block;
  777. }
  778. .loading.in>i {
  779. position: absolute;
  780. top: 50%;
  781. left: 50%;
  782. margin: -33px 0 0 -33px;
  783. background: url("../img/all/loading.gif") no-repeat center center;
  784. width: 66px;
  785. height: 66px;
  786. }
  787. /*sale */
  788. .sale .state {
  789. margin-left: 0;
  790. margin-bottom: 15px;
  791. }
  792. .sale .state .todo {
  793. padding: 30px 0 15px 0;
  794. border-right: 1px solid #e8e8e8;
  795. }
  796. .sale .state .todo>ul {
  797. margin: 0 auto;
  798. }
  799. .sale .state .todo>ul>li {
  800. width: 32%;
  801. height: 60px;
  802. border-left: 1px dashed #e6e6e6;
  803. text-align: center;
  804. position: relative;
  805. }
  806. .sale .state .todo>ul>li .title {
  807. margin-bottom: 5px;
  808. }
  809. .sale .state .todo>ul>li:nth-child(3n+1) {
  810. border-left: none;
  811. }
  812. .sale .state .level {
  813. padding: 15px 100px;
  814. color: #666;
  815. }
  816. .sale .sale-main .left {
  817. float: left;
  818. width: 50%;
  819. padding-right: 8px;
  820. }
  821. .sale .sale-main .right {
  822. float: right;
  823. width: 50%;
  824. padding-left: 8px;
  825. }