.UITabArticle_default .Wrap ul {
        gap: 20px;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        list-style: none;
        background: #f7f7f7;
        padding: 20px;
}
.UITabArticle_default .Wrap ul li .summary {
        display: none;
}
.UITabArticle_default .Wrap ul li img.image[src=""] {
        opacity: 1;
        position: relative;
        width: 100%;
        /* height: 154px; */
}
.UITabArticle_default .Wrap ul li img {
        aspect-ratio: 16/10;
}
.UITabArticle_default .Wrap ul li img.image[src=""]::before{
        display: block;
        background-color: #f0f0f0;
        background-image: url('images/no-image.jpg');
        background-size: cover;
        background-position: center;
        /* border: 1px solid #ccc; */
        width: 100%;
        aspect-ratio: 16/10;
        content: " ";
        height: 155px;
        top: 0;
        left: 0;
        position: absolute;
}
.UITabArticle_default .Wrap ul li .item_title {
        margin: 10px 0;
        font-size: 17px;
        line-height: 1.3;
        font-weight: bold;
        color: #555;
        font-family: "Roboto", sans-serif;
}
.UITabArticle_default .Wrap ul li {
        padding: 10px;
        background: #fff;
        box-shadow: 0 1px 3px -2px rgba(0,0,0,0.12),0 1px 2px rgba(0,0,0,0.24);
}
.UITabArticle_default .Wrap ul li .date {
        text-align: center;
        color: #858282;
}
.UITabArticle_default ul.HeaderWrap {
        display: none;
}
.UITabArticle_default {
        border: 1px solid #ececec;
        background: #f7f7f7;
}
.UITabArticle_default span.Title {
        color: #fff;
        font-size: 15px;
        background: #003366;
        padding: 12px 10px;
        font-weight: bold;
        text-transform: uppercase;
        position: relative;
}
.UITabArticle_default .HeaderTitle {
        display: flex;
        background: #e2e2e2 !important;
}
.UITabArticle_default span.Title::after {
        border: 23px solid #003366;
        position: absolute;
        DISPLAY: INLINE-BLOCK;
        MARGIN-LEFT: 15PX;
        border-right-color: transparent;
        border-bottom-color: transparent;
        margin-top: -12px;
        content: " ";
        right: -46px;
        bottom: 0px;
}
.UITabArticle_default .TabList {
        position: relative;
}
.UITabArticle_default .TabList .cate-link {
        position: absolute;
        right: 0;
        top: 13px;
        display: block;
        padding-left: 15px;
        font-size: 15px;
        font-weight: 400;
        color: #0071b7;
        padding-right: 10px;
}
@media only screen and (max-width: 768px){
        .UITabArticle_default  .TabArticleControl .Container .Item a {
                display: grid;
                grid-template-areas:
                        "left top"
                        "left right";
        }
        .UITabArticle_default .Wrap ul li .item_title {
                grid-area: top;
                margin: 0;
        }
        .UITabArticle_default .Wrap ul li .date {
                grid-area: right;
                text-align: left;
        }
        .TabArticleControl .Container .Item a img {
                grid-area: left;
        }
}
