leaveadd.wxss 623 B

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