businessGoodsEdit.scss 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170
  1. .wrapper {
  2. width: 100%;
  3. padding-top: 30rpx;
  4. padding-bottom: 276rpx;
  5. }
  6. .width-690 {
  7. width: 690rpx;
  8. margin: 0 auto;
  9. }
  10. form {
  11. display: block;
  12. width: 100%;
  13. }
  14. label {
  15. display: flex;
  16. align-items: center;
  17. text {
  18. line-height: 42rpx;
  19. font-size: 28rpx;
  20. color: rgba(51, 51, 51, 1);
  21. &:nth-of-type(2) {
  22. margin-left: 10rpx;
  23. color: rgba(153, 153, 153, 1);
  24. }
  25. }
  26. }
  27. .van-uploader-wrap {
  28. margin: 0 16rpx 16rpx 0;
  29. &:nth-of-type(4n) {
  30. margin: 0;
  31. }
  32. }
  33. .photo {
  34. .value {
  35. display: flex;
  36. flex-flow: row wrap;
  37. margin: 30rpx 0 45rpx;
  38. }
  39. .van-uploader__preview,
  40. .van-uploader__upload {
  41. margin: 0 !important;
  42. }
  43. }
  44. .swiper-photo {
  45. .value {
  46. margin-top: 43rpx;
  47. }
  48. }
  49. .btn-upload {
  50. width: 93rpx;
  51. height: 94rpx;
  52. background: pink;
  53. }
  54. .tip {
  55. width: 100%;
  56. padding-bottom: 20rpx;
  57. margin-top: 40rpx;
  58. line-height: 42rpx;
  59. font-size: 24rpx;
  60. color: rgba(153, 153, 153, 1);
  61. border-bottom: 2rpx solid rgba(231, 231, 231, 1);
  62. }
  63. .name {
  64. display: flex;
  65. justify-content: space-between;
  66. align-items: center;
  67. margin: 40rpx 0 30rpx;
  68. .value {
  69. width: calc(100% - 150rpx);
  70. }
  71. input {
  72. display: block;
  73. width: 100%;
  74. height: 44rpx;
  75. font-size: 28rpx;
  76. color: rgba(51, 51, 51, 1);
  77. text-align: right;
  78. }
  79. }
  80. .placeholder {
  81. color: rgba(153, 153, 153, 1);
  82. }
  83. .describe {
  84. position: relative;
  85. left: 0;
  86. top: 0;
  87. textarea {
  88. display: block;
  89. width: 100%;
  90. padding: 17rpx 21rpx;
  91. min-height: 186rpx;
  92. border-radius: 20rpx;
  93. background: rgba(245, 245, 245, 1);
  94. line-height: 38rpx;
  95. font-size: 28rpx;
  96. color: rgba(51, 51, 51, 1);
  97. }
  98. }
  99. .words-limit {
  100. position: absolute;
  101. bottom: 17rpx;
  102. right: 21rpx;
  103. z-index: 1;
  104. line-height: 28rpx;
  105. font-size: 24rpx;
  106. color: rgba(153, 153, 153, 1);
  107. }
  108. .type {
  109. display: flex;
  110. align-items: center;
  111. justify-content: space-between;
  112. padding: 22rpx 0 16rpx;
  113. border-bottom: 2rpx solid rgba(231, 231, 231, 1);
  114. .value {
  115. width: 568rpx;
  116. line-height: 42rpx;
  117. font-size: 28rpx;
  118. color: rgba(107, 133, 89, 1);
  119. text-align: right;
  120. &.placeholder {
  121. color: rgba(153, 153, 153, 1);
  122. }
  123. }
  124. .arrow {
  125. width: 9rpx;
  126. height: 15rpx;
  127. background: pink;
  128. }
  129. }
  130. button.btn-submit {
  131. width: 627rpx;
  132. height: 80rpx;
  133. margin: 40rpx auto 0;
  134. border-radius: 40rpx;
  135. font-size: 36rpx;
  136. font-weight: 500;
  137. color: rgba(255, 255, 255, 1);
  138. &.edit {
  139. background-color: rgba(46, 129, 255, 1);
  140. }
  141. &.send {
  142. background-color: rgba(145, 179, 121, 1);
  143. }
  144. }