View.wxss 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152
  1. .container {
  2. background-color: #efefef;
  3. }
  4. .evaluateBtn {
  5. background-color: #3e6ffd;
  6. color: #fff;
  7. font-size: 32rpx;
  8. text-align: center;
  9. margin: 26rpx 100rpx;
  10. padding: 30rpx 20rpx;
  11. border-radius: 10rpx;
  12. }
  13. .itemBox {
  14. background-color: #ffffff;
  15. margin: 26rpx 20rpx;
  16. padding: 30rpx 20rpx;
  17. border-radius: 10rpx;
  18. }
  19. .itemHeader {
  20. color: #000006;
  21. font-weight: bold;
  22. margin-bottom: 30rpx;
  23. font-size: 34rpx;
  24. }
  25. .itemBody {
  26. line-height: 48rpx;
  27. color: #333333;
  28. font-size: 28rpx;
  29. }
  30. .noneBox {
  31. text-align: center;
  32. }
  33. .noneImg {
  34. width: 190rpx;
  35. height: 180rpx;
  36. margin-bottom: 10rpx;
  37. }
  38. .noneText {
  39. display: block;
  40. color: #999999;
  41. font-size: 28rpx;
  42. }
  43. .infoItemBox {
  44. font-size: 28rpx;
  45. line-height: 60rpx;
  46. }
  47. .infoLable {
  48. width: 160rpx;
  49. display: inline-block;
  50. vertical-align: top;
  51. color: #666666;
  52. }
  53. .infoText {
  54. width: calc(100% - 160rpx);
  55. display: inline-block;
  56. vertical-align: top;
  57. color: #333333;
  58. word-break: break-all;
  59. }
  60. .infoContent {
  61. margin-top: 10rpx;
  62. }
  63. .photoListBox {
  64. width: calc(100%);
  65. line-height: 2;
  66. }
  67. .photoItemBox {
  68. width: calc(30% - 2rpx);
  69. height: 160rpx;
  70. position: relative;
  71. display: inline-block;
  72. border: 2rpx #E5E5E5 solid;
  73. margin-right: 3%;
  74. }
  75. .photoItemImg {
  76. width: 100%;
  77. height: 160rpx;
  78. }
  79. .vioceBox {
  80. display: inline-block;
  81. margin-right: 10rpx;
  82. height: 100%;
  83. }
  84. .vioceListBox {
  85. height: 100%;
  86. }
  87. .vioceItemBox {
  88. height: 100%;
  89. width: calc(100%);
  90. }
  91. .vioceItemImgBox {
  92. display: inline-block;
  93. vertical-align: middle;
  94. width: 100rpx;
  95. padding: 6rpx 20rpx;
  96. background-color: #fff;
  97. color: #999999;
  98. border: 2rpx #ccc solid;
  99. border-radius: 10rpx;
  100. text-align: left;
  101. position: relative;
  102. }
  103. .vioceItemBG {
  104. background-color: #bfbfbf;
  105. width: 0;
  106. position: absolute;
  107. left: 0;
  108. top: 0;
  109. height: 44rpx;
  110. border-radius: 10rpx;
  111. z-index: 0;
  112. }
  113. .isPlay {
  114. background-color: #F6F7F8;
  115. color: #000;
  116. }
  117. .vioceItemImg {
  118. width: 32rpx;
  119. height: 32rpx;
  120. display: inline-block;
  121. vertical-align: middle;
  122. margin-right: 20rpx;
  123. position: relative;
  124. z-index: 99;
  125. }
  126. .vioceItemDuration {
  127. color: #515151;
  128. display: inline-block;
  129. vertical-align: middle;
  130. position: relative;
  131. z-index: 99;
  132. }
  133. .fileListBox {
  134. padding: 10rpx 10rpx 20rpx;
  135. }
  136. .fileItemBox {
  137. display: flex;
  138. justify-content: space-between;
  139. align-items: center;
  140. width: 100%;
  141. }
  142. .fileItemBox + .fileItemBox {
  143. margin-top: 30rpx;
  144. }
  145. .fileName {
  146. width: calc(100%);
  147. white-space: nowrap;
  148. overflow: hidden;
  149. text-overflow: ellipsis;
  150. color: #53d4fc;
  151. }