inspect.wxss 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164
  1. .inspect .content {
  2. background-color: #fff;
  3. /* padding: 28rpx 0; */
  4. padding-top: 28rpx;
  5. }
  6. .inspect .title .item {
  7. height: 60rpx;
  8. background: #FFF7FA;
  9. font-size: 28rpx;
  10. font-family: PingFangSC-Regular, PingFang SC;
  11. font-weight: 400;
  12. color: #333333;
  13. }
  14. .inspect .content .list {
  15. position: relative;
  16. }
  17. .inspect .content .module {
  18. position: absolute;
  19. bottom: 0;
  20. left: 0;
  21. width: 100%;
  22. height: 154rpx;
  23. background: linear-gradient(180deg, rgba(255, 255, 255, 0.25) 0%, #FFFFFF 100%);
  24. }
  25. .inspect .module .icon {
  26. transform: rotate(90deg);
  27. }
  28. .inspect .content .list view,.content .list text {
  29. font-size: 28rpx;
  30. font-family: PingFangSC-Regular, PingFang SC;
  31. font-weight: 400;
  32. color: #333333;
  33. }
  34. .content .list .item {
  35. border-bottom: 2rpx solid #d3d3d3;
  36. }
  37. .content .left {
  38. width: 174rpx;
  39. padding: 30rpx 0;
  40. border-right: 2rpx solid #d3d3d3;
  41. }
  42. .content .item-btn image {
  43. width: 48rpx;
  44. height: 48rpx;
  45. background-color: #ccc;
  46. border-radius: 50%;
  47. }
  48. .border-radius {
  49. background: #FFFFFF;
  50. box-shadow: 0rpx 4rpx 14rpx 0rpx rgba(0, 0, 0, 0.05);
  51. border-radius: 24rpx;
  52. margin: 20rpx 0;
  53. }
  54. .detail {
  55. padding: 30rpx 28rpx;
  56. }
  57. .detail .top {
  58. padding-bottom: 30rpx;
  59. border-bottom: 2rpx solid #F2F2F2;
  60. }
  61. .detail .box-textarea {
  62. position: relative;
  63. padding-bottom: 30rpx;
  64. height: 280rpx;
  65. box-sizing: border-box;
  66. }
  67. .detail textarea {
  68. width: 100%;
  69. height: 100%;
  70. box-sizing: border-box;
  71. /* height: 280rpx;
  72. box-sizing: border-box; */
  73. padding: 30rpx 0 50rpx;
  74. }
  75. .detail .box-textarea .box-text {
  76. position: absolute;
  77. right: 0;
  78. bottom: 30rpx;
  79. font-size: 28rpx;
  80. color: #999999;
  81. }
  82. .detail .change-img {
  83. padding-top: 30rpx;
  84. border-top: 2rpx solid #F2F2F2;
  85. }
  86. .change-img .img-box {
  87. margin-top: 30rpx;
  88. display: grid;
  89. grid-gap: 20rpx 20rpx;
  90. grid-template-columns: repeat(3, 1fr);
  91. }
  92. .change-img .img-box .item {
  93. width: 200rpx;
  94. height: 200rpx;
  95. border-radius: 16px;
  96. box-sizing: border-box;
  97. overflow: hidden;
  98. position: relative;
  99. }
  100. .change-img .delete-img {
  101. position: absolute;
  102. top: -24rpx;
  103. right: -16rpx;
  104. width: 48rpx;
  105. height: 48rpx;
  106. border-radius: 50%;
  107. background-color: black;
  108. }
  109. .change-img .img-box .item.upload {
  110. border: dashed 2rpx #c6c6c6;
  111. background: #F4F4F4;
  112. }
  113. .change-img .upload image {
  114. width: 48rpx;
  115. height: 48rpx;
  116. background-color: #ccc;
  117. margin-bottom: 6rpx;
  118. }
  119. .change-img .img-box video {
  120. width: 100%;
  121. height: 100%;
  122. }
  123. .change-img .img-box .icon-01 {
  124. width: 64rpx;
  125. height: 64rpx;
  126. position: absolute;
  127. }
  128. .change-img .img-box .img-content {
  129. width: 100%;
  130. height: 100%;
  131. }
  132. .btn {
  133. margin: 30rpx 0;
  134. height: 96rpx;
  135. width: 100%;
  136. background: #FF77B0;
  137. border-radius: 48rpx;
  138. font-size: 36rpx;
  139. color: #fff;
  140. }