index.css 15 KB

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