12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- .cellTeacher {
- .img {
- width: 48px;
- height: 48px;
- overflow: hidden;
- border-radius: 50%;
- margin-right: 12px;
- flex-shrink: 0;
- }
- .name {
- font-size: 16px;
- font-weight: 500;
- color: #333333;
- line-height: 22px;
- max-width: 120px;
- }
- .class {
- font-size: 12px;
- color: #777777;
- line-height: 17px;
- }
- :global {
- .van-tag {
- margin-top: 3px;
- margin-right: 8px;
- }
- }
- .checkboxValue {
- display: flex;
- justify-content: flex-end;
- }
- }
- .subjectContainer {
- display: flex;
- & > span {
- flex-shrink: 0;
- }
- .tagSubject {
- margin-right: 10px;
- }
- }
|