index.less 1.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. /**index.wxss**/
  2. .container{
  3. position: relative;
  4. .bg{
  5. width: 100%;
  6. height: 100%;
  7. }
  8. .btn_con{
  9. position: absolute;
  10. bottom: 12%;
  11. left: 50%;
  12. transform: translateX(-50%);
  13. width: 300rpx;
  14. > image{
  15. width: 100%;
  16. margin-bottom: 40rpx;
  17. &:last-of-type{
  18. margin-bottom: 0;
  19. }
  20. }
  21. }
  22. .tips_con{
  23. position: absolute;
  24. bottom: 36rpx;
  25. right: 10rpx;
  26. width: 80rpx;
  27. > image{
  28. width: 100%;
  29. margin-bottom: 10rpx;
  30. &:last-of-type{
  31. margin-bottom: 0;
  32. }
  33. }
  34. }
  35. .fullgubtn{
  36. z-index: 999;
  37. left: 0;
  38. width: 100%;
  39. height: 100%;
  40. top: 0;
  41. background: rgba(0, 0, 0, 0.5);
  42. position: fixed;
  43. }
  44. .help,.auth{
  45. position: absolute;
  46. width: 100%;
  47. height: 100%;
  48. top: 0;
  49. left: 0;
  50. z-index: 99999;
  51. backdrop-filter: blur(10rpx) brightness(80%);
  52. opacity: 0;
  53. pointer-events: none;
  54. transition: ease .3s all;
  55. }
  56. .help_show,.auth_show{
  57. opacity: 1;
  58. pointer-events: auto;
  59. }
  60. }