﻿@charset "utf-8";
/*---------------------------------------------------------
list styles
---------------------------------------------------------*/

body {
    background-color: #f4f5f9;
}

#container {
    width: 1200px;
    margin: 0 auto;
    background: #fff;
}

/* 列表左侧 */
.list {
    padding: 20px;
}

.list_left {
    width: 22.333%;
    margin-bottom: 20px;
}

.list_left .left_content {
    font-weight: bold;
}

.list_left .left_content .list_title {
    line-height: 36px;
    background: #18509f;
    font-size: 18px;
    color: #fff;
    padding: 12px 45px;
}

.list_left .left_content .title_content {
    background: #f4f5f9;
}

.list_left .left_content .title_content li {
    line-height: 35px;
    border-bottom: 1px dashed #e4e4e4;
    padding: 7px 45px;
}

.list_left .left_content .title_content li:last-of-type {
    border: none;
}

.list_left .left_content .title_content li a {
    width: 100%;
    height: 100%;
    display: block;
    color: #066bbc;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* 列表右侧 */
.list_right {
    width: 76%;
}

.list_right .now_title {
    display: flex;
    align-items: flex-end;
}


.list_right .now_title::after {
    content: "";
    flex: 1 1 0;
    height: 1px;
    background: #ddd;
    margin-bottom: 1px;
}

.list_right .now_title span {
    color: #18509f;
    font-size: 18px;
    font-weight: bold;
    padding-bottom: 6px;
    border-bottom: 3px solid #184a8a;
}

.list_right .list_content ul {
    padding: 15px 0;
    margin: 10px 0;
    border-bottom: 1px dotted #0088cc;
}

.list_right .list_content li {
    line-height: 38px;
    font-size: 14px;
}

.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 span:first-of-type::before {
    content: "";
    width: 10px;
    height: 10px;
    border: 2px solid #dddddd;
    border-radius: 50%;
    display: inline-block;
    vertical-align: middle;
    margin-right: 10px;
}

.list_right .list_content li:hover span:first-of-type {
    color: #18509f;
}

.list_right .list_content li:hover span:first-of-type::before {
    border-color: #18509f;
}

.list_right .list_content li .time {
    font-size: 12px;
    padding-left: 20px;
}

/* 通用-列表分页 */
.list_page .page_left span {
    color: #0000ff;
}

.list_page .page_right a,
.list_page .page_right span,
.list_page .page_right input,
.list_page .page_right button {
    margin: 0 3px;
    display: inline-block;
}

.list_page .page_right a:hover {
    color: #015293;
}

.list_page .page_right input,
.list_page .page_right button {
    outline: none;
}

.list_page .page_right input {
    width: 35px;
    height: 23px;
    line-height: 23px;
    text-align: center;
    font-size: 16px;
    border: 2px inset #767676;
    color: #333;
    margin: 5px;
}

.list_page .page_right button {
    background: none;
    border: none;
    border-radius: 3px;
}

/* 图片新闻-列表页 */
.list_right .img_list_content {
    border-bottom: 1px dotted #0088cc;
    margin-bottom: 10px;
    padding-bottom: 15px;
}

.list_right .img_list_content li {
    width: 31%;
    margin-top: 20px;
    margin-right: 20px;
}

.list_right .img_list_content li img {
    width: 100%;
    height: 150px;
}

.list_right .img_list_content li h3,
.list_right .img_list_content li p {
    line-height: 28px;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    padding: 0 12px;
}

.list_right .img_list_content li h3 {
    font-size: 16px;
}

.list_right .img_list_content li p {
    font-size: 14px;
}

.list_right .img_list_content li:hover h3 {
    color: #0f5a9b;
}

/* 专题专栏-列表页 */
.ztzl_list .list_left .left_content .title_content li a {
    color: #333;
    font-weight: normal;
}

.ztzl_list .list_left .left_content .title_content li a:hover {
    font-weight: bold;
}

/* 手机端 */
@media (max-width: 480px) {
    #container {
        width: 100%;
        padding: 80px 15px 20px;
    }

    /* 主体内容 */
    #container .list {
        flex-direction: column;
        margin: 0;
    }

    .list_left,
    .list_right {
        width: 100%;
        padding: 0;
    }

    .list_left .left_content .list_title {
        text-align: center;
        padding: 12px;
    }

    /* 列表左侧 */
    .list_left .left_content .title_content li {
        line-height: 30px;
        text-align: center;
        padding: 5px 10px;
    }

    /* 通用-列表分页 */
    #pages {
        flex-direction: column;
        justify-content: normal;
        align-items: normal;
        font-size: 14px;
    }

    .page_right {
        justify-content: flex-end;
        flex-wrap: wrap;
    }

    /* 图片新闻-列表页 */
    .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: 100%;
    }

    .list_right .img_list_content li img {
        height: auto;
    }

    .list_right .img_list_content li p {
        font-size: 14px;
    }

}