.word {
    text-align: center;
}

.ccle {
    margin: 0px auto;/*div對齊效果*/
    padding: 0;
    text-align: center;/*display: inline對齊效果*/
    overflow:hidden;
}

.ccle img {
    transform:scale(1,1);transition: all 0.5s ease-out;
}

.ccle img:hover {
    transform:scale(1.2,1.2);
}

.ccle div {
    display: inline-block;/*讓div並排*/ 
    vertical-align: top;/*就算個個div行數不同，也一律向上對齊*/ 
    width: 25vw;
    height: auto;
    /*border: 1px solid #FF0000;*/
    border-radius:3px;margin: 2px;
}

.nav-wrapper {
    overflow: hidden;
}

.blur{
    /*-webkit-filter:blur(3px);*/
    -webkit-filter:brightness(.7);
}

@media (max-width:993px) {
    .ccle div {
        display: inline-block;/*讓div並排*/ 
        vertical-align: top;/*就算個個div行數不同，也一律向上對齊*/ 
        width: 95%;
        height: auto;
        /*border: 1px solid #FF0000;*/
        border-radius:3px;margin: 2px;
    }
}
