details.scss 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169
  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. .title-r {
  40. font-size: 24rpx;
  41. font-family: PingFang SC-Regular, PingFang SC;
  42. color: #999999;
  43. }
  44. .score {
  45. display: flex;
  46. align-items: center;
  47. height: 48rpx;
  48. // margin-left: 30rpx;
  49. margin: 40rpx 0 50rpx 30rpx;
  50. .rate {
  51. padding: 0 20rpx;
  52. margin-top: -12rpx;
  53. }
  54. }
  55. }
  56. /* 虚线 */
  57. .cut-off-rule {
  58. width: 100%;
  59. height: 1rpx;
  60. box-sizing: border-box;
  61. border-bottom: 1rpx dashed #CCCCCC;
  62. margin-top: 30rpx;
  63. }
  64. /* 文本域 */
  65. textarea {
  66. width: 630rpx;
  67. height: 210rpx;
  68. background: #F5F5F5;
  69. border-radius: 8rpx;
  70. margin: 24rpx auto 0;
  71. padding: 20rpx 30rpx;
  72. box-sizing: border-box;
  73. text-align: left;
  74. }
  75. /* 按钮盒子 */
  76. .but-box {
  77. width: 100%;
  78. text-align: center;
  79. margin: 50rpx 0;
  80. }
  81. .tag {
  82. max-width: 200rpx !important;
  83. height: 36rpx;
  84. line-height: 36rpx;
  85. padding: 0 10rpx;
  86. margin-right: 10rpx;
  87. font-size: 20rpx;
  88. font-family: PingFangSC-Regular-, PingFangSC-Regular;
  89. font-weight: normal;
  90. }
  91. .evaluation-title {
  92. font-size: 28rpx;
  93. font-weight: bold;
  94. color: #333333;
  95. margin-left: 30rpx;
  96. }
  97. .incidental {
  98. display: flex;
  99. justify-content: space-between;
  100. height: 36rpx;
  101. width: 630rpx;
  102. margin-top: 10rpx;
  103. &_l {
  104. display: flex;
  105. align-items: center;
  106. .tag {
  107. max-width: 100rpx;
  108. height: 36rpx;
  109. line-height: 36rpx;
  110. padding: 0 10rpx;
  111. margin-right: 10rpx;
  112. font-size: 20rpx;
  113. font-family: PingFangSC-Regular-, PingFangSC-Regular;
  114. font-weight: normal;
  115. }
  116. .time {
  117. font-size: 20rpx;
  118. font-family: PingFang SC-Regular, PingFang SC;
  119. color: #999999;
  120. margin-top: 10rpx;
  121. }
  122. }
  123. &_r {
  124. display: flex;
  125. align-items: center;
  126. font-size: 20rpx;
  127. font-family: PingFang SC-Regular, PingFang SC;
  128. color: #999999;
  129. margin-top: 10rpx;
  130. &_item {
  131. margin-right: 30rpx;
  132. height: 28rpx;
  133. display: flex;
  134. align-items: center;
  135. text {
  136. margin-right: 10rpx;
  137. }
  138. }
  139. &_item:last-child {
  140. margin-right: 0;
  141. }
  142. }
  143. }