.main > .container {
    height: 714px;
    background: url(../images/icon/bookbg.png) no-repeat;
    padding: 20px 20px 30px 310px;
    overflow: auto;
}
/* 导航 */
.crumbs {
    padding-bottom: 15px;
    border-bottom: 1px solid #e5e5e5;
}
.crumbs li {
    float: left;
    margin-right: 8px;
}
.crumbs li:first-child {
    padding-left: 30px;
    background: url(../images/icon/dqwz.png) no-repeat 5px 4px;
}
.crumbs li:first-child a {
    color: #000;
}
.details {
    padding-top: 20px;
}
.details > .fr {
    width: 25%;
}
.details > .fl {
    width: 73%;
}
.top {
    display: flex;
    justify-content: space-between;
    font-size: 16px;
}
.top li {
    width: 33%;
    height: 62px;
    line-height: 62px;
    text-align: center;
}
.top .item01 {
    background: #5586b7;
}
.top .item02 {
    background: #9db972;
}
.top .item03 {
    background: #7ab4c6;
}
.top .item04 {
    background: #e4ba54;
}
.top li a {
    color: #fff;
}
.list-li {
    margin-top: 15px;
}
.list-li li {
    line-height: 34px; 
    padding-left: 20px;
    background: url(../images/icon/dian.png) no-repeat 2px 16px;
}
.list-li span {
    float: right;
    margin-top: -34px;
}
.list-li p {
    font-size: 16px;
    width: 80%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.list-li li:nth-child(5n) {
    border-bottom: 1px #c9c9c9 dashed;
    margin-bottom: 10px;
    padding-bottom: 15px;
}
.jr_title{
    width: 100%;
    height: 40px;
    line-height: 40px;
    font-size: 20px;
    font-weight: bold;
    color: #fff;
    text-align: center;
    background-color: #c71017;
}
.jr_main{
    width: 100%;
    margin-top: 20px;
}
.jr_main ul{
    min-height: 548px;
    background-color: #eff1f6;
}
.jr_main ul li{
    border-bottom: 3px solid #fff;
}
.jr_main ul li a{
    display: block;
    font-size: 18px;
    text-align: center;
    position: relative;
    padding: 6px 0;
    background-color: #eff1f6;
}
.jr_main ul li a img{
    transition: all 0.4s linear;
    position: absolute;
    top: 36%;
    left: 7%;
}
.jr_main ul li a.on{
    font-weight: bold;
    color: #c71017;
    background: #d9e1ec;
}
.jr_main ul li a.on img{
    transform: rotate(-90deg);
}
.jr_main ul li a:hover{
    font-weight: bold;
    color: #c71017;
    background-color: #d9e1ec;
}
.jr_main ul li a:hover img{
    transform: rotate(-90deg);
}
/* 动画 */
.top li:hover img {
    animation: overturn 2s;
    -moz-animation: overturn 2s;	/* Firefox */
    -webkit-animation: overturn 2s;	/* Safari 和 Chrome */
    -o-animation: overturn 2s;	/* Opera */
}
/* 移动端 */
@media screen and (max-width: 768px) {
    .main > .container {
        background: #fff;
        padding: 10px 10px 0;
        height: auto;
    }
    .details > .fr,
    .details > .fl {
        width: 100%;
    }
    .jr_main ul {
        min-height: auto;
        margin-bottom: 20px;
    }
    .top {
        flex-wrap: wrap;
    }
    .top li {
        width: 48%;
        margin-bottom: 15px;
    }
    .list-li p {
        width: 60%;
    }
}