common.css 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947
  1. /* 通用样式的预设 */
  2. /*
  3. color
  4. theme color = #5078cb
  5. header color = #8fbcdc
  6. header kind color = #5078cb
  7. header dropdown background color = #f3faff
  8. footer color = #7bb4dc
  9. button color = #f39800;
  10. */
  11. /* reset */
  12. * {
  13. margin: 0;
  14. padding: 0;
  15. }
  16. html {
  17. color: #000;
  18. background: #fff
  19. }
  20. html, body {
  21. -ms-overflow-style: scrollbar;
  22. }
  23. body,button,input,select,textarea {
  24. font-family: "Microsoft Yahei", "微软雅黑" !important;
  25. font: 12px/1.5 tahoma, arial, 'Hiragino Sans GB', \5b8b\4f53, sans-serif;
  26. }
  27. body a {
  28. cursor: pointer;
  29. }
  30. a:hover {
  31. color: #5078cb;
  32. }
  33. dl a:hover,li>a:hover,p>a:hover {
  34. color: #f50
  35. }
  36. /* IE10 viewport bug workaround */
  37. @-ms-viewport { width: device-width; }
  38. @-o-viewport { width: device-width; }
  39. @viewport { width: device-width; }
  40. /* render html5 elements as block */
  41. header,footer,section,aside,nav,article {
  42. display: block;
  43. }
  44. body {
  45. line-height: 1;
  46. color: #555;
  47. font-size: 12px;
  48. }
  49. #top, #header, #nav, #content, #main, #footer {
  50. min-width: 1170px;
  51. }
  52. #top .container, #header .container, #nav .container, #content .container, #main .container, #footer .container {
  53. width: 1190px;
  54. margin: 0 auto;
  55. }
  56. .carousel-inner,.carousel-control:hover,.carousel-control:focus {
  57. cursor: pointer;
  58. }
  59. .navbar {
  60. margin-bottom: 0;
  61. border-radius: 0;
  62. }
  63. .nav-pills>li+li {
  64. margin-left: 0;
  65. }
  66. /* font-size */
  67. .f12 {
  68. font-size: 12px;
  69. }
  70. .f14 {
  71. font-size: 14px !important;
  72. }
  73. .f16 {
  74. font-size: 16px;
  75. }
  76. .f18 {
  77. font-size: 18px;
  78. }
  79. .f20 {
  80. font-size: 20px;
  81. }
  82. .text-right{
  83. text-align: right !important;
  84. }
  85. .text-left{
  86. text-left: right !important;
  87. }
  88. .text-center{
  89. text-center: right !important;
  90. }
  91. /* text */
  92. .text-theme {
  93. color: #5078cb !important;
  94. }
  95. .text-deep-blue {
  96. color: #23527c;
  97. }
  98. .text-default {
  99. color: #56a022;
  100. }
  101. .text-inverse {
  102. color: #f40 !important;
  103. }
  104. .text-black {
  105. color: black !important;
  106. }
  107. .text-success{
  108. color: #008000 !important;
  109. }
  110. .text-muted {
  111. color: #888 !important;
  112. }
  113. .text-light {
  114. color: #666;
  115. }
  116. .text-blue {
  117. color: #3a9a4f !important;
  118. }
  119. .text-purple {
  120. color: #b029d0 !important;
  121. }
  122. .text-num {
  123. font-style: normal;
  124. font-family: verdana;
  125. }
  126. .text-small {
  127. font-size: 10px;
  128. font-family: "microsoft yahei";
  129. -webkit-transform: scale(0.83);
  130. -o-transform: scale(0.83);
  131. transform: scale(0.83);
  132. }
  133. .text-bold {
  134. font-weight: 700;
  135. }
  136. .text-border-success {
  137. border: 1px solid #f40;
  138. color: #f40;
  139. background-color: #fff;
  140. padding: 2px 4px;
  141. }
  142. .text-trans {
  143. position: absolute;
  144. top: 5px;
  145. right: 5px;
  146. background-color: #fff;
  147. border: 1px solid;
  148. padding: 3px 14px;
  149. font-size: 16px;
  150. font-family: "LiShu";
  151. border-radius: 10px;
  152. -moz-transform: rotate(-10deg);
  153. -webkit-transform: rotate(-10deg);
  154. -o-transform: rotate(-10deg);
  155. transform: rotate(-10deg);
  156. border-radius: 10px;
  157. opacity: 0.7;
  158. white-space: nowrap;
  159. }
  160. .text-trans.success {
  161. color: #ffb433;
  162. border-color: #ffb433;
  163. }
  164. .text-trans.error {
  165. color: #d44950;
  166. border-color: #d44950;
  167. }
  168. .text-trans.warning {
  169. color: #7f64b5;
  170. border-color: #7f64b5;
  171. }
  172. .text-ellipsis {
  173. overflow: hidden;
  174. text-overflow: ellipsis;
  175. white-space: nowrap;
  176. }
  177. .text-link {
  178. color: #5e696e;
  179. cursor: pointer;
  180. text-decoration: underline;
  181. }
  182. .text-required {
  183. font-family: '楷体';
  184. color: #e42a2a;
  185. margin-right: 2px;
  186. }
  187. .text-simple {
  188. color: #9c9c9c
  189. }
  190. /* scroll */
  191. ::-webkit-scrollbar {
  192. width: 10px;
  193. height: 10px;
  194. }
  195. ::-webkit-scrollbar-thumb {
  196. background-color: #c1c1c1;
  197. border-radius: 5px;
  198. }
  199. ::-webkit-scrollbar-thumb:hover {
  200. background-color: #959595;
  201. }
  202. /*placeholder*/
  203. input::-webkit-input-placeholder{
  204. color: #999;
  205. }
  206. input:-moz-placeholder{
  207. color: #999;
  208. }
  209. input::-moz-placeholder{
  210. color: #999;
  211. }
  212.   input:-ms-input-placeholder{
  213. color: #999;
  214. }
  215. /* button btn */
  216. .btn-inverse {
  217. color: #fff;
  218. font-weight: bold;
  219. background-color: #ff7300;
  220. border-color: #ef5813;
  221. }
  222. .btn-inverse:hover,.btn-inverse:focus,.btn-inverse:active,.btn-inverse.active
  223. {
  224. color: #fff;
  225. background-color: #ef5813;
  226. }
  227. .btn-theme {
  228. color: #fff;
  229. font-weight: bold;
  230. background-color: #7bb4dc;
  231. border-color: #5078cb;
  232. }
  233. .btn-theme:hover,.btn-theme:focus,.btn-theme:active,.btn-theme.active
  234. {
  235. color: #fff;
  236. background-color: #5078cb;
  237. }
  238. .input-inverse {
  239. border: 3px solid #ff7300;
  240. border-right-width: 0
  241. }
  242. .badge {
  243. background-color: #aaa;
  244. padding: 2px 5px;
  245. }
  246. .badge-inverse {
  247. background-color: #fe8843;
  248. }
  249. /*dropdown*/
  250. .dropdown>.dropdown-toggle {
  251. border-style: solid;
  252. border-width: 0 1px;
  253. border-color: transparent;
  254. }
  255. .dropdown>.dropdown-toggle>.caret {
  256. margin-top: -2px;
  257. color: #9c9c9c
  258. }
  259. .dropdown:hover>.dropdown-toggle {
  260. position: relative;
  261. background-color: #ffffff;
  262. border: 1px solid #eee;
  263. border-top: 0;
  264. border-bottom: 0;
  265. z-index: 1001;
  266. }
  267. .dropdown:hover>.dropdown-menu {
  268. display: block;
  269. position: absolute;
  270. border-color: #eee;
  271. }
  272. .dropdown:hover .caret,.dropdown-toggle:hover .caret {
  273. border-bottom: 4px solid !important;
  274. border-top: none;
  275. }
  276. .dropdown-submenu {
  277. position: relative;
  278. }
  279. .dropdown-submenu>.dropdown-menu {
  280. top: 0;
  281. left: 100%;
  282. margin-top: 0;
  283. }
  284. .dropdown-submenu:hover>.dropdown-toggle {
  285. position: relative;
  286. background-color: #ffffff;
  287. border-color: transparent;
  288. z-index: 1001;
  289. }
  290. .dropdown-submenu:hover>.dropdown-menu {
  291. display: block;
  292. min-width: 120px;
  293. font-size: 12px;
  294. }
  295. .dropdown-submenu.pull-left {
  296. float: none;
  297. }
  298. .dropdown-submenu.pull-left>.dropdown-menu {
  299. left: -100%;
  300. margin-left: 10px;
  301. -webkit-border-radius: 6px 0 6px 6px;
  302. -moz-border-radius: 6px 0 6px 6px;
  303. border-radius: 6px 0 6px 6px;
  304. }
  305. .dropdown-menu.arrow:before,.dropdown-menu.arrow:after {
  306. content: '';
  307. position: absolute;
  308. top: 15%;
  309. width: 0;
  310. height: 0;
  311. border: 10px solid transparent;
  312. }
  313. .dropdown-menu.arrow.left:before {
  314. margin-top: -11px;
  315. left: -20px;
  316. border: 10px solid transparent;
  317. border-right-color: #aaa;
  318. }
  319. .dropdown-menu.arrow.left:after {
  320. margin-top: -11px;
  321. left: -19px;
  322. border: 10px solid transparent;
  323. border-right-color:#fff;
  324. }
  325. /*form valid*/
  326. input.ng-invalid.ng-dirty,textarea.ng-invalid.ng-dirty {
  327. background-color: #fff8ee;
  328. border-color: #CC0033;
  329. }
  330. .form-control[disabled], .form-control[readonly], fieldset[disabled] .form-control {
  331. cursor: pointer;
  332. }
  333. /* modal 模态框 */
  334. .modal-open {
  335. overflow: auto;
  336. }
  337. .modal-open .modal {
  338. overflow-x: hidden;
  339. overflow-y: hidden;
  340. }
  341. .table-bordered tr>td.border-leright {
  342. border-right: none !important;
  343. border-left: none !important;
  344. }
  345. .modal {
  346. position: absolute;
  347. top:50%;
  348. left:50%;
  349. margin-left:-50%;
  350. margin-top:-300px;
  351. }
  352. .modal-backdrop.in {
  353. filter: alpha(opacity=30);
  354. opacity: .3;
  355. }
  356. /*loading new by suntg*/
  357. .loading {
  358. display: none;
  359. position: fixed;
  360. width: 100%;
  361. height: 100%;
  362. top: 0;
  363. left: 0;
  364. }
  365. .loading.in {
  366. display: block;
  367. z-index: 99999;
  368. }
  369. .loading.in>i {
  370. position: absolute;
  371. top: 50%;
  372. left: 50%;
  373. margin: -66px 0 0 -33px;
  374. background: url("../img/all/loading.gif") no-repeat center center;
  375. width: 66px;
  376. height: 66px;
  377. }
  378. /* ::: 面板 ::: */
  379. .u-panel {
  380. border: 1px solid #1BA5F8;
  381. -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
  382. box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
  383. }
  384. .u-panel-heading {
  385. height: 57px;
  386. color: rgb(255, 255, 255);
  387. font-size: 14px;
  388. background-image: url("../img/product/title-higher-bg.png");
  389. text-align: center;
  390. line-height: 57px;
  391. }
  392. .u-panel-body {
  393. padding: 5px;
  394. text-align: center;
  395. min-height: 75px;
  396. font-size: 12px;
  397. position: relative;
  398. background-color: rgb(255, 255, 255);
  399. line-height: 1.8;
  400. }
  401. .u-panel-body > div {
  402. position: absolute;
  403. top: 50%;
  404. left: 50%;
  405. transform: translate(-50%, -50%);
  406. }
  407. /* 提示框 */
  408. .callout {
  409. position: absolute;
  410. border: 1px solid #dddddd;
  411. background-color: white;
  412. box-shadow: 5px 5px 5px #E2E3E4;
  413. color: hsl(0, 100%, 50%);
  414. border-radius: 3px;
  415. padding: .3em .7em;
  416. z-index: 10;
  417. }
  418. .callout::before {
  419. content: "";
  420. position: absolute;
  421. top: -.4em; left: 1em;
  422. padding: .35em;
  423. background: inherit;
  424. border: inherit;
  425. border-right: 0;
  426. border-bottom: 0;
  427. transform: rotate(45deg);
  428. }
  429. /*
  430. * 表格单元格之间流出空隙
  431. * @author yangck
  432. */
  433. table .before-blank, .table-bordered>tbody>tr>td.before-blank, .table-bordered>tbody>tr>th.before-blank, .table-bordered>tfoot>tr>td.before-blank, .table-bordered>tfoot>tr>th.before-blank, .table-bordered>thead>tr>td.before-blank, .table-bordered>thead>tr>th.before-blank {
  434. position: relative;
  435. border-right: 13px solid white;
  436. }
  437. table .before-blank:before {
  438. position: absolute;
  439. top: 0;
  440. right: -0.5px;
  441. content: " ";
  442. height: 100%;
  443. width: 1px;
  444. background: #eee;
  445. /*border: 1px solid #eee;*/
  446. }
  447. table .before-blank:after {
  448. position: absolute;
  449. top: 0;
  450. right: -13.5px;
  451. content: " ";
  452. height: 100%;
  453. width: 1px;
  454. background: #eee;
  455. }
  456. table th.before-blank:before, table th.before-blank:after {
  457. background: #317eac;
  458. }
  459. .select-adder {
  460. background: url(../img/user/images/xiala.png) right no-repeat #fff !important;
  461. background-position-x: 100% !important;
  462. }
  463. .check-active{
  464. padding-left: 0 !important;
  465. }
  466. .check-active label{
  467. width: 15px;
  468. height: 15px;
  469. display: inline-block;
  470. background: url(../img/user/images/check.png) no-repeat;
  471. position: relative;
  472. padding-left: 0 !important;
  473. overflow: hidden;
  474. margin-bottom: 0 !important;
  475. vertical-align: sub;
  476. margin-right: 5px !important;
  477. min-height: 15px !important;
  478. left: 0 !important;
  479. }
  480. .check-active input{
  481. display: none;
  482. }
  483. .check-active span{
  484. font-size: 14px;
  485. }
  486. .check-active a:hover{
  487. color: #5078cb !important;
  488. }
  489. .check-active input[type="checkbox"]:checked + label {
  490. background-position: -15px 0;
  491. }
  492. .check-active input[type="checkbox"]:checked + label + span{
  493. color: #5078cb;
  494. }
  495. .hei16{
  496. height: 14px !important;
  497. background: #ecf2fd;
  498. padding: 0 !important;
  499. border-bottom: none !important;
  500. }
  501. /*公用table*/
  502. .public-tab{
  503. margin-bottom: 0;
  504. }
  505. .public-tab.table tr td, .public-tab.table tr th {
  506. font-size: 14px;
  507. vertical-align: middle !important;
  508. }
  509. .public-tab.table>tbody+tbody{
  510. border-top: none;
  511. }
  512. .public-tab.table>thead>tr{
  513. height: 40px !important;
  514. }
  515. .public-tab.table>thead>tr>th,.public-tab.table>tbody>tr>td{
  516. border-bottom: #e8e8e8 1px solid;
  517. text-align: center;
  518. }
  519. .public-tab.table>thead>tr>th{
  520. border-bottom: none !important;
  521. }
  522. .public-tab.table>tbody>tr>td{
  523. border-top: none;
  524. border-bottom: #e8e8e8 1px solid;
  525. }
  526. .public-tab.table>tbody>tr>td a{
  527. margin: 0 10px;
  528. }
  529. .grey{
  530. color: #999;
  531. }
  532. .search-check{
  533. width: 100%;
  534. height: 54px;
  535. background: #fff;
  536. padding-top: 10px;
  537. margin-bottom: 16px;
  538. }
  539. .search-check .search{
  540. width: 550px;
  541. margin-left: 150px;
  542. }
  543. .search-check .search .form-control{
  544. width: 340px;
  545. float: left;
  546. height: 34px;
  547. border-radius: 0;
  548. box-shadow: none;
  549. border-right: none;
  550. }
  551. .search-check .search button,.search-check .search a{
  552. display: inline-block;
  553. width: 94px;
  554. height: 34px;
  555. line-height: 34px;
  556. text-align: center;
  557. font-size: 14px;
  558. }
  559. .search-check .search button{
  560. background: #d3e1fc;
  561. border-radius: 0;
  562. border: none !important;
  563. border-left: none;
  564. }
  565. .search-check .search a{
  566. background: #5078cb;
  567. color: #fff;
  568. float: right;
  569. }
  570. .search-check .search button:hover,.search-check .search a:hover{
  571. color: #fff;
  572. background: #3f7ae3;
  573. }
  574. .search-check .check{
  575. font-size: 14px;
  576. line-height: 35px;
  577. }
  578. .search-check .check a{
  579. font-size: 14px;
  580. margin-right: 20px;
  581. color: #333;
  582. }
  583. .search-check .check a:hover{
  584. color: #5078cb;
  585. }
  586. .search-check .check .check-active{
  587. margin-right: 15px;
  588. }
  589. .search-check .check .check-active span{
  590. font-weight: normal;
  591. color: #333;
  592. }
  593. .search-check .check .check-active label{
  594. margin-right: 0 !important;
  595. }
  596. .check-input input{
  597. display: none;
  598. }
  599. .check-input label label {
  600. width: 15px;
  601. height: 15px;
  602. display: inline-block;
  603. background: url(../img/user/images/check.png) no-repeat;
  604. position: relative;
  605. padding-left: 0 !important;
  606. overflow: hidden;
  607. margin-bottom: 0 !important;
  608. vertical-align: sub;
  609. min-height: 15px !important;
  610. left: 0 !important;
  611. }
  612. .check-input input[type="checkbox"]:checked + label{
  613. background-position: -15px 0;
  614. }
  615. .screen .sreach .btn-default{
  616. border: none;
  617. }
  618. .screen .sreach table .text-center{
  619. padding-bottom: 0 !important;
  620. }
  621. .blue-bg{
  622. background: #5078cb !important;
  623. }
  624. /*分页公共样式*/
  625. div.ng-table-pager a.page-a{
  626. background: #5078cb !important;
  627. }
  628. .wanted_list01 .pagination>.active>a{
  629. background: #5078cb;
  630. }
  631. .down-goods-btn{
  632. display: inline-block;
  633. width: 94px;
  634. height: 30px;
  635. line-height: 30px;
  636. text-align: center;
  637. font-size: 14px;
  638. background: #5078cb;
  639. color: #fff;
  640. float: right;
  641. margin-right: 15px;
  642. margin-top: 2px;
  643. }
  644. .down-goods-btn:hover{
  645. background: #3f7ae3;
  646. color: #fff;
  647. }
  648. .ng-table-pager{
  649. margin-right: 20px !important;
  650. background: #fff;
  651. }
  652. .ng-table-pager .ng-table-pagination li.active a{
  653. background: #5078cb !important;
  654. }
  655. .ng-table-pager .ng-table-pagination li.active a:hover{
  656. color: #fff !important;
  657. }
  658. div.ng-table-pager div.page-go-block{
  659. margin-top: 0 !important;
  660. }
  661. .ng-table-pagination .page-number{
  662. height: 30px !important;
  663. border-bottom-right-radius: 0;
  664. border-top-right-radius: 0;
  665. }
  666. body div.ng-table-pager input.page-number{
  667. width: 40px;
  668. height: 30px;
  669. padding: 0 !important;
  670. line-height: 30px;
  671. }
  672. body div.ng-table-pager a.page-a{
  673. color: #fff;
  674. border-color: #4574E8;
  675. /*padding: 6px 6px !important;*/
  676. font-size: 14px;
  677. border-top-right-radius: 4px;
  678. border-bottom-right-radius: 4px;
  679. text-decoration: none;
  680. height: 30px !important;
  681. display: inline-block;
  682. width: 35px;
  683. padding: 0;
  684. text-align: center;
  685. line-height: 30px;
  686. }
  687. .ng-table-pagination .page-a:hover{
  688. background: none !important;
  689. }
  690. .text-more{
  691. display: block;
  692. text-overflow: ellipsis;
  693. overflow: hidden;
  694. white-space: nowrap;
  695. }
  696. .no-record-list tr{
  697. height: 150px !important;
  698. }
  699. .no-record-list tr:hover{
  700. background: none !important;
  701. }
  702. .no-record-list tr span{
  703. font-size: 12px;
  704. color: #999;
  705. margin-left: 20px;
  706. }
  707. .no-record-list tr td{
  708. border-bottom: none !important;
  709. }
  710. .public-tab.table .no-record-list tr td{
  711. vertical-align: middle !important;
  712. }
  713. .no-record-list tr td img,.no-record-list tr td span{
  714. position: relative;
  715. bottom: -20px;
  716. }
  717. .no-record-list tr.height200{
  718. height: 200px !important;
  719. }
  720. .no-record-list tr.height200 img,.no-record-list tr.height200 span{
  721. bottom: 0 !important;
  722. }
  723. #left-nav-fragment .user_left ul li a:focus,#left-nav-fragment .user_left p:hover{
  724. color: #fff !important;
  725. }
  726. input:required:invalid, input:focus:invalid, textarea:required:invalid, textarea:focus:invalid{box-shadow: none;}
  727. .color333{
  728. color: #333 !important;
  729. }
  730. .color666{
  731. color: #666 !important;
  732. }
  733. .color999{
  734. color: #999 !important;
  735. }
  736. ::-webkit-input-placeholder { /* WebKit, Blink, Edge */
  737. color: #999;
  738. }
  739. :-moz-placeholder { /* Mozilla Firefox 4 to 18 */
  740. color: #999;
  741. }
  742. ::-moz-placeholder { /* Mozilla Firefox 19+ */
  743. color: #999;
  744. }
  745. :-ms-input-placeholder { /* Internet Explorer 10-11 */
  746. color: #999;
  747. }
  748. /*显示多少条下拉*/
  749. .show-input{
  750. margin-right: 40px;
  751. width: 116px;
  752. display: inline-block;
  753. }
  754. .show-input .form-control{
  755. width: 45px;
  756. height: 22px;
  757. line-height: 22px;
  758. border-radius: 1px;
  759. padding: 0 2px;
  760. float: right;
  761. margin-left: 5px;
  762. font-size: 12px;
  763. }
  764. .search-check .more-hover {
  765. color: #fff !important;
  766. }
  767. .search-check .check{
  768. position: relative;
  769. }
  770. .search-check .check ul{
  771. width: 94px;
  772. position: absolute;
  773. left: 0;
  774. top: 30px;
  775. background: #fff;
  776. border: #e8e8e8 1px solid;
  777. padding: 5px 0;
  778. display: none;
  779. z-index: 200;
  780. }
  781. .search-check .check:hover ul{
  782. display: inline-block;
  783. }
  784. .search-check .check ul li{
  785. width: 100%;
  786. line-height: 22px;
  787. float: left;
  788. }
  789. .search-check .check ul li a{
  790. display: inline-block;
  791. width: 100%;
  792. height: 22px;
  793. text-align: center;
  794. font-size: 14px;
  795. line-height: 22px;
  796. }
  797. .red{
  798. color: #f00 !important;
  799. }
  800. .blue{
  801. color: #5078cb !important;
  802. }
  803. /*全选操作*/
  804. .operation-btn{
  805. margin-right: 15px;
  806. margin-top: 4px;
  807. }
  808. .operation-btn a{
  809. width: 55px;
  810. height: 26px;
  811. line-height: 26px;
  812. display: inline-block;
  813. text-align: center;
  814. font-size: 14px;
  815. }
  816. .operation-btn a.off{
  817. background: #b4b5b9;
  818. color: #333;
  819. margin-right: 10px;
  820. }
  821. .operation-btn a.ok{
  822. background: #5078cb;
  823. color: #fff;
  824. }
  825. /*改为按钮*/
  826. .edit-icon button {
  827. width: 50px;
  828. height: 24px;
  829. border: none;
  830. color: #fff;
  831. float: left;
  832. }
  833. .edit-icon button:nth-of-type(2){
  834. margin-top: 3px;
  835. }
  836. .edit-icon button.ok {
  837. background: #33b401;
  838. }
  839. .edit-icon button.off {
  840. background: #f15601;
  841. }
  842. .edit-icon button.edit {
  843. background: #5078cb;
  844. }
  845. .edit-icon button.up {
  846. background: #fff;
  847. border: #5078cb 1px solid;
  848. color: #5078cb;
  849. }
  850. .edit-icon button.up:hover{
  851. background: #5078cb;
  852. color: #fff;
  853. }
  854. /* 去除数字输入框的上下箭头 */
  855. input::-webkit-outer-spin-button,
  856. input::-webkit-inner-spin-button {
  857. -webkit-appearance: none !important;
  858. margin: 0;
  859. }
  860. /*去除textarea默认右下角可自由放大样式*/
  861. textarea{resize:none}