123456789101112131415161718192021222324252627282930 |
- @import "../../../static/common-head.scss";
- .item {
- background: #ffffff;
- width: 100vw;
- padding: 20rpx 30rpx;
- box-sizing: border-box;
- font-size: 24rpx;
- display: flex;
- justify-content: space-between;
- margin-bottom: 20rpx;
- .input {
- height: 54rpx;
- background: #FFFFFF;
- border-radius: 8rpx;
- border: 1rpx solid #CCCCCC;
- font-size: 28rpx;
- font-family: PingFang SC-Regular, PingFang SC;
- color: #333333;
- line-height: 44px;
- text-align: center;
- margin-left: 20rpx;
- }
- .delete {
- width: 68rpx;
- height: 68rpx;
- text-align: center;
- font-size: 32rpx;
- color: #999;
- }
- }
|