@charset "utf-8";

.board_type1 {
	overflow:hidden;
}
.board_type1 ul {
	margin-top:6rem;
}

.board_type1 .swiper-wrapper {
	height:auto;
}

.board_type1 .basic_li {
	width:400px;
}
.board_type1 .basic_li > a{
	display:block;
	height:360px;
    padding: 4rem;
    border: 1px solid #ddd;
    border-radius: 3rem;
	transition-duration:0.2s;
}
.board_type1 .basic_li > a:hover{
    padding: calc(4rem - 2px);
    border: 4px solid #89b929;
    box-shadow: 0 0 10px 5px rgba(0, 0, 0, 0.1);
    background-color: #fff;
}
.board_type1 .basic_li  .cate{
    text-transform: capitalize;
	font-weight:600;
	font-size:2rem;
	color:#89b929;
	margin-bottom:2rem;
}
.board_type1 .basic_li  .subject{    
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
	min-height:5.2rem;
	font-weight:bold;
	font-size:2.2rem;	
	margin-bottom:3rem;
}
.board_type1 .basic_li .content{    
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
	min-height:7.8rem;
	color:#777;
	line-height:1.625;
	margin-bottom:5rem;
}
.board_type1 .basic_li .date{    
	color:#777;
}


@media all and (max-width:480px){
	.board_type1 .basic_li > a {
		height: 290px;
	}
}