123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869 |
- page {
- padding-top: 50px;
- }
- .indexes {
- position: relative;
- }
- .indexBar {
- position: fixed;
- right: 0px;
- bottom: 0px;
- padding: 10px 10px 10px 30px;
- display: flex;
- align-items: center;
- }
- .indexBar .indexBar-box {
- width: 20px;
- height: auto;
- background: #fff;
- display: flex;
- flex-direction: column;
- box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
- border-radius: 5px;
- }
- .indexBar-item {
- flex: 1;
- width: 20px;
- height: 20px;
- display: flex;
- align-items: center;
- justify-content: center;
- font-size: 12px;
- color: #888;
- }
- movable-view.indexBar-item {
- width: 20px;
- height: 20px;
- z-index: 9;
- }
- movable-view.indexBar-item::before {
- content: "";
- display: block;
- position: absolute;
- left: 0;
- top: 5px;
- height: 10px;
- width: 2px;
- background-color: #f37b1d;
- }
- .indexToast{
- position: fixed;
- top: 0;
- right: 40px;
- bottom: 0;
- background: rgba(0,0,0,0.5);
- width: 50px;
- height: 50px;
- border-radius: 5px;
- margin: auto;
- color: #fff;
- line-height: 50px;
- text-align: center;
- font-size: 24px;
- }
|