index.less 970 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. /**index.wxss**/
  2. .home{
  3. width: 100%;
  4. height: 100%;
  5. position: relative;
  6. background-size: cover;
  7. background-position: right bottom;
  8. .left{
  9. position: absolute;
  10. width: 36%;
  11. left: 10%;
  12. top: 50%;
  13. transform: translateY(-50%);
  14. display: flex;
  15. flex-direction: column;
  16. justify-content: center;
  17. align-items: center;
  18. >image{
  19. width: 100%;
  20. &:last-of-type{
  21. width: 72%;
  22. }
  23. }
  24. }
  25. }
  26. .video{
  27. position: fixed;
  28. left: 0;
  29. top: 0;
  30. width: 100%;
  31. height: 100%;
  32. z-index: 999;
  33. >video{
  34. width: 100%;
  35. height: 100%;
  36. }
  37. .jump{
  38. position: absolute;
  39. top: 10rpx;
  40. right: 20rpx;
  41. z-index: 1000;
  42. color: #fff;
  43. }
  44. }
  45. .auth{
  46. position: fixed;
  47. left: 0;
  48. top: 110%;
  49. width: 100%;
  50. height: 100%;
  51. z-index: 999;
  52. background-color: rgba(0, 0, 0, 0.5);
  53. backdrop-filter: blur(10px);
  54. pointer-events: none;
  55. opacity: 0;
  56. }
  57. .auth_show{
  58. pointer-events: auto;
  59. opacity: 1;
  60. top: 0;
  61. }