index.css 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. .m-chapter-list {
  2. position: relative;
  3. margin-top: 20px;
  4. margin-left: 20px;
  5. border-top: 1px solid #f8f8f8;
  6. }
  7. .m-chapter-list a {
  8. width: 100%;
  9. height: 45px;
  10. border-bottom: 1px solid #f8f8f8;
  11. font-size: 16px;
  12. display: block;
  13. box-sizing: border-box;
  14. padding-left: 6px;
  15. position: relative;
  16. }
  17. .m-chapter-list .current {
  18. border-left: 5px solid #3290d4;
  19. background-color: #fff;
  20. }
  21. .m-chapter-list .current a {
  22. color: #3290d4;
  23. width: 400px;
  24. background-color: #fff;
  25. border-right: 2px solid #fff;
  26. }
  27. .m-chapter-list .current .sub-list {
  28. display: block;
  29. }
  30. .m-chapter-list .current .sub-list a {
  31. color: #666;
  32. font-size: 14px;
  33. line-height: 30px;
  34. }
  35. .m-chapter-list .current .sub-list a:before {
  36. content: "";
  37. border: 1px solid;
  38. width: 8px;
  39. border-color: transparent transparent #ddd #ddd;
  40. display: inline-block;
  41. margin-right: 5px;
  42. position: relative;
  43. top: -3px;
  44. }
  45. .m-chapter-list .current .sub-list a:hover,
  46. .m-chapter-list .current .sub-list a.current {
  47. color: #3290d4;
  48. border-left: 0;
  49. }
  50. .m-chapter-list .sub-list {
  51. display: none;
  52. }