multipleSelect.css 668 B

1234567891011121314151617181920212223242526272829303132
  1. /* components/multipleSelect.wxss */
  2. .title {
  3. display: flex;
  4. justify-content: space-between;
  5. align-items: center;
  6. }
  7. .title .funBtn {
  8. height: 80rpx;
  9. width: 80rpx;
  10. display: flex;
  11. justify-content: center;
  12. align-items: center;
  13. }
  14. .address {
  15. width: 100%;
  16. height: 450rpx;
  17. overflow-y: auto;
  18. /* padding: 30rpx; */
  19. box-sizing: border-box;
  20. }
  21. .address .address_item {
  22. box-sizing: border-box;
  23. border-bottom: 1px solid #eee;
  24. padding: 5rpx 15rpx;
  25. width: 100%;
  26. height: 80rpx;
  27. display: flex;
  28. align-items: center;
  29. justify-content: space-between;
  30. /* margin-bottom: 20rpx; */
  31. font-size: 30rpx;
  32. }