index.css 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. .sp-menu-first {
  2. float: left;
  3. width: 100%;
  4. white-space: nowrap;
  5. overflow: hidden;
  6. text-overflow: ellipsis;
  7. line-height: 38px;
  8. background-color: #fff;
  9. color: #000;
  10. cursor: pointer;
  11. border-bottom: 1px solid #E8E8E8;
  12. -moz-box-sizing: border-box;
  13. -webkit-box-sizing: border-box;
  14. box-sizing: border-box;
  15. }
  16. .sp-menu-first:hover>div{
  17. background-color: #1E74D5;
  18. color: #fff;
  19. }
  20. .sp-menu-first > i {
  21. float: left;
  22. width: 23px;
  23. padding-left: 10px;
  24. line-height: 38px;
  25. }
  26. .sp-menu-second {
  27. float: left;
  28. width: 100%;
  29. white-space: nowrap;
  30. overflow: hidden;
  31. text-overflow: ellipsis;
  32. line-height: 38px;
  33. background-color: #fff;
  34. color: #000;
  35. cursor: pointer;
  36. border-bottom: 1px solid #E8E8E8;
  37. -moz-box-sizing: border-box;
  38. -webkit-box-sizing: border-box;
  39. box-sizing: border-box;
  40. }
  41. .sp-menu-second:hover>div{
  42. background-color: #1E74D5;
  43. color: #fff;
  44. }
  45. .sp-menu-second > i {
  46. float: left;
  47. width: 23px;
  48. padding-left: 10px;
  49. line-height: 38px;
  50. }
  51. .active{
  52. background: #1E74D5 !important;
  53. color: #fff !important;
  54. }
  55. .active:hover{
  56. background: #1E74D5 !important;
  57. }