| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859 |
- /**index.wxss**/
- .home {
- width: 100%;
- height: 100%;
- position: relative;
- background-size: 100% 100%;
- background-position: right bottom;
- .left {
- position: absolute;
- left: 11%;
- bottom: 14%;
- &>image {
- width: 200px;
- }
- }
- }
- .video {
- position: fixed;
- left: 0;
- top: 0;
- width: 100%;
- height: 100%;
- z-index: 999;
- >video {
- width: 100%;
- height: 100%;
- }
- .jump {
- position: absolute;
- top: 10rpx;
- right: 20rpx;
- z-index: 1000;
- color: #fff;
- }
- }
- .auth {
- position: fixed;
- left: 0;
- top: 110%;
- width: 100%;
- height: 100%;
- z-index: 999;
- background-color: rgba(0, 0, 0, 0.5);
- backdrop-filter: blur(10px);
- pointer-events: none;
- opacity: 0;
- }
- .auth_show {
- pointer-events: auto;
- opacity: 1;
- top: 0;
- }
|