comment.css 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125
  1. /* 导航栏 */
  2. .nav {
  3. background-color: #101010;
  4. z-index: 3;
  5. position: fixed;
  6. top: 0;
  7. left: 0;
  8. width: 100%;
  9. /* height: 10%; */
  10. height: .88rem;
  11. display: flex;
  12. }
  13. .back{
  14. position: absolute;
  15. left: 0;
  16. top: 0;
  17. z-index: 3;
  18. width: 10%;
  19. height: .88rem;
  20. display: flex;
  21. justify-content: center;
  22. align-items: center;
  23. }
  24. .back img {
  25. width: .18rem;
  26. }
  27. /* 页面标题 */
  28. .pageTitle {
  29. height: .88rem;
  30. width: 100%;
  31. display: flex;
  32. justify-content: center;
  33. align-items: center;
  34. background-color: #000;
  35. }
  36. .pageTitle img {
  37. width: 1.6rem;
  38. height: .8rem;
  39. }
  40. .comment {
  41. padding: 1rem .26rem;
  42. }
  43. .commentTitle {
  44. color: #EAEAEA;
  45. font-size: .38rem;
  46. }
  47. .commentList {
  48. }
  49. .commentContent {
  50. margin-top: .3rem;
  51. }
  52. .commentUser {
  53. display: flex;
  54. align-items: center;
  55. }
  56. .background {
  57. background-color: #1C1A1B;
  58. height: .48rem;
  59. }
  60. .commentUserImg {
  61. width: .4rem;
  62. height: .44rem;
  63. }
  64. .commentUserName {
  65. margin-left: .2rem;
  66. color: #CCCCCC;
  67. }
  68. .commentTime {
  69. margin-left: .2rem;
  70. color: #CCCCCC;
  71. font-size: .24rem;
  72. }
  73. .commentText {
  74. margin-top: .2rem;
  75. color: #CCCCCC;
  76. font-size: .28rem;
  77. }
  78. .commentBox {
  79. margin-top: .2rem;
  80. padding: .3rem;
  81. background-color: #2f2f2f;
  82. height: 1.4rem;
  83. }
  84. textarea {
  85. background-color: #2f2f2f;
  86. border: none;
  87. outline: none;
  88. resize: none;
  89. height: 100%;
  90. line-height: 100%;
  91. width: 100%;
  92. color: #fff;
  93. }
  94. .accountAndSend {
  95. margin-top: .3rem;
  96. display: flex;
  97. justify-content: space-between;
  98. align-items: center;
  99. }
  100. .account {
  101. display: flex;
  102. align-items: center;
  103. }
  104. .userImg {
  105. width: .4rem;
  106. height: 0.44rem;
  107. }
  108. .userName {
  109. color: #CCCCCC;
  110. margin-left: .2rem;
  111. }
  112. .sendBtn {
  113. width: 2.6rem;
  114. height: .88rem;
  115. line-height: .88rem;
  116. text-align: center;
  117. background-color: #CE5C2A;
  118. border-radius: .16rem;
  119. color: #EAEAEA;
  120. font-size: .32rem;
  121. }