orderAddress.wxss 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136
  1. @charset "UTF-8";
  2. /**
  3. * 这里是uni-app内置的常用样式变量
  4. *
  5. * uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量
  6. * 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App
  7. *
  8. */
  9. /**
  10. * 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能
  11. *
  12. * 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件
  13. */
  14. /* 颜色变量 */
  15. /* 字体大小变量 */
  16. /* 行为相关颜色 */
  17. /* 文字基本颜色 */
  18. /* 背景颜色 */
  19. /* 边框颜色 */
  20. /* 尺寸变量 */
  21. /* 文字尺寸 */
  22. /* 图片尺寸 */
  23. /* Border Radius */
  24. /* 水平间距 */
  25. /* 垂直间距 */
  26. /* 透明度 */
  27. /* 文章场景相关 */
  28. .address-template {
  29. width: 100%;
  30. height: auto;
  31. background: #FFFFFF;
  32. }
  33. .address-template image {
  34. float: left;
  35. width: 100%;
  36. height: 6rpx;
  37. }
  38. .address-section {
  39. width: 100%;
  40. height: auto;
  41. float: left;
  42. position: relative;
  43. }
  44. .address-section .address-empty {
  45. width: 100%;
  46. height: 84rpx;
  47. line-height: 84rpx;
  48. color: #FF457B;
  49. text-align: center;
  50. font-size: 26rpx;
  51. font-weight: bold;
  52. background: #fff;
  53. float: left;
  54. }
  55. .address-section .address-empty .icon-tianjiadizhi {
  56. font-size: 30rpx;
  57. margin: 0 8rpx;
  58. }
  59. .address-section .address-content {
  60. display: flex;
  61. align-items: center;
  62. padding: 20rpx 24rpx;
  63. background: #fff;
  64. }
  65. .address-section .icon-shouhuodizhi {
  66. flex-shrink: 0;
  67. display: flex;
  68. align-items: center;
  69. justify-content: center;
  70. width: 40rpx;
  71. color: #FF457B;
  72. font-size: 40rpx;
  73. margin-right: 10rpx;
  74. }
  75. .address-section .address-cen {
  76. width: 100%;
  77. height: auto;
  78. position: relative;
  79. }
  80. .address-section .address-cen .top {
  81. padding-left: 50rpx;
  82. height: 42rpx;
  83. line-height: 42rpx;
  84. text-align: left;
  85. font-size: 30rpx;
  86. color: #333333;
  87. padding-bottom: 8rpx;
  88. display: flex;
  89. float: left;
  90. }
  91. .address-section .address-cen .top .name {
  92. margin-right: 48rpx;
  93. }
  94. .address-section .address-cen .top .mobile {
  95. margin-right: 40rpx;
  96. }
  97. .address-section .address-cen .address {
  98. width: 100%;
  99. height: auto;
  100. float: left;
  101. }
  102. .address-section .address-cen .address .address-icon {
  103. width: 40rpx;
  104. height: auto;
  105. float: left;
  106. line-height: 40rpx;
  107. }
  108. .address-section .address-cen .address .address-text {
  109. width: 650rpx;
  110. padding-left: 10rpx;
  111. float: left;
  112. line-height: 40rpx;
  113. font-size: 28rpx;
  114. color: #666666;
  115. text-align: left;
  116. text-overflow: ellipsis;
  117. display: -webkit-box;
  118. word-break: break-all;
  119. -webkit-box-orient: vertical;
  120. -webkit-line-clamp: 2;
  121. overflow: hidden;
  122. }
  123. .address-section .icon-chakangengduo {
  124. font-size: 32rpx;
  125. color: #333333;
  126. margin-right: 30rpx;
  127. }
  128. .address-section .a-bg {
  129. position: absolute;
  130. left: 0;
  131. bottom: 0;
  132. display: block;
  133. width: 100%;
  134. height: 5rpx;
  135. }