/* 重要新闻 */
.important {
    padding: 0.2rem 0rem 0.4rem 0rem;
}

/* 上方置顶新闻 */
.topImp {
    margin-bottom: 0.25rem;
}

.topImp a {
    display: flex;
    align-items: center;
    background: rgba(0, 91, 172, 0.08);
    padding: 0.15rem 0.3rem;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.important .leftIcon {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    width: 0.7rem;
    height: 0.7rem;
    line-height: 1.2;
    letter-spacing: 0.02rem;
    background: #005BAC;
    box-shadow: 0rem 0.03rem 0.12rem rgba(0, 91, 172, 0.25);
    border-radius: 0.16rem;
    color: #fff;
    font-weight: bold;
    margin-right: 0.25rem;
    flex-shrink: 0;
}

.topImp .more {
    flex-shrink: 0;
    margin-left: 1.4rem;
    color: #005BAC;
    padding-right: 0.2rem;
    position: relative;
}

.topImp .more::after {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 0rem;
    display: block;
    width: 0.14rem;
    height: 0.14rem;
    background: url(../images/arrow5.png)no-repeat center center;
    background-size: 100% 100%;
}

.topImp .txt {
    width: calc(100% - 1.05rem - 2.05rem);
}

.topImp h2 {
    font-weight: bold;
    color: #005BAC;
    margin-bottom: 0.08rem;
}

.topImp .txt>div {
    color: #666;
}

.topImp:hover a {
    background: rgba(0, 91, 172, 0.12);
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

/* 左侧新闻轮播 */
.newsBox {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.2rem;
}

.newsL {
    width: 45%;
}

.newsLSwiper .swiper-slide {
    background: #fff;
}

.newsLSwiper a {
    display: block;
    width: 100%;
    padding-top: 55%;
    position: relative;
    overflow: hidden;
}

.newsLSwiper img {
    position: absolute;
    top: 0rem;
    left: 0rem;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.newsLSwiper h3 {
    position: absolute;
    bottom: 0rem;
    left: 0rem;
    z-index: 2;
    width: 100%;
    padding: 0.18rem 1.5rem 0.18rem 0.3rem;
    color: #fff;
    font-weight: 500;
    background: rgba(0, 0, 0, 0.65);
}

.newsLSwiper .swiper-pagination {
    position: absolute;
    right: 0rem;
    bottom: 0.26rem;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 0.3rem;
}

.newsLSwiper .swiper-pagination-bullet {
    display: block;
    width: 0.06rem;
    height: 0.06rem;
    background: #fff;
    border-radius: 0.06rem;
    opacity: 1;
    margin: 0rem 0.03rem !important;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.newsLSwiper .swiper-pagination-bullet-active {
    width: 0.25rem;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

/* 右侧新闻列表 */
.newsR {
    width: 54%;
}

.newsR a {
    display: flex;
    align-items: center;
    height: 0.61rem;
    color: #333;
}

.newsR li {
    border-bottom: 0.01rem solid #EDEDED;
}

.newsR li:last-of-type {
    border-bottom: none;
}

.newsR .time {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 0.8rem;
    font-family: "manrope-medium";
    position: relative;
}

.newsR .time span {
    color: #999;
}

.newsR .time::after {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 0rem;
    display: block;
    width: 0.01rem;
    height: 72%;
    background: #EDEDED;
}

.newsR h3 {
    padding: 0rem 0.16rem;
    width: calc(100% - 0.8rem);
    font-weight: normal;
}

.newsR li:hover a,
.newsR li:hover .time span {
    color: #005BAC;
}

/* 查看更多 按钮 */
.viewMore {
    display: block;
    margin: 0rem auto;
    text-align: center;
    width: 1.3rem;
    height: 0.48rem;
    line-height: 0.48rem;
    background: #fff;
    border: 0.01rem solid #005BAC;
    color: #005BAC;
    border-radius: 0.24rem;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.viewMore:hover {
    background: #005BAC;
    color: #fff;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}


/* 通知公告 */
.notice {
    background: #f7f7f7a3;
    padding: 0.3rem 0.4rem;
    margin-bottom: 0.3rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.noticeL {
    width: 16%;
}

.noticeR {
    width: 75%;
}

.noticeR .viewMore {
    display: none;
}

.noticeL ul {
    margin-bottom: 0.7rem;
}

.noticeL li {
    cursor: pointer;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.18rem 0rem;
    border-bottom: 0.02rem solid #E0E4E7;
    position: relative;
    color: #666;
    font-weight: normal;
}

.noticeL li.on,
.noticeL li:hover {
    font-weight: bold;
}

.noticeL li::after {
    content: "";
    position: absolute;
    bottom: -0.02rem;
    left: 0rem;
    z-index: 2;
    display: block;
    width: 0%;
    height: 0.02rem;
    background: #005BAC;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.noticeL li:first-of-type {
    padding-top: 0rem;
}

.noticeL i {
    display: block;
    width: 0rem;
    height: 0.12rem;
    background: url(../images/arrow6.png)no-repeat center center;
    background-size: contain;
    opacity: 0;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.noticeL li:hover,
.noticeL li.on {
    color: #005BAC;
}

.noticeL li:hover i,
.noticeL li.on i {
    width: 0.3rem;
    opacity: 1;
    margin: 0rem 0rem 0rem 0.3rem;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.noticeL li:hover::after,
.noticeL li.on::after {
    width: 100%;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

/* 通知公告右侧列表 */
.noticeR li a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.16rem 0rem 0.16rem 0.25rem;
    position: relative;
}

.noticeR li a::before {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0rem;
    display: block;
    width: 0.12rem;
    height: 0.12rem;
    background: url(../images/point1.png)no-repeat center center;
    background-size: 100% 100%;
}

.noticeR li {
    border-bottom: 0.01rem solid #E0E4E7;
    color: #333;
}

.noticeR span {
    display: block;
    color: #666;
    flex-shrink: 0;
    margin-left: 0.6rem;
}

.noticeR li:hover p,
.noticeR li:hover span {
    color: #005BAC;
}

.noticeR li:last-of-type {
    border-bottom: none;
}


/* 党纪学习 */
.djStudy {
    margin-bottom: 0.3rem;
}

.djStudy img {
    display: block;
    width: 100%;
    height: auto;
}


/* 工作动态 */
.trendsBox {
    background: #f7f7f7a3;
}

.trends {
    padding: 0.4rem 0rem;
}

.trendsTop {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 0.6rem;
    min-height: 0.46rem;
}

.pageTitle {
    color: #333;
    font-weight: bold;
}

.trendsTop ul {
    display: flex;
    align-items: flex-end;
}

.trendsTop li {
    cursor: pointer;
    color: #666;
    padding-left: 0.22rem;
    margin-left: 0.15rem;
    position: relative;
    z-index: 2;
}

.trendsTop li::before {
    content: "/";
    position: absolute;
    left: 0rem;
    bottom: 0rem;
}

.trendsTop li:first-of-type::before {
    display: none;
}

.trendsTop p {
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.trendsTop .on p {
    font-weight: bold;
    font-size: 0.32rem;
    color: #333333;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.trendsTop li p {
    position: relative;
    z-index: 2;
}

.trendsTop li p::after {
    content: "";
    position: absolute;
    bottom: 0rem;
    left: 0rem;
    display: block;
    width: 100%;
    height: 0.16rem;
    background: linear-gradient(180deg, rgba(38, 139, 244, 0.75) 0%, rgba(38, 139, 244, 0) 100%);
    z-index: -1;
    opacity: 0;
}

.trendsTop .on p::after {
    opacity: 1;
}

.trends .viewMore {
    margin-top: 0.4rem;
}

/* 默认推荐轮播 */
.trendSwiperBox {
    position: relative;
}

.trendNext,
.trendPrev {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    display: block;
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
    background: #fff;
}

.trendNext {
    right: -0.8rem;
}

.trendNext::before {
    content: "next";
    font-family: 'swiper-icons';
}

.trendPrev {
    left: -0.8rem;
}

.trendPrev::before {
    content: "prev";
    font-family: 'swiper-icons';
}

.trendNext::before,
.trendPrev::before {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.trendNext:hover::before,
.trendPrev:hover::before {
    color: #fff;
}

.trendNext:hover,
.trendPrev:hover {
    background: #005BAC;
}

.trendSwiper {
    width: 100%;
    overflow: hidden;
}


/* 业务服务 */
.service {
    padding: 0.6rem 0rem;
}

.service ul {
    margin-top: 0.5rem;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.service li {
    width: 23.5%;
    height: 1.8rem;
    margin-right: 2%;
    border-radius: 0.12rem;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    cursor: pointer;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.service li p {
    white-space: pre-line;
}

.service li:nth-child(4n) {
    margin-right: 0rem;
}

.service li:nth-child(n+5) {
    margin-top: 0.26rem;
}

.service img {
    display: block;
    width: 0.65rem;
    height: 0.65rem;
    margin: 0rem auto 0.15rem auto;
}

.service li p {
    font-weight: bold;
}

.service li:hover {
    transform: translateY(-0.1rem);
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

/* 背景色 */
/* .service li:nth-child(1),
.service li:nth-child(7) {
    background: #FFF5E4;
}

.service li:nth-child(2),
.service li:nth-child(8) {
    background: #F4ECFF;
}

.service li:nth-child(3),
.service li:nth-child(5) {
    background: #E1F0FF;
}

.service li:nth-child(4),
.service li:nth-child(6) {
    background: #E5F6EC;
} */


/* 侧边问卷调查 */
.survey {
    position: fixed;
    right: 0rem;
    bottom: 0.2rem;
    width: 8%;
    max-width: 1.6rem;
    z-index: 5;
}

.surveyCon {
    padding-bottom: 0.2rem;
}

.surveySwiper {
    height: 2.05rem;
}

.surveySwiper .swiper-slide {
    height: 1rem;
}

.surveySwiper .swiper-slide:nth-child(odd) {
    margin-bottom: 0.05rem;
}

.surveySwiper .swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.surveyCon .btnBox {
    position: absolute;
    bottom: 0rem;
    left: 0rem;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0rem 0.1rem;
}

.surveyCon .surveyPagination {
    display: flex;
    align-items: center;
}

.surveyCon .swiper-pagination-bullet {
    display: block;
    width: 0.08rem;
    height: 0.08rem;
    margin: 0rem 0.06rem 0rem 0rem !important;
    opacity: 1;
    background: #D5D5D5;
}

.surveyCon .swiper-pagination-bullet-active {
    background: #005BAC;
}

.surveyCon .btnBox button {
    display: block;
    width: 0.12rem;
    height: 0.12rem;
    background: url(../images/close.png)no-repeat center center;
    background-size: 100% 100%;
    border: none;
    cursor: pointer;
}



/* 移动端 */
@media (max-width: 800px) {

    /* 重要新闻 */
    .topImp {
        margin-bottom: 0.4rem;
    }

    .topImp a {
        padding: 0.3rem;
    }

    .important .leftIcon,
    .topImp .more {
        display: none;
    }

    .topImp .txt {
        width: 100%;
    }

    .topImp h2 {
        font-size: 0.35rem;
    }

    .topImp .txt>div {
        font-size: 0.3rem;
    }

    .newsBox {
        flex-wrap: wrap;
        margin-bottom: 0.5rem;
    }

    .newsL,
    .newsR {
        width: 100%;
    }

    .newsLSwiper h3 {
        padding: 0.26rem 0.3rem;
        font-size: 0.3rem;
    }

    .newsLSwiper .swiper-pagination {
        display: none;
    }

    .newsL {
        margin-bottom: 0.4rem;
    }

    .newsR a {
        height: 1.2rem;
    }

    .newsR .time {
        width: 1.5rem;
    }

    .newsR h3 {
        padding: 0rem 0rem 0rem 0.24rem;
        width: calc(100% - 1.5rem);
    }

    .viewMore {
        width: 3rem;
        height: 0.9rem;
        line-height: 0.9rem;
        border-radius: 1rem;
    }

    /* 通知公告 */
    .noticeL .viewMore {
        display: none;
    }

    .noticeR .viewMore {
        display: block;
    }

    .notice {
        flex-wrap: wrap;
        padding: 0.6rem 6%;
        margin-bottom: 0.6rem;
    }

    .noticeL,
    .noticeR {
        width: 100%;
    }

    .noticeR {
        min-height: unset
    }

    .noticeL li {
        padding: 0.3rem 0rem;
    }

    .noticeL ul {
        font-size: 0.38rem;
        margin-bottom: 0.5rem;
    }

    .noticeL i {
        width: 0.5rem;
        height: 0.2rem;
    }

    .noticeR li a {
        padding: 0.35rem 0rem;
        flex-wrap: wrap;
    }

    .noticeR li a::before {
        display: none;
    }

    .noticeR ul {
        margin-bottom: 0.4rem;
    }

    .noticeR li p,
    .noticeR li span {
        width: 100%;
    }

    .noticeR li span {
        margin: 0.14rem 0rem 0rem 0rem;
        color: #999;
        font-size: 0.28rem;
    }

    /* 党纪学习 */
    .djStudy {
        margin-bottom: 0.6rem;
    }

    .djStudy img {
        height: auto;
        width: 100%;
        object-fit: cover;
    }

    /* 工作动态 */
    .trends {
        padding: 0.8rem 0rem;
    }

    .trendsTop {
        flex-wrap: wrap;
    }

    .pageTitle {
        width: 100%;
        margin-bottom: 0.4rem;
    }

    .trendsTop ul {
        width: 100%;
        overflow-x: auto;
        flex: 0 0 auto;
        align-items: flex-start;
    }

    .trendsTop li {
        flex: 0 0 auto;
        padding-left: 0.36rem;
        margin-left: 0.3rem;
    }

    .trendsTop li:first-of-type {
        margin-left: 0rem;
        padding-left: 0rem;
    }

    .trendsTop .on p {
        font-size: 0.34rem;
    }

    .trendsTop li p::after {
        height: 0.2rem;
    }

    .trendSwiperBox .pubModule3 {
        flex-wrap: nowrap;
    }

    .trendPrev,
    .trendNext {
        display: none !important;
    }

    /* 业务服务 */
    .service li {
        width: 100%;
        margin: 0rem;
        height: 2.4rem;
    }

    .service li:nth-child(n+2) {
        margin-top: 0.3rem;
    }

    /* 侧边问卷 */
    .survey {
        position: relative;
        right: unset;
        bottom: unset;
        width: 100%;
        padding: 0.4rem 4% 1rem 4%;
        max-width: unset;
    }

    .surveySwiper,
    .swiper-wrapper,
    .surveySwiper .swiper-slide {
        height: auto;
    }

    .surveySwiper .swiper-slide img {
        width: 100%;
        height: auto;
    }

    .surveyCon {
        padding-bottom: 0.5rem;
        position: relative;
    }

    .surveyCon .btnBox {
        padding: 0rem 4%;
        justify-content: center;
    }

    .surveyCon .btnBox button {
        display: none;
    }

    .surveyCon .surveyPagination {
        justify-content: center;
    }

    .surveyCon .swiper-pagination-bullet {
        width: 0.16rem;
        height: 0.16rem;
        border-radius: 50%;
        margin: 0rem 0.12rem 0rem 0rem !important;
    }
}