index.less 563 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. .iconAbsolute {
  2. font-size: 14px;
  3. position: absolute;
  4. cursor: pointer;
  5. //color: #fff;
  6. color: #9DA1A7;
  7. &:hover {
  8. color: #70767F
  9. }
  10. }
  11. .iconFixed {
  12. font-size: 14px;
  13. position: fixed;
  14. cursor: pointer;
  15. //color: #fff;
  16. color: #9DA1A7;
  17. &:hover {
  18. color: #70767F
  19. }
  20. }
  21. .left_top{
  22. left: 10px;
  23. top: 10px;
  24. }
  25. .left_bottom{
  26. left: 10px;
  27. bottom: 10px;
  28. }
  29. .right_top{
  30. right: 10px;
  31. top: 10px;
  32. }
  33. .right_bottom{
  34. right: 10px;
  35. bottom: 10px;
  36. }