12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576 |
- .searchBand {
- display: inline-block;
- // margin: 12px 13px;
- font-size: 14px;
- font-weight: 600;
- color: #333333;
- .bandName {
- display: inline-block;
- max-width: 180px;
- vertical-align: text-top;
- }
- }
- .studentList {
- --van-checkbox-border-color: transparent;
- :global {
- .van-checkbox {
- height: 25px;
- }
- }
- .iconChecked {
- font-size: 18px;
- border: 1px solid transparent;
- background: transparent;
- :global {
- .van-icon__image {
- width: 100%;
- height: 100%;
- }
- }
- }
- .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;
- }
- .class {
- padding-top: 3px;
- font-size: 12px;
- color: #777777;
- line-height: 17px;
- }
- .btnMore {
- display: flex;
- align-items: center;
- padding: 16px 13px !important;
- :global {
- .van-button {
- display: flex;
- justify-content: center;
- align-items: center;
- flex-shrink: 1;
- width: 30%;
- }
- .van-button + .van-button {
- flex-shrink: 2;
- width: 68%;
- margin-left: 2%;
- }
- }
- }
- }
|