1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798 |
- .popupTitle {
- padding: 16px 0 20px;
- text-align: center;
- font-weight: 500;
- font-size: 18px;
- color: #131415;
- line-height: 25px;
- }
- .selectStudent {
- padding: 0 20px 0;
- max-height: 400px;
- overflow-x: hidden;
- overflow-y: auto;
- .cell {
- display: flex;
- align-items: center;
- padding: 12px 10px;
- border-radius: 10px;
- margin-bottom: 16px;
- }
- .cellSelected {
- background: #EDF6FD;
- }
- .iconImage {
- width: 18px;
- height: 18px;
- flex-shrink: 0;
- }
- .userInfo {
- display: flex;
- align-items: center;
- flex: 1;
- .userImg {
- width: 48px;
- height: 48px;
- border-radius: 50%;
- overflow: hidden;
- margin: 0 10px;
- flex-shrink: 0;
- }
- }
- .usernames {
- .name {
- font-weight: 600;
- font-size: 16px;
- color: #131415;
- line-height: 22px;
- }
- .schoolname {
- padding-top: 4px;
- font-weight: 400;
- font-size: 13px;
- color: #777777;
- line-height: 18px;
- max-width: 230px;
- white-space: nowrap;
- overflow: hidden;
- text-overflow: ellipsis;
- }
- }
- }
- .addStudentBtn {
- margin: 0 20px 22px;
- .iconAdd {
- display: inline-block;
- width: 20px;
- height: 20px;
- background: url('../../images/new/icon-n-3.png') no-repeat center;
- background-size: contain;
- margin-right: 6px;
- flex-shrink: 0;
- }
- :global {
- .van-button {
- border-radius: 8px;
- font-weight: 600;
- font-size: 16px;
- color: #1189FF;
- }
- .van-button__text {
- display: flex;
- align-items: center;
- justify-content: center;
- }
- }
- }
|