index.wxss 776 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. /**index.wxss**/
  2. .home {
  3. width: 100%;
  4. height: 100%;
  5. position: relative;
  6. background-size: 100% 100%;
  7. background-position: right bottom;
  8. }
  9. .home .left {
  10. position: absolute;
  11. left: 11%;
  12. bottom: 14%;
  13. }
  14. .home .left>image {
  15. width: 200px;
  16. }
  17. .video {
  18. position: fixed;
  19. left: 0;
  20. top: 0;
  21. width: 100%;
  22. height: 100%;
  23. z-index: 999;
  24. }
  25. .video>video {
  26. width: 100%;
  27. height: 100%;
  28. }
  29. .video .jump {
  30. position: absolute;
  31. top: 10rpx;
  32. right: 20rpx;
  33. z-index: 1000;
  34. color: #fff;
  35. }
  36. .auth {
  37. position: fixed;
  38. left: 0;
  39. top: 110%;
  40. width: 100%;
  41. height: 100%;
  42. z-index: 999;
  43. background-color: rgba(0, 0, 0, 0.5);
  44. backdrop-filter: blur(10px);
  45. pointer-events: none;
  46. opacity: 0;
  47. }
  48. .auth_show {
  49. pointer-events: auto;
  50. opacity: 1;
  51. top: 0;
  52. }