

.news-content-box {
    display: flex;
    margin: 0 360rem;
    margin-top: -68rem;
    margin-bottom: 85rem;
}

.news-content-box .quick-box {
    width: 230rem;
    background-color: #FFFFFF;
    margin-right: 25rem;
}

.news-content-box .quick-box .quick-header {
    width: 100%;
    height: 50rem;
    background: #0263B2;
    display: flex;
    align-items: center;
    padding-left: 30rem;
    font-size: 24rem;
    font-family: Source Han Serif SC;
    font-weight: bold;
    color: #FFFFFF;
    line-height: 48rem;
    box-sizing: border-box;
    margin-bottom: 35rem;
}

.news-content-box .quick-box .quick-header .quick-icon {
    width: 26rem;
    height: 26rem;
    margin-right: 10rem;
}

.news-content-box .quick-box .quick-item {
    font-size: 18rem;
    font-family: PingFang SC;
    font-weight: 500;
    color: #000000;
    line-height: 48rem;
    padding-left: 30rem;
    box-sizing: border-box;
    cursor: pointer;
}

.news-content-box .quick-box .quick-item.select-quick {
    color: #FFFFFF;
    background-color: #0263B2;
}

.news-content-box .news-list-box {
    flex: 1;
    background-color: #FFFFFF;
}

.news-content-box .news-list-box .news-list-header {
    width: 100%;
    background: #F2F1F1;
    font-size: 24rem;
    font-family: Source Han Serif SC;
    font-weight: bold;
    color: #000000;
    line-height: 40rem;
    padding-left: 26rem;
    margin-bottom: 18rem;
    box-sizing: border-box;
}

.news-content-box .news-list-box .news-item {
    padding: 33rem 25rem 50rem 25rem;
    display: flex;
    position: relative;
}

.news-content-box .news-list-box .news-item::after {
    content: "";
    /* height: 1px; */

    /* background: #6E6F71; */
    border-bottom: 1px solid #EEEEEE;

    position: absolute;
    bottom: 0;
    left: 25rem;
    right: 25rem;
}

.news-content-box .news-list-box .news-item .news-date {
    width: 100rem;
    height: 100rem;
    background-color: #0263B2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    margin-right: 25rem;
    cursor: pointer;
}

.news-content-box .news-list-box .news-item .news-date .mm-dd {
    font-size: 18rem;
    font-family: PingFang SC;
    font-weight: 500;
    color: #FFFFFF;
    line-height: 26rem;
}

.news-content-box .news-list-box .news-item .news-date .year {
    font-size: 20rem;
    font-family: DIN Alternate;
    font-weight: bold;
    color: #FFFFFF;
    line-height: 26rem;
}

.news-content-box .news-list-box .news-item .news-date .divide {
    width: 18rem;
    height: 1rem;
    margin: 5rem 0;
    background-color: rgba(255, 255, 255, 0.3);
}

.news-content-box .news-list-box .news-item .news-text {
    flex: 1;
    cursor: pointer;
    overflow: hidden;
}

.news-content-box .news-list-box .news-item .news-text .news-title {
    font-size: 20rem;
    font-family: PingFang SC;
    font-weight: 600;
    color: #000000;
    line-height: 28rem;

    /*display: -webkit-box;*/
    /*-webkit-box-orient: vertical;*/
    /*-webkit-line-clamp: 2;*/
    /*!*这里设置几行*!*/
    /*overflow: hidden;*/

    /* 隐藏溢出的文本 */
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2; /* 限制显示的行数 */
    -webkit-box-orient: vertical;
    -moz-box-orient: vertical; /* Firefox */
    -ms-box-orient: vertical; /* IE 10 */
    box-orient: vertical; /* Standard */
    line-height: 1.5; /* 行高 */
    max-height: 3em; /* 显示的最大高度 */
}

.news-content-box .news-list-box .news-item .news-text .news-desc {
    font-size: 16rem;
    font-family: PingFang SC;
    font-weight: 400;
    color: #6E6F71;
    line-height: 26rem;
    margin-top: 30rem;

    /*display: -webkit-box; !* 使用了flex，需要加 *!*/
    /*overflow: hidden; !* 超出隐藏 *!*/
    /*word-break: break-all; !* 纯英文、数字、中文 *!*/
    /*text-overflow: ellipsis; !* 省略号 *!*/
    /*-webkit-box-orient: vertical; !* 垂直 *!*/
    /*-webkit-line-clamp: 4; !* 显示4行 *!*/
    /*white-space: pre-line; !* 合并空白符序列，但是保留换行符。(如果要使用这个垂直和显示几行的代码也要写)；  后来查资料发现应该是我的元素脱离文档流然后定义宽度无效  换行符失效导致的 *!*/

    /* 隐藏溢出的文本 */
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 4; /* 限制显示的行数 */
    -webkit-box-orient: vertical;
    -moz-box-orient: vertical; /* Firefox */
    -ms-box-orient: vertical; /* IE 10 */
    box-orient: vertical; /* Standard */
    line-height: 1.5; /* 行高 */
    max-height: 6em; /* 显示的最大高度 */

}

.news-content-box .news-list-box .news-item .news-text .news-date-bottom{
    font-size: 26rem;
    margin-top: 10rem;
    color: #007aff;
    display: none;
}

.news-content-box .news-list-box .news-item .news-pic {
    width: 320rem;
    height: 180rem;
    margin-left: 35rem;
    background-color: #0263B2;
    cursor: pointer;
}

.news-content-box .news-list-box .news-item .news-pic img {
    width: 100%;
    height: 100%;
}
