/**************************************************************
										導覽列
**************************************************************/
.abgne_tab {
    padding-bottom: 40px;
}
.abgne_tab ul {
    text-align: center;
}
.abgne_tab ul li {
    font-size: 18px;
    padding: 0 20px;
    display: inline-block;
}
.abgne_tab ul li a {
    color: #777;
	font-weight: bold;
    padding: 10px 0;
	position:relative;
}
.abgne_tab ul li.active a, 
.abgne_tab ul li:hover a {
	background-color: #f7a81b;
	background: -webkit-gradient(linear, left top, right top, color-stop(20%, #f7a81b), color-stop(80%, #d71b69));
    background: -webkit-linear-gradient(left, #f7a81b 20%, #d71b69 80%);
	background: linear-gradient(90deg, #f7a81b 0%, #d71b69 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.abgne_tab ul li a::after {
    content: "";
    background: -webkit-gradient(linear, left top, right top, color-stop(20%, #f7a81b), color-stop(80%, #d71b69));
    background: -webkit-linear-gradient(left, #f7a81b 20%, #d71b69 80%);
    background: linear-gradient(90deg, #f7a81b 20%, #d71b69 80%);
    bottom: 0;
    top: 100%;
    left: 0;
    height: 2px;
    position: absolute;
    -webkit-transform: scale(0, 1);
    transform: scale(0, 1);
    -webkit-transform-origin: right top;
    transform-origin: right top;
    transition: transform 200ms, -webkit-transform 200ms;
    width: calc(100% - 30px);
    width: 100%;
}
.abgne_tab ul li:hover a::after, .abgne_tab ul li.active a::after {
	content: "";
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    -webkit-transform-origin: left top;
    transform-origin: left top;
}

/**************************************************************
										圖片區
**************************************************************/
.album-list {
	padding: 14px;
}

.album-list a {
	display: block;
	border-radius: 20px;
	-o-transition: all .3s;
    -moz-transition: all .3s;
    -webkit-transition: all .3s;
    transition: all .3s;
}

.album-list a:hover {
	box-shadow: 15px 15px 15px rgba(0, 0, 0, .1);
}

/*圖片*/
.album-list a .pic{
	overflow: hidden;
	height: 230px;
    display: flex;
    align-items: center;
    justify-content: center;
	border-radius: 20px 20px 0 0;
    border: solid 1px #ccc;
    border-bottom: none;
}
.album-list a .pic img{
	width: 100%;
	-o-transition: all ease-Out .5s;
    -moz-transition: all ease-Out .5s;
    -webkit-transition: all ease-Out .5s;
    transition: all ease-Out .5s;
}
.album-list a:hover .pic img {
	-webkit-filter: brightness(110%);
	filter: brightness(110%);
	-webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
}

/*文字*/
.album-list a .information{
    padding: 15px;
	border-radius: 0 0 20px 20px;
    border: solid 1px #ccc;
    border-top: none;
}
.album-list a .information .title {
    font-size: 17px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.album-list a .information .title {
	color: #000;
	-o-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
}
.album-list a .information .date {
	color: #2196F3;
    font-size: 14px;
    line-height: 1.6;
    font-weight: bold;
}
.album-list a:hover .information .title {
	color: #006bb7;
	background-color: #f7a81b;
	background: -webkit-gradient(linear, left top, right top, color-stop(20%, #f7a81b), color-stop(80%, #d71b69));
    background: -webkit-linear-gradient(left, #f7a81b 20%, #d71b69 80%);
	background: linear-gradient(90deg, #f7a81b 0%, #d71b69 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

@media (max-width:991px){
	.album-list a .pic {
		height: auto;
	}
	.album-list a .pic img {
		max-height: none;
	}
	.abgne_tab ul li {
		font-size: 16px;
		padding: 0 10px;
	}
}