/* 文章列表 */
.articlelist{
	padding: 0;
	margin-bottom: 20px;
}
/* 有外框線的 */
.articlelist--outline{

}
/* 橫式的 */
.articlelist--horizontal{
}
/* 項目 */
.articlelist__item{
	position: relative;
	/* background: #fff; */
	overflow: hidden;
}
/* 圖片區 */
.articlelist__imgbox {
	overflow: hidden;
	position: relative;
	margin-bottom: 10px;
}
.articlelist__imgbox:after {
	padding-top: 75%;
	content:"";
	display: block;
}
/* 播放 */
.articlelist__btn-play{
	display: block;
	width: 60px;
	-moz-border-radius: 50%;
	-webkit-border-radius: 50%;
	border-radius: 50%;
	background: rgba(0, 0, 0, 0.2);
	line-height: 56px;
	color: #fff;
	text-align: center;
	position: absolute;
	left: 50%;
	top: 50%;
	z-index: 2;
	transform: translate(-50%, -50%);
	border: 2px solid #fff;
	pointer-events: none;
	display: none;
}
.articlelist__play-icon{
	font-size: 30px;
}
/* 圖片-連結 */
.articlelist__img-link {
	display: block;
}
/* 圖片 */
.articlelist__img {
	position:absolute;
	top:0;
	bottom:0;
	right:0;
	left:0;
	width:100%;
	max-width:100%;
	margin:auto;
}
.articlelist__img-link::before {
	content: '';
	pointer-events: none;
	position: absolute;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	background: #000;
	transition: .3s;
	z-index: 2;
	opacity: 0;
	transition: opacity .3s;
}
/* 圖片-點擊 */
.articlelist__imgbox:active .articlelist__img-link::before {
	opacity: 0.06;
}
/* 資訊區 */
.articlelist__infobox {
	padding: 10px 0 5px;
}
/* 標籤區 */
.articlelist__tagbox {
	margin-bottom: 6px;
}
/* 文章名稱*/
.articlelist__title {
	display: block;
	display: -webkit-box;
	max-width: 100%;
	max-height: 2.75em;
	margin: 0 0 10px;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
	font-weight: bold;
	line-height: 1.375;
	font-size: 16px;
}
/* 文章名稱-連結*/
.articlelist__title-link {
	display: block;
	text-decoration: none;
	letter-spacing: .05em;
}
/* 文章名稱-連結active*/
.articlelist__title-link:active {
}
/*特點*/
.articlelist__desc{
}
/* 文章資訊 */
.articlelist__databox {
	/*margin-bottom: 0.2em;0 0 8/16*/
	color: #bbb;
	display: flex;
	font-size: 14px;
	margin-bottom: 10px;
	letter-spacing: 0;
	flex-wrap: nowrap;
	white-space: nowrap;
}
/* 分類 */
.articlelist__category {
	text-decoration: none;
	color: #bbb;
}

/* 日期 */
.articlelist__date {
	font-weight: 300;
}
.articlelist__date::before {
	content: '';
	display: inline-block;
	vertical-align: middle;
	margin: -1.5px .65em 0;
	width: 3px;
	height: 3px;
	background: currentColor;
	border-radius: 50%;
}

/* 社群工具 */
.articlelist__social{
	float: right;
	text-align: right;
	height: 20px;
	display: none;
}
/* 社群工具 iframe */
.articlelist__social iframe html {
	float: right;
}
/* --------------------橫式的-------------------- */
.articlelist--horizontal{
}
.articlelist--horizontal .articlelist__desc {
	overflow : hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	height: 5.1em;
}

/* 項目 */
.articlelist__item:after{
	content: " ";
	display: block;
	clear: both;
	line-height: 0;
	height: 0;
	visibility: hidden;
}
/* 影音類型 */
.articlelist__item--video .articlelist__btn-play{
	display: block;
}
@media screen and (min-width: 768px) {
	
	.articlelist__imgbox{
		margin-bottom: 0;
	}
	/* 資訊區 */
	.articlelist__infobox {
		padding: 20px 0;
	}
	/* 文章名稱*/
	.articlelist__title {
		height: 2.75em;
	}
}
@media screen and (min-width: 1024px) {
	/* 文章列表 */
	.articlelist{
	}
	/* 文章名稱-連結active*/
	.articlelist__title-link:hover {
	}
	.articlelist__tagbox {
		margin-bottom: 10px;
	}
	/* 有外框線的 */
	.articlelist--outline .articlelist__item {
		border: 1px solid #eee;
	}
	/* ------------------------------橫式------------------------------ */
	
	/* 橫式的 */
	.articlelist--horizontal .articlelist__item {
		display: inline-flex;
		align-items: center;
	}
	.articlelist--horizontal .articlelist__imgbox {
		margin-bottom: 0;
		flex-grow: 1;
	}
	.articlelist--horizontal .articlelist__infobox {
		padding: 5px 5px 5px 14px;
		width: 55.5%;
		min-width: 160px;
	}
	.articlelist--horizontal .articlelist__title {
		font-size: 18px;
	}
	
	/* 簡易 */
	.articlelist--simple .articlelist__tagbox {
		display: none;
	}
	/* 有陰影 */
	.articlelist--h-shadow .articlelist__item {
		transition: box-shadow .3s ease;
	}
	.articlelist--h-shadow .articlelist__item:hover{
		box-shadow: 0 0 7px rgba(0,0,0,.07);
	}
	/* 側欄橫式 */
	.articlelist--side-horizontal .articlelist__item {
		display: flex;
		align-items: center;
		margin-bottom: 20px;
	}
	.articlelist--side-horizontal .articlelist__imgbox {
		margin-bottom: 0;
		width: 40%;
	}
	.articlelist--side-horizontal .articlelist__infobox {
		padding: 0 0 0 12px;
		width: 60%;
		min-width: 150px;
	}
	.articlelist--side-horizontal .articlelist__title {
		font-size: 14px;
	}
	.articlelist--side-horizontal .articlelist__databox {
		margin: 0;
	}
	.articlelist--side-horizontal .articlelist__tagbox,
	.articlelist--side-horizontal .articlelist__category {
		display: none;
	}
	.articlelist--side-horizontal .articlelist__date::before {
		content: none;
	}
	/* 側欄簡單 */
	.articlelist--side-simple .articlelist__infobox {
		display: none;
	}
}

@media screen and (min-width: 1230px) {
	.articlelist--horizontal .articlelist__infobox { 
		padding-left: 30px;
	}
}