index.module.less 1.1 KB

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