index.scss 1014 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. /* pages/downloadPage/index.wxss */
  2. .page {
  3. position: relative;
  4. .headImage {
  5. width: 750rpx;
  6. height: 558rpx;
  7. background-color: #000;
  8. }
  9. .main {
  10. position: absolute;
  11. left: 0;
  12. right: 0;
  13. bottom: 0;
  14. top: 508rpx;
  15. border-top-right-radius: 60rpx;
  16. border-top: 3rpx solid #26B4EC;
  17. border-right: 3rpx solid #26B4EC;
  18. background-color: #ffffff;
  19. padding: 46rpx 46rpx 0 36rpx;
  20. line-height: 40rpx;
  21. color: #666666;
  22. font-size: 28rpx;
  23. line-height: 40rpx;
  24. .iconImage {
  25. width: 34rpx;
  26. height: 24rpx;
  27. }
  28. .main_title {
  29. color: #222222;
  30. font-size: 32rpx;
  31. font-weight: 500;
  32. height: 44rpx;
  33. line-height: 44rpx;
  34. }
  35. .btn {
  36. width: 500rpx;
  37. height: 72rpx;
  38. line-height: 72rpx;
  39. text-align: center;
  40. background: linear-gradient(180deg, #26B4EC 0%, #2F8AFF 100%);
  41. border-radius: 36rpx;
  42. color: #FFFFFF;
  43. font-size: 24rpx;
  44. margin: 188rpx auto 0 auto;
  45. }
  46. }
  47. }