@charset "UTF-8";
/* ------------------------------------------------------------通用概览---------------------------------------------------------------------- */

.gl-main {
    position: relative;
    padding: 0 44px;
    background-color: #fff;
    border-radius: 30px 30px 0 0;
    box-sizing: border-box;
    z-index: 2;
}

.gl-cont {
    display: flex;
    align-items: flex-start;
    margin-top: 16px;
}

/* 左侧侧边栏 */
.left-sidebar {
    width: 306px;
    flex-shrink: 0;
    margin-right: 56px;
    padding-left: 7px;
    background-color: #5497e1;
    border-radius: 0 30px 0 0;
    box-sizing: border-box;
    border-bottom-left-radius: 30px;
    border-bottom-right-radius: 30px;
    overflow: hidden;
}

.sidebar-title {
    height: 126px;
    background: url(../images/gl-bg01.png) no-repeat center bottom;
    font-size: 34px;
    line-height: 126px;
    color: #fff;
    text-align: center;
}

.sidebar-menu {
    background-color: #fff;
    padding-top: 10px;
    padding-bottom: 10px;
	min-height: 570px;
    border-right: 7px solid #5497e1;
    border-bottom: 9px solid #5497e1;
	border-bottom-left-radius: 30px;
    border-bottom-right-radius: 30px;
}

.sidebar-menu li {
    position: relative;
    margin-bottom: 10px;
    background-color: #fff;
}

.sidebar-menu li a {
    display: block;
    padding-left: 46px;
    font-size: 20px;
    line-height: 70px;
    color: #333;
}

.sidebar-menu li:hover,
.sidebar-menu li.active {
    background-color: #eef6ff;
}

.sidebar-menu li:hover::before,
.sidebar-menu li.active::before {
    content: '';
    position: absolute;
    left: -7px;
    top: 0;
    width: 7px;
    height: 100%;
    background-color: #eef6ff;
}

.sidebar-menu li:hover::after,
.sidebar-menu li.active::after {
    content: '';
    position: absolute;
    right: 30px;
    top: 0;
    width: 21px;
    height: 100%;
    background: url(../images/gl-arr01.png) no-repeat center center;
}

.sidebar-menu li:hover a,
.sidebar-menu li.active a {
    color: #1658a0;
    font-weight: 700;
}

/* 右侧主内容区 */
.right-content {
    flex: 1;
    padding: 30px 0;
}

.content-title {
    font-size: 24px;
    line-height: 90px;
    color: #000;
    border-bottom: 1px solid #d0deec;
}

/* 内容列表 */
.notice-list {
    margin-bottom: 30px;
}

.notice-item {
    display: flex;
    padding: 14px 0;
    margin-bottom: 10px;
}

.notice-date {
    width: 70px;
    text-align: center;
    font-size: 14px;
    line-height: 36px;
    color: #777;
}

.notice-date .day {
    font-size: 28px;
    color: #1658a0;
}

.notice-date .year {
    display: block;
    margin-top: 6px;
    background-color: #e4f1ff;
    border-radius: 18px 0 18px 18px;
}

.notice-item .line {
    width: 1px;
    height: 56px;
    margin: 12px 33px;
    background-color: #d0deec;
}

.notice-text {
    flex: 1;
    padding-bottom: 18px;
    border-bottom: 1px solid #d0deec;
    position: relative;
    text-decoration: none;
    color: inherit;
}

.notice-text a {
    display: block;
    color: #000;
    font-size: 18px;
    line-height: 36px;
}

.notice-source {
    margin-top: 6px;
    font-size: 16px;
    line-height: 24px;
    color: #666;
}

.notice-text:hover {
    color: #0771ba;
    border-color: #0771ba;
}

.notice-text:hover a,
.notice-text:hover .notice-source {
    color: #0771ba;
}

.notice-text::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 1px;
    background: #0771ba;
    transition: width 0.3s ease;
}

.notice-text:hover {
    color: #0771ba;
}

.notice-text:hover::after {
    width: 100%;
}


/* 分页 */
.page-box {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: 14px;
}

.page-box button,
.page-box input {
    width: 40px;
    height: 40px;
    border: 1px solid #d9d9d9;
    border-radius: 5px;
    background: #fff;
    box-sizing: border-box;
    cursor: pointer;
}

.page-box .btn {
    background-color: #f9f9f9;
}

.page-box .prev,
.page-box .next {
    width: 96px;
    background-color: #f2f2f2;
}

.page-box button.active {
    background: #1c6eb8;
    color: #fff;
    border-color: #1c6eb8;
}

.page-box input {
    width: 40px;
    text-align: center;
}


/* -----------------------------------------------------------通用细览-------------------------------------------------------- */

.xl-bg {
    position: relative;
    padding-bottom: 90px;
    margin-top: -200px;
    margin-bottom: -35px;
    background-image: linear-gradient(to bottom, #f3f9ff, #e8f3ff);
    z-index: 2;
}

/* 主体容器：正文 + 右侧工具栏 */
.xl-main {
    display: flex;
    min-height: 1000px;
    padding-bottom: 60px;
    background-color: #fff;
    border-radius: 0 92px 0 0;
    gap: 20px;
}

/* 左侧正文卡片 */
.article-card {
    width: 63%;
    margin: 0 2% 0 5%;
    font-size: 18px;
}

.article-title {
    padding: 72px 0 18px;
    font-size: 34px;
    color: #333;
    text-align: center;
    line-height: 64px;
}

.article-meta {
    font-size: 14px;
    line-height: 25px;
    color: #555;
    text-align: left;
    padding-bottom: 16px;
    margin-bottom: 30px;
    background: url(../images/xl-title-bg.png) no-repeat center bottom;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.article-content p {
    line-height: 3;
    text-indent: 2em;
    color: #333;
}

.zcxl {
    padding-right: 38px;
}

.zcxl .article-card {
    margin-left: 60px;
}

.zcxl .article-meta {
    text-align: left;
}

.zcxl .article-meta img {
    float: right;
    margin-top: 10px;
}

.table-info {
    display: flex;
    flex-wrap: wrap;
    margin-top: 60px;
    border-left: 1px solid #e1e1e1;
    border-top: 1px solid #e1e1e1;
    font-size: 16px;
    line-height: 50px;
}

.table-info li {
    display: flex;
}

.table-info li span {
    padding-left: 24px;
    border-right: 1px solid #e1e1e1;
    border-bottom: 1px solid #e1e1e1;
    ;
}

.table-info li span:nth-child(1) {
    width: 116px;
}

.table-info li span:nth-child(2) {
    flex: 1;
}

.table-info li:nth-child(2n+1) {
    width: 58%;
    box-sizing: border-box;
}

.table-info li:nth-child(2n) {
    width: 42%;
    box-sizing: border-box;
}

.table-info li:nth-child(3),
.table-info li:nth-child(4) {
    background-color: #f6f6f6;
}

.right-cards {
    width: 28%;
    margin-top: 60px;
    border-left: 1px solid #ccc;
    padding-left: 2%;
}

.zcxz {
    position: relative;
    border-radius: 0 40px 0 24px;
    overflow: hidden;
}

.zcxz .bg {
    display: block;
    width: 100%;
}

.zcxz a {
    position: absolute;
    left: 30px;
    bottom: 24px;
    width: 105px;
    height: 42px;
    border-radius: 21px;
    background-color: #1666a9;
    font-size: 16px;
    line-height: 42px;
    text-align: center;
    color: #fff;
    transition: all .3s;
}

.zcxz a:hover {
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

/* 右侧工具栏 */
.policy-detail-right {
    position: relative;
    width: 90px;
    padding-top: 126px;
    margin-left: 110px;
}

.policy-detail-right .box {
    width: 90px;
}

.policy-detail-right .box .block1 a {
    text-align: center;
    padding-top: 30px;
    display: block;
    font-size: 14px;
    color: #999999;
    margin-bottom: 25px;
    position: relative;
}

.policy-detail-right .box .block1 a:hover {
    color: #000;
}

.policy-detail-right .box .block1 .a1 {
    background: url(../images/xl-icon01.png) no-repeat center top;
}

.policy-detail-right .box .block1 .a2 {
    background: url(../images/xl-icon02.png) no-repeat center top;
}

.policy-detail-right .box .block1 .a3 {
    background: url(../images/xl-icon03.png) no-repeat center top;
}

.policy-detail-right .box .block1 .a4 {
    background: url(../images/xl-icon04.png) no-repeat center top;
}


.policy-detail-right .box .block2 span {
    width: 100%;
    display: block;
    text-align: center;
    font-size: 14px;
    line-height: 50px;
    color: #999999;
}

.policy-detail-right .box .block2 .bshare-custom {
    display: block;
}

.policy-detail-right .box .block2 .bshare-custom a {
    display: block;
    padding: 0;
    width: 44px;
    height: 45px;
    margin: 0 auto 20px;
}

.policy-detail-right .box .block2 .bshare-custom a.bshare-weixin {
    background: url(../images/xl-icon06.png) no-repeat center;
}

.policy-detail-right .box .block2 .bshare-custom a.bshare-sinaminiblog {
    background: url(../images/xl-icon07.png) no-repeat center;
}

.policy-detail-right .box .block2 .bshare-custom a.bshare-qzone {
    background: url(../images/xl-icon08.png) no-repeat center;
}

.policy-detail-right .box .block3 a {
    display: block;
    margin: 0 auto;
    width: 44px;
    height: 45px;
}

/* ==================== 响应式 (320px – 767px) ==================== */
@media screen and (min-width: 320px) and (max-width: 767px) {
    .fixTop {
        margin-top: -30px;
    }

    .article-meta {
        flex-direction: column;
        /* 垂直排列，自动折行 */
        align-items: center;
        gap: 5px;
    }

    .gl-main {
        padding: 0 10px;
    }

    .gl-cont {
        flex-wrap: wrap;
    }


    .left-sidebar {
        width: 100%;
        margin-right: 0px;
        padding-left: 0px;
    }

    .sidebar-title {
        height: 50px;
        width: 120px;
        background: none;
        font-size: 18px;
        line-height: 50px;
    }

    .sidebar-menu {
        display: flex;
        flex-wrap: wrap;
    }

    .sidebar-menu li {
        width: 45%;
        margin: 1% 2%;
    }

    .sidebar-menu li a {
        padding-left: 0px;
        font-size: 16px;
        line-height: 50px;
        color: #333;
        background: linear-gradient(-130deg, #bae3ff, #fff);
        text-align: center;
    }

    .sidebar-menu li:hover,
    .sidebar-menu li.active {
        background: linear-gradient(136deg, #bae3ff, #fff);
        color: #1658a0;
    }

    .sidebar-menu li:hover::after,
    .sidebar-menu li.active::after {
        display: none;
    }

    .right-content {
        padding: 10px 0;
        width: 100%;
    }

    .content-title {
        font-size: 20px;
        line-height: 50px;
    }

    /* 右侧内容文章列表 */

    .notice-item {
        display: flex !important;
        flex-direction: row !important;
        align-items: flex-start !important;
        justify-content: space-between !important;
        gap: 10px;
        padding: 10px 0;
    }

    /* 隐藏中间竖线 */
    .notice-item .line {
        display: none !important;
    }

    /* 文字区域强制左侧 */
    .notice-text {
        order: 1 !important;
        flex: 1 !important;
        min-width: 0;
        padding-bottom: 12px;
    }

    .notice-text a {
        font-size: 15px;
        line-height: 26px;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .notice-source {
        margin-top: 4px;
        font-size: 12px;
        line-height: 20px;
    }

    /* 日期区域强制右侧 */
    .notice-date {
        order: 2 !important;
        width: auto !important;
        flex-shrink: 0;
        text-align: right;
        line-height: 24px;
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 2px;
        font-size: 13px;
    }

    /* 清除PC端竖排大数字、年份背景样式 */
    .notice-date .day {
        font-size: 13px !important;
        color: #777 !important;
    }

    .notice-date .year {
        display: inline-block !important;
        margin-top: 0 !important;
        background: transparent !important;
        border-radius: 0 !important;
    }

    .notice-date .month {
        display: inline-block;
    }

    .page-box {
        flex-wrap: wrap;
    }

    .xl-bg {
        margin-top: -20px;
        padding-bottom: 9px;
    }

    .article-title {
        padding: 10px;
        font-size: 18px;
        line-height: 35px;
    }

    .xl-main {
        border-radius: 0 10px 0 0;
        gap: 10px;
        flex-wrap: wrap;
    }

    .policy-detail-right {
        position: relative;
        width: 100%;
        padding-top: 126px;
        margin-left: 110px;
    }

    /* 手机端适配 小于767px */

    /* 正文卡片整体 */
    .article-card {
        width: 100%;
        margin: 0;
        padding: 0 15px;
        font-size: 16px;
    }

    /* 文章标题 */
    .article-title {
        padding: 30px 0 12px;
        font-size: 22px;
        line-height: 1.5;
    }

    /* 文章元信息（发布时间、来源等） */
    .article-meta {
        font-size: 14px;
        line-height: 30px;
        padding-bottom: 10px;
        margin-bottom: 20px;
        background-size: contain;
    }

    .article-meta span {
        margin: 0 10px;
        display: block;
        line-height: 26px;
    }

    /* zcxl 左侧排版兼容 */
    .zcxl {
        padding-right: 0;
    }

    .zcxl .article-card {
        margin-left: 0;
    }

    .zcxl .article-meta {
        text-align: center;
    }

    .zcxl .article-meta span {
        margin: 0;
        display: block;
    }

    .zcxl .article-meta img {
        float: none;
        margin: 10px auto 0;
        display: block;
    }

    /* 正文段落 */
    .article-content p {
        line-height: 2;
        font-size: 16px;
    }

    /* 索引号信息表格 重排为单列 */
    .table-info {
        display: block;
        margin-top: 30px;
        border-left: 1px solid #e1e1e1;
        border-top: 1px solid #e1e1e1;
    }

    .table-info li {
        width: 100% !important;
        display: flex;
        flex-wrap: wrap;
        box-sizing: border-box;
    }

    .table-info li span:nth-child(1) {
        width: 90px;
        flex-shrink: 0;
        padding: 0 10px;
    }

    .table-info li span:nth-child(2) {
        flex: 1;
        padding: 0 10px;
        word-break: break-all;
    }

    .right-cards {
        width: 80%;
        border: 0px;
        text-align: center;
        margin: 0 auto;
        margin-top: 20px;
    }

    .policy-detail-right {
        display: none;
    }

    .sidebar-menu {
        min-height: auto;
    }

}