common.css 17 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969
  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. z-index: 1000000 !important;
  341. }
  342. .table-bordered tr>td.border-leright {
  343. border-right: none !important;
  344. border-left: none !important;
  345. }
  346. .modal {
  347. position: absolute;
  348. top:50%;
  349. left:50%;
  350. margin-left:-50%;
  351. margin-top:-300px;
  352. }
  353. .modal-backdrop.in {
  354. filter: alpha(opacity=30);
  355. opacity: .3;
  356. }
  357. /*loading new by suntg*/
  358. .loading {
  359. display: none;
  360. position: fixed;
  361. width: 100%;
  362. height: 100%;
  363. top: 0;
  364. left: 0;
  365. }
  366. .loading.in {
  367. display: block;
  368. z-index: 9999999999;
  369. }
  370. .loading.in>i {
  371. position: absolute;
  372. top: 50%;
  373. left: 50%;
  374. margin: -66px 0 0 -33px;
  375. background: url("../img/all/loading.gif") no-repeat center center;
  376. width: 66px;
  377. height: 66px;
  378. }
  379. /* ::: 面板 ::: */
  380. .u-panel {
  381. border: 1px solid #1BA5F8;
  382. -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
  383. box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
  384. }
  385. .u-panel-heading {
  386. height: 57px;
  387. color: rgb(255, 255, 255);
  388. font-size: 14px;
  389. background-image: url("../img/product/title-higher-bg.png");
  390. text-align: center;
  391. line-height: 57px;
  392. }
  393. .u-panel-body {
  394. padding: 5px;
  395. text-align: center;
  396. min-height: 75px;
  397. font-size: 12px;
  398. position: relative;
  399. background-color: rgb(255, 255, 255);
  400. line-height: 1.8;
  401. }
  402. .u-panel-body > div {
  403. position: absolute;
  404. top: 50%;
  405. left: 50%;
  406. transform: translate(-50%, -50%);
  407. }
  408. /* 提示框 */
  409. .callout {
  410. position: absolute;
  411. border: 1px solid #dddddd;
  412. background-color: white;
  413. box-shadow: 5px 5px 5px #E2E3E4;
  414. color: hsl(0, 100%, 50%);
  415. border-radius: 3px;
  416. padding: .3em .7em;
  417. z-index: 10;
  418. }
  419. .callout::before {
  420. content: "";
  421. position: absolute;
  422. top: -.4em; left: 1em;
  423. padding: .35em;
  424. background: inherit;
  425. border: inherit;
  426. border-right: 0;
  427. border-bottom: 0;
  428. transform: rotate(45deg);
  429. }
  430. /*
  431. * 表格单元格之间流出空隙
  432. * @author yangck
  433. */
  434. 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 {
  435. position: relative;
  436. border-right: 13px solid white;
  437. }
  438. table .before-blank:before {
  439. position: absolute;
  440. top: 0;
  441. right: -0.5px;
  442. content: " ";
  443. height: 100%;
  444. width: 1px;
  445. background: #eee;
  446. /*border: 1px solid #eee;*/
  447. }
  448. table .before-blank:after {
  449. position: absolute;
  450. top: 0;
  451. right: -13.5px;
  452. content: " ";
  453. height: 100%;
  454. width: 1px;
  455. background: #eee;
  456. }
  457. table th.before-blank:before, table th.before-blank:after {
  458. background: #317eac;
  459. }
  460. .select-adder {
  461. background: url(../img/user/images/xiala.png) right no-repeat #fff !important;
  462. background-position-x: 100% !important;
  463. }
  464. .check-active{
  465. padding-left: 0 !important;
  466. }
  467. .check-active label{
  468. width: 15px;
  469. height: 15px;
  470. display: inline-block;
  471. background: url(../img/user/images/check.png) no-repeat;
  472. position: relative;
  473. padding-left: 0 !important;
  474. overflow: hidden;
  475. margin-bottom: 0 !important;
  476. vertical-align: sub;
  477. margin-right: 5px !important;
  478. min-height: 15px !important;
  479. left: 0 !important;
  480. }
  481. .check-active input{
  482. display: none;
  483. }
  484. .check-active span{
  485. font-size: 14px;
  486. }
  487. .check-active a:hover{
  488. color: #5078cb !important;
  489. }
  490. .check-active input[type="checkbox"]:checked + label {
  491. background-position: -15px 0;
  492. }
  493. .check-active input[type="checkbox"]:checked + label + span{
  494. color: #5078cb;
  495. }
  496. .hei16{
  497. height: 14px !important;
  498. background: #ecf2fd;
  499. padding: 0 !important;
  500. border-bottom: none !important;
  501. }
  502. /*公用table*/
  503. .public-tab{
  504. margin-bottom: 0;
  505. }
  506. .public-tab.table tr td, .public-tab.table tr th {
  507. font-size: 14px;
  508. vertical-align: middle !important;
  509. }
  510. .public-tab.table>tbody+tbody{
  511. border-top: none;
  512. }
  513. .public-tab.table>thead>tr{
  514. height: 40px !important;
  515. }
  516. .public-tab.table>thead>tr>th,.public-tab.table>tbody>tr>td{
  517. border-bottom: #e8e8e8 1px solid;
  518. text-align: center;
  519. }
  520. .public-tab.table>thead>tr>th{
  521. border-bottom: none !important;
  522. }
  523. .public-tab.table>tbody>tr>td{
  524. border-top: none;
  525. border-bottom: #e8e8e8 1px solid;
  526. }
  527. .public-tab.table>tbody>tr>td a{
  528. margin: 0 10px;
  529. }
  530. .grey{
  531. color: #999;
  532. }
  533. .search-check{
  534. width: 100%;
  535. height: 54px;
  536. background: #fff;
  537. padding-top: 10px;
  538. margin-bottom: 16px;
  539. }
  540. .search-check .search{
  541. width: 550px;
  542. margin-left: 150px;
  543. }
  544. .search-check .search .form-control{
  545. width: 340px;
  546. float: left;
  547. height: 34px;
  548. border-radius: 0;
  549. box-shadow: none;
  550. border-right: none;
  551. }
  552. .search-check .search button,.search-check .search a{
  553. display: inline-block;
  554. width: 94px;
  555. height: 34px;
  556. line-height: 34px;
  557. text-align: center;
  558. font-size: 14px;
  559. }
  560. .search-check .search button{
  561. background: #d3e1fc;
  562. border-radius: 0;
  563. border: none !important;
  564. border-left: none;
  565. }
  566. .search-check .search a{
  567. background: #5078cb;
  568. color: #fff;
  569. float: right;
  570. }
  571. .search-check .search button:hover,.search-check .search a:hover{
  572. color: #fff;
  573. background: #3f7ae3;
  574. }
  575. .search-check .check{
  576. font-size: 14px;
  577. line-height: 35px;
  578. }
  579. .search-check .check a{
  580. font-size: 14px;
  581. margin-right: 20px;
  582. color: #333;
  583. }
  584. .search-check .check a:hover{
  585. color: #5078cb;
  586. }
  587. .search-check .check .check-active{
  588. margin-right: 15px;
  589. }
  590. .search-check .check .check-active span{
  591. font-weight: normal;
  592. color: #333;
  593. }
  594. .search-check .check .check-active label{
  595. margin-right: 0 !important;
  596. }
  597. .check-input input{
  598. display: none;
  599. }
  600. .check-input label label {
  601. width: 15px;
  602. height: 15px;
  603. display: inline-block;
  604. background: url(../img/user/images/check.png) no-repeat;
  605. position: relative;
  606. padding-left: 0 !important;
  607. overflow: hidden;
  608. margin-bottom: 0 !important;
  609. vertical-align: sub;
  610. min-height: 15px !important;
  611. left: 0 !important;
  612. }
  613. .check-input input[type="checkbox"]:checked + label{
  614. background-position: -15px 0;
  615. }
  616. .screen .sreach .btn-default{
  617. border: none;
  618. }
  619. .screen .sreach table .text-center{
  620. padding-bottom: 0 !important;
  621. }
  622. .blue-bg{
  623. background: #5078cb !important;
  624. }
  625. /*分页公共样式*/
  626. div.ng-table-pager a.page-a{
  627. background: #5078cb !important;
  628. }
  629. .wanted_list01 .pagination>.active>a{
  630. background: #5078cb;
  631. }
  632. .down-goods-btn{
  633. display: inline-block;
  634. width: 94px;
  635. height: 30px;
  636. line-height: 30px;
  637. text-align: center;
  638. font-size: 14px;
  639. background: #5078cb;
  640. color: #fff;
  641. float: right;
  642. margin-right: 15px;
  643. margin-top: 2px;
  644. }
  645. .down-goods-btn:hover{
  646. background: #3f7ae3;
  647. color: #fff;
  648. }
  649. .ng-table-pager{
  650. margin-right: 20px !important;
  651. background: #fff;
  652. }
  653. .ng-table-pager .ng-table-pagination li.active a{
  654. background: #5078cb !important;
  655. }
  656. .ng-table-pager .ng-table-pagination li.active a:hover{
  657. color: #fff !important;
  658. }
  659. div.ng-table-pager div.page-go-block{
  660. margin-top: 0 !important;
  661. }
  662. .ng-table-pagination .page-number{
  663. height: 30px !important;
  664. border-bottom-right-radius: 0;
  665. border-top-right-radius: 0;
  666. }
  667. body div.ng-table-pager input.page-number{
  668. width: 40px;
  669. height: 30px;
  670. padding: 0 !important;
  671. line-height: 30px;
  672. }
  673. body div.ng-table-pager a.page-a{
  674. color: #fff;
  675. border-color: #4574E8;
  676. /*padding: 6px 6px !important;*/
  677. font-size: 14px;
  678. border-top-right-radius: 4px;
  679. border-bottom-right-radius: 4px;
  680. text-decoration: none;
  681. height: 30px !important;
  682. display: inline-block;
  683. width: 35px;
  684. padding: 0;
  685. text-align: center;
  686. line-height: 30px;
  687. }
  688. .ng-table-pagination .page-a:hover{
  689. background: none !important;
  690. }
  691. .text-more{
  692. display: block;
  693. text-overflow: ellipsis;
  694. overflow: hidden;
  695. white-space: nowrap;
  696. }
  697. .no-record-list tr{
  698. height: 150px !important;
  699. }
  700. .no-record-list tr:hover{
  701. background: none !important;
  702. }
  703. .no-record-list tr span{
  704. font-size: 12px;
  705. color: #999;
  706. margin-left: 20px;
  707. }
  708. .no-record-list tr td{
  709. border-bottom: none !important;
  710. }
  711. .public-tab.table .no-record-list tr td{
  712. vertical-align: middle !important;
  713. }
  714. .no-record-list tr td img,.no-record-list tr td span{
  715. position: relative;
  716. bottom: -20px;
  717. }
  718. .no-record-list tr.height200{
  719. height: 200px !important;
  720. }
  721. .no-record-list tr.height200 img,.no-record-list tr.height200 span{
  722. bottom: 0 !important;
  723. }
  724. #left-nav-fragment .user_left ul li a:focus,#left-nav-fragment .user_left p:hover{
  725. color: #fff !important;
  726. }
  727. input:required:invalid, input:focus:invalid, textarea:required:invalid, textarea:focus:invalid{box-shadow: none;}
  728. .color333{
  729. color: #333 !important;
  730. }
  731. .color666{
  732. color: #666 !important;
  733. }
  734. .color999{
  735. color: #999 !important;
  736. }
  737. ::-webkit-input-placeholder { /* WebKit, Blink, Edge */
  738. color: #999;
  739. }
  740. :-moz-placeholder { /* Mozilla Firefox 4 to 18 */
  741. color: #999;
  742. }
  743. ::-moz-placeholder { /* Mozilla Firefox 19+ */
  744. color: #999;
  745. }
  746. :-ms-input-placeholder { /* Internet Explorer 10-11 */
  747. color: #999;
  748. }
  749. /*显示多少条下拉*/
  750. .show-input{
  751. margin-right: 40px;
  752. width: 116px;
  753. display: inline-block;
  754. }
  755. .show-input .form-control{
  756. width: 45px;
  757. height: 22px;
  758. line-height: 22px;
  759. border-radius: 1px;
  760. padding: 0 2px;
  761. float: right;
  762. margin-left: 5px;
  763. font-size: 12px;
  764. }
  765. .search-check .more-hover {
  766. color: #fff !important;
  767. }
  768. .search-check .check{
  769. position: relative;
  770. }
  771. .search-check .check ul{
  772. width: 94px;
  773. position: absolute;
  774. left: 0;
  775. top: 30px;
  776. background: #fff;
  777. border: #e8e8e8 1px solid;
  778. padding: 5px 0;
  779. display: none;
  780. z-index: 200;
  781. }
  782. .search-check .check:hover ul{
  783. display: inline-block;
  784. }
  785. .search-check .check ul li{
  786. width: 100%;
  787. line-height: 22px;
  788. float: left;
  789. }
  790. .search-check .check ul li a{
  791. display: inline-block;
  792. width: 100%;
  793. height: 22px;
  794. text-align: center;
  795. font-size: 14px;
  796. line-height: 22px;
  797. }
  798. .red{
  799. color: #f00 !important;
  800. }
  801. .blue{
  802. color: #5078cb !important;
  803. }
  804. /*全选操作*/
  805. .operation-btn{
  806. margin-right: 15px;
  807. margin-top: 4px;
  808. }
  809. .operation-btn a{
  810. width: 55px;
  811. height: 26px;
  812. line-height: 26px;
  813. display: inline-block;
  814. text-align: center;
  815. font-size: 14px;
  816. }
  817. .operation-btn a.off{
  818. background: #b4b5b9;
  819. color: #333;
  820. margin-right: 10px;
  821. }
  822. .operation-btn a.ok{
  823. background: #5078cb;
  824. color: #fff;
  825. }
  826. /*改为按钮*/
  827. .edit-icon button {
  828. width: 50px;
  829. height: 24px;
  830. border: none;
  831. color: #fff;
  832. float: left;
  833. }
  834. .edit-icon button:nth-of-type(2){
  835. margin-top: 3px;
  836. }
  837. .edit-icon button.ok {
  838. background: #33b401;
  839. }
  840. .edit-icon button.off {
  841. background: #f15601;
  842. }
  843. .edit-icon button.edit {
  844. background: #5078cb;
  845. }
  846. .edit-icon button.up {
  847. background: #fff;
  848. border: #5078cb 1px solid;
  849. color: #5078cb;
  850. }
  851. .edit-icon button.up:hover{
  852. background: #5078cb;
  853. color: #fff;
  854. }
  855. /* 去除数字输入框的上下箭头 */
  856. input::-webkit-outer-spin-button,
  857. input::-webkit-inner-spin-button {
  858. -webkit-appearance: none !important;
  859. margin: 0;
  860. }
  861. /*去掉搜狗小键盘样式*/
  862. input::-webkit-input-safebox-button{
  863. display: none;
  864. }
  865. /*去除textarea默认右下角可自由放大样式*/
  866. textarea{resize:none}
  867. .form-control:focus {
  868. border: 1px solid #4272d3;
  869. -webkit-box-shadow: none;
  870. -moz-box-shadow: none;
  871. box-shadow: none;
  872. }
  873. .form-control {
  874. border-color: #a9a9a9;
  875. }
  876. input[type="number"]{
  877. -moz-appearance: textfield !important;
  878. }
  879. select {
  880. -moz-appearance: none;
  881. }