leave.less 982 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. /* pages/adddata/adddata.wxss */
  2. .leave{
  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. .txt{
  18. color: #f03;
  19. }
  20. max-width: 85vw;
  21. // overflow: hidden;
  22. // .h-item{
  23. // width: 100%;
  24. // overflow: hidden;
  25. // text-overflow:ellipsis;
  26. // white-space: nowrap;
  27. // }
  28. }
  29. }
  30. .flex-right{
  31. .right-icon{
  32. display: block;
  33. margin: 10rpx;
  34. }
  35. }
  36. }
  37. }
  38. .adddata-button{
  39. position: fixed;
  40. bottom: 100px;
  41. box-sizing: border-box;
  42. padding: 10rpx 30rpx 10rpx 20rpx;
  43. background-color: #f03;
  44. color: #fff;
  45. right: 0;
  46. }
  47. }