.gongju-abstract{
	background: #f5f5f5;
    padding: 10px;
    margin-bottom: 15px;
}
.gongju-title{
	font-size: 20px;
	text-align: center;
	padding:5px;
	font-weight: 700;
}
.gongju-items article {
    background: #f5f5f5;
    border-radius: 2px;
    margin-bottom: 15px;
    -webkit-transition: all 0.2s ease-in 0s;
    transition: all 0.2s ease-in 0s;
    padding-top: 15px;
}
.gongju-items article:hover {
    background: #fff;
}
.gongju-items .gongju-items-title {
    font-size: 18px;
    margin: 0;
}
.gongju-items .gongju-items-body {
    font-size: 16px;
}
.gongju-items footer {
    font-size: 20px;
}
.gongju-items footer a {
    background: #4aca6d;
    border-bottom-left-radius: 2px;
    border-bottom-right-radius: 2px;
    color: #fff;
    display: block;
    padding: 10px;
    text-decoration: none;
}
.gongju-items article:hover footer a {
	background: #5091cd;
}
.gongju-items > div {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    transition: transform .3s ease;
}

.gongju-items > div:hover article {
    box-shadow: 0 0 30px #0d111c;
}

@media only screen and (max-width: 767px) {
    .gongju-items .gongju-items-title {
        margin: 5px 0;
		font-size: 20px;
    }
	.gongju-items .gongju-items-body {
        min-height: auto;
    }
}


