@charset "utf-8";

* {
    margin: 0px;
    padding: 0px;
    font-family: "微软雅黑", "Microsoft Yahei", "思源黑体", "Source Han Sans", Arial;
    outline: none;
    -webkit-tap-highlight-color: transparent;
}

/* ============================= 网页宽度 开始 ============================= */
.width1660 {
    max-width: 100%;
    margin: 0px auto;
}

.pubWidth {
    width: 92%;
    max-width: 15.00rem;
    margin: 0px auto;
}

@media (max-width: 800px) {
    .width1660 {
        max-width: 100%;
        min-width: 100%;
    }

    .pubWidth {
        width: 100%;
        padding-left: 4%;
        padding-right: 4%;
    }
}

/* ============================= 网页宽度 结束 ============================= */

/* 富文本 */
.richText {
    overflow: hidden;
}

.richText a {
    display: unset;
    color: #005BAC;
    text-decoration: underline;
}

.richText,
.richText p,
.richText font,
.richText span {
    font-size: 0.2rem !important;
    /* font-family: '宋体', 宋体 !important; */
}

.richText p {
    line-height: 1.75em !important;
    padding: 0.1rem 0rem !important;
}

.richText table p {
    padding: 0rem !important;
}

.richText img {
    max-width: 100%;
}

.richText table {
    border-collapse: collapse;
    border: 0.01rem solid #e5e9f1d2;
    margin: 0.1rem 0rem;
    background: #fff;
}

.richText td,
.richText th {
    padding: 0.08rem 0.16rem;
    border: 0.01rem solid #e5e9f1d2;
}

.richText table tr:hover {
    background: #F1F6FB;
}

.richText table tbody tr:first-child {
    background: #F8F9FD !important;
}

@media (max-width: 800px) {

    .richText,
    .richText p,
    .richText font,
    .richText span {
        font-size: 0.3rem !important;
    }

    .richText img {
        width: 100%;
        height: auto !important;
    }
}

/* ========== 限制文本行数 开始 ========== */
/* 文字一行，多余省略号 */
.clamp1 {
    white-space: nowrap;
    text-overflow: ellipsis;
    -o-text-overflow: ellipsis;
    overflow: hidden;
}

/* 文字多行，多余省略号 */
.clamp2,
.clamp3,
.clamp4 {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
}

.clamp2 {
    line-clamp: 2;
    -webkit-line-clamp: 2;
}

.clamp3 {
    line-clamp: 3;
    -webkit-line-clamp: 3;
}

.clamp4 {
    line-clamp: 4;
    -webkit-line-clamp: 4;
}

/* ========== 限制文本行数 结束 ========== */


@media (max-width: 800px) {
    body {
        padding-top: 1rem;
    }
}


a {
    color: inherit;
}


/* 首行缩进2字符 */
.indent2 {
    text-indent: 2em;
    white-space: pre-line;
    line-height: 1.6;
}


/* 公共背景色 */
.pubBg {
    background: #f7f7f7a3;
}


/* ============================= 头部 开始 ============================= */
/* =========== pc端头部 开始 =========== */
.pcHeader {
    display: block;
    position: relative;
}

.pcHeader .headerBg {
    display: block;
    width: 100%;
    height: 2.6rem;
    object-fit: cover;
}

.pcHeader .logoBox {
    position: absolute;
    top: 0.25rem;
    left: 0rem;
    z-index: 2;
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0rem 0.4rem;
}

.pcHeader .logo1 {
    display: block;
    height: 0.7rem;
    width: auto;
}

/* 搜索 */
.headerSearch {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    cursor: pointer;
}

.headerSearch input {
    display: block;
    width: 2.6rem;
    height: 0.4rem;
    line-height: 0.4rem;
    padding: 0rem 0.16rem;
    background: rgba(255, 255, 255, 0.25);
    color: #fff;
}

.headerSearch a {
    display: block;
    width: 0.45rem;
    height: 0.4rem;
    background: url(../images/headerSearch.jpg)no-repeat center center;
    background-size: 100% 100%;
}

/* 头部菜单 */
.headerUlBox {
    background: #F3F3F3;
}

.headerUl {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 15rem;
    margin: 0rem auto;
}

.headerList {
    text-align: center;
    color: #666666;
    width: 14.28%;
    position: relative;
}

.headerList>a {
    line-height: 0.6rem;
}

.headerList.active>a {
    font-weight: bold;
    color: #005BAC;
}

.headerList:hover>a {
    background: #fff;
    color: #005BAC;
    font-weight: bold;
}

/* 下拉菜单 */
.dropDown {
    position: absolute;
    top: 0.6rem;
    left: 0rem;
    z-index: 9990;
    width: 100%;
    height: auto;
    text-align: center;
    display: none;
}

.headerList:hover .dropDown {
    display: block;
}

.dropDown ol {
    background: #fff;
    box-shadow: 0rem 0.04rem 0.2rem 0.01rem rgba(25, 60, 98, 0.08);
}

.dropDown li {
    border-top: 0.01rem solid #F1F1F1;
}

.dropDown a {
    padding: 0.16rem 0.18rem;
    color: #666;
}

.dropDown a:hover {
    font-weight: bold;
    color: #005BAC;
}

/* 头部菜单定位改变 */
.pcHeader2 {
    padding-bottom: 0.72rem;
}

.pcHeader2 .headerUlBox {
    position: fixed;
    top: 0rem;
    left: 0rem;
    width: 100%;
    z-index: 9990;
}

/* =========== pc端头部 结束 =========== */


/* =========== 移动端头部 开始 =========== */
@media (min-width: 801px) {
    .mobleHeaderMenu {
        display: none !important;
    }

    .mobleHeader {
        display: none !important;
    }
}

@media (max-width: 800px) {
    .pcHeader {
        display: none !important;
    }
}

.mobleHeader {
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    padding-left: 4%;
    padding-right: 4%;
    background: #fff;
    box-shadow: 0rem 0.08rem 0.40rem rgba(0, 0, 0, 0.04);
    z-index: 9991;
}

.mobleHeader>div {
    width: 100%;
    height: 1rem;
    line-height: 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.mobleHeader a {
    display: flex;
    align-items: center;
    font-weight: bold;
    color: #005BAC;
}

.mobleHeader img {
    height: 0.6rem;
    width: auto;
}

/* 按钮 */
.mobleMenu_button {
    width: 1rem;
    line-height: 1rem;
    text-align: right;
}

.mobleMenu_button span {
    display: inline-block;
    width: 0.28rem;
    height: 0.04rem;
    background: #005BAC;
    margin-bottom: 0.08rem;
    position: relative;
}

.mobleMenu_button span::after,
.mobleMenu_button span::before {
    content: "";
    display: inline-block;
    width: 0.4rem;
    height: 0.04rem;
    background: #005BAC;
    position: absolute;
    right: 0rem;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.mobleMenu_button span:before {
    top: 0.18rem;
}

.mobleMenu_button span:after {
    top: -0.18rem;
}

.mobleMenu_button.on span {
    background: rgba(51, 51, 51, 0);
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.mobleMenu_button.on span::before,
.mobleMenu_button.on span::after {
    top: 0rem;
    width: 0.44rem;
    -webkit-transform-origin: 50% 50%;
    transform-origin: 50% 50%
}

.mobleMenu_button.on span::before {
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
}

.mobleMenu_button.on span::after {
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
}

/* 下拉菜单 */
.mobleHeaderMenu {
    display: none;
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    overflow: hidden;
    padding-top: 1rem;
    z-index: 9990;
    background: #fff;
}

.mobleHeaderMenu ul {
    width: 100%;
    height: 100%;
    overflow-y: auto;
}

.mobleHeaderMenu ul>li {
    margin-left: 4%;
    margin-right: 4%;
    position: relative;
    border-bottom: 0.02rem solid #EDF0F4;
}

.mobleHeaderMenu a {
    display: block;
    font-size: 0.26rem;
    line-height: 1.2rem;
    color: #333;
    margin-right: 1rem;
    text-transform: uppercase;
    font-size: 0.3rem;
}

.mobleHeaderMenu span {
    position: absolute;
    top: 0rem;
    right: 0rem;
    display: block;
    width: 1rem;
    height: 1.2rem;
    background: url(../images/headerTriangle.png)no-repeat center right;
    background-size: 0.5rem;
}

/* 二级栏目 */
.mobleDropdown {
    display: none;
    background: #FAFBFC;
}

.mobleDropdown li {
    padding-left: 4%;
}

.mobleDropdown li>a {
    color: #666;
    line-height: 1rem;
}

/* =========== 移动端头部 结束 =========== */
/* ============================= 头部 结束 ============================= */





/* ============================= 底部 开始 ============================= */
/* 底部 */
footer {
    background: #F7F7F7;
}

/* 友情链接 */
.blogroll {
    padding: 0.5rem 0rem 0.26rem 0rem;
    border-bottom: 0.01rem solid #E0E4E7;
}

.blogroll>ul {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.blogroll>ul li {
    display: flex;
    align-items: center;
    cursor: pointer;
    color: #333;
}

.blogroll>ul li:hover {
    color: #005BAC;
}

.blogroll>ul li div {
    display: flex;
    align-items: center;
}

.blogroll>ul i {
    display: block;
    width: 0.18rem;
    height: 0.18rem;
    background: url(../images/arrow1.png)no-repeat center center;
    background-size: 100% 100%;
    margin-left: 0.1rem;
}

.blogroll .on {
    color: #005BAC;
}

.blogroll .on i {
    background: url(../images/arrow2.png)no-repeat center center;
    background-size: 100% 100%;
}

.blogrollList {
    display: none;
}

.blogrollList ol {
    display: flex;
    flex-wrap: wrap;
    margin-top: 0.24rem;
    background: #fff;
    padding: 0.3rem 0.2rem;
    color: #666;
}

.blogrollList li {
    width: 18.5%;
    margin-right: 1.87%;
}

.blogrollList li:nth-child(5n) {
    margin-right: 0rem;
}

.blogrollList li:nth-child(n+6) {
    margin-top: 0.12rem;
}

.blogrollList li:hover {
    color: #005BAC;
}

/* 底部版权 */
.footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.3rem 0rem 0.35rem 0rem;
}

.footerL {
    display: flex;
    align-items: center;
    color: #333;
}

.footerL .sydwIcon {
    display: block;
    width: 0.95rem;
    height: 0.95rem;
    margin-right: 0.16rem;
}

.footerL .sydwIcon img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.footerL li:nth-child(n+2) {
    margin-top: 0.06rem;
}

.footerL li.gov {
    display: flex;
    align-items: center;
}

.footerL .iconA {
    margin-left: 0.4rem;
    padding-left: 0.26rem;
    position: relative;
}

.footerL .iconA::after {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0rem;
    width: 0.18rem;
    height: 0.18rem;
    background: url(../images/footerIcon2.png)no-repeat center center;
    background-size: 100% 100%;
}

.footerR {
    text-align: center;
    color: #666666;
}

.footerR img {
    display: block;
    width: 0.4rem;
    height: 0.4rem;
    margin: 0rem auto 0.12rem auto;
}

/* 侧边悬浮 */
.pubFloat {
    position: fixed;
    right: 0rem;
    top: 50%;
    transform: translateY(-50%);
    /* display: none; */
}

.pubFloat li {
    cursor: pointer;
    position: relative;
}

.pubFloat li:nth-child(n+2) {
    margin-top: 0.01rem;
}

.pubFloatItem {
    display: block;
    width: 0.5rem;
    height: 0.5rem;
}

.pubFloatCon {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 0.5rem;
    padding-right: 0.2rem;
    display: none;
}

.pubFloatCon>div {
    padding: 0.14rem;
    box-shadow: 0px 6px 30px rgba(36, 43, 57, 0.14);
    position: relative;
    background: #fff;
}

.pubFloatCon img {
    display: block;
    max-width: unset;
    width: 2.2rem;
    height: 2.2rem;
    object-fit: contain;
}

.pubFloatCon>div::after {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 99%;
    display: block;
    width: 0.12rem;
    height: 0.2rem;
    background: url(../images/footerIcon4.png)no-repeat center center;
    background-size: 100% 100%;
}

@media (max-width: 800px) {
    .pubFloat {
        display: none !important;
    }

    /* 相关链接 */
    .blogroll {
        padding: 0.5rem 0rem 0.4rem 0rem;
        border-bottom: 0.01rem solid #E0E4E7;
    }

    .blogroll>ul {
        flex-wrap: wrap;
    }

    .blogroll>ul li {
        width: 48%;
    }

    .blogroll>ul li:nth-child(n+3) {
        margin-top: 0.24rem;
    }

    .blogroll>ul i {
        width: 0.3rem;
        height: 0.3rem;
        margin-left: 0.16rem;
    }

    .blogrollList ol {
        padding: 0.3rem;
    }

    .blogrollList li {
        width: 100%;
        margin: 0rem !important;
    }

    .blogrollList li:nth-child(n+2) {
        margin-top: 0.2rem !important;
    }

    .footer {
        flex-wrap: wrap;
    }

    .footerL {
        flex-direction: column;
        align-items: unset;
    }

    .footerL .sydwIcon {
        width: 1.4rem;
        height: 1.4rem;
        flex-shrink: 0;
        margin: 0rem 0rem 0.2rem 0rem;
    }

    .footerL li:nth-child(n+2) {
        margin-top: 0.12rem;
    }

    .footerL li.gov {
        flex-wrap: wrap;
    }

    .footerL li.gov>a {
        width: 100%;
    }

    .footerL .iconA {
        margin: 0.12rem 0rem 0rem 0rem;
        padding-left: 0.45rem;
    }

    .footerL .iconA::after {
        width: 0.3rem;
        height: 0.3rem;
    }

    .footerR {
        margin-top: 0.4rem;
    }

    .footerR a {
        display: flex;
        align-items: center;
    }

    .footerR img {
        display: block;
        width: 0.5rem;
        height: 0.5rem;
        margin: 0rem 0.16rem 0rem 0rem;
    }
}

/* ============================= 底部 结束 ============================= */





/* ============================= 公共样式 开始 ============================= */
/* 面包屑导航 */
.crumbs {
    border-bottom: 0.01rem solid #EDEDED;
}

.crumbs ul {
    display: flex;
    align-items: center;
    padding-left: 0.32rem;
    line-height: 0.65rem;
    position: relative;
}

.crumbs ul::before {
    content: "";
    position: absolute;
    left: 0rem;
    top: 50%;
    transform: translateY(-50%);
    display: block;
    width: 0.2rem;
    height: 0.18rem;
    background: url(../images/crumbsIcon.png)no-repeat center center;
    background-size: 100% 100%;
}

.crumbs li {
    position: relative;
    margin-right: 0.12rem;
    padding-right: 0.2rem;
}

.crumbs li::after {
    content: "/";
    position: absolute;
    top: 0rem;
    right: 0rem;
    color: #666;
}

.crumbs li:hover a {
    color: #005BAC;
}

.crumbs li:last-of-type {
    margin: 0rem;
    padding: 0rem;
}

.crumbs li:last-of-type::after {
    display: none;
}

@media (max-width: 800px) {
    .crumbs {
        padding: 0rem 4%;
    }

    .crumbs ul {
        line-height: 1rem;
        padding-left: 0.64rem;
        width: 100%;
        overflow-x: auto;
        flex: 0 0 auto;
    }

    .crumbs ul::before {
        width: 0.4rem;
        height: 0.36rem;
    }

    .crumbs li {
        flex: 0 0 auto;
    }
}



/* 新闻列表 */
.pubNewsList li:nth-child(n+2) {
    margin-top: 0.1rem;
}

.pubNewsList a {
    display: flex;
    align-items: center;
    background: #f7f7f7a3;
    height: 0.7rem;
    color: #333;
    padding: 0rem 0.3rem;
}

.pubNewsList .time {
    margin-left: 0.5rem;
    flex-shrink: 0;
    color: #999;
}

/* .pubNewsList .time {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    flex-shrink: 0;
    width: 1.44rem;
    height: 100%;
    border-right: 0.05rem solid #fff;
    font-family: "manrope-medium";
}

.pubNewsList .time span {
    color: #999;
} */

.pubNewsList .title {
    flex: 1;
    width: 0;
    /* padding: 0rem 0.5rem; */
}

.pubNewsList .title p {
    line-height: 0.9rem;
}

.pubNewsList li:hover a {
    background: #F3F3F3;
    color: #005BAC;
}

/* .pubNewsList li:hover .time span {
    color: #005BAC;
} */

@media (max-width: 800px) {
    .pubNewsList a {
        height: auto;
        padding: 0.2rem 0.3rem;
        flex-wrap: wrap;
    }

    .pubNewsList .time {
        width: 100%;
        margin: 0.04rem 0rem 0rem 0rem;
    }

    .pubNewsList .title {
        width: 100%;
        /* padding: 0rem 0.3rem; */
        font-size: 0.3rem;
    }

    .pubNewsList li:nth-child(n+2) {
        margin-top: 0.2rem;
    }
}



/* 暂无数据 */
.pubNodata {
    text-align: center;
    color: #999;
    padding: 1rem 0rem;
}

.pubNodata img {
    display: block;
    width: 1.6rem;
    height: auto;
    margin: 0rem auto 0.2rem auto;
}



/* 公共样式1：左侧列表右侧内容 */
.pubModule1 {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.pubModule1L {
    width: 18%;
    margin-right: 6%;
    flex-shrink: 0;
}

.pubModule1R {
    flex-grow: 1;
}

/* 左侧列表 */
.pubModule1L li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    border-bottom: 0.01rem solid #EDEDED;
    padding: 0.20rem 0.18rem;
    color: #666;
    /* font-weight: bold; */
}

.pubModule1L i {
    display: block;
    width: 0.22rem;
    height: 0.08rem;
    background: url(../images/arrow3.png)no-repeat center center;
    background-size: 100% 100%;
    margin-left: 0.22rem;
    flex-shrink: 0;
}

.pubModule1L .active,
.pubModule1L li:hover {
    background: #005BAC;
    color: #fff;
}

.pubModule1L .active i,
.pubModule1L li:hover i {
    background: url(../images/arrow4.png)no-repeat center center;
    background-size: 100% 100%;
}

@media (max-width: 800px) {
    .pubModule1 {
        flex-wrap: wrap;
    }

    .pubModule1L,
    .pubModule1R {
        width: 100%;
    }

    .pubModule1L li {
        padding: 0.26rem;
    }

    .pubModule1L i {
        width: 0.4rem;
        height: 0.14rem;
        margin-left: 0.5rem;
    }

    .pubModule1L {
        margin-bottom: 0.6rem;
    }
}



/* 公共样式2：蓝色渐变背景列表 */
.pubModule2Card {
    background: linear-gradient(180deg, rgba(235, 242, 249, 0.7) 0%, rgba(235, 242, 249, 0.05) 100%);
    padding: 0.5rem 0.6rem 0.2rem 0.6rem;
    color: #333;
}

.pubModule2Item>h3 {
    margin-bottom: 0.34rem;
    font-weight: bold;
    color: #005BAC;
}

.pubModule2Card ul li:nth-child(n+2) {
    margin-top: 0.24rem;
}

.pubModule2Card li {
    padding-left: 0.3rem;
    position: relative;
}

.pubModule2Card li::before {
    content: "";
    position: absolute;
    left: 0rem;
    top: 0.06rem;
    display: block;
    width: 0.14rem;
    height: 0.14rem;
    background: url(../images/point1.png)no-repeat center center;
    background-size: 100% 100%;
}

.pubModule2Card>.pubModule2Item:nth-child(n+2) {
    margin-top: 0.7rem;
}

.pubModule2 .pubModule2Card:nth-of-type(n+2) {
    margin-top: 0.3rem;
}

@media (max-width: 800px) {
    .pubModule2Card {
        padding: 0.5rem;
    }

    .pubModule2Card li::before {
        width: 0.2rem;
        height: 0.2rem;
        top: 0.1rem;
    }

    .pubModule2Card li {
        padding-left: 0.45rem;
    }

    .pubModule2Card ul li:nth-child(n+2) {
        margin-top: 0.3rem;
    }

    .pubModule2Card>.pubModule2Item:nth-child(n+2) {
        margin-top: 0.9rem;
    }

    .pubModule2 .pubModule2Card:nth-of-type(n+2) {
        margin-top: 0.4rem;
    }
}



/* 公共样式3：部门动态列表 */
.pubModule3 {
    display: flex;
    align-items: center;
}

.pubModule3 li {
    background: #fff;
    width: 23%;
    margin-right: 2.66%;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.pubModule3 li:last-of-type {
    margin-right: 0rem;
}

.pubModule3 .imgBox {
    width: 100%;
    padding-top: 60%;
    position: relative;
    overflow: hidden;
}

.pubModule3 .imgBox img {
    position: absolute;
    top: 0rem;
    left: 0rem;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.pubModule3 .txt {
    padding: 0.24rem 0.22rem;
    color: #333;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.pubModule3 .txt div {
    height: 0.92rem;
}

.pubModule3 .txt p {
    font-weight: bold;
}

.pubModule3 .txt span {
    color: #666;
}

.pubModule3 li:hover img {
    transform: scale(1.05);
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.pubModule3 li:hover .txt {
    color: #005BAC;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.pubModule3 li:hover {
    box-shadow: 0rem 0.06rem 0.3rem rgba(0, 0, 0, 0.1);
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

/* 移动端 */
@media (max-width: 800px) {
    .pubModule3 {
        flex-wrap: wrap;
    }

    .pubModule3 li {
        width: 100%;
        margin: 0rem;
    }

    .pubModule3 li:nth-child(n+2) {
        margin-top: 0.5rem;
    }

    .pubModule3 .txt {
        padding: 0.3rem 0.4rem;
    }

    .pubModule3 .txt div {
        height: auto;
        margin-bottom: 0.4rem;
    }
}



/* 公共分页 */
.pubPage {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 0.6rem;
}

.pubPage .el-pagination {
    padding: 0rem;
}

.pubPage .el-pagination button,
.pubPage .el-pagination.is-background .el-pager li {
    width: 0.5rem !important;
    min-width: unset !important;
    height: 0.5rem !important;
    line-height: 0.5rem !important;
    background: #F4F4F4 !important;
    margin: 0rem 0.05rem !important;
}

.pubPage .el-pagination .el-icon {
    font-size: 0.14rem !important;
}

.pubPage .el-pagination button:hover .el-icon,
.pubPage .el-pagination.is-background .el-pager li:hover {
    color: #005BAC !important;
}

.pubPage .el-pagination button:disabled:hover .el-icon {
    color: #C0C4CC !important;
}

.pubPage .el-pagination.is-background .el-pager li {
    width: auto !important;
    min-width: 0.5rem !important;
    padding: 0rem 0.1rem !important;
    font-size: 0.18rem !important;
}

.pubPage .el-pager .more::before {
    line-height: 0.5rem !important;
}

.pubPage .el-pagination.is-background .el-pager li:not(.disabled).active {
    background-color: #005BAC !important;
    color: #FFF !important;
}

/* 移动端 */
@media (max-width: 800px) {
    .el-pager {
        display: none !important;
    }

    .pubPage .el-pagination button {
        width: 0.8rem !important;
        min-width: unset !important;
        height: 0.8rem !important;
        line-height: 0.8rem !important;
        background: #F4F4F4 !important;
        margin: 0rem 0.3rem !important;
    }

    .pubPage .el-pagination .el-icon {
        font-size: 0.3rem !important;
    }
}


/* 图片显示隐藏 */
.mImg {
    display: none !important;
}

@media (max-width: 800px) {
    .pcImg {
        display: none !important;
    }

    .mImg {
        display: block !important;
    }
}

/* ============================= 公共样式 结束 ============================= */