manage.css 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642
  1. ul,li{
  2. list-style: none;
  3. }
  4. .checkbox {
  5. padding-left: 20px;
  6. }
  7. .checkbox label {
  8. display: inline-block;
  9. position: relative;
  10. padding-left: 5px;
  11. }
  12. .checkbox label::before {
  13. content: "";
  14. display: inline-block;
  15. position: absolute;
  16. width: 17px;
  17. height: 17px;
  18. left: 0;
  19. top: 1px;
  20. margin-left: -20px;
  21. border: 1px solid #cccccc;
  22. border-radius: 3px;
  23. background-color: #fff;
  24. -webkit-transition: border 0.15s ease-in-out, color 0.15s ease-in-out;
  25. -o-transition: border 0.15s ease-in-out, color 0.15s ease-in-out;
  26. transition: border 0.15s ease-in-out, color 0.15s ease-in-out;
  27. }
  28. .checkbox label::after {
  29. display: inline-block;
  30. position: absolute;
  31. width: 16px;
  32. height: 16px;
  33. left: 0;
  34. top: 1px;
  35. margin-left: -20px;
  36. padding-left: 3px;
  37. padding-top: 1px;
  38. font-size: 11px;
  39. color: #555555;
  40. }
  41. .checkbox input[type="checkbox"] {
  42. opacity: 0;
  43. z-index: 1;
  44. }
  45. .checkbox input[type="checkbox"]:focus+label::before {
  46. outline: thin dotted;
  47. outline: 5px auto -webkit-focus-ring-color;
  48. outline-offset: -2px;
  49. }
  50. .checkbox input[type="checkbox"]:checked+label::after {
  51. font-family: 'FontAwesome';
  52. content: "\f00c";
  53. }
  54. .checkbox input[type="checkbox"]:disabled+label {
  55. opacity: 0.65;
  56. }
  57. .checkbox input[type="checkbox"]:disabled+label::before {
  58. background-color: #eeeeee;
  59. cursor: not-allowed;
  60. }
  61. .checkbox.checkbox-circle label::before {
  62. border-radius: 50%;
  63. }
  64. .checkbox.checkbox-inline {
  65. margin-top: 0;
  66. }
  67. .checkbox.checkbox-single label {
  68. height: 17px;
  69. }
  70. .checkbox-primary input[type="checkbox"]:checked+label::before {
  71. background-color: #428bca;
  72. border-color: #428bca;
  73. }
  74. .checkbox-primary input[type="checkbox"]:checked+label::after {
  75. color: #fff;
  76. }
  77. .checkbox-danger input[type="checkbox"]:checked+label::before {
  78. background-color: #d9534f;
  79. border-color: #d9534f;
  80. }
  81. .checkbox-danger input[type="checkbox"]:checked+label::after {
  82. color: #fff;
  83. }
  84. .checkbox-info input[type="checkbox"]:checked+label::before {
  85. background-color: #5bc0de;
  86. border-color: #5bc0de;
  87. }
  88. .checkbox-info input[type="checkbox"]:checked+label::after {
  89. color: #fff;
  90. }
  91. .checkbox-warning input[type="checkbox"]:checked+label::before {
  92. background-color: #f0ad4e;
  93. border-color: #f0ad4e;
  94. }
  95. .checkbox-warning input[type="checkbox"]:checked+label::after {
  96. color: #fff;
  97. }
  98. .checkbox-success input[type="checkbox"]:checked+label::before {
  99. background-color: #5cb85c;
  100. border-color: #5cb85c;
  101. }
  102. .checkbox-success input[type="checkbox"]:checked+label::after {
  103. color: #fff;
  104. }
  105. .radio {
  106. padding-left: 20px;
  107. }
  108. .radio label {
  109. display: inline-block;
  110. position: relative;
  111. padding-left: 5px;
  112. }
  113. .radio label::before {
  114. content: "";
  115. display: inline-block;
  116. position: absolute;
  117. width: 17px;
  118. height: 17px;
  119. left: 0;
  120. top: 2px;
  121. margin-left: -20px;
  122. border: 1px solid #cccccc;
  123. border-radius: 50%;
  124. background-color: #fff;
  125. -webkit-transition: border 0.15s ease-in-out;
  126. -o-transition: border 0.15s ease-in-out;
  127. transition: border 0.15s ease-in-out;
  128. }
  129. .radio label::after {
  130. display: inline-block;
  131. position: absolute;
  132. content: " ";
  133. width: 11px;
  134. height: 11px;
  135. left: 3px;
  136. top: 5px;
  137. margin-left: -20px;
  138. border-radius: 50%;
  139. background-color: #555555;
  140. -webkit-transform: scale(0, 0);
  141. -ms-transform: scale(0, 0);
  142. -o-transform: scale(0, 0);
  143. transform: scale(0, 0);
  144. -webkit-transition: -webkit-transform 0.1s cubic-bezier(0.8, -0.33, 0.2, 1.33);
  145. -moz-transition: -moz-transform 0.1s cubic-bezier(0.8, -0.33, 0.2, 1.33);
  146. -o-transition: -o-transform 0.1s cubic-bezier(0.8, -0.33, 0.2, 1.33);
  147. transition: transform 0.1s cubic-bezier(0.8, -0.33, 0.2, 1.33);
  148. }
  149. .radio input[type="radio"] {
  150. opacity: 0;
  151. z-index: 1;
  152. }
  153. .radio input[type="radio"]:focus+label::before {
  154. outline: thin dotted;
  155. outline: 5px auto -webkit-focus-ring-color;
  156. outline-offset: -2px;
  157. }
  158. .radio input[type="radio"]:checked+label::after {
  159. -webkit-transform: scale(1, 1);
  160. -ms-transform: scale(1, 1);
  161. -o-transform: scale(1, 1);
  162. transform: scale(1, 1);
  163. }
  164. .radio input[type="radio"]:disabled+label {
  165. opacity: 0.65;
  166. }
  167. .radio input[type="radio"]:disabled+label::before {
  168. cursor: not-allowed;
  169. }
  170. .radio.radio-inline {
  171. margin-top: 0;
  172. }
  173. .radio.radio-single label {
  174. height: 17px;
  175. }
  176. .radio-primary input[type="radio"]+label::after {
  177. background-color: #428bca;
  178. }
  179. .radio-primary input[type="radio"]:checked+label::before {
  180. border-color: #428bca;
  181. }
  182. .radio-primary input[type="radio"]:checked+label::after {
  183. background-color: #428bca;
  184. }
  185. .radio-danger input[type="radio"]+label::after {
  186. background-color: #d9534f;
  187. }
  188. .radio-danger input[type="radio"]:checked+label::before {
  189. border-color: #d9534f;
  190. }
  191. .radio-danger input[type="radio"]:checked+label::after {
  192. background-color: #d9534f;
  193. }
  194. .radio-info input[type="radio"]+label::after {
  195. background-color: #5bc0de;
  196. }
  197. .radio-info input[type="radio"]:checked+label::before {
  198. border-color: #5bc0de;
  199. }
  200. .radio-info input[type="radio"]:checked+label::after {
  201. background-color: #5bc0de;
  202. }
  203. .radio-warning input[type="radio"]+label::after {
  204. background-color: #f0ad4e;
  205. }
  206. .radio-warning input[type="radio"]:checked+label::before {
  207. border-color: #f0ad4e;
  208. }
  209. .radio-warning input[type="radio"]:checked+label::after {
  210. background-color: #f0ad4e;
  211. }
  212. .radio-success input[type="radio"]+label::after {
  213. background-color: #5cb85c;
  214. }
  215. .radio-success input[type="radio"]:checked+label::before {
  216. border-color: #5cb85c;
  217. }
  218. .radio-success input[type="radio"]:checked+label::after {
  219. background-color: #5cb85c;
  220. }
  221. .border-none {
  222. border: none;
  223. }
  224. .overflow-hidden {
  225. overflow: hidden;
  226. }
  227. .font-black{
  228. color: #333;
  229. }
  230. .opacity {
  231. position: fixed;
  232. top: 0;
  233. left: 0;
  234. z-index: 100000;
  235. width: 100%;
  236. height: 100%;
  237. display: none;
  238. font-family: "Helvetica Neue", "Hiragino Sans GB", "Microsoft YaHei", "\9ED1\4F53", Arial, sans-serif;
  239. }
  240. .opacity .bg {
  241. position: absolute;
  242. top: 0;
  243. left: 0;
  244. width: 100%;
  245. height: 100%;
  246. opacity: 0.7;
  247. filter: alpha(opacity=70);
  248. background: #000;
  249. }
  250. .opacity .size {
  251. position: absolute;
  252. height: 30px;
  253. width: 100%;
  254. top: 50%;
  255. margin-top: -15px;
  256. text-align: center;
  257. }
  258. .opacity .size span {
  259. display: inline-block;
  260. color: #fff;
  261. font-size: 20px;
  262. line-break: 30px;
  263. transition: all 0.2s linear;
  264. transform: translate(0, 0);
  265. }
  266. .opacity .size span.active {
  267. transform: translate(0, -10px);
  268. }
  269. /* 分页 */
  270. .st-pagination-box {
  271. float: right;
  272. margin: 10px 0;
  273. }
  274. .st-page {
  275. display: inline-block;
  276. font-size: 12px;
  277. }
  278. .st-page>p>a {
  279. color: #337ab7;
  280. }
  281. .st-page>p>a:hover {
  282. color: red;
  283. }
  284. .st-pagination {
  285. float: left;
  286. display: inline-block;
  287. padding-right: 10px;
  288. width: auto;
  289. margin-left: 10px;
  290. }
  291. .st-pagination li {
  292. display: inline;
  293. overflow: hidden;
  294. }
  295. .st-pagination li a {
  296. border-radius: 4px;
  297. color: #333;
  298. margin-right: 6px;
  299. font-size: 12px;
  300. font-weight: 300;
  301. -webkit-transition: all .2s linear;
  302. -o-transition: all .2s linear;
  303. transition: all .2s linear;
  304. }
  305. .st-pagination li a.active,.st-pagination li a.active:hover{
  306. background-color: #2d8cf0;
  307. border-color: #2d8cf0;
  308. color:#fff;
  309. }
  310. .st-pagination li a:hover {
  311. border-color: #2d8cf0;
  312. color:#2d8cf0;
  313. }
  314. .st-pagination>li>a, .st-pagination>li>span {
  315. position: relative;
  316. float: left;
  317. padding: 6px 12px;
  318. margin-left: -1px;
  319. line-height: 1.42857143;
  320. /*color: #337ab7;*/
  321. text-decoration: none;
  322. background-color: #fff;
  323. border:1px solid #e6e6e6;
  324. }
  325. .st-pagination-box p {
  326. float: left;
  327. height: 32px;
  328. line-height: 32px;
  329. color: #333;
  330. font-size: 12px;
  331. font-weight: 300;
  332. }
  333. .st-pagination-box p.total{
  334. border: 1px solid #2d8cf0;
  335. border-radius: 4px;
  336. padding-left:10px;
  337. padding-right: 10px;
  338. color: #2d8cf0;
  339. }
  340. .st-pagination-box input {
  341. float: left;
  342. width: 30px;
  343. height: 28px;
  344. line-height: 28px;
  345. border: 1px solid #e6e6e6;
  346. text-align: center;
  347. color: #999;
  348. margin-top: 2px;
  349. }
  350. .nav-radio-group{
  351. margin-bottom: 15px;
  352. }
  353. .nav-radio-group .nav-radio-item:first-child{
  354. border-radius: 4px 0 0 4px;
  355. /*border-left: 1px solid #dddee1;*/
  356. }
  357. .nav-radio-group .nav-radio-item:last-child{
  358. border-radius: 0 4px 4px 0;
  359. }
  360. .nav-radio-group .nav-radio-item{
  361. display: inline-block;
  362. height: 32px;
  363. line-height: 30px;
  364. padding: 0 16px;
  365. font-size: 12px;
  366. color: #495060;
  367. transition: all .2s ease-in-out;
  368. cursor: pointer;
  369. border: 1px solid #dddee1;
  370. background: #fff;
  371. position: relative;
  372. margin-right: -1px;
  373. }
  374. .nav-radio-group .nav-radio-item.active{
  375. border: 1px solid #2d8cf0;
  376. color: #2d8cf0;
  377. z-index: 1;
  378. }
  379. .nav-radio-group .nav-radio-item:hover{
  380. position: relative;
  381. color: #2d8cf0;
  382. }
  383. .nav-radio-content{
  384. padding: 15px;
  385. border-radius: 4px;
  386. border: 1px solid #eee;
  387. }
  388. /* .nav-radio-content > div{
  389. display: none;
  390. } */
  391. .nav-radio-content > div.active{
  392. display: block;
  393. }
  394. .tip{
  395. color: #999;
  396. text-align: right;
  397. padding: 10px 0;
  398. }
  399. html,body{
  400. background:#fafafa;
  401. }
  402. tbody >tr>td{
  403. font-size: 13px;
  404. }
  405. #jedatebox{
  406. z-index:12009 !important;
  407. }
  408. #outer{
  409. background: #fff;
  410. border-radius: 6px;
  411. border: 1px solid #eee;
  412. }
  413. .page-inner-header{
  414. margin-bottom: 15px;
  415. border-bottom: 1px solid #eee;
  416. padding: 10px;
  417. }
  418. .page-inner-body{
  419. margin-bottom: 15px;
  420. }
  421. .page-inner-header .caption{
  422. font-size: 16px;
  423. line-height: 28px;
  424. }
  425. header{
  426. height :60px;
  427. border-bottom: 1px solid #eee;
  428. position: fixed;
  429. z-index: 10;
  430. top:0;
  431. left: 0;
  432. width: 100%;
  433. background: #fff;
  434. padding: 0 20px;
  435. box-shadow: 0 1px 2px rgba(0,0,0,.2);
  436. }
  437. header .actions{
  438. float: right;
  439. margin-top:16px;
  440. }
  441. .page-container{
  442. padding-top: 70px;
  443. padding-bottom: 10px;
  444. height: 100%;
  445. }
  446. .page-container .page-content-wrapper{
  447. height: 100%;
  448. overflow: auto !important;
  449. }
  450. .page-container .page-content{
  451. padding-left: 220px;
  452. overflow: hidden;
  453. position: relative;
  454. min-height: 100%;
  455. }
  456. .page-container .page-content .slidbar-menu{
  457. position: absolute;
  458. left:0;
  459. top:0;
  460. padding: 10px 0;
  461. width: 210px;
  462. background: #fff;
  463. border-radius: 6px;
  464. border: 1px solid #eee;
  465. }
  466. .page-container .page-content .slidbar-menu li{
  467. padding: 12px 20px;
  468. }
  469. .page-container .page-content .slidbar-menu li a{
  470. display:inline-block;
  471. width:100%;
  472. }
  473. .page-container .page-content .slidbar-menu li:hover{
  474. background: #f2f6f9;
  475. color: #5b9bd1;
  476. }
  477. .page-container .page-content .slidbar-menu li.active{
  478. background: #f2f6f9;
  479. color: #5b9bd1;
  480. }
  481. .page-container .page-content .slidbar-menu li .slidebar-childs{
  482. margin-top: 10px;
  483. }
  484. .nav-title{
  485. color: #57a3f3;
  486. padding: 0 15px;
  487. position: relative;
  488. margin-bottom: 15px;
  489. }
  490. .nav-title .btn{
  491. margin-right:10px;
  492. }
  493. .border-1{
  494. border: 1px solid #dfdfdf;
  495. }
  496. .border-title{
  497. font-size: 16px;
  498. font-weight: 400;
  499. font-style: normal;
  500. line-height: 44px;
  501. background-color: #ebebeb;
  502. padding: 0 32px;
  503. }
  504. .nav-title:before{
  505. height: 100%;
  506. width: 3px;
  507. position: absolute;
  508. left: 0;
  509. top:0;
  510. content: '';
  511. background: #57a3f3;
  512. }
  513. .display-inlineBlock{
  514. display: inline-block;
  515. vertical-align: middle;
  516. margin-right: 15px;
  517. }
  518. img{
  519. display: block;
  520. width: 100%;
  521. }
  522. .font-sm{
  523. transform: scale(.8);
  524. display: inline-block;
  525. margin-left: -5px;
  526. margin-right: -5px;
  527. }
  528. .table tbody tr.active td{
  529. /* background: rgba(45,140,240,.9) !important; */
  530. color: #fff !important;
  531. }
  532. .compact-form{
  533. display: inline-block;
  534. position: relative;
  535. }
  536. .compact-form > label{
  537. vertical-align: middle;
  538. margin-bottom: 0;
  539. font-size: 14px;
  540. text-align: center;
  541. position: absolute;
  542. left: 0;
  543. top: 6px;
  544. }
  545. .compact-form.sm{
  546. padding-left: 60px !important;
  547. }
  548. .compact-form.at{
  549. padding-left: 85px !important;
  550. }
  551. .compact-form.lg{
  552. padding-left: 110px !important;
  553. }
  554. /** font-color **/
  555. .color-tip{color: #a5a5a5;}
  556. .color-vice{color: #888;}
  557. .color-deep-blue{color: #003399;}
  558. .color-white{color:#fff;}
  559. .color-active{color:#FF6666;}
  560. .color-blue{color: #409EFF}
  561. .color-success{color: #67C23A}
  562. .color-wraning{color: #E6A23C}
  563. .color-danger{color: #F56C6C}
  564. .color-info{color: #909399}
  565. /* .compact-form .w150{
  566. width: 150px !important;
  567. display: inline-block !important;
  568. vertical-align: middle !important;
  569. } */