index.less 566 B

1234567891011121314151617181920212223242526272829303132333435363738
  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. }