index.module.less 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  1. .standard {
  2. --van-dialog-message-font-size: 16px !important;
  3. }
  4. .tips {
  5. display: flex;
  6. align-items: center;
  7. margin: 12px 13px;
  8. background: #ffebdd;
  9. border-radius: 10px;
  10. padding: 7px 12px;
  11. font-size: 13px;
  12. color: #f67146;
  13. line-height: 20px;
  14. .icon {
  15. font-size: 20px;
  16. margin-right: 6px;
  17. }
  18. }
  19. .cellGroup {
  20. margin: 0 13px;
  21. border-radius: 10px;
  22. overflow: hidden;
  23. :global {
  24. .van-cell {
  25. font-size: 16px;
  26. padding: 18px 12px;
  27. }
  28. .van-cell__value {
  29. color: #333;
  30. }
  31. .van-radio-group {
  32. justify-content: flex-end;
  33. }
  34. }
  35. .radioSection {
  36. position: relative;
  37. min-width: 32px;
  38. justify-content: center;
  39. }
  40. .radioItem {
  41. position: absolute;
  42. top: 0;
  43. left: 0;
  44. right: 0;
  45. bottom: 0;
  46. opacity: 0;
  47. }
  48. .radioSection + .radioSection {
  49. margin-left: 12px;
  50. }
  51. }
  52. .dialogTitle {
  53. i {
  54. display: inline-block;
  55. width: 4px;
  56. height: 14px;
  57. background: #ff8057;
  58. border-radius: 2px;
  59. margin-right: 6px;
  60. }
  61. padding-left: 25px;
  62. text-align: left;
  63. font-size: 18px;
  64. font-weight: 500;
  65. color: #333333;
  66. line-height: 25px;
  67. padding-bottom: 12px;
  68. }