/* 页面公共部分样式 */
.lgRoot{
    min-width: 350px;
    margin: 0 auto;
}

.sameWidth{
    width: 1400px;
    margin: 0 auto;
    box-sizing: border-box;
}

/* header start */
.header{
    width: 100%;
    height: 162px;
    background: url(../images/pc/lg_index_top_bg.png) no-repeat;
    background-size: 100% 100%;
}

.inner_header{
    height: 100%;
    display: flex;
    align-items: center;
}

.index_logo img{
    width: 516px;
    height: auto;
}

.slogan img{
    width: 390px;
    margin: 35px 0 0 120px;
}

.nav_toggle{
    display: none;
}

.nav_toggle img{
    width: 27px;
    height: 27px;
}

.nav_toggle img.nav_close_icon{
    display: none;
}
/* header end */

/* nav_pc start */
.nav_pc{
    width: 100%;
    height: 53px;
    background: #8e0209;
}

.nav_pc_box{
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.search_pc_box{
    flex-shrink: 0;
    margin-left: 20px;
    position: relative;
}

.search_icon img{
    width: 40px;
    height: 40px;
}

.nav_r_first{
    flex: 1;
    height: 100%;
    display: flex;
    align-items: center;
}

.nav_item{
    flex: 1;
    height: 100%;
    
    position: relative;
}

.nav_item > a{
    display: block;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 16px;
    color: #ffffff;
}

.nav_item:hover > a{
    background: #740000;
}

.nav_item:hover .nav_r_second{
    display: block;
}

.nav_item_active > a{
    background: #740000;
}

.nav_r_second{
    display: none;
    width: 100%;
    background: rgba(255,255,255,0.85);
    box-shadow: 0px 3px 10px 0px #C4C6C9;

    position: absolute;
    left: 0;
    top: 100%;
    z-index: 9;
}

.nav_r_second li{
    width: 100%;
}

.nav_r_second li a{
    display: block;
    box-sizing: border-box;
    padding: 8px 5px;

    font-size: 16px;
    color: #333333;
    line-height: 26px;
    text-align: center;
}

.nav_r_second li a:hover{
    color: #8e0209;
    font-weight: bold;
}
/* nav_pc end */

/* nav_mo start */
.nav_mo{
    display: none;
    width: 100%;
    height: calc(100vh - 76px);
    background: #ffffff;
    overflow-y: scroll;

    position: fixed;
    top: 76px;
    left: 0;
    z-index: 10;
}

.nav_mo_inner{
    margin: 17px 0;
}

.mo_search_box{
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #B9B8B7;
}

.mo_search_box input{
    flex: 1;
    outline: none;
    border: none;
    height: 38px;
    box-sizing: border-box;
    padding: 0 15px;

    font-size: 14px;
    color: #333333;
}

.mo_search_box button{
    flex-shrink: 0;
    outline: none;
    border: none;
    width: 75px;
    height: 38px;
    background: #8E0209;

    font-size: 14px;
    color: #ffffff;
}

.mo_nav_list{
    margin-top: 10px;
}

.mo_nav_list a{
    display: flex;
    align-items: center;
    justify-content: space-between;

    box-sizing: border-box;
    padding: 20px 0;
    border-bottom: 1px solid #EDEDEE;
    transition: all .3s;
}

.mo_nav_list a p{
    font-size: 16px;
    color: #333333;
    line-height: 28px;
}

.mo_nav_list a img{
    width: 27px;
    height: 27px;
}

.mo_nav_list a img:nth-child(3){
    display: none;
}

.mo_nav_list a:hover{
    background: #e6e2b0;
    padding-left: 15px;
}

.mo_nav_list a:hover p{
    font-weight: bold;
    color: #8E0209;
}

.mo_nav_list a:hover img:nth-child(2){
    display: none;
}

.mo_nav_list a:hover img:nth-child(3){
    display: block;
}
/* nav_mo end */

/* pc搜索 start */
.pc_search_wrap{
    display: none;

    position: absolute;
    right: 0;
    top: calc(100% + 10px);
    z-index: 9;
}

.pc_search_box{
    width: fit-content;
    display: flex;
    align-items: center;

    box-shadow: 4px 3px 10px 0px #AEAFAF;
    border: 1px solid #8D0108;
}

.pc_search_box input{
    border: none;
    outline: none;

    width: 211px;
    height: 40px;
    box-sizing: border-box;
    padding: 0 10px;

    font-size: 16px;
}

.pc_search_box button{
    border: none;
    outline: none;

    width: 58px;
    height: 40px;
    padding: 0;
    background: #8e0209;
    font-size: 16px;
    color: #ffffff;

}

.pc_search_box .pc_search_close{
    width: 40px;
    height: 40px;
    padding: 0;
    background: #8e0209;

    display: flex;
    align-items: center;
    justify-content: center;
}

.pc_search_close img{
    width: 25px;
    height: 25px;
}
/* pc搜索 end */

/* footer start */
.footer{
    width: 100%;
    height: auto;
    background: #8e0209;

    box-sizing: border-box;
    padding: 12px 0;
}

.footer p{
    font-size: 16px;
    color: #ffffff;
    line-height: 36px;
    text-align: center;
}
/* footer end */

/* 右侧固定导航 start */
.right_fixed_menu{
    position: fixed;
    bottom: 20%;
    right: 0;
    z-index: 9;
}

.fixed_menu{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0px 3px 10px 0px #C4C6C9;

    width: 110px;
    height: 134px;
    background: #FFFFFF;
    margin-bottom: 10px;
    transition: all .5s;
}

.fixed_menu:last-child{
    margin-bottom: 0;
}

.fixed_menu img{
    width: 57px;
    height: 57px;
}

.fixed_menu p{
    font-size: 18px;
    color: #333333;
    margin-top: 10px;
}

.fixed_menu:hover{
    background: #8d0108;
}

.fixed_menu:hover p{
    color: #ffffff;
}
/* 右侧固定导航 end */

/* 内页正文 start */
.inner_main{
    min-height: 650px;
    box-sizing: border-box;
    padding: 34px 0;
}

.main_box{
    display: flex;
    align-items: flex-start;
}

/* 左导航 */
.left_nav{
    flex-shrink: 0;
    width: 244px;
    margin-right: 30px;
}

.nav_title{
    width: 100%;
    height: 100px;
    background: #8E0209;
    box-sizing: border-box;
    padding: 0 30px;

    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav_title h3{
    font-size: 24px;
    color: #ffffff;
}

.nav_title img{
    display: none;

    flex-shrink: 0;
    width: 22px;
    height: 22px;
}

.l_nav_first{
    width: 100%;
}

.l_nav_first > li > a{
    display: flex;
    align-items: center;
    justify-content: space-between;

    box-sizing: border-box;
    padding: 24px 30px;
    border-bottom: 1px solid #dfdfdf;
    border-left: 1px solid #dfdfdf;
    border-right: 1px solid #dfdfdf;

    font-size: 18px;
    color: #333333;
}

.l_nav_first > li > a img{
    display: none;

    width: 8px;
    height: 8px;
}

.l_nav_first > li.l_nav_li_active > a{
    border-left: 4px solid #9B0A0E;
    font-weight: bold;
    color: #9B0A0E;
}

.l_nav_first > li.l_nav_li_active > a img{
    display: block;
}

/* 右主内容 */
.right_main{
    width: calc(100% - 244px - 30px);
}

.main_top{
    display: flex;
    align-items: center;
    justify-content: space-between;

    box-sizing: border-box;
    padding: 10px 0 15px;
    border-bottom: 1px solid #821316;
}

/* 二级栏目名称/自动获取 */
.current_cloumn{
    font-size: 18px;
    color: #1B1919;
}

/* 当前位置 */
.current_address, .current_address{
    display: flex;
    align-items: center;

    font-size: 15px;
    color: #ACA9A9;
}

.current_address img{
    width: 16px;
    height: 16px;
    margin-right: 5px;
}

.current_address a{
    color: #ACA9A9;
}

.lanmu a:last-child{
    color: #9B0A0E;
}

/* 动态内容部分 */
.dy_content{
    box-sizing: border-box;
    padding: 30px 0;
}
/* 内页正文 end */

/* 分页 start */
.lg_pages{
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 30px;
}

.lg_pages .p_pages{
    display: flex;
    align-items: center;
    margin: 0 15px;
}

.lg_pages a, .lg_pages span.p_no_d, .lg_pages span.p_fun_d{
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    padding: 0 15px;
    margin: 0 5px;

    min-width: 40px;
    height: 40px;
    background: #F4F3F3;
    border-radius: 2px;

    font-size: 16px;
    color: #666666;
}

.p_first, .p_first_d, .p_last, .p_last_d{
    display: none !important;
}

.lg_pages span.p_no_d{
    background: #821316;
    color: #ffffff;
}

.lg_pages a:hover{
    background: #821316;
    color: #ffffff;
}
/* 分页 end */