success.wxss 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. /* pages/integral/success.wxss */
  2. page{
  3. display:flex;
  4. flex-flow: column nowrap;
  5. justify-content: left;
  6. align-items: center;
  7. box-sizing: border-box;
  8. }
  9. /* 垂直方向布局,水平居中 **/
  10. .flex-column{
  11. display: flex;
  12. flex-flow: column nowrap;
  13. align-items: center;
  14. justify-content: left;
  15. }
  16. /* 水平方向布局,垂直居中 **/
  17. .flex-row{
  18. display: flex;
  19. flex-flow: row nowrap;
  20. align-items: center;
  21. justify-content: center;
  22. }
  23. .success-style{
  24. width: 750rpx;
  25. height: 100%;
  26. justify-content: space-between;
  27. }
  28. .top{
  29. margin-top: 20rpx;
  30. font-size: 38rpx;
  31. font-weight: bold;
  32. }
  33. .bottom{
  34. width: 750rpx;
  35. margin-top: 70vh;
  36. }
  37. .success-card{
  38. width: 650rpx;
  39. height: 100rpx;
  40. background-color: chocolate;
  41. color: #ffffff;
  42. text-align: center;
  43. border-radius: 10rpx;
  44. font-size: 40rpx;
  45. line-height: 100rpx;
  46. margin-bottom: 20rpx;
  47. border: 2rpx solid #949191f7;
  48. }
  49. .success-instructions{
  50. width: 650rpx;
  51. height: 100rpx;
  52. background-color: #f5f5f5;
  53. text-align: center;
  54. border-radius: 10rpx;
  55. font-size: 40rpx;
  56. line-height: 100rpx;
  57. border: 2rpx solid #949191f7;
  58. }