index.wxss 809 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. /* pages/example/index.wxss */
  2. .container{
  3. overflow: hidden;
  4. }
  5. .container>video{
  6. height: 100%;
  7. width: 100%;
  8. position: fixed;
  9. background: none;
  10. transition: all ease 0.5s;
  11. }
  12. .container > .c_bg{
  13. position: fixed;
  14. z-index: -1;
  15. transform: translate(-50%,-50%);
  16. left: 50%;
  17. top: 50%;
  18. width: 100%;
  19. height: 100%;
  20. filter: blur(10px);
  21. }
  22. .ai_bottom{
  23. width: 280rpx;
  24. display: inline-block;
  25. text-align: center;
  26. position: fixed;
  27. bottom: 8%;
  28. left: 50%;
  29. transform: translateX(-50%);
  30. font-size: 0;
  31. z-index: 999;
  32. }
  33. .ai_bottom > image{
  34. width: 100%;
  35. margin: 0 auto;
  36. display: inline-block;
  37. }
  38. .ai_bottom > text{
  39. font-size: 28rpx;
  40. display: inline-block;
  41. color: #fff;
  42. position: absolute;
  43. top: 50%;
  44. left: 50%;
  45. line-height: 100%;
  46. transform: translate(-50%,-50%);
  47. }