dialogGeneral.wxss 641 B

12345678910111213141516171819202122232425262728293031
  1. .dialog-body-general{
  2. position: relative;
  3. width: 600rpx;
  4. margin: 0 75rpx;
  5. padding: 56rpx 60rpx 60rpx;
  6. background-color: #fff;
  7. border-radius: 16rpx;
  8. box-sizing: border-box;
  9. }
  10. .dialog-body-general .title{
  11. display: block;
  12. text-align: center;
  13. line-height: 64rpx;
  14. font-size: 34rpx;
  15. font-weight: bold;
  16. color: #333333;
  17. }
  18. .dialog-body-general .content{
  19. display: block;
  20. font-size: 30rpx;
  21. line-height: 44rpx;
  22. color: #666666;
  23. }
  24. .dialog-body-general > button{
  25. margin: 0 34rpx;
  26. font-size: 34rpx;
  27. color: #fff;
  28. margin-top: 50rpx;
  29. border-radius: 46rpx;
  30. background: linear-gradient(to right, #dd7fff, #625af7);
  31. }