details.scss 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195
  1. /* 主要区域 */
  2. .main {
  3. width: 100%;
  4. background-color: #ffffff;
  5. padding: 30rpx;
  6. box-sizing: border-box;
  7. .title {
  8. font-size: 30rpx;
  9. font-family: PingFang SC-Bold, PingFang SC;
  10. font-weight: bold;
  11. color: #333333;
  12. line-height: 44rpx;
  13. }
  14. .incidental {
  15. width: 100%;
  16. margin-top: 20rpx;
  17. }
  18. }
  19. .box {
  20. width: 690rpx;
  21. margin: 0 auto;
  22. margin-top: 30rpx;
  23. .label {
  24. font-size: 28rpx;
  25. font-family: PingFang SC-Bold, PingFang SC;
  26. font-weight: bold;
  27. color: #333333;
  28. }
  29. video {
  30. width: 690rpx;
  31. height: 360rpx;
  32. border-radius: 16rpx;
  33. overflow: hidden;
  34. margin-top: 20rpx;
  35. }
  36. }
  37. /* 通告评价 */
  38. .evaluate {
  39. width: 690rpx;
  40. background: #FFFFFF;
  41. border-radius: 16rpx;
  42. margin: 0 auto;
  43. margin-top: 20rpx;
  44. box-sizing: border-box;
  45. overflow: hidden;
  46. .mtitle {
  47. display: flex;
  48. align-items: center;
  49. justify-content: space-between;
  50. width: 100%;
  51. height: 90rpx;
  52. padding: 0 20rpx 0 30rpx;
  53. border-bottom: 1px solid #EEEEEE;
  54. box-sizing: border-box;
  55. .title-l {
  56. font-size: 28rpx;
  57. font-family: PingFang SC-Bold, PingFang SC;
  58. font-weight: bold;
  59. color: #333333;
  60. }
  61. }
  62. .title-r {
  63. font-size: 24rpx;
  64. font-family: PingFang SC-Regular, PingFang SC;
  65. color: #999999;
  66. }
  67. .score {
  68. display: flex;
  69. align-items: center;
  70. height: 48rpx;
  71. // margin-left: 30rpx;
  72. margin: 40rpx 0 50rpx 30rpx;
  73. .rate {
  74. padding: 0 20rpx;
  75. margin-top: -12rpx;
  76. }
  77. }
  78. }
  79. /* 虚线 */
  80. .cut-off-rule {
  81. width: 100%;
  82. height: 1rpx;
  83. box-sizing: border-box;
  84. border-bottom: 1rpx dashed #CCCCCC;
  85. margin-top: 30rpx;
  86. }
  87. /* 文本域 */
  88. textarea {
  89. width: 630rpx;
  90. height: 210rpx;
  91. background: #F5F5F5;
  92. border-radius: 8rpx;
  93. margin: 24rpx auto 0;
  94. padding: 20rpx 30rpx;
  95. box-sizing: border-box;
  96. text-align: left;
  97. }
  98. /* 按钮盒子 */
  99. .but-box {
  100. width: 100%;
  101. text-align: center;
  102. margin: 50rpx 0;
  103. }
  104. .tag {
  105. max-width: 200rpx !important;
  106. height: 36rpx;
  107. line-height: 36rpx;
  108. padding: 0 10rpx;
  109. margin-right: 10rpx;
  110. font-size: 20rpx;
  111. font-family: PingFangSC-Regular-, PingFangSC-Regular;
  112. font-weight: normal;
  113. }
  114. .evaluation-title {
  115. font-size: 28rpx;
  116. font-weight: bold;
  117. color: #333333;
  118. margin-left: 30rpx;
  119. }
  120. .incidental {
  121. display: flex;
  122. justify-content: space-between;
  123. height: 36rpx;
  124. width: 630rpx;
  125. margin-top: 10rpx;
  126. &_l {
  127. display: flex;
  128. align-items: center;
  129. .tag {
  130. max-width: 100rpx;
  131. height: 36rpx;
  132. line-height: 36rpx;
  133. padding: 0 10rpx;
  134. margin-right: 10rpx;
  135. font-size: 20rpx;
  136. font-family: PingFangSC-Regular-, PingFangSC-Regular;
  137. font-weight: normal;
  138. }
  139. .time {
  140. font-size: 20rpx;
  141. font-family: PingFang SC-Regular, PingFang SC;
  142. color: #999999;
  143. margin-top: 10rpx;
  144. }
  145. }
  146. &_r {
  147. display: flex;
  148. align-items: center;
  149. font-size: 20rpx;
  150. font-family: PingFang SC-Regular, PingFang SC;
  151. color: #999999;
  152. margin-top: 10rpx;
  153. &_item {
  154. margin-right: 30rpx;
  155. height: 28rpx;
  156. display: flex;
  157. align-items: center;
  158. text {
  159. margin-right: 10rpx;
  160. }
  161. }
  162. &_item:last-child {
  163. margin-right: 0;
  164. }
  165. }
  166. }