.page-body {
    min-height: calc(100vh - 382px);
}

.row2_ellipsis {
    display: -webkit-box;
    /* 设置为WebKit内核的弹性盒子模型 */
    -webkit-box-orient: vertical;
    /* 垂直排列 */
    -webkit-line-clamp: 2;
    /* 限制显示两行 */
    overflow: hidden;
    /* 隐藏超出范围的内容 */
    text-overflow: ellipsis;
    /* 使用省略号 */
}

.c_wrap_1200 {
    max-width: 1400px;
    margin: 0 auto;
}

/* 顶部背景墙 */
.bg_wall {
    height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url(/themes/website/1/zh/jinze/static/img/first-bg.png);
    background-repeat: no-repeat;
    background-position: 0;
    background-size: cover;
}

.bg_wall .bw_title_wrap {
    /* TODO 字体 */
    font-family: Noto Sans SC, Noto Sans SC;
    text-align: center;
}

.bg_wall .bw_title_wrap .zh_wrap {
    font-weight: bold;
    font-size: 44px;
    color: #FFFFFF;
    line-height: 44px;
}

.bg_wall .bw_title_wrap .en_wrap {
    margin-top: 10px;
    font-weight: 400;
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 18px;
}

/* 顶部tabs */
.ryzf_t_tabs-fixed {
    position: fixed;
    top: 100px;
    left: 0;
    width: 100vw;
}

.ryzf_t_tabs .big_screen_menu_wrap {
    position: relative;
}

.ryzf_t_tabs .big_screen_menu_list_wrap {
    position: absolute;
    /* left: -220px; */
    left: 16px;
    top: 20px;
    z-index: 90;
    width: 245px;
    background-color: #ffffff;
    border: 1px solid #eeeeee;
    border-top: none;
}

.ryzf_t_tabs .big_screen_menu_list_wrap .menu_list_wrap.children_menu_wrap {
    padding-left: 20px !important;
    background-color: #fafafa;
}

.ryzf_t_tabs .big_screen_menu_list_wrap .menu_list_wrap.children_menu_wrap .menu_item_wrap {
    border-bottom: none;
}

.ryzf_t_tabs .big_screen_menu_list_wrap .title_wrap {
    background-color: #0f3676;
    height: 47px;
    /* TODO 字体 */
    font-family: Noto Sans SC, Noto Sans SC;
    font-weight: 400;
    font-size: 16px;
    color: #FFFFFF;
    line-height: 19px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ryzf_t_tabs .big_screen_menu_list_wrap .menu_item_wrap {
    height: 44px;
    position: relative;
    border-bottom: 1px solid #eeeeee;
}

.ryzf_t_tabs .big_screen_menu_list_wrap .menu_item_wrap .btn-a {
    display: block;
    box-sizing: border-box;
    width: 100%;
    height: 100%;
    padding: 12px 28px 12px 42px;
    /* TODO 字体 */
    font-family: Noto Sans SC, Noto Sans SC;
    font-weight: 400;
    font-size: 14px;
    color: #333333;
}

.ryzf_t_tabs .big_screen_menu_list_wrap .menu_item_wrap::before {
    content: '';
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    border: 4px solid transparent;
    border-left-color: #e5e5e5;
}

/* 菜单选中 */
.ryzf_t_tabs .big_screen_menu_list_wrap .menu_item_wrap.current .btn-a {
    font-weight: bold;
    color: #0F3676;
}

.ryzf_t_tabs .big_screen_menu_list_wrap .menu_item_wrap.current::before {
    border-left-color: #0f3676;
}

/* 默认不展示 */
.ryzf_t_tabs .t_tabs_wrap {
    box-sizing: border-box;
    padding-top: 3px;
    height: 57px;
    display: none;
    align-items: center;
    overflow-x: auto;
}

.t_tabs_wrap .t_tab_item_wrap {
    width: calc(33.3% - 7px);
    min-width: 100px;
    height: 100%;
    margin-right: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.t_tabs_wrap .t_tab_item_wrap:hover .tab_label_wrap {
    font-weight: bold;
    color: #0F3676;
}

.t_tabs_wrap .t_tab_item_wrap .tab_label_wrap {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    /* TODO 字体 */
    font-family: Noto Sans SC, Noto Sans SC;
    font-weight: 400;
    font-size: 20px;
    color: #333333;
}

.t_tabs_wrap .t_tab_item_wrap.current .tab_label_wrap {
    box-sizing: border-box;
    font-weight: bold;
    color: #0F3676;
    border-bottom: 2px solid #0F3676;
}

.t_tabs_wrap .t_tab_item_wrap:last-child {
    margin-right: 0;
}

/* 新闻 */
.new_wall {
    background-color: #fafafa;
    padding-bottom: 3px;
}

.new_wall_wrap {
    /* padding: 40px 0 30px; */
    padding: 40px 20px 30px 302px;
}

.new_wall_wrap .card_wrap {
    position: relative;
    cursor: pointer;
    overflow: hidden;
    border-radius: 6px;
}

.new_wall_wrap .card_wrap .c_img_wrap {
    width: 100%;
    height: 160px;
    overflow: hidden;
}

.new_wall_wrap .card_wrap .c_img_wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.new_wall_wrap .c_title_wrap {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 36px;
    background-color: #00000080;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    padding: 0 15px;
}

.new_wall_wrap .c_title_wrap .title_text_wrap {
    /* TODO 字体 */
    font-family: Noto Sans SC, Noto Sans SC;
    font-weight: 400;
    font-size: 14px;
    color: #FFFFFF;
    line-height: 16px;
    text-align: center;
    /*不让文字换行*/
    white-space: nowrap;
    /*溢出隐藏*/
    overflow: hidden;
    /*添加省略符号*/
    text-overflow: ellipsis;
}

.new_wall_wrap .icon_stop_wrap {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -13.5px);
    width: 31px;
    height: 33.5px;
}

.new_wall_wrap .icon_stop_wrap img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.mask_wrap {
    display: none;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 99999;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.8);
}

.mask_wrap .video_wrap {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background-color: black;
    width: 60vw;
    height: 33.75vw;
}

.mask_wrap .close_wrap {
    position: absolute;
    right: 30px;
    top: 30px;
    width: 30px;
    height: 30px;
}

.mask_wrap .close_wrap img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* 针对屏幕宽度小于或等于1440像素的设备的样式 */
@media (max-width: 1640px) {
    .ryzf_t_tabs .t_tabs_wrap {
        /* display: flex; */
    }

    .ryzf_t_tabs .big_screen_menu_wrap {
        /* display: none; */
    }
}

/* 针对屏幕宽度小于或等于1250像素的设备的样式 */
@media (max-width: 1250px) {
    .c_wrap_1200 {
        margin: 0 25px;
    }
}

/* 针对屏幕宽度小于或等于992像素的设备的样式 */
@media (max-width: 768px) {
    .ci_left_wrap {
        order: 2;
        width: 100% !important;
        padding-right: 0 !important;
    }

    .ci_right_wrap {
        order: 1;
        width: 100% !important;
        margin-bottom: 20px !important;
    }

    .com_info_wrap .ci_left_wrap .cil_btn_wrap {
        justify-content: flex-end;
    }

    .mask_wrap .video_wrap {
        left: 0;
        transform: translateY(-50%);
        width: 100vw;
        height: 56.25vw;
    }

    .mask_wrap .close_wrap {
        width: 25px;
        height: 25px;
    }
}

/* 隐藏弹窗的初始状态 */
#video-popup {
    display: none;
    position: fixed;
    z-index: 999;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
}
/* 视频样式，使其占满弹窗 */
#video-popup video {
    margin: auto;
    width: 100%;
    height: 100%;
}

/* 关闭按钮样式 */
#close-btns {
    position: absolute;
    top: 10px;
    right: 10px;
    color: white;
    font-size: 25px;
    cursor: pointer;
    z-index: 999999999;

}

ul li{
    list-style: none;
    float: left;
    margin: 30px 5px 5px 0;
    padding: 0;
    width: 40px;
    height: 40px;
    cursor: pointer;
    font-size: 17px;
}
li a{
    border: 1px solid #ddd;
    text-align: center;
    width: 100%;
    width: 40px;
    height: 40px;
    display: inline-block;
    line-height: 40px;
    color: #999;
    background-color: white;
}
li a:hover{
    /*background-color: #eb0a09; !*红*!*/
    background-color: #0f3676; /*蓝*/
    /*border: 1px solid #eb0a09;*/
    border: 1px solid #0f3676; /*蓝*/
    color: white!important;
}
li span{
    display: inline-block;
    color: white!important;
    /*background-color: #eb0a09; !*红*!*/
    background-color: #0f3676; /*蓝*/
    /*border: 1px solid #eb0a09; !*红*!*/
    border: 1px solid #0f3676; /*蓝*/
    width: 100%;
    height: 100%;
    line-height: 40px;
    text-align: center;
}
.disabled span{
    border: 1px solid #ddd;
    background-color: #ddd!important;
    cursor: default;
}