| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364 |
- /**index.wxss**/
- .home{
- width: 100%;
- height: 100%;
- position: relative;
- background-size: cover;
- background-position: right bottom;
- .left{
- position: absolute;
- width: 36%;
- left: 10%;
- top: 50%;
- transform: translateY(-50%);
- display: flex;
- flex-direction: column;
- justify-content: center;
- align-items: center;
- >image{
- width: 100%;
- &:last-of-type{
- width: 72%;
- }
- }
- }
- }
- .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;
- }
|