.main-wrap {
    margin: 0 auto;
    padding: 0 0 20px !important;
    display: flex;
    flex-direction: column;
    gap: var(--gap-lg);
}
.main-wrap > div {
    display: flex;
    width: 100%;
    min-width: 0;
}
.main-wrap .main-h2 {
    color: var(--Secondary-Base);
    font-size: 18px;
    line-height: 1.2;
    font-weight: 700;
}
.main-wrap .main-h3 {
    font-size: 16px;
    line-height: 1.2;
    font-weight: 700;
    color: var(--Secondary-Base);
}
.main-wrap .main-more {
    opacity: 0.5;
    margin-left: auto;
    font-size: 14px;
    line-height: 20px;
    font-weight: 700;
    font-weight: 500;
}

.main-wrap .main-start {
    padding: 13px 15px;
    border-radius: 16px;
    background: #dbe7f6;
    box-shadow: 0 -2px 8px 0 rgba(17, 17, 17, 0.04);
    align-items: center;
    justify-content: space-between;
}
.main-wrap .main-start .text {
    opacity: 0.8;
    color: var(--Secondary-Base);
    font-size: 14px;
    line-height: 20px;
    font-weight: 700;
}
.main-wrap .main-start .button-box {
    flex-shrink: 0;
}

.main-wrap .main-card {
    padding: 16px 15px;
    border-radius: 24px;
    background: linear-gradient(93deg, #1c69d9 0%, #0752bd 100%);
    flex-direction: column;
}
.main-wrap .main-card .profile {
    display: flex;
    gap: 15px;
    align-items: center;
}
.main-wrap .main-card .profile .img {
    overflow: hidden;
    width: 50px;
    height: 50px;
    border: 3px solid #fff;
    border-radius: 50%;
    flex-shrink: 0;
}
.main-wrap .main-card .profile .text {
    width: calc(100% - 65px);
}
.main-wrap .main-card .profile .text div {
    overflow: hidden;
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    text-overflow: ellipsis;
    line-height: 140%;
    white-space: nowrap;
}
.main-wrap .main-card .profile .text p {
    overflow: hidden;
    color: #fff;
    font-size: 12px;
    line-height: normal;
    font-weight: 400;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.main-wrap .main-card .date {
    margin-top: 15px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 12px;
    line-height: 18px;
    font-weight: 400;
}
.main-wrap .main-card .date span {
    color: inherit;
    font: inherit;
    font-weight: 700;
}
.main-wrap .main-card .list {
    margin-top: 4px;
}
.main-wrap .main-card .list li span {
    display: flex;
    overflow: hidden;
    padding: 10px;
    border-radius: 16px;
    background: rgba(0, 0, 0, 0.05);
    color: #fff;
    font-size: 10px;
    line-height: 14px;
    font-weight: 400;
    text-overflow: ellipsis;
    white-space: nowrap;
    flex-direction: column;
    gap: 6px;
    align-items: center;
}
.main-wrap .main-card .list li span:before {
    width: 24px;
    height: 24px;
    background-repeat: no-repeat;
    background-size: cover;
    content: '';
}
.main-wrap .main-card .list li:nth-child(1) span:before {
    background-image: url(../images/icon/icon-main-card1.svg);
}
.main-wrap .main-card .list li:nth-child(2) span:before {
    background-image: url(../images/icon/icon-main-card2.svg);
}
.main-wrap .main-card .list li:nth-child(3) span:before {
    background-image: url(../images/icon/icon-main-card3.svg);
}
.main-wrap .main-card .list li:nth-child(4) span:before {
    background-image: url(../images/icon/icon-main-card4.svg);
}
.main-wrap .main-card .bg {
    margin-top: 4px;
    padding: 10px 14px;
    border-radius: 10px;
    background: rgba(15, 23, 42, 0.1);
}
.main-wrap .main-card .bg p {
    background: linear-gradient(217deg, #fcfcfd -0.01%, rgba(252, 252, 253, 0.8) 100%);
    background-clip: text;
    font-size: 12px;
    line-height: 18px;
    font-weight: 400;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.main-wrap .main-slide {
    overflow: hidden;
    position: relative;
    border-radius: 16px;
}
.main-wrap .main-slide .img li {
    display: none;
}
.main-wrap .main-slide .img li.active {
    display: block;
}
.main-wrap .main-slide .swiper-pagination {
    display: flex;
    position: absolute;
    top: 10px;
    left: 68px;
    right: 68px;
    bottom: auto;
    width: auto;
    gap: var(--gap-xs);
}
.main-wrap .main-slide .swiper-pagination span {
    opacity: 1;
    position: relative;
    width: 100%;
    height: 3px;
    margin: 0;
    border-radius: 2px;
    background: rgba(255, 255, 255, 0.1);
}
.main-wrap .main-slide .swiper-pagination span .bar {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 0;
    border-radius: 2px;
    background: rgba(255, 255, 255, 0.5);
    content: '';
    font-size: 0;
}
.main-wrap .main-slide .swiper-pagination span.progressing .bar {
    width: 100%;
    transition: width 5s linear;
}
.main-wrap .main-slide .swiper-button-pause {
    position: absolute;
    right: 14px;
    bottom: 13px;
    z-index: 1;
    width: 20px;
    height: 20px;
    background: url(../images/icon/icon-pause.svg);
    font-size: 0;
}
.main-wrap .main-slide .swiper-button-pause.paused:before {
    position: absolute;
    top: 1px;
    left: 1px;
    right: 1px;
    bottom: 1px;
    padding-left: 1px;
    border-radius: 50%;
    background-color: #fff;
    content: '▶';
    font-size: 9px;
    text-align: center;
    line-height: 18px;
}
.main-wrap .main-slide .swiper-slide img {
    width: 100%;
}
.main-wrap .icon-list {
    width: 100%;
}
.main-wrap .icon-list ul {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--gap-md);
}
.main-wrap .icon-list ul li {
}
.main-wrap .icon-list ul li a {
    display: flex;
    color: var(--Secondary-Base);
    font-size: 12px;
    font-weight: 600;
    font-family: var(--font-family-base);
    text-align: center;
    line-height: 20px;
    flex-direction: column;
    gap: var(--gap-md);
}
.main-wrap .icon-list ul li .icon {
    display: flex;
    box-shadow: 0 4px 15px 0 rgba(0, 0, 0, 0.05);
}

.main-wrap .main-notice {
    display: flex;
    overflow: hidden;
    position: relative;
    width: 100%;
    padding: 10px 6px;
    border: 1px solid var(--Secondary-50, #f1f5f9);
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 -2px 8px 0 rgba(17, 17, 17, 0.04);
    white-space: nowrap;
    align-items: center;
    gap: 10px;
}
.main-wrap .main-notice:before,
.main-wrap .main-notice:after {
    position: absolute;
    top: 0;
    bottom: 0;
    z-index: 1;
    margin: auto 0;
    content: '';
}
.main-wrap .main-notice:before {
    left: 0;
    width: 40px;
    background-image: linear-gradient(90deg, #fff 60%, transparent 100%);
}
.main-wrap .main-notice:after {
    left: 6px;
    width: 21px;
    height: 21px;
    background: url(../images/icon/icon-main-notice.svg) no-repeat center / cover;
    flex-shrink: 0;
}
.main-wrap .main-notice .notice-track {
    display: flex;
    flex-shrink: 0;
    width: max-content;
    max-width: none;
    white-space: nowrap;
    will-change: transform;
}
.main-wrap .main-notice .notice-track a {
    flex-shrink: 0;
    padding: 0 20px;
    color: var(--Secondary-Base);
    font-size: 12px;
    line-height: 18px;
    font-weight: 500;
}
@keyframes marquee {
    0% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(-100%);
    }
}

.main-wrap .main-cont {
    flex-direction: column;
}

.main-wrap .main-cont .head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}
.main-wrap .main-cont .head .tab li button {
    min-width: 56px;
    padding: 9px 16px;
    border: 1px solid #f0f1f7;
    border-radius: 20px;
    background: #fff;
    color: var(--Secondary-Base);
    font-size: 12px;
    font-weight: 600;
    font-family: 'Manrope', sans-serif;
    line-height: 170%;
}
.main-wrap .main-cont .head .tab li.active button {
    border-color: inherit;
    background-color: var(--Primary-Base);
    color: #fff;
}
.main-wrap .main-cont .panel {
    margin-top: 22px;
}
.main-wrap .main-cont .panel li {
    width: 100%;
}
.main-wrap .main-cont .panel li a {
    display: flex;
    padding: 10px;
    border: 1px solid #f0f1f7;
    border-radius: 8px;
    background-color: #fff;
    align-items: center;
    gap: var(--gap-lg);
}
.main-wrap .main-cont .panel li a .img {
    overflow: hidden;
    width: 60px;
    border-radius: 7px;
    flex-shrink: 0;
}
.main-wrap .main-cont .panel li a .texts {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.main-wrap .main-cont .panel li a .texts .type {
    display: flex;
    gap: 9px;
}
.main-wrap .main-cont .panel li a .texts .type span {
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 10px;
    font-weight: 500;
    font-family: 'Plus Jakarta Sans', sans-serif;
    line-height: 18px;
}
.main-wrap .main-cont .panel li a .texts .type span.blue {
    background: rgba(111, 164, 255, 0.16);
    color: #6a6af9;
}
.main-wrap .main-cont .panel li a .texts .type span.yellow {
    background-color: #fffaeb;
    color: #b54708;
}
.main-wrap .main-cont .panel li a .texts .type span.green {
    background-color: #ecfdf3;
    color: #039855;
}
.main-wrap .main-cont .panel li a .texts .type span.purple {
    background-color: #eaddff;
    color: #6155f5;
}
.main-wrap .main-cont .panel li a .texts .title {
    font-size: 14px;
    font-weight: 700;
    font-family: 'Manrope', sans-serif;
    line-height: 170%;
    color: var(--Secondary-Base);
}
.main-wrap .main-cont .panel li a .texts .name {
    color: var(--Grayscale-500);
    font-size: 12px;
    line-height: 20px;
}

.main-wrap .main-banner {
    border-radius: 16px;
    overflow: hidden;
}
.main-wrap .main-banner p {
    color: var(--Label-Colors-Tertiary);
    font-size: 12px;
    line-height: 18px;
    font-weight: 500;
}

.main-wrap .main-scroll {
    overflow-x: auto;
    overflow-y: hidden;
}
.main-wrap .main-scroll ul {
    display: flex;
    white-space: nowrap;
}

.main-wrap .main-curri ul {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--gap-xs);
}

.main-wrap .main-curriculum {
    flex-direction: column;
    gap: var(--gap-sm);
}
.main-wrap .main-curriculum .main-curri ul li a {
    display: flex;
    height: 58px;
    padding: 8px;
    border: 1px solid var(--Line-Base, #f0f1f7);
    border-radius: 12px;
    background: #fff;
    gap: 11px;
    align-items: center;
}
.main-wrap .main-curriculum .main-curri ul li a .img {
    overflow: hidden;
    width: 42px;
    height: 42px;
    border-radius: 7px;
}
.main-wrap .main-curriculum .main-scroll ul li a .text {
    color: var(--Secondary-Base);
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
}

.main-wrap .main-mentor {
    flex-direction: column;
    gap: var(--gap-xl);
}
.main-wrap .main-mentor .main-curri ul {
    gap: var(--gap-xl);
}
.main-wrap .main-mentor .main-curri ul li a {
    display: flex;
    width: 64px;
    flex-direction: column;
    gap: var(--gap-xs);
}
.main-wrap .main-mentor .main-scroll ul li a .text {
    overflow: hidden;
    font-size: 13px;
    font-family: var(--font-family-base);
    text-align: center;
    text-overflow: ellipsis;
    line-height: 24px;
    white-space: nowrap;
    color: var(--Secondary-Base);
    font-weight: 500;
}

.main-wrap .main-review {
    flex-direction: column;
    gap: var(--gap-sm);
}
.main-wrap .main-review ul li a {
    display: flex;
    padding: 12px 16px;
    border: 1px solid #f0f1f7;
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 -2px 8px 0 rgba(17, 17, 17, 0.04);
    flex-direction: column;
    gap: var(--gap-md);
}

.main-wrap .main-review ul li a .head {
    display: flex;
    align-items: center;
}
.main-wrap .main-review ul li a .head .img {
    overflow: hidden;
    width: 28px;
    height: 28px;
    margin-right: 8px;
    border-radius: 50%;
}
.main-wrap .main-review ul li a .head .name {
    overflow: hidden;
    font-size: 14px;
    font-weight: 500;
    font-family: var(--font-family-base);
    text-overflow: ellipsis;
    line-height: 24px;
    white-space: nowrap;
    color: var(--Secondary-Base);
}
.main-wrap .main-review ul li a .head .dot {
    width: 4px;
    height: 4px;
    margin: 0 6px;
    background-color: #5173ff;
    opacity: 0.5;
}
.main-wrap .main-review ul li a .head .date {
    opacity: 0.6;
    font-size: 10px;
    font-weight: 600;
    font-family: var(--font-family-base);
    line-height: 16px;
    flex-shrink: 0;
    color: var(--Secondary-Base);
}
.main-wrap .main-review ul li a .head .star {
    display: flex;
    margin-left: auto;
    gap: 2px;
    flex-shrink: 0;
}
.main-wrap .main-review ul li a .head .star span {
    width: 16px;
    height: 16px;
    background: url(../images/icon/icon-main-star.svg) no-repeat center;
}
.main-wrap .main-review ul li a .head .star span.on {
    background-image: url(../images/icon/icon-main-star-on.svg);
}
.main-wrap .main-review ul li a .text {
    display: -webkit-box;
    overflow: hidden;
    font-size: 12px;
    font-family: var(--font-family-base);
    text-overflow: ellipsis;
    line-height: 18px;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    color: black !important;
}

.main-wrap .main-class {
    position: relative;
    flex-direction: column;
}

.main-wrap .main-class .class-head {
    display: flex;
    position: relative;
    margin-bottom: 6px;
    align-items: center;
    gap: var(--gap-xs);
}
.main-wrap .main-class .class-head .title-info {
    position: relative;
}
.main-wrap .main-class .class-item .card {
    box-shadow: none;
}
.main-wrap .main-class .class-item .card .button-box {
    gap: var(--gap-xs);
}
.main-wrap .main-class .class-box {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 4px 30px 0 rgba(12, 18, 33, 0.12);
    gap: var(--gap-md);
}
.main-wrap .main-class .class-list.swiper-wrapper {
    will-change: transform;
    flex-wrap: nowrap;
    gap: 0;
}
.main-wrap .main-class .class-list.swiper-wrapper .class-item {
    flex: 0 0 100%;
}
.main-wrap .main-class .class-list.swiper-wrapper .class-item .card {
    padding-bottom: 38px;
    border-radius: 0;
    box-shadow: none !important;
}
.main-wrap .main-class .swiper-pagination {
    display: flex;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 12px;
    font-size: 0;
    justify-content: center;
    gap: var(--gap-xs);
}
.main-wrap .main-class .swiper-pagination li {
    height: 6px;
}
.main-wrap .main-class .swiper-pagination span {
    opacity: 1;
    width: 6px;
    height: 6px;
    margin: 0;
    border-radius: 3px;
    background-color: var(--Grayscale-200);
    transition: 0.15s ease-in-out;
}
.main-wrap .main-class .swiper-pagination span.swiper-pagination-bullet-active {
    width: 12px;
    background-color: var(--Grayscale-400);
}
