| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- .iconAbsolute {
- font-size: 14px;
- position: absolute;
- cursor: pointer;
- //color: #fff;
- color: #9DA1A7;
-
- &:hover {
- color: #70767F
- }
- }
-
- .iconFixed {
- font-size: 14px;
- position: fixed;
- cursor: pointer;
- //color: #fff;
- color: #9DA1A7;
-
- &:hover {
- color: #70767F
- }
- }
-
- .left_top{
- left: 10px;
- top: 10px;
- }
-
- .left_bottom{
- left: 10px;
- bottom: 10px;
-
- }
-
- .right_top{
- right: 10px;
- top: 10px;
-
- }
-
- .right_bottom{
- right: 10px;
- bottom: 10px;
- }
|