main.css 6.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382
  1. /*building SAAS 0.1*/
  2. /*bootstrap 初始化*/
  3. body {
  4. font-size: 0.9rem;
  5. }
  6. .dropdown-menu {
  7. font-size: 0.9rem;
  8. }
  9. /*自定义css*/
  10. .header {
  11. background: #e1e1e1;
  12. }
  13. .header .header-logo {
  14. background: #ff6501;
  15. color: #fff;
  16. float: left;
  17. padding-top: 0.25rem;
  18. padding-bottom: 0.25rem;
  19. margin-right: 1rem;
  20. font-size: 1.25rem;
  21. line-height: inherit;
  22. }
  23. .top-msg {
  24. position: fixed;
  25. top: 0;
  26. width: 100%;
  27. z-index: 999;
  28. }
  29. .in-1 {
  30. padding-left: 0rem !important;
  31. }
  32. .in-2 {
  33. padding-left: 1rem !important;
  34. }
  35. .in-3 {
  36. padding-left: 1.5rem !important;
  37. }
  38. .in-4 {
  39. padding-left: 2rem !important;
  40. }
  41. .in-5 {
  42. padding-left: 2.5rem !important;
  43. }
  44. .in-6 {
  45. padding-left: 3rem !important;
  46. }
  47. .main {
  48. position: relative;
  49. background: #f7f7f9;
  50. }
  51. .main-nav {
  52. position: absolute;
  53. text-align: center;
  54. z-index: 999;
  55. padding: 2px 0 0 2px;
  56. }
  57. .main-nav .nav a {
  58. display: block;
  59. width: 28px;
  60. text-align: center;
  61. line-height: 18px;
  62. color: #999;
  63. padding: 10px 0;
  64. border-right: 1px solid #ccc;
  65. }
  66. .main-nav .nav a:hover {
  67. background: #fff;
  68. color: #333;
  69. text-decoration: none;
  70. }
  71. .main-nav .nav a.active {
  72. border: 1px solid #ccc;
  73. border-right: 1px solid #fff;
  74. background: #fff;
  75. color: #333;
  76. }
  77. .content {
  78. background: #fff;
  79. }
  80. .tools-btn {
  81. height: 30px;
  82. line-height: 30px;
  83. }
  84. .toolsbar .tools-btn.btn:hover {
  85. background: #f7f7f9;
  86. }
  87. .main-side {
  88. border-right: 1px solid #ccc;
  89. overflow-y: auto;
  90. }
  91. .main-side .tab-bar {
  92. padding: 5px 10px;
  93. height: 38px;
  94. position: fixed;
  95. }
  96. .main-side .tab-content {
  97. margin-top: 38px;
  98. }
  99. .top-content,
  100. .fluid-content {
  101. overflow: hidden;
  102. border-bottom: 1px solid #ccc;
  103. }
  104. .warp-p2 {
  105. padding: 2px;
  106. }
  107. .bottom-content .nav,
  108. .top-content .nav {
  109. background: #f7f7f9;
  110. padding: 0 0 0 2px;
  111. }
  112. .bottom-content .nav-tabs .nav-link,
  113. .side-tabs .nav-tabs .nav-link,
  114. .top-content .nav-tabs .nav-link {
  115. border-radius: 0;
  116. padding: 0.2em 0.5em;
  117. }
  118. .side-tabs .nav-tabs .nav-item {
  119. z-index: 999;
  120. }
  121. .side-tabs .nav-tabs {
  122. border-bottom: none;
  123. margin-bottom: -1px;
  124. }
  125. .side-tabs .nav-tabs .nav-link {
  126. border-radius: 0;
  127. padding: 0em 0.5em;
  128. line-height: 30px;
  129. z-index: 999;
  130. }
  131. .bottom-content .nav-tabs .nav-link.active {
  132. border-top: 1px solid #f7f7f9;
  133. }
  134. .side-tabs .nav-tabs .nav-link.active {
  135. border-top: none;
  136. border-bottom: 1px solid #fff;
  137. }
  138. .side-tabs a.active,
  139. .sub-nav a.active {
  140. background: #ccc;
  141. }
  142. .poj-manage {
  143. background: #fff;
  144. }
  145. .slide-sidebar {
  146. border-left: 1px solid #e1e1e1;
  147. box-shadow: 0px 15px 15px rgba(0, 0, 0, 0.1);
  148. background: none repeat scroll 0% 0% #ffffff;
  149. overflow: hidden;
  150. position: absolute;
  151. right: 0px;
  152. top: 0;
  153. z-index: 999;
  154. width: 0px;
  155. }
  156. .new-msg {
  157. -webkit-animation: tada 1s infinite 0.2s ease both;
  158. -moz-animation: tada 1s infinite 0.2s ease both;
  159. }
  160. @-webkit-keyframes tada {
  161. 0% {
  162. -webkit-transform: scale(1);
  163. }
  164. 10%,
  165. 20% {
  166. -webkit-transform: scale(0.9) rotate(-3deg);
  167. }
  168. 30%,
  169. 50%,
  170. 70%,
  171. 90% {
  172. -webkit-transform: scale(1.1) rotate(3deg);
  173. }
  174. 40%,
  175. 60%,
  176. 80% {
  177. -webkit-transform: scale(1.1) rotate(-3deg);
  178. }
  179. 100% {
  180. -webkit-transform: scale(1) rotate(0);
  181. }
  182. }
  183. @-moz-keyframes tada {
  184. 0% {
  185. -moz-transform: scale(1);
  186. }
  187. 10%,
  188. 20% {
  189. -moz-transform: scale(0.9) rotate(-3deg);
  190. }
  191. 30%,
  192. 50%,
  193. 70%,
  194. 90% {
  195. -moz-transform: scale(1.1) rotate(3deg);
  196. }
  197. 40%,
  198. 60%,
  199. 80% {
  200. -moz-transform: scale(1.1) rotate(-3deg);
  201. }
  202. 100% {
  203. -moz-transform: scale(1) rotate(0);
  204. }
  205. }
  206. .has-danger {
  207. -webkit-animation: shake 1s 0.2s ease both;
  208. -moz-animation: shake 1s 0.2s ease both;
  209. animation: shake 1s 0.2s ease both;
  210. }
  211. @-webkit-keyframes shake {
  212. 0%,
  213. 100% {
  214. -webkit-transform: translateX(0);
  215. }
  216. 10%,
  217. 30%,
  218. 50%,
  219. 70%,
  220. 90% {
  221. -webkit-transform: translateX(-10px);
  222. }
  223. 20%,
  224. 40%,
  225. 60%,
  226. 80% {
  227. -webkit-transform: translateX(10px);
  228. }
  229. }
  230. @-moz-keyframes shake {
  231. 0%,
  232. 100% {
  233. -moz-transform: translateX(0);
  234. }
  235. 10%,
  236. 30%,
  237. 50%,
  238. 70%,
  239. 90% {
  240. -moz-transform: translateX(-10px);
  241. }
  242. 20%,
  243. 40%,
  244. 60%,
  245. 80% {
  246. -moz-transform: translateX(10px);
  247. }
  248. }
  249. @keyframes shake {
  250. 0%,
  251. 100% {
  252. transform: translateX(0);
  253. }
  254. 10%,
  255. 30%,
  256. 50%,
  257. 70%,
  258. 90% {
  259. transform: translateX(-10px);
  260. }
  261. 20%,
  262. 40%,
  263. 60%,
  264. 80% {
  265. transform: translateX(10px);
  266. }
  267. }
  268. .bottom-content {
  269. height: 370px;
  270. overflow: hidden;
  271. }
  272. .bottom-content .tab-content .main-data-bottom {
  273. height: 340px;
  274. overflow: auto;
  275. }
  276. .form-signin {
  277. max-width: 500px;
  278. margin: 150px auto;
  279. }
  280. .poj-list,
  281. .side-content {
  282. overflow: auto;
  283. }
  284. .poj-list span.poj-icon {
  285. padding-right: 10px;
  286. color: #ccc;
  287. }
  288. .print-toolsbar {
  289. padding: 5px;
  290. }
  291. .print-toolsbar .panel {
  292. display: inline-block;
  293. vertical-align: top;
  294. background: #f7f7f9;
  295. }
  296. .print-toolsbar .panel .panel-foot {
  297. text-align: center;
  298. font-size: 12px;
  299. }
  300. .print-list {
  301. border-right: 1px solid #ccc;
  302. }
  303. .print-list .form-list {
  304. overflow: auto;
  305. }
  306. .print-list .list-tools {
  307. height: 50px;
  308. padding: 10px 0;
  309. border-bottom: 1px solid #f2f2f2;
  310. }
  311. .pageContainer {
  312. background: #ededed;
  313. text-align: center;
  314. }
  315. .pageContainer .page {
  316. border: 9px solid transparent;
  317. display: inline-block;
  318. }
  319. .pageContainer .page img {
  320. width: inherit;
  321. height: inherit;
  322. }
  323. .codeList {
  324. max-height: 200px;
  325. overflow: auto;
  326. }
  327. .main-data-top,
  328. .main-data-bottom,
  329. .main-data,
  330. .main-data-h {
  331. overflow: auto;
  332. }
  333. .modal-fixed-height {
  334. height: 400px;
  335. overflow-y: auto;
  336. }
  337. .form-view {
  338. border-left: 1px solid #ccc;
  339. }
  340. .ztree {
  341. border-style: solid;
  342. border-width: 1px;
  343. border-color: #000;
  344. }
  345. .ztree-warp {
  346. height: 200px;
  347. overflow: auto;
  348. }
  349. .sub-button {
  350. position: sticky;
  351. bottom: 0;
  352. left: 0;
  353. }
  354. .valuationSelector {
  355. cursor: pointer;
  356. position: absolute;
  357. left: 105px;
  358. top: 38px;
  359. border: 1px solid #d9d9d9;
  360. display: none;
  361. z-index: 999;
  362. background-color: #fff;
  363. }
  364. .mutiSelector {
  365. width: 130px;
  366. margin: 0;
  367. padding: 0 10px;
  368. }
  369. .mutiSelector li {
  370. list-style: none;
  371. font-size: 16px;
  372. }
  373. .mutiSelector .checked {
  374. background-color: #0275d8;
  375. color: #fff;
  376. }
  377. .mutiSelector li:hover {
  378. background-color: #0275d8;
  379. color: #fff;
  380. cursor: pointer;
  381. }