1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 |
- /**index.wxss**/
- .container{
- padding: 0;
- }
- .body{
- width: 100%;
- height: 100%;
- position: fixed;
- top: 50%;
- left: 0;
- transform: translateY(-50%);
- }
- .container .c_bg{
- position: fixed;
- z-index: -1;
- transform: translate(-50%,-50%);
- left: 50%;
- top: 50%;
- height: 100%;
- width: 100%;
- filter: blur(10px);
- }
- .frm{
- position: fixed;
- top: 50%;
- height: 100%;
- width: 100%;
- left: 50%;
- transform: translate(-50%,-50%);
- }
- .frm>video{
- height: 100%;
- width: 100%;
- position: fixed;
- background: none;
- transition: all ease 0.5s;
- }
- .a_btn{
- position: fixed;
- z-index: 99;
- bottom: 28%;
- left: 50%;
- transform: translate(-50%,-50%);
- }
- .a_btn image{
- height: 68rpx;
- }
|