123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566 |
- /**index.wxss**/
- .container{
- position: relative;
- .bg{
- width: 100%;
- height: 100%;
- }
- .btn_con{
- position: absolute;
- bottom: 12%;
- left: 50%;
- transform: translateX(-50%);
- width: 300rpx;
- > image{
- width: 100%;
- margin-bottom: 40rpx;
- &:last-of-type{
- margin-bottom: 0;
- }
- }
- }
- .tips_con{
- position: absolute;
- bottom: 36rpx;
- right: 10rpx;
- width: 80rpx;
- > image{
- width: 100%;
- margin-bottom: 10rpx;
- &:last-of-type{
- margin-bottom: 0;
- }
- }
- }
- .fullgubtn{
- z-index: 999;
- left: 0;
- width: 100%;
- height: 100%;
- top: 0;
- background: rgba(0, 0, 0, 0.5);
- position: fixed;
- }
- .help,.auth{
- position: absolute;
- width: 100%;
- height: 100%;
- top: 0;
- left: 0;
- z-index: 99999;
- backdrop-filter: blur(10rpx) brightness(80%);
- opacity: 0;
- pointer-events: none;
- transition: ease .3s all;
- }
- .help_show,.auth_show{
- opacity: 1;
- pointer-events: auto;
- }
- }
|