sendOwnAddress.wxss 925 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. /* index.wxss 我的地址 */
  2. page{
  3. background-color: #f4f4f4;
  4. }
  5. .container{
  6. padding-top: 20rpx;
  7. }
  8. .address_wrap{
  9. position: relative;
  10. }
  11. .each_address{
  12. height: auto;
  13. padding: 60rpx 120rpx 60rpx 71rpx;
  14. border-bottom: 1rpx solid #e6e6e6;
  15. background-color: #fff;
  16. }
  17. .user_name{
  18. font-size: 30rpx;
  19. color: #232323;
  20. padding-bottom: 20rpx;
  21. }
  22. .user_name text{
  23. padding-left: 70rpx;
  24. }
  25. .user_addr{
  26. font-size: 24rpx;
  27. color: #969696;
  28. }
  29. /* 选择地址 */
  30. .select_address{
  31. width: 71rpx;
  32. height: 60rpx;
  33. position: absolute;
  34. top: 0;
  35. left: 0;
  36. }
  37. /* 删除地址 */
  38. .delete_address{
  39. width: 34rpx;
  40. height: 38rpx;
  41. position: absolute;
  42. top:50%;
  43. right: 44rpx;
  44. margin-top: -19rpx;
  45. }
  46. /* 添加新地址 */
  47. .add_btn{
  48. width: 100%;
  49. height: 100rpx;
  50. font-size: 30rpx;
  51. font-weight: bold;
  52. line-height: 100rpx;
  53. text-align: center;
  54. color: #b4a078;
  55. margin-top: 40rpx;
  56. background-color: #fff;
  57. }