dailogue.css 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141
  1. ul{
  2. padding:1.5rem 0.8rem;
  3. /*margin-bottom: 5rem;*/
  4. }
  5. li {
  6. display: block;
  7. width: 100%;
  8. clear: both;
  9. }
  10. .time {
  11. text-align: center;
  12. color: #c8c8c8;
  13. font-size: 1rem;
  14. margin-bottom: 1rem;
  15. }
  16. .dailogue {
  17. font-size: 1.3rem;
  18. }
  19. .dailogue img {
  20. width: 3.6rem;
  21. height: 3.6rem;
  22. border-radius: 50%;
  23. background-color: #abcdef;
  24. }
  25. .headicon-other {
  26. float: left;
  27. }
  28. .headicon-self {
  29. float: right;
  30. }
  31. span {
  32. display: inline-block;
  33. }
  34. .left-trangle {
  35. width: 1rem;
  36. height: 1rem;
  37. border: 0.5rem solid;
  38. border-color: #ece9ed #fff #ece9ed #ece9ed;
  39. float: left;
  40. margin-top: 1rem;
  41. }
  42. .right-trangle {
  43. width: 1rem;
  44. height: 1rem;
  45. border: 0.5rem solid;
  46. border-color: #ece9ed #ece9ed #ece9ed #05c0ab;
  47. float: right;
  48. margin-top: 1rem;
  49. }
  50. .left,.right {
  51. min-height: 3.5rem;
  52. max-width: 18rem;
  53. border-radius: 10px;
  54. padding: 1rem;
  55. line-height: 1.8rem;
  56. }
  57. .left {
  58. background-color: #fff;
  59. color: #606060;
  60. float: left;
  61. }
  62. .right {
  63. background-color: #05c0ab;
  64. color: #fff;
  65. float: right;
  66. }
  67. .margin {
  68. margin-bottom: 1rem;
  69. }
  70. header {
  71. background-color: #fff;
  72. position: fixed;
  73. bottom: 0;
  74. z-index: 10;
  75. width: 100%;
  76. height: 3.8rem;
  77. }
  78. textarea {
  79. height: 3.8rem;
  80. line-height: 2rem;
  81. width: 100%;
  82. color: #777;
  83. border-style: none;
  84. resize: none;
  85. font-size: 1.5rem;
  86. padding: 1rem 4.5rem 0 1.5rem;
  87. }
  88. section {
  89. width: 4.4rem;
  90. height: 3.8rem;
  91. background-color: #fff;
  92. position: fixed;
  93. right: 0;
  94. bottom: 0;
  95. }
  96. #beforeheader{
  97. width: 100%;
  98. height: 5rem;
  99. position: relative;
  100. bottom: 0;
  101. }
  102. #send {
  103. width: 2.5rem;
  104. position: absolute;
  105. top: 50%;
  106. left: 50%;
  107. margin-top: -1.125rem;
  108. margin-left: -1.2rem;
  109. }
  110. #commentBtn{
  111. color: #05c0ab;
  112. position: fixed;
  113. bottom: 100px;
  114. z-index: 10;
  115. right: 20px;
  116. background: url("../images/bubble-icon.png");
  117. background-repeat: no-repeat;
  118. background-size: cover;
  119. background-position: center 100%;
  120. width:38px;
  121. height: 38px;
  122. }