12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- .teacherChange {
- width: 311px;
- border-radius: 15px;
- overflow: hidden;
- }
- .changeInfo {
- display: flex;
- flex-direction: column;
- justify-content: space-evenly;
- height: 146px;
- background: linear-gradient(to right, #ffefe7, #eafffd);
- padding: 10px 34px 0;
- font-size: 16px;
- color: #333333;
- line-height: 20px;
- img {
- width: 38px;
- height: 38px;
- border-radius: 50%;
- overflow: hidden;
- }
- .txt,
- .name {
- display: flex;
- align-items: center;
- }
- .txt {
- font-weight: 500;
- }
- span {
- padding-left: 12px;
- }
- }
- .changeTips {
- display: flex;
- align-items: center;
- padding: 16px 30px 35px;
- font-size: 14px;
- color: #666666;
- line-height: 20px;
- img {
- width: 24px;
- height: 24px;
- margin-right: 10px;
- }
- }
|