.blog_focus {
    width: 100%;
    padding: 25px 0; 
    overflow: hidden;
}

.slick-next, .slick-prev {
    font-size: 0;
    border: 0;
}

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

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

.area_blog_focus {
    width: calc( 100% - 200px );
    margin: 0 100px;
}

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

.item_blog_focus {
    position: relative;
    width: calc( 100% - 12.5px );
    margin: 0 12.5px;
    border-radius: 8px;
    opacity: .15;
    transition: .2s;
    overflow: hidden;
}

.slick-active {
    opacity: 1;
}

.item_blog_focus img {
    width: 100%;
}

.slick-active .text_blog_focus {
    height: auto;
    padding: 65px;
    background: rgba(255,255,255,.85);
}

.text_blog_focus {
    position: absolute;
    bottom: 0;
    left: 50px;
    width: calc( 100% - 100px );
    height: 0;
    padding: 0;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    color: #333;
    overflow: hidden;
    transition: .2s;
}

.text_blog_focus .date {
    font-size: 14px;
    margin-bottom: 10px;;
    color: #666;
}

.text_blog_focus .title {
    font-size: 23px;
}





.blog_index_content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 100%;
    padding: 50px 0 100px;
}




.blog_list {
    width: calc( 100% - 350px );
}

.item_blog_list {
    position: relative;
    top: 0;
    width: calc( 100% + 50px);
    margin: -15px -25px -25px;
    padding: 25px;
    border-radius: 8px;
    transition: .2s;
}

.item_blog_list:hover {
    top: -5px;
    background: #f2f2f2;
}

.item_blog_list a {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
    color: #333;
}

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

.item_blog_list img {
    width: 300px;
    border-radius: 5px;
    overflow: hidden;
}

.text_blog_list {
    width: calc( 100% - 325px );
}

.info_blog_list {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin-bottom: 10px;
}

.item_blog_list .tag, .bottom_blog_content .front .tag {
    padding: 10px 15px;
    border-radius: 5px;
    color: #fff;
}

.tag1 {
    background: #009ade;
}

.tag2 {
    background: #edba5f;
}

.tag3 {
    background: #ef7891;
}

.tag4 {
    background: #21b5b5;
}

.tag5 {
    background: #73bfe5;
}

.item_blog_list .date {
    color: #aaa;
}

.item_blog_list .title {
    font-size: 20px;
    margin-bottom: 8px;
    overflow: hidden;
    display: -webkit-box;
    text-overflow: ellipsis;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}

.item_blog_list p {
    overflow: hidden;
    display: -webkit-box;
    text-overflow: ellipsis;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}





.blog_option {
    width: 300px;
}

.section_blog_option + .section_blog_option{
    margin-top: 50px;;
}

.category_blog {
    margin: 0 25px;
}

.category_blog li {
    margin-bottom: 10px;
    font-size: 18px;
}
.category_blog li a:hover {
    text-decoration: underline !important;
}

.category_blog li a {
    color: #333;;
}

.category_blog li span {
    margin-left: 5px;
    color: #009ade;
}

.hot_blog_list {
    width: 100%;
}

.hot_blog_list li {
    width: calc( 100% + 20px );
    padding: 10px;
    margin: -10px -10px 25px -10px;
    border-radius: 5px;
}

.hot_blog_list li a {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    color: #333;
}

.hot_blog_list li:hover {
    background: #f2f2f2;
}

.hot_blog_list li .rank{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 30px;
    height: 30px;
    font-size: 16px;
    font-weight: 900;
    border-radius: 5px;
    overflow: hidden;
    color: #fff;
    background: #009ade;
    margin: 7px 0;
}

.hot_blog_list li p {
    width: calc( 100% - 45px );
    font-size: 14px;
    line-height: 22px;
    overflow: hidden;
    display: -webkit-box;
    text-overflow: ellipsis;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.link_blog {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
}

.link_blog li {
    width: calc( 50% - 5px );
    border-radius: 5px;
    margin-bottom: 10px;
}

.link_blog li a {
    display: flex;
    align-items: center;
    width: 100%;
    padding: 10px;
    color: #fff;
    transition: .2s;
    cursor: pointer;
}

.link_blog li:hover {
    opacity: .75;
}

.link_blog li:first-child {
    background: #475992;
}

.link_blog li:nth-child(2) {
    background: #4cae50;
}

.link_blog li:nth-child(3) {
    background: #ff0000;
}

.link_blog li:last-child {
    background: #009ade;
}

.link_blog li img {
    width: 20px;
    margin-right: 5px;
    border-radius: 5px;
    overflow: hidden;
}






/**inside**/

.blog_content {
    width: calc( 100% - 350px );
}

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

.top_blog_content h1 {
    font-size: 28px;
    font-weight: 400;
    margin-bottom: 25px;
}

.top_blog_content img {
    width: 100%;
    border-radius: 5px;
    overflow: hidden;
}

.bottom_blog_content {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 25px 0;
    margin-bottom: 25px;
    border-bottom: #aaa 1px solid;
}

.bottom_blog_content .front {
    display: flex;
    align-items: center;
    color: #666;
}

.bottom_blog_content .tag {
    margin-right: 25px;
}

.bottom_blog_content .social_link {
    margin-bottom: 0 !important;
}

.center_blog_content {
    /*background: #aaa;
    height: 500px;*/
    margin-bottom: 25px;
    border-bottom: #aaa 1px solid;
}

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

.button_switch_blog {
    position: relative;
    top: 0;
    width: calc( 50% - 5px );
    border-radius: 5px;
    background: #f2f2f2;
    transition: .2s;
}

.button_switch_blog:hover {
    top: -5px;
}

.button_switch_blog a {
    display: flex;
    padding: 25px;
    flex-direction: column;
    color: #333;
}

.arrows_switch {
    display: flex;
    flex-direction: row;
    align-items: center;
    width: 100%;
    font-size: 15px;
}

.button_switch_blog:last-child .arrows_switch {
    flex-direction: row-reverse;
}

.arrows_switch img {
    width: 10px;
    margin: 0 5px 0 0;
}

.button_switch_blog:last-child .arrows_switch img {
    margin: 0 0 0 5px;
}

.content_switch {
    display: flex;
    justify-content: space-between;
    width: 100%;
    margin-top: 15px;
}

.content_switch img {
    width: 120px;
    border-radius: 5px;
    overflow: hidden;
}

.text_content_switch {
    width: calc( 100% - 135px );
}






.slick-list {
    padding: 10px 0 !important;
}
.slide_item a {
    background: #f2f2f2 !important;
}

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

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



@media screen and (max-width: 1024px) {
    .slick-next, .slick-prev {
        display: none;
    }
    
    .area_blog_focus {
       width: 100%;
       margin: 0;
    }
    
    .item_blog_focus {
        width: 100%;
        margin: 0;
    }

    .slick-active .text_blog_focus {
        padding: 10px;
    }
    
    .text_blog_focus .date {
        font-size: 12px;
        margin-bottom: 5px;
    }
    
    .text_blog_focus .title {
        font-size: 15px;
    }

    .blog_list {
        width: 100%;
        margin-bottom: 50px;
    }

    .blog_option {
        width: 100%;
    }

    .blog_content {
        width: 100%;
        margin-bottom: 50px;
    }

    .item_blog_list img {
        width: 100%;
        margin-bottom: 15px;
    }
    
    .text_blog_list {
        width: 100%;
    }

    .link_blog li {
        font-size: 13px;
    }

    .top_blog_content .title {
        font-size: 20px;
    }

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

    .bottom_blog_content .front {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        margin-bottom: 25px;
    }

    .button_switch_blog a {
        padding: 10px;
    }
    
    .arrows_switch {
        font-size: 13px;
    }
    
    
    .arrows_switch img {
        width: 8px;
        margin: 0 3px 0 0;
    }
    
    .button_switch_blog:last-child .arrows_switch img {
        margin: 0 0 0 3px;
    }
    
    .content_switch {
        margin-top: 10px;
    }
    
    .content_switch img {
        display: none;
    }
    
    .text_content_switch {
        width: 100%;
        height: 51px;
        font-size: 13px;
        text-align: justify;
        overflow: hidden;
        display: -webkit-box;
        text-overflow: ellipsis;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
    }

    .slide_item a {
        padding: 0 !important;
    }

    .slick-list {
        overflow: visible !important;
    }
    
    
}
