alternatePopup.wxss 844 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. .content{
  2. text-align: center;
  3. background: #fff;
  4. width: 650rpx;
  5. position: absolute;
  6. top: 25%;
  7. right: 0;
  8. left: 0;
  9. margin: auto;
  10. border-radius: 10rpx;
  11. display: flex;
  12. flex-direction: column;
  13. align-items: center;
  14. padding: 20rpx;
  15. font-size: 28rpx;
  16. box-shadow: 0 5rpx 10rpx rgba(0,0,0,.4);
  17. }
  18. .ins{
  19. font-size: 24rpx;
  20. position: absolute;
  21. top: 20rpx;
  22. right: 20rpx;
  23. }
  24. .title{
  25. font-size: 32rpx;
  26. font-weight: 700;
  27. margin: 80rpx 40rpx 40rpx;
  28. }
  29. .btn-group{
  30. display: flex;
  31. flex-direction: row;
  32. justify-content: space-around;
  33. width: 100%;
  34. margin: 20rpx 40rpx;
  35. }
  36. .btn-group button{
  37. line-height: 2;
  38. padding: 0 80rpx;
  39. }
  40. .btn-group button:last-child{
  41. background: #ee3a43;
  42. color: #fff;
  43. }
  44. .tip{
  45. color: #999;
  46. text-align: left;
  47. font-size: 24rpx;
  48. }
  49. .icon{
  50. font-size: 24rpx;
  51. margin-right: 10rpx;
  52. }