change-address.css 953 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. html,
  2. body {
  3. height: 100%;
  4. font-family: PingFangSC-Regular;
  5. color: #333333;
  6. overflow: hidden;
  7. }
  8. .content {
  9. background: #ffffff;
  10. }
  11. .content > .item {
  12. box-sizing: border-box;
  13. padding: 28rpx 32rpx;
  14. display: flex;
  15. justify-content: space-between;
  16. font-size: 32rpx;
  17. }
  18. .content > .item > view {
  19. width: 480rpx;
  20. }
  21. .content > .item > view > input {
  22. color: #666666;
  23. }
  24. .content > .box {
  25. width: 100%;
  26. height: 200rpx;
  27. box-sizing: border-box;
  28. padding: 28rpx 32rpx;
  29. }
  30. .content textarea {
  31. width: 686rpx;
  32. height: 100%;
  33. color: #666666;
  34. }
  35. .content .line {
  36. width: 718rpx;
  37. height: 2rpx;
  38. background: #eeeeee;
  39. margin-left: 32rpx;
  40. }
  41. .btn {
  42. width: 686rpx;
  43. height: 90rpx;
  44. background: #3296fb;
  45. color: #ffffff;
  46. font-family: PingFangSC-Medium;
  47. font-size: 32rpx;
  48. border-radius: 45rpx;
  49. margin: 48rpx 0 0 32rpx;
  50. text-align: center;
  51. line-height: 90rpx;
  52. }