index.less 593 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. @charset "utf-8";
  2. #course-note {
  3. .top {
  4. height: 60px;
  5. line-height: 60px;
  6. }
  7. .center {
  8. background: #fff;
  9. border-radius: 14px;
  10. padding: 20px;
  11. }
  12. }
  13. .g-modal.article-detail-modal {
  14. .ant-modal-body {
  15. .detail {
  16. height: 600px;
  17. overflow-y: auto;
  18. }
  19. .prev {
  20. position: absolute;
  21. left: -100px;
  22. top: 300px;
  23. color: #fff;
  24. font-size: 37px;
  25. cursor: pointer;
  26. }
  27. .next {
  28. position: absolute;
  29. right: -100px;
  30. top: 300px;
  31. color: #fff;
  32. font-size: 37px;
  33. cursor: pointer;
  34. }
  35. }
  36. }