123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475 |
- .title{
- font-size: 24rpx;
- padding: 28rpx;
- padding-bottom: 0rpx;
- }
- .input{
- width: 100%;
- background: #fff;
- font-size: 28rpx;
- padding: 20rpx 28rpx;
- }
- .add{
- background: #fff;
- padding:22rpx 28rpx;
- }
- .add image{
- width: 30rpx;
- height: 30rpx;
- position: relative;
- top: 6rpx;
- margin-left: 10rpx;
- }
- .dataList{
- padding:20rpx 28rpx;
- background-color: #fff;
- }
- .dataList text{
- margin-left: 16rpx;
- }
- .footer{
- position: fixed;
- left: 0;
- right: 0;
- bottom: 0;
- background: #fff;
- padding: 10rpx;
- border-top: 1px solid #f1f1f1;
- }
- .footer .delete{
- background: #fff;
- border: 1px solid #f1f1f1;
- height: 88rpx;
- text-align: center;
- line-height: 88rpx;
- margin-right: 10rpx;
- border-radius: 6rpx;
- }
- .footer .save{
- border-radius: 6rpx;
- background: #26A2FF;
- color: #fff;
- height: 88rpx;
- text-align: center;
- line-height: 88rpx;
- }
- .scroll{
- height: calc(100vh - 440rpx);
- }
- .box{
- position: fixed;
- top: 0;
- left: 0;
- right: 0;
- bottom: 0;
- background: rgba(0,0,0,0.2);
- z-index: 999;
- transform: translate(0,100%);
- }
- .add-right{
- max-width: 300rpx;
- overflow: hidden;
- text-overflow: ellipsis;
- white-space: nowrap;
- text-align: right;
- }
|