video.css 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129
  1. .detailTabModelItem{
  2. float:left;
  3. width:33%;
  4. text-align:center;
  5. font-size:16px;
  6. color:#000;
  7. line-height:35px;
  8. }
  9. .activeDetailTabModelItem{
  10. float:left;
  11. width:33%;
  12. text-align:center;
  13. font-size:16px;
  14. color:#000;
  15. border-bottom:solid #409EFF 1px;
  16. line-height:35px;
  17. }
  18. /* IM */
  19. #msg-wrap::-webkit-scrollbar-track-piece {
  20. background-color: rgba(0, 0, 0, 0);
  21. border-left: 1px solid rgba(0, 0, 0, 0);
  22. }
  23. #msg-wrap::-webkit-scrollbar {
  24. width: 5px;
  25. height: 13px;
  26. -webkit-border-radius: 5px;
  27. -moz-border-radius: 5px;
  28. border-radius: 5px;
  29. }
  30. #msg-wrap::-webkit-scrollbar-thumb {
  31. background-color: rgba(0, 0, 0, 0.5);
  32. background-clip: padding-box;
  33. -webkit-border-radius: 5px;
  34. -moz-border-radius: 5px;
  35. border-radius: 5px;
  36. min-height: 28px;
  37. }
  38. #msg-wrap::-webkit-scrollbar-thumb:hover {
  39. background-color: rgba(0, 0, 0, 0.5);
  40. -webkit-border-radius: 5px;
  41. -moz-border-radius: 5px;
  42. border-radius: 5px;
  43. }
  44. #detail_im_content {
  45. width: 100%;
  46. height: 430px;
  47. border-radius: 4px;
  48. border: 1px solid #ccc;
  49. box-sizing: border-box;
  50. }
  51. #msg-wrap {
  52. list-style: none;
  53. padding: 10px;
  54. margin: 0;
  55. background-color: rgb(232, 237, 241);
  56. height: 388px;
  57. box-sizing: border-box;
  58. overflow-y: auto;
  59. }
  60. #operation-wrap {
  61. height: 40px;
  62. }
  63. #msg-wrap li {
  64. padding: 0 0 10px 0;
  65. }
  66. #msg-wrap li > .item {
  67. width: 85%;
  68. }
  69. #msg-wrap .username {
  70. color: rgb(110, 110, 110);
  71. font-size: 12px;
  72. padding: 0 0 6px 0;
  73. }
  74. #msg-wrap .my {
  75. display: flex;
  76. justify-content: flex-end;
  77. }
  78. #msg-wrap .other {
  79. display: flex;
  80. justify-content: flex-start;
  81. }
  82. #msg-wrap .my .username {
  83. text-align: right;
  84. }
  85. #msg-wrap .other .username {
  86. text-align: left;
  87. }
  88. .disflex {
  89. display: flex;
  90. }
  91. .other .disflex {
  92. justify-content: flex-start;
  93. }
  94. .my .disflex {
  95. justify-content: flex-end;
  96. }
  97. #msg-wrap .text-con {
  98. background-color: #fff;
  99. border-radius: 4px;
  100. padding: 5px;
  101. max-width: calc(100% - 40px);
  102. word-break: break-all;
  103. }
  104. #msg-wrap .other .text-con {
  105. margin-left: 8px;
  106. }
  107. #msg-wrap .my .text-con {
  108. margin-right: 8px;
  109. }
  110. #operation-wrap {
  111. display: flex;
  112. flex-direction: row;
  113. justify-content: space-around;
  114. align-items: center;
  115. }
  116. #msg-input {
  117. width: calc(95% - 90px);
  118. height: 26px;
  119. margin: 0;
  120. }
  121. #msg-send {
  122. width: 35px;
  123. }
  124. #img-select {
  125. width: 35px;
  126. }