global.css 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875
  1. /* 加粗字体 */
  2. @font-face {
  3. font-family: 'siyuan';
  4. src: url('../css/siyuan.OTF');
  5. font-weight: normal;
  6. font-style: normal;
  7. }
  8. /* 正常字体 */
  9. @font-face {
  10. font-family: 'fangyuan';
  11. src: url('../css/SOURCEHANSANSCN-REGULAR.OTF');
  12. font-weight: normal;
  13. font-style: normal;
  14. }
  15. /* 仿宋字体 */
  16. @font-face {
  17. font-family: 'fangsong';
  18. src: url('../css/仿宋.ttf');
  19. font-weight: normal;
  20. font-style: normal;
  21. }
  22. /* 楷体字体 */
  23. @font-face {
  24. font-family: 'kaiti';
  25. src: url('../css/楷体.ttf');
  26. font-weight: normal;
  27. font-style: normal;
  28. }
  29. /* 宋体字体 */
  30. @font-face {
  31. font-family: 'songti';
  32. src: url('../css/宋体.ttf');
  33. font-weight: normal;
  34. font-style: normal;
  35. }
  36. /* 黑体字体 */
  37. @font-face {
  38. font-family: 'heiti';
  39. src: url('../css/黑体.ttf');
  40. font-weight: normal;
  41. font-style: normal;
  42. }
  43. /* 新增表单字体颜色 */
  44. .el-dialog__body .el-form-item__label {
  45. color: black;
  46. }
  47. /* 设置背景颜色 */
  48. .app-container {
  49. background-color: #00365F;
  50. }
  51. /* 设置字体白色 */
  52. .el-table {
  53. color: white !important;
  54. }
  55. .el-pagination__total {
  56. color: white !important;
  57. }
  58. .el-pagination__jump {
  59. color: white !important;
  60. }
  61. .el-form-item__label {
  62. color: white !important;
  63. }
  64. /* 设置表格颜色 */
  65. .el-table tr {
  66. background: #00365F;
  67. color: white;
  68. }
  69. .pagination-container {
  70. background: #00365F !important;
  71. padding: 32px 16px;
  72. }
  73. /* 设置表格字体颜色 */
  74. .el-form-item__label {
  75. color: white !important;
  76. }
  77. .el-pagination__total {
  78. color: white !important;
  79. }
  80. .el-pagination__jump {
  81. color: white !important;
  82. }
  83. /* 设置表格单双数颜色 */
  84. .el-table tr:nth-child(odd) {
  85. background: #00365F;
  86. }
  87. .el-table tr:nth-child(even) {
  88. background: #003C69 !important;
  89. }
  90. /* 表格行划过颜色 */
  91. .el-table__body tr:hover>td {
  92. background-color: #004D86 !important;
  93. }
  94. /* 表格文字居中 */
  95. ::v-deep .cell {
  96. text-align: center;
  97. }
  98. /* 暂无数据背景 */
  99. .el-table__empty-block {
  100. background-color: #00365F;
  101. }
  102. /* 去掉上面的线 */
  103. .el-table th.is-leaf {
  104. border: none !important;
  105. }
  106. /* 去掉最下面的那一条线 */
  107. .el-table::before {
  108. height: 0px !important;
  109. }
  110. /* 去掉表格内的线 */
  111. table td {
  112. border-bottom: none !important;
  113. }
  114. /* 设置重置按钮 */
  115. .Reset {
  116. background-color: #004D86 !important;
  117. color: #fff !important;
  118. border: 1px solid transparent !important;
  119. }
  120. /* 设置搜索刷新背景 */
  121. .el-button.is-circle {
  122. width: 30px;
  123. background-color: #004D86 !important;
  124. color: #fff;
  125. border: 1px solid transparent !important;
  126. }
  127. .el-button.is-circle .el-icon-search {
  128. margin-left: 0px;
  129. }
  130. .el-button.is-circle .el-icon-refresh {
  131. margin-left: 0px;
  132. }
  133. /* input表单颜色 */
  134. .el-input--small .el-input__inner {
  135. /* background: #004D86; */
  136. background-color: transparent;
  137. border: 1px solid #D2D6DE;
  138. /* color: #fff ; */
  139. }
  140. /* 时间日历设置 */
  141. /* .el-range-input{
  142. background: #004D86;
  143. color: #fff;
  144. } */
  145. .el-range-editor--small .el-range-separator {
  146. color: white;
  147. }
  148. /* 分页按钮 */
  149. .el-pagination .el-select .el-input .el-input__inner {
  150. background: #004D86 !important;
  151. border: 0px;
  152. color: #fff;
  153. border: none !important;
  154. }
  155. .el-pagination button:disabled {
  156. color: #fff !important;
  157. background-color: #004D86 !important;
  158. cursor: not-allowed;
  159. }
  160. .el-pagination__editor.el-input .el-input__inner {
  161. background: #004D86 !important;
  162. color: #fff;
  163. border: 0px;
  164. border: none !important;
  165. }
  166. .el-pagination.is-background .el-pager li:not(.disabled).active {
  167. background-color: #004D86 !important;
  168. color: #FFFFFF;
  169. }
  170. /* 分页按钮 */
  171. ::v-deep .el-pagination.is-background .el-pager li {
  172. background-color: #004d86;
  173. color: #fff;
  174. }
  175. ::v-deep .el-pagination.is-background .btn-next {
  176. background-color: #004d86;
  177. color: #fff;
  178. }
  179. ::v-deep .el-pagination.is-background .btn-prev,
  180. .el-pagination.is-background .btn-next,
  181. .el-pagination.is-background .el-pager li {
  182. background: #004d86 !important;
  183. color: #fff !important;
  184. }
  185. .el-pagination.is-background .btn-prev,
  186. .el-pagination.is-background .btn-next {
  187. background: #004d86 !important;
  188. color: #fff !important;
  189. }
  190. .el-button {
  191. border: 1px solid transparent;
  192. }
  193. .refresh {
  194. color: #fff;
  195. }
  196. .el-table__expand-icon {
  197. color: white !important;
  198. }
  199. /* 文本域 */
  200. .el-textarea__inner {
  201. background-color: #004D86;
  202. border: 1px solid #D2D6DE;
  203. color: #fff;
  204. }
  205. /* 表单标题 */
  206. .jiben {
  207. width: 952px;
  208. height: 32px;
  209. background-image: url(../../images/小标题底.png);
  210. margin-bottom: 25px;
  211. color: #fff;
  212. padding-left: 16px;
  213. line-height: 32px;
  214. }
  215. /* 按钮颜色大小 */
  216. .el-button--primary.is-plain {
  217. width: 88px;
  218. height: 36px;
  219. color: #fff;
  220. background: #1d96ff;
  221. border-color: #1d96ff;
  222. font-size: 14px;
  223. }
  224. .el-button--success.is-plain.is-disabled {
  225. width: 88px;
  226. height: 36px;
  227. color: #fff;
  228. background: #13ce66;
  229. border-color: #13ce66;
  230. font-size: 14px;
  231. }
  232. .el-button--success.is-plain {
  233. width: 88px;
  234. height: 36px;
  235. color: #13ce66;
  236. background: #e7faf0;
  237. border-color: #a1ebc2;
  238. font-size: 14px;
  239. }
  240. .el-button--danger.is-plain.is-disabled {
  241. width: 88px;
  242. height: 36px;
  243. color: #fff;
  244. background: #ff4949;
  245. border-color: #ff4949;
  246. font-size: 14px;
  247. }
  248. .el-button--warning.is-plain {
  249. width: 88px;
  250. height: 36px;
  251. color: #fff;
  252. background: #ffba00;
  253. border-color: #ffba00;
  254. font-size: 14px;
  255. }
  256. .el-button--info.is-plain {
  257. width: 88px;
  258. height: 36px;
  259. color: #fff;
  260. background: #909399;
  261. border-color: #909399;
  262. font-size: 14px;
  263. }
  264. .el-button--danger.is-plain {
  265. width: 88px;
  266. height: 36px;
  267. color: #fff;
  268. background: #ffb6b6;
  269. border-color: #ffb6b6;
  270. font-size: 14px;
  271. }
  272. /* 表格更多按钮 */
  273. .more {
  274. width: 21px !important;
  275. border: 1px solid transparent;
  276. padding: 5px 8px;
  277. font-size: 14px;
  278. line-height: 1.5;
  279. border-radius: 3px;
  280. color: #fff !important;
  281. background-color: #1d96ff;
  282. margin-left: 10px !important;
  283. }
  284. /* 表格新增按钮 */
  285. /* .plus {
  286. width: 21px !important;
  287. border: 1px solid transparent;
  288. padding: 5px 8px;
  289. font-size: 14px;
  290. line-height: 1.5;
  291. border-radius: 3px;
  292. color: #fff;
  293. background-color: #1d96ff;
  294. } */
  295. /* 控制按钮样式颜色 start */
  296. /*重置 btr 修改 btu 删除 btd 增加 btc 搜索btn 查看 btk */
  297. /* 重置 btr */
  298. .el-button--btr.is-active,
  299. .el-button--btr:active {
  300. background: #3da1f8;
  301. border-color: #3da1f8;
  302. color: #FFFFFF;
  303. }
  304. .el-button--btr:focus,
  305. .el-button--btr:hover {
  306. background: #3da1f8;
  307. border-color: #3da1f8;
  308. color: #FFFFFF;
  309. }
  310. .el-button--btr {
  311. /* border-color: #20B2AA; */
  312. color: #FFFFFF;
  313. width: 76px;
  314. height: 36px;
  315. background-color: #1d96ff;
  316. border-radius: 4px;
  317. font-size: 14px;
  318. text-align: center;
  319. margin-top: 1px;
  320. padding-top: 11px !important;
  321. }
  322. /* 搜索 btn */
  323. .el-button--btn.is-active,
  324. .el-button--btn:active {
  325. background: #1263aa;
  326. border-color: #1263aa;
  327. color: #FFFFFF;
  328. }
  329. .el-button--btn:focus,
  330. .el-button--btn:hover {
  331. background: #1263aa;
  332. border-color: #1263aa;
  333. color: #FFFFFF;
  334. }
  335. .el-button--btn {
  336. /* border-color: #20B2AA; */
  337. color: #FFFFFF;
  338. width: 76px;
  339. height: 36px;
  340. background-color: #0c477a;
  341. border-radius: 4px;
  342. font-size: 14px;
  343. text-align: center;
  344. margin-top: 1px;
  345. padding-top: 10px !important;
  346. }
  347. .el-icon-refresh {
  348. margin-left: -8px;
  349. }
  350. .el-icon-search {
  351. margin-left: -7px;
  352. }
  353. /* 修改 btu */
  354. .el-button--btu.is-active,
  355. .el-button--btu:active {
  356. background: #13ce66;
  357. border-color: #13ce66;
  358. color: #FFFFFF;
  359. }
  360. .el-button--btu:focus,
  361. .el-button--btu:hover {
  362. background: #35ca78;
  363. border-color: #35ca78;
  364. color: #FFFFFF;
  365. }
  366. .el-button--btu {
  367. width: 46px !important;
  368. border: 1px solid transparent;
  369. padding: 3px 8px;
  370. font-size: 14px;
  371. line-height: 1.5;
  372. border-radius: 3px;
  373. color: #fff;
  374. background-color: #13ce66;
  375. }
  376. /* 删除 btd */
  377. .el-button--btd.is-active,
  378. .el-button--btd:active {
  379. background: #ff4949;
  380. border-color: #ff4949;
  381. color: #FFFFFF;
  382. }
  383. .el-button--btd:focus,
  384. .el-button--btd:hover {
  385. background: #f76a6a;
  386. border-color: #f76a6a;
  387. color: #FFFFFF;
  388. }
  389. .el-button--btd {
  390. width: 46px !important;
  391. border: 1px solid transparent;
  392. padding: 3px 8px;
  393. font-size: 14px;
  394. line-height: 1.5;
  395. border-radius: 3px;
  396. color: #fff;
  397. background-color: #ff4949;
  398. }
  399. /* 查看 btk */
  400. .el-button--btk.is-active,
  401. .el-button--btk:active {
  402. background: #1d96ff;
  403. border-color: #1d96ff;
  404. color: #FFFFFF;
  405. }
  406. .el-button--btk:focus,
  407. .el-button--btk:hover {
  408. background: #41a4fa;
  409. border-color: #41a4fa;
  410. color: #FFFFFF;
  411. }
  412. .el-button--btk {
  413. width: 46px !important;
  414. border: 1px solid transparent;
  415. padding: 3px 8px;
  416. font-size: 14px;
  417. line-height: 1.5;
  418. border-radius: 3px;
  419. color: #fff;
  420. background-color: #1d96ff;
  421. }
  422. /* 增加-新增-添加 btc */
  423. .el-button--btc.is-active,
  424. .el-button--btc:active {
  425. background: #1d96ff;
  426. border-color: #1d96ff;
  427. color: #FFFFFF;
  428. }
  429. .el-button--btc:focus,
  430. .el-button--btc:hover {
  431. background: #41a4fa;
  432. border-color: #41a4fa;
  433. color: #FFFFFF;
  434. }
  435. .el-button--btc {
  436. width: 46px !important;
  437. border: 1px solid transparent;
  438. padding: 3px 8px;
  439. font-size: 14px;
  440. line-height: 1.5;
  441. border-radius: 3px;
  442. color: #fff;
  443. background-color: #1d96ff;
  444. }
  445. /* 控制按钮样式颜色 end */
  446. /* 表格浮层 */
  447. /* .el-table__fixed::before, .el-table__fixed-right::before {
  448. background-color: #00365F;
  449. border: none;
  450. } */
  451. /* 富文本 */
  452. .ql-editor {
  453. color: #fff;
  454. }
  455. /* 点击删除弹框提示 */
  456. .el-message-box {
  457. background-color: #004D86;
  458. color: #fff;
  459. border: none;
  460. width: 316px;
  461. height: 192px;
  462. }
  463. .el-message-box__title {
  464. background-color: #004D86;
  465. color: #fff;
  466. }
  467. .el-message-box__content {
  468. color: #fff;
  469. }
  470. .el-message-box__btns .el-button {
  471. width: 100px;
  472. height: 30px;
  473. margin-right: 24px;
  474. }
  475. /* 对话框重置按钮
  476. ::v-deep .el-button el-button--default el-button--medium{
  477. background-color: #196299 !important;
  478. color: #fff;
  479. } */
  480. /* .el-message-box__btns :first-child {
  481. background: #196299 ;
  482. color: #fff;
  483. border: none;
  484. }
  485. .el-message-box__btns :last-child{
  486. background-color: #1D96FF;
  487. color: #fff;
  488. border: none;
  489. } */
  490. /* 关闭对话框 */
  491. .el-message-box__header {
  492. border-bottom: 1px solid #718A9D;
  493. }
  494. .el-message-box__btns {
  495. margin: 20px 0px;
  496. }
  497. .el-message-box__content {
  498. margin-top: 15px;
  499. }
  500. /* flex布局 */
  501. .d-flex {
  502. display: flex;
  503. }
  504. .j-center {
  505. justify-content: center;
  506. }
  507. .j-space-around {
  508. justify-content: space-around;
  509. }
  510. .j-space-between {
  511. justify-content: space-between;
  512. }
  513. .a-center {
  514. align-items: center;
  515. }
  516. .f-warp {
  517. flex-wrap: wrap;
  518. }
  519. /* 宽度 */
  520. .w-100 {
  521. width: 100%;
  522. }
  523. .w-200 {
  524. width: 200px;
  525. }
  526. .w-300 {
  527. width: 300px;
  528. }
  529. .w-350 {
  530. width: 350px;
  531. }
  532. .w-400 {
  533. width: 400px;
  534. }
  535. .w-500 {
  536. width: 500px;
  537. }
  538. /*弹框样式*/
  539. ::v-deep .el-dialog {
  540. width: 1030px !important;
  541. background-color: #004d86;
  542. }
  543. ::v-deep .el-dialog__header {
  544. border-bottom: 1px solid #718a9d;
  545. }
  546. ::v-deep .el-dialog__title {
  547. color: #fff;
  548. font: 18px;
  549. }
  550. ::v-deep .el-dialog__headerbtn .el-dialog__close {
  551. color: #fff;
  552. }
  553. .el-form-item ::v-deep .el-input__inner {
  554. height: 36px;
  555. background: #004d86;
  556. color: #fff;
  557. }
  558. /* 左侧导航栏样式 */
  559. #app .has-logo {
  560. background: linear-gradient(180deg, #07162F, #102C57);
  561. }
  562. #app .has-logo .sidebar-logo-container {
  563. background: rgba(0, 0, 0, 0) !important;
  564. }
  565. #app .sidebar-container .el-menu {
  566. background: rgba(0, 0, 0, 0) !important;
  567. }
  568. .sidebar-container .el-scrollbar__view {
  569. background: transparent;
  570. }
  571. #app .sidebar-container .el-menu-item,
  572. #app .sidebar-container .el-submenu__title {
  573. background-color: rgba(0, 0, 0, 0) !important;
  574. }
  575. body #app .sidebar-container .theme-dark .nest-menu .el-submenu>.el-submenu__title,
  576. #app .sidebar-container .theme-dark .el-submenu .el-menu-item {
  577. background-color: transparent !important;
  578. }
  579. #app .sidebar-container .theme-dark .nest-menu .el-submenu>.el-submenu__title:hover,
  580. #app .sidebar-container .theme-dark .el-submenu .el-menu-item:hover {
  581. background-color: transparent !important;
  582. color: #fff !important;
  583. }
  584. #app .sidebar-container .theme-dark .is-active>.el-submenu__title {
  585. color: #FFF !important;
  586. background-color: #013667 !important;
  587. }
  588. .el-menu-item.is-active {
  589. color: #fff !important;
  590. background-image: url('../images/左侧导航栏选中.png');
  591. }
  592. .el-scrollbar li {
  593. background-color: transparent !important;
  594. }
  595. /* 输入框显示手指 */
  596. ::v-deep .el-input__inner {
  597. cursor: pointer !important;
  598. border: none;
  599. }
  600. /* 页面左栏图标大小 */
  601. .el-submenu__title>svg {
  602. width: 22px !important;
  603. height: 22px !important;
  604. vertical-align: -0.4em !important;
  605. }
  606. /*禁用样式*/
  607. .el-input.is-disabled .el-input__suffix {
  608. display: none;
  609. }
  610. .el-textarea.is-disabled .el-textarea__inner {
  611. background: #004d86;
  612. }
  613. /* .el-tree--highlight-current .el-tree-node.is-current > .el-tree-node__content{
  614. color: #00365f;
  615. background-color: red !important;
  616. } */
  617. /* .el-tree--highlight-current .el-tree-node.is-current > .el-tree-node__content:after{
  618. content: "";
  619. width:10px;
  620. height: 10px;
  621. border-radius: 50%;
  622. background-color: #67c23A;
  623. margin-left:80px;
  624. } */
  625. /* 查看弹框背景 */
  626. #chakan>.el-dialog {
  627. background-color: #fff !important;
  628. border-radius: 7px;
  629. }
  630. #chakan>.el-dialog .el-dialog__header .el-dialog__title,
  631. #chakan>.el-dialog .el-dialog__header .el-dialog__title button i,
  632. #chakan>.el-dialog .el-dialog__body #contents tbody,
  633. #chakan>.el-dialog .el-dialog__headerbtn .el-dialog__close {
  634. color: black;
  635. font-family: ui-serif;
  636. }
  637. /* table表格 */
  638. .el-dialog__wrapper .el-table th.el-table__cell {
  639. background-color: transparent;
  640. color: white;
  641. }
  642. .el-dialog__wrapper .el-table th.el-table__cell .cell {
  643. text-align: center;
  644. }
  645. .el-dialog__wrapper .el-table .el-table__row .cell {
  646. text-align: center;
  647. }
  648. .el-dialog__wrapper .el-table .el-table__row {
  649. height: 60px !important;
  650. }
  651. .el-dialog__wrapper .el-table .el-table__row .el-progress {
  652. margin-bottom: 0px !important;
  653. }
  654. .guizhangzhidu .RankingTables .el-table__cell {
  655. /* text-align: center !important; */
  656. border-bottom: 1px solid rgba(113, 138, 157, 1) !important;
  657. /* padding-left: 1s0px !important; */
  658. }
  659. .guizhangzhidu .RankingTables .el-table_3_column_9 {
  660. text-align: center;
  661. }
  662. /* 下拉框样式 */
  663. .guizhangzhidu .el-select-dropdown .el-select-dropdown__wrap .el-scrollbar__view {
  664. background-color: white !important;
  665. text-indent: 1em;
  666. }
  667. .guizhangzhidu .el-select-dropdown .el-select-dropdown__wrap .el-scrollbar__view .el-select-dropdown__item {
  668. text-indent: 1em;
  669. }
  670. /* 工作任务表格 */
  671. /* .workTask .el-table__empty-block{
  672. border-bottom: 2px solid white !important;
  673. }
  674. .el-time-panel__content .el-scrollbar__wrap .el-scrollbar__view{
  675. background-color: white !important;
  676. }
  677. .el-date-picker__editor-wrap .el-input__inner{
  678. color: black;
  679. } */
  680. ::v-deep .el-form-item__content{
  681. border-bottom: none;
  682. }
  683. /* 要事日记数据盒子的位置 */
  684. #dialoges .el-dialog {
  685. width: 528px !important;
  686. position: absolute;
  687. right: -1300px;
  688. top: 100px
  689. }
  690. #dialoges .jiben {
  691. width: 461px !important;
  692. height: 32px;
  693. background-image: url(/static/img/小标题底.b7c6f45a.png);
  694. margin-bottom: 25px;
  695. color: #fff;
  696. padding-left: 16px;
  697. line-height: 32px;
  698. }
  699. #dialoges .el-dialog__body{
  700. margin: 11px 0px 21px 16px;
  701. padding-top: 19px !important;
  702. -webkit-box-sizing: border-box;
  703. box-sizing: border-box;
  704. }
  705. /* 门岗管理 */
  706. ::v-deep .el-form-item__content{
  707. border-bottom: none;
  708. }
  709. .el-select-dropdown>.el-scrollbar>.el-select-dropdown__wrap>.el-scrollbar__view{
  710. background-color: white;
  711. }
  712. .el-time-panel>.el-time-panel__content>.el-time-spinner .el-scrollbar__view{
  713. background-color: white;
  714. }
  715. .el-date-picker__editor-wrap .el-input .el-input__inner{
  716. color: black !important;
  717. }
  718. /* 隐藏此刻按钮 */
  719. .el-picker-panel__footer .el-button--text span{
  720. display: none ;
  721. }
  722. .el-tooltip__popper{
  723. width: 300px !important;
  724. height: auto !important;
  725. /* text-align: center; */
  726. text-indent: 2em;
  727. }
  728. /* 主页左侧导航栏 */
  729. .nest-menu li{
  730. padding-left: 25px !important;
  731. }
  732. /* 统一下拉框背景颜色--input下拉框加类名 */
  733. .input_xiala{
  734. color: #000 !important;
  735. }
  736. .input_xiala:hover{
  737. color: #000 !important;
  738. }