common.css 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606
  1. .main-review .review-list{
  2. display: flex;
  3. flex-direction: row;
  4. flex-wrap: wrap;
  5. width: 100%;
  6. height:100%;
  7. overflow: hidden;
  8. }
  9. .main-review .review-list .list{
  10. width: 33.3333%;
  11. height:260px;
  12. padding:0 5px;
  13. }
  14. .main-review .review-list .list >.item{
  15. width: 100%;
  16. height: 100%;
  17. border:1px solid #96b3d4;
  18. display: flex;
  19. flex-direction: column;
  20. }
  21. .main-review .review-list .list .item .item-title{
  22. width: 100%;
  23. height: 40px;
  24. line-height: 40px;
  25. text-align: center;
  26. background: #134c8b;
  27. color: #fff;
  28. font-weight: bold;
  29. font-size: 18px;
  30. }
  31. .main-review .review-list .list .item-container{
  32. flex:1;
  33. display: flex;
  34. flex-direction: row;
  35. flex-wrap: wrap;
  36. align-content: flex-start;
  37. padding-top:10px
  38. }
  39. .main-review .review-list .list .infor{
  40. width: 50%;
  41. display: flex;
  42. flex-direction: row;
  43. line-height: 22px;
  44. min-height: 44px;
  45. }
  46. .main-review .review-list .list .infor.full{
  47. width: 100%;
  48. }
  49. .main-review .review-list .list .infor .label{
  50. width: 80px;
  51. text-align: right;
  52. flex-shrink:0
  53. }
  54. .main-review .review-list .list .infor .value{
  55. flex:1;
  56. margin-right: 10px;
  57. word-break: break-all;
  58. }
  59. .main-review .review-list .list .infor .value input{
  60. width: 100%;
  61. height: 60px;
  62. border:1px solid #dcdcdc;
  63. padding-left: 10px;
  64. font-size: 16px;
  65. font-weight: bold;
  66. }
  67. .main-review .review-list .list .infor.full .label{
  68. line-height: 60px;
  69. }
  70. .main-review .review-list .list .btns{
  71. padding:0 10px 10px 10px;
  72. display: flex;
  73. flex-direction: row;
  74. justify-content: space-between;
  75. }
  76. .main-review .review-list .list .btns .item{
  77. width: 50%;
  78. padding-right: 5px;
  79. }
  80. .main-review .review-list .list .btns button{
  81. width: 100%;
  82. height: 32px;
  83. background: #f6f6f6;
  84. border: 1px solid #e4e4e4;
  85. cursor: pointer;
  86. }
  87. .main-review .review-list .list .btns button:hover{
  88. background: #ededed;
  89. }
  90. .main-review .review-list .list.red>.item{
  91. border-color: #f8b2b2;
  92. }
  93. .main-review .review-list .list.red .item .item-title{
  94. background: #f75656;
  95. }
  96. .main-review .review-list .list.green>.item{
  97. border-color: #99ca8b;
  98. }
  99. .main-review .review-list .list.green .item .item-title{
  100. background: #33a513;
  101. }
  102. .home {
  103. padding: 0 0 0 16px;
  104. }
  105. .home .title {
  106. width: 30%;
  107. text-align: right;
  108. color: #000000d9;
  109. font-size: 14px;
  110. line-height: 1.6;
  111. display: inline-block;
  112. }
  113. .home .subtitle {
  114. color: #5468ff;
  115. font-size: 24px;
  116. line-height: 1.8;
  117. text-align: right;
  118. font-weight: bold;
  119. width: 30%;
  120. display: inline-block;
  121. }
  122. /*页面头部*/
  123. .main-header {
  124. box-shadow: 0px 5px 5px #e4e4e4;
  125. }
  126. .main-header .header-menu {
  127. border: none;
  128. background: none;
  129. }
  130. .main-header .header-menu .x-btn-inner-default-small {
  131. color: #000000;
  132. }
  133. .main-header .header-menu .x-btn-wrap-default-small.x-btn-arrow-right:after {
  134. color: #000000;
  135. }
  136. .main-header .header-menu.x-btn.x-btn-menu-active.x-btn-default-small, .main-header .header-menu.x-btn.x-btn-pressed.x-btn-default-small {
  137. background: none;
  138. border: none;
  139. }
  140. .x-keyboard-mode .main-header .x-btn-focus.x-btn-default-small {
  141. background: none;
  142. box-shadow: none;
  143. }
  144. /*页面头部样式*/
  145. .main-header > .x-panel-bodyWrap > .x-box-layout-ct {
  146. border-left: none;
  147. }
  148. .x-menu .x-menu-icon-separator-default {
  149. border: none
  150. }
  151. .x-menu .x-menu-item-text-default.x-menu-item-indent {
  152. margin-left: 30px;
  153. }
  154. .x-tree-view {
  155. border-top: 1px solid #d0d0d0;
  156. }
  157. .dataview-horizontal > div {
  158. float: left;
  159. padding: 0 20px;
  160. }
  161. .dataview-horizontal > div > div:last-child {
  162. border: black solid 1px;
  163. }
  164. /*表格样式修改*/
  165. .dataview-horizontal-table > div {
  166. float: left;
  167. padding: 10px 10px;
  168. width: 30%;
  169. }
  170. .dataview-horizontal-table > div > table {
  171. border: black solid 1px;
  172. width: 100%;
  173. font-size: large;
  174. }
  175. .dataview-horizontal-table td {
  176. padding: 10px 0;
  177. }
  178. .dataview-horizontal-table button {
  179. font-size: larger;
  180. }
  181. .x-panel-body-default {
  182. border-left: none;
  183. border-right: none;
  184. }
  185. .x-docked-noborder-left {
  186. border-left-width: 1px !important;
  187. }
  188. .x-panel-body-default {
  189. border-top: none;
  190. border-bottom: none;
  191. }
  192. .x-autocontainer-innerCt > .x-toolbar {
  193. border-left: none;
  194. }
  195. .x-autocontainer-innerCt .x-autocontainer-innerCt {
  196. border: none;
  197. }
  198. .x-fieldset-default {
  199. border: 1px solid #dfdfdf !important;
  200. padding: 5px 14px 10px 14px;
  201. }
  202. .x-fieldset .x-autocontainer-innerCt {
  203. border-left: none;
  204. }
  205. .x-toolbar-docked-top {
  206. border-left: 1px solid #d0d0d0;
  207. border-top: none;
  208. }
  209. .x-panel-bodyWrap > .x-box-layout-ct {
  210. border-left: 1px solid #d0d0d0;
  211. border-right: none;
  212. }
  213. .x-tab-bar-body.x-box-layout-ct {
  214. border-left: none;
  215. }
  216. .x-grid-header-ct-default .x-box-inner {
  217. border-top: 1px solid #d0d0d0;
  218. border-bottom: 1px solid #d0d0d0;
  219. }
  220. .x-column-header-sort-DESC .x-column-header-text, .x-column-header-sort-ASC .x-column-header-text {
  221. overflow: hidden;
  222. }
  223. .x-box-inner .x-autocontainer-innerCt {
  224. border-left: none;
  225. }
  226. .x-grid-no-row-lines {
  227. border-left: 1px solid #d0d0d0;
  228. }
  229. .x-tree-checkbox {
  230. color: #9cb9b2;
  231. }
  232. .secondRowBigFont tr td:nth-child(2) .x-grid-cell-inner {
  233. font-size: 16px;
  234. }
  235. /*弹出框样式修改*/
  236. body .x-mask {
  237. background-color: rgba(0, 0, 0, 0.5)
  238. }
  239. .wotu-ui .x-window-default,
  240. .x-toolbar-footer {
  241. background-color: #fff;
  242. width: 600px;
  243. border-radius: 4px;
  244. border: 1px solid #fff;
  245. vertical-align: middle;
  246. margin-bottom: 5px;
  247. }
  248. .wotu-ui .x-window-default, .wotu-ui .x-window-header-default {
  249. border-bottom: 1px solid #bbb;
  250. }
  251. .wotu-ui .x-window-header-default .x-tool-img {
  252. color: #fff;
  253. }
  254. /*.wotu-ui .x-window .x-window-header-default .x-tool-img {*/
  255. /* background: #fff;*/
  256. /*}*/
  257. .x-window-header-title-default > .x-title-text-default {
  258. padding-left: 0;
  259. margin-bottom: 0;
  260. font-size: 18px;
  261. line-height: 1;
  262. color: #fff;
  263. }
  264. .x-window-header.x-header {
  265. color: #000;
  266. }
  267. .x-window {
  268. background-color: ragb(0, 0, 0, 0.5);
  269. }
  270. .x-window .x-window-text {
  271. line-height: 20px;
  272. }
  273. .x-window .x-tool-tool-el.x-tool-img.x-tool-close {
  274. left: 552px;
  275. }
  276. .x-window .x-btn-inner-default-small {
  277. color: #fff;
  278. font-size: 12px;
  279. background-color: #5fa2dd;
  280. border-color: #5fa2dd;
  281. border-radius: 3px;
  282. }
  283. .x-window .x-btn:focus {
  284. box-shadow: none !important;
  285. }
  286. .x-window .x-btn-default-small {
  287. border: none;
  288. background-color: #fff;
  289. }
  290. .x-panel-body-default {
  291. /*border: none;*/
  292. font-size: 14px;
  293. line-height: 20px;
  294. }
  295. .x-window .x-autocontainer-innerCt {
  296. padding: 5px 0;
  297. }
  298. .x-window .x-autocontainer-innerCt .x-autocontainer-innerCt {
  299. padding-left: 0;
  300. }
  301. .x-window .x-btn-default-small {
  302. color: #fff;
  303. border-radius: 3px;
  304. background-color: #5fa2dd;
  305. border-color: #5fa2dd;
  306. }
  307. .x-window .x-btn-default-small:hover,
  308. .x-window .x-btn-default-small:hover .x-btn-inner {
  309. border-color: #518bbd;
  310. background-image: none;
  311. background-color: #5795cb;
  312. }
  313. .x-window .x-btn-default-small:active .x-btn-inner {
  314. border-color: #1960af;
  315. background-image: none;
  316. background-color: #1960af;
  317. }
  318. .x-window .x-component.x-window-text.x-box-item.x-component-default {
  319. font-size: 14px;
  320. margin-bottom: 5px;
  321. }
  322. .x-window .x-panel-bodyWrap > .x-box-layout-ct {
  323. border-left: none;
  324. }
  325. .x-tip .x-autocontainer-innerCt {
  326. border-left: none;
  327. }
  328. .x-docked .x-btn-icon-el-default-small {
  329. color: #fff;
  330. }
  331. .viewer-container.viewer-backdrop.viewer-fixed {
  332. z-index: 19000 !important;
  333. }
  334. .x-mask-msg {
  335. width: 92px;
  336. height: 82px;
  337. text-align: center;
  338. background-color: rgba(0, 0, 0, .8);
  339. border-radius: 4px;
  340. }
  341. .x-mask-loading.x-mask-msg-inner,
  342. .x-mask-msg .x-mask-msg-inner {
  343. margin-top: 8px;
  344. }
  345. .x-mask-msg-inner .x-mask-msg-text {
  346. color: #fff;
  347. padding-top: 30px;
  348. }
  349. .yvan-msg.yvan-anim {
  350. border-radius: 4px;
  351. }
  352. /*表格样式调整*/
  353. .x-grid-header-ct.x-docked.x-grid-header-ct-default {
  354. box-shadow: 0 1px 4px 0 rgba(0, 0, 0, .2);
  355. border-left: none;
  356. }
  357. .x-column-header-sort-ASC .x-column-header-text-inner:after, .x-column-header-sort-DESC .x-column-header-text-inner:after {
  358. position: absolute;
  359. top: 50%;
  360. right: 0px;
  361. transform: translateY(-50%);
  362. }
  363. .x-column-header-text {
  364. text-align: center;
  365. }
  366. .x-column-header-align-right .x-column-header-text {
  367. margin-right: 0;
  368. }
  369. .x-column-header-inner {
  370. padding: 7px;
  371. }
  372. .x-grid-cell-inner .progress-danger {
  373. background-color: #D9534F;
  374. }
  375. .x-grid-cell-inner .progress-warning {
  376. background-color: #F0AD4E;
  377. }
  378. .x-grid-cell-inner .progress-success {
  379. background-color: #5CB85C;
  380. }
  381. .x-grid-cell-inner .area-tag {
  382. width: 100%;
  383. height: 32px;
  384. border: none;
  385. background-color: #16993c;
  386. border: 1px solid #16993c;
  387. /*padding: 7px 0 6px;*/
  388. text-align: center;
  389. text-overflow: ellipsis;
  390. overflow: hidden;
  391. white-space: nowrap;
  392. }
  393. .td-btn .x-grid-cell-inner {
  394. padding: 0 10px 0;
  395. }
  396. .td-percent .x-grid-cell-inner {
  397. padding: 4px 10px;
  398. }
  399. .x-grid-cell-inner .area-tag:hover {
  400. border-color: #40b061;
  401. background-image: none;
  402. background-color: #40b061;
  403. }
  404. .x-grid-cell-inner .area-tag:active {
  405. -webkit-box-shadow: #ced8e1 0 1px 0px 0 inset, #ced8e1 0 -1px 0px 0 inset, #ced8e1 -1px 0 0px 0 inset, #ced8e1 1px 0 0px 0 inset;
  406. -moz-box-shadow: #ced8e1 0 1px 0px 0 inset, #ced8e1 0 -1px 0px 0 inset, #ced8e1 -1px 0 0px 0 inset, #ced8e1 1px 0 0px 0 inset;
  407. box-shadow: #ced8e1 0 1px 0px 0 inset, #ced8e1 0 -1px 0px 0 inset, #ced8e1 -1px 0 0px 0 inset, #ced8e1 1px 0 0px 0 inset;
  408. border-color: #42719a;
  409. background-image: none;
  410. background-color: #209a43;
  411. }
  412. .wotu-ui .x-item-disabled.x-grid-td .x-grid-checkcolumn,
  413. .wotu-ui .x-item-disabled.x-grid-td .x-grid-checkcolumn {
  414. opacity: 0.5;
  415. }
  416. .x-tree-checkbox,
  417. .x-grid-hd-checker-on .x-column-header-checkbox:after,
  418. .x-grid-checkcolumn-checked:after {
  419. color: #9cb9b2;
  420. }
  421. /*工具栏样式修改*/
  422. .x-toolbar-default.x-docked-bottom.x-toolbar-docked-bottom {
  423. box-shadow: 0 1px 4px 0 rgba(0, 0, 0, .6);
  424. border-bottom: none;
  425. }
  426. .x-toolbar.x-toolbar-docked-bottom input {
  427. padding: 0;
  428. }
  429. /*详情样式调整*/
  430. .allowScroll .x-panel-body.x-panel-body-default {
  431. overflow: scroll;
  432. padding: 8px;
  433. }
  434. .allowScroll .x-panel-body.x-panel-body-default pre {
  435. margin: 0;
  436. }
  437. /*图标字体样式调整*/
  438. .x-panel.main-header .x-btn-icon-el-default-small {
  439. color: #404040;
  440. }
  441. .x-form-item-default.x-item-disabled {
  442. opacity: 1;
  443. }
  444. /*特殊样式*/
  445. .large-black .x-form-item-label-text {
  446. font-size: 18px !important;
  447. font-weight: bold !important;
  448. color: black !important;
  449. }
  450. .large-black input.x-form-field {
  451. font-size: 18px !important;
  452. color: black !important;
  453. font-weight: bold !important;
  454. }
  455. .large-green .x-form-item-label-text {
  456. font-size: 18px !important;
  457. font-weight: bold !important;
  458. color: green !important;
  459. }
  460. .large-green input.x-form-field {
  461. font-size: 18px !important;
  462. color: green !important;
  463. font-weight: bold !important;
  464. }
  465. .large-red .x-form-item-label-text {
  466. font-size: 18px !important;
  467. font-weight: bold !important;
  468. color: red !important;
  469. }
  470. .large-red input.x-form-field {
  471. font-size: 18px !important;
  472. color: red !important;
  473. font-weight: bold !important;
  474. }
  475. /* 皮肤
  476. .wotu-ui .x-panel-header.x-panel-header-default {
  477. background: #209a43;
  478. }
  479. .wotu-ui .x-tab-bar.x-tab-bar-default {
  480. background: #209a43;
  481. }
  482. .wotu-ui .x-window-header.x-window-default,
  483. .wotu-ui .x-window-header.x-window-header-default {
  484. border-color: #209a43;
  485. }
  486. .wotu-ui .x-window-header.x-window-header-default-top {
  487. background: #209a43;
  488. }
  489. .wotu-ui .x-window.x-window-default,
  490. .wotu-ui .x-window.x-window-header-default {
  491. border-color: #209a43;
  492. }
  493. .wotu-ui .x-window-header-default .x-tool-tool-el.x-tool-img {
  494. background: #209a43;
  495. }
  496. .x-window.x-layer.x-window-default {
  497. border-color: #209a43 !important;
  498. }
  499. */
  500. /*--grid里面的拖拽-*/
  501. .x-grid-body .x-splitter{
  502. display: none;
  503. }
  504. .x-menu-item-link{
  505. min-height: 30px;
  506. }