/*--總覽頁面--*/
.Overview-title h2, .Overview-title h3{
    display: inline;
    color: #616161;
    font-weight: 400;
    margin: 0;
    margin-bottom: 10px;
    position: relative;
}
.Overview-title{
    position: relative;
    margin-bottom: 30px;
}
.Overview-title img{
    height: 60px;
    vertical-align: middle;
    margin-right: 10px;
}
.Overview-box{
    position: relative;
    margin-bottom: 20px;
}
.Overview-box:hover{
    cursor: pointer;
}
.Overview-box:hover img{
    animation: 1s hoverCategoryImg;
    -webkit-filter: none;
    filter: none;
    transform: scale(1.2);
}
@keyframes hoverCategoryImg {
    0%{
        transform: scale(1);
        -webkit-filter: grayscale(100%); /* Safari 6.0 - 9.0 */
        filter: grayscale(100%);
    }
    100%{
        -webkit-filter: none;
        filter: none;
        transform: scale(1.2);
    }
}
@keyframes hoverOutCategoryImg {
    0%{
        -webkit-filter: none;
        filter: none;
        transform: scale(1.2);
    }
    100%{
        -webkit-filter: grayscale(100%); /* Safari 6.0 - 9.0 */
        filter: grayscale(100%);
        transform: scale(1);
    }
}
.Overview-box-img{
    width: 100%;
    height: 250px;
    position: relative;
    /*overflow: hidden;*/
}
.type-slogan{
    position: absolute;
    right: 20px;
    bottom: 20px;
    color: white;
}
.Overview-box-Img{
    width: 100%;
    max-width: 120px;
    position: absolute;
    top: 0;
    left: 50%;
    transform: scale(1);
    -webkit-filter: grayscale(100%); /* Safari 6.0 - 9.0 */
    filter: grayscale(100%);
    animation: 0s hoverOutCategoryImg;
}
.Overview-box-animation{
    animation: 1s hoverOutCategoryImg;
}

.Overview-box-text{
    padding: 10px 30px;
    width: 70%;
    min-height: 30px;
    position:absolute;
    bottom: 0;
    left: 0;
    margin: 0 15px 15px;
    /*background-color: rgba(50,50,50,.2);*/
}
.Overview-box-text h1{
    margin: 0 0 10px 0;
    letter-spacing: 2px;
    line-height: 150%;
    color: #346e0d;
    border-bottom: 2px dashed #ffffff;
}
.Overview-box-text p{
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    margin: 0 0 5px 0;
    height: 70px;
}
.Overview-box-text:after{
    clear: both;
}
.Overview-button {
    padding: 12px 15px;
    width: 160px;
    text-align: center;
    background-color: #b5b5b5;
    color: white;
    font-size: 16px;
    font-weight: bold;
    text-decoration: none!important;
    border-radius: 30px;
    position: absolute;
    right: 10px;
    bottom: 12px;
}

.Overview-button:hover{
    color: #fff;
    background: #616161;
}
/*--/總覽頁面--*/

/*--麵包屑導覽列--*/
.breadcrumb {
    padding: 8px 15px;
    margin-bottom: 22px;
    list-style: none;
    background-color: #f5f5f5;
    border-radius: 4px;
    font-size: 14px;
    text-align: left;
}
.breadcrumb > li {
    display: inline-block;
}
.breadcrumb > li > a{
    border: none!important;
    text-decoration: none!important;
    font-weight: bold;
}
.breadcrumb > .active {
    color: #777777;
}
.breadcrumb > li {
    display: inline-block;
}
.breadcrumb > li + li:before {
    content: "/ ";
    padding: 0 5px;
    color: #ccc;
}
/*--/麵包屑導覽列--*/
@media (max-width: 520px) {
    .Overview-box-text{
        background-color: transparent;
    }
    .Overview-box-text h1 {
        font-size: 25px;
    }
}

