123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293 |
- .title {
- padding: 28rpx;
- padding-bottom: 0rpx;
- }
- .input {
- width: 100%;
- background: #fff;
- font-size: 32rpx;
- padding: 0rpx 28rpx;
- height: 84rpx;
- line-height: 84rpx;
- box-sizing: border-box;
- }
- .add {
- background: #fff;
- padding: 0rpx 28rpx;
- height: 84rpx;
- line-height: 84rpx;
- width: 100%;
- box-sizing: border-box;
- }
- .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;
- padding-bottom: 30rpx;
- border-top: 1px solid #f1f1f1;
- }
- .footer .delete {
- background: #fff;
- border: 1px solid #f1f1f1;
- height: 90rpx;
- text-align: center;
- line-height: 90rpx;
- margin-right: 10rpx;
- border-radius: 6rpx;
- }
- .footer .save {
- border-radius: 10rpx;
- height: 90rpx;
- text-align: center;
- line-height: 90rpx;
- }
- .scroll {
- height: calc(100vh - 470rpx);
- }
- .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 {
- text-align: right;
- overflow: hidden;
- text-overflow: ellipsis;
- white-space: nowrap;
- height: 84rpx;
- line-height: 84rpx;
- max-width: 300rpx;
- }
|