123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116 |
- .popupTitle {
- padding: 16px 0 20px;
- text-align: center;
- font-weight: 400;
- font-size: 18px;
- color: #131415;
- line-height: 25px;
- }
- .selectStudent {
- padding: 0 20px 0;
- max-height: 400px;
- overflow-x: hidden;
- overflow-y: auto;
- .cell {
- position: relative;
- display: flex;
- align-items: center;
- padding: 12px 10px;
- border-radius: 10px;
- margin-bottom: 16px;
- :global {
- .van-radio {
- flex-shrink: 0;
- }
- }
- }
- .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;
- display: flex;
- align-items: center;
- }
- .tag {
- margin-left: 5px;
- display: inline-block;
- width: 44px;
- height: 18px;
- background: url('../../images/new/icon-dengji.png') no-repeat center;
- background-size: contain;
- }
- .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;
- }
- }
- }
|