選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

form-upload.wxss 651B

123456789101112131415161718192021222324252627282930313233343536373839
  1. .form {
  2. font-size: 28rpx;
  3. border-bottom: 1rpx dashed gray;
  4. }
  5. .form-label {
  6. width: 240rpx;
  7. font-size: 28rpx;
  8. line-height: 36rpx;
  9. color: gray;
  10. }
  11. .form-value {
  12. width: 510rpx;
  13. font-size: 28rpx;
  14. color: gray;
  15. }
  16. .form-label::before {
  17. display: inline-block;
  18. margin-right: 6rpx;
  19. color: #ef473a;
  20. font-size: 28rpx;
  21. font-family: SimSun, sans-serif;
  22. line-height: 1;
  23. content: "*"
  24. }
  25. .upload-content {
  26. position: relative;
  27. width: 266rpx;
  28. height: 150rpx;
  29. margin-bottom: 12rpx;
  30. background-repeat: no-repeat;
  31. /* 防止图片重复 */
  32. background-position: center center;
  33. /* 图片居中 */
  34. background-size: 50% auto;
  35. }