| 123456789101112131415161718192021222324252627282930313233343536373839 |
- .option-box:empty {
- display: none;
- }
- .logout {
- width: 100rpx;
- height: 100rpx;
- text-align: center;
- border-radius: 50%;
- display: flex;
- align-items: center;
- flex-direction: column;
- justify-content: center;
- background-color: var(--red);
- color: white;
- position: fixed;
- bottom: 150rpx;
- right: 50rpx;
- }
- .scan {
- width: 100rpx;
- height: 100rpx;
- text-align: center;
- border-radius: 50%;
- display: flex;
- align-items: center;
- flex-direction: column;
- justify-content: center;
- background-color: var(--blue);
- color: white;
- position: fixed;
- bottom: 300rpx;
- right: 50rpx;
- }
- .footer {
- width: 100%;
- height: 100rpx;
- }
|