index.less 791 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. .left {
  9. position: absolute;
  10. left: 11%;
  11. bottom: 14%;
  12. &>image {
  13. width: 200px;
  14. }
  15. }
  16. }
  17. .video {
  18. position: fixed;
  19. left: 0;
  20. top: 0;
  21. width: 100%;
  22. height: 100%;
  23. z-index: 999;
  24. >video {
  25. width: 100%;
  26. height: 100%;
  27. }
  28. .jump {
  29. position: absolute;
  30. top: 10rpx;
  31. right: 20rpx;
  32. z-index: 1000;
  33. color: #fff;
  34. }
  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. }