index.wxss 770 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. .dialog-content {
  2. width: 540rpx;
  3. height: 208rpx;
  4. border-radius: 30rpx;
  5. background: #fff;
  6. }
  7. .dialog-content .text {
  8. height: 120rpx;
  9. display: flex;
  10. justify-content: center;
  11. align-items: center;
  12. border-bottom: 2rpx solid #d2d2d2;
  13. }
  14. .dialog-content .button-group {
  15. display: flex;
  16. }
  17. .dialog-content .left-btn, .dialog-content .right-btn {
  18. width: 270rpx;
  19. height: 88rpx;
  20. text-align: center;
  21. line-height: 88rpx;
  22. font-size: 36rpx;
  23. color: #0076ff;
  24. margin: 0;
  25. padding: 0;
  26. }
  27. .dialog-content .split-line {
  28. width: 0;
  29. height: 88rpx;
  30. border-right: 2rpx solid #d2d2d2;
  31. }
  32. .dialog-content .r-btn {
  33. width: 540rpx;
  34. height: 88rpx;
  35. text-align: center;
  36. line-height: 88rpx;
  37. font-size: 36rpx;
  38. color: #0076ff;
  39. margin: 0;
  40. padding: 0;
  41. }