.oc-main-sam-news {
    margin-bottom: 1rem;
    padding: 0 2.2rem;
}

.oc-main-sam-news a {
    display: block;
}

.oc-main-sam-news .news-title {

    font-weight: 800;
    font-size: 0.36rem;
    text-align: center;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.oc-main-sam-news .news-items {
    display: flex;
    gap: 0.12rem;
    flex-wrap: wrap;
}

.oc-main-sam-news .news-items .news-item {
    width: calc(33.33% - 0.08rem)
}

.oc-main-sam-news .news-items .news-item .new-content {
    height: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.oc-main-sam-news .new-content .new-title {
    font-style: normal;
    font-weight: 800;
    font-size: 0.22rem;
    color: #333;
    margin-top: 0.26rem;
    overflow: hidden;
    /*将对象作为弹性伸缩盒子模型显示*/
    display: -webkit-box;
    /*设置子元素排列方式*/
    -webkit-box-orient: vertical;
    /*设置显示的行数，多出的部分会显示为...*/
    -webkit-line-clamp: 2;
    /* height: 0.58rem; */
    height: 0.85rem;
    line-height: 0.35rem;
}

.oc-main-sam-news .new-content .new-title:hover {
    color: var(--Color);
    text-decoration: underline;
}

.oc-main-sam-news .news-item .new-image {
    width: 100%;
    border: 1px solid #DADADA;
     height: 3.2rem;
    /* object-fit: cover; */
}

.oc-main-sam-news .new-content .new-text {

    font-weight: 400;
    font-size: 0.18rem;
    overflow: hidden;
    /*将对象作为弹性伸缩盒子模型显示*/
    display: -webkit-box;
    /*设置子元素排列方式*/
    -webkit-box-orient: vertical;
    /*设置显示的行数，多出的部分会显示为...*/
    -webkit-line-clamp: 4;
    color: #666;
}

.oc-main-sam-news .new-content .link {

    font-style: normal;
    font-weight: 500;
    font-size: 0.16rem;
    color: var(--Color);
    margin-top: 0.17rem;
}

.oc-main-sam-news .new-content .link:hover {

    text-decoration: underline;
}
.oc-main-sam-news .news-more {
    text-align: end;
    color: var(--Color);
}
.oc-main-sam-news .news-more:hover {
    text-decoration: underline;
}

/* 小屏pc */
@media screen and (max-width: 1400px) {
    .oc-main-sam-news .news-title {
        font-size: 36px;
    }
    .oc-main-sam-news {
        padding: 0 1.2rem;
    }
    .oc-main-sam-news .new-content .new-title {
        font-size: 18px;
    }
    .oc-main-sam-news .new-content .new-text {
        font-size: 14px;
    }
    .oc-main-sam-news .new-content .link {
        font-size: 12px;
    }
    .oc-main-sam-news .news-items .news-item .new-content {
        height: 3rem;
    }
    .oc-main-sam-news .new-content .new-title {
        height: 1.21rem;
        line-height: 0.5rem;
    }
    .oc-main-sam-news .news-item .new-image {
        height: 3.6rem;
    }
}
/* ipad和移动端样式 */
@media screen and (max-width: 1025px) {
    .oc-main-sam-news {
        padding: 0.4rem 0.3rem;
        margin-bottom: 0.5rem;
    }

    .oc-main-sam-news .news-items {
        display: block;
    }

    .oc-main-sam-news .news-items .news-item .new-content {
        height: 3.5rem;
    }

    .oc-main-sam-news .news-items .news-item {
        width: 100%
    }

    .oc-main-sam-news .news-title {

        font-style: normal;
        font-weight: 800;
        font-size: 0.36rem;
        /* text-align: center; */
        letter-spacing: 0.03em;
        margin-bottom: 0.6rem;
    }

    .oc-main-sam-news .news-item .new-image {
        height: 4.6rem;
    }

    .oc-main-sam-news .new-content .new-title {

        font-style: normal;
        font-weight: 800;
        font-size: 0.3rem;
        color: #3F3F3F;
        margin-top: 0.3rem; 
    }

    .oc-main-sam-news .new-content .new-text {

        font-style: normal;
        font-weight: 400;
        font-size: 0.24rem;
        color: #666;
        -webkit-line-clamp: 4;
    }

    .oc-main-sam-news .new-content .link {
        margin-bottom: 0.6rem;
    }
    .oc-main-sam-news .news-more {
        display: none;
    }
}