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.

98 lines
2.0 KiB

  1. .m_top {
  2. background: #fff;
  3. display: flex;
  4. flex-direction: row;
  5. height: 100px;
  6. align-items: center;
  7. border: 1px solid #ebeef5;
  8. margin: 0 10px;
  9. .m_avatar {
  10. width: 52px;
  11. height: 52px;
  12. margin-left: 34px;
  13. }
  14. .m_msg {
  15. margin-left: 22px;
  16. p:nth-child(1) {
  17. font-size: 20px;
  18. font-weight: bold;
  19. color: #7D7D7D;
  20. opacity: 0.92;
  21. }
  22. p:nth-child(2) {
  23. margin-top: 12px;
  24. font-size: 14px;
  25. font-weight: bold;
  26. color: #7D7D7D;
  27. opacity: 0.53;
  28. }
  29. }
  30. .m_btn {
  31. margin-left: auto;
  32. margin-right: 20px;
  33. }
  34. }
  35. .m_middle {
  36. display: flex;
  37. flex-direction: row;
  38. margin-top: 20px;
  39. height: 280px;
  40. .m_left, .m_right {
  41. flex: 1;
  42. padding: 30px;
  43. background: #fff;
  44. border: 1px solid #ebeef5;
  45. }
  46. .m_left {
  47. display: flex;
  48. flex-direction: row;
  49. margin-right: 10px;
  50. margin-left: 10px;
  51. .m_left_1 {
  52. flex: 1.5;
  53. p {
  54. font-size: 18px;
  55. margin-bottom: 20px;
  56. }
  57. span {
  58. font-size: 15px;
  59. line-height: 42px;
  60. color: #7D7D7D;
  61. }
  62. }
  63. .m_left_2 {
  64. flex: 1;
  65. img {
  66. width: 100%;
  67. margin-left: 20px;
  68. margin-top: 10px;
  69. }
  70. }
  71. }
  72. .m_right {
  73. display: flex;
  74. flex-direction: row;
  75. flex-wrap: wrap;
  76. margin-right: 10px;
  77. .m_right_menu {
  78. display: flex;
  79. width: 33.3%;
  80. flex-direction: column;
  81. align-items: center;
  82. justify-content: center;
  83. font-size: 16px;
  84. cursor: pointer;
  85. img {
  86. width: 58px;
  87. height: 58px;
  88. }
  89. span {
  90. margin-top: 12px;
  91. }
  92. }
  93. }
  94. }