123456789101112131415161718192021222324252627282930313233343536373839404142 |
- /* pages/adddata/adddata.wxss */
- .adddata{
- .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;
- .radio{
- justify-content: center;
- padding-left: 20rpx;
- }
- .flex-left{
- .left-h1{
- font-weight: 600;
- }
- .left-h2{
- max-width: 85vw;
- overflow: hidden;
- text-overflow:ellipsis;
- white-space: nowrap;
- }
- }
- .flex-right{
- .right-icon{
- display: block;
- margin: 10rpx;
- }
- }
- }
- }
- .adddata-button{
- position: fixed;
- bottom: 0;
- width: 100%;
- box-sizing: border-box;
- padding: 10rpx 20rpx;
- }
- }
|