index.wxss 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. .guide-bg {
  2. width: 100vw;
  3. height: 100vh;
  4. position: relative;
  5. overflow: hidden;
  6. }
  7. .bg-img {
  8. position: absolute;
  9. left: 0; top: 0;
  10. width: 100vw;
  11. height: 100vh;
  12. z-index: 0;
  13. }
  14. .guide-content {
  15. position: relative;
  16. z-index: 1;
  17. width: 100vw;
  18. display: flex;
  19. flex-direction: column;
  20. align-items: center;
  21. margin-top: 38vh;
  22. }
  23. .guide-title {
  24. font-size: 90rpx;
  25. color: #fff;
  26. font-weight: bold;
  27. margin-bottom: 80rpx;
  28. letter-spacing: 8rpx;
  29. text-shadow: 0 4rpx 12rpx rgba(0,0,0,0.2);
  30. margin-top: -10rpx;
  31. }
  32. .guide-welcome {
  33. font-size: 40rpx;
  34. color: #fff;
  35. margin-bottom: 80rpx;
  36. font-weight: 500;
  37. }
  38. .guide-desc {
  39. font-size: 28rpx;
  40. color: #fff;
  41. text-align: center;
  42. margin-bottom: 80rpx;
  43. line-height: 1.8;
  44. text-shadow: 0 2rpx 8rpx rgba(0,0,0,0.15);
  45. }
  46. .guide-line {
  47. width: 60rpx;
  48. height: 6rpx;
  49. background: #fff;
  50. border-radius: 3rpx;
  51. margin-bottom: 80rpx;
  52. }
  53. .guide-btn {
  54. width: 70vw;
  55. height: 80rpx;
  56. background: #7ac81e;
  57. color: #fff;
  58. font-size: 32rpx;
  59. border-radius: 40rpx;
  60. margin-top: 80rpx;
  61. box-shadow: 0 4rpx 16rpx rgba(122,200,30,0.15);
  62. }