user.wxss 387 B

12345678910111213141516171819202122232425262728
  1. page{
  2. background: #f5f5f5
  3. }
  4. .list{
  5. width: 100%;
  6. background:#fff;
  7. }
  8. .line{
  9. width: 690rpx;
  10. margin: 0 auto;
  11. display: flex;
  12. height: 60rpx;
  13. align-items: center;
  14. border-bottom: 1rpx solid #f5f5f5;
  15. padding-top: 30rpx;
  16. }
  17. .line view{
  18. font-size: 28rpx;
  19. color:#333;
  20. }
  21. .line input{
  22. font-size: 28rpx;
  23. color:#333;
  24. margin-left: 20rpx;
  25. }
  26. .list :last-child{
  27. border:none;
  28. }