address.wxss 3.2 KB

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