.news-list {
    margin: 0 -10px;
}
.news-list .item {
    padding: 0 10px;
}
.news-list .item + .item{
    margin-top:24px;
}
.news-list .box {
    position: relative;
    box-sizing: border-box;
    display: flex;
    margin: 0 auto;
    padding: 12px;
    background: #fff;
    border-radius: 24px;
    box-shadow: 0 0 12px rgb(0 0 0 / 8%);
    gap:16px;
    /* flex-wrap: wrap; */
}
.news-list .box .pic {
    position: relative;
    box-sizing: border-box;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    flex-shrink: 0;
    max-width: 200px;
    border-radius: 16px;
    z-index: 1;
}
.news-list .item a.cover{
    font-size: 0;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    z-index:30;
}
.news-list .pic {
    overflow: hidden;
}
.news-list .txt {
    position: relative;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 4px;
}
.news-list .name {
    position: relative;
    box-sizing: border-box;
    color: #333;
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 1.5px;
    line-height: 1.8;
    margin: 0 ;
    transition: all .5s ease;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: auto;
}
.news-list .box:hover .txt .name{
    color: #2EB2AA;
}
.news-list .box .txt .date {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
    background: #f8f8f8;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 1.5px;
    line-height: 1.2;
    padding:10px;
    border-radius: 30px;
    font-family: "Figtree", sans-serif;
    max-width: 130px;
    min-width: 130px;
    transition: all .3s;
}
.news-list .box:hover .date{
    background: #2EB2AA;
    color: #fff;
}
.news-list .description{
    color: #8B8B8B;
    font-size: 14px;
    line-height: 1.45;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: auto;
}
.news-header,
.news-detail {
    max-width: 1280px;
    margin: 0 auto;
}
.news-header .title {
    color: #000;
    font-size: 24px;
    font-weight: normal;
    text-align: center;
    line-height: 1.75;
    padding: 0;
    margin: 0;
}
.news-header .date {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: #2EB2AA;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 1.5px;
    line-height: 1.2;
    padding: 10px;
    border-radius: 30px;
    font-family: "Figtree", sans-serif;
    max-width: 130px;
    min-width: 130px;
    transition: all .3s;
    margin: 16px auto;
}
@media screen and (max-width: 1440px) {
    .news-detail {
        padding: 0 15px 30px;
        margin: 0 -15px;
    }
    .news-list {
        margin: 0 -6px;
    }
    .news-list .item {
        padding: 0 6px;
    }
}
@media screen and (max-width: 1000px) {
    .news-list {
        max-width: 760px;
        margin: 0 auto;
    }
}
@media screen and (max-width: 767px) {
    .news-header .title {
        font-size: 20px;
        padding: 0 0 25px;
    }
    .news-list .box {
        flex-direction:column
    }
    .news-list .box .pic{
        width:100%;
        max-width: inherit;
    }
}
@media screen and (max-width: 600px) {
    .news-list {
        margin: 0 -6px;
    }
    .news-list .txt {
        /* width: calc(100% - 100px); */
    }
}