@import "normalize.css";
@import "utils.css";
@import "../lib/bootstrap-5.1.3/bootstrap.min.css";

ul,li {
    list-style: none;
    padding: 0;
    margin: 0;
}

a {
    text-decoration: none;
}

em {
    font-style: normal;
}

img {
    border: 0 none;
}

p {
    margin: 0;
}

.layout-container {
    width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.container-fluid {
    padding-left: 0;
    padding-right: 0;
}

.d-flex {
    display: flex;
}

.d-flex-align-center {
    align-items: center;
}

.d-flex-space-between {
    justify-content: space-between;
}

.page-header {

}

.page-header-banner {
    background-image: url("../img/head_bg.png");
    background-position: center;
    background-size: 100% 100%;
    background-repeat: no-repeat;
    padding-bottom: 120px;
}

.top-nav {
    padding: 7px 0;
    text-align: right;
}

.top-nav a {
    position: relative;
    padding: 0 16px;
    font-size: 16px;
    color: #007EFF;
    line-height: 22px;
    cursor: pointer;
}

.top-nav a::before {
    position: absolute;
    left: -1px;
    top: 50%;
    content: '';
    width: 2px;
    height: 12px;
    border-left: 2px solid #333;
    margin-top: -6px;
}

.top-nav a:first-child::before {
    display: none;
}

.top-nav a:last-child {
    color: #333;
}

.page-header-main {
    margin-top: 89px;
}

.site-brand {
    display: inline-flex;
    width:550px;
    padding-left: 76px;
    font-size: 36px;
    font-family: PingFangSC-Semibold, PingFang SC;
    font-weight: 600;
    color: #F02429;
    align-items: center;
}

.site-search-container {
    width: 450px;
}

.site-search-type {
    margin-bottom: 10px;
}

.site-search-type span {
    position: relative;
    display: inline-block;
    padding: 6px 18px;
    font-size: 16px;
    color: #333333;
    line-height: 22px;
    border-radius: 4px;
    cursor: pointer;
}

.site-search-type span.active {
    color: #fff;
    background-color: #F02429;
}

.site-search-type span.active::after {
    position: absolute;
    bottom: -4px;
    left: 50%;
    content: '';
    margin-left: -4px;
    height: 8px;
    width: 8px;
    background-color: #F02429;
    transform: rotate(45deg);
}

.site-search__inner {
    display: flex;
    align-items: center;
}

.site-search__input {
    flex: 1;
}

.site-search__input input {
    padding: 0 15px;
    width: 100%;
    height: 40px;
    background: #FFFFFF;
    border: 1px solid #999999;
    border-right: 0 none;
    outline: none;
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
    box-sizing: border-box;
}

.site-search__confirm {
    display: inline-flex;
    padding-left: 34px;
    padding-right: 15px;
    height: 40px;
    align-items: center;
    font-size: 14px;
    color: #fff;
    line-height: 40px;
    background-color: #F02429;
    background-image: url("../img/icons/search.png");
    background-position: 10px center;
    background-size: 16px 16px;
    background-repeat: no-repeat;
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
    white-space: nowrap;
    cursor: pointer;
}


/* 文章搜索 */
.page-search {
    background: #e5f2ff;
    padding: 20px 26px 28px;
    border: 1px solid #eee;
    border-radius: 4px;
}

.page-search__title {
    margin-bottom: 10px;
    font-size: 16px;
    font-weight: 600;
    color: #333333;
    line-height: 28px;
}

.page-search__inner {
    position: relative;
}

.page-search__input input {
    padding-left: 12px;
    padding-right: 40px;
    width: 100%;
    height: 40px;
    background: #FFFFFF;
    border: 1px solid #eee;
    outline: 0 none;
    border-radius: 4px;
    box-sizing: border-box;
}

.page-search__icon {
    display: inline-block;
    position: absolute;
    right: 1px;
    top: 1px;
    bottom: 1px;
    width: 40px;
    background-image: url("../img/icons/search_gray.png");
    background-position: center;
    background-size: 16px 16px;
    background-repeat: no-repeat;
    z-index: 1;
    cursor: pointer;
    transition: all 0.3s;
}

.page-search__icon:hover {
    background-image: url("../img/icons/search_red.png");
}

/* 网站导航 */
.page-header-nav-container {
    padding: 14px 0;
    background-color: #FF0000;
    font-size: 0;
}

.page-header-nav {
    border-bottom: 1px solid #FF8083;
}

.page-header-nav:last-child {
    border-bottom: 0 none;
}

.page-header-nav a {
    position: relative;
    display: inline-block;
    padding: 16px 0;
    width: 9.68%;
    font-size: 16px;
    color: #ffffff;
    line-height: 28px;
    text-align: center;
}

.page-header-nav a::before {
    position: absolute;
    left: 0;
    top: 50%;
    margin-top: -12px;
    height: 24px;
    content: '';
    border-left: 1px solid #FF8083;
}
/*.page-header-nav a:hover {*/
/*    border-top: 6px solid #fb7d7d;*/
/*}*/

.page-header-nav a:first-child::before {
    display: none;
}

.page-header-nav a.active::after {
    position: absolute;
    left: 50%;
    top: 0;
    margin-left: -50px;
    width: 100px;
    height: 8px;
    content: '';
    background-color: #FF8083;
}

.page-body {
    margin: 25px 0;
}

/* 网站底部 */
.page-footer {
    padding: 18px 0;
    background-color: #F02429;
}
.page-footer a{
    color: #fff;
}

.page-footer .layout-container {
    justify-content: center;
}

.page-footer .gov-department-mark {
    margin-right: 20px;
    width: 72px;
    height: 86px;
    background-image: url("../img/shiyelogo.png");
    background-position: center;
    background-size: auto 100%;
    background-repeat: no-repeat;
}

.page-footer .split-symbol {
    display: inline-block;
    margin: 0 16px;
    height: 12px;
    border-left: 1px solid #fff;
}

.page-footer .police-emblem {
    display: inline-block;
    margin: 0 16px;
    width: 26px;
    height: 26px;
    background-image: url("../img/police_emblem.png");
    background-position: center;
    background-size: auto 100%;
    background-repeat: no-repeat;
}

.page-footer .site-info p {
    display: flex;
    margin: 20px 0;
    font-size: 18px;
    font-weight: 500;
    color: #FFFFFF;
    line-height: 25px;
    align-items: center;
    justify-content: center;
}
.sharebox .share-item3:hover .main_qrcode_float_wrap_after{
    display: block !important;
}

.sharebox {
    width: 56px;
    height: auto;
    background-color: #efefef;
    position: fixed;
    /*top: 300px;*/
    bottom: 50px;
    right: 0;
    z-index: 99999;
}
.sharebox .share-item1,
.sharebox .share-item2,
.sharebox .share-item3,
.sharebox .share-item4,
.sharebox .share-item5 {
    width: 100%;
}
.sharebox .share-item1 {
    height: 6px;
    background-color: #e22323;
}
.sharebox .share-item2,
.sharebox .share-item3,
.sharebox .share-item4,
.sharebox .share-item5{
    position: relative;
    background-color: #ffffff;
    height: 70px;
    cursor: pointer;
}
.sharebox .share-item2:hover {
    background-color: #efefef;
}
.sharebox .share-item4:hover {
    background-color: #efefef;
}
.sharebox .share-item5:hover {
    background-color: #efefef;
}
.sharebox .item2-bg {
    width: 100%;
    height: 40px;
    background: url("../img/share-top.png") no-repeat center center;
}
.sharebox .item3-bg {
    width: 100%;
    height: 40px;
    background: url("../img/share-er.png") no-repeat center center;
}
.sharebox .item5-bg {
    width: 100%;
    height: 40px;
    background: url("../img/share-feedback.png") no-repeat center center;
}
.sharebox .item6-bg {
    width: 100%;
    height: 40px;
    background: url("../img/share-xf.png") no-repeat center center;
}
.sharebox .item7-bg {
    width: 100%;
    height: 40px;
    background: url("../img/share-yy.png") no-repeat center center;
}
.sharebox .item12-bg {
    width: 100%;
    height: 40px;
    background: url("../img/share-jl.png") no-repeat center center;
}

.sharebox .hover-mounse {
    position: absolute;
    left: -10px;
    top: 0;
    width: 12px;
    height: 68px;
    z-index: -1;
}
.sharebox .main_share_list {
    position: absolute;
    left: -140px;
    top: -12px;
    width: 134px;
    height: 68px;
    padding: 8px 7px;
    background-color: #fff;
    border: 1px solid #ebebeb;
}
.sharebox .main_share_list .share_list_title {
    font-size: 14px;
    color: #333333;
    margin-bottom: 5px;
}
.sharebox .main_share_list .share_list_wrap {
    font-size: 0;
    width: 124px;
}
.sharebox .main_share_list .share_list_wrap li {
    display: inline-block;
    width: 26px;
    height: 26px;
    margin-left: 4px;
    cursor: pointer;
}
.main_qrcode_float_wrap {
    position: fixed;
    top: 260px;
    right: 30px;
    margin: auto;
    margin-right:30px;
    width: 120px;
    border: 1px solid #bebebe;
    box-sizing: border-box;
    font-size: 13px;
    background-color: #fff;
    z-index: 9999999;
}
.main_qrcode_float_wrap .connetct_title_wrap {
    position: relative;
    background-color: #0063ba;
    width: 100%;
    height: 25px;
    line-height: 25px;
    color: #fff;
    text-align: center;
}
.main_qrcode_float_wrap .connetct_title_wrap .connect_close_btn {
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    width: 25px;
    height: 25px;
    /*background: url(close_icon.png) 6px 6px no-repeat;*/
}
.main_qrcode_float_wrap .connetct_method_wrap {
    width: 100%;
    color: #7c7c7c;
    text-align: center;
}
.main_qrcode_float_wrap .connetct_method_wrap .qrcode_pic_wrap p {
    height: 37px;
    line-height: 37px;
}
.main_qrcode_float_wrap .connetct_method_wrap .qrcode_pic_wrap span {
    display: block;
    width: 100px;
    height: 100px;
    margin: -10px auto 0;
    background: url("../img/xyhbqrcode.jpg") 0px 0px no-repeat;
    background-size:contain
}
.main_qrcode_float_wrap .connetct_method_wrap .qrcode_pic_wrap .mobile_qrcode_pic {
    /*background: url(qrcode1.png) 0px 0px no-repeat;*/
    background-size: 100% 100%;
}
.main_qrcode_float_wrap .connetct_method_wrap .qrcode_pic_wrap .weixin_qrcode_pic {
    /*background: url(qrcode2.png) 0px 0px no-repeat;*/
    background-size: 100% 100%;
}


.sharebox .share_title {
    font-size: 12px;
    text-align: center;
    color: #333;
}


.page-module__title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 4px solid #eee;
}

.page-module__title__text {
    position: relative;
    display: inline-block;
    padding-top: 6px;
    padding-bottom: 6px;
    padding-left: 40px;
    padding-right: 10px;
    font-size: 16px;
    font-weight: bold;
    color: #333333;
    line-height: 1.5;
    background-image: url("../img/icons/menu_red.png");
    background-position: 10px center;
    background-size: 20px auto;
    background-repeat: no-repeat;
}

.page-module__title__text.icon-list {
    background-image: url("../img/icons/list_red.png");
}

.page-module__title__text.icon-filter {
    background-image: url("../img/icons/filter.png");
}

.page-module__title__text.icon-none {
    padding-left: 10px;
    background: none;
}

.page-module__title__text::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 100%;
    height: 4px;
    background-color: #F02429;
}

.page-module__title .check-more {
    font-size: 14px;
    color: #999;
    cursor: pointer;
    transition: all 0.3s;
}

.page-module__title .check-more:hover {
    color: #000;
}

.info-list {

}

.info-list-item {
    position: relative;
    display: block;
    padding: 20px 0;
    text-decoration: none;
    border-bottom: 1px solid #eee;
    cursor: pointer;
}

.info-list-item p {
    margin-right: 128px;
    font-size: 16px;
    color: #333333;
    line-height: 22px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.info-list-item p:hover {
    text-decoration: underline;
}

.info-list-item span {
    position: absolute;
    top: 50%;
    right: 0;
    font-size: 16px;
    color: #999999;
    line-height: 22px;
    transform: translateY(-50%);
}

.auto-height-picture-wrapper img {
    display: block;
    width: 100%;
    height: auto;
}

/* 双列图文信息列表 */
.double-col-info-list {
    overflow: hidden;
    font-size: 0;
}

.double-col-info-list-item {
    display: inline-block;
    padding: 20px 10px;
    width: 50%;
    border-bottom: 1px solid #eee;
    box-sizing: border-box;
}

.double-col-info-link {
    display: flex;
}

.double-col-info-picture {
    height: 108px;
    width: 108px;
}

.double-col-info-picture img {
    width: 100%;
    height: 100%;
}

.double-col-info-summary {
    flex: 1;
    margin-left: 12px;
    line-height: 22p
}

.double-col-info-title {
    margin-bottom: 10px;
    font-size: 16px;
    font-weight: 600;
    color: #333;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.double-col-info-brief-intro {
    display: -webkit-box;
    height: 44px;
    font-size: 16px;
    color: #666;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
}

.double-col-info-meta {
    margin-top: 10px;
    font-size: 14px;
    color: #999;
    text-align: right;
}

.double-col-info-source {
    margin-left: 20px;
}

.double-col-info-date {
    margin-left: 20px;
}

/* 功能卡片 */
.func-card {
    display: block;
    margin-bottom: 24px;
    font-size: 0;
    background-color: #fff;
    border: 1px solid rgba(0, 0, 0, 0.125);
    border-radius: 4px;
    cursor: pointer;
    overflow: hidden;
}

.func-card:hover .func-card-title {
    color: #F02429;
}

.func-card-picture {
    height: 160px;
}

.func-card-picture img {
    display: block;
    width: 100%;
    height: 100%;
}

.func-card-title {
    padding: 12px;
    font-size: 15px;
    color: #606060;
    line-height: 28px;
    text-align: center;
    transition: all 0.3s;
}

/* 分割线 */
.divider {
    position: relative;
    margin: 20px 0;
    font-size: 16px;
    color: #999;
    text-align: center;
}

.divider span {
    display: inline-block;
    padding: 0 20px;
    background-color: #fff;
}

.divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    border-bottom: 1px solid rgba(0,0,0,0.125);
    transform: translateY(-50%);
    z-index: -1;
}

/* 专栏 */
.specs-column-container {
    padding: 14px 20px 20px;
    border: 1px solid #999999;
}

.specs-column-list-item {
    margin-top: 15px;
}

.specs-column-link {
    display: block;
    padding: 4px 0;
    font-size: 16px;
    color: #333;
    text-align: center;
}

.specs-column-link:hover {
    text-decoration: underline;
    color: #333;
}

/* 大家关注 */
.hot-concern-container {
    padding: 14px 20px 20px;
    border: 1px solid #999999;
}

.hot-concern-list-item {
    margin-top: 15px;
}

.hot-concern-link {
   overflow: hidden;
}

.hot-concern-type {
    float: left;
    display: inline-block;
    padding: 4px 0;
    width: 44px;
    font-size: 14px;
    font-weight: bold;
    color: #F02429;
    line-height: 18px;
    border: 2px solid #F02429;
    border-radius: 2px;
    text-align: center;
    letter-spacing: 2px;
    box-sizing: content-box;
}

.hot-concern-title {
    margin-left: 58px;
    display: -webkit-box;
    height: 48px;
    font-size: 16px;
    color: #333;
    line-height: 24px;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
}

/* 通用信息列表 */
.common-info-container {
    border: 1px solid #999999;
}

.common-info-switch {
    margin: 20px 20px 0;
    font-size: 0;
}

.common-info-switch-item {
    display: inline-block;
    margin-right: 16px;
    margin-bottom: 16px;
    padding: 0 16px;
    line-height: 32px;
    font-size: 16px;
    color: #F02429;
    border-radius: 4px;
    border: 1px solid #F02429;
    cursor: pointer;
    transition: all 0.3s;
}

.common-info-switch-item.active {
    color: #fff;
    background-color: #F02429;
}

.common-info-list-item {
    padding: 20px;
    border-bottom: 1px solid #eee;
}

.common-info-title {
    margin-bottom: 10px;
    font-size: 18px;
    font-weight: 600;
    color: #333;
    line-height: 28px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.common-info-title:hover {
    text-decoration: underline;
}

.common-info-brief-intro {
    margin-bottom: 20px;
    display: -webkit-box;
    max-height: 66px;
    font-size: 14px;
    font-weight: 400;
    color: #777;
    line-height: 22px;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
}

.common-info-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0;
}

.common-info-meta .common-info-column {
    display: inline-block;
    margin-right: 8px;
    padding: 0 10px;
    font-size: 16px;
    color: #F02429;
    line-height: 22px;
    border: 1px solid #F02429;
}

.common-info-meta .common-info-type {
    display: inline-block;
    padding: 0 10px;
    font-size: 16px;
    color: #333333;
    line-height: 24px;
    background-color: #EEEEEE;;
}

.common-info-meta .common-info-source {
    display: inline-block;
    padding-left: 20px;
    font-size: 14px;
    color: #999;
    line-height: 20px;
    background-repeat: no-repeat;
    background-size: 16px 16px;
    background-position: left center;
    background-image: url("../img/icons/global.png");
}

.common-info-meta .common-info-date {
    position: relative;
    display: inline-block;
    margin-left: 8px;
    padding-left: 8px;
    font-size: 14px;
    color: #999;
    line-height: 20px;
}

.common-info-meta .common-info-date::before {
    position: absolute;
    left: 0;
    top: 50%;
    content: '';
    width: 2px;
    height: 12px;
    border-left: 1px solid #ccc;
    margin-top: -6px;
}


/* 修改部分layui 分页样式 start  */
.pagination-wrapper {
    text-align: center;
}

.layui-laypage .layui-laypage-limits,
.layui-laypage .layui-laypage-skip,
.layui-laypage .layui-laypage-count {
    margin-left: 0;
}

.layui-laypage .layui-laypage-curr {
    padding: 0 12px;
}

.layui-laypage .layui-laypage-spr {
    padding: 0;
}

.layui-laypage a {
    padding: 0 12px;
}

.layui-laypage a:hover {
    color: #007EFF;
}

.layui-laypage .layui-laypage-spr,
.layui-laypage a {
    border: 0 none;
}

.layui-laypage .layui-laypage-curr .layui-laypage-em {
    background-color: #007EFF;
}

.layui-laypage input:focus, .layui-laypage select:focus {
    border-color: #007EFF !important;
}
/* 修改部分layui 分页样式 end  */


/* 相关文章列表 */
.related-article {
    padding: 14px 20px 20px;
    border: 1px solid #eee;
}

.related-article-list {
    margin-top: 15px;
}

.related-article-list-item {
    margin-top: 6px;
}

.related-article-link {
    position: relative;
    padding: 5px 0;
    display: block;
    text-decoration: none;
    cursor: pointer;
}

.related-article-link p {
    margin-right: 208px;
    font-size: 16px;
    color: #333333;
    line-height: 22px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.related-article-link:hover p {
    text-decoration: underline;
}

.related-article-link span {
    position: absolute;
    top: 50%;
    right: 0;
    font-size: 16px;
    color: #999999;
    line-height: 22px;
    transform: translateY(-50%);
}

.info-table {
    width: 100%;
    border-collapse: collapse;
}

.info-table tr:hover {
    background-color: #e5f2ff;
}

.info-table td {
    padding: 8px 16px;
    border: 1px solid #EEEEEE;
    color: #333;
}

.info-table td.is-title {
    color: #666;
    min-width: 250px;
    text-align: right;
}
.main_qrcode_float_wrap_after {
    position: absolute;
    left: -140px;
    top: -25px;
    display: none;
}
