﻿.list-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
}


.list-cards .list-wrapper {
    padding: 10px;
	
}
.list-cards .note {
    display: block;
	background-color:#fff;
}

.list-cards .note .image img {
    display: block;
    margin: 0 auto;
}

.list-cards .note .title {
    font-size: 18px;
    color: #101010;
	text-align:left;
    line-height: 1.5;
	padding:30px 35px;
}

.list-cards .note .cont {
    color: var(--sky_txt_color);
    line-height: 24px;
    font-size: 16px;
    line-height: 1.5;
	padding:0 35px;
	text-align:left;
-webkit-line-clamp: 2;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
.list-cards .note .date {
    line-height: 24px;
    font-size: 18px;
    line-height: 1.5;
	padding:35px;
	text-align:left;
	color:#ffb135;
}


.list-cards .note .more {
    display: flex;
    font-size: 14px;
    color: var(--sky_primary_color);
    margin-top: 26px;
    align-items: center;
}

.list-cards .list-wrapper .note:hover {
    background: var(--sky_primary_color);
    box-shadow: 0 0 14px rgba(0, 0, 0, .3);
    border-color: var(--sky_primary_color);
}

.list-cards.ani .list-wrapper .note  {
    transition: all .3s;
}

.list-cards.ani .list-wrapper .note:hover {
    transform: translateY(-40px);
}

.list-cards .list-wrapper .note.with-link {
    cursor: pointer;
}

.list-cards .note:hover .title,
    .list-cards .note:hover .cont,
.list-cards .note:hover .date,
.list-cards .note:hover .more {
    color: white;
}

.list-cards .note .more:after {
    content: '';
    display: block;
    margin-left: 11px;
    width: 8px;
    height: 7px;
    background: url(../images/r1.png) no-repeat;
}

.list-cards .note:hover .more:after {
    background-image: url(../images/r2.png);
}

/* for cardtype = card */
.list-cards .card {
    border-top: 1px solid #ebebeb;    
}
.list-cards .card a {
    display: block;
    height: 340px;
    background: #fff;
    padding: 32px 20px 0;
    position: relative;
    -webkit-transition: all .3s;
    transition: all .3s;
}
.list-cards .card a:before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, .7);
    pointer-events: none;
    -webkit-transition: all .3s;
    transition: all .3s;
}

.list-cards .card .header {
    font-size: 14px;
    line-height: 22px;
    padding-bottom: 6px;
    border-bottom: 2px solid var(--sky_primary_color);
    display: inline-block;
    color: var(--sky_primary_color);
}

.list-cards .card .title {
    font-size: 18px;
    line-height: 24px;
    color: #000;
    margin-top: 35px;
}

.list-cards .card .cont {
    font-size: 14px;
    line-height: 24px;
    color: var(--sky_txt_color);
    text-align: justify;
    margin-top: 25px;
}

.list-cards .card .date {
    font-size: 12px;
    margin-top: 28px;
    line-height: 1.4;
    color: var(--sky_txt_color);
}

.list-cards .card a:hover {
    -webkit-transform: translateY(-40px);
    background: #f2f4f8;
    transform: translateY(-40px);
    box-shadow: 0 0 10px rgba(0, 0, 0, .3);
}

.list-cards .card a:before {
    opacity: 0;
}

.list-cards .card a:hover:before {
    opacity: 0;
}
.btnmore {
	border:#fff 2px solid;
	text-align:center;
	color:#fff;
	width:200px;
	height:56px;
	line-height:56px;
	margin:20px auto 0 auto;
}
.btnmore a {
    text-decoration: none;
    color: white;
}
.btnmore:hover {
    background-color: var(--sky_primary_color);
}
