waitSuccess.wxss 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  1. .main_box {
  2. width: 100%;
  3. height: 100%;
  4. padding: 30rpx;
  5. box-sizing: border-box;
  6. padding-bottom: 210rpx;
  7. overflow: auto;
  8. }
  9. .make_msg_box {
  10. width: 100%;
  11. padding: 30rpx 0rpx 40rpx 0rpx;
  12. box-sizing: border-box;
  13. background: white;
  14. display: flex;
  15. flex-direction: column;
  16. justify-content: center;
  17. align-items: center;
  18. border-radius: 24rpx;
  19. }
  20. .make_msg_box .success_icon {
  21. width: 120rpx;
  22. height: 120rpx;
  23. margin-bottom: 30rpx;
  24. }
  25. .make_msg_box .title {
  26. text-align: center;
  27. font-size: 36rpx;
  28. font-family: PingFang SC;
  29. font-weight: bold;
  30. color: #333;
  31. text-align: left;
  32. }
  33. .tips {
  34. padding: 40rpx 30rpx;
  35. box-shadow: 0px 0px 40rpx 0px rgba(0, 0, 0, 0.06);
  36. border-radius: 24rpx;
  37. margin-top: 30rpx;
  38. background-color: #fff;
  39. }
  40. .tips_name{
  41. font-size: 30rpx;
  42. color: rgba(85, 85, 85, 1);
  43. line-height: 44rpx;
  44. text-align: justify;
  45. }
  46. .btn_list {
  47. height: 100rpx;
  48. display: flex;
  49. position: fixed;
  50. width: 100%;
  51. left: 0;
  52. bottom: 0;
  53. }
  54. .btn_item {
  55. display: flex;
  56. align-items: center;
  57. justify-content: center;
  58. font-size: 36rpx;
  59. font-weight: 500;
  60. color: rgba(166, 166, 166, 1);
  61. background-color: #fff;
  62. width: 50%;
  63. }
  64. .btn_item_width100{
  65. width: 100%;
  66. }