leave.less 762 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. /* pages/adddata/adddata.wxss */
  2. .adddata{
  3. .adddata-data{
  4. background-color: white;
  5. padding: 10rpx 16rpx;
  6. .item-flex{
  7. display: flex;
  8. justify-content: space-between;
  9. align-items: center;
  10. padding: 20rpx 0;
  11. border-bottom: 1rpx solid #e6e6e6;
  12. .flex-left{
  13. .left-h1{
  14. font-weight: 600;
  15. }
  16. .left-h2{
  17. max-width: 85vw;
  18. overflow: hidden;
  19. text-overflow:ellipsis;
  20. white-space: nowrap;
  21. }
  22. }
  23. .flex-right{
  24. .right-icon{
  25. display: block;
  26. margin: 10rpx;
  27. }
  28. }
  29. }
  30. }
  31. .adddata-button{
  32. position: fixed;
  33. bottom: 0;
  34. width: 100%;
  35. box-sizing: border-box;
  36. padding: 10rpx 20rpx;
  37. }
  38. }