index.module.less 938 B

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