yvanui.css 35 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812
  1. /*--------------------加载start--------------------*/
  2. .loading-wrap {
  3. position: absolute;
  4. top: 0;
  5. right: 0;
  6. bottom: 0;
  7. left: 0;
  8. background: #fff;
  9. opacity: 1.0;
  10. filter: Alpha(opacity=60);
  11. /* IE8 以及更早的浏览器 */
  12. z-index: 9999;
  13. }
  14. .loading-content {
  15. position: fixed;
  16. top: 50%;
  17. left: 50%;
  18. margin-top: -41.5px;
  19. margin-left: -41.5px;
  20. width: 83px;
  21. height: 83px;
  22. / / background: url("images/loading-img.png") no-repeat center center;
  23. }
  24. .loading-round {
  25. position: absolute;
  26. top: 2px;
  27. left: 2px;
  28. width: 81px;
  29. height: 81px;
  30. background: url("images/loading-bg.png") no-repeat center center;
  31. }
  32. .loading-dot {
  33. width: 83px;
  34. height: 83px;
  35. / / background: url("images/loading-dot.png") no-repeat center center;
  36. }
  37. .loading-round, .loading-dot {
  38. animation: spin 1s infinite linear;
  39. -webkit-animation: spin 1s infinite linear;
  40. -moz-animation: spin 1s infinite linear;
  41. -ms-animation: spin 1s infinite linear;
  42. -o-animation: spin 1s infinite linear;
  43. }
  44. /*
  45. .spinner {
  46. position: absolute;
  47. top: 50%;
  48. left: 50%;
  49. margin-top: -20px;
  50. margin-left: -20px;
  51. width: 40px;
  52. height: 40px;
  53. }
  54. */
  55. .container1 > div, .container2 > div, .container3 > div {
  56. width: 12px;
  57. height: 12px;
  58. background-color: #333;
  59. border-radius: 100%;
  60. position: absolute;
  61. -webkit-animation: bouncedelay 1.2s infinite ease-in-out;
  62. animation: bouncedelay 1.2s infinite ease-in-out;
  63. -webkit-animation-fill-mode: both;
  64. animation-fill-mode: both;
  65. }
  66. .spinner {
  67. line-height: 30px;
  68. }
  69. .spinner input {
  70. height: 30px !important;
  71. line-height: 30px !important;
  72. }
  73. /* .spinner .spinner-container {
  74. position: absolute;
  75. width: 100%;
  76. height: 100%;
  77. } */
  78. .container2 {
  79. -webkit-transform: rotateZ(45deg);
  80. transform: rotateZ(45deg);
  81. }
  82. .container3 {
  83. -webkit-transform: rotateZ(90deg);
  84. transform: rotateZ(90deg);
  85. }
  86. .circle1 {
  87. top: 0;
  88. left: 0;
  89. }
  90. .circle2 {
  91. top: 0;
  92. right: 0;
  93. }
  94. .circle3 {
  95. right: 0;
  96. bottom: 0;
  97. }
  98. .circle4 {
  99. left: 0;
  100. bottom: 0;
  101. }
  102. .container2 .circle1 {
  103. -webkit-animation-delay: -1.1s;
  104. animation-delay: -1.1s;
  105. }
  106. .container3 .circle1 {
  107. -webkit-animation-delay: -1.0s;
  108. animation-delay: -1.0s;
  109. }
  110. .container1 .circle2 {
  111. -webkit-animation-delay: -0.9s;
  112. animation-delay: -0.9s;
  113. }
  114. .container2 .circle2 {
  115. -webkit-animation-delay: -0.8s;
  116. animation-delay: -0.8s;
  117. }
  118. .container3 .circle2 {
  119. -webkit-animation-delay: -0.7s;
  120. animation-delay: -0.7s;
  121. }
  122. .container1 .circle3 {
  123. -webkit-animation-delay: -0.6s;
  124. animation-delay: -0.6s;
  125. }
  126. .container2 .circle3 {
  127. -webkit-animation-delay: -0.5s;
  128. animation-delay: -0.5s;
  129. }
  130. .container3 .circle3 {
  131. -webkit-animation-delay: -0.4s;
  132. animation-delay: -0.4s;
  133. }
  134. .container1 .circle4 {
  135. -webkit-animation-delay: -0.3s;
  136. animation-delay: -0.3s;
  137. }
  138. .container2 .circle4 {
  139. -webkit-animation-delay: -0.2s;
  140. animation-delay: -0.2s;
  141. }
  142. .container3 .circle4 {
  143. -webkit-animation-delay: -0.1s;
  144. animation-delay: -0.1s;
  145. }
  146. @-webkit-keyframes bouncedelay {
  147. 0%, 80%, 100% {
  148. -webkit-transform: scale(0.0)
  149. }
  150. 40% {
  151. -webkit-transform: scale(1.0)
  152. }
  153. }
  154. @keyframes bouncedelay {
  155. 0%, 80%, 100% {
  156. transform: scale(0.0);
  157. -webkit-transform: scale(0.0);
  158. }
  159. 40% {
  160. transform: scale(1.0);
  161. -webkit-transform: scale(1.0);
  162. }
  163. }
  164. .collapseMenu {
  165. width: 30px;
  166. }
  167. @-webkit-keyframes spin {
  168. from {
  169. -webkit-transform: rotate(0deg);
  170. }
  171. to {
  172. -webkit-transform: rotate(360deg);
  173. }
  174. }
  175. @-moz-keyframes spin {
  176. from {
  177. -moz-transform: rotate(0deg);
  178. }
  179. to {
  180. -moz-transform: rotate(360deg);
  181. }
  182. }
  183. @-ms-keyframes spin {
  184. from {
  185. -ms-transform: rotate(0deg);
  186. }
  187. to {
  188. -ms-transform: rotate(360deg);
  189. }
  190. }
  191. @-o-keyframes spin {
  192. from {
  193. -o-transform: rotate(0deg);
  194. }
  195. to {
  196. -o-transform: rotate(360deg);
  197. }
  198. }
  199. @keyframes spin {
  200. from {
  201. transform: rotate(0deg);
  202. }
  203. to {
  204. transform: rotate(360deg);
  205. }
  206. }
  207. /*--------------------加载end--------------------*/
  208. html, body {
  209. height: 100%;
  210. }
  211. body span {
  212. /*font-family:verdana,helvetica,arial,sans-serif;*/
  213. /*禁止选择文本*/
  214. -webkit-touch-callout: none;
  215. -webkit-user-select: none;
  216. -khtml-user-select: none;
  217. -moz-user-select: none;
  218. -ms-user-select: none;
  219. user-select: none;
  220. }
  221. a, a:link, a:visited, a:hover, a:active {
  222. text-decoration: none;
  223. cursor: pointer;
  224. text-decoration: blink;
  225. outline: none;
  226. }
  227. select, input, label, button, a, a:link, a:visited, a:hover, a:active, a:focus, *:focus {
  228. outline: none;
  229. noFocusLine: expression(this.onFocus=this.blur());
  230. }
  231. a, img, form {
  232. border: 0;
  233. }
  234. html, body, a, a:link, a:visited, a:hover, a:active, select, input, label, button, textarea, h1, h2, h3, h4, h5, h6 {
  235. font-family: Arial, "Microsoft YaHei", "微软雅黑";
  236. font-style: normal;
  237. font-size: 12px;
  238. color: #3c3c3c;
  239. }
  240. html, body, a, a:link, a:visited, a:hover, a:active, select, input, label, button, textarea, h1, h2, h3, h4, h5, h6 {
  241. font-family: "微软雅黑" !important;
  242. font-style: normal;
  243. font-size: 12px;
  244. color: #3c3c3c;
  245. }
  246. .ui-widget {
  247. font-family: "微软雅黑" !important;
  248. }
  249. dl, dt, dd, ul, li, ol, p, button, input, h1, h2, h3, h4, h5, h6 {
  250. list-style: none;
  251. height: auto;
  252. border: 0 none;
  253. }
  254. html, body, dl, dt, dd, ul, li, ol, p, input, textarea, button, form, h1, h2, h3, h4, h5, h6 {
  255. padding: 0;
  256. margin: 0;
  257. }
  258. select, input, label, button {
  259. vertical-align: middle;
  260. }
  261. select, input, label, button, textarea, form, pre, div {
  262. /*允许选择文本*/
  263. -webkit-touch-callout: text;
  264. -webkit-user-select: text;
  265. -khtml-user-select: text;
  266. -moz-user-select: text;
  267. -ms-user-select: text;
  268. user-select: text;
  269. }
  270. .messager-body .panel-body .panel-body-noborder .window-body {
  271. /*允许选择文本*/
  272. -webkit-touch-callout: text;
  273. -webkit-user-select: text;
  274. -khtml-user-select: text;
  275. -moz-user-select: text;
  276. -ms-user-select: text;
  277. user-select: text;
  278. }
  279. h1 {
  280. font-size: 36px;
  281. }
  282. h2 {
  283. font-size: 30px;
  284. }
  285. h3 {
  286. font-size: 24px;
  287. }
  288. h4 {
  289. font-size: 18px;
  290. }
  291. h5 {
  292. font-size: 14px;
  293. }
  294. h6 {
  295. font-size: 12px;
  296. }
  297. h1 small, h2 small, h3 small, h4 small, h5 small, h6 small {
  298. color: #777;
  299. font-size: 65%;
  300. font-weight: normal;
  301. }
  302. .mark, mark {
  303. /*高亮*/
  304. padding: .2em;
  305. background: #ff0;
  306. }
  307. s, strike, del {
  308. /*删除线*/
  309. text-decoration: line-through;
  310. }
  311. u, ins {
  312. /*下划线*/
  313. text-decoration: underline;
  314. }
  315. i, cite, em, var, address, dfn {
  316. /*斜体*/
  317. font-style: italic;
  318. }
  319. .hide {
  320. display: none;
  321. }
  322. @font-face {
  323. font-family: "iconfont";
  324. src: url('iconfont/iconfont.eot?t=1489857474667');
  325. /* IE9*/
  326. src: url('iconfont/iconfont.eot?t=1489857474667#iefix') format('embedded-opentype'), /* IE6-IE8 */ url('iconfont/iconfont.woff?t=1489857474667') format('woff'), /* chrome, firefox */ url('iconfont/iconfont.ttf?t=1489857474667') format('truetype'), /* chrome, firefox, opera, Safari, Android, iOS 4.2+*/ url('iconfont/iconfont.svg?t=1489857474667#iconfont') format('svg');
  327. /* iOS 4.1- */
  328. }
  329. .iconfont {
  330. font-family: "iconfont" !important;
  331. font-size: 14px;
  332. font-style: normal;
  333. -webkit-font-smoothing: antialiased;
  334. -moz-osx-font-smoothing: grayscale;
  335. }
  336. .table {
  337. width: 100%;
  338. background: #FFFFFF;
  339. margin: 1em 0em;
  340. border: 1px solid rgba(34, 36, 38, 0.15);
  341. box-shadow: none;
  342. border-radius: 0.28571429rem;
  343. text-align: left;
  344. color: rgba(0, 0, 0, 0.87);
  345. border-collapse: separate;
  346. border-spacing: 0px;
  347. }
  348. .table:first-child {
  349. margin-top: 0em;
  350. }
  351. .table:last-child {
  352. margin-bottom: 0em;
  353. }
  354. .table th, .table td {
  355. -webkit-transition: background 0.1s ease, color 0.1s ease;
  356. transition: background 0.1s ease, color 0.1s ease;
  357. }
  358. .table thead {
  359. box-shadow: none;
  360. }
  361. .table thead th {
  362. cursor: auto;
  363. background: #F9FAFB;
  364. text-align: inherit;
  365. color: rgba(0, 0, 0, 0.87);
  366. padding: 0.92857143em 0.78571429em;
  367. vertical-align: inherit;
  368. font-style: none;
  369. font-weight: bold;
  370. text-transform: none;
  371. border-bottom: 1px solid rgba(34, 36, 38, 0.1);
  372. border-left: none;
  373. }
  374. .table thead tr > th:first-child {
  375. border-left: none;
  376. }
  377. .table thead tr:first-child > th:first-child {
  378. border-radius: 0.28571429rem 0em 0em 0em;
  379. }
  380. .table thead tr:first-child > th:last-child {
  381. border-radius: 0em 0.28571429rem 0em 0em;
  382. }
  383. .table thead tr:first-child > th:only-child {
  384. border-radius: 0.28571429rem 0.28571429rem 0em 0em;
  385. }
  386. .table tfoot {
  387. box-shadow: none;
  388. }
  389. .table tfoot th {
  390. cursor: auto;
  391. border-top: 1px solid rgba(34, 36, 38, 0.15);
  392. background: #F9FAFB;
  393. text-align: inherit;
  394. color: rgba(0, 0, 0, 0.87);
  395. padding: 0.78571429em 0.78571429em;
  396. vertical-align: middle;
  397. font-style: normal;
  398. font-weight: normal;
  399. text-transform: none;
  400. }
  401. .table tfoot tr > th:first-child {
  402. border-left: none;
  403. }
  404. .table tfoot tr:first-child > th:first-child {
  405. border-radius: 0em 0em 0em 0.28571429rem;
  406. }
  407. .table tfoot tr:first-child > th:last-child {
  408. border-radius: 0em 0em 0.28571429rem 0em;
  409. }
  410. .table tfoot tr:first-child > th:only-child {
  411. border-radius: 0em 0em 0.28571429rem 0.28571429rem;
  412. }
  413. /* Table Row */
  414. .table tr td {
  415. border-top: 1px solid rgba(34, 36, 38, 0.1);
  416. }
  417. .table tr:first-child td {
  418. border-top: none;
  419. }
  420. .table td {
  421. padding: 0.78571429em 0.78571429em;
  422. text-align: inherit;
  423. }
  424. .table-structured.table {
  425. border-collapse: collapse;
  426. }
  427. .table-structured.table thead th {
  428. border-left: none;
  429. border-right: none;
  430. }
  431. .table-structured.sortable.table thead th {
  432. border-left: 1px solid rgba(34, 36, 38, 0.15);
  433. border-right: 1px solid rgba(34, 36, 38, 0.15);
  434. }
  435. .table-structured.basic.table th {
  436. border-left: none;
  437. border-right: none;
  438. }
  439. .table-structured.table-celled.table tr th, .table-structured.table-celled.table tr td {
  440. border-left: 1px solid rgba(34, 36, 38, 0.1);
  441. border-right: 1px solid rgba(34, 36, 38, 0.1);
  442. }
  443. .table-definition.table thead:not(.full-width) th:first-child {
  444. pointer-events: none;
  445. background: transparent;
  446. font-weight: normal;
  447. color: rgba(0, 0, 0, 0.4);
  448. box-shadow: -1px -1px 0px 1px #FFFFFF;
  449. }
  450. .table-definition.table tfoot:not(.full-width) th:first-child {
  451. pointer-events: none;
  452. background: transparent;
  453. font-weight: rgba(0, 0, 0, 0.4);
  454. color: normal;
  455. box-shadow: 1px 1px 0px 1px #FFFFFF;
  456. }
  457. .table-celled.table-definition.table thead:not(.full-width) th:first-child {
  458. box-shadow: 0px -1px 0px 1px #FFFFFF;
  459. }
  460. .table-celled.table-definition.table tfoot:not(.full-width) th:first-child {
  461. box-shadow: 0px 1px 0px 1px #FFFFFF;
  462. }
  463. .table-definition.table tr td:first-child:not(.ignored), .table-definition.table tr td.table-definition {
  464. background: rgba(0, 0, 0, 0.03);
  465. font-weight: bold;
  466. color: rgba(0, 0, 0, 0.95);
  467. text-transform: '';
  468. box-shadow: '';
  469. text-align: '';
  470. font-size: 1em;
  471. padding-left: '';
  472. padding-right: '';
  473. }
  474. .table-definition.table thead:not(.full-width) th:nth-child(2) {
  475. border-left: 1px solid rgba(34, 36, 38, 0.15);
  476. }
  477. .table-definition.table tfoot:not(.full-width) th:nth-child(2) {
  478. border-left: 1px solid rgba(34, 36, 38, 0.15);
  479. }
  480. .table-definition.table td:nth-child(2) {
  481. border-left: 1px solid rgba(34, 36, 38, 0.15);
  482. }
  483. .table-celled.table tr th, .table-celled.table tr td {
  484. border-left: 1px solid rgba(34, 36, 38, 0.1);
  485. }
  486. .table-celled.table tr th:first-child, .table-celled.table tr td:first-child {
  487. border-left: none;
  488. }
  489. .table-striped.table > tr:nth-child(2n), .table-striped.table tbody tr:nth-child(2n) {
  490. background-color: rgba(0, 0, 50, 0.02);
  491. }
  492. .inverted.table-striped.table > tr:nth-child(2n), .inverted.table-striped.table tbody tr:nth-child(2n) {
  493. background-color: rgba(255, 255, 255, 0.05);
  494. }
  495. .table-striped.selectable.selectable.selectable.table tbody tr.active:hover {
  496. background: #EFEFEF !important;
  497. color: rgba(0, 0, 0, 0.95) !important;
  498. }
  499. .table-basic.table {
  500. background: transparent;
  501. border: 1px solid rgba(34, 36, 38, 0.15);
  502. box-shadow: none;
  503. }
  504. .table-basic.table thead, .table-basic.table tfoot {
  505. box-shadow: none;
  506. }
  507. .table-basic.table th {
  508. background: transparent;
  509. border-left: none;
  510. }
  511. .table-basic.table tbody tr {
  512. border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  513. }
  514. .table-basic.table td {
  515. background: transparent;
  516. }
  517. .table-basic.striped.table tbody tr:nth-child(2n) {
  518. background-color: rgba(0, 0, 0, 0.05) !important;
  519. }
  520. /* Very Basic */
  521. [class*="table-very table-basic"].table {
  522. border: none;
  523. }
  524. [class*="table-very table-basic"].table:not(.sortable):not(.striped) th, [class*="table-very table-basic"].table:not(.sortable):not(.striped) td {
  525. padding: '';
  526. }
  527. [class*="table-very table-basic"].table:not(.sortable):not(.striped) th:first-child, [class*="table-very table-basic"].table:not(.sortable):not(.striped) td:first-child {
  528. padding-left: 0em;
  529. }
  530. [class*="table-very table-basic"].table:not(.sortable):not(.striped) th:last-child, [class*="table-very table-basic"].table:not(.sortable):not(.striped) td:last-child {
  531. padding-right: 0em;
  532. }
  533. [class*="table-very table-basic"].table:not(.sortable):not(.striped) thead tr:first-child th {
  534. padding-top: 0em;
  535. }
  536. .dropdown-menu.user-menu {
  537. width: 220px;
  538. }
  539. .dropdown-menu li {
  540. line-height: 45px;
  541. }
  542. .dropdown-menu li.divider {
  543. background-color: #e5e5e5;
  544. height: 1px;
  545. margin: 9px 0;
  546. overflow: hidden;
  547. font-size: 0;
  548. }
  549. .dropdown-menu li a {
  550. display: block;
  551. font-size: 13px;
  552. line-height: 1.42857;
  553. padding: 6px 12px;
  554. clear: both;
  555. color: #333;
  556. font-weight: 400;
  557. }
  558. .dropdown-menu li a:hover {
  559. background-color: #fee188;
  560. }
  561. .dropdown-menu li a .yvan-icon {
  562. font-size: 120%;
  563. margin-right: 6px;
  564. }
  565. .menu-line {
  566. display: none;
  567. }
  568. .easyui-tree .fa {
  569. color: #004c8b;
  570. text-align: center;
  571. vertical-align: middle;
  572. font-size: 18px;
  573. width: 22px;
  574. }
  575. .tree-node {
  576. padding: 8px 0;
  577. height: inherit;
  578. }
  579. .tree-node-selected {
  580. background: #e1e6e9
  581. }
  582. .tree-title {
  583. font-size: 13px;
  584. padding-left: 3px;
  585. }
  586. .icon-blank {
  587. background: url('icons/blank.gif') no-repeat center center;
  588. }
  589. .icon-add {
  590. background: url('icons/edit_add.png') no-repeat center center;
  591. }
  592. .icon-edit {
  593. background: url('icons/pencil.png') no-repeat center center;
  594. }
  595. .icon-clear {
  596. background: url('icons/clear.png') no-repeat center center;
  597. }
  598. .icon-remove {
  599. background: url('icons/edit_remove.png') no-repeat center center;
  600. }
  601. .icon-save {
  602. background: url('icons/filesave.png') no-repeat center center;
  603. }
  604. .icon-cut {
  605. background: url('icons/cut.png') no-repeat center center;
  606. }
  607. .icon-ok {
  608. background: url('icons/ok.png') no-repeat center center;
  609. }
  610. .icon-no {
  611. background: url('icons/no.png') no-repeat center center;
  612. }
  613. .icon-cancel {
  614. background: url('icons/cancel.png') no-repeat center center;
  615. }
  616. .icon-reload {
  617. background: url('icons/reload.png') no-repeat center center;
  618. }
  619. .icon-search {
  620. background: url('icons/search.png') no-repeat center center;
  621. }
  622. .icon-print {
  623. background: url('icons/print.png') no-repeat center center;
  624. }
  625. .icon-help {
  626. background: url('icons/help.png') no-repeat center center;
  627. }
  628. .icon-undo {
  629. background: url('icons/undo.png') no-repeat center center;
  630. }
  631. .icon-redo {
  632. background: url('icons/redo.png') no-repeat center center;
  633. }
  634. .icon-back {
  635. background: url('icons/back.png') no-repeat center center;
  636. }
  637. .icon-sum {
  638. background: url('icons/sum.png') no-repeat center center;
  639. }
  640. .icon-tip {
  641. background: url('icons/tip.png') no-repeat center center;
  642. }
  643. .icon-filter {
  644. background: url('icons/filter.png') no-repeat center center;
  645. }
  646. .icon-man {
  647. background: url('icons/man.png') no-repeat center center;
  648. }
  649. .icon-lock {
  650. background: url('icons/lock.png') no-repeat center center;
  651. }
  652. .icon-more {
  653. background: url('icons/more.png') no-repeat center center;
  654. }
  655. .icon-mini-add {
  656. background: url('icons/mini_add.png') no-repeat center center;
  657. }
  658. .icon-mini-edit {
  659. background: url('icons/mini_edit.png') no-repeat center center;
  660. }
  661. .icon-mini-refresh {
  662. background: url('icons/mini_refresh.png') no-repeat center center;
  663. }
  664. .icon-large-picture {
  665. background: url('icons/large_picture.png') no-repeat center center;
  666. }
  667. .icon-large-clipart {
  668. background: url('icons/large_clipart.png') no-repeat center center;
  669. }
  670. .icon-large-shapes {
  671. background: url('icons/large_shapes.png') no-repeat center center;
  672. }
  673. .icon-large-smartart {
  674. background: url('icons/large_smartart.png') no-repeat center center;
  675. }
  676. .icon-large-chart {
  677. background: url('icons/large_chart.png') no-repeat center center;
  678. }
  679. /*== 栅格化 ==*/
  680. .yvan-row {
  681. *zoom: 1;
  682. line-height: 45px;
  683. }
  684. .yvan-row:before {
  685. content: "";
  686. display: table;
  687. }
  688. .yvan-row:after {
  689. display: block;
  690. clear: both;
  691. visibility: hidden;
  692. height: 0;
  693. overflow: hidden;
  694. content: ".";
  695. }
  696. .yvan-row > .easyui-linkbutton {
  697. margin-right: 20px
  698. }
  699. .yvan-row .vv {
  700. float: left;
  701. }
  702. /*== 表单 ==*/
  703. .checkgroup-container {
  704. display: inline-block;
  705. }
  706. .yvan-form-offset {
  707. display: inline-block;
  708. width: 90px;
  709. height: 32px;
  710. }
  711. .yvan-form {
  712. padding: 0 10px;
  713. border: 0;
  714. }
  715. .yvan-form-groups {
  716. min-width: 100%;
  717. width: 100%;
  718. border: solid 1px #ccc;
  719. padding: 10px 0;
  720. margin-bottom: 0;
  721. border-radius: 3px;
  722. *zoom: 1;
  723. }
  724. .yvan-form-groups:after {
  725. display: block;
  726. clear: both;
  727. visibility: hidden;
  728. height: 0;
  729. overflow: hidden;
  730. content: ".";
  731. }
  732. .yvan-form-groups.noborder {
  733. border: 0;
  734. margin: 0 auto;
  735. padding: 5px 0;
  736. }
  737. .yvan-form-groups > legend {
  738. margin-left: 20px;
  739. font: 400 14px/1.5em "微软雅黑";
  740. padding: 0 0.5em;
  741. color: #666;
  742. }
  743. .yvan-form-groups > legend > .fa-question-circle, .yvan-qus-icon .yvan-icon {
  744. color: #f2711c;
  745. }
  746. .yvan-qus-icon .yvan-icon {
  747. line-height: 18px;
  748. }
  749. .yvan-form-groups > .yvan-row {
  750. padding-right: 15px;
  751. }
  752. .yvan-form-bd {
  753. padding: 0 15px;
  754. }
  755. .yvan-form-hd-toolbar {
  756. margin-bottom: 10px;
  757. }
  758. .yvan-form-groups .form-group {
  759. display: inline-flex;
  760. margin-bottom: 10px;
  761. float: left;
  762. max-width: 100%;
  763. width: 100%;
  764. }
  765. .textbox-label {
  766. background: none;
  767. border: none;
  768. }
  769. .yvan-form .form-group .textbox-label {
  770. background: none;
  771. border: none;
  772. color: #333;
  773. /* min-width:140px;
  774. width:140px; */
  775. height: 32px;
  776. line-height: 32px;
  777. text-align: right;
  778. }
  779. .yvan-form .form-group .textbox {
  780. }
  781. .yvan-form .radio-group > label {
  782. padding-right: 12px;
  783. cursor: pointer;
  784. color: #666;
  785. height: 32px;
  786. line-height: 32px;
  787. }
  788. .yvan-form .radio-group > label > input {
  789. margin-top: -3px;
  790. cursor: pointer;
  791. }
  792. /* 对话框里的工具条 */
  793. .window .window-header, .window-thinborder .window-header {
  794. padding: 5px 0;
  795. }
  796. .dialog-toolbar {
  797. background: #004c8b;
  798. padding: 0;
  799. border: 0;
  800. }
  801. .yvan-form-toolbar {
  802. padding: 2px !important;
  803. background: #004c8b;
  804. border-bottom-color: #e1e1e1;
  805. border-bottom-style: solid;
  806. border-bottom-width: 1px;
  807. overflow: hidden;
  808. border-width: 0 0 1px;
  809. margin-top: 0;
  810. height: 32px;
  811. }
  812. .yvan-form-toolbar .label {
  813. color: white;
  814. vertical-align: middle;
  815. font-size: 16px;
  816. font-weight: bold;
  817. background: transparent;
  818. }
  819. .yvan-form-toolbar .l-btn {
  820. margin: 0 5px;
  821. }
  822. .yvan-form-toolbar .l-btn-text {
  823. line-height: 23px;
  824. }
  825. .yvan-form-toolbar .l-btn-icon {
  826. line-height: 17px;
  827. font-size: 15px;
  828. }
  829. /*== form工具栏 ==*/
  830. .datagrid-toolbar {
  831. padding: 0 !important
  832. }
  833. .yvan-form-toolbar {
  834. height: 38px;
  835. padding: 0px !important;
  836. border: none;
  837. line-height: 37px !important;
  838. }
  839. .yvan-form-toolbar .yvan-form-toolbar-title {
  840. margin: 0 5px 0 10px;
  841. position: relative;
  842. top: 2px;
  843. }
  844. .yvan-form-toolbar .yvan-form-toolbar-separate {
  845. width: 1px;
  846. height: 14px;
  847. background: #fff;
  848. display: inline-block;
  849. position: relative;
  850. top: 5px;
  851. margin: 0 5px;
  852. }
  853. .yvan-form-toolbar .yvan-separate {
  854. margin: 0 8px;
  855. }
  856. .yvan-form-toolbar .l-btn {
  857. margin-top: 0px;
  858. border: none;
  859. padding: 0;
  860. }
  861. .yvan-form-toolbar .l-btn-text {
  862. font-size: 14px;
  863. line-height: 24px;
  864. margin: 3px 15px 3px 30px !important;
  865. }
  866. .datagrid-toolbar .l-btn {
  867. height: auto !important;
  868. }
  869. .yvan-form-toolbar .label {
  870. color: #fff;
  871. font-size: 14px;
  872. line-height: 38px !important;
  873. padding: 0 !important;
  874. }
  875. .yvan-form-toolbar-title {
  876. line-height: 36px;
  877. }
  878. .yvan-form-toolbar .l-btn-text i {
  879. margin-right: 5px;
  880. }
  881. .yvan-form-toolbar .fa-lg {
  882. line-height: 1em;
  883. margin-left: 1px;
  884. }
  885. .yvan-form-toolbar .easyui-menubutton {
  886. border-radius: 3px;
  887. }
  888. .yvan-form-toolbar .easyui-menubutton i {
  889. margin-left: 3px;
  890. margin-right: 0;
  891. }
  892. .yvan-grid-label-box {
  893. height: 38px !important;
  894. line-height: 38px;
  895. }
  896. /*== form工具栏 ==*/
  897. .yvan-grid-toolbar {
  898. overflow: hidden;
  899. height: 38px;
  900. padding: 0 !important;
  901. }
  902. .yvan-grid-toolbar .yvan-grid-toolbar-title {
  903. width: 220px;
  904. float: left;
  905. height: 38px;
  906. }
  907. .yvan-grid-toolbar .yvan-grid-toolbar-title span {
  908. padding: 0 10px;
  909. line-height: 38px;
  910. color: #fff;
  911. }
  912. .yvan-grid-toolbar .yvan-grid-toolbar-right {
  913. margin-left: 220px;
  914. text-align: right;
  915. padding: 4px 5px 5px 0;
  916. }
  917. .yvan-grid-wrap .datagrid-toolbar .l-btn .l-btn-left .l-btn-text {
  918. margin: 0px 10px;
  919. line-height: 24px;
  920. }
  921. .yvan-grid-toolbar .yvan-grid-toolbar-right .l-btn {
  922. border: none;
  923. margin-right: 7px;
  924. }
  925. .yvan-grid-toolbar .yvan-grid-toolbar-right .fa-lg {
  926. font-size: 1em;
  927. margin-right: 5px;
  928. }
  929. .toolbar-top-position {
  930. position: absolute;
  931. top: 0;
  932. left: 0;
  933. width: 100%;
  934. z-index: 99999;
  935. }
  936. /*== 窗体 ==*/
  937. .window {
  938. animation-name: none;
  939. }
  940. .window-proxy-mask, .window-mask {
  941. animation-name: none;
  942. }
  943. .window .panel-footer {
  944. text-align: right;
  945. padding: 5px;
  946. }
  947. .window .panel-footer .l-btn {
  948. margin-left: 10px;
  949. }
  950. /*== 主界面top ==*/
  951. .theme-navigate .l-btn {
  952. background-color: #004c8b;
  953. }
  954. .theme-navigate .l-btn:hover, .theme-navigate .m-btn-plain-active {
  955. background-color: #498cc2;
  956. }
  957. /*== tab切换样式修改 ==*/
  958. .tabs li a.tabs-inner {
  959. background-color: #fff;
  960. }
  961. .tabs li.tabs-selected a.tabs-inner {
  962. border-bottom: 1px solid #004c8b;
  963. color: #fff;
  964. background-color: #004c8b;
  965. }
  966. .tabs li.tabs-selected:hover a.tabs-inner {
  967. border-bottom: 1px solid #004c8b;
  968. color: #fff;
  969. }
  970. .tabs li.tabs-selected:hover {
  971. background-color: #004c8b;
  972. color: #fff;
  973. }
  974. .tabs li.tabs-selected .tabs-close {
  975. background: rgba(0, 0, 0, 0) url("images/tagbox_icons.png") no-repeat !important;
  976. }
  977. .tabs li a.tabs-close {
  978. opacity: 1;
  979. filter: alpha(opacity=1);
  980. }
  981. .tabs li.tabs-selected a.tabs-close:hover {
  982. background: #fff url("images/tagbox_icons.png") -16px no-repeat !important;
  983. }
  984. .tabs li.tabs-selected:hover .tabs-close {
  985. background-color: #fff;
  986. }
  987. .yvan-form-toolbar {
  988. background: #004c8b;
  989. }
  990. .yvan-form-toolbar .yvan-form-toolbar-title {
  991. color: #fff;
  992. }
  993. .yvan-form-toolbar .l-btn {
  994. color: #fff;
  995. }
  996. .yvan-grid-toolbar {
  997. background: #004c8b;
  998. }
  999. /*== grid选中==*/
  1000. .datagrid-row-selected {
  1001. background: #e5e5e5;
  1002. }
  1003. /*== layer提示框==*/
  1004. .yvan-msg {
  1005. min-width: 100px;
  1006. background-color: rgba(0, 0, 0, .6);
  1007. color: #fff;
  1008. border: none;
  1009. box-shadow: none;
  1010. margin: 0;
  1011. padding: 0;
  1012. border-radius: 2px;
  1013. position: fixed;
  1014. pointer-events: auto;
  1015. z-index: 10000;
  1016. }
  1017. .yvan-msg-content {
  1018. pointer-events: auto;
  1019. color: #fff;
  1020. padding: 12px 25px;
  1021. text-align: center;
  1022. position: relative;
  1023. line-height: 24px;
  1024. word-break: break-all;
  1025. overflow: hidden;
  1026. font-size: 14px;
  1027. overflow-x: hidden;
  1028. overflow-y: auto;
  1029. }
  1030. .layui-layer-hui {
  1031. background-color: rgba(255, 142, 0, 0.8);
  1032. }
  1033. /*== 其他颜色-按钮 ==*/
  1034. .button-wathet {
  1035. background-color: #498cc2 !important;
  1036. }
  1037. .button-wathet:hover {
  1038. background-color: #498cc2 !important;
  1039. }
  1040. .button-blue {
  1041. background-color: #004c8b !important;
  1042. }
  1043. .datagrid-view:focus {
  1044. outline: 2px #66afe9 solid;
  1045. }
  1046. .easyui-linkbutton:focus {
  1047. outline: 2px #66afe9 solid;
  1048. }
  1049. /*== 动画 ==*/
  1050. .yvan-anim {
  1051. -webkit-animation-fill-mode: both;
  1052. animation-fill-mode: both;
  1053. -webkit-animation-duration: .3s;
  1054. animation-duration: .3s
  1055. }
  1056. @-webkit-keyframes yvan-bounceIn {
  1057. 0% {
  1058. opacity: 0;
  1059. -webkit-transform: scale(.5);
  1060. transform: scale(.5)
  1061. }
  1062. 100% {
  1063. opacity: 1;
  1064. -webkit-transform: scale(1);
  1065. transform: scale(1)
  1066. }
  1067. }
  1068. @keyframes yvan-bounceIn {
  1069. 0% {
  1070. opacity: 0;
  1071. -webkit-transform: scale(.5);
  1072. -ms-transform: scale(.5);
  1073. transform: scale(.5)
  1074. }
  1075. 100% {
  1076. opacity: 1;
  1077. -webkit-transform: scale(1);
  1078. -ms-transform: scale(1);
  1079. transform: scale(1)
  1080. }
  1081. }
  1082. .yvan-anim-00 {
  1083. -webkit-animation-name: yvan-bounceIn;
  1084. animation-name: yvan-bounceIn
  1085. }
  1086. @-webkit-keyframes yvan-zoomInDown {
  1087. 0% {
  1088. opacity: 0;
  1089. -webkit-transform: scale(.1) translateY(-2000px);
  1090. transform: scale(.1) translateY(-2000px);
  1091. -webkit-animation-timing-function: ease-in-out;
  1092. animation-timing-function: ease-in-out
  1093. }
  1094. 60% {
  1095. opacity: 1;
  1096. -webkit-transform: scale(.475) translateY(60px);
  1097. transform: scale(.475) translateY(60px);
  1098. -webkit-animation-timing-function: ease-out;
  1099. animation-timing-function: ease-out
  1100. }
  1101. }
  1102. @keyframes yvan-zoomInDown {
  1103. 0% {
  1104. opacity: 0;
  1105. -webkit-transform: scale(.1) translateY(-2000px);
  1106. -ms-transform: scale(.1) translateY(-2000px);
  1107. transform: scale(.1) translateY(-2000px);
  1108. -webkit-animation-timing-function: ease-in-out;
  1109. animation-timing-function: ease-in-out
  1110. }
  1111. 60% {
  1112. opacity: 1;
  1113. -webkit-transform: scale(.475) translateY(60px);
  1114. -ms-transform: scale(.475) translateY(60px);
  1115. transform: scale(.475) translateY(60px);
  1116. -webkit-animation-timing-function: ease-out;
  1117. animation-timing-function: ease-out
  1118. }
  1119. }
  1120. .yvan-anim-01 {
  1121. -webkit-animation-name: yvan-zoomInDown;
  1122. animation-name: yvan-zoomInDown
  1123. }
  1124. @-webkit-keyframes yvan-fadeInUpBig {
  1125. 0% {
  1126. opacity: 0;
  1127. -webkit-transform: translateY(2000px);
  1128. transform: translateY(2000px)
  1129. }
  1130. 100% {
  1131. opacity: 1;
  1132. -webkit-transform: translateY(0);
  1133. transform: translateY(0)
  1134. }
  1135. }
  1136. @keyframes yvan-fadeInUpBig {
  1137. 0% {
  1138. opacity: 0;
  1139. -webkit-transform: translateY(2000px);
  1140. -ms-transform: translateY(2000px);
  1141. transform: translateY(2000px)
  1142. }
  1143. 100% {
  1144. opacity: 1;
  1145. -webkit-transform: translateY(0);
  1146. -ms-transform: translateY(0);
  1147. transform: translateY(0)
  1148. }
  1149. }
  1150. .yvan-anim-02 {
  1151. -webkit-animation-name: yvan-fadeInUpBig;
  1152. animation-name: yvan-fadeInUpBig
  1153. }
  1154. @-webkit-keyframes yvan-zoomInLeft {
  1155. 0% {
  1156. opacity: 0;
  1157. -webkit-transform: scale(.1) translateX(-2000px);
  1158. transform: scale(.1) translateX(-2000px);
  1159. -webkit-animation-timing-function: ease-in-out;
  1160. animation-timing-function: ease-in-out
  1161. }
  1162. 60% {
  1163. opacity: 1;
  1164. -webkit-transform: scale(.475) translateX(48px);
  1165. transform: scale(.475) translateX(48px);
  1166. -webkit-animation-timing-function: ease-out;
  1167. animation-timing-function: ease-out
  1168. }
  1169. }
  1170. @keyframes yvan-zoomInLeft {
  1171. 0% {
  1172. opacity: 0;
  1173. -webkit-transform: scale(.1) translateX(-2000px);
  1174. -ms-transform: scale(.1) translateX(-2000px);
  1175. transform: scale(.1) translateX(-2000px);
  1176. -webkit-animation-timing-function: ease-in-out;
  1177. animation-timing-function: ease-in-out
  1178. }
  1179. 60% {
  1180. opacity: 1;
  1181. -webkit-transform: scale(.475) translateX(48px);
  1182. -ms-transform: scale(.475) translateX(48px);
  1183. transform: scale(.475) translateX(48px);
  1184. -webkit-animation-timing-function: ease-out;
  1185. animation-timing-function: ease-out
  1186. }
  1187. }
  1188. .yvan-anim-03 {
  1189. -webkit-animation-name: yvan-zoomInLeft;
  1190. animation-name: yvan-zoomInLeft
  1191. }
  1192. @-webkit-keyframes yvan-rollIn {
  1193. 0% {
  1194. opacity: 0;
  1195. -webkit-transform: translateX(-100%) rotate(-120deg);
  1196. transform: translateX(-100%) rotate(-120deg)
  1197. }
  1198. 100% {
  1199. opacity: 1;
  1200. -webkit-transform: translateX(0) rotate(0);
  1201. transform: translateX(0) rotate(0)
  1202. }
  1203. }
  1204. @keyframes yvan-rollIn {
  1205. 0% {
  1206. opacity: 0;
  1207. -webkit-transform: translateX(-100%) rotate(-120deg);
  1208. -ms-transform: translateX(-100%) rotate(-120deg);
  1209. transform: translateX(-100%) rotate(-120deg)
  1210. }
  1211. 100% {
  1212. opacity: 1;
  1213. -webkit-transform: translateX(0) rotate(0);
  1214. -ms-transform: translateX(0) rotate(0);
  1215. transform: translateX(0) rotate(0)
  1216. }
  1217. }
  1218. .yvan-anim-04 {
  1219. -webkit-animation-name: yvan-rollIn;
  1220. animation-name: yvan-rollIn
  1221. }
  1222. @keyframes yvan-fadeIn {
  1223. 0% {
  1224. opacity: 0
  1225. }
  1226. 100% {
  1227. opacity: 1
  1228. }
  1229. }
  1230. .yvan-anim-05 {
  1231. -webkit-animation-name: yvan-fadeIn;
  1232. animation-name: yvan-fadeIn
  1233. }
  1234. @-webkit-keyframes yvan-shake {
  1235. 0%, 100% {
  1236. -webkit-transform: translateX(0);
  1237. transform: translateX(0)
  1238. }
  1239. 10%, 30%, 50%, 70%, 90% {
  1240. -webkit-transform: translateX(-10px);
  1241. transform: translateX(-10px)
  1242. }
  1243. 20%, 40%, 60%, 80% {
  1244. -webkit-transform: translateX(10px);
  1245. transform: translateX(10px)
  1246. }
  1247. }
  1248. @keyframes yvan-shake {
  1249. 0%, 100% {
  1250. -webkit-transform: translateX(0);
  1251. -ms-transform: translateX(0);
  1252. transform: translateX(0)
  1253. }
  1254. 10%, 30%, 50%, 70%, 90% {
  1255. -webkit-transform: translateX(-10px);
  1256. -ms-transform: translateX(-10px);
  1257. transform: translateX(-10px)
  1258. }
  1259. 20%, 40%, 60%, 80% {
  1260. -webkit-transform: translateX(10px);
  1261. -ms-transform: translateX(10px);
  1262. transform: translateX(10px)
  1263. }
  1264. }
  1265. .yvan-anim-06 {
  1266. -webkit-animation-name: yvan-shake;
  1267. animation-name: yvan-shake
  1268. }
  1269. @-webkit-keyframes fadeIn {
  1270. 0% {
  1271. opacity: 0
  1272. }
  1273. 100% {
  1274. opacity: 1
  1275. }
  1276. }
  1277. /*== checkbox / radiobutton ==*/
  1278. .yvan-checkbox {
  1279. position: relative;
  1280. height: 32px;
  1281. line-height: 32px;
  1282. margin-right: 10px;
  1283. padding-right: 30px;
  1284. cursor: pointer;
  1285. font-size: 0;
  1286. -webkit-transition: .1s linear;
  1287. transition: .1s linear;
  1288. box-sizing: border-box;
  1289. }
  1290. .yvan-checkbox, .yvan-select dl dd.yvan-disabled {
  1291. background-color: #fff;
  1292. }
  1293. .yvan-checkbox i {
  1294. position: absolute;
  1295. right: 0;
  1296. top: 0;
  1297. width: 29px;
  1298. height: 30px;
  1299. border: 1px solid #d2d2d2;
  1300. border-left: none;
  1301. border-radius: 0 2px 2px 0;
  1302. color: #fff;
  1303. font-size: 26px;
  1304. text-align: center;
  1305. }
  1306. .yvan-checkbox span {
  1307. padding: 0 10px;
  1308. height: 100%;
  1309. font-size: 14px;
  1310. border-radius: 2px 0 0 2px;
  1311. background-color: #d2d2d2;
  1312. color: #fff;
  1313. overflow: hidden;
  1314. text-overflow: ellipsis;
  1315. white-space: nowrap;
  1316. }
  1317. .yvan-checked span, .yvan-checked:hover span {
  1318. background-color: #004c8b;
  1319. }
  1320. .yvan-checkbox, .yvan-checkbox * {
  1321. display: inline-block;
  1322. vertical-align: middle;
  1323. }
  1324. .yvan-checkbox:hover i {
  1325. border-color: #c2c2c2;
  1326. color: #c2c2c2;
  1327. }
  1328. .yvan-checked, .yvan-checked:hover {
  1329. border-color: #004c8b;
  1330. }
  1331. .yvan-checked i, .yvan-checked:hover i {
  1332. color: #004c8b;
  1333. }
  1334. .yvan-checkbox[lay-skin=primary] {
  1335. height: auto !important;
  1336. line-height: normal !important;
  1337. min-width: 18px;
  1338. min-height: 18px;
  1339. border: none !important;
  1340. margin-right: 0;
  1341. padding-left: 28px;
  1342. padding-right: 0;
  1343. background: 0 0;
  1344. }
  1345. td[role=gridcell] .yvan-checkbox[lay-skin=primary] {
  1346. padding-left: 0;
  1347. }
  1348. .yvan-checkbox[lay-skin=primary] span {
  1349. padding-left: 0;
  1350. padding-right: 15px;
  1351. line-height: 18px;
  1352. background: 0 0;
  1353. color: #666;
  1354. }
  1355. .yvan-checkbox[lay-skin=primary] i {
  1356. right: auto;
  1357. left: 0;
  1358. width: 16px;
  1359. height: 16px;
  1360. line-height: 14px;
  1361. border: 1px solid #d2d2d2;
  1362. font-size: 12px;
  1363. border-radius: 2px;
  1364. background-color: #fff;
  1365. -webkit-transition: .1s linear;
  1366. transition: .1s linear;
  1367. }
  1368. .yvan-checked[lay-skin=primary] i {
  1369. border-color: #004c8b;
  1370. background-color: #004c8b;
  1371. color: #fff;
  1372. }
  1373. .yvan-checkbox[lay-skin=primary]:hover i {
  1374. border-color: #004c8b;
  1375. color: #fff;
  1376. }
  1377. .yvan-checkbox[lay-skin=primary]:focus i {
  1378. border-color: #004c8b;
  1379. color: #fff;
  1380. }
  1381. .yvan-disabled, .yvan-disabled:hover {
  1382. color: #d2d2d2;
  1383. cursor: not-allowed;
  1384. }
  1385. .yvan-checkbox-disabled, .yvan-checkbox-disabled i {
  1386. border-color: #e2e2e2 !important;
  1387. }
  1388. .yvan-checkbox-disabled:hover i {
  1389. color: #fff;
  1390. }
  1391. .yvan-checkbox-disabled[lay-skin=primary]:hover i {
  1392. border-color: #d2d2d2;
  1393. }
  1394. .yvan-checkbox-disabled[lay-skin=primary] span {
  1395. background: 0 0 !important;
  1396. color: #c2c2c2;
  1397. }
  1398. .yvan-radio {
  1399. line-height: 32px;
  1400. margin: 6px 10px 6px 0;
  1401. padding-right: 10px;
  1402. cursor: pointer;
  1403. font-size: 0;
  1404. }
  1405. .yvan-radio, .yvan-radio * {
  1406. display: inline-block;
  1407. vertical-align: middle;
  1408. }
  1409. .yvan-radio * {
  1410. font-size: 14px;
  1411. }
  1412. .yvan-radio > i {
  1413. margin-right: 8px;
  1414. font-size: 22px;
  1415. color: #c2c2c2;
  1416. }
  1417. .yvan-radio > i:hover, .yvan-radioed > i {
  1418. color: #004c8b;
  1419. }
  1420. .yvan-radio-disbaled > i, .yvan-radio-disbaled > i:hover {
  1421. color: #e2e2e2;
  1422. }
  1423. .yvan-anim.fa {
  1424. display: inline-block;
  1425. }
  1426. @-webkit-keyframes layui-scale-spring {
  1427. 0% {
  1428. opacity: .5;
  1429. -webkit-transform: scale(.5)
  1430. }
  1431. 80% {
  1432. opacity: .8;
  1433. -webkit-transform: scale(1.1)
  1434. }
  1435. 100% {
  1436. opacity: 1;
  1437. -webkit-transform: scale(1)
  1438. }
  1439. }
  1440. @keyframes layui-scale-spring {
  1441. 0% {
  1442. opacity: .5;
  1443. transform: scale(.5)
  1444. }
  1445. 80% {
  1446. opacity: .8;
  1447. transform: scale(1.1)
  1448. }
  1449. 100% {
  1450. opacity: 1;
  1451. transform: scale(1)
  1452. }
  1453. }
  1454. .yvan-anim-scaleSpring {
  1455. -webkit-animation-name: layui-scale-spring;
  1456. animation-name: layui-scale-spring
  1457. }
  1458. .yvan-anim {
  1459. -webkit-animation-duration: .3s;
  1460. animation-duration: .3s;
  1461. -webkit-animation-fill-mode: both;
  1462. animation-fill-mode: both
  1463. }
  1464. .ui-jqgrid .vv {
  1465. line-height: 45px !important;
  1466. }
  1467. .rule-alloc .yvan-row {
  1468. padding-left: 50px;
  1469. }
  1470. .combo-p .combo-panel .spinner .spinner-arrow {
  1471. height: 18px !important;
  1472. }
  1473. .combo-p .spinner-arrow-down {
  1474. height: 5px !important;
  1475. }
  1476. .spinner-button-top {
  1477. width: 100%;
  1478. display: block;
  1479. height: 15px;
  1480. }
  1481. .spinner-arrow-up {
  1482. height: 15px !important;
  1483. width: 13px;
  1484. margin-left: 4px;
  1485. }
  1486. .spinner-button-bottom {
  1487. width: 100%;
  1488. display: block;
  1489. height: 15px;
  1490. }
  1491. .spinner-arrow-down {
  1492. height: 15px !important;
  1493. width: 13px;
  1494. margin-left: 4px;
  1495. }
  1496. .spinner-arrow-up:hover, .spinner-arrow-down:hover {
  1497. background-color: #f8f8f8;
  1498. }