金诚优选前端代码
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

212 lines
4.0 KiB

  1. @import '../../../common/css/global';
  2. #order-comment {
  3. height: 100%;
  4. box-sizing: border-box;
  5. overflow: auto;
  6. .order-status {
  7. display: flex;
  8. height: 40px;
  9. line-height: 40px;
  10. background-color: #FFFFFF;
  11. padding: 0 10px;
  12. .left {
  13. flex: 1;
  14. font-size: 15px;
  15. }
  16. .right {
  17. color: #ff0000;
  18. font-size: 13px;
  19. }
  20. }
  21. .order-items {
  22. /*margin-top: 10px;*/
  23. background-color: #eeeeee;
  24. /*background-color: #FFFFFF;*/
  25. font-size: 14px;
  26. .order-item{
  27. background-color: #FFFFFF;
  28. margin-top: 10px;
  29. padding: 15px;
  30. }
  31. .order-item:first-child{
  32. margin-top: 0px;
  33. }
  34. .order-info {
  35. padding-bottom: 15px;
  36. display: flex;
  37. .image {
  38. width: 60px;
  39. height: 60px;
  40. border: 1px solid #e5e5e5;
  41. margin-right: 10px;
  42. image {
  43. width: 100%;
  44. height: 100%;
  45. }
  46. }
  47. .texts {
  48. flex: 1;
  49. font-size: 12px;
  50. overflow: hidden;
  51. .name {
  52. overflow: hidden;
  53. text-overflow: ellipsis;
  54. white-space: nowrap;
  55. }
  56. .spec {
  57. color: #838383;
  58. }
  59. }
  60. }
  61. .comment-stars {
  62. padding: 10px;
  63. display: flex;
  64. }
  65. .comment-content {
  66. width: 100%;
  67. box-sizing:border-box ;
  68. /*padding: 10px;*/
  69. display: flex;
  70. height: 120px;
  71. resize:none;
  72. padding: 15px 0;
  73. textarea {
  74. width: 100%;
  75. height: 90px;
  76. border: 1px solid #e3e3e3;
  77. appearance: none;
  78. outline: none;
  79. box-sizing: border-box;
  80. padding: 5px;
  81. }
  82. .number {
  83. position: absolute;
  84. bottom: 5px;
  85. right: 5px;
  86. font-size: 12px;
  87. color: #e0e0e0;
  88. }
  89. }
  90. .label {
  91. width: 50px;
  92. }
  93. .content {
  94. flex: 1;
  95. position: relative;
  96. .item_start{
  97. .vlc-rater{
  98. display: flex;
  99. .is-active{
  100. color: @globalColor !important;
  101. }
  102. }
  103. /* i{
  104. font-size: 12px;
  105. color: @globalColor;
  106. padding: 0 2px;
  107. }*/
  108. }
  109. }
  110. .uploading-box {
  111. width: 100%;
  112. box-sizing: border-box;
  113. font-size: 0;
  114. padding-top: 15px;
  115. .uploading-item {
  116. width: 25%;
  117. text-align: center;
  118. display: inline-block;
  119. padding: 0 5px 5px 5px;
  120. box-sizing: border-box;
  121. position: relative;
  122. .uploading-input {
  123. border: 2px dashed #ddd;
  124. margin: -2px;
  125. }
  126. .delete {
  127. position: absolute;
  128. color: #fff;
  129. font-size: 12px;
  130. top: -10px;
  131. width: 20px;
  132. right: 0px;
  133. height: 20px;
  134. border-radius: 10px;
  135. background: #000;
  136. }
  137. view {
  138. height: 0;
  139. padding-bottom: 100%;
  140. position: relative;
  141. }
  142. .img{
  143. overflow: hidden;
  144. image {
  145. width: 100%;
  146. height: 100%;
  147. position: absolute;
  148. left: 0;
  149. top: 0;
  150. }
  151. }
  152. }
  153. .uploading {
  154. background: url("https://ibrand-miniprogram.oss-cn-hangzhou.aliyuncs.com/%E5%B0%8F%E7%A8%8B%E5%BA%8F/uploading.png") no-repeat center;
  155. background-size:30% 30%;
  156. input {
  157. position: absolute;
  158. top: 0;
  159. bottom: 0;
  160. left: 0;
  161. right: 0;
  162. opacity: 0;
  163. width: 100%;
  164. }
  165. .add {
  166. font-size: 35px;
  167. font-weight: bold;
  168. }
  169. image {
  170. width: 25px;
  171. height: 25px;
  172. }
  173. }
  174. }
  175. }
  176. .submit {
  177. margin-top: 10px;
  178. width: 100%;
  179. line-height: 45px;
  180. color: #FFFFFF;
  181. background-color: @globalColor;
  182. font-size: 16px;
  183. border-radius: 0px;
  184. border: none;
  185. text-align: center;
  186. &.disabled {
  187. background-color: #e0e0e0;
  188. .doing .spinner {
  189. display: none;
  190. }
  191. }
  192. }
  193. }