page1.css 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124
  1. .body {
  2. margin-top: 90px;
  3. }
  4. .body .color {
  5. color: #2382ff;
  6. }
  7. .body h3 {
  8. margin-top: 0;
  9. }
  10. .body #content {
  11. text-align: justify;
  12. }
  13. .body #content p {
  14. text-indent: 30px;
  15. }
  16. .body #content > p:last-child {
  17. padding: 10px 0px;
  18. }
  19. .body #read {
  20. margin-top: 20px;
  21. text-align: center;
  22. }
  23. .body #read .good {
  24. border-radius: 5px;
  25. border: 1px solid #e6e6e6;
  26. display: inline-block;
  27. padding: 5px 30px;
  28. margin-bottom: 10px;
  29. }
  30. .body .articles ul {
  31. width: 100%;
  32. border-top: 1px solid #e6e6e6;
  33. padding: 10px 20px;
  34. list-style: square;
  35. color: #777;
  36. overflow: hidden;
  37. }
  38. .body .articles ul li {
  39. overflow: hidden;
  40. text-overflow: ellipsis;
  41. white-space: nowrap;
  42. width: 100%;
  43. padding: 5px 0px;
  44. }
  45. .body #comment .h5 {
  46. display: flex;
  47. justify-content: space-between;
  48. align-content: center;
  49. }
  50. .body #comment .remind {
  51. text-align: center;
  52. background-color: #e6e6e6;
  53. padding: 5px;
  54. border-radius: 5px;
  55. margin: 10px 0px;
  56. }
  57. .body #comment .comment {
  58. border-top: 1px solid #e6e6e6;
  59. padding-top: 10px;
  60. }
  61. .body #comment .comment .nocomment,
  62. .body #comment .comment .loading,
  63. .body #comment .comment .nodata {
  64. display: none;
  65. text-align: center;
  66. margin: 10px;
  67. }
  68. .body #comment .comment .nocomment {
  69. display: block;
  70. padding-bottom: 10px;
  71. }
  72. .body #comment .comment .nocomment:hover {
  73. color: #2382ff;
  74. }
  75. .body #comment .comment .user {
  76. width: 100%;
  77. padding: 20px 0;
  78. border-bottom: 1px solid #e6e6e6;
  79. display: grid;
  80. grid-template-columns: 10% 90%;
  81. }
  82. .body #comment .comment .user .u-img {
  83. width: 100%;
  84. text-align: center;
  85. }
  86. .body #comment .comment .user .u-img .img {
  87. width: 100%;
  88. max-width: 64px;
  89. }
  90. .body #comment .comment .user .u-content {
  91. margin-left: 10px;
  92. text-align: justify;
  93. }
  94. .body #comment .comment .user .u-content .u-name {
  95. font-size: 16px;
  96. }
  97. .body #comment .comment .user .u-content .u-detail {
  98. padding: 5px 0px;
  99. }
  100. .body #comment .comment .user .u-content .u-flex {
  101. display: flex;
  102. justify-content: space-between;
  103. align-items: center;
  104. }
  105. #toast #report {
  106. display: none;
  107. text-align: start;
  108. }
  109. #toast #report ul {
  110. list-style: none;
  111. padding: 0;
  112. }
  113. #toast #report ul li {
  114. padding: 5px;
  115. border-bottom: 1px solid #e6e6e6;
  116. }
  117. #toast #ping {
  118. display: none;
  119. }
  120. #toast #ping .alert {
  121. display: none;
  122. padding: 5px;
  123. margin-bottom: 5px;
  124. }