index.wxss 790 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. /* pages/work/index.wxss */
  2. .w_body{
  3. width: 100%;
  4. height: 100%;
  5. }
  6. .w_body > .work{
  7. width: 100%;
  8. height: 100%;
  9. }
  10. .w_video{
  11. background: #fff;
  12. position: fixed;
  13. top: 40%;
  14. left: 50%;
  15. transform: translate(-50%,-50%);
  16. z-index: 9999;
  17. padding: 16rpx;
  18. font-size: 0;
  19. width: 90%;
  20. }
  21. .w_video > video,.w_video > image{
  22. width: 100%;
  23. }
  24. .work_bg{
  25. position: fixed;
  26. z-index: 999;
  27. top: 0;
  28. left: 0;
  29. width: 100%;
  30. height: 100%;
  31. }
  32. .work_bg::after{
  33. content: '';
  34. position: absolute;
  35. top: 0;
  36. left: 0;
  37. width: 100%;
  38. height: 100%;
  39. background: rgba(25, 25, 25, 0.1);
  40. }
  41. .w_btn{
  42. position: fixed;
  43. z-index: 9999;
  44. left: 0;
  45. bottom: 10%;
  46. width: 100%;
  47. display: flex;
  48. align-items: center;
  49. justify-content: space-around;
  50. }
  51. .w_btn>image{
  52. width: 40%;
  53. }