shortcut.wxss 263 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 /* components/shortcut/shortcut.wxss */ .shortcut { position: fixed; right: 30rpx; bottom: 70rpx; width: 40px; opacity: 0; visibility: hidden; transition: all 600ms ease; } .shortcut.show { opacity: 1; visibility: visible; }