您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
 
 

19 行
397 B

  1. .act{
  2. background:green;
  3. display: block;
  4. width: 50px;
  5. height: 50px;
  6. line-height: 50px;
  7. text-align: center;
  8. color: white;
  9. font-size: 30px;
  10. font-weight: bold;
  11. border-radius: 50%;
  12. -webkit-border-radius: 50%;
  13. text-decoration: none;
  14. transition: ease all 0.3s;
  15. position: fixed;
  16. right: 30px;
  17. bottom:30px;
  18. }
  19. .act-btn:hover{background: blue}