index.module.less 808 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. .popupResult {
  2. padding: 20px 20px 25px;
  3. color: #333333;
  4. font-size: 15px;
  5. .resultTitle {
  6. display: flex;
  7. align-items: center;
  8. justify-content: center;
  9. text-align: center;
  10. font-size: 18px;
  11. font-weight: 600;
  12. color: #333333;
  13. .titleImg {
  14. width: 18px;
  15. height: 18px;
  16. margin-right: 6px;
  17. }
  18. }
  19. .result {
  20. margin-top: 20px;
  21. padding: 12px;
  22. background: #f6f6f6;
  23. border-radius: 4px;
  24. font-size: 16px;
  25. font-weight: 500;
  26. color: #333333;
  27. .yes {
  28. color: #4593f4;
  29. margin-right: 20px;
  30. }
  31. .no {
  32. color: #f44541;
  33. }
  34. }
  35. .resultContent {
  36. padding: 20px 0 30px;
  37. font-size: 15px;
  38. color: #333333;
  39. // text-align: justify;
  40. line-height: 23px;
  41. span {
  42. font-weight: 600;
  43. }
  44. }
  45. }