feedback-reply.acss 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225
  1. /* @import url("../../components/ax/ax.css"); */
  2. ax-body{
  3. display: block;
  4. height: 100%;
  5. background: #F6FAFF;
  6. }
  7. .page-background{
  8. position: fixed;
  9. top: 0;
  10. left: 0;
  11. right: 0;
  12. z-index: 0;
  13. }
  14. .page-background image{
  15. display: block;
  16. width: 100%;
  17. }
  18. .body{
  19. display: block;
  20. width: 100%;
  21. height: 100%;
  22. position: relative;
  23. overflow: auto;
  24. z-index: 1;
  25. }
  26. .root{
  27. height: 100%;
  28. padding: 10px;
  29. overflow: auto;
  30. }
  31. .item{
  32. padding-left: 30px;
  33. padding-bottom: 25px;
  34. font-size: 12px;
  35. color: #999;
  36. position: relative;
  37. }
  38. .item::after{
  39. content: '';
  40. width: 2px;
  41. background-color: var(--color-main);
  42. position: absolute;
  43. top: 0;
  44. left: 13px;
  45. bottom: 0;
  46. z-index: 1;
  47. }
  48. .list .item:last-child::after{
  49. display: none;
  50. }
  51. .mask-box{
  52. display: flex;
  53. align-items: center;
  54. justify-content: space-between;
  55. height: 20px;
  56. }
  57. .mask{
  58. display: flex;
  59. align-items: center;
  60. justify-content: center;
  61. font-size: 18px;
  62. width: 1em;
  63. height: 1em;
  64. box-sizing: border-box;
  65. border: 3px solid var(--color-main);
  66. background-color: #fff;
  67. border-radius: 50%;
  68. position: absolute;
  69. top: 0;
  70. left: 5px;
  71. z-index: 2;
  72. }
  73. .card{
  74. margin-top: 10px;
  75. background-color: #fff;
  76. padding: 10px;
  77. box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  78. border-radius: 6px;
  79. }
  80. .reply{
  81. position: relative;
  82. background-color: #eee;
  83. padding: 10px;
  84. border-radius: 2px;
  85. margin-top: 10px;
  86. }
  87. .reply::before{
  88. content: '';
  89. display: block;
  90. width: 0;
  91. height: 0;
  92. border: 5px solid transparent;
  93. border-bottom-color: #eee;
  94. position: absolute;
  95. left: 0;
  96. top: 0;
  97. -webkit-transform: translate(100%,-100%);
  98. transform: translate(100%,-100%);
  99. }
  100. .start-label{
  101. margin-right: 10px;
  102. }
  103. .start-label.vi{
  104. color: var(--color-main);
  105. }
  106. .loading-more{
  107. text-align: center;
  108. position: relative;
  109. }
  110. .loading-more::after{
  111. content: '';
  112. border-top: 1px solid #eee;
  113. position: absolute;
  114. top: 50%;
  115. left: 20px;
  116. right: 20px;
  117. -webkit-transform: translateY(-50%);
  118. transform: translateY(-50%);
  119. }
  120. .loading-more > .text{
  121. color: #aaa;
  122. background-color: #fff;
  123. padding: 5px 20px;
  124. font-size: 13px;
  125. position: relative;
  126. z-index: 2;
  127. }
  128. .item-pic{
  129. display: inline-block;
  130. margin-left: 5px;
  131. white-space: nowrap;
  132. text-decoration: underline;
  133. color: #444;
  134. }
  135. .nothing-wrap{
  136. display: flex;
  137. align-items: center;
  138. justify-content: center;
  139. flex-direction: column;
  140. height: 100%;
  141. background-color: #fff;
  142. border-radius: 10px;
  143. box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  144. color: #ccc;
  145. font-size: 14px;
  146. }
  147. .nothing-wrap .icon{
  148. font-size: 17vw;
  149. color: #ddd;
  150. }