| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203 |
- .rightTeachingWrap {
- overflow: hidden;
- flex: 1;
- background-color: #fff;
- padding: 10px 0 30px;
- border-radius: 20px;
- .rightTeachingWrapTitle {
- display: flex;
- flex-direction: row;
- // align-items: center;
- justify-content: space-between;
- flex-direction: column;
- .lookMore {
- cursor: pointer;
- display: flex;
- align-items: center;
- min-width: 114px;
- border-radius: 8px;
- border: 1px solid #DEDEDE;
- font-size: 15px;
- color: #131415;
- padding: 7px 12px;
- svg {
- margin-left: 8px;
- width: 16px;
- height: 16px;
- }
- }
- .classSearchList {
- display: flex;
- gap: 12px;
- :global {
- .n-base-selection {
- --n-height: 35px !important;
- --n-font-size: 12Px !important;
- --n-border: 1px solid #DEDEDE !important;
- --n-border-radius: 8px !important;
- max-width: 150px;
- }
- }
- }
- }
- }
- :global {
- .n-base-select-menu .n-base-select-option.n-base-select-option--show-checkmark {
- padding-right: var(--n-option-padding);
- }
- .n-empty {
- --n-font-size: max(16px, 12Px) !important;
- }
- }
- .teachListWrap {
- position: relative;
- }
- .teachListWrapWall {
- position: absolute;
- bottom: 0;
- height: 159px;
- width: 100%;
- background: linear-gradient(180deg,
- rgba(255, 255, 255, 0) 0%,
- #ffffff 100%);
- border-radius: 0px 0px 20px 20px;
- span {
- position: absolute;
- bottom: 17px;
- left: 0;
- width: 100%;
- text-align: center;
- color: #1677FF;
- font-size: max(16px, 13Px);
- cursor: pointer;
- &::after {
- content: ' ';
- display: inline-block;
- width: 12px;
- height: 12px;
- background: url('../../images/blueArrow.png') no-repeat center;
- background-size: contain;
- }
- }
- }
- .teachGroup {
- margin-top: 12px;
- .teachGroupTitle {
- position: relative;
- left: -10px;
- font-size: 14Px;
- font-weight: 400;
- color: #aaaaaa;
- width: 60px;
- text-align: center;
- margin-bottom: 12px;
- }
- .teachGroupList {
- padding-bottom: 12px;
- margin-left: 20px;
- border-left: 1px solid #d1e8ff;
- min-height: 92px;
- position: relative;
- .teachGroupListDot {
- width: 15px;
- height: 15px;
- background: #198cfe;
- border: 4px solid #d1e8ff;
- border-radius: 50%;
- top: 28px;
- left: -8px;
- position: absolute;
- }
- }
- .teachGroupItemWrap {
- margin-left: 28px;
- background: #f7f9ff;
- border-radius: 12px;
- display: flex;
- flex-direction: row;
- align-items: top;
- &:nth-last-of-type(1) {
- margin-bottom: 0;
- }
- margin-bottom: 12px;
- padding: 10px;
- .teachGroupItemLeft {
- margin-right: 12px;
- width: 50px;
- height: 50px;
- border-radius: 50%;
- overflow: hidden;
- border: 2px solid #198cfe;
- .teachGroupItemHeader {
- border: 2px solid #fff;
- border-radius: 50%;
- overflow: hidden;
- img {
- width: 44px;
- height: 44px;
- }
- }
- }
- .teachGroupItemRight {
- flex: 1;
- .teachGroupItemName {
- display: flex;
- flex-direction: row;
- align-items: center;
- justify-content: space-between;
- font-size: 16px;
- margin-top: 2px;
- font-weight: 600;
- color: #131415;
- span {
- font-size: 13px;
- font-weight: 400;
- color: #1677ff;
- line-height: 18px;
- }
- }
- .teachGroupItemInfo {
- font-size: 13px;
- line-height: 26px;
- color: rgba(0, 0, 0, 0.5);
- }
- .subjectName {
- font-size: 14px;
- font-weight: 400;
- color: #FFFFFF;
- background: #198CFE;
- border-radius: 5px;
- padding: 1px 8px;
- margin-right: 4px;
- }
- }
- }
- }
|