通用评论 vedio

index.css 1.9KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113
  1. .comment-item-box {
  2. margin: 10px 0 0 0;
  3. padding: 15px 5px 0 5px;
  4. border-top: 1px solid #d5d5d5;
  5. }
  6. .comment-item-left {
  7. display: inline-block;
  8. vertical-align: top;
  9. width: 40px;
  10. }
  11. .comment-item-right {
  12. display: inline-block;
  13. width: 90%;
  14. margin-left: 10px;
  15. /* margin-bottom: 20px; */
  16. }
  17. .comment-item-content {
  18. margin: 10px 0 20px 0;
  19. word-break: break-all;
  20. margin-bottom: 10px;
  21. }
  22. .comment-item-bottom {
  23. margin: 0px auto;
  24. }
  25. .comment-item-bottom-left {
  26. float: left;
  27. user-select: none;
  28. }
  29. .comment-item-bottom-right {
  30. float: right;
  31. margin-left: 5px;
  32. cursor: pointer;
  33. }
  34. .comment-favor {
  35. /* font-size: 20px; */
  36. }
  37. .comment-favored {
  38. color: #4a90e2;
  39. }
  40. .comment-item-image {
  41. width: 400px;
  42. max-width: 100%;
  43. }
  44. .comment-item-image .comment-item-image-wrapper {
  45. float: left;
  46. width: 25%;
  47. box-sizing: border-box;
  48. padding: 5px;
  49. }
  50. .comment-item-image .comment-item-image-wrapper .comment-img-thumbnail {
  51. background-position: center;
  52. background-size: cover;
  53. display: inline-block;
  54. width: 100%;
  55. height: 0;
  56. padding-bottom: 100%;
  57. border-radius: 5px;
  58. cursor: url("//links-comment.oss-cn-beijing.aliyuncs.com/comment/20180928/QPI84fxmD.undefined"),
  59. auto;
  60. }
  61. .comment-item-image .comment-item-image-wrapper .comment-img-divider {
  62. display: inline-block;
  63. width: 100%;
  64. height: 0;
  65. padding-bottom: 100%;
  66. border-radius: 5px;
  67. }
  68. .comment-item-image .comment-img {
  69. margin-right: 10px;
  70. }
  71. .comment-item-icon {
  72. float: right;
  73. margin-left: 10px;
  74. }
  75. @media screen and (max-width: 616px) and (min-width: 449px) {
  76. .comment-item-right {
  77. display: inline-block;
  78. width: 85%;
  79. margin-left: 10px;
  80. }
  81. }
  82. @media screen and (max-width: 449px) and (min-width: 365px) {
  83. .comment-item-right {
  84. display: inline-block;
  85. width: 80%;
  86. margin-left: 10px;
  87. }
  88. }
  89. @media screen and (max-width: 365px) {
  90. .comment-item-right {
  91. display: inline-block;
  92. width: 75%;
  93. margin-left: 10px;
  94. }
  95. }