payResult.wxss 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. .payResultContainer{
  2. height: 100vh;
  3. background-color: #f2f2f2;
  4. display: flex;
  5. flex-direction: column;
  6. justify-content: space-around;
  7. align-items: center;
  8. }
  9. .signBox{
  10. display: flex;
  11. flex-direction: column;
  12. justify-content: center;
  13. align-items: center;
  14. flex-grow: 1;
  15. }
  16. .signBox icon{
  17. flex-grow: 2;
  18. display: flex;
  19. flex-direction: column;
  20. justify-content: center;
  21. }
  22. .signBox text {
  23. font-weight: 600;
  24. flex-grow: 1;
  25. }
  26. .buttonBox{
  27. display: flex;
  28. flex-direction: column;
  29. justify-content: start;
  30. align-items: center;
  31. flex-grow: 1;
  32. width: 90%;
  33. margin-top: 8%;
  34. }
  35. .checkOrderBtn{
  36. background-color: #0d7ee7;
  37. color: #FFFFFF;
  38. height: 6vh;
  39. width: 100%;
  40. display: flex;
  41. justify-content: center;
  42. align-items: center;
  43. font-size: small;
  44. font-weight: 600;
  45. border-radius: 10rpx;
  46. margin-bottom: 10%;
  47. }
  48. .finishBtn{
  49. background-color: #FFFFFF;
  50. color: #0d7ee7;
  51. height: 6vh;
  52. width: 100%;
  53. display: flex;
  54. justify-content: center;
  55. align-items: center;
  56. font-size: small;
  57. font-weight: 600;
  58. border-radius: 10rpx;
  59. border: #0d7ee7 solid 5rpx;
  60. }
  61. .bottomTip{
  62. display: flex;
  63. flex-direction: column;
  64. justify-content: center;
  65. flex-grow: 1;
  66. color: #999999;
  67. }