12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394 |
- .title {
- padding: 28rpx;
- padding-bottom: 0rpx;
- }
- .input {
- width: 100%;
- background: #fff;
- font-size: 28rpx;
- 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;
- 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 {
- text-align: right;
- overflow: hidden;
- text-overflow: ellipsis;
- white-space: nowrap;
- height: 84rpx;
- line-height: 84rpx;
- max-width: 300rpx;
- }
|