index.wxss 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. .address-card {
  2. background: #fff;
  3. margin: 0rpx 0rpx 24rpx;
  4. }
  5. .address-card .wr-cell__title {
  6. color: #999;
  7. margin-left: 6rpx;
  8. }
  9. .address-card .order-address {
  10. display: flex;
  11. width: 100%;
  12. }
  13. .address-card .order-address .address-content {
  14. flex: 1;
  15. }
  16. .order-address .address__right {
  17. align-self: center;
  18. }
  19. .address-card .order-address .title {
  20. display: flex;
  21. align-items: center;
  22. height: 40rpx;
  23. font-size: 28rpx;
  24. font-weight: normal;
  25. color: #999999;
  26. line-height: 40rpx;
  27. }
  28. .address-card .order-address .title .address-tag {
  29. width: 52rpx;
  30. height: 29rpx;
  31. border: 1rpx solid #0091ff;
  32. background-color: rgba(122, 167, 251, 0.1);
  33. text-align: center;
  34. line-height: 29rpx;
  35. border-radius: 8rpx;
  36. color: #0091ff;
  37. font-size: 20rpx;
  38. margin-right: 12rpx;
  39. }
  40. .address-card .order-address .detail {
  41. overflow: hidden;
  42. text-overflow: ellipsis;
  43. display: -webkit-box;
  44. -webkit-box-orient: vertical;
  45. -webkit-line-clamp: 2;
  46. font-size: 36rpx;
  47. font-weight: bold;
  48. color: #333333;
  49. line-height: 48rpx;
  50. margin: 8rpx 0;
  51. }
  52. .address-card .order-address .info {
  53. height: 40rpx;
  54. font-size: 28rpx;
  55. font-weight: normal;
  56. color: #333333;
  57. line-height: 40rpx;
  58. }
  59. .address-card .top-line {
  60. width: 100%;
  61. height: 6rpx;
  62. background-color: #fff;
  63. background-image: url(https://tdesign.gtimg.com/miniprogram/template/retail/order/stripe.png);
  64. background-repeat: repeat-x;
  65. display: block;
  66. }