myModal.wxss 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  1. .myModal {
  2. width: 100%;
  3. height: 100%;
  4. overflow: hidden;
  5. background: rgba(0, 0, 0, .6);
  6. position: absolute;
  7. top: 0;
  8. z-index: 9999;
  9. }
  10. .box {
  11. width: 644rpx;
  12. height: 400rpx;
  13. background: rgba(255, 255, 255, 1);
  14. border-radius: 8rpx;
  15. margin: 322rpx auto 0;
  16. left: 0;
  17. top: 0;
  18. right: 0;
  19. bottom: 0;
  20. position: relative;
  21. /* padding-top: 66rpx; */
  22. box-sizing:border-box;
  23. }
  24. .havePadding{
  25. padding-top: 66rpx;
  26. }
  27. .btn{
  28. width: 464rpx;
  29. height: 80rpx;
  30. line-height: 80rpx;
  31. border-radius: 56rpx;
  32. font-size: 40rpx;
  33. color: #fff;
  34. text-align: center;
  35. background: #ff9209;
  36. position: absolute;
  37. bottom: 40rpx;
  38. left: 0;
  39. right: 0;
  40. margin: auto;
  41. }
  42. .orange {
  43. font-size: 40rpx;
  44. text-align: center;
  45. color: #f66c1c;
  46. line-height: 56rpx;
  47. }
  48. .normal {
  49. text-align: center;
  50. color: #252525;
  51. font-size: 28rpx;
  52. margin-top: 20rpx;
  53. }
  54. .close{
  55. width: 78rpx;
  56. height: 78rpx;
  57. position: absolute;
  58. left: 0;
  59. right: 0;
  60. margin: 38rpx auto 0;
  61. }
  62. .paySuccess{
  63. color: #6bc74c;
  64. font-size: 36rpx;
  65. text-align: center
  66. }
  67. .paySuccessImg{
  68. width: 160rpx;
  69. height: 160rpx;
  70. margin: 46rpx auto 14rpx;
  71. }