index.scss 988 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  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: 0 46rpx 0 36rpx;
  20. line-height: 40rpx;
  21. color: #666666;
  22. font-size: 28rpx;
  23. .iconImage {
  24. width: 34rpx;
  25. height: 24rpx;
  26. }
  27. .main_title {
  28. color: #222222;
  29. font-size: 32rpx;
  30. font-weight: 500;
  31. height: 124rpx;
  32. line-height: 124rpx;
  33. }
  34. .btn {
  35. width: 500rpx;
  36. height: 72rpx;
  37. line-height: 72rpx;
  38. text-align: center;
  39. background: linear-gradient(180deg, #26B4EC 0%, #2F8AFF 100%);
  40. border-radius: 36rpx;
  41. color: #FFFFFF;
  42. font-size: 24rpx;
  43. margin: 188rpx auto 0 auto;
  44. }
  45. }
  46. }