通用评论

index.css 246B

123456789101112131415
  1. .showMore {
  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. .showMore:hover {
  12. background-color: #f5f5f5;
  13. color: #1890ff;
  14. }