jiebangxiaoxi.css 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091
  1. .hd-welcome{
  2. margin-top: 10px;
  3. text-align: center;
  4. }
  5. .hd-welcome p {
  6. display: inline-block;
  7. background: #cacfde;
  8. color: #fff;
  9. border-radius: 15px;
  10. padding: 2px 10px;
  11. font-size: 12px;
  12. }
  13. .new-msg {
  14. background: url(../../../images/new_icon.png) #fff no-repeat;
  15. background-size: 35px 35px;
  16. -webkit-background-size: 35px 35px;
  17. -moz-background-size: 35px 35px;
  18. -o-background-size: 35px 35px;
  19. background-position: top right!important;
  20. }
  21. .msg-box{
  22. margin: 10px 16px;
  23. border-radius: 8px;
  24. font-size: 16px;
  25. border: 1px solid #e1e1e1;
  26. }
  27. .bg-fff{
  28. background: #fff;
  29. }
  30. .msg-box .msg-title{
  31. padding: 10px 20px;
  32. color: #333;
  33. }
  34. .msg-box .msg-content{
  35. padding: 0px 50px 0 20px;
  36. margin-bottom: 12px;
  37. font-size: 14px;
  38. color: #666;
  39. position: relative;
  40. transition: all .3s ease-in-out;
  41. }
  42. .text-ellipsis{white-space: nowrap;
  43. overflow: hidden;
  44. text-overflow: ellipsis;}
  45. .msg-box .msg-content.active{
  46. white-space: normal;
  47. max-height: 999px;
  48. }
  49. .open-text{position: absolute;right: 10px;top: 0;color: #00A0E9;display: none;}
  50. .text-ellipsis>.open-text{display: block;}
  51. .msg-box .msg-action{
  52. font-size: 14px;
  53. border-top: 1px solid #e1e1e1;
  54. padding: 10px 20px;
  55. color: #666;
  56. display: -webkit-box;
  57. }
  58. .msg-box .msg-action span{
  59. display: block;
  60. position: absolute;
  61. right: 30px;
  62. transform: rotate(45deg);
  63. -webkit-transform: rotate(45deg);
  64. -moz-transform: rotate(45deg);
  65. -ms-transform: rotate(7deg);
  66. -o-transform: rotate(7deg);
  67. border-top: 2px solid #ccc;
  68. border-right: 2px solid #ccc;
  69. width: 12px;
  70. height: 12px;
  71. margin-top: 5px;
  72. }
  73. .msg-box:active{
  74. -webkit-box-shadow: 0 0 10px rgba(0, 204, 204, .5);
  75. -moz-box-shadow:0 0 10px rgba(0, 204, 204, .5);
  76. box-shadow:0 0 10px rgba(0, 204, 204, .5);
  77. /*background-color: rgba(225,255,255,.5)!important;*/
  78. }
  79. .new-flag{position: absolute; top: 0; right: 0;}
  80. .header-link a.disabled{color: rgba(255,255,255,0.5);}