address.wxss 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150
  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. border-top: 1px solid #F8F8F8;
  33. }
  34. .address-template image {
  35. float: left;
  36. width: 100%;
  37. height: 6rpx;
  38. }
  39. .address-section {
  40. width: 100%;
  41. height: auto;
  42. float: left;
  43. position: relative;
  44. }
  45. .address-section .address-empty {
  46. width: 100%;
  47. height: 117rpx;
  48. line-height: 117rpx;
  49. color: #FF457B;
  50. text-align: center;
  51. font-size: 26rpx;
  52. font-weight: bold;
  53. background: #fff;
  54. float: left;
  55. }
  56. .address-section .address-empty .icon-tianjiadizhi {
  57. font-size: 34rpx;
  58. margin: 0 8rpx;
  59. }
  60. .address-section .address-content {
  61. display: flex;
  62. align-items: center;
  63. padding: 20rpx 24rpx;
  64. background: #fff;
  65. }
  66. .address-section .icon-shouhuodizhi {
  67. flex-shrink: 0;
  68. display: flex;
  69. align-items: center;
  70. justify-content: center;
  71. width: 40rpx;
  72. color: #FF457B;
  73. font-size: 40rpx;
  74. margin-right: 10rpx;
  75. }
  76. .address-section .address-cen {
  77. width: 100%;
  78. height: auto;
  79. position: relative;
  80. }
  81. .address-section .address-cen .top {
  82. padding-left: 50rpx;
  83. height: 42rpx;
  84. line-height: 42rpx;
  85. text-align: left;
  86. font-size: 30rpx;
  87. color: #333333;
  88. padding-bottom: 8rpx;
  89. display: flex;
  90. float: left;
  91. }
  92. .address-section .address-cen .top .name {
  93. font-weight: bold;
  94. margin-right: 48rpx;
  95. }
  96. .address-section .address-cen .top .mobile {
  97. margin-right: 40rpx;
  98. font-weight: bold;
  99. }
  100. .address-section .address-cen .address {
  101. width: 100%;
  102. height: auto;
  103. float: left;
  104. }
  105. .address-section .address-cen .address .address-icon {
  106. width: 40rpx;
  107. height: auto;
  108. float: left;
  109. line-height: 40rpx;
  110. }
  111. .address-section .address-cen .address .address-text {
  112. width: 610rpx;
  113. padding-left: 10rpx;
  114. float: left;
  115. line-height: 40rpx;
  116. font-size: 28rpx;
  117. color: #333333;
  118. text-align: left;
  119. text-overflow: ellipsis;
  120. display: -webkit-box;
  121. word-break: break-all;
  122. -webkit-box-orient: vertical;
  123. -webkit-line-clamp: 2;
  124. overflow: hidden;
  125. }
  126. .address-section .address-cen .nexpage {
  127. text-align: right;
  128. font-size: 30rpx;
  129. color: #666666;
  130. position: absolute;
  131. right: 0;
  132. top: 45rpx;
  133. }
  134. .address-section .address-cen .nexpage .icon-genghuan {
  135. font-size: 30rpx;
  136. }
  137. .address-section .icon-chakangengduo {
  138. font-size: 32rpx;
  139. color: #333333;
  140. margin-right: 30rpx;
  141. }
  142. .address-section .a-bg {
  143. position: absolute;
  144. left: 0;
  145. bottom: 0;
  146. display: block;
  147. width: 100%;
  148. height: 5rpx;
  149. }