/* ///////////////////////////// */
/* 抬头图片 */
.title-image{
    width:100%;
    position: relative;
    height:250px;
    background-image:url('../image/title-bar.png');
    background-size:cover;
    background-repeat: no-repeat;
    background-position: center;
}
.title-image .top-navigator{
    display:none;
}


@media screen and (max-width:600px){
    .title-image{
        height:180px;
        background-position-x: -580px;
    }
    .title-image .top-navigator{
        display: block;
        position: absolute;
        bottom:0;
        background:rgba(0,0,0,0.5);
        color:white;
        border:none;
    }
    .title-image .top-navigator span::before{
        /* display:none; */
        /* margin-top:3px; */
        background-image:url('../image/location.png');
    }
    .title-image .top-navigator .location{
        font-size: 14px !important;
        float:left;
    }
}








/* 中间内容部分 */
.main-wrap{
    max-width:1200px;
    margin: 0 auto;
    margin-top:20px;
}
.main-wrap::after{
    content:'';
    clear:both;
    display: block;
}

/* 左侧菜单栏 */
.main-wrap .type-wrap{
    float:left;
    width:280px;
    /* margin-top: -130px; */
    position: relative;
    z-index: 800;
    padding-bottom: 20px;
    background:white;
}
.main-wrap .type-wrap .type-logo{
    height:110px;
    width:100%;
    color: #A52C27;
    font-size:30px;
    /* text-align: center; */
    padding-left: 26px;
    line-height:110px;
    /* background-image:url('../image/title-bg.png'); */
    position: relative;
}
.main-wrap .type-wrap .type-logo:before{
    content: '';
    display: block;
    position: absolute;
    left:0;
    top: 50%;
    transform: translate(0,-50%);
    width: 4px;
    height: 30%;
    background: #a52c27;
}

.main-wrap .type-wrap .type-content{
    width:100%;
    /* margin-top: 2px; */
    position: relative;
}
.main-wrap .type-wrap .type-content ul{
    padding: 0 30px;
}

.main-wrap .type-wrap .type-content .type-item{
    cursor:pointer;
    border-left:2px solid transparent;
    height:41px;
    box-sizing: border-box;
    line-height:41px;
    white-space: nowrap;
    text-overflow: ellipsis;
    position: relative;    
    transition:height 300ms linear;

}



.main-wrap .type-wrap .type-content .type-item a{
    width:100%;
    height:100%;
    padding-left: 40px;
    display: block;
    position: absolute;
    left:0;
}
.main-wrap .type-wrap .type-content .type-active{
    height : 46px;
}
.main-wrap .type-wrap .type-content .type-active a{
    background:#A52C27;
    color:white;
    line-height: 46px;
}
.main-wrap .type-wrap .type-content .type-item a::before{
    content:'';
    display:block;
    border: 6px solid black;
    border-color:transparent transparent transparent #A52C27;
    position: absolute;
    left:25px;
    top:50%;
    transform: translateY(-50%);
}
.main-wrap .type-wrap .type-content .type-item:hover {
    height: 46px;
}
.main-wrap .type-wrap .type-content .type-item:hover a{
    line-height: 46px;
    background:#A52C27;
    color:white;
}
.main-wrap .type-wrap .type-content .type-item:hover a::before{
    border-color:transparent transparent transparent white;
}
.main-wrap .type-wrap .type-content .type-active a::before{
    border-color:transparent transparent transparent white !important;
}

@media screen and (max-width:600px){
    .main-wrap{
        padding:0 10px;
        box-sizing: border-box;
        overflow: hidden;
    }
    .main-wrap .type-wrap{
        float:none;
        margin-top: 0;
    }
    .main-wrap .type-wrap{
        width:100%;
    }
    .main-wrap .type-wrap .type-logo{
        font-size:20px;
        height:40px;
        line-height:40px;
        text-align:left;
        background:none;
        padding-left: 0;
        color:#CC173A;
        border-bottom:2px solid #F5F5F5;
        position:relative;
    }
    .main-wrap .type-wrap .type-logo:before{
        content: '';
        display: none;
    }
    .main-wrap .type-wrap .type-logo::after{
        content:'';
        display: block;
        position: absolute;
        bottom:0;
        left: 0;
        height:2px;
        width:80px;
        border-bottom:2px solid #CC173A;
    }
    .main-wrap .type-wrap .type-content{
        margin:0;
        padding:15px 0 ;
        background : none;
    }
    .main-wrap .type-wrap .type-content ul{
        width:100%;
        display: flex;
        flex-wrap: wrap;
    }
    .main-wrap .type-wrap .type-content ul .type-item{
        width:33.33%;
        text-align: center;
        margin:6px 0;
        height:35px;
        line-height:35px;
        box-sizing:border-box; 
        padding:0 10px;
        position: relative;
    }
    .main-wrap .type-wrap .type-content ul .type-item:hover{
        border:none;
        color:black;
    }
    .main-wrap .type-wrap .type-content .type-item a{
        left: 0;
        width:90%;
        position: absolute;
        left: 50%;
        transform:translate(-50%,0);
        padding: 0;
        margin:0 auto;
        display:block;
        border-radius:5px;
        background:#EFEFEF;
    }
    .main-wrap .type-wrap .type-content .type-active{
        height: 35px !important;
    }
    .main-wrap .type-wrap .type-content .type-active a{
        border-radius:5px;
        left: 50% !important;
        background:#A52C27;
        padding: 0;
        line-height:35px !important;
    }
    .main-wrap .type-wrap .type-content .type-item a::before{
        content: '' !important;
        display: none;
    }
    .main-wrap .type-wrap .type-content .type-item:hover a{
        left:0;
        border-radius:5px;
    }
}

/* 右侧列表区 */
.main-wrap .lists-wrap{
    float:left;
    width:calc(100% - 300px);
    margin-left:20px;
    padding-left : 20px;
    background: white;
    margin-bottom: 15px;
    box-sizing: border-box;
}
.main-wrap .lists-wrap .top-navigator .title-name{
    display:inline-block;
    padding:3.5px;
    padding-left: 0;
    font-size:18px;
    border-bottom: 2px solid #A52C27;
    color:#CC173A;;
}
.main-wrap .lists-wrap .top-navigator{
    padding-left: 0 !important;
    min-width:320px;
}

/* navigator共用区 */
.top-navigator{
    width:100%;
    padding:5px 15px;
    color:#B5B5B4;
    height:38px;
    border-bottom: 2px solid #DEDEDE;
}
.top-navigator img{
    float:right;
}
.top-navigator span{
    
    float: right;
    position: relative;
    padding-left:25px;
    line-height:27px;
}
.top-navigator span::before{
    content: '';
    display: block;
    position: absolute;
    left:0;
    margin-top:3px;
    width:20px;
    height:20px;
    background-image:url('../image/location.png');
    background-repeat: no-repeat;
    background-size:auto 20px;
}


/* 右侧内容区 */
.main-wrap .lists-wrap .threelist{
    padding:10px 0 0 0;
    border-bottom:2px solid #A52C27;
    color:#A52C27;
    line-height:48px;
    padding-left:20px;
    font-weight:600;
    font-size:20px;
}
.main-wrap .lists-wrap .list-content .list-item{
    width:100%;
    height:32px;
    position: relative;
}

.main-wrap .lists-wrap .list-content .list-item .item-detail{
    color:#323232;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1; 
    -webkit-box-orient: vertical;
    line-height:32px;
    width:calc(100% - 110px);
    padding-left:12px;
    position: relative;
}
.main-wrap .lists-wrap .list-content .list-item::before{
    content:'';
    display:  -webkit-box;
    width:4px;
    height:4px;
    border-radius:50%;
    background:#B2B2B2;
    position: absolute;
    left:0px;
    top:50%;
    transform: translateY(-50%);
}
.main-wrap .lists-wrap .list-content .list-item .item-detail:hover{
    /* text-decoration:underline; */
    color:#A52C27;
    cursor:pointer;
}
.main-wrap .lists-wrap .list-content .list-item .item-date{
    font-size:14px;
    color:#B5B5B4;
    padding:4px 0 ;
    padding-left:12px;
    width:100px;
    display: inline-block;
    position: absolute;
    top:4px;
    right:0;
}
@media screen and (max-width:600px){
    .main-wrap {
        background: white;
    }
    .main-wrap .lists-wrap{
        width:100%;
        float:none;
        padding: 0;
        margin-left: 0 ;
        border-top:1px solid #CACACA;
    }
    .main-wrap .lists-wrap .top-navigator{
        display:none;
    }
    .main-wrap .lists-wrap .list-content .list-item{
        height: auto;
        max-height:50px;
        margin-bottom: 12px;
    }
    .main-wrap .lists-wrap .list-content .list-item .item-detail{
        width:calc(100% - 85px);
        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-line-clamp: 2; 
        -webkit-box-orient: vertical;
        line-height:25px;
        
    }
    /* .main-wrap .lists-wrap .list-content .list-item .item-date{
        padding:0;
        top:auto;
        left:12px;
        bottom:8px;
    } */
    .main-wrap .lists-wrap .list-content .list-item .item-date{
        top:0px;
    }
}



/* 底部翻页区 */
.main-wrap .lists-wrap .list-page{
    width:100%;
    position: relative;
    height:147px;
    padding-top:10px;
    display: flex;
    justify-content: center;
}
.main-wrap .lists-wrap .list-page ul{
    margin:0 auto;
    position: absolute;
    left:50%;
    min-width:465px;
    top:50%;
    transform: translate(-50%,-50%);
    display: flex;
    align-items: center;
    /* overflow: hidden; */
}
.main-wrap .lists-wrap .list-page ul::after{
    content:'';
    display: block;
    clear:both;
}
.main-wrap .lists-wrap .list-page ul li{
    cursor:pointer;
    font-size:14px;
    box-sizing:border-box;
    /* height:24px; */
    /* line-height:22px; */
    min-width:25px;
    text-align: center;
    /* min-width:50px; */
    margin: 5px;
    float:left;
    padding: 5px 8px;
    border:1px solid #E5E5E5;
    border-radius:5px;
}
.main-wrap .lists-wrap .list-page ul .pages-show{
    border:none;
}
.main-wrap .lists-wrap .list-page ul .pages-show input{
    width:25px;
    border:1px solid #E5E5E5;
    height:30px;
    display:inline-block;
    padding:0 4px;
}


.main-wrap .lists-wrap .list-page ul .active{
    background:#CC173A;
    color: white;
    border:none;
    line-height:24px;
}
.main-wrap .lists-wrap .list-page ul .more{
    border:none;
    line-height:15px;
}


.main-wrap .lists-wrap .list-page ul .mini-btn{
    display:none;
}

@media screen and (max-width:600px){
    .main-wrap .lists-wrap .list-page{
        height:60px;
        border-bottom:2px solid #DEDEDE;
    }
    .main-wrap .lists-wrap .list-page ul{
        width:100%;
        min-width:auto;
        display:flex;
        justify-content: space-between;
    }
    .main-wrap .lists-wrap ul li{
        display: none;
    }
    .main-wrap .lists-wrap .list-page ul .mini-btn{
        display:block;
        width:47%;
        height:0px;
        padding-bottom:9%;
        /* padding:10px; */
        color:white;
        /* text-align:center; */
        background:#FFAA01;
        border:none;
        border-radius:0px;
        position: relative;
        margin:0;
    }
    .main-wrap .lists-wrap .list-page ul .mini-btn span{
        font-size:18px;
        position: absolute;
        left:50%;
        top:50%;
        transform:translate(-50%,-50%);
    }
    .main-wrap .lists-wrap .list-page ul .mini-last{
        background:#C9C9C9;
    }


}


.PrevDisabled
{
height:20px !important;
}
.Next
{
height:20px !important;
}
.Prev
{
height:20px !important;
}
.NextDisabled
{
height:20px !important;
}

.list-page table a
{height:20px;}
.wrapper .main-wrap .lists-wrap .list-page>table tbody{
    display: flex !important;
    justify-content: center;
}
.wrapper .main-wrap .lists-wrap .list-page>table tbody tr{
    display:inline-block !important;
}
.wrapper .main-wrap .lists-wrap .list-page>table tbody tr td{
    display:inline-block !important;
    width: auto !important;
}
.wrapper .main-wrap .lists-wrap .list-page>table tbody tr td>div{
    display: inline-block !important;
}
.this-page
{height:20px !important;}