You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

pop-active-fail.wxss 1.6KB

1 maand geleden
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103
  1. /* plugin/etc/components/pop-active-fail/pop-active-fail.wxss */
  2. .modal_mask {
  3. position: fixed;
  4. z-index: 10000;
  5. top: 0;
  6. right: 0;
  7. left: 0;
  8. bottom: 0;
  9. background: rgba(0, 0, 0, 0.3);
  10. }
  11. .modal_container {
  12. display: flex;
  13. flex-direction: column;
  14. align-items: center;
  15. justify-content: center;
  16. position: fixed;
  17. width: 596rpx;
  18. top: 50%;
  19. left: 50%;
  20. transform: translateX(-50%) translateY(-50%);
  21. background: #ffffff;
  22. z-index: 10001;
  23. border-radius: 24rpx;
  24. }
  25. .c-title {
  26. font-weight: bold;
  27. font-size: 32rpx;
  28. color: #1A1D25;
  29. margin-top: 40rpx;
  30. }
  31. .info-bg {
  32. margin-top: 32rpx;
  33. box-sizing: border-box;
  34. width: 486rpx;
  35. background: #F4F5F9;
  36. border-radius: 16rpx;
  37. }
  38. .info-tip-bg {
  39. padding-left: 32rpx;
  40. padding-top: 28rpx;
  41. padding-bottom: 32rpx;
  42. }
  43. .dev-name {
  44. font-weight: 500;
  45. font-size: 28rpx;
  46. color: #1A1D25;
  47. margin-bottom: 16rpx;
  48. }
  49. .dev-msg {
  50. font-size: 24rpx;
  51. color: #59677F;
  52. line-height: 40rpx;
  53. }
  54. .fail-bg {
  55. padding-top: 20rpx;
  56. padding-left: 32rpx;
  57. display: flex;
  58. flex-direction: row;
  59. align-items: center;
  60. justify-content: flex-start;
  61. font-size: 28rpx;
  62. color: #F7454E;
  63. line-height: 40rpx;
  64. padding-bottom: 28rpx;
  65. }
  66. .btn-bg {
  67. margin-top: 32rpx;
  68. border-top: 1rpx solid #eeeeee;
  69. display: flex;
  70. flex-direction: column;
  71. align-items: center;
  72. justify-content: center;
  73. height: 104rpx;
  74. width: 100%;
  75. font-weight: 500;
  76. font-size: 32rpx;
  77. color: #279DFD;
  78. line-height: 44rpx;
  79. }
  80. .normal-btn {
  81. margin-top: 32rpx;
  82. margin-bottom: 40rpx;
  83. display: flex;
  84. flex-direction: column;
  85. align-items: center;
  86. justify-content: center;
  87. width: 486rpx;
  88. height: 80rpx;
  89. background: #3E7DF5;
  90. border-radius: 48rpx;
  91. }