uploadShow.wxss 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126
  1. /* pages/uploadShow/uploadShow.wxss */
  2. .container {
  3. padding: 0;
  4. margin: 0;
  5. }
  6. .show-box,.video-box {
  7. width: 700rpx;
  8. padding: 25rpx;
  9. display: flex;
  10. flex-wrap: wrap;
  11. }
  12. .title {
  13. min-width: 50rpx;
  14. max-width: 200rpx;
  15. font-size: 32rpx;
  16. margin-right: 20rpx;
  17. height: 100rpx;
  18. line-height: 100rpx;
  19. border-bottom: 1px solid #eee;
  20. }
  21. .select-view,
  22. .input-view {
  23. width: 450rpx;
  24. height: 100rpx;
  25. line-height: 100rpx;
  26. border-bottom: 1px solid #eee;
  27. }
  28. .input-view input {
  29. height: 100rpx;
  30. line-height: 100rpx;
  31. }
  32. .textarea-title {
  33. border: none;
  34. width: 700rpx;
  35. }
  36. textarea {
  37. width: 650rpx;
  38. padding: 25rpx;
  39. height: 200rpx;
  40. background: #f1f1f1;
  41. }
  42. .textarea-view {
  43. border-bottom: 1px solid #eee;
  44. height: 280rpx;
  45. }
  46. .uploadImg-task-view {
  47. display: grid;
  48. justify-content: space-between;
  49. grid-template-columns: repeat(auto-fill, 140rpx);
  50. grid-gap: auto;
  51. width: 650rpx;
  52. margin: 0 auto;
  53. border-bottom: 1px dashed #ccc;
  54. padding-bottom: 40rpx;
  55. margin-bottom: 40rpx;
  56. }
  57. .my-img-view{
  58. position: relative;
  59. margin: 20rpx 0 20rpx;
  60. }
  61. .del-btn{
  62. position: absolute;
  63. width: 40rpx;
  64. height: 40rpx;
  65. line-height: 40rpx;
  66. z-index: 2;
  67. background: #cc6031;
  68. color: #FFF;
  69. text-align: center;
  70. font-weight: 600;
  71. border-radius: 50rpx;
  72. top: -20rpx;
  73. left: -20rpx;
  74. border: 8rpx solid #FFF;
  75. }
  76. .upload-btn image{
  77. height: 40rpx;
  78. width: 40rpx;
  79. }
  80. .upload-btn{
  81. width: 139rpx;
  82. height: 139rpx;
  83. border: 1rpx dashed #ccc;
  84. text-align: center;
  85. background: #f8f8f8;
  86. margin: 20rpx 0 20rpx;
  87. color: #999;
  88. font-size: 22rpx;
  89. line-height: 36rpx;
  90. }
  91. .new-task-img{
  92. width: 139rpx;
  93. height: 139rpx;
  94. border: 1rpx dashed #ccc;
  95. }
  96. .new-task-img image{
  97. width: 100%;
  98. height: 100%;
  99. }
  100. .btn-view{
  101. position: fixed;
  102. bottom: 60rpx;
  103. width: 750rpx;
  104. }
  105. .submint-btn{
  106. background: #005033;
  107. border-radius: 50rpx;
  108. color: #FFF;
  109. font-weight: 400;
  110. width: 400rpx;
  111. }