add_member_trend.less 538 B

12345678910111213141516171819202122232425262728293031323334
  1. .member {
  2. position: relative;
  3. width: 100%;
  4. height: 100%;
  5. display: flex;
  6. flex-direction: column;
  7. }
  8. .member_header {
  9. position: relative;
  10. display: flex;
  11. justify-content: space-between;
  12. align-items: center;
  13. width: 100%;
  14. height: 52px;
  15. border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  16. &::after {
  17. content: "";
  18. position: absolute;
  19. left: 0;
  20. bottom: 0;
  21. width: 112px;
  22. height: 4px;
  23. background: #06f7ff;
  24. }
  25. }
  26. .member_content {
  27. flex: 1;
  28. width: 100%;
  29. height: 100%;
  30. // padding: 20px;
  31. }