1234567891011121314151617181920212223242526272829303132 |
- .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;
- }
-
- .comment-list-filter-speak {
- margin-left: 20px;
- font-size: 14px;
- color: rgba(93, 93, 93, 0.65);
- }
-
- @media screen and (max-width: 365px) {
- .comment-list-filter-speak {
- float: right;
- }
- }
|