/*/////////////////////////////////////////////////////////*/
/*-------案例展示區--------*/
/*/////////////////////////////////////////////////////////*/

ul.album_area {
	padding: 0;
	margin: 0;
	list-style-type: none;
	display: flex;
	flex-wrap: wrap;
	margin: 0 ;
    margin-top: clamp(.625rem,1.0417vw,1.25rem);
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: clamp(.9375rem,1.5625vw,1.875rem);
}

/* 案例展示_列表 */
ul.album_area li {
	padding: 0;
	margin: 0;
	list-style-type: none;
	box-sizing: border-box;
	display: block;
	width: 100%;
	padding: 0 ;
}

.album_list {
	font-size: 1rem;
	line-height: 1.5;
	background-color: #F5F5F5;
	padding: 10px;
	transition: all .3s ease-in;
    border-radius: 10px;
    border: 2px solid var(--primary_color);
    box-sizing: border-box;
    box-shadow: 3px 3px 5px 1px rgb(73 73 73 / 31%);
}
.album_list:hover{
	background-color: var(--fourth_color);
    opacity: 0.5;
    transition: all .3s ease-in;
	
}
.circle_img{
	border: 1px solid var(--primary_color);
    border-radius: 50%;
    padding: 10px;
	overflow: hidden;
	transition: all .3s ease-in;
	opacity: 1;
}
.album_list:hover .circle_img{
	/* background-color: #000; */
	opacity: .5;
}

.album_list a {
	display: block;
	text-decoration: none;
	color: var(--primary_color);
	word-wrap: break-word;
	word-break: break-all;
}

/* 案例展示_列表_圖 */
.album_img {
	box-sizing: border-box;
	position: relative;
	padding-top: 100%;
	overflow: hidden;
	display: block;
	/* border-radius: 50%; */
	margin-bottom: clamp(.4375rem,0.7813vw,.9375rem);
}

.album_img img {
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	float: none;
	/* border-radius: 50%; */
	width: 100% !important;
	height: 100% !important;
	object-fit: contain;
	transition: all 0.3s ease-out;
}

.album_info_area{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
}

/* 案例展示_列表_標題 */
ul.album_area div.title {
	padding: 0;
	margin: 0;
	font-size: inherit;
	line-height: inherit;
	font-weight: bold;
	color: #000;
	/* margin: 10px 0; */
	transition: all .3s ease-in;
	text-align: center;
}


/* 案例展示_列表_簡述 */
ul.album_area div.album_brief {
	color: #404040;
    font-weight: 400;
	font-size: .875rem;
}
/* 案例展示_列表_簡述 */
ul.album_area div.title {
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
	flex: 1;
}
/* 案例展示_列表_簡述 */
ul.album_area div.album_brief {
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
	flex: 1;
}

/* 在螢幕放大150%且寬度大於991時，套用這裡的特定樣式 */ 
@media screen and (min-width: 1101px) and (min-height: 500px) and 
(max-height: 1000px) and (-webkit-min-device-pixel-ratio: 1.5) and 
(-webkit-max-device-pixel-ratio: 1.74), only screen and (min-resolution: 150dpi) and 
(max-resolution: 174dpi) { 
	ul.album_area {
	
        grid-template-columns: repeat(4,1fr);
    
    }
}

@media (max-width: 1100px){
    ul.album_area {
	
        grid-template-columns: repeat(4,1fr);
    
    }

}
@media (max-width: 768px){
    ul.album_area {
	
        grid-template-columns: repeat(2,1fr);
    
    }

}
@media (max-width: 640px){
    ul.album_area {
	
        grid-template-columns: repeat(1,1fr);
    
    }

}






/*-------案例展示區內頁--------*/
ul.album_area.album_area2 {}

ul.album_area.album_area2 div.album_brief {
    padding: 0;
	margin: 0;
	font-size: 15px;
	line-height: inherit;
	font-weight: inherit;
	color: #000;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	transition: all .3s ease-in;
}
.album_area2 .album_list:hover  div.album_brief{
	color: var(--primary_color);
}

ul.album_area.album_area2 .album_img {
	position: relative;
}

/* hover */
ul.album_area.album_area2 .album_img:before {
	position: absolute;
	font-family: "Material Icons";
    content: "\e8f4";
	top: 50%;
	left: 50%;
	transform: translate(-50%, 0%) scale(0);
	color: #fff;
	font-size: 36px;
	z-index: 1;
	/* transition: 0.9s ease all; */
	opacity: 0;
}
ul.album_area.album_area2 .album_img:after {
	content: '';
	width: 100%;
	height: 100%;
	background-color: rgba(181, 138, 96, .7);
	position: absolute;
	top: 0;
	left: 0;
	opacity: 0;
}

ul.album_area.album_area2 .album_img:hover:before {
	transform: translate(-50%, -50%) scale(1);
	opacity: 1;
	transition: 0.9s ease all;
}
ul.album_area.album_area2 .album_img:hover:after {
	
	opacity: 1;
	transition: 0.9s ease all;
}

ul.album_area.album_area2 .album_list:hover img {
	/* opacity: 0.5; */
	filter: grayscale(0.7);
	/*灰階*/
	transition: 0.3s ease all;
}


@media (max-width: 1100px) {

	/* hover */
	ul.album_area.album_area2 .album_img:before {
		font-size: 12px;
	}

}