123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164 |
- .list {
- margin-top: 12px;
- display: flex;
- flex-flow: row wrap;
- justify-content: flex-start;
- gap: 22px;
- min-height: 220px;
- overflow-y: auto;
- }
- .searchGroup {
- position: relative;
- padding: 0;
- .btnType {
- gap: 0px 24px !important;
- :global {
- .n-button {
- height: 37px;
- padding: 0 24px;
- font-size: max(18px, 14px);
- color: rgba(0, 0, 0, .6);
- &.n-button--primary-type {
- font-weight: bold;
- color: #fff;
- }
- }
- }
- }
- :global {
- .n-form {
- position: relative;
- }
- .n-form-item {
- .n-form-item-label {
- font-size: max(17px, 13px);
- font-weight: 600;
- color: #131415;
- line-height: 24px;
- }
- .n-button {
- height: 32px;
- font-size: max(17px, 13px);
- border-radius: 8px;
- color: rgba(0, 0, 0, 0.6);
- }
- .n-button--primary-type {
- color: #131415;
- background-color: #D2ECFF !important;
- }
- }
- .n-form-item-feedback-wrapper {
- min-height: 14px;
- }
- }
- .inputSearch {
- position: absolute;
- top: 4px;
- right: 0px;
- width: 360px;
- height: 42px;
- font-size: 16px;
- --n-height: 42px !important;
- img {
- width: 18px;
- height: 18px;
- }
- :global {
- .n-input-wrapper {
- padding-left: 12px;
- padding-right: 4px;
- height: 42px !important;
- }
- .n-button {
- height: 34px;
- font-size: 15px;
- font-weight: 500;
- width: auto;
- }
- }
- }
- .searchCatatory {
- display: flex;
- justify-content: space-between;
- padding-bottom: 24px;
- border-bottom: 1px solid #F2F2F2;
- margin-bottom: 20px;
- .addTrain {
- height: 37px;
- border-radius: 8px;
- font-size: 18px;
- background-color: #E8F4FF;
- color: #0378EC;
- img {
- width: 16px;
- height: 16px;
- margin-right: 8px;
- }
- }
- }
- }
- .teachingModal {
- width: 1100px;
- }
- .spaceSection {
- width: 75%;
- transition: 1s all ease-in;
- &>div {
- line-height: var(--n-blank-height);
- }
- }
- .collapseWrap {
- width: 98%;
- display: flex;
- flex-direction: row;
- align-items: flex-end;
- }
- .collaoseBtn {
- width: 32px;
- height: 32px;
- cursor: pointer;
- }
- .collaoseBtn.isStart {
- transform: rotate(-180deg);
- }
- .collapsSection {
- // padding-top: 10px;
- }
- .isHidden {
- overflow: hidden;
- transition: 1s all ease-in;
- }
- .hideButton {
- visibility: hidden;
- height: 0 !important;
- line-height: 0 !important;
- }
|