success.wxss 732 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. /* pages/feedback/success.wxss */
  2. .complaint-result {
  3. min-height: 100vh;
  4. background: #f7f7f7;
  5. padding-top: 120rpx;
  6. box-sizing: border-box;
  7. }
  8. .icon-wrapper {
  9. text-align: center;
  10. margin-bottom: 80rpx;
  11. }
  12. .success-img {
  13. width: 400rpx;
  14. height: auto;
  15. }
  16. /* 文字区域 */
  17. .text-wrapper {
  18. text-align: center;
  19. padding: 0 60rpx;
  20. }
  21. .title {
  22. display: block;
  23. font-size: 40rpx;
  24. font-weight: bold;
  25. color: #333;
  26. margin-bottom: 32rpx;
  27. }
  28. .tip {
  29. display: block;
  30. font-size: 32rpx;
  31. color: #666;
  32. margin-bottom: 100rpx;
  33. }
  34. /* 返回按钮 */
  35. .btn-close {
  36. width: 60%;
  37. margin: 0 auto;
  38. height: 88rpx;
  39. line-height: 88rpx;
  40. background: #1b8edb;
  41. color: #fff;
  42. font-size: 34rpx;
  43. border-radius: 12rpx;
  44. }