* {
        text-rendering: geometricprecision;
}
.TabList .HeaderWrap li a {
        display: block;
        white-space: nowrap;
}
.TabList .HeaderWrap li span {
        display: block;
        white-space: nowrap;
}
.TabList {
        margin: 0px 0 30px;
        position: relative;
}
.TabList .HeaderTitle {
        background: #fff url("images/bar1.png") no-repeat scroll left center;
        border-bottom: 3px solid #0087d2;
        height: 35px;
}
.TabList .HeaderTitle span {
        color: #fb8109;
        font: bold 11pt/35px arial;
        padding-left: 40px;
        text-transform: uppercase;
}
.TabList ul.HeaderWrap {
        margin-bottom: 5px;
        border-bottom: 1px solid #d7d7d7;
        display: inline-flex;
        flex-wrap: wrap;
        padding: 0;
        list-style: none;
        width: 100%;
        background: #f2f2f2;
        padding-top: 5px;
        padding-left: 5px;
}
.TabList .HeaderWrap li {
        padding: 5px 3px;
}
.TabList .HeaderWrap .ActiveTab, .NormalTab {
        cursor: pointer;
        transition: all 0.8s ease 0.2s;
}
.TabList .HeaderWrap .ActiveTab{
        font-size: 14px;
        /* text-transform: uppercase; */
        font-weight: 600;
        color: #fff;
        display: inline-block;
        background-color: #fff;
        border-radius: 4px 4px 0 0;
}
.TabList .HeaderWrap .NormalTab:hover {
        font-size: 14px;
        font-weight: 600;
        background: linear-gradient(to bottom, var(--bg-blue) 0%, var(--bg-blue-weight) 100%);
        color: #fff;
        display: inline-block;
}
.TabList .HeaderWrap .NormalTab:hover .text {
        color: #0099cc;
}
.TabList .HeaderWrap .ActiveTab .text {
        color: #0099cc;
        padding: 0 6px;
        font-size: 14px;
        font-weight: 600;
        line-height: 30px;
        display: inline-block;
}
.TabList .HeaderWrap .NormalTab .text {
        color: #23527c;
        padding: 0 6px;
        font-size: 14px;
        font-weight: 600;
        line-height: 30px;
        display: inline-block;
        /* text-transform: uppercase; */
}
.TabList .Wrap {
        /* border: 1px solid #ddd; */
        /* padding: 5px 0 0; */
        text-align: justify;
}
.TabList .Wrap .Container {
        display: grid;
        list-style: outside none none;
        margin: 0;
        padding: 0;
        text-align: center;
        grid-column: 1;
        grid-template-columns: 1fr 1fr;
        grid-row-gap: 20px;
        grid-column-gap: 20px;
}
.TabList .Wrap .Container .Item {
        display: inline-block;
        vertical-align: top;
        text-align: left;
}
.TabList .Wrap .Container .Item a{
        width: 100%;
        font-size: 15px;
        font-weight: 400;
        line-height: 1.4;
        display: grid;
        grid-template-areas:
                'main right-1'
                'main right-2'
                'main right-3';
        grid-column-gap: 20px;
        grid-template-columns: auto 1fr;
}
.TabList .Wrap .Container .Item .item_title{
        grid-area: right-2;
}
.TabList .Wrap .Container .Item:nth-child(1){
        grid-row-start: 1;
        grid-row-end: 5;
}
.TabList .Wrap .Container .Item:nth-child(1) a{
        width: 100%;
        font-size: 15px;
        font-weight: 400;
        line-height: 1.4;
        display: grid;
        grid-template-areas:
                'main'
                'right-1'
                'right-2'
                'right-3';
        grid-row-gap: 10px;
        grid-template-columns: auto 1fr;
        grid-column-gap: 0;
}
.TabList .Wrap .Container .Item:nth-child(1) .item_title{
        color: #383838;
        font-size: 15px;
        font-weight: 600;
        line-height: 1.4;
        text-align: left;
}
.TabList .Wrap .Container .Item:nth-child(1) a img{
        width: 100%;
        height: 250px;
}
.TabList .Wrap .Container .Item:nth-child(1) p{
        display: block;
        font-style: normal;
        font-weight: 400;
        font-size: 15px;
        color: #41464b;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        padding-bottom: 0;
        display: -webkit-box;
}
.TabList .Wrap .Container .Item:hover .image {
        /* border: 1px solid #1990e9; */
}
.TabList .Wrap .Container .Item .image {
        height: 75px;
        width: 105px;
        object-fit: cover;
        margin: auto;
        display: block;
        grid-area: main;
}
.TabList .Wrap .Container .Item p {
        color: #424242;
        display: none;
        text-align: justify;
        grid-area: right-3;
}
.TabList .Wrap .Container .Item h2 {
        color: #424242;
        font: 10pt arial;
        text-align: justify;
}
.TabList .Wrap .Container .Item:hover h2 {
        color: #166ad3;
}
.TabList .TabListPage {
        padding: 0 10px 10px;
        text-align: right;
}
.TabList .TabListPage .CurrentPage {
        color: #333333;
        font: bold 10pt arial;
        margin-right: 5px;
}
.TabList .TabListPage .ButtonPage {
        color: #555555;
        font: 10pt arial;
        margin-right: 5px;
}
.TabList .cate-link {
        position: absolute;
        right: 10px;
        top: 15px;
        margin-bottom: 0;
        font-size: 14px;
        color: #8f8f8f;
        display: block;
        max-height: 44px;
        overflow: hidden;
        display: none;
        font-weight: 400;
}
@media only screen and (max-width: 768px){
        .item_title {
                text-align: justify;
        }
        div.TabArticleControl .Container .Item a img{
                min-width: 100%;
        }
        div.TabList{
                padding: 0 5px;
        }
        div.TabList .Wrap .Container{
                padding: 0 !important;
        }
        .TabList .Wrap .Container .Item:nth-child(1) a img{
                min-height: 45vw;
        }
        .TabList ul.HeaderWrap {
    display: inline-flex !important;
}
    .TabList ul.HeaderWrap {
        flex-wrap: nowrap;
        overflow: auto;
        max-width: 100%;
    }
}
