addEditAddress.wxss 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155
  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. page {
  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. height: calc(100% - 120rpx);
  37. padding: 20rpx;
  38. }
  39. .content .inner .address-box {
  40. margin-top: 20rpx;
  41. padding: 30rpx;
  42. background: #FFFFFF;
  43. border-radius: 16rpx;
  44. margin-bottom: 20rpx;
  45. position: relative;
  46. }
  47. .content .inner .address-box .textarea {
  48. width: 100%;
  49. height: 200rpx;
  50. font-size: 30rpx;
  51. color: #999999;
  52. padding-bottom: 100rpx;
  53. }
  54. .content .inner .address-box .btns {
  55. right: 10rpx;
  56. bottom: 10rpx;
  57. position: absolute;
  58. }
  59. .content .inner .address-box .btns .btn {
  60. width: 155rpx;
  61. height: 64rpx;
  62. line-height: 64rpx;
  63. font-size: 26rpx;
  64. font-family: PingFang SC;
  65. font-weight: 500;
  66. text-align: center;
  67. border-radius: 32rpx;
  68. }
  69. .content .inner .address-box .btns .btn.parse {
  70. background: #C39A58;
  71. color: #FFFFFF;
  72. }
  73. .content .inner .form-box {
  74. padding: 0 30rpx;
  75. background: #FFFFFF;
  76. border-radius: 16rpx;
  77. }
  78. .content .inner .form-box .form-item {
  79. height: 103rpx;
  80. display: flex;
  81. align-items: center;
  82. justify-content: space-between;
  83. border-bottom: 1px solid #F1F1F1;
  84. }
  85. .content .inner .form-box .form-item:last-child {
  86. border-bottom: none;
  87. }
  88. .content .inner .form-box .form-item .label {
  89. min-width: 200rpx;
  90. font-size: 30rpx;
  91. font-family: PingFang SC;
  92. font-weight: 500;
  93. color: #222222;
  94. }
  95. .content .inner .form-box .form-item .input-width {
  96. width: calc(100% - 200rpx);
  97. text-align: right;
  98. }
  99. .content .inner .form-box .form-item .form-input {
  100. font-size: 30rpx;
  101. font-family: PingFang SC;
  102. font-weight: 500;
  103. color: #999999;
  104. text-align: right;
  105. }
  106. .content .inner .form-box .form-item .birth-picker {
  107. display: flex;
  108. align-items: center;
  109. }
  110. .content .inner .form-box .form-item .birth-picker .right-box {
  111. width: 100%;
  112. display: flex;
  113. align-items: center;
  114. }
  115. .content .inner .form-box .form-item .birth-picker .right-box .arrow {
  116. width: 13rpx;
  117. height: 23rpx;
  118. margin-left: 15rpx;
  119. }
  120. .content .inner .setting-box {
  121. height: 88rpx;
  122. background: #FFFFFF;
  123. border-radius: 16rpx;
  124. margin-top: 20rpx;
  125. padding: 0 30rpx;
  126. display: flex;
  127. align-items: center;
  128. justify-content: space-between;
  129. }
  130. .content .inner .setting-box .label {
  131. font-size: 28rpx;
  132. font-family: PingFang SC;
  133. font-weight: 500;
  134. color: #111111;
  135. }
  136. .content .btn-box {
  137. height: 120rpx;
  138. padding: 0 30rpx;
  139. display: flex;
  140. align-items: center;
  141. justify-content: center;
  142. background: #FFFFFF;
  143. }
  144. .content .btn-box .sub-btn {
  145. width: 100%;
  146. height: 88rpx;
  147. line-height: 88rpx;
  148. text-align: center;
  149. font-size: 30rpx;
  150. font-family: PingFang SC;
  151. font-weight: bold;
  152. color: #FFFFFF;
  153. background: #C39A58;
  154. border-radius: 44rpx;
  155. }