addAddress.wxss 684 B

123456789101112131415161718192021222324252627282930313233
  1. /* pages/my/addAddress/addAddress.wxss */
  2. .radio{
  3. display: block;
  4. text-align: right;
  5. margin: 30rpx 20rpx 50rpx 0;
  6. }
  7. .info{
  8. width: 85%;
  9. display: flex;
  10. justify-content: space-between;
  11. align-items: center;
  12. margin: 30rpx auto;
  13. }
  14. .info .input{
  15. width: 450rpx;
  16. height: 100rpx;
  17. line-height: 100rpx;
  18. background: #F2F2F2;
  19. border-radius: 10rpx;
  20. padding-left: 20rpx;
  21. }
  22. .info .input .placeholder{
  23. color: rgb(119, 117, 117);
  24. }
  25. .saveAddress{
  26. width: 583rpx !important;
  27. height: 96rpx;
  28. background: #FED279;
  29. position: fixed;
  30. left: 50%;
  31. bottom: 100rpx;
  32. transform: translate(-50%,0);
  33. }