index.wxss 1.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  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_close{
  11. position:absolute;
  12. right: 10rpx;
  13. top: 10rpx;
  14. width: 32px;
  15. height: 32px;
  16. /* background-color: red; */
  17. }
  18. .install_tip_detail {
  19. position: fixed;
  20. background-color: white;
  21. right: 0;
  22. bottom: 0;
  23. left: 0;
  24. border-radius: 40rpx 40rpx 0 0;
  25. padding: 50rpx 50rpx 100rpx 50rpx;
  26. z-index: 9;
  27. }
  28. .install_tip_detail_title {
  29. font-weight: 400;
  30. font-size: 40rpx;
  31. text-align: center;
  32. }
  33. .install_tip_detail_tip {
  34. font-size: 25rpx;
  35. color: rgba(0,0,0,0.4);
  36. margin-top: 20rpx;
  37. text-align: left;
  38. }
  39. .install_tip_detail_buttons {
  40. padding-top: 50rpx;
  41. display: flex;
  42. }
  43. .install_tip_detail_button {
  44. color: #07C160;
  45. font-weight: 500;
  46. background-color: rgba(0,0,0,0.1);
  47. width: 40%;
  48. text-align: center;
  49. /* height: 90rpx; */
  50. /* line-height: 90rpx; */
  51. border-radius: 10rpx;
  52. margin: 0 auto;
  53. }
  54. .install_tip_detail_button_primary {
  55. background-color: #07C160;
  56. color: #fff;
  57. }