/* 默认显示内容区 */
.nav-small{
    display: none;
}
.nav-large,.content{
    display: block;
}

/* 公共样式-二级页面-面包屑 */
.location{
    display: flex;
    align-items: center;
    margin: 30px 0;
}
.location a,.location span{
    font-size: 0.75rem;
    color: #2E3034;
}
.location em{
    background: url(../images/location-arrow.svg) no-repeat center;
    display: block;
    width: 6px;
    height: 12px;
    margin: 0 10px;
}
.location a:hover{
    color: #F00E0E;
}

/* 公共样式-二级页面-左侧导航 */
.second-page-content{
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
}
.second-page-content .left-nav{
    width: 20%;
    background: #fff;
}
.left-nav .nav-title{
    width: 100%;
    height: 70px;
    background: #F00E0E;
    padding-left: 42px;
    padding-right: 20px;
    box-sizing: border-box;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.left-nav .nav-title h2{
    font-size: 1rem;
    color: #fff;
    font-weight: 700;
    /* line-height: 70px; */
}
.left-nav .nav-title::before{
    content: '';
    width: 4px;
    height: 20px;
    background: #fff;
    position: absolute;
    left: 20px;
    top: 50%;
    margin-top: -10px;
}
.left-nav>ul>li{
    width: 100%;
    min-height: 60px;
    height: auto;
    padding: 0 20px;
    box-sizing: border-box;
    line-height: 60px;
    border-bottom: 1px solid #F5F5F5;
    font-size: 0.8rem;
    background: url(../images/list-arrow-gray.svg) no-repeat 95% center;
    box-sizing: border-box;
}
.left-nav>ul>li a{
    display: block;
    width: 100%;
    height: 100%;
}
.left-nav>ul>li.on{
    background: #FFF6F6 url(../images/list-arrow-red.svg) no-repeat 95% center;
}
.left-nav>ul li.on a{
    color: #F00E0E;
    font-weight: 700;
}
.left-nav>ul>li.btn-zcfg{
    height: auto;
    line-height: auto;
    background: none;
    padding: 0 !important;
}

/* 公共样式-二级页面-右侧内容区-列表样式一 */
.right-cont-news01{
    width: 80%;
    margin-left: 30px;
    box-sizing: border-box;
    background: #fff;
    padding: 20px;
}
.right-cont-title{
    width: 100%;
    border-bottom: 4px solid #EAE9E9;
    padding-bottom: 10px;
    margin-bottom: 10px;
}
.right-cont-title h2{
    display: inline;
    font-size: 0.9rem;
    border-bottom: 4px solid #F00E0E;
    padding-bottom: 10px;
}
.right-cont-news01>ul{
    width: 100%;
}
.right-cont-news01>ul li{
    border-bottom: 1px dashed #EAEAEA;
    padding: 20px 0;
}
.right-cont-news01>ul li a{
    display: block;
    font-size: 0.8rem;
    margin-bottom: 10px;
}
.right-cont-news01>ul li p{
    font-size: 0.7rem;
    color: #6C7075;
    line-height: 22px;
}
.right-cont-news01>ul li .other-info{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 15px;
}
.news-tag{
    display: block;
    padding: 4px 8px;
    background: #FFEFEF;
    font-size: 0.6rem;
    color: #F00E0E;
    border-radius: 4px;
}
.news-date{
    font-size: 0.7rem;
    color: #989898;
}

/* 公共样式-分页组件 */
.pager{
    width: 100%;
    margin: 30px 0 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.pager .data-count{
    font-size: 0.7rem;
    color: #919191;
}
.pager .pagenation{
    display: flex;
    align-items: center;
}
.pager .pagenation a{
    display: block;
    padding: 0 10px;
    font-size:0.7rem;
    border: 1px solid #E6E6E6;
    border-radius: 2px;
    margin: 0 4px;
    height: 28px;
    line-height: 28px;
}
.pager .pagenation a:nth-of-type(2){
    background: url(../images/prev_page_b.svg) no-repeat center;
    width: 28px;
}
.pager .pagenation a:nth-of-type(2):hover{
    background: #E22323 url(../images/prev_page_w.svg) no-repeat center;
}
.pager .pagenation a.prev-page-disabled,.pager .pagenation a.prev-page-disabled:hover{
    background: url(../images/prev_page_gray.svg) no-repeat center;
}
.pager .pagenation a.prev-page-disabled:hover{
    background: #fff url(../images/prev_page_gray.svg) no-repeat center;
    border-color: #E6E6E6;
}

.pager .pagenation a.btn-next{
    background: url(../images/next_page_b.svg) no-repeat center;
    width: 28px;
}
.pager .pagenation a.btn-next:hover{
    background: #E22323 url(../images/next_page_w.svg) no-repeat center;
}
.pager .pagenation a.next-page-disabled,.pager .pagenation a.next-page-disabled:hover{
    background: url(../images/next_page_gray.svg) no-repeat center;
}
.pager .pagenation a.next-page-disabled:hover{
    background: #fff url(../images/next_page_gray.svg) no-repeat center;
    border-color: #E6E6E6;
}

.pager .pagenation a.disabled,.pager .pagenation a.disabled:hover{
    background: #fff;
    color: #B6BBC2;
    border-color: #E6E6E6;
}
.pager .pagenation a.cur,.pager .pagenation a:hover{
    background: #E22323;
    color: #fff;
    border-color: #E22323;
}
.pager .pagenation span{
    font-size: 0.7rem;
    margin: 0 4px;
}
.pager .pagenation input[type=text]{
    width: 32px;
    border: 1px solid #E6E6E6;
    outline: none;
    height: 28px;
    box-sizing: border-box;
}
.pager .pagenation input[type=button]{
    font-size: 0.7rem;
    background: #fff;
    border-radius: 2px;
    border: 1px solid #E6E6E6;
    height: 28px;
    padding: 0 8px;
    box-sizing: border-box;
    cursor: pointer;
    margin-left: 10px;
}
.pager .pagenation input[type=button]:hover{
    background: #E22323;
    color: #fff;
    border-color: #E22323;
}
.pager-mobile{
    display: none;
    margin-top: 20px;
}
.pager-mobile a{
    display: block;
    height: 28px;
    padding: 0 10px;
    line-height: 28px;
    font-size: 0.7rem;
    background: #E22323;
    color: #fff;
    border-radius: 2px;
}
.pager-mobile span{
    font-size: 0.8rem;
    margin: 0 20px;
}

/* 公共样式-表格2 */
.right-cont-title02{
    width: 100%;
    border-bottom: 4px solid #EAE9E9;
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}
.right-cont-title02 h2{
    font-size: 0.9rem;
    border-bottom: 4px solid #F00E0E;
    padding-bottom: 15px;
    margin-bottom: -4px;
}
.right-cont-title02 a{
    padding:0 10px 0 30px;
    border: 1px solid #F00E0E;
    border-radius: 4px;
    height: 32px;
    line-height: 32px;
    color: #F00E0E;
    font-size: 0.8rem;
    background: url(../images/leave_mes_red.png) no-repeat 10px center;
    background-size: 15px;
}
.right-cont-title02 a:hover{
    color: #fff;
    background: #F00E0E url(../images/leave_mes_w.png) no-repeat 10px center;
    background-size: 15px;
}






@media(max-width:1024px){
    .second-page-content .left-nav{width: 30%;}
    .right-cont-news01{width: 70%;margin-left: 10px;}
    .pager{display: none;}
    .pager-mobile{display: flex;align-items: center;justify-content: center;}
    .left-nav>ul li{height: auto;line-height: 1.8;padding: 20px 10px;font-size: 0.7rem;}
    
}

@media(max-width:640px){
    .second-page-content{flex-direction: column;}
    .second-page-content .left-nav{width: 100%;margin-bottom: 10px;}
    .right-cont-news01{width: 100%;margin-left: 0;}
    .left-nav .nav-title{display: none;}
    .left-nav .nav-title h2{font-size: 0.9rem;}
    .left-nav .nav-title::before{height: 16px;margin-top: -8px;}
    .location{margin: 20px 0;}
    .left-nav>ul{
        display: flex;
        align-items: center;
        flex-wrap: wrap;
        padding: 10px;
    }
    .left-nav>ul li{
        width: auto;
        background: #fff;
        margin-bottom: 0;
        border-radius: 4px;
        border: 1px solid #B6BBC2;
        padding: 0 15px;
        min-height: 30px;
        line-height: 36px;
        margin: 5px;
    }
    .left-nav>ul li a{text-align: center;}
    .left-nav>ul li.on{background: #F00E0E;border: none;}
    .left-nav>ul li.on a{color: #fff;text-align: center;}
}

