﻿/*  */

.list_box {
    display: flex;
    width: 1200px;
    min-height: 500px;
    margin: 0 auto;
    justify-items: center;
}

.list_box .left {
    float: left;
    width: 300px;
    height: 100%;
    background-color: #ecf5fc;
}

.list_box .left .title {
    height: 45px;
    line-height: 45px;
    cursor: pointer;
    font-size: 22px;
    font-weight: bold;
}

.list_box .left .title span {
    display: block;
    width: 120px;
    height: 45px;
    background-color: #015293;
    color: #fff;
    text-align: center;
}

.list_box .left .list {
    overflow: hidden;
}

.list_box .left .list li {
    box-sizing: border-box;
    cursor: pointer;
    width: 250px;
    height: 30px;
    border-radius: 5px;
    color: #090909;
    line-height: 30px;
    font-size: 18px;
    margin: 10px 0;
    padding-left: 60px;
    background-image: url("../img/list.png");
    background-position: 20px center;
    background-repeat: no-repeat;
}

.list_box .left .list li.active {
    color: #d30909;
    filter: drop-shadow(#d30909 50000px 0);
    transform: translateX(-50000px);
}

.list_box .left .list a,
.list_box .left .list a:hover,
.list_box .left .list a:link,
.list_box .left .list a:visited,
.list_box .left .list a:active,
.list_box .left .list a:focus {
    color: #333333;
    text-decoration: none;
}

.list_box .right {
    float: left;
    width: 900px;
    padding: 0px 0 0 50px;
    box-sizing: border-box;
}

.list_box .right .path {
    height: 30px;
    border-bottom: 1px solid #090909;
    display: flex;
    align-content: flex-end;
    align-items: flex-end;
    padding: 0 0 10px 30px;
    font-weight: bold;
    color: #666666;
    background-image: url("../img/red.jpg");
    background-repeat: no-repeat;
    background-position: left center;
}

.list_box .right .path a {
    color: #666666;
}

.list_box .right .box {
    width: 100%;
    min-height: 500px;
    padding: 10px 0;
}

.list_box .right .box .nlist {
    border: 0;
    margin: 0 0 20px 0;
}

.list_box .right .box .nlist li {
    width: 100%;
    color: #090909;
    height: 50px;
    border-bottom: 1px dashed #090909;
    margin-top: 20px;
    font-size: 16px;
}

.list_box .right .box .nlist li:last-child {
    border-bottom: 0;
}

.list_box .right .box .nlist a {
    width: 700px;
    float: left;
    display: block;
}

.list_box .right .box .nlist span {
    width: calc(100% - 700px);
    float: left;
    display: block;
}

.list_box .right .nlist a,
.list_box .right .nlist a:hover,
.list_box .right .nlist a:link,
.list_box .right .nlist a:visited,
.list_box .right .nlist a:active,
.list_box .right .nlist a:focus {
    color: #090909;
    text-decoration: none;
}