style.css 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155
  1. .o2_im_out {
  2. width: 100%;
  3. height: 100%;
  4. overflow: hidden;
  5. }
  6. .o2_im_chat_list {
  7. border-top: 1px solid rgb(255, 255, 255);
  8. border-right: 1px solid rgb(221, 221, 221);
  9. float: left;
  10. width: 257px;
  11. height: 100%;
  12. }
  13. .o2_im_chat_list_top {
  14. margin-bottom: 20px;
  15. height: 40px;
  16. background-color: rgb(248, 248, 248);
  17. border-bottom: 1px solid rgb(204, 204, 204);
  18. }
  19. .o2_im_chat_list_top .add {
  20. background: url(/x_component_IMV2/$Main/default/icons/add.png) center center no-repeat;
  21. width: 40px;
  22. height: 40px;
  23. cursor: pointer;
  24. float: right;
  25. }
  26. .o2_im_chat_list_top .search_out {
  27. margin-right: 40px;
  28. height: 40px;
  29. }
  30. .o2_im_chat_list_top .search_icon {
  31. float: left;
  32. width: 40px;
  33. height: 40px;
  34. background: url(/x_component_IMV2/$Main/default/icons/search.png) center center no-repeat;
  35. cursor: pointer;
  36. }
  37. .o2_im_chat_list_top .search_input_out {
  38. margin-left: 40px; text-align: left;
  39. }
  40. .o2_im_chat_list_top .search_input {
  41. margin-top: 7px;
  42. width: 96%;
  43. height: 24px;
  44. line-height: 24px;
  45. border: 0px;
  46. font-family: "Microsoft YaHei";
  47. font-size: 12px;
  48. color: rgb(153, 153, 153);
  49. background: transparent;
  50. user-select: auto;
  51. }
  52. .o2_im_chat_list_top .add_button {
  53. height: 50px;
  54. width: 160px;
  55. color: rgb(51, 51, 51);
  56. font-size: 16px;
  57. line-height: 50px;
  58. padding-left: 10px;
  59. padding-right: 10px;
  60. cursor: pointer;
  61. margin: 0 auto;
  62. border:1px solid rgb(204, 204, 204);
  63. }
  64. .o2_im_chat_list_top .add_button .icon {
  65. height: 50px;
  66. width: 30px;
  67. float: left;
  68. background: url(/x_component_IMV2/$Main/default/icons/icon_newapply.png) center center no-repeat;
  69. }
  70. .o2_im_chat_list_top .add_button .text {
  71. line-height: 50px;
  72. height: 50px;
  73. float: left;
  74. }
  75. .o2_im_chat_list .item {
  76. overflow: hidden;
  77. height: 60px;
  78. margin: 0px;
  79. }
  80. .o2_im_chat_list .item .base {
  81. height: 60px;
  82. cursor: pointer;
  83. }
  84. .o2_im_chat_list .item .normal {
  85. background-color: rgb(253, 253, 253);
  86. }
  87. .o2_im_chat_list .item .check {
  88. background-color: rgb(228, 228, 228);
  89. }
  90. .o2_im_chat_list .item .avatar {
  91. background-position: center center;
  92. background-repeat: no-repeat;
  93. margin-left: 16px;
  94. height: 48px;
  95. width: 48px;
  96. border-radius: 16px;
  97. margin-top: 6px;
  98. background-color: rgb(255, 255, 255);
  99. float: left;
  100. }
  101. .o2_im_chat_list .item .avatar .img {
  102. width: 48px;
  103. height: 48px;
  104. border: 0px;
  105. border-radius: 24px;
  106. }
  107. .o2_im_chat_list .item .body {
  108. height: 59px;
  109. margin-left: 16px;
  110. border-bottom: 1px solid rgb(221, 221, 221);
  111. }
  112. .o2_im_chat_list .item .body_up {
  113. height:30px;
  114. line-height: 30px;
  115. margin-left: 56px;
  116. margin-right: 14px;
  117. }
  118. .o2_im_chat_list .item .body_up .body_title {
  119. float:left;
  120. color: rgb(51, 51, 51);
  121. overflow:hidden;
  122. }
  123. .o2_im_chat_list .item .body_up .body_time {
  124. float: right;
  125. color: rgb(191, 191, 191);
  126. font-size: 12px;
  127. overflow:hidden;
  128. }
  129. .o2_im_chat_list .item .body_down {
  130. margin-left: 8px;
  131. margin-top: 5px;
  132. max-width: 120px;
  133. height:20px;
  134. line-height: 20px;
  135. float:left;
  136. overflow:hidden;
  137. font-size: 12px;
  138. color: #aaaaaa;
  139. white-space: nowrap;
  140. text-overflow:ellipsis;
  141. }
  142. .o2_im_chat_content {
  143. height: 100%;
  144. margin-left: 259px;
  145. overflow: hidden;
  146. background-color: rgb(255, 255, 255);
  147. opacity: 1;
  148. }