address.wxss 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149
  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. position: relative;
  43. }
  44. .address-section .address-empty {
  45. width: 100%;
  46. height: 117rpx;
  47. line-height: 117rpx;
  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: 34rpx;
  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. font-weight: bold;
  93. margin-right: 48rpx;
  94. }
  95. .address-section .address-cen .top .mobile {
  96. margin-right: 40rpx;
  97. font-weight: bold;
  98. }
  99. .address-section .address-cen .address {
  100. width: 100%;
  101. height: auto;
  102. float: left;
  103. }
  104. .address-section .address-cen .address .address-icon {
  105. width: 40rpx;
  106. height: auto;
  107. float: left;
  108. line-height: 40rpx;
  109. }
  110. .address-section .address-cen .address .address-text {
  111. width: 610rpx;
  112. padding-left: 10rpx;
  113. float: left;
  114. line-height: 40rpx;
  115. font-size: 28rpx;
  116. color: #333333;
  117. text-align: left;
  118. text-overflow: ellipsis;
  119. display: -webkit-box;
  120. word-break: break-all;
  121. -webkit-box-orient: vertical;
  122. -webkit-line-clamp: 2;
  123. overflow: hidden;
  124. }
  125. .address-section .address-cen .nexpage {
  126. text-align: right;
  127. font-size: 30rpx;
  128. color: #666666;
  129. position: absolute;
  130. right: 0;
  131. top: 45rpx;
  132. }
  133. .address-section .address-cen .nexpage .icon-genghuan {
  134. font-size: 30rpx;
  135. }
  136. .address-section .icon-chakangengduo {
  137. font-size: 32rpx;
  138. color: #333333;
  139. margin-right: 30rpx;
  140. }
  141. .address-section .a-bg {
  142. position: absolute;
  143. left: 0;
  144. bottom: 0;
  145. display: block;
  146. width: 100%;
  147. height: 5rpx;
  148. }