1234567891011121314151617181920212223242526272829303132333435363738394041 |
- @charset "utf-8";
- #course-note {
- .top {
- height: 60px;
- line-height: 60px;
- }
- .center {
- background: #fff;
- border-radius: 14px;
- padding: 20px;
- }
- }
- .g-modal.article-detail-modal {
- .ant-modal-body {
- .detail {
- height: 600px;
- overflow-y: auto;
- }
- .prev {
- position: absolute;
- left: -100px;
- top: 300px;
- color: #fff;
- font-size: 37px;
- cursor: pointer;
- }
- .next {
- position: absolute;
- right: -100px;
- top: 300px;
- color: #fff;
- font-size: 37px;
- cursor: pointer;
- }
- }
- }
|