1234567891011121314151617181920 |
- .comment-list-show-more {
- color: #4a90e2;
- text-align: center;
- width: 100%;
- background-color: #f8f8f8;
- cursor: pointer;
- padding: 10px;
- margin: 40px auto;
- transition: all 0.3s;
- }
-
- .comment-list-show-more:hover {
- background-color: #f5f5f5;
- color: #1890ff;
- }
-
- .comment-list-pagination {
- text-align: center;
- }
|