1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- /* pages/adddata/adddata.wxss */
- .leave{
- .adddata-data{
- background-color: white;
- padding: 10rpx 16rpx;
- .item-flex{
- display: flex;
- justify-content: space-between;
- align-items: center;
- padding: 20rpx 0;
- border-bottom: 1rpx solid #e6e6e6;
- .flex-left{
- .left-h1{
- font-weight: 600;
- }
- .left-h2{
- .txt{
- color: #f03;
- }
- max-width: 85vw;
- // overflow: hidden;
- // .h-item{
- // width: 100%;
- // overflow: hidden;
- // text-overflow:ellipsis;
- // white-space: nowrap;
- // }
- }
- }
- .flex-right{
- .right-icon{
- display: block;
- margin: 10rpx;
- }
- }
- }
- }
- .adddata-button{
- position: fixed;
- bottom: 100px;
- box-sizing: border-box;
- padding: 10rpx 30rpx 10rpx 20rpx;
- background-color: #f03;
- color: #fff;
- right: 0;
- }
- }
|