index.less 397 B

123456789101112131415161718192021222324252627
  1. /* components/l-form/index.wxss */
  2. .form{
  3. .disinput{
  4. width: 0;
  5. }
  6. .flex{
  7. display: flex;
  8. width: 100%;
  9. flex: wrap;
  10. justify-content: space-evenly;
  11. align-items: center;
  12. .radio{
  13. flex: 1;
  14. padding-right:30rpx;
  15. }
  16. }
  17. .area{
  18. position: fixed;
  19. bottom: 0;
  20. width: 100%;
  21. z-index: 5;
  22. }
  23. .button{
  24. margin-top: 50rpx;
  25. padding: 20rpx;
  26. }
  27. }