index.less 687 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. @charset "utf-8";
  2. #textbook-topic-detail {
  3. background: #fff;
  4. min-height: 100%;
  5. .content {
  6. width: 1140px !important;
  7. }
  8. .top {
  9. padding: 8px 0;
  10. height: 60px;
  11. line-height: 44px;
  12. }
  13. .center {
  14. padding-bottom: 100px;
  15. position: relative;
  16. .prev {
  17. position: absolute;
  18. left: -100px;
  19. top: 100px;
  20. cursor: pointer;
  21. }
  22. .next {
  23. position: absolute;
  24. right: -100px;
  25. top: 100px;
  26. cursor: pointer;
  27. }
  28. .detail {
  29. padding: 20px 0;
  30. border-bottom: 1px solid #eee;
  31. .t {
  32. border-left: 6px solid #7876FCFF;
  33. line-height: 14px;
  34. padding-left: 10px;
  35. }
  36. }
  37. }
  38. }