

.blog_slide_area .wrapper {
    padding: 50px 0;
    overflow: hidden;
}


.blog_slide {
    position: relative;
    width: calc( 100% - 300px );
    margin: 0 150px;
}

.blog_slide .slick-list {
    overflow: visible;
}

.blog_slide .slick-next {
	position: absolute;
	top: calc( 50% - 15px );
	right: -75px;
	width: 30px;
	height: 30px;
	cursor: pointer;
	background: url("../images/next.svg") center no-repeat;
	background-size: contain;
}

.blog_slide .slick-prev {
	position: absolute;
	top: calc( 50% - 15px );
	left: -75px;
	width: 30px;
	height: 30px;
	cursor: pointer;
	background: url("../images/prev.svg") center no-repeat;
	background-size: contain;
}

.blog_slide_item {
    position: relative;
    top: 0;
    width: 100%;
    margin: 0 12.5px;
    border-radius: 8px;
    transition: .2s;
    overflow: hidden;
    opacity: .25;
}

.blog_slide_item.slick-active {
    opacity: 1;
}

.blog_slide_item a {
    color: #333;
}

.blog_slide_item img {
    width: 100%;
    object-fit: cover;
    object-position: center;
}

.blog_slide_item .blog_slide_text {
    position: absolute;
    bottom: 25px;
    left: 25px;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    width: calc( 100% - 50px );
    padding: 30px;
    background: #f2f2f2;
    border-radius: 5px;
    transition: .2s;
    cursor: pointer;
    color: #333;
}

.blog_slide_item:hover {
    top: -5px;
	box-shadow: 0 5px 5px rgba(0,0,0,.15);
}

.blog_slide_item .info_blog_text {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    margin-right: 25px;
}

    .blog_slide_item .tag {
        margin-right: 10px;
        width: max-content;
    }

.blog_slide_item .teacher_course {
    line-height: 30px;
}

.blog_slide_item .title_blog_text {
    font-size: 20px;
}

.blog_content_area {
    padding: 50px 0;
    background: #f2f2f2;
}





.list_blog {
    display: flex;
    flex-direction: column;
}

.item_list_blog {
    position: relative;
    top: 0;
    transition: .2s;
    border-radius: 5px;
}

.item_list_blog a {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    border-radius: 5px;
    background: #fff;
    color: #333;
    overflow: hidden;
}

.item_list_blog:hover {
    top: -5px;
	box-shadow: 0 5px 5px rgba(0,0,0,.15);
}

.item_list_blog + .item_list_blog {
    margin-top: 25px;
}

.item_list_blog img {
    width: 50%;
    max-width: 350px;
    object-fit: cover;
}

.item_list_blog .blog_slide_text {
    padding: 25px;
}


.item_list_blog .blog_slide_text p {
    overflow: hidden;
    font-size: 16px;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.item_list_blog .info_blog_text {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.item_list_blog .title_blog_text {
    font-size: 20px;
    margin-bottom: 10px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}





.list_category li {
    line-height: 35px;
}

.list_category li a {
    color: #333;
}

.list_category li a:hover {
    text-decoration: underline !important;
}

.list_category li span {
    margin-left: 5px;
    color: #ff954d;
}

.list_category_switch {
    display: none;
}




.list_hot {
    display: flex;
    flex-direction: column;
}

.item_list_hot {
    position: relative;
    top: 0;
    transition: .2s;
}

.item_list_hot a {
    display: flex;
    flex-direction: row;
    background: #fff;
    border-radius: 5px;
    overflow: hidden;
    color: #333;
}

.item_list_hot:hover {
    top: -5px;
	box-shadow: 0 5px 5px rgba(0,0,0,.15);
}


.item_list_hot + .item_list_hot {
    margin-top: 15px;
}

.item_list_hot img {
    width: 100px;
    height: 70px;
    object-fit: cover;
}

.item_list_hot .blog_slide_text {
    padding: 15px;
    width: calc( 100% - 100px );
}


.item_list_hot .title_blog_text {
    font-size: 14px;
    line-height: 20px;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
}



.list_link {
    display: flex;
    flex-direction: column;
}

.list_link li a {
    position: relative;
    top: 0;
    display: flex;
    align-items: center;
    padding: 15px;
    background: #fff;
    color: #333;
    border-radius: 5px;
    transition: .2s;;
}

.list_link li a:hover {
    top: -5px;
	box-shadow: 0 5px 5px rgba(0,0,0,.15);
}   

.list_link li + li {
    margin-top: 15px;
}

.list_link li img {
    width: 35px;
    margin-right: 15px;
}





.blog_detail_area h1 {
    font-size: 28px;
    line-height: 35px;
    margin-bottom: 15px;
}

.blog_detail_area > img {
    width: 100%;
    margin-bottom: 15px;
}

.link_area {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.info_link_area {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.info_link_area .tag {
    padding: 5px 10px;
    border-radius: 5px;
    color: #fff;
}

.info_link_area > * + * {
    margin-left: 25px;
}

.blog_detail {
    padding: 25px;
    background: #fff;
    border-radius: 5px;
    margin-bottom: 25px;
}


.button_page {
    display: flex;
}

.item_button_page {
    flex: 1;
}

.item_button_page a > * + * {
    margin-left: 25px;
}

.item_button_page a {
    display: flex;
    flex-direction: row;
    align-items: center;
    flex: 1;
    padding: 25px;
    border-radius: 5px;
    background: #fff;
    color: #333;
}

.item_button_page img {
    width: 35px;
    padding: 10px;
}

.item_button_page .head {
    height: 44px;
    font-size: 16px;
    line-height: 22px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}


.item_button_page + .item_button_page {
    margin-left: 10px;
}

.blog_link_area {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.list_tag a {
    color: #333;
}

.list_tag a:hover {
    text-decoration: underline !important;
}

.list_tag span + span:before {
    content: ',';
    display: inline-block;
    margin-right: 5px;
}

@media screen and (max-width: 1280px) {
}

@media screen and (max-width: 1023px) {
    .item_list_blog a {
        flex-direction: column;
    }

    .item_list_blog img {
        width: 100%;
        max-width: 100%;
    }

    .item_list_blog .blog_slide_text {
        font-size: 14px;
        width: 100%;
    }
}

@media screen and (max-width: 768px) {

    .blog_content_area {
        padding: 25px 0;
    }

    .blog_slide_area .wrapper {
        width: 100%;
        max-width: 100%;
    }

    .blog_slide {
        width: calc( 100% - 50px );
        margin: 0 25px;
    }

    .blog_slide_item .blog_slide_text {
        position: static;
        padding: 25px;
        width: 100%;
        flex-direction: column;
        align-items: flex-start;
    }

    .blog_slide_item .info_blog_text {
        margin: 0 0 10px 0;
    }

    .blog_slide_item .title_blog_text {
        font-size: 18px;
        line-height: 26px;
    }


    .item_list_blog {
        flex-direction: column;
    }

    .item_list_blog img {
        width: 100%;
    }

    .link_area {
        flex-direction: column;
        align-items: flex-start;
    }

    .item_list_blog .title_blog_text {
        font-size: 18px;
        line-height: 26px;
    }

    .link_area > * + * {
        margin-top: 10px;
    }

    .info_link_area {
        flex-wrap: wrap;
    }

    .info_link_area > * + * {
        margin: 0 0 0 10px;
    }

    
    .item_button_page a {
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        padding: 15px;
        color: #333;
    }

    .item_button_page img {
        padding: 0;
        width: 10px;
    }

    .item_button_page:last-child a {
        flex-direction: column-reverse;
        justify-content: flex-end;
        align-items: flex-end;
    }

    .item_button_page img {
        margin: 0 0 10px 0;
    }

    .item_button_page .head {
        margin: 0 0 0 0;
        font-size: 14px;
        height: 60px;
        line-height: 20px;
        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
    }



    .inside_content_apart {
        position: relative;
        padding-top: 75px;
    }

    .list_category_area {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 50px;
        overflow: hidden;
        border: #ddd 1px solid;
        border-radius: 5px;
        background: #ddd;
    }

    .list_category_area.open_list {
        height: auto;
    }

    .list_category_area .subtitle {
        display: none;
    }

    .list_category_area + .subtitle {
        margin-top: 0;
    }

    .list_category  {
        padding-top: 50px;
    }

    .list_category li {
        line-height: 50px;
        height: 0px;
        overflow: hidden;
        background: #fff;
        padding: 0 15px;
        cursor: pointer;
        transition: .2s;
    }

    .open_list .list_category li {
        height: auto;
        margin-top: 1px;
    }

    .list_category li.active {
        position: absolute;
        top: 0px;
        width: 100%;
        height: 50px;
        margin-top: 0;
    }

    .list_category li:hover {
        background: #ddd;
    }

    .list_category li a {
        display: block;
        width: 100%;
        height: 50px;
    }
    
    .list_category li a:hover {
        text-decoration: none !important;
    }

    .list_category_switch {
        display: block;
        position: absolute;
        top: 0;
        right: 0;
        width: 100%;
        height: 50px;
    }

    .list_category_switch:after {
        content: '';
        position: absolute;
        top: 0;
        right: 0;
        width: 50px;
        height: 50px;
        transition: .2s;
        background: url('../images/list_category_switch.svg') center right no-repeat;
        background-size: contain;
    }

    .open_list .list_category_switch:after {
        transform: rotate(180deg);
    }

    .blog_link_area {
        flex-direction: column;
    }

    .blog_link_area > * + * {
        margin-top: 15px;
    }


    .blog_detail_area h1 {
        font-size: 20px;
        line-height: 25px;
        margin-bottom: 15px;
    }

    
    
}

@media screen and (max-width: 480px) {
}







