#root {
    box-sizing: border-box;
    padding: 0 35px;
}

.label {
    color: #999999;
    font-family: 'Cairo', sans-serif;
    font-size: 22px;
    font-weight: 400;
}

.label:hover {
    cursor: pointer;
    color: #000;
}

.createtime {
    margin: 30px auto;
    font-weight: 500;
    font-size: 22px;
    color: #999;
}

.wz_title {
    margin: 0 auto 40px auto;
    box-sizing: border-box;
    color: #000;
    font-family: CairoBold;
    font-size: 24px;
    font-weight: 400;
    line-height: 35px;
}

/* 图标 */
.icon_ul {
    max-width: 39.58333vw;
    margin: 0 auto;
    display: flex;
}

.icon_ul li {
    cursor: pointer;
    margin: 0px 10px 20px 10px;
}

.icon_ul li img {
    width: 35px;
}

#content {
    margin: 0 auto 0;
    font-weight: 400;
    color: #666;
    text-align: right;

}

#content p span {
    font-size: 20px !important;
    line-height: 20px;
    font-family: Cairo !important;
    text-wrap: wrap !important;
    text-align: right;
}

#content img {
    margin: 30px 0;
    width: 100% !important;
    object-fit: contain;
}

video {
    margin: 20px 0;
    width: 100% !important;
    height: auto;
}



.news_view {
    margin-top: 100px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    box-sizing: border-box;
}

.news_title {
    width: 30%;
    color: #000;
    font-family: Source Han Sans CN;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

.line {
    width: 50%;
    height: 1px;
    stroke: #000;
    background-color: #000;
}

.view_btn_box {
    width: 20%;
}

.more {
    background-color: #ffffff;
    width: 128px;
    height: 41px;
    line-height: 41px;
    font-size: 12px;
    display: block;
    font-weight: bold;
    color: #000000;
    border: 1px solid #000000;
    text-align: center;
    transition: all 0.6s;
    cursor: pointer;
}

.more:hover {
    animation: box-shadow-drop-bottom 0.6s both;
    color: #ffffff;
    border: 1px solid #fff;
    background-color: rgba(216, 12, 36, 1);
}

.more_btn {
    width: 144px;
    height: 46px;
    line-height: 46px;
    font-size: 12px;
    display: block;
    font-weight: bold;
    color: #000000;
    border: 1px solid #000000;
    text-align: center;
    transition: all 0.6s;
    cursor: pointer;
}

.more_btn:hover {
    animation: box-shadow-drop-bottom 0.6s both;
    color: #ffffff;
    border: 1px solid #fff;

    background-color: rgba(216, 12, 36, 1);
}

/* 推荐列表 */

.news_list {
    display: flex;
    flex-wrap: wrap;
    margin: 20px auto 50px auto;
    width: 100%;
    padding: 0 10px;
    box-sizing: border-box;
}

.news_box {
    margin: 5px;
    cursor: pointer;
    width: 100%;
}

.news_box img {
    display: block;
    width: 100%;
}

.introduce_box {
    box-sizing: border-box;
    padding: 35px 15px 35px 15px;
    background-color: #ffffff;
    font-family: CairoBold;

}

.top_title {
    width: 100%;
    font-size: 24px;
    white-space: nowrap;
    /* 不换行 */
    overflow: hidden;
    /* 隐藏超出的内容 */
    text-overflow: ellipsis;
    /* 显示省略号 */
}

.below_title {
    font-size: 14px;
    line-height: 25px;
    height: 47px;
    margin: 15px 0 33px 0;
    overflow: hidden;
    white-space: normal;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.detail {
    height: 41px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.detail>span {
    color: rgba(204, 204, 204, 1);
    font-size: 20px;
}


.news_list {
    display: flex;
    justify-content: space-between;
}

.news_item {
    width: 100%;
    transition: transform 0.4s ease-in-out;

}

.news_item:hover {
    transform: translateY(-7px);
}

.news_item:hover .news_descrip {
    color: #B3271B;
}

.news_img {
    width: 100%;
}

.news_content {
    padding: 34px 0;
}

.news_time {
    color: #B3271B;
    font-family: 'Cairo', sans-serif;
    font-size: 20px;
    font-weight: 400;
    line-height: 137.99%;
}

.news_descrip {
    color: #000;
    font-family: CairoBold;
    font-size: 26px;
    line-height: 30px;
    font-weight: 400;
    margin: 16px 0;
    overflow: hidden;
    white-space: normal;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;

}

.news_btn {
    width: 158px;
    height: 51px;
    line-height: 51px;
    font-size: 12px;
    display: block;
    font-weight: bold;
    color: #000000;
    border: 1px solid #000;
    text-align: center;
    transition: all 0.6s;
    cursor: pointer;
    border-radius: 5px;
}

.news_btn:hover {
    animation: box-shadow-drop-bottom 0.6s both;
    color: #ffffff;
    background-color: #D80C24;
    border: 1px solid #fff;
}