You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

71 lines
1.6 KiB

  1. .message_card {
  2. font-size: 24px;
  3. font-weight: bold;
  4. color: #303030;
  5. line-height: 54px;
  6. .message_type {
  7. cursor: pointer;
  8. margin-right: 58px;
  9. position: relative;
  10. }
  11. .message_type_active {
  12. color: #4779F6;
  13. }
  14. .message_type_active::after {
  15. content: '';
  16. position: absolute;
  17. width: 100px; // 边框的宽度
  18. height: 2px;
  19. border-radius: 3px;
  20. left: 50%; //距离 view 标签的距离
  21. bottom: -10px;
  22. background-color: #4779F6; // 颜色
  23. transform: translateX(-50%);
  24. }
  25. }
  26. .message_content {
  27. margin-top: 20px;
  28. background: #fff;
  29. overflow: auto;
  30. cursor: pointer;
  31. padding: 20px;
  32. .message_content_box {
  33. .title {
  34. font-size: 18px;
  35. font-weight: bold;
  36. color: #303030;
  37. line-height: 54px;
  38. position: relative;
  39. }
  40. .title::after {
  41. content: "";
  42. position: absolute;
  43. width: 12px;
  44. height: 12px;
  45. border-radius: 50%;
  46. background-color: #E52929;
  47. top: 8px;
  48. }
  49. .date {
  50. color: #606060;
  51. }
  52. .text {
  53. display: inline-block;
  54. margin-top: 20px;
  55. font-size: 14px;
  56. font-weight: 400;
  57. color: #606060;
  58. line-height: 14px;
  59. }
  60. .line {
  61. margin: 30px 0 15px 0;
  62. border-bottom: 1px solid #D7D7D7;
  63. opacity: 0.43;
  64. }
  65. }
  66. }