index.scss 701 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. page {
  2. background: #ededed;
  3. }
  4. .container {
  5. padding-bottom: 160rpx;
  6. .content{
  7. .topIcon{
  8. display: flex;
  9. flex-direction: column;
  10. align-items: center;
  11. height:800rpx;
  12. justify-content: center;
  13. image{
  14. width: 100rpx;
  15. height: 100rpx;
  16. border-radius: 50%;
  17. }
  18. .txt{
  19. margin-top: 50rpx;
  20. font-size: 34rpx;
  21. color:#26B3A0 ;
  22. }
  23. }
  24. .btn{
  25. width:90%;
  26. background: #26B3A0;
  27. height: 100rpx;
  28. border-radius: 20rpx;
  29. font-size: 30rpx;
  30. display: flex;
  31. align-items: center;
  32. justify-content: center;
  33. color: #fff;
  34. // font-weight: 600;
  35. margin-left: 50%;
  36. transform: translateX(-50%);
  37. }
  38. }
  39. }