addressManage.wxss 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119
  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. page {
  29. height: auto;
  30. background: #ffffff;
  31. }
  32. .add-content {
  33. width: 702rpx;
  34. padding: 0 24rpx;
  35. }
  36. .add-content .input-row {
  37. display: flex;
  38. align-items: center;
  39. position: relative;
  40. width: 702rpx;
  41. height: 88rpx;
  42. margin: 0 auto;
  43. border-bottom: 2rpx solid #e1e1e1;
  44. }
  45. .add-content .input-row .label {
  46. font-size: 28rpx;
  47. color: #666666;
  48. line-height: 88rpx;
  49. flex: 2;
  50. }
  51. .add-content .input-row .input {
  52. height: 100%;
  53. font-size: 28rpx;
  54. line-height: 88rpx;
  55. color: #333333;
  56. flex: 7;
  57. box-sizing: border-box;
  58. padding-left: 20rpx;
  59. }
  60. .add-content .input-row.b-b {
  61. margin: 20rpx 0;
  62. }
  63. .icon-chakangengduo {
  64. font-size: 36rpx;
  65. color: #b2b2b2;
  66. position: absolute;
  67. right: 0;
  68. }
  69. .text-textarea {
  70. width: 100%;
  71. height: 146rpx;
  72. border-bottom: 2rpx solid #e1e1e1;
  73. }
  74. .text-textarea .textarea {
  75. width: 100%;
  76. height: 100%;
  77. font-size: 28rpx;
  78. color: #333333;
  79. z-index: 1;
  80. line-height: 32rpx;
  81. }
  82. .text-textarea .textarea.hide {
  83. opacity: 0;
  84. }
  85. .text-textarea .textarea.show {
  86. color: #999999;
  87. }
  88. .default-row {
  89. background: #ffffff;
  90. margin-top: 16rpx;
  91. padding: 24rpx 24rpx 24rpx 0;
  92. }
  93. .default-row .tit {
  94. font-size: 28rpx;
  95. line-height: 40rpx;
  96. color: #666666;
  97. flex: 1;
  98. }
  99. .default-row switch {
  100. -webkit-transform: translateX(16rpx) scale(0.9);
  101. transform: translateX(16rpx) scale(0.9);
  102. }
  103. .add-btn {
  104. width: 600rpx;
  105. height: 90rpx;
  106. font-size: 28rpx;
  107. line-height: 90rpx;
  108. color: #ffffff;
  109. margin: 0 auto;
  110. text-align: center;
  111. background: linear-gradient(270deg, #f83c6c 0%, #fc32b4 100%);
  112. border-radius: 45rpx;
  113. margin-top: 80rpx;
  114. }
  115. .add-btn.disabled {
  116. background: #e1e1e1;
  117. border-radius: 45rpx;
  118. }