12345678910111213141516171819202122232425262728 |
- page{
- background: #f5f5f5
- }
- .list{
- width: 100%;
- background:#fff;
- }
- .line{
- width: 690rpx;
- margin: 0 auto;
- display: flex;
- height: 60rpx;
- align-items: center;
- border-bottom: 1rpx solid #f5f5f5;
- padding-top: 30rpx;
- }
- .line view{
- font-size: 28rpx;
- color:#333;
- }
- .line input{
- font-size: 28rpx;
- color:#333;
- margin-left: 20rpx;
- }
- .list :last-child{
- border:none;
- }
|