index2.wxss 897 B

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