12345678910111213141516171819202122232425262728293031323334 |
- .member {
- position: relative;
- width: 100%;
- height: 100%;
- display: flex;
- flex-direction: column;
- }
- .member_header {
- position: relative;
- display: flex;
- justify-content: space-between;
- align-items: center;
- width: 100%;
- height: 52px;
- border-bottom: 1px solid rgba(255, 255, 255, 0.2);
- &::after {
- content: "";
- position: absolute;
- left: 0;
- bottom: 0;
- width: 112px;
- height: 4px;
- background: #06f7ff;
- }
- }
- .member_content {
- flex: 1;
- width: 100%;
- height: 100%;
- // padding: 20px;
- }
|