通用评论

index.css 527B

1234567891011121314151617181920212223242526272829303132
  1. .comment-list-show-more {
  2. color: #4a90e2;
  3. text-align: center;
  4. width: 100%;
  5. background-color: #f8f8f8;
  6. cursor: pointer;
  7. padding: 10px;
  8. margin: 40px auto;
  9. transition: all 0.3s;
  10. }
  11. .comment-list-show-more:hover {
  12. background-color: #f5f5f5;
  13. color: #1890ff;
  14. }
  15. .comment-list-pagination {
  16. text-align: center;
  17. }
  18. .comment-list-filter-speak {
  19. margin-left: 20px;
  20. font-size: 14px;
  21. color: rgba(93, 93, 93, 0.65);
  22. }
  23. @media screen and (max-width: 365px) {
  24. .comment-list-filter-speak {
  25. float: right;
  26. }
  27. }