recordSheet.wxss 2.5 KB

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