convertNextPopup.wxss 747 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. .content{
  2. background: #fff;
  3. width: 550rpx;
  4. position: absolute;
  5. top: 25%;
  6. right: 0;
  7. left: 0;
  8. margin: auto;
  9. border-radius: 20rpx;
  10. font-size: 28rpx;
  11. box-shadow: 0 5rpx 10rpx rgba(0,0,0,.4);
  12. padding: 40rpx 40rpx;
  13. }
  14. .content .modu{
  15. padding: 30rpx 0 0 0;
  16. }
  17. .content text{
  18. color: #ee3a43;
  19. }
  20. /* 底部按钮 */
  21. button[disabled][type=warn]{
  22. background:rgba(199,200,201,1);
  23. color:#fff
  24. }
  25. .bottom-btn button{
  26. width: 40%;
  27. border-radius: 15rpx;
  28. font-size: 28rpx;
  29. }
  30. .bottom-btn .cancel{
  31. background:#fff;
  32. color: #ee3a43;
  33. border: 1rpx solid #ee3a43;
  34. }
  35. .bottom-btn button::after{
  36. border: none;
  37. }
  38. .bottom-btn{
  39. display: flex;
  40. align-items: center;
  41. justify-content: space-around;
  42. width: 100%;
  43. margin-top: 20rpx;
  44. }