.banner_bg {
    width: 100%;
    height: 300px;
    background: url("banner.jpg") no-repeat;
    background-size: 100% 100%;
}

.fsq_container {
    width: 1200px;
    height: 800px;
    display: flex;
    justify-content: space-between;
    margin: 0 auto;
    margin-top: 50px;
    margin-bottom: 75px;
}

.container_left {
    height: 100%;
    width: 300px;
    background-color: #e6ecf5;
    border-radius: 5px;
}

.directory {
    position: relative;
    width: 203px;
    height: 52px;
    margin-left: 10px;
    margin-top: -7px;
}

.directory span {
    position: absolute;
    top: 17px;
    left: 21px;
    font-size: 24px;
    font-weight: bold;
    color: #fff;
}

.left_list {
    padding: 0 30px;
}

.left_list ul li {
    display: flex;
    align-items: center;
    width: 100%;
    height: 60px;
    line-height: 60px;
    white-space: wrap;
    border-bottom: 1px dashed #224070;
}

.sp {
    padding-top: 20px;
    display: block;
    height: 80px;
    line-height: 20px !important;
}

.left_list ul li a span {
    width: 144px;
    line-height: 60px;
    text-overflow: clip;
}

.left_list ul li a {
    font-size: 16px;
    color: #404040;
}

.trl {
    width: 13px;
    height: 14px;
    margin-left: 10px;
    background: url("trl.png");
    background-size: 100% 100%;
}

.active {
    color: #4388fd;
    font-weight: bold;
}

.container_right {
    height: 100%;
    width: 940px;
    background-color: #e6ecf5;
    border-radius: 5px;
}

.search_container {
    display: flex;
    justify-content: space-between;
    width: 100%;
    height: 88px;
    border-bottom: 1px solid #224070;
}

.search_title {
    position: relative;
    width: 136px;
    height: 56px;
    margin-top: -15px;
    margin-left: 20px;
}

.search_title span {
    display: block;
    position: absolute;
    top: 23px;
    left: 23px;
    font-size: 24px;
    font-weight: bold;
    color: #fff;
}

.search {
    margin-top: 16px;
    margin-right: 30px;
    width: 50%;
    height: 50px;
    border-radius: 5px;
    line-height: 50px;
    text-align: center;
    background-color: #b6cef3;
}

.right_list_box {
    padding: 0 30px;
}

.right_list_box ul li {
    width: 100%;
    height: 80px;
    line-height: 80px;
    border-bottom: 1px dashed #224070;
}

.right_list_box ul li a {
    position: relative;
    display: flex;
    justify-content: space-between;
}

.right_list_box ul li a:hover .list_title,
.right_list_box ul li a:hover .list_time {
    color: #4388fd;
}

.list_title::before {
    position: absolute;
    top: 36px;
    left: 2px;
    content: " ";
    width: 8px;
    height: 8px;
    border-radius: 2px;
    transform: rotate(45deg);
    background-color: #115db2;
}

.list_title {
    width: 80%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    margin-left: 22px;
    font-size: 16px;
    color: #224070;
    font-weight: bold;
}

.list_time {
    font-size: 16px;
    color: #999999;
}

/* 适老化 */
.newStyle .left_list ul li a {
    font-size: 26px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.newStyle .list_title {
    font-size: 26px;
}

.newStyle .list_time {
    font-size: 26px;
}

.newStyle .directory span {
    font-size: 28px;
}

.newStyle .search_title span {
    font-size: 28px;
}

/* 媒体查询 */
@media only screen and (max-width: 500px) {
    .banner_bg {
        height: 100px;
    }

    .fsq_container {
        width: 100%;
        flex-direction: column;
        align-items: center;
    }

    .container_left {
        width: 95%;
    }

    .container_right {
        margin-top: 30px;
        width: 95%;
    }

    .list_title {
        width: 100%;
    }

    .list_time {
        display: none;
    }

    .left_list ul li:last-child,
    .right_list_box ul li:last-child {
        border-bottom: none;
    }
}
