msgList.scss 4.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135
  1. // 消息列表
  2. .sld_msg_list{
  3. width: 1010px;
  4. float: left;
  5. margin-left: 10px;
  6. .msg_title{
  7. color: #333333;
  8. font-size: 16px;
  9. font-weight: bold;
  10. color: #333333;
  11. font-size: 16px;
  12. font-weight: bold;
  13. border-left: 2px solid $colorMain2;
  14. margin: 12px 10px;
  15. padding-left: 10px;
  16. }
  17. .msg_con{
  18. display: block;
  19. border: 1px solid #EEEEEE;
  20. background-color: #fff;
  21. margin-bottom: 70px;
  22. padding-bottom: 20px;
  23. .msg_con_top{
  24. padding: 30px;
  25. .msg_con_right{
  26. .msg_del{
  27. width: 74px;
  28. background-color: $colorMain2;
  29. height: 24px;
  30. line-height: 24px;
  31. padding: 0 13px;
  32. border: none;
  33. color: #fff;
  34. font-size: 14px;
  35. margin-left: 10px;
  36. -webkit-border-radius: 4px;
  37. -moz-border-radius: 4px;
  38. border-radius: 4px;
  39. img{
  40. width: 14px;
  41. height: 14px;
  42. margin-right: 6px;
  43. }
  44. span{
  45. line-height: 24px;
  46. color: #fff;
  47. font-size: 14px;
  48. }
  49. }
  50. .msg_read{
  51. width: 102px;
  52. background-color: #2CADFF;
  53. height: 24px;
  54. line-height: 24px;
  55. padding: 0 13px;
  56. border: none;
  57. color: #fff;
  58. font-size: 14px;
  59. margin-left: 10px;
  60. -webkit-border-radius: 4px;
  61. -moz-border-radius: 4px;
  62. border-radius: 4px;
  63. img{
  64. width: 14px;
  65. height: 14px;
  66. margin-right: 6px;
  67. }
  68. span{
  69. line-height: 24px;
  70. color: #fff;
  71. font-size: 14px;
  72. }
  73. }
  74. }
  75. }
  76. .msg_list{
  77. width: 1010px;
  78. .msg_list_pre{
  79. margin-bottom: 20px;
  80. .msg_pre_time{
  81. width: 100%;
  82. height: 52px;
  83. line-height: 52px;
  84. text-align: center;
  85. }
  86. .msg_pre{
  87. width: 850px;
  88. margin: 0 auto;
  89. border: 1px solid #DCDCDC;
  90. .msg_pre_title{
  91. height: 40px;
  92. line-height: 39px;
  93. border-bottom: 1px solid #DCDCDC;
  94. background-color: #F7F7F7;
  95. color: #666666;
  96. padding: 0 20px;
  97. .pre_title_right{
  98. font-size: 12px;
  99. }
  100. }
  101. .msg_content{
  102. min-height: 79px;
  103. padding: 0 20px;
  104. .msg_content_left{
  105. .msg_tips{
  106. display: inline-block;
  107. width: 12px;
  108. height: 12px;
  109. border-radius: 50%;
  110. background-color: $colorMain2;
  111. margin-right: 6px;
  112. }
  113. p{
  114. font-size: 14px;
  115. width: 550px;
  116. }
  117. .active{
  118. color: #AAAAAA;
  119. }
  120. }
  121. .msg_content_right{
  122. font-size: 12px;
  123. }
  124. }
  125. }
  126. }
  127. }
  128. }
  129. .cursor_pointer{
  130. cursor: pointer;
  131. }
  132. .sld_page_bottom{
  133. margin: 20px 60px 20px 20px;
  134. }
  135. }