yvan-ext-mobile.css 19 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963
  1. /* 图标靠右对齐时,不显示 */
  2. .x-button.x-has-text.x-icon-align-right .x-icon-el {
  3. color: white;
  4. }
  5. /* 表格分页工具条样式 */
  6. .yvgrid-paging .paging-text .x-innerhtml {
  7. text-align: center;
  8. font-size: 16px;
  9. line-height: 32px;
  10. font-weight: bold;
  11. }
  12. /*== layer提示框==*/
  13. .yvan-msg {
  14. min-width: 100px;
  15. background-color: rgba(0, 0, 0, .6);
  16. color: #fff;
  17. border: none;
  18. -webkit-box-shadow: none;
  19. box-shadow: none;
  20. margin: 0;
  21. padding: 0;
  22. border-radius: 2px;
  23. position: fixed;
  24. pointer-events: auto;
  25. z-index: 99999999999;
  26. }
  27. .yvan-msg-content {
  28. pointer-events: auto;
  29. color: #fff;
  30. padding: 12px 25px;
  31. text-align: center;
  32. position: relative;
  33. line-height: 24px;
  34. word-break: break-all;
  35. overflow: hidden;
  36. font-size: 14px;
  37. overflow-x: hidden;
  38. overflow-y: auto;
  39. }
  40. /*== 动画 ==*/
  41. .yvan-anim {
  42. -webkit-animation-fill-mode: both;
  43. animation-fill-mode: both;
  44. -webkit-animation-duration: 0.3s;
  45. animation-duration: 0.3s;
  46. }
  47. @-webkit-keyframes yvan-bounceIn {
  48. 0% {
  49. opacity: 0;
  50. -webkit-transform: scale(0.5);
  51. transform: scale(0.5);
  52. }
  53. 100% {
  54. opacity: 1;
  55. -webkit-transform: scale(1);
  56. transform: scale(1);
  57. }
  58. }
  59. @keyframes yvan-bounceIn {
  60. 0% {
  61. opacity: 0;
  62. -webkit-transform: scale(0.5);
  63. transform: scale(0.5);
  64. }
  65. 100% {
  66. opacity: 1;
  67. -webkit-transform: scale(1);
  68. transform: scale(1);
  69. }
  70. }
  71. .yvan-anim-00 {
  72. -webkit-animation-name: yvan-bounceIn;
  73. animation-name: yvan-bounceIn;
  74. }
  75. @-webkit-keyframes yvan-zoomInDown {
  76. 0% {
  77. opacity: 0;
  78. -webkit-transform: scale(0.1) translatey(-2000px);
  79. transform: scale(0.1) translatey(-2000px);
  80. -webkit-animation-timing-function: ease-in-out;
  81. animation-timing-function: ease-in-out;
  82. }
  83. 60% {
  84. opacity: 1;
  85. -webkit-transform: scale(0.475) translatey(60px);
  86. transform: scale(0.475) translatey(60px);
  87. -webkit-animation-timing-function: ease-out;
  88. animation-timing-function: ease-out;
  89. }
  90. }
  91. @keyframes yvan-zoomInDown {
  92. 0% {
  93. opacity: 0;
  94. -webkit-transform: scale(0.1) translatey(-2000px);
  95. transform: scale(0.1) translatey(-2000px);
  96. -webkit-animation-timing-function: ease-in-out;
  97. animation-timing-function: ease-in-out;
  98. }
  99. 60% {
  100. opacity: 1;
  101. -webkit-transform: scale(0.475) translatey(60px);
  102. transform: scale(0.475) translatey(60px);
  103. -webkit-animation-timing-function: ease-out;
  104. animation-timing-function: ease-out;
  105. }
  106. }
  107. .yvan-anim-01 {
  108. -webkit-animation-name: yvan-zoomInDown;
  109. animation-name: yvan-zoomInDown;
  110. }
  111. @-webkit-keyframes yvan-fadeInUpBig {
  112. 0% {
  113. opacity: 0;
  114. -webkit-transform: translatey(2000px);
  115. transform: translatey(2000px);
  116. }
  117. 100% {
  118. opacity: 1;
  119. -webkit-transform: translatey(0);
  120. transform: translatey(0);
  121. }
  122. }
  123. @keyframes yvan-fadeInUpBig {
  124. 0% {
  125. opacity: 0;
  126. -webkit-transform: translatey(2000px);
  127. transform: translatey(2000px);
  128. }
  129. 100% {
  130. opacity: 1;
  131. -webkit-transform: translatey(0);
  132. transform: translatey(0);
  133. }
  134. }
  135. .yvan-anim-02 {
  136. -webkit-animation-name: yvan-fadeInUpBig;
  137. animation-name: yvan-fadeInUpBig;
  138. }
  139. @-webkit-keyframes yvan-zoomInLeft {
  140. 0% {
  141. opacity: 0;
  142. -webkit-transform: scale(0.1) translatex(-2000px);
  143. transform: scale(0.1) translatex(-2000px);
  144. -webkit-animation-timing-function: ease-in-out;
  145. animation-timing-function: ease-in-out;
  146. }
  147. 60% {
  148. opacity: 1;
  149. -webkit-transform: scale(0.475) translatex(48px);
  150. transform: scale(0.475) translatex(48px);
  151. -webkit-animation-timing-function: ease-out;
  152. animation-timing-function: ease-out;
  153. }
  154. }
  155. @keyframes yvan-zoomInLeft {
  156. 0% {
  157. opacity: 0;
  158. -webkit-transform: scale(0.1) translatex(-2000px);
  159. transform: scale(0.1) translatex(-2000px);
  160. -webkit-animation-timing-function: ease-in-out;
  161. animation-timing-function: ease-in-out;
  162. }
  163. 60% {
  164. opacity: 1;
  165. -webkit-transform: scale(0.475) translatex(48px);
  166. transform: scale(0.475) translatex(48px);
  167. -webkit-animation-timing-function: ease-out;
  168. animation-timing-function: ease-out;
  169. }
  170. }
  171. .yvan-anim-03 {
  172. -webkit-animation-name: yvan-zoomInLeft;
  173. animation-name: yvan-zoomInLeft;
  174. }
  175. @-webkit-keyframes yvan-rollIn {
  176. 0% {
  177. opacity: 0;
  178. -webkit-transform: translatex(-100%) rotate(-120deg);
  179. transform: translatex(-100%) rotate(-120deg);
  180. }
  181. 100% {
  182. opacity: 1;
  183. -webkit-transform: translatex(0) rotate(0);
  184. transform: translatex(0) rotate(0);
  185. }
  186. }
  187. @keyframes yvan-rollIn {
  188. 0% {
  189. opacity: 0;
  190. -webkit-transform: translatex(-100%) rotate(-120deg);
  191. transform: translatex(-100%) rotate(-120deg);
  192. }
  193. 100% {
  194. opacity: 1;
  195. -webkit-transform: translatex(0) rotate(0);
  196. transform: translatex(0) rotate(0);
  197. }
  198. }
  199. .yvan-anim-04 {
  200. -webkit-animation-name: yvan-rollIn;
  201. animation-name: yvan-rollIn;
  202. }
  203. @-webkit-keyframes yvan-fadeIn {
  204. 0% {
  205. opacity: 0;
  206. }
  207. 100% {
  208. opacity: 1;
  209. }
  210. }
  211. @keyframes yvan-fadeIn {
  212. 0% {
  213. opacity: 0;
  214. }
  215. 100% {
  216. opacity: 1;
  217. }
  218. }
  219. .yvan-anim-05 {
  220. -webkit-animation-name: yvan-fadeIn;
  221. animation-name: yvan-fadeIn;
  222. }
  223. @-webkit-keyframes yvan-shake {
  224. 0%,
  225. 100% {
  226. -webkit-transform: translatex(0);
  227. transform: translatex(0);
  228. }
  229. 10%,
  230. 30%,
  231. 50%,
  232. 70%,
  233. 90% {
  234. -webkit-transform: translatex(-10px);
  235. transform: translatex(-10px);
  236. }
  237. 20%,
  238. 40%,
  239. 60%,
  240. 80% {
  241. -webkit-transform: translatex(10px);
  242. transform: translatex(10px);
  243. }
  244. }
  245. @keyframes yvan-shake {
  246. 0%,
  247. 100% {
  248. -webkit-transform: translatex(0);
  249. transform: translatex(0);
  250. }
  251. 10%,
  252. 30%,
  253. 50%,
  254. 70%,
  255. 90% {
  256. -webkit-transform: translatex(-10px);
  257. transform: translatex(-10px);
  258. }
  259. 20%,
  260. 40%,
  261. 60%,
  262. 80% {
  263. -webkit-transform: translatex(10px);
  264. transform: translatex(10px);
  265. }
  266. }
  267. .yvan-anim-06 {
  268. -webkit-animation-name: yvan-shake;
  269. animation-name: yvan-shake;
  270. }
  271. @-webkit-keyframes fadeIn {
  272. 0% {
  273. opacity: 0;
  274. }
  275. 100% {
  276. opacity: 1;
  277. }
  278. }
  279. .x-titlebar.x-container.x-component.x-navigation-bar.x-noborder-trbl.x-paint-monitored.x-dock-item.x-docked-top .x-component.x-button.x-has-text.x-icon-align-left.x-arrow-align-right.x-layout-box-item.x-layout-hbox-item .x-text-el {
  280. color: #fff;
  281. color: var(--base-foreground-color);
  282. }
  283. .x-messagebox.x-dialog .x-toolbar.x-toolbar-footer .x-button {
  284. margin-left: 8px;
  285. margin-right: 8px;
  286. }
  287. .x-messagebox.x-dialog .x-toolbar.x-toolbar-footer .x-button:first-child {
  288. margin-left: 0 !important;
  289. }
  290. .x-messagebox.x-dialog .x-toolbar.x-toolbar-footer .x-button:last-child {
  291. margin-right: 0 !important;
  292. }
  293. /*样式调整*/
  294. /*修改头部样式*/
  295. .x-panelheader > .x-body-el {
  296. padding: 0;
  297. }
  298. .x-panelheader-body-el > .x-paneltitle {
  299. padding: 0;
  300. }
  301. .x-panelheader-body-el > .x-paneltitle .x-text-el {
  302. padding-left: 10px;
  303. }
  304. .x-paneltitle .x-icon-el,
  305. .x-paneltool .x-icon-el {
  306. padding: 18px;
  307. z-index: 2;
  308. }
  309. .x-panelheader .mainTitleLabel .x-icon-el {
  310. padding: 18px 10px 18px 12px;
  311. margin-right: -10px;
  312. }
  313. .x-panelheader .x-tool.x-end {
  314. padding: 0 4px 0 6px;
  315. }
  316. .x-field {
  317. -webkit-box-align: center;
  318. -ms-flex-align: center;
  319. align-items: center;
  320. }
  321. /**修改表单内的样式*/
  322. .x-field.x-label-text-align-left > .x-label-el {
  323. font-size: 18px;
  324. text-align: right;
  325. }
  326. .x-field.x-label-align-left:first-child .x-label-el {
  327. border-top-left-radius: 4px !important;
  328. display: -webkit-box;
  329. display: -ms-flexbox;
  330. display: flex;
  331. -webkit-box-align: center;
  332. -ms-flex-align: center;
  333. align-items: center;
  334. }
  335. .x-field.x-label-align-left:last-child .x-label-el {
  336. border-bottom-left-radius: 4px;
  337. }
  338. .x-formpanel .x-field > .x-label-el {
  339. color: #666;
  340. font-size: 16px;
  341. width: auto;
  342. margin: 5px 0 5px 5px;
  343. }
  344. .x-formpanel .x-field.borderLeftNone > .x-label-el {
  345. border-left: none;
  346. }
  347. .x-field.x-no-label-wrap > .x-label-el {
  348. overflow: visible;
  349. text-align: center;
  350. padding: 7px 0;
  351. }
  352. .x-field.x-required > .x-label-el:after {
  353. color: red;
  354. font-size: 14px;
  355. vertical-align: middle;
  356. margin-left: 3px;
  357. }
  358. .x-title.x-form-fieldset-title .x-innerhtml {
  359. font-size: 18px;
  360. }
  361. .x-formpanel .textfieldBold.x-textfield > label {
  362. font-size: 18px;
  363. }
  364. .x-field.x-label-align-left .x-label-el {
  365. display: -webkit-box;
  366. display: -ms-flexbox;
  367. display: flex;
  368. -webkit-box-align: center;
  369. -ms-flex-align: center;
  370. align-items: center;
  371. }
  372. .x-textfield .x-input-el {
  373. color: #666;
  374. font-size: 16px;
  375. placeholder-color: #ccc;
  376. font-family: "Microsoft YaHei UI";
  377. }
  378. .x-button {
  379. color: #fff;
  380. font-size: 15px;
  381. --base-color: transparent;
  382. --base-dark-color: transparent;
  383. background: #2196f3;
  384. border: 1px solid #2196f3;
  385. line-height: 19px;
  386. border-radius: 4px;
  387. font-family: normal;
  388. }
  389. .x-button.x-arrow-align-right .x-inner-el {
  390. border-radius: 4px;
  391. padding: 0;
  392. }
  393. .x-button.x-has-text.x-icon-align-right.x-disabled .x-icon-el {
  394. color: rgba(0, 0, 0, .26);
  395. display: inline;
  396. }
  397. .x-button.x-has-text .x-inner-el {
  398. padding: 8px 12px;
  399. }
  400. .x-button .x-icon-el {
  401. width: auto;
  402. }
  403. .x-button .x-icon-el:before {
  404. color: #fff;
  405. height: 15px;
  406. }
  407. .x-button .x-button-el {
  408. color: #fff;
  409. display: none !important;
  410. }
  411. .x-button .x-text-el {
  412. color: #fff;
  413. }
  414. .x-button.btn-default .x-text-el {
  415. color: #333;
  416. }
  417. .x-button.x-pressing .x-inner-el, .x-keyboard-mode .x-button.x-pressing .x-inner-el, .x-button.x-pressed .x-inner-el, .x-keyboard-mode .x-button.x-pressed .x-inner-el {
  418. border-color: transparent;
  419. background-color: transparent;
  420. }
  421. .x-textfield.x-invalid .x-underline-el:after {
  422. height: 1px;
  423. background-color: #e2e2e2;
  424. }
  425. .x-displayfield .x-input-el {
  426. font-size: 16px;
  427. }
  428. .x-textfield .x-underline-el {
  429. display: none;
  430. }
  431. .x-textfield .x-input-el {
  432. padding: 0;
  433. }
  434. .scanCode {
  435. z-index: 1;
  436. position: relative;
  437. overflow: visible;
  438. background-color: #f5f5f5;
  439. -webkit-box-shadow: 2px 2px 5px 0 rgba(0, 0, 0, .12), 2px 2px 5px 0 rgba(0, 0, 0, .08);
  440. box-shadow: 2px 2px 5px 0 rgba(0, 0, 0, .12), 2px 2px 5px 0 rgba(0, 0, 0, .08);
  441. }
  442. .yvform .x-field:not(.x-field-solo).x-layout-auto-item, /*yvform紧凑型表单*/
  443. .yvform .x-field:not(.x-field-solo).x-layout-vbox-item {
  444. margin: 0;
  445. padding: 0;
  446. }
  447. .yvform.x-textfield.x-field .x-label-el {
  448. margin: 0;
  449. padding: 0;
  450. }
  451. /* 有问题,不能用
  452. .x-formpanel .x-formpanel-body-wrap-el {
  453. margin-top: 5px;
  454. }
  455. .x-layout-auto-item .x-field {
  456. margin-bottom: 10px;
  457. }
  458. .x-field:not(.x-field-solo).x-layout-auto-item,
  459. .x-field:not(.x-field-solo).x-layout-vbox-item {
  460. margin-top: 0;
  461. margin-bottom: 10px;
  462. padding-bottom: 0;
  463. }
  464. .yvform .x-layout-auto-item .x-field {
  465. margin-bottom: 5px;
  466. }
  467. .yvform .x-field.x-textfield:not(.x-field-solo).x-layout-auto-item,
  468. .yvform .x-field.x-textfield:not(.x-field-solo).x-layout-vbox-item {
  469. margin-bottom: 5px;
  470. }
  471. .wotu-ui .x-formpanel .x-field > .x-label-el {
  472. margin: 0 0 0 10px;
  473. }
  474. .wotu-ui .x-formpanel.yvform .x-field > .x-label-el {
  475. margin: 0 0 0 5px;
  476. }
  477. */
  478. .wotu-ui .autoheight.x-displayfield > .x-label-el {
  479. height: 100%;
  480. }
  481. .wotu-ui .autoheight.x-displayfield > .x-body-wrap-el {
  482. height: 100%;
  483. }
  484. /* 要显示输入框右边的叉叉
  485. .x-cleartrigger .x-icon-el:before {
  486. content: '';
  487. }
  488. */
  489. /*修改底部按钮样式*/
  490. .x-layout-hbox .x-button {
  491. margin: 0 10px;
  492. }
  493. .x-layout-hbox .x-button:first-child {
  494. margin-left: 0;
  495. }
  496. .x-layout-box.x-pack-start {
  497. -webkit-box-pack: justify;
  498. -ms-flex-pack: justify;
  499. justify-content: space-between;
  500. }
  501. /*将表头超出文本显示省略号改为显示全部*/
  502. .x-field.x-no-label-wrap > .x-label-el {
  503. text-overflow: inherit;
  504. }
  505. /*修改剔除口异常处理的样式*/
  506. .x-checkboxfield .x-box-label-el {
  507. font-size: 14px;
  508. padding: 0;
  509. margin-left: 5px;
  510. vertical-align: center;
  511. }
  512. /*修改Aawesome图标样式*/
  513. :root .x-body-el.x-panel-body-el.x-container-body-el .x-pack-start .x-component.x-button.x-has-text.x-has-icon.x-icon-align-left.x-arrow-align-right.x-layout-box-item {
  514. --base-color: #fff;
  515. }
  516. :root .x-component .x-body-el.x-form-fieldset-body-el.x-container-body-el.x-component-body-el.x-layout-auto .x-button {
  517. --base-color: #fff;
  518. }
  519. /*修改表格内的样式*/
  520. .x-headercontainer {
  521. border-top: 1px solid #e2e2e2;
  522. }
  523. .double-header-height .x-gridcolumn .x-text-el {
  524. overflow: visible;
  525. }
  526. .x-gridcolumn.x-leaf:last-child .x-header-el,
  527. .x-column-lines .x-gridcell:last-child {
  528. border-right: none;
  529. }
  530. .x-gridcolumn.x-sorted .x-sort-icon-el {
  531. height: auto;
  532. }
  533. .x-gridcolumn > .x-header-el,
  534. .x-body-el .x-gridcell-body-el {
  535. text-align: center;
  536. font-size: 16px;
  537. }
  538. .x-gridcolumn > .x-header-el {
  539. position: relative;
  540. -webkit-box-pack: center;
  541. -ms-flex-pack: center;
  542. justify-content: center;
  543. }
  544. .x-body-el .x-gridcell-body-el {
  545. font-size: 16px;
  546. }
  547. .x-gridcolumn .x-text-el {
  548. font-weight: bold;
  549. font-size: 15px;
  550. }
  551. .x-gridcolumn .x-title-el .x-font-icon {
  552. position: absolute;
  553. top: 50%;
  554. right: 2px;
  555. -webkit-transform: translateY(-50%);
  556. transform: translateY(-50%);
  557. }
  558. .x-gridcell-body-el, .x-roweditorcell {
  559. white-space: pre-wrap;
  560. word-break: break-all;
  561. }
  562. .x-field.x-label-align-horizontal > .x-body-wrap-el {
  563. min-height: 20px;
  564. }
  565. .x-field > .x-body-wrap-el {
  566. -webkit-box-align: center;
  567. -ms-flex-align: center;
  568. align-items: center;
  569. -webkit-box-flex: 1;
  570. -ms-flex: 1;
  571. flex: 1;
  572. }
  573. :root .x-listitem.x-selected {
  574. --selected-background-color: rgba(224, 224, 224, 0.36863);
  575. }
  576. .x-listitem {
  577. border: none;
  578. border-top: 1px solid #e2e2e2;
  579. border-bottom: 1px solid #e2e2e2;
  580. }
  581. .x-listitem:first-child {
  582. border-top: 1px solid #e2e2e2;
  583. }
  584. .x-listitem.x-pressed {
  585. background-color: rgba(224, 224, 224, 0.36863);
  586. }
  587. .x-panel-outer-border-trbl {
  588. border-right: none;
  589. border-top: none;
  590. }
  591. .x-listitem-inner-el {
  592. display: block;
  593. }
  594. .x-list-inner-ct {
  595. top: -1px;
  596. }
  597. .yvgrid-paging {
  598. -webkit-box-shadow: 0 1px 4px 0 rgba(0, 0, 0, .6);
  599. box-shadow: 0 1px 4px 0 rgba(0, 0, 0, .6);
  600. padding: 4px 0;
  601. }
  602. .x-tabbar .x-tab.x-component {
  603. border-left: none;
  604. border-right: none;
  605. }
  606. .x-tabbar .x-active-indicator-el {
  607. bottom: -1px;
  608. }
  609. /*弹出框样调整*/
  610. .x-mask {
  611. opacity: 0.5;
  612. }
  613. .x-panel .x-dataview-item {
  614. font-size: 15px;
  615. }
  616. .x-dialog.x-panel {
  617. border-radius: 8px;
  618. }
  619. .x-dialog.x-panel .x-innerhtml {
  620. font-size: 16px;
  621. }
  622. .x-actionsheet.x-sheet.x-panel.x-container {
  623. border-radius: 8px 8px 0 0;
  624. --base-color: #fff;
  625. }
  626. :root .x-dock,
  627. :root .x-mask {
  628. --base-pressed-color: rgba(255, 152, 0, 0);
  629. }
  630. .x-dock .x-titlebar {
  631. background-color: #fff !important;
  632. border-bottom: 1px solid #eee;
  633. }
  634. .x-dock .x-titlebar .x-center {
  635. border-bottom: 1px solid #eee;
  636. }
  637. .x-dock .x-titlebar .x-body-el.x-picker-body-el {
  638. background-color: #fff;
  639. }
  640. .x-dock .x-titlebar .x-button {
  641. background-color: #fff;
  642. border: none;
  643. }
  644. .x-dock .x-titlebar .x-button .x-text-el {
  645. color: #1677ff !important;
  646. font-family: '黑体';
  647. font-weight: normal;
  648. }
  649. .x-sheet.x-panel {
  650. border-radius: 8px 8px 0 0;
  651. }
  652. .x-picker .x-dataview {
  653. background: #fff;
  654. }
  655. .x-picker .x-dataview .x-dataview-item {
  656. opacity: 0.3;
  657. }
  658. .x-picker .x-dataview .x-dataview-item {
  659. border: none;
  660. }
  661. .x-picker .x-dataview .x-dataview-item.x-focused {
  662. font-size: 16px;
  663. opacity: 1;
  664. border-top: 1px solid #eee;
  665. border-bottom: 1px solid #eee;
  666. background-color: #fff;
  667. }
  668. .x-panel .x-dataview-item .x-list-label {
  669. color: #333;
  670. font-family: '黑体';
  671. font-weight: normal;
  672. }
  673. .x-mask .x-mask-message {
  674. color: rgba(255, 255, 255, .5);
  675. }
  676. .yvan-msg.yvan-anim {
  677. border-radius: 6px;
  678. }
  679. /*加载弹出框样式调整*/
  680. .x-mask.x-loading-mask {
  681. background-color: transparent;
  682. opacity: 1;
  683. }
  684. .x-mask.x-loading-mask .x-mask-inner {
  685. width: 92px;
  686. height: 82px;
  687. font-size: 15px;
  688. padding: 15px;
  689. -webkit-box-sizing: border-box;
  690. box-sizing: border-box;
  691. border-radius: 5px;
  692. background-color: rgba(0, 0, 0, .8);
  693. }
  694. .x-mask.x-loading-mask .x-mask-message {
  695. color: #fff;
  696. font-size: 14px;
  697. font-weight: normal;
  698. line-height: 14px;
  699. position: static;
  700. }
  701. .x-mask.x-loading-mask.x-has-message .x-loading-spinner-outer {
  702. height: 33px;
  703. }
  704. .x-mask .x-loading-spinner-outer {
  705. min-width: auto;
  706. }
  707. /*.x-loading-spinner > span, .x-loading-spinner > span:before, .x-loading-spinner > span:after,*/
  708. /*首页样式 不要边框
  709. .x-dataview.whiteBgc {
  710. padding: 10px;
  711. }
  712. */
  713. .x-dataview .x-dataview-item {
  714. border: 1px solid #e2e2e2;
  715. border-top: none;
  716. border-left: none;
  717. }
  718. .menus-item {
  719. width: 25%;
  720. padding: 12px 0px;
  721. margin: 0;
  722. }
  723. /*iconfont 图标*/
  724. .x-dataview-item svg {
  725. width: 45px;
  726. height: 45px;
  727. }
  728. /*日历样式修改*/
  729. .x-picker-slot .x-dataview-item.x-selected {
  730. color: #333;
  731. font-family: '黑体';
  732. font-weight: normal;
  733. }
  734. .x-sheet.x-picker .x-sheet-body-el .x-picker-slot.x-first .x-body-el {
  735. border-right: none;
  736. }
  737. /*列表样式调整*/
  738. .goodCard .x-listitem {
  739. border-bottom: none;
  740. border-top: none;
  741. }
  742. .goodCard .x-listitem-inner-el {
  743. padding: 0;
  744. }
  745. .goodCard .x-listitem {
  746. background-color: #fff;
  747. margin-top: 5px;
  748. }
  749. .goodCard:first-child .x-listitem {
  750. margin-top: 0px;
  751. }
  752. .goodCard .goodCardItem {
  753. font-family: '微软雅黑';
  754. position: relative;
  755. padding: 5px 12px;
  756. }
  757. .goodCard .goodCardItem > a {
  758. display: -webkit-box;
  759. display: -ms-flexbox;
  760. display: flex;
  761. color: #333;
  762. margin-bottom: 5px;
  763. }
  764. .goodCard .goodCardItem > div,
  765. .goodCard .goodCardItem > a > div {
  766. font-weight: bold;
  767. text-align: left;
  768. font-size: 14px;
  769. margin-bottom: 5px;
  770. }
  771. .goodCard .goodCardItem a {
  772. text-decoration: none;
  773. }
  774. .goodCard .goodCardItem > div span,
  775. .goodCard .goodCardItem > a > div span {
  776. font-weight: normal;
  777. }
  778. .goodCard .goodCardItem .fixedBtn {
  779. cursor: pointer;
  780. color: #6B9AE1;
  781. border: none;
  782. border: 1px solid #6B9AE1;
  783. background: #fff;
  784. }
  785. .goodCard .goodCardItem .fixedBtn:hover {
  786. color: #fff;
  787. background-color: #589DF6;
  788. }
  789. .goodCard .goodCardItem .fixedBtn:active {
  790. color: #fff;
  791. background-color: #009DF6;
  792. }
  793. .x-listpaging.x-scrolldock.x-scrolldock-start.x-layout-auto-item {
  794. display: none;
  795. }
  796. /*紧凑型表单*/
  797. .wotu-ui .yvform.x-formpanel .x-field > .x-label-el {
  798. margin: 5px 0 0 5px;
  799. }
  800. .wotu-ui .yvform.x-formpanel .x-field > .x-body-wrap-el {
  801. margin-top: 5px;
  802. }
  803. .wotu-ui .yvform .autoheight.x-displayfield > .x-label-el {
  804. height: calc(100% - 5px);
  805. }
  806. .wotu-ui .yvform .autoheight.x-displayfield > .x-body-wrap-el {
  807. height: calc(100% - 5px);
  808. }