/*===============隱藏不必要欄位===============*/
.dataBlogList .BlogListHTML .BlogInfoClass { display: none; }
.dataBlogList .BlogListHTML .BlogInfoAuthor { display: none; }
.dataBlogList .BlogListHTML .BlogInfoStatus { display: none; }
.dataBlogList .BlogListHTML .BlogInfoBtn { display: none; }
/*===============覆蓋範本預設樣式===============*/
#ns_Wrapper { width: 100%; }
.dataBlogList .BlogListD_0, .dataBlogList .BlogListD_1 {
    margin: 0;
    padding: 0;
    border: 0;
    width: unset;
}
/*===============Loading 樣式===============*/
.BlogMasklayer .loader {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate3d(-50%, -50%, 0);
}
.BlogMasklayer .dot {
    width: 24px;
    height: 24px;
    background: #3ac;
    border-radius: 100%;
    display: inline-block;
    animation: slide 1s infinite;
}
.BlogMasklayer .dot:nth-child(1) {
    animation-delay: 0.1s;
    background: #32aacc;
}
.BlogMasklayer .dot:nth-child(2) {
    animation-delay: 0.2s;
    background: #64aacc;
}
.BlogMasklayer .dot:nth-child(3) {
    animation-delay: 0.3s;
    background: #96aacc;
}
.BlogMasklayer .dot:nth-child(4) {
    animation-delay: 0.4s;
    background: #c8aacc;
}
.BlogMasklayer .dot:nth-child(5) {
    animation-delay: 0.5s;
    background: #faaacc;
}
@-moz-keyframes slide {
    0% {
        transform: scale(1);
    }
    50% {
        opacity: 0.3;
        transform: scale(2);
    }
    100% {
       transform: scale(1);
    }
}
@-webkit-keyframes slide {
    0% {
        transform: scale(1);
    }
    50% {
        opacity: 0.3;
        transform: scale(2);
    }
    100% {
        transform: scale(1);
    }
}
@-o-keyframes slide {
    0% {
        transform: scale(1);
    }
    50% {
        opacity: 0.3;
        transform: scale(2);
    }
    100% {
        transform: scale(1);
    }
}
@keyframes slide {
    0% {
        transform: scale(1);
    }
    50% {
        opacity: 0.3;
        transform: scale(2);
    }
    100% {
        transform: scale(1);
    }
}
/*===============BlogList自訂義樣式===============*/
.dataBlogList {
    width: 33%;
}
.BlogListHTML .meMsg_MsgMain { display: block; }
.BlogListHTML .meMsg_MsgMain > tbody { display: block; }
.BlogListHTML .meMsg_MsgMain > tbody > tr { display: block; }
.BlogListHTML .meMsg_MsgMain > tbody > tr > td { display: block; }
.BlogListHTML .meMsg_MsgKeyword { display: none; }
body .BlogListList .dataBlogList .BlogListHTML {
    padding-left: calc((100% - 80% )/2);
        padding-top: 30px;
    height: 350px !important;
}
.dataBlogList .BlogListHTML{
    position: relative;
    width: 100%;
    height: 180px;
    overflow: hidden;
}
.dataBlogList .BlogListHTML .meMsg_MsgMainTd > .meMsg_MsgBlk {
    transform: translateX(-100%);
    transition: transform 0.8s;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -webkit-filter:grayscale(1);
    filter: grayscale(1);
}
.BlogListHTML .meMsg_MsgMainTd > .meMsg_MsgBlk > div {
    position: relative;
    top: 150px;
    left: 0;
    width: 100%;
    padding: 0 20px;
    height: 200px;
    transition: 0.5s;
    display: flex;
    flex-flow: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}
/* .BlogListHTML .meMsg_MsgMainTd > .meMsg_MsgBlk .meMsg_MsgTitle {
    display: none;
    opacity: 0;
}
.BlogListHTML .meMsg_MsgMainTd > .meMsg_MsgBlk .meMsg_MsgSubTitle {
    display: none;
    opacity: 0;
}
.BlogListHTML .meMsg_MsgMainTd > .meMsg_MsgBlk .meMsg_Content {
    display: none;
    opacity: 0;
}
.BlogListHTML .meMsg_MsgMainTd > .meMsg_MsgBlk:hover > div {
    background: rgba(107,227,131,0.5);
}
.BlogListHTML .meMsg_MsgMainTd > .meMsg_MsgBlk:hover{
    -webkit-filter: grayscale(0);
    filter: grayscale(0);
}
.isClick .BlogListHTML .meMsg_MsgMainTd > .meMsg_MsgBlk > div {
    background: rgba(51,51,51,0);
}
.BlogListHTML .meMsg_MsgMainTd > .meMsg_MsgBlk:hover .meMsg_MsgTitle {
    display: inline-block;
    opacity: 1;
}
.BlogListHTML .meMsg_MsgMainTd > .meMsg_MsgBlk:hover .meMsg_MsgTitle a {
    color: #000;
}
.BlogListHTML .meMsg_MsgMainTd > .meMsg_MsgBlk:hover .meMsg_MsgSubTitle {
    display: inline-block;
    opacity: 1;
}
.BlogListHTML .meMsg_MsgMainTd > .meMsg_MsgBlk:hover .meMsg_Content {
    display: block;
    opacity: 1;
} */
.BlogListHTML .meMsg_MsgMainTd > .meMsg_MsgBlk img {
    position: absolute;
    top: 0;
    left: 0;
    width: 200px;
    height: 200px;
    object-fit: contain;
    border-radius: 50%;
    border: 1px solid rgb(255 255 255);
}
/*===============ShowBlogInfo自訂義樣式===============*/
.ShowBlogDetails {
    position: absolute;
    background: #FFF;
    z-index: 999;
    padding: 35px 30px 35px;
    box-sizing: border-box;
    transition: top 0.8s , left 0.8s;
}
.ShowBlogDetails .prev_but {
    position: absolute;
    top: 0;
    display: flex;
    height: 100%;
    align-items: center;
    left: 5px;
    font-size: 24px;
    cursor: pointer;
    color: #44e7d6;
}
.ShowBlogDetails .next_but {
    position: absolute;
    top: 0;
    display: flex;
    height: 100%;
    align-items: center;
    right: 5px;
    font-size: 24px;
    cursor: pointer;
    color: #44e7d6;
}
.ShowBlogDetails .close_but {
    position: absolute;
    top: 10px;
    right: 5px;
    font-size: 24px;
    z-index: 9999;
    cursor: pointer;
    color: #44e7d6;
}
.ShowBlogDetails .BlogContentInfo { height: 100%; }
.ShowBlogDetails .BlogContentInfo .Infobody { height: 100%; }
.ShowBlogDetails .BlogContentInfo .Infobody .meMsg_MsgContent { height: 100%; }
.ShowBlogDetails .Infobody .meMsg_MsgContentBlk {
    display: flex;
    height: 100%;
    flex-flow: row-reverse;
}
.ShowBlogDetails .Infobody .meMsg_MsgContentBlk .AlignCenter {
    width: 50%;
    position: relative;
}
.ShowBlogDetails .Infobody .AlignCenter img {
    position: absolute;
    max-width: 100%;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.ShowBlogDetails .Infobody .meMsg_MsgContentBlk > div {
    width: 50%;
    line-height: 125%;
    padding: 0 20px;
    box-sizing: border-box;
    position: relative;
}
.ShowBlogDetails .Infobody .meMsg_MsgContentBlk .meMsg_MsgTitle {
    display: block;
    font-size: 14px;
    font-weight: normal;
}
.ShowBlogDetails .Infobody .meMsg_MsgContentBlk .meMsg_MsgSubTitle {
    display: block;
    font-size: 18px;
    font-weight: bold;
    margin: 10px 0;
}
.ShowBlogDetails .Infobody .meMsg_MsgContentBlk .meMsg_Content {
    font-size: 14px;
    font-weight: normal;
    /* position: absolute; */
    left: 0;
    bottom: 0;
    width: 100%;
    padding: 0 20px;
    box-sizing: border-box;
}
/*===============ShowBlogInfo自訂義樣式(手機)===============*/
.ShowBlogDetails.mobile .Infobody .meMsg_MsgContentBlk { flex-flow: column; }
.ShowBlogDetails.mobile .Infobody .meMsg_MsgContentBlk .AlignCenter { width: 100%; }
.ShowBlogDetails.mobile .Infobody .AlignCenter img { position: unset; }
.ShowBlogDetails.mobile .Infobody .meMsg_MsgContentBlk > div {
    width: 100%;
    padding: 0;
    margin-top: 20px;
}
.ShowBlogDetails.mobile .Infobody .meMsg_MsgContentBlk .meMsg_Content {
    position: unset;
    padding: 0;
}