index.wxss 701 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. /**index.wxss**/
  2. .container{
  3. padding: 0;
  4. }
  5. .body{
  6. width: 100%;
  7. height: 100%;
  8. position: fixed;
  9. top: 50%;
  10. left: 0;
  11. transform: translateY(-50%);
  12. }
  13. .container .c_bg{
  14. position: fixed;
  15. z-index: -1;
  16. transform: translate(-50%,-50%);
  17. left: 50%;
  18. top: 50%;
  19. height: 100%;
  20. width: 100%;
  21. filter: blur(10px);
  22. }
  23. .frm{
  24. position: fixed;
  25. top: 50%;
  26. height: 100%;
  27. width: 100%;
  28. left: 50%;
  29. transform: translate(-50%,-50%);
  30. }
  31. .frm>video{
  32. height: 100%;
  33. width: 100%;
  34. position: fixed;
  35. background: none;
  36. transition: all ease 0.5s;
  37. }
  38. .a_btn{
  39. position: fixed;
  40. z-index: 99;
  41. bottom: 28%;
  42. left: 50%;
  43. transform: translate(-50%,-50%);
  44. }
  45. .a_btn image{
  46. height: 68rpx;
  47. }