﻿@charset "utf-8";
/*---------------------------------------------------------
list styles
---------------------------------------------------------*/

#container {
    width: 1200px;
    margin: 0 auto;
    background: #fff;
}

/* 列表左侧 */
.list_left {
    width: 22%;
}

.list_left .left_content {
    box-shadow: 0px 1px 16px 0px rgba(189, 206, 225, 0.3400);
}

.list_left .left_content .list_title {
    line-height: 36px;
    font-size: 20px;
    text-align: center;
    color: #fff;
    background: #0d488d;
    border-radius: 5px 5px 0 0;
    padding: 7px 0;
}

.list_left .left_content .title_content {
    padding: 1px 15px;
}

.list_left .left_content .title_content li {
    line-height: 36px;
    text-align: center;
    background: #f4f4f4;
    border-radius: 10px;
    margin: 20px 0;
    overflow: hidden;
}

.list_left .left_content .title_content li a {
    width: 100%;
    height: 100%;
    display: block;
    padding: 0 10px;
}

.list_left .left_content .title_content li:hover a,
.list_left .left_content .title_content .current a {
    color: #fff;
    background: #0d488d;
}

/* 列表右侧 */
.list_right {
    width: 75%;
}

.list_right .now_title {
    border-bottom: 2px solid #0d488d;
    display: flex;
    align-items: center;
}

.list_right .now_title span {
    line-height: 48px;
    font-size: 24px;
    font-weight: bold;
    letter-spacing: 1px;
    padding-right: 30px;
}

.list_right .now_title span::before {
    content: "";
    width: 4px;
    height: 18px;
    background: #0d488d;
    display: inline-block;
    margin: 0 10px;
}

.list_right .list_content {
    padding: 10px;
}

.list_right .list_content li {
    line-height: 45px;
}

.list_right .list_content li a {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.list_right .list_content li span:first-of-type {
    flex: 1 1 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.list_right .list_content li:hover span:first-of-type {
    color: #0d488d;
}

.list_right .list_content li span:first-of-type::before {
    content: "";
    width: 4px;
    height: 4px;
    background: #bebebe;
    display: inline-block;
    vertical-align: middle;
    margin-right: 13px;
}

.list_right .list_content li .time {
    padding-left: 20px;
    color: #999;
}

/* 通用-列表分页 */
.list_page {
    padding: 10px;
    font-size: 14px;
    border-top: 1px dashed #dcdcdc;
}

.list_page .page_left span {
    color: #0000ff;
}

.list_page .page_right a,
.list_page .page_right span {
    background: #fff;
    border: 1px solid #ddd;
    padding: 2px 15px;
    margin: 0 2px;
    display: inline-block;
}

.list_page .page_right span {
    color: #ccc;
}

.list_page .page_right a:first-of-type {
    border-radius: 3px 0px 0px 3px;
}

.list_page .page_right a:last-of-type {
    border-radius: 0px 3px 3px 0px;
    border-right: 1px solid #ddd;
}

.list_page .page_right a:hover {
    color: #015293;
}

.list_page .page_right .curr,
.list_page .page_right a:hover {
    background: #f5f5f5;
    color: #737373;
}

.list_page .page_right input,
.list_page .page_right button {
    outline: none;
}

.list_page .page_right input {
    width: 43px;
    height: 24px;
    line-height: 24px;
    text-align: center;
    font-size: 16px;
    color: #333;
    border: 1px solid #a7b5bc;
    margin: 5px;
    outline: none;
}

.list_page .page_right button {
    font-size: 12px;
    letter-spacing: 1px;
    color: #696969;
    background: -webkit-linear-gradient(top, #fbfbfb, #e1e1e1);
    border: 1px solid #ddd;
    border-radius: 3px;
    padding: 0 10px;
    margin: 0 5px;
}

/* 图片新闻-列表页 */
.list_right .img_list_content {
    padding: 15px 0;
}

.list_right .img_list_content li {
    width: 25%;
    padding: 5px 10px;
    text-align: center;
}

.list_right .img_list_content li img {
    width: 100%;
    height: 130px;
}

.list_right .img_list_content li:hover p {
    color: #0d488d;
}

.list_right .img_list_content li p {
    line-height: 30px;
    padding: 0 5px;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}

/* 专题专栏-栏目首页 */
.ztzl_list {
    padding: 15px 0;
}

.ztzl_list .row_content {
    box-shadow: 0px 1px 16px 0px rgb(189 206 225 / 34%);
    border-radius: 2px;
    margin-bottom: 30px;
}

.ztzl_list .row_content .list_title {
    line-height: 50px;
    border-bottom: 2px solid #0d488d;
    font-size: 20px;
    font-weight: bold;
    padding: 0 20px;
}

.ztzl_list .row_content .list_content {
    padding: 15px;
}

.ztzl_list .row_content .list_content li {
    width: 33.33%;
    line-height: 50px;
    padding-left: 15px;
}

.ztzl_list .row_content .list_content li a {
    color: #676767;
    display: block;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}

/* 手机端 */
@media (max-width: 480px) {
    #container {
        width: 100%;
        padding: 0 15px;
    }

    /* 主体内容 */
    #container .list {
        flex-direction: column;
    }

    .list_left,
    .list_right {
        width: 100%;
        padding: 0;
    }

    .list_left .left_content .list_title,
    .list_right .now_title {
        display: none;
    }

    /* 列表左侧 */
    .list_left {
        margin-bottom: 15px;
    }

    .list_left .left_content .title_content {
        padding: 10px 15px;
    }

    .list_left .left_content .title_content ul {
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
    }

    .list_left .left_content .title_content li {
        width: 48%;
        margin: 8px 0;
    }

    .list_left .left_content .title_content li a {
        width: 100%;
        display: block;
        font-size: 16px;
        text-overflow: ellipsis;
        white-space: nowrap;
        overflow: hidden;
    }

    /* 通用-列表分页 */
    #pages {
        flex-direction: column;
        text-align: center;
        padding: 15px 0 0;
    }

    .page_right {
        justify-content: center;
        flex-wrap: wrap;
        padding: 10px 0;
    }

    .list_page .page_right a,
    .list_page .page_right span {
        margin: 5px;
    }

    /* 图片新闻-列表页 */
    .list_right .img_list_content {
        padding: 5px 0;
    }

    .list_right .img_list_content ul {
        justify-content: space-between;
    }

    .list_right .img_list_content li {
        width: 48%;
        padding: 5px 0;
    }

    .list_right .img_list_content li img {
        height: 100px;
    }

    .list_right .img_list_content li p {
        font-size: 14px;
    }

    /* 专题专栏-栏目首页 */
    .ztzl_list .row_content .list_content li {
        width: 50%;
    }
}