index.module.less 957 B

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