leaveadd.less 652 B

123456789101112131415161718192021222324252627282930313233343536
  1. /* pages/leaveadd/leaveadd.wxss */
  2. .leaveadd{
  3. .user-address{
  4. .user-address-h1{
  5. font-weight: 600;
  6. }
  7. .user-address-h2{
  8. max-width: 85vw;
  9. overflow: hidden;
  10. text-overflow:ellipsis;
  11. white-space: nowrap;
  12. }
  13. }
  14. .flex{
  15. display: flex;
  16. justify-content: start;
  17. align-items: center;
  18. flex-wrap: wrap;
  19. .item{
  20. margin: 10rpx 20rpx;
  21. padding: 5rpx 15rpx;
  22. color: black;
  23. border: 1rpx solid #eee;
  24. }
  25. .block{
  26. background-color: #1989fa;
  27. color: #fff;
  28. border-radius: 10rpx;
  29. border:0;
  30. }
  31. }
  32. .button{
  33. margin-top: 50rpx;
  34. padding: 20rpx;
  35. }
  36. }