adddata.less 846 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  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. .radio{
  13. justify-content: center;
  14. padding-left: 20rpx;
  15. }
  16. .flex-left{
  17. .left-h1{
  18. font-weight: 600;
  19. }
  20. .left-h2{
  21. max-width: 85vw;
  22. overflow: hidden;
  23. text-overflow:ellipsis;
  24. white-space: nowrap;
  25. }
  26. }
  27. .flex-right{
  28. .right-icon{
  29. display: block;
  30. margin: 10rpx;
  31. }
  32. }
  33. }
  34. }
  35. .adddata-button{
  36. position: fixed;
  37. bottom: 0;
  38. width: 100%;
  39. box-sizing: border-box;
  40. padding: 10rpx 20rpx;
  41. }
  42. }