.college_wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #222e3d;
}

.college_wrap .college_top {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: left;
    width: 90%;
    background: #222e3d;
    overflow: hidden;
    overflow-y: visible;
    position: sticky;
    top: 0;
}

.college_wrap .college_top a {
    position: relative;
    display: block;
    height: 50px;
    margin-right: 20px;
    color: #c1bbf2;
    font-weight: 500;
    text-align: center;
    vertical-align: middle;
    line-height: 50px;
}

.college_wrap .college_top a.selected {}

.college_wrap .content_wrap {
    background: #141E2C;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.college_wrap .content_wrap .content {
    width: 80%;
    font-size: 14px;
    font-weight: 400;
    color: #fff;
    padding: 24px 0;
    line-height: 21px;
    display: none;
}

.college_wrap .content_wrap .content.selected {
    display: block;
}

.college_wrap .college_top a.selected::after {
    content: '';
    width: 100%;
    height: 2px;
    position: absolute;
    bottom: 0;
    left: 0;
    background: linear-gradient(135deg, #bc6abc 0%, #6856a6 100%);
}