index.wxss 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495
  1. .modal_container {
  2. position: fixed;
  3. top: 0;
  4. right: 0;
  5. bottom: 0;
  6. left: 0;
  7. background-color: rgba(0,0,0,0.4);
  8. z-index: 1;
  9. width: 100%;
  10. height: 100%;
  11. }
  12. .icon_close {
  13. position: fixed;
  14. right: 40rpx;
  15. top: 40rpx;
  16. width: 70rpx;
  17. height: 70rpx;
  18. border-radius: 50%;
  19. display: flex;
  20. align-items: center;
  21. justify-content: center;
  22. /* background-color: #07c160; */
  23. background-color: rgba(0,0,0,0.7);
  24. color: white;
  25. font-size: 32rpx;
  26. font-weight: bold;
  27. }
  28. .code_img {
  29. width: 400rpx;
  30. height: 400rpx;
  31. margin-top: 50%;
  32. margin-left: 50%;
  33. transform: translateX(-50%);
  34. border-radius: 30rpx;
  35. }
  36. .install_tip_back {
  37. position: fixed;
  38. top: 0;
  39. right: 0;
  40. bottom: 0;
  41. left: 0;
  42. background-color: rgba(0,0,0,0.4);
  43. z-index: 1;
  44. }
  45. .install_tip_detail {
  46. position: fixed;
  47. background-color: white;
  48. right: 0;
  49. bottom: 0;
  50. left: 0;
  51. top: 60%;
  52. border-radius: 40rpx 40rpx 0 0;
  53. padding: 50rpx;
  54. z-index: 9;
  55. }
  56. .install_tip_detail_title {
  57. font-weight: 400;
  58. font-size: 40rpx;
  59. text-align: center;
  60. }
  61. .install_tip_detail_tip {
  62. font-size: 25rpx;
  63. color: rgba(0,0,0,0.4);
  64. margin-top: 20rpx;
  65. text-align: center;
  66. }
  67. .install_tip_detail_shell {
  68. margin: 70rpx 0;
  69. display: flex;
  70. justify-content: center;
  71. }
  72. .install_tip_detail_copy {
  73. color: #546488;
  74. margin-left: 10rpx;
  75. }
  76. .install_tip_detail_button {
  77. color: #07C160;
  78. font-weight: 500;
  79. background-color: rgba(0,0,0,0.1);
  80. width: 60%;
  81. text-align: center;
  82. height: 90rpx;
  83. line-height: 90rpx;
  84. border-radius: 10rpx;
  85. margin: 0 auto;
  86. }