﻿.list_main{
    width: 96%;
    margin: 0 auto;
}
.nav_list{
    width: 100%;
    margin: 0 auto;
    overflow: hidden;
}
.nav_left{
    float: left;
    width: 20%;
}
.nav_title{
    width: 100%;
    font-size: 20px;
    font-weight: bold;
    color: #fff;
    text-align: center;
    background-color: #1a4d99;
    padding: 9px 0;
    margin-top: 18px;
}
.nav_main{
    width: 100%;
    margin-top: 20px;
}
.nav_main ul{
    min-height: 560px;
    background-color: #eff1f6;
}
.nav_main ul li{
    border-bottom: 2px solid #fff;
}
.nav_main ul li a{
    display: block;
    font-size: 18px;
    text-align: center;
    position: relative;
    padding: 5px 0;
}
.nav_main ul li a span{
    display: block;
    width: 76%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    margin: 0 auto;
}
.nav_main ul li a img{
    transition: all 0.4s linear;
    position: absolute;
    top: 36%;
    right: 7%;
    transform: rotate(180deg);
}
.nav_main ul li a.on{
    font-weight: bold;
    color: #0067b0;
    background-color: #d9e1ec;
}
.nav_main ul li a.on img{
    transform: rotate(270deg);
}
.nav_main ul li a:hover{
    font-weight: bold;
    color: #0067b0;
    background-color: #d9e1ec;
}
.nav_main ul li a:hover img{
    transform: rotate(270deg);
}
.list,
.jgzn_list{
    float: right;
    width: 78%;
}
.title{
    width: 100%;
    font-size: 20px;
    font-weight: bold;
    color: #fff;
    margin-top: 18px;
    overflow: hidden;
    background-color: #f3f3f3;
}
.title p{
    display: inline-block;
    padding: 8px 24px;
    background-color: #1a4d99;
}
.list_container{
    width: 100%;
}
.list_container ul{
    padding: 10px 0 20px;
}
.list_container ul li{
    padding: 5px 0;
}
.list_container ul li a{
    display: block;
    font-size: 16px;
    overflow: hidden;
}
.list_container ul li a p{
    float: left;
    width: 88%;
    text-indent: 20px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    position: relative;
    transition: all 0.4s linear;
}
.list_container ul li a p::before {
    display: block;
    width: 4px;
    height: 4px;
    content: "";
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    background-color: #000;
    position: absolute;
    top: 14px;
    left: 5px;
}
.list_container ul li a span{
    display: block;
    float: right;
    color: #8c8c8c;
}
.list_container ul li a:hover p{
    text-indent: 30px;
}

.jgzn_list ul{
    padding-left: 10px;
}
.jgzn_list ul li{
    width: 33.3%;
    float: left;
    margin-top: 23px;
    font-size: 16px;
}
.jgzn_list ul li img{
    margin: -3px 5px 0 0;
}

/* ios */
@media (max-width: 760px) {
    .nav_left,
    .list,
    .jgzn_list{
        float: none;
        width: 100%;
    }
    .nav_title,
    .title{
        font-size: 18px;
    }
    .nav_main ul{
        min-height: auto;
    }
    .nav_main ul li a{
        font-size: 16px;
    }
    .list_container ul li a{
        font-size: 14px;
    }
    .list_container ul li a p{
        width: 70%;
    }
}