No Description
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

comment_list.htm 3.9KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173
  1. {eyou:commentlist name="$Comment" id="field"}
  2. {eq name="$key" value="0"}
  3. <style type="text/css">
  4. .appraise-ul li:first-child {
  5. padding-top: 6px;
  6. }
  7. .appraise-ul li {
  8. position: relative;
  9. padding: 18px 0;
  10. }
  11. .appraise-ul li .cmt_user {
  12. line-height: 20px;
  13. }
  14. .appraise-ul li .cmt_user img {
  15. width: 20px !important;
  16. height: 20px !important;
  17. border-radius: 50%;
  18. vertical-align: middle;
  19. }
  20. .appraise-ul li .cmt_user .user {
  21. white-space: nowrap;
  22. overflow: hidden;
  23. text-overflow: ellipsis;
  24. margin-left: 12px;
  25. display: inline-block;
  26. color: #262626;
  27. max-width: 98px;
  28. vertical-align: middle;
  29. }
  30. .appraise-ul li .cmt_user .z_comment-star {
  31. position: relative;
  32. display: inline-block;
  33. margin: -2px 0 -2px 6px;
  34. vertical-align: middle;
  35. }
  36. .z_comment-star {
  37. display: inline-block;
  38. width: 78px;
  39. height: 14px;
  40. background: url(__PUBLIC__/static/common/images/star.png) no-repeat
  41. }
  42. .z_star0 {
  43. background-position: -80px 0
  44. }
  45. .z_star1 {
  46. background-position: -64px 0
  47. }
  48. .z_star2 {
  49. background-position: -48px 0
  50. }
  51. .z_star3 {
  52. background-position: -32px 0
  53. }
  54. .z_star4 {
  55. background-position: -16px 0
  56. }
  57. .z_star5 {
  58. background-position: 0 0
  59. }
  60. .appraise-ul li .cmt_user .date {
  61. float: right;
  62. color: #999;
  63. margin-left: -60px;
  64. font-size: 12px;
  65. }
  66. .appraise-ul li .cmt_cnt {
  67. overflow: hidden;
  68. text-overflow: ellipsis;
  69. /* display: -webkit-box; */
  70. /* -webkit-line-clamp: 3; */
  71. /* -webkit-box-orient: vertical; */
  72. position: relative;
  73. line-height: 1.5;
  74. font-size: 13px;
  75. margin: 18px 0;
  76. word-break: break-all;
  77. word-wrap:break-word;
  78. text-align:justify;
  79. /* white-space: normal; */
  80. /* max-height: 126px; */
  81. }
  82. .appraise-ul li .cmt_att {
  83. white-space: nowrap;
  84. -webkit-overflow-scrolling: touch;
  85. overflow: hidden;
  86. overflow-x: auto;
  87. margin-right: -10px;
  88. }
  89. .appraise-ul li .cmt_att .img {
  90. display: inline-block;
  91. width: 80px;
  92. height: 80px;
  93. margin-right: 6px;
  94. border-radius: 6px;
  95. overflow: hidden;
  96. text-align: center;
  97. vertical-align: middle;
  98. background-color: #f3f3f3;
  99. background-image: url(__PUBLIC__/static/common/images/not_adv.jpg);
  100. background-size: cover;
  101. }
  102. .appraise-ul li .cmt_att .img img {
  103. width: auto;
  104. display: inline-block;
  105. height: auto;
  106. min-width: 80px !important;
  107. max-height: 80px !important;
  108. max-width: unset !important;
  109. }
  110. .appraise-ul li .cmt-ge {
  111. font-size: 12px;
  112. color: #bfbfbf;
  113. margin-top: 10px;
  114. }
  115. .appraise-ul li:after {
  116. content: "";
  117. height: 0;
  118. display: block;
  119. border-bottom: 1px solid #ddd;
  120. position: absolute;
  121. left: 0;
  122. right: 0;
  123. bottom: 0;
  124. }
  125. .appraise-ul li .cmt_ucnt {
  126. overflow: hidden;
  127. /* text-overflow: ellipsis; */
  128. /* display: -webkit-box; */
  129. /* -webkit-line-clamp: 3; */
  130. /* -webkit-box-orient: vertical; */
  131. position: relative;
  132. line-height: 1.5;
  133. font-size: 13px;
  134. margin: 10px 0 0 0;
  135. word-break: break-all;
  136. word-wrap:break-word;
  137. text-align:justify;
  138. /* white-space: normal; */
  139. /* max-height: 126px; */
  140. }
  141. </style>
  142. {/eq}
  143. <li>
  144. <div class="cmt_user">
  145. <img src="{$field.head_pic}">
  146. <span class="user">{$field.nickname}</span>
  147. <span class="z_comment-star z_star{$field.total_score}"><span></span></span>
  148. <span class="date">{$field.add_time|date='Y-m-d H:i:s',###}</span>
  149. </div>
  150. <div class="cmt_cnt">{$field.content}</div>
  151. <div class="cmt_att">
  152. {eyou:volist name="$field.upload_img" id="img"}
  153. {eyou:notempty name="$img"}
  154. <span class="img"> <img src="{$img}"> </span>
  155. {/eyou:notempty}
  156. {/eyou:volist}
  157. </div>
  158. <div class="cmt-ge">
  159. {notempty name="$field.spec_value"}[ {$field.spec_value} ]{else/}{/notempty}
  160. </div>
  161. <div class="cmt_ucnt" {empty name="$field.admin_reply.adminReply"} style="display: none;" {/empty}>
  162. 回复:<span style="color: red;">{$field.admin_reply.adminReply}</span>
  163. <!-- <span style="float: right; color: #999; font-size: 12px;">{$field.admin_reply.replyTime}</span> -->
  164. </div>
  165. </li>
  166. {/eyou:commentlist}