businessVideoEdit.scss 2.4 KB

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