index.wxss 921 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. .install_tip_back {
  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. }
  10. .install_tip_detail {
  11. position: fixed;
  12. background-color: white;
  13. right: 0;
  14. bottom: 0;
  15. left: 0;
  16. top: 60%;
  17. border-radius: 40rpx 40rpx 0 0;
  18. padding: 50rpx;
  19. z-index: 9;
  20. }
  21. .install_tip_detail_title {
  22. font-weight: 400;
  23. font-size: 40rpx;
  24. text-align: center;
  25. }
  26. .install_tip_detail_tip {
  27. font-size: 25rpx;
  28. color: rgba(0,0,0,0.4);
  29. margin-top: 20rpx;
  30. text-align: center;
  31. }
  32. .install_tip_detail_shell {
  33. margin: 70rpx 0;
  34. display: flex;
  35. justify-content: center;
  36. }
  37. .install_tip_detail_copy {
  38. color: #546488;
  39. margin-left: 10rpx;
  40. }
  41. .install_tip_detail_button {
  42. color: #07C160;
  43. font-weight: 500;
  44. background-color: rgba(0,0,0,0.1);
  45. width: 60%;
  46. text-align: center;
  47. height: 90rpx;
  48. line-height: 90rpx;
  49. border-radius: 10rpx;
  50. margin: 0 auto;
  51. }