businessGoodsEdit.scss 2.2 KB

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