/*.GalleryList*/
:root{
  --GalleryList-width: 19%;
}
.GalleryList {
    margin-top: 20px;
}

.GalleryList .item {
    margin-bottom: 30px;
	margin-right:20px;
	position: relative;
    width: 100%;
    min-height: 1px;
    padding-right: 15px;
    padding-left: 15px;
	-ms-flex: 0 0 calc(var(--GalleryList-width) - 0px);
    flex: 0 0 calc(var(--GalleryList-width) - 0px);
    max-width: calc(var(--GalleryList-width) - 0px);		
}

.GalleryList .item a {
    display: block;
}

.GalleryList .item a:before {
    content: '';
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    position: absolute;
    z-index: 1;
    background-color: rgba(0, 0, 0, 0.4);
    transition: all 0.5s;
}
.GalleryList .item a:after {
    content: '';
    font-size: 5rem;
    color: #fff;
    position: absolute;
    line-height: 1;
    z-index: 2;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: all 0.5s;

}
.GalleryList .item a:hover:before {
    background-color: rgba(0, 0, 0, 0.0);
    transition: all 0.5s;
}
.GalleryList .item a:hover:after {
    opacity: 1;
    transition: all 0.5s;

}
.GalleryList .title {
    border-bottom: 1px solid #333;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
}

/*圖片樣式*/
.innerImg {
    width: 100%;
    padding-top: 70%;
	
}

.innerImg .image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -webkit-background-size: cover;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-color: #cccccc;
    background-image: url(../images/cs.svg);
}
.row {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-right: 0px;
    margin-left: 0px;
}



