.news-list .box {
    margin: 0 auto 20px;
    line-height: 1.65;
    overflow: hidden;
    position: relative;
    display: flex;
    gap: 8px;
}
.news-list .box .cover{
    font-size: 0;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    z-index:30;
}
.news-list .pic {
    /* float: right; */
    width: 280px;
    border: 1px solid #ddd;
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
}
.news-list .pic:before {
    content: '';
    background: rgba(33, 51, 114, 0.25);
    background: linear-gradient(to bottom, rgba(33, 51, 114, 0) 0%, rgba(33, 51, 114, 0.25) 100%);
    display: block;
    position: absolute;
    z-index: 1;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    opacity: 0;
    transition: all 0.3s;
}
.news-list .box:hover .pic:before {
    opacity: 1;
}
.news-list .txt {
    /* margin-right: 294px; */
    border: 1px solid #223473;
    padding: 48px;
    position: relative;
    display:flex;
    align-items:center;
    justify-content:flex-start;
    /* width: 100%; */
    min-width: 0;
    flex: 1;
}
.news-list .date {
    display: inline-block;
    color: #223473;
    font-family: 'Figtree', 'Noto Sans TC', sans-serif;
    font-size: 50px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0;
    text-align: center;
}
.news-list .date small {
    display: block;
    font-size: 14px;
}
.news-list .txt >div{
    border-left:1px solid #dcdcdc;
    box-sizing:border-box;
    padding:0 0 0 24px;
    margin-left:24px;
    min-width: 0;
    flex: 1;
    width: 100%;
}
.news-list .name {
    color: #444;
    font-size: 20px;
    font-weight: normal;
    margin-bottom: 10px;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    height: 29px;
}
.news-list .box:hover .name {
    color: #223473;
}
.news-list .description {
    color: #868686;
    font-size: 15px;
    /* letter-spacing: 0; */
    line-height: 1.5;
    max-height: 70px;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    position: relative;
}
.news-header {
    display: table;
    width: 100%;
    table-layout: fixed;
    margin-bottom: 16px;
}
.news-header .date {
    display: table-cell;
    vertical-align: middle;
    color: #223473;
    font-family: "Figtree", sans-serif;
    font-size: 43px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 0;
    text-align: center;
    border: 1px solid #223473;
    width: 100px;
    height: 100px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
.news-header .date small {
    display: block;
    font-size: 15px;
}
.news-header .date b {
    font-size: 18px;
    display: block;
}
.news-header .title {
    display: table-cell;
    vertical-align: middle;
    padding-left: 15px;
    color: #444;
    font-size: 20px;
    font-weight: normal;
    margin: 0;
}
.news-detail {
    padding-bottom: 20px;
}
@media screen and (max-width: 767px) {
    .news-list {
        margin: 0 -7px;
    }
    .news-list .item {
        float: left;
        width: 50%;
        padding: 0 7px;
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
    }
    .news-list .box {
        max-width: 320px;
        text-align: center;
        flex-direction: column;
    }
    .news-list .pic {
        float: none;
        width: auto;
    }
    .news-list .txt {
        /* margin: 5px 0 0; */
        /* padding: 15px 15px 20px; */
        flex-direction: column;
        padding: 24px;
    }
    .news-list .txt >div{
        border-left: none;
        border-top: 1px solid #dcdcdc;
        box-sizing: border-box;
        padding: 24px 0 0 0 ;
        margin-left: 0;
        margin-top: 24px;
    }
    .news-header,
    .news-header .date,
    .news-header .title {
        display: block;
    }
    .news-header .date {
        width: 88px;
        height: 88px;
        /* font-size: 38px; */
        line-height: 1;
        margin: 0 auto 10px;
        /* padding: 14px 0 0; */
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
    }
    .news-header .date small {
        font-size: 14px;
        line-height: inherit;
    }
    .news-header .title {
        padding: 0;
        text-align: center;
        font-size: 18px;
    }
}
@media screen and (max-width: 520px) {
    .news-list .item {
        width: 100%;
    }
}