/* 页面公共部分样式 */
.hdRoot{
    /* max-width: 1920px; */
    min-width: 350px;
    margin: 0 auto;
}

.sameWidth{
    width: 1600px;
    margin: 0 auto;
    box-sizing: border-box;
}

/* header start */
.header_fixed{
    width: 100%;
    background: url(../images/pc/index/dl_top_bg.png) repeat-x;
    background-size: auto 100%;

    position: fixed;
    left: 0;
    top: 0;
    z-index: 10;
}
.header{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;

    box-sizing: border-box;
    padding: 16px 40px;
}

.index_logo{
    flex-shrink: 0;
}

.index_logo img, .foot_logo img{
    width: 700px;
    height: 68px;
    vertical-align: middle;
}

.head_r{
    width: calc(100% - 700px);
}

.head_t{
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.dl_society{
    flex-shrink: 0;
    display: flex;
    align-items: center;
    margin-left: 20px;
}

.dl_society img{
    width: 24px;
    height: 24px;
    margin-right: 3px;
}

.dl_society p{
    font-size: 16px;
    color: #ffffff;
}

.en_website{
    display: block;
    width: 34px;
    height: 34px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    margin-left: 20px;

    font-size: 16px;
    color: #ffffff;
    text-align: center;
    line-height: 34px;
   flex-shrink: 0;
}

.search_box{
    position: relative;
    margin-left: 20px;
}

.search_box input{
    width: 166px;
    height: 34px;
    background: #FFFFFF;
    border-radius: 17px;
    border: none;
    outline: none;

    box-sizing: border-box;
    padding: 0 40px 0 15px;

    font-size: 14px;
    color: #C2112E;
}

.search_box input::placeholder{
    color: #C2112E;
}

.search_box img{
    width: 18px;
    height: 18px;

    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
}

.mo_top_menu{
    display: none;
    align-items: center;
}

.mo_nav_icon img{
    width: 27px;
    height: 27px;
}

.mo_nav_icon img#close_icon{
    display: none;
}
/* header end */

/* nav_pc start */
.medium_screem{
    display: none;
}

.nav_pc{
    width: 100%;
    height: auto;

    box-sizing: border-box;
    padding-left: 5%;
    margin-top: 15px;
}

.p_first_nav{
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.p_first_nav > li{
    position: relative;
}

.p_first_nav > li > a{
    box-sizing: border-box;
    padding: 0 8px 8px;
    display: block;

    font-size: 18px;
    color: #ffffff;
    text-align: center;
}

.p_first_nav > .p_first_li_active > a{
    font-weight: bold;
    border-bottom: 2px solid #ffffff;
}

.p_first_nav > li:hover > a{
    font-weight: bold;
}

.p_first_nav > li:hover .p_second_nav{
    transform: scaleY(1) translateX(-50%);
    opacity: 1;
}

.p_second_nav{
    width: 200px;
    height: auto;
    padding-top: 15px;
    
    position: absolute;
    left: 50%;
    z-index: 9;

    transform:  scaleY(0) translateX(-50%);
    transform-origin: 0% 0;
    opacity: 1;
    transition: all 0.3s ease 0s;
}

/* 二级导航三角 */
.p_second_nav:after {
    content: '';
    position: absolute;
    top: -5px;
    left: 50%;
    margin-left: -10px;
    border-width: 10px;
    border-style: solid;
    border-color: transparent transparent #c41a36 transparent;
}

.p_second_nav > li{
    position: relative;
    box-sizing: border-box;
    background: #c41a36;
}

.p_second_nav > li  > a{
    display: block;
    font-size: 16px;
    color: #ffffff;
    line-height: 26px;
    text-align: center;

    box-sizing: border-box;
    padding: 10px;
}

.p_second_nav > li:hover > a{
    background: #ffffff;
    color: #c41a36;
}
/* nav_pc end */

/* nav_mo start */
.nav_mo{
    display: none;
    width: 100%;
    height: calc(100vh - 70px);
    background: url(../images/pc/shen_bg.jpg) no-repeat left bottom;
    background-size: 100% auto;
    background-color: #ffffff;
    overflow-y: scroll;
    position: fixed;
    top: 70px;
    z-index: 10;

    box-sizing: border-box;
    padding: 15px 0;
}

.mo_search_wrap{
    display: flex;
    align-items: center;
}

.mo_search_box{
    flex: 1;
    display: flex;
    align-items: center;
}

.mo_search_box input{
    width: 100px;
    flex: 1;
    height: 38px;
    background: #ffffff;
    box-sizing: border-box;
    padding: 0 10px;
    border: 1px solid #B9B8B7;

    font-size: 14px;
    color: #333333;
}

.mo_search_box button{
    flex-shrink: 0;
    width: 65px;
    height: 38px;
    background: #c2112e;
    border: none;
    outline: none;

    font-size: 14px;
    color: #ffffff;
}

.m_first_nav > li{
    box-sizing: border-box;
    padding: 10px 10px 10px 0;
    border-bottom: 1px solid #EDEDEE;
}

.m_first_nav >li.m_first_li_active{
    padding-left: 15px;
    background: rgba(194,17,46,0.1);
}

.m_first_nav >li.m_first_li_active > a > p{
    font-weight: bold;
    color: #c2112e;
}

.m_first_nav >li.m_first_li_active > a > img:nth-child(2){
    display: none;
}

.m_first_nav >li.m_first_li_active > a > img:nth-child(3){
    display: block;
}

.m_first_nav > li > a{
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.m_first_nav > li > a > img{
    width: 20px;
    height: 20px;
}

.m_first_nav > li > a > img:nth-child(3){
    display: none;
}

.m_first_nav > li > a > p{
    font-size: 16px;
    color: #333333;
    line-height: 26px;
    padding: 10px 0;
}

.m_second_nav{
    display: none;
    box-sizing: border-box;
    padding-left: 30px;
}

.m_second_nav > li > a{
    display: block;
    font-size: 16px;
    color: #333333;
    line-height: 22px;
    padding: 10px 0;
}

.m_second_nav > li.m_second_li_active > a{
    color: #C2112E;
}
/* nav_mo end */

/* footer start */
.footer{
    width: 100%;
    height: auto;
    background: url(../images/pc/index/dl_footer_bg.jpg) no-repeat;
    background-size: 100% 100%;
}

.foot_t{
    display: flex;
    align-items: center;
    justify-content: space-between;

    box-sizing: border-box;
    padding: 35px 0;
}

.foot_r{
    width: 285px;
}

.links{
    width: 278px;
    height: 45px;
    background: rgba(244,245,245,0.15);
    outline: none;
    border: none;

    font-size: 18px;
    color: #ffffff;
    box-sizing: border-box;
    padding: 0 10px;
    margin-bottom: 10px;
}

.links option{
    color: #333333;
}

.fr_l{
    display: flex;
    flex-wrap: wrap;
}

.fr_l p{
    font-size: 16px;
    color: #ffffff;
    line-height: 35px;
}

.fr_l p:last-child{
    margin-left: 6px;
}

.foot_b{
    background: rgba(159,0,4,0.91);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;

    padding: 12px 0;
}

.foot_b p{
    font-size: 16px;
    color: #FD8384;
    line-height: 36px;
    margin: 0 5px;
}

.foot_b a{
    color: #FD8384;
}
/* footer end */

/* 内页banner start */
.inner_banner img{
    width: 100%;
    height: auto;
    vertical-align: middle;
}
/* 内页banner end */

/* 内页正文 start */
.inner_content{
    background: url(../images/pc/inner/ny_bg.jpg) no-repeat;
    background-size: 100% auto;
    background-position: left bottom;
    background-color: #f3f4f7;
}

.inner_wrap{
    /* display: flex; */
    
    position: relative;
    top: -170px;
}

.inner_top{
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.content_box{
    display: flex;
}

.changeBox{
    width: calc(100% - 238px);
    background: #ffffff;
    box-sizing: border-box;
    padding: 70px 50px;
}

.left_nav{
    flex-shrink: 0;
    width: 238px;
    background: #ffffff;
    border-right: 1px solid #E1E2E6;
}

/* 二级栏目名称 */
.ej_cloumn_name{
    display: none;
    box-sizing: border-box;
    padding: 12px 0;
    border-bottom: 1px solid #E2E1E1;
    margin-bottom: 20px;
}

.ej_cloumn_name h3{
    width: fit-content;
    font-size: 15px;
    color: #333333;

    position: relative;
}

.ej_cloumn_name h3::after{
    content: "";
    width: 8px;
    height: 3px;
    background: #C2112E;

    position: absolute;
    bottom: 3px;
    right: -12px;
}

/* 一级栏目名称 */
.column_name{
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.left_nav_icon{
    width: 35px;
    height: 35px;
    background: #C2112E;

    display: none;
    align-items: center;
    justify-content: center;
}

.left_nav_icon img{
    width: 18px;
    height: 18px;
}

.left_nav_icon img:nth-child(1){
    display: none;
}

.column_name h3{
    font-size: 36px;
    color: #ffffff;

    position: relative;
}

.column_name h3::after{
    content: "";
    width: 24px;
    height: 6px;
    background: #C2112E;
    
    position: absolute;
    bottom: 3px;
    right: -30px;
}

/* 内页左导航 */
.lnav_first{
    
}

.lnav_first > li > a{
    width: 100%;
    min-height: 70px;
    border-bottom: 1px solid #EDEEF2;

    display: flex;
    align-items: center;
    justify-content: space-between;

    box-sizing: border-box;
    padding: 10px 10px 10px 30px;

    font-size: 20px;
    color: #000000;
    line-height: 24px;
}

.lnav_first > li > a:hover{
    color: #C2112E;
}

.lnav_first > li > a > img{
    width: 18px;
    height: 18px;
    display: none;
}

.lnav_first > li > a > img:nth-child(3){
    display: none;
}

.lnav_first > li.active_nfirst_li > a{
    background: #c2112e;
    border-bottom: none;

    color: #ffffff;
    position: relative;
}

.lnav_first > li.active_nfirst_li > a::before{
    content: "";
    width: 3px;
    height: 23px;
    background: #FFFFFF;

    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
}

.lnav_first > li.active_nfirst_li > a::after{
    content: "";
    position: absolute;
    left: 100%;
    top: 50%;
    transform: translateY(-50%);

    border-width: 9px;
    border-style: solid;
    border-color: transparent transparent transparent #c41a36;
}

/* 当前位置 */
.current_address{
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: flex-end;

    box-sizing: border-box;
    padding-top: 20px;

    font-size: 16px;
    color: #ffffff;
}

.current_address a, .current_address span, .current_address td{
    font-size: 16px;
    color: #ffffff;
}

.current_address img{
    width: 24px;
    height: 24px;
    margin-right: 5px;
}
/* 内页正文 end */

/* 分页 */
.hd_pages .p_pages{
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 30px;
}

.p_pages span{
    display: block;
    min-width: 40px;
    height: 40px;
    box-sizing: border-box;
    padding: 0 10px;
    border: 1px solid #D3D8DE;

    margin: 0 5px;

    font-size: 18px;
    color: #807D7D;
    text-align: center;
    line-height: 40px;
}

.p_pages span a{
    display: block;
    width: 100%;
    height: 100%;
    color: #807D7D;
}

.p_pages span.p_no_d{
    background: #C2112E;
    color: #ffffff;
    border: none;
}

.p_pages span.p_no:hover, .p_pages span.p_fun:hover{
    background: #C2112E;
}

.p_pages span.p_no:hover a, .p_pages span.p_fun:hover a{
    color: #ffffff;
}














@media screen and (max-width: 1700px) {
    /* headder */
    .header{
        padding: 16px 2%;
    }

    .index_logo img, .foot_logo img{
        width: 530px;
        height: 51px;
    }

    .head_r{
        width: calc(100% - 530px);
    }
}

@media screen and (max-width: 1650px) {
    .sameWidth{
        width: 100%;
        padding: 0 2%;
    }
}

@media screen and (max-width: 1500px) {
    /* nav_pc */
    .medium_screem{
        display: block;
        padding: 0 2%;
        margin-top: 0;
    }

    .big_screem{
        display: none;
    }
}

@media screen and (max-width: 1350px) {
    /* 内页正文 */
    .left_nav{
        width: 208px;
    }

    .changeBox{
        width: calc(100% - 208px);
    }

    .column_name, .current_address{
        height: 70px;
    }

    .column_name h3{
        font-size: 30px;
    }

    .lnav_first > li > a{
        font-size: 18px;
        min-height: 60px;
    }

    .current_address{
        font-size: 14px;
    }

    .current_address img{
        width: 20px;
        height: 20px;
    }

    .changeBox{
        padding: 50px;
    }

    .inner_wrap{
        top: -130px;
    }

    /* 分页 */
   .p_pages span{
        min-width: 32px;
        height: 32px;

        font-size: 16px;
        line-height: 32px;
        margin: 0 3px;
    }
}

@media screen and (max-width: 1200px) {
    /* 内页正文 */
    .changeBox{
        padding: 30px;
    }
}


@media screen and (max-width: 998px) {
    /* header */
    .header_fixed{
        height: 70px;
    }

    .mo_top_menu{
        display: flex;
    }

    .en_website{
        width: 28px;
        height: 28px;
        margin: 0 5px 0 0;

        font-size: 14px;
        line-height: 28px;
    }

    .head_r{
        display: none;
    }

    .index_logo img{
        width: 390px;
        height: 38px;
    }

    /* nav_pc */
    .medium_screem{
        display: none;
    }

    /* nav_mo */
    .dl_society{
        width: 75px;
        height: 38px;
        background: #c2112e;
        justify-content: center;

        margin-left: 5px;
    }

    .dl_society p{
        font-size: 12px;
    }

    .dl_society img{
        width: 18px;
        height: 18px;
        margin-right: 0;
    }

    /* footer */
    .foot_logo{
        display: none;
    }

    .links{
        display: none;
    }

    .foot_r{
        width: 100%;
    }

    .fr_l{
        align-items: center;
        justify-content: center;
    }

    .fr_l p{
        font-size: 14px;
        line-height: 28px;
        margin: 0 10px;
    }

    .foot_t{
        padding: 20px 0;
    }

    .foot_b{
        padding: 10px 0;
    }

    .foot_b p{
        font-size: 12px;
        line-height: 20px;
    }

    /* 内页正文 */
    .changeBox{
        width: 100%;
        margin-top: 25px;
        padding: 13px;
    }

    .inner_wrap{
        top: -45px;
    }

    .content_box, .inner_top{
        flex-wrap: wrap;
    }

    .left_nav{
        width: 100%;
    }

    /* 二级栏目名称 */
    .ej_cloumn_name{
        display: block;
    }

    /* 一级栏目名称 */
    .column_name{
        width: 100%;
        height: 35px;
        margin-bottom: 4px;
    }

    .current_address{
        display: none;
    }

    .column_name h3{
        font-size: 18px;
    }
    
    .column_name h3::after{
        width: 12px;
        height: 3px;

        right: -18px;
    }

    .left_nav_icon{
        display: flex;
    }

    .lnav_first{
        /* display: none; */
    }

    .lnav_first > li:last-child > a{
        border-bottom: none;
    }

    .lnav_first > li > a{
        font-size: 16px;
        min-height: 50px;
        padding: 10px 10px 10px 13px;
    }

    .lnav_first > li > a > img{
        display: block;
    }

    .lnav_first > li.active_nfirst_li > a{
        padding-left: 25px;
    }

    .lnav_first > li.active_nfirst_li > a::before{
        width: 3px;
        height: 20px;
    }

    .lnav_first > li.active_nfirst_li > a::after{
        display: none;
    }

    .lnav_first > li.active_nfirst_li > a > img:nth-child(2){
        display: none;
    }
    
    .lnav_first > li.active_nfirst_li > a > img:nth-child(3){
        display: block;
    }

    /* 分页 */
    .hd_pages{
        margin-top: 15px;
    }

    .p_pages span{
        width: 58px;
        height: 36px;

        font-size: 12px;
        line-height: 36px;
    }

   .p_pages span.p_no, .p_pages span.p_no_d{
        display: none;
    }
}

@media screen and (max-width: 540px){
    .sameWidth{
        padding: 0 3%;
    }

    /* header */
    .header_fixed{
        height: 55px;
        display: flex;
        align-items: center;
    }

    .index_logo img{
        width: 280px;
        height: 27px;
    }

    .header{
        padding: 0 1%;
    }

    /* nav_mo */
    .nav_mo{
        height: calc(100vh - 55px);
        top: 55px;
    }

    /* footer */
    .fr_l p{
        width: 100%;
        text-align: center;
    }

    /* 内页正文 */
    .changeBox{
        margin-top: 18px;
    }
}


