address.css 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130
  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. body {
  27. height: 100%;
  28. }
  29. .content {
  30. height: 100%;
  31. display: flex;
  32. flex-direction: column;
  33. justify-content: space-between;
  34. }
  35. .content .inner {
  36. flex: 1;
  37. padding: 0.625rem 0.625rem 5rem;
  38. }
  39. .content .inner .top {
  40. padding: 0 0.625rem 0.625rem;
  41. text-align: right;
  42. }
  43. .content .inner .top .del {
  44. font-size: 0.875rem;
  45. font-family: PingFang SC;
  46. color: #999999;
  47. }
  48. .content .inner .address-item {
  49. background: #FFFFFF;
  50. border-radius: 0.5rem;
  51. padding: 1.4375rem 1.25rem 1.5625rem 0.75rem;
  52. display: flex;
  53. align-items: center;
  54. justify-content: space-between;
  55. margin-bottom: 0.625rem;
  56. }
  57. .content .inner .address-item .info {
  58. width: 75%;
  59. }
  60. .content .inner .address-item .info .title {
  61. font-size: 0.9375rem;
  62. font-family: PingFang SC;
  63. font-weight: bold;
  64. color: #111111;
  65. line-height: 1.3125rem;
  66. word-break: break-all;
  67. }
  68. .content .inner .address-item .info .title .tag {
  69. padding: 0 0.1875rem;
  70. height: 1rem;
  71. line-height: 1rem;
  72. font-size: 0.6875rem;
  73. font-family: PingFang SC;
  74. font-weight: 500;
  75. color: #FFFFFF;
  76. background: #C39A58;
  77. border-radius: 0.125rem;
  78. float: left;
  79. margin-right: 0.3125rem;
  80. margin-top: 0.15625rem;
  81. }
  82. .content .inner .address-item .info .name-phone {
  83. margin-top: 0.9375rem;
  84. display: flex;
  85. align-items: center;
  86. }
  87. .content .inner .address-item .info .name-phone .text {
  88. font-size: 0.8125rem;
  89. font-family: PingFang SC;
  90. font-weight: 500;
  91. color: #999999;
  92. margin-right: 0.6875rem;
  93. }
  94. .content .inner .address-item .info .name-phone .text:last-child {
  95. margin-right: 0;
  96. }
  97. .content .inner .address-item .operat-box {
  98. display: flex;
  99. align-items: center;
  100. }
  101. .content .inner .address-item .operat-box uni-image {
  102. padding: 0.46875rem;
  103. width: 0.9375rem;
  104. height: 0.9375rem;
  105. margin-left: 0.3125rem;
  106. }
  107. .content .inner .address-item .operat-box uni-image:first-child {
  108. margin-left: 0;
  109. }
  110. .content .btn-box {
  111. z-index: 9999;
  112. width: 100%;
  113. padding: 0.9375rem;
  114. position: fixed;
  115. bottom: 0;
  116. left: 0;
  117. box-sizing: border-box;
  118. background: #FFFFFF;
  119. }
  120. .content .btn-box .sub-btn {
  121. height: 2.75rem;
  122. line-height: 2.75rem;
  123. text-align: center;
  124. font-size: 0.9375rem;
  125. font-family: PingFang SC;
  126. font-weight: bold;
  127. color: #FFFFFF;
  128. background: #C39A58;
  129. border-radius: 1.375rem;
  130. }