@charset "utf-8";

/* 绍兴大学审计处首页 — 基于 reset（100px = 1rem），主色 #335e69，版心 w16 */

:root {
    --theme: #335e69;
    --theme-dark: #2a4d56;
    --text: #333333;
    --text-sub: #888888;
    --line: #e5e5e5;
    --bg-pattern: #f7f7f7;
}

body.page-home {
}

/* ----- 顶部通栏轮播 + 茶色顶区（与设计图一致） ----- */
.top-banner {
    position: relative;
    width: 100%;
    line-height: 0;
}

.banner-swiper {
    width: 100%;
    height: 6.3rem;
    background: #1a1a1a;
}

.banner-swiper .swiper-slide {
    height: 6.3rem;
}

.banner-slide {
    width: 100%;
    height: 100%;
}

.banner-pic {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.top-banner-overlay {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    z-index: 2;
    pointer-events: none;
}

.top-banner-top {
    padding: 0.22rem 0 0.9rem;
    background: linear-gradient(
        to bottom,
        rgba(51, 94, 105, 1) 0%,
        rgba(51, 94, 105, 0.8) 70%,
        rgba(51, 94, 105, 0) 100%
    );
}

.top-banner-head {
    position: relative;
    z-index: 1;
}

.top-banner-brand {
    gap: 0.24rem;
}

.top-banner-logo {
    display: block;
    height: 0.72rem;
    width: auto;
}

.top-banner-titimg {
    display: block;
    height: 0.52rem;
    width: auto;
}

.top-banner-sloganimg {
    display: block;
    max-height: 0.82rem;
    width: auto;
    max-width: 5.6rem;
}

/* ----- 主导航 + 二级栏目 ----- */
.nav {
    position: relative;
    z-index: 10;
    background: var(--theme);
    box-shadow: 0 0.02rem 0.08rem rgba(0, 0, 0, 0.12);
}

.nav-list {
    margin: 0;
    padding: 0;
    height: 0.56rem;
}

.nav-item {
    position: relative;
    flex: 1;
    text-align: center;
    height: 0.56rem;
}

.nav-link {
    display: block;
    color: #fff;
    font-size: 0.2rem;
    line-height: 0.56rem;
    letter-spacing: 0.02em;
    transition: background 0.25s, color 0.25s;
}

.nav-item:hover > .nav-link {
    color: #fff;
}

.nav-sub {
    display: none;
    position: absolute;
    left: 50%;
    top: 100%;
    transform: translateX(-50%);
    min-width: 1.6rem;
    margin: 0;
    padding: 0.06rem 0;
    background: #fff;
    border: 0.01rem solid #e0e8ea;
    box-shadow: 0 0.06rem 0.16rem rgba(0, 0, 0, 0.1);
    list-style: none;
    z-index: 30;
}

.nav-item:hover .nav-sub {
    display: block;
}

.nav-sub li {
    list-style: none;
    text-align: center;
    border-bottom: 0.01rem solid #f0f0f0;
}

.nav-sub li:last-child {
    border-bottom: 0;
}

.nav-sub a {
    display: block;
    padding: 0 0.24rem;
    font-size: 0.18rem;
    line-height: 0.44rem;
    color: var(--text);
    white-space: nowrap;
    transition: background 0.2s, color 0.2s;
}

.nav-sub a:hover {
    background: rgba(51, 94, 105, 0.08);
    color: var(--theme);
}

/* ----- 主内容 ----- */
.main {
padding: 0.48rem 0 1.5rem;
    background: url(../images/bannerbg.png) left calc(100% + 2.5rem) no-repeat;
    background-size: contain;
}

.main-inner {
    position: relative;
}

/* 主内容悬停：图片与非标题文字；版块标题与各类主标题不单独做悬停变色 */
.main .news-swiper a.swiper-slide .slide-card img {
    transition: transform 0.35s ease, filter 0.35s ease;
}

/* slide-card 有 overflow:hidden，缩放易被裁切，配合亮度变化更明显 */
.main .news-swiper a.swiper-slide:hover .slide-card img {
    transform: scale(1.06);
    filter: brightness(1.1);
}

.main .news-swiper a.swiper-slide .slide-card-desc {
    transition: color 0.25s ease;
}

.main .news-swiper a.swiper-slide:hover .slide-card-desc {
    color: var(--theme);
}

.main .news-swiper a.swiper-slide:hover .slide-card-datebox .slide-card-date-y,
.main .news-swiper a.swiper-slide:hover .slide-card-datebox .slide-card-date-d {
    opacity: 1;
}

.main .news-swiper .slide-card-date-d {
    transition: opacity 0.25s ease;
}

.main .news-list-link {
    transition: background 0.25s ease;
}

.main .news-list-link:hover {
    font-weight: 600;
}

.main .news-list-date,
.main .news-list-timeicon,
.main .news-list-arrow {
    transition: color 0.25s ease, transform 0.25s ease, opacity 0.25s ease;
}

.main .news-list-link:hover .news-list-date {
    color: var(--theme);
}

.main .news-list-link:hover .news-list-timeicon {
    transform: scale(1.1);
}

.main .news-list-link:hover .news-list-arrow {
    transform: translateX(0.1rem);
    opacity: 0.9;
}

.main .dot-list-law > a {
    transition: color 0.2s ease, background-position 0.2s ease, opacity 0.2s ease;
}

.main .dot-list-law > a:hover {
    opacity: 0.92;
    padding-left: 0.3rem;
}

.main .notice-card-txt {
    transition: color 0.25s ease;
}

.main .notice-card-arr {
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.main .notice-card:hover .notice-card-txt {
    color: var(--theme);
}

.main .notice-card:hover .notice-card-arr {
    opacity: 0.7;
    transform: translateX(0.08rem);
}

.main .study-corner-photo img {
    transition: transform 0.35s ease, filter 0.35s ease;
}

.main .study-corner-card:hover .study-corner-photo img {
    transform: scale(1.06);
    filter: brightness(1.08);
}

.main .study-corner-row-date {
    transition: color 0.25s ease;
}

.main .study-corner-item:hover .study-corner-row-date {
    color: var(--theme);
}

.grid-row {
    display: flex;
    gap: 0.4rem;
    margin-bottom: 0.32rem;
}

.grid-row .col {
    flex: 1;
    min-width: 0;
}

.grid-row-home-top {
    gap: 0.54rem;
}

.grid-row-home-top .col-news {
    flex: 0 0 9.74rem;
    width: 9.74rem;
    max-width: 9.74rem;
}

.grid-row-home-top .col-law {
    flex: 0 0 5.72rem;
    width: 5.72rem;
    max-width: 5.72rem;
}

.grid-row-home-mid {
    gap: 0.54rem;
}

.grid-row-home-mid .col-notice {
    flex: 0 0 9.74rem;
    width: 9.74rem;
    max-width: 9.74rem;
}

.grid-row-home-mid .col-audit {
    flex: 0 0 5.72rem;
    width: 5.72rem;
    max-width: 5.72rem;
}

.grid-row-last {
    margin-bottom: 0;
    gap: 0.54rem;
}

.grid-row-last .col-study {
    flex: 0 0 9.74rem;
    width: 9.74rem;
    max-width: 9.74rem;
}

.grid-row-last .col-links {
    flex: 0 0 5.72rem;
    width: 5.72rem;
    max-width: 5.72rem;
}

.sec-head {
    margin-bottom: 0.17rem;
    padding-bottom: 0.12rem;
}

.sec-head-law {
    border-bottom: none;
    padding-bottom: 0.29rem;
    margin-bottom: 0.2rem;
    box-shadow: 0 0.03rem 0 0 var(--theme);
}

.sec-tit-cn {
    font-size: 0.3rem;
    font-weight: bold;
    color: var(--theme);
    line-height: 1.25;
    margin: 0;
}

.sec-tit-en {
    font-size: 0.16rem;
    color: #c4c4c4;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin: 0.06rem 0 0;
    line-height: 1;
}

.sec-more {
    font-size: 0.18rem;
    color: #383838;
    white-space: nowrap;
    transition: color 0.2s;
}

.sec-more:hover {
    color: var(--theme);
    opacity: 1;
}

.news-block-home {
    gap: 0.28rem;
}

.news-block-home .news-block-swiper {
    flex: 0 0 4.62rem;
    width: 2.62rem;
    min-width: 0;
}

.news-block-home .news-list {
    flex: 1;
    width: 0;
    padding: 0 0.08rem;
}

.news-block {
    gap: 0.28rem;
    align-items: stretch;
}

.news-block-swiper {
    width: 4.62rem;
    min-width: 0;
}

.news-swiper {
    width: 100%;
    border-radius: 0.02rem;
    overflow: hidden;
    background: #000;
}

.news-swiper .swiper-slide {
    height: auto;
}

.slide-card {
    display: block;
    position: relative;
    width: 100%;
    height: 2.68rem;
    overflow: hidden;
}

.slide-card img {
    width: 100%;
    height: 2.68rem;
    object-fit: cover;
}

.slide-card-cap {
    z-index: 2;
}

.news-swiper .slide-card-cap {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    padding: 0;
    background: transparent;
    z-index: 2;
}

.news-swiper .slide-card-datebox {
    flex: 0 0 0.9rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.02rem;
    padding: 0.1rem 0.08rem;
    background: var(--theme);
    color: #fff;
}

.news-swiper .slide-card-date-y {
    font-size: 0.17rem;
    font-weight: bold;
    line-height: 1.1;
}

.news-swiper .slide-card-date-d {
    font-size: 0.16rem;
    line-height: 1.1;
    opacity: 0.95;
}

.news-swiper .slide-card-text {
    flex: 1;
    min-width: 0;
    padding: 0.12rem 0.14rem;
    background: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.news-swiper .slide-card-text .slide-card-tit {
    font-size: 0.18rem;
    font-weight: bold;
    color: var(--text);
    line-height: 1.35;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;

}

.news-swiper .slide-card-desc {
    font-size: 0.16rem;
    color: #818080;
    line-height: 1.45;
    margin: 0.06rem 0 0;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-swiper .swiper-pagination {
    bottom: 0.85rem !important;
    right: 0.14rem;
    left: auto !important;
    width: auto !important;
    text-align: right;
    z-index: 4;
}

.news-swiper .swiper-pagination-bullet {
    width: 0.09rem;
    height: 0.09rem;
    border-radius: 0.01rem;
    background: rgba(255, 255, 255, 0.5);
    opacity: 1;
}

.news-swiper .swiper-pagination-bullet-active {
    background: #fff;
}

/* ---------- 学习园地（独立样式，与新闻动态无关） ---------- */

.study-corner-sec-head {
    margin-bottom: 0.14rem;
    padding-bottom: 0;
}

.study-corner {
    width: 100%;
    min-width: 0;
    gap: 0.28rem;
    align-items: stretch;
    box-sizing: border-box;
}

.study-corner-featured {
    flex: 0 0 4.62rem;
    width: 4.62rem;
    min-width: 0;
}

.study-corner-side {
    flex: 1;
    width:0;
    min-width: 0;
    box-sizing: border-box;
  
    border-top: 0.03rem solid var(--theme);
    padding: 0;
    display: flex;
    flex-direction: column;
}


.study-corner-more {
    font-size: 0.18rem;
    color: #383838;
    white-space: nowrap;
    text-decoration: none;
    transition: color 0.2s;
}

.study-corner-more:hover {
    color: var(--theme);
}


.study-corner-swiper {
    --study-cap-h: 1.02rem;
    width: 100%;
    border-radius: 0.02rem;
    overflow: hidden;
    background: #fff;
}

.study-corner-swiper .swiper-slide {
    height: auto;
}

.study-corner-card {
    display: flex;
    flex-direction: column;
    width: 100%;
    color: inherit;
    text-decoration: none;
    box-sizing: border-box;
    overflow: hidden;
    border-radius: 0.02rem;
}

.study-corner-photo {
    position: relative;
    height: 2.68rem;
    overflow: hidden;
    background: #000;
}

.study-corner-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.study-corner-cap {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    /* padding: 0; */
    background: transparent;
}

.study-corner-datebox {
    flex: 0 0 0.9rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.02rem;
    padding: 0.1rem 0.08rem;
    background: var(--theme);
    color: #fff;
}

.study-corner-date-y {
    font-size: 0.17rem;
    font-weight: bold;
    line-height: 1.1;
}

.study-corner-date-d {
    font-size: 0.16rem;
    line-height: 1.1;
    opacity: 0.95;

}

.study-corner-titlewrap {
    flex: 1;
    min-width: 0;
    padding: 0.12rem 0.14rem;
    background: #fff;
    display: flex;
    align-items: center;
    box-sizing: border-box;
}

.study-corner-tit {
    font-size: 0.18rem;
    font-weight: bold;
    color: #111111;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.study-corner-swiper .swiper-pagination {
    bottom: calc(var(--study-cap-h)) !important;
    right: 0.14rem;
    left: auto !important;
    width: auto !important;
    text-align: right;
    z-index: 4;
}

.study-corner-swiper .swiper-pagination-bullet {
    width: 0.08rem;
    height: 0.08rem;
    border-radius: 0.01rem;
    background: rgba(255, 255, 255, 0.55);
    opacity: 1;
}

.study-corner-swiper .swiper-pagination-bullet-active {
    background: #fff;
}

.study-corner-list {
    margin: 0;
    padding: 0;
    flex: 1;
    min-height: 0;
}
.study-corner-list--grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 0.28rem;
    row-gap: 0;
    align-items: stretch;
}



.study-corner-item {
    display: flex;
    align-items: center;
    gap: 0.12rem;
    border-bottom: 0.01rem solid #e5e5e5;
    box-sizing: border-box;
    transition: background 0.2s;
    height: 0.9rem;
    position: relative;
}
.study-corner-item::after{
    content: "";
    width: 0.88rem;
    height: 0.01rem;
    background: #26535f;
    position: absolute;
    left: 0;
    bottom: -0.01rem;
}
.study-corner-item:last-child {
    border-bottom: none;
}
.study-corner-item:last-child::after{
    display: none;
}
.study-corner-item:hover {
    background: rgba(51, 94, 105, 0.04);
}

.study-corner-item-datecol {
    flex: 0 0 0.88rem;
    width: 0.88rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}


.study-corner-row-date {
    font-size: 0.16rem;
    color: #26535f;
    white-space: nowrap;
}

.study-corner-row-link {
    flex: 1;
    min-width: 0;
    font-size: 0.18rem;
    color: #000;
    line-height: 1.6;
    text-decoration: none;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: color 0.2s;
}

.study-corner-row-link:hover {
    color: var(--theme);
}

.col-links .link-btn {
    position: relative;
}

/* 左侧纯色条（与示意一致：箭头在白区，不压在绿条上） */
.col-links .link-btn::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 0.52rem;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    background: var(--theme);
}

/* 双箭头：list1 放在绿条右侧的白底区域，避免浅图标叠在主题色上看不见 */
.col-links .link-btn::after {
    content: "";
    position: absolute;
    left: 1.2rem;
    top: 50%;
    width: 0.14rem;
    height: 0.13rem;
    transform: translateY(-50%);
    z-index: 2;
    pointer-events: none;
    background: url("../images/list1.png") no-repeat 50% 50%;
    background-size: contain;
}

.news-list {
    flex: 1 1 38%;
    background: #fff;
    padding: 0 0.24rem;
}

.news-list-link {
    display: block;
    margin-bottom: 0.35rem;
    transition: background 0.2s;
}

.news-list-link:last-child {
    margin-bottom: 0;
}

.news-list-link:hover {
   
}

.news-list-tit {
    font-size: 0.18rem;
    font-weight: normal;
    color: #262525;
    line-height: 1.35;
    margin: 0 0 0.15rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.news-list-foot {
    width: 100%;
    min-width: 0;
    gap: 0;
}

.news-list-datecell {
    flex-shrink: 0;
    gap: 0.06rem;
}

.news-list-date {
    font-size: 0.16rem;
    color: #b9b9b9;
    line-height: 1;
}

.news-list-line {
    flex: 1;
    min-width: 0.1rem;
    height: 0.01rem;
    margin-left: 0.1rem;
    background: #dddddd;
    align-self: center;
}

.news-list-arrow {
    flex-shrink: 0;
    margin-left: 0.06rem;
    display: block;
    height: 0.09rem;
    width: auto;
    object-fit: contain;
    align-self: center;
}

.news-list-timeicon {
    width: 0.16rem;
    height: 0.16rem;
    object-fit: contain;
    flex-shrink: 0;
}

.dot-list {
    margin: 0;
    padding: 0;
}

.dot-list-law > a {
    display: block;
    padding-left: 0.26rem;
    margin-bottom: 0.28rem;
    background: url("../images/list.png") 0 50% no-repeat;
    background-size: 0.12rem auto;
    font-size: 0.18rem;
    color: #262525;
    line-height: 1.55;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    transition: color 0.2s;
}

.dot-list-law > a:last-child {
    margin-bottom: 0;
}

.dot-list li {
    padding-left: 0.26rem;
    margin-bottom: 0.18rem;
    background: url("../images/list.png") 0 0.1rem no-repeat;
    background-size: 0.12rem auto;
}

.dot-list li:last-child {
    margin-bottom: 0;
}

.dot-list a {
    font-size: 0.18rem;
    color: var(--text);
    line-height: 1.55;
    display: block;
    transition: color 0.2s;
}

.dot-list a:hover {
    color: var(--theme);
}

.notice-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 0.36rem;
    row-gap: 0;
 
}

.notice-card {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    padding: 0.2rem 0 0.4rem;
    margin: 0;
    border-top: 0.03rem solid #666666;
    transition: background 0.2s;
    min-height: 0;
}

.notice-card:hover {

}

.notice-card-tit {
    font-size: 0.18rem;
    font-weight: bold;
    color: #111111;
    margin: 0;
    line-height: 1.6;
   overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
   
}

.notice-card-txt {
    font-size: 0.16rem;
    color: #868686;
    line-height: 1.55;
    text-align: justify;
   
  overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    margin: 0.2rem 0 0.25rem;
}

.notice-card-arr {
    align-self: flex-end;
    margin-top: 0.08rem;
    height: 0.09rem;
    width: auto;
    object-fit: contain;
    display: block;
    pointer-events: none;
}

.link-btns {
    display: flex;
    flex-direction: column;
    gap: 0.14rem;
}

.link-btn-wrap {
    width: 100%;
    min-width: 0;
}

.link-btn {
    display: flex;
    align-items: center;
    box-sizing: border-box;
    height: 0.52rem;
    padding: 0 0.24rem 0 1.8rem;
    text-decoration: none;
    color: #262525;
    font-size: 0.2rem;
    line-height: 1.2;
    transition: opacity 0.2s, filter 0.2s;
    background-color: transparent;
    background-image: url("../images/link-a.png");
    background-position: 0 0;
    background-repeat: no-repeat;
    background-size: 100% 100%;
}

.link-btn:hover {
    filter: brightness(0.97);
}

.footer {
    background: var(--theme);
    padding: 0.36rem 0;
}

.footer-inner {
    gap: 0.4rem;
}

.footer-brand {
    gap: 0.22rem;
}

.footer-logo {
    height: 0.64rem;
    width: auto;
    display: block;
}


.footer-copy {
    flex: 1;
    text-align: right;
    font-size: 0.16rem;
    color: rgba(255, 255, 255, 0.88);
    line-height: 1.65;
    margin: 0;
}

@media screen and (max-width: 1024px) {
    body.page-home {
        min-width: 0;
    }
}


#nav_slide {
    display: none;
}
/* ========== 新闻网列表页 .n_container（侧栏 + 面包屑 + 卡片列表） ========== */
.n_container {
    padding: 0 0 0.6rem;
    margin-top: 0.3rem;

}

.n_container > .w15.flex {
    align-items: flex-start;
    gap: 0.36rem;
}

.n_left {
    flex: 0 0 3.05rem;
    width: 3.05rem;
    max-width: 100%;
}

.n_left .con {
    position: relative;
}

.n_left .con h1 {
    margin: 0;
    width: 3.05rem;
    height: 1.21rem;
    background: #3c5a64;
    color: #fff;
    font-size: 0.3rem;
    font-weight: 600;
    text-align: center;
    line-height: 1.3;
    border-radius: 0.04rem 0.04rem 0 0;
    position: relative;
    z-index: 2;
    box-shadow: 0 0.04rem 0.12rem rgba(0, 0, 0, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
}

.n_left .con h1 span {
    display: inline-block;
}

.n_left .con h1 span::after {
    content: "";
    display: block;
    width: 0.42rem;
    height: 0.03rem;
    background: #fff;
    margin: 0.1rem auto 0;
    opacity: 0.95;
}

.n_left .ulCon {
    background: #eef1f4;
    border: 1px solid #e0e4e8;
    border-top: none;
}

.n_left .ulCon ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.n_left .ulCon > ul > li {
    border-bottom: 1px solid #dde2e6;
}

.n_left .ulCon > ul > li:last-child {
    border-bottom: none;
}

.n_left .ulCon > ul > li > a {
    display: block;
    position: relative;
    box-sizing: border-box;
    padding: 0.18rem 0.4rem;
    color: #000;
    font-size: 0.18rem;
    text-decoration: none;
    transition: color 0.2s;
    line-height: 1.45;
    word-break: break-word;
    text-align: center;
}

.n_left .ulCon > ul > li > a:hover {
    color: #3c5a64;
    font-weight: 600;
}

.n_left .ulCon > ul > li.on > a {
    color: #3c5a64;
    font-weight: 600;
}

.n_left .ulCon > ul > li.on > a::before,
.n_left .ulCon > ul > li > a:hover::before {
    content: "";
    position: absolute;
    left: 0.2rem;
    top: 50%;
    transform: translateY(-50%);
    width: 0.18rem;
    height: 0.18rem;
    box-sizing: border-box;
    pointer-events: none;
    z-index: 1;
}

.n_left .ulCon li > i {
    display: none;
}

.n_right {
    flex: 1;
    min-width: 0;
    padding: 0.08rem 0 0.4rem;
}

.n_right .mianbao {
    font-size: 0.15rem;
    color: #888;
    padding: 0.12rem 0 0.14rem;
    border-bottom: 0.02rem solid #2c2c2c;
    margin-bottom: 0.22rem;
    line-height: 1.5;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.04rem;
}

.n_right .mianbao > a:first-of-type {
    position: relative;
    padding-left: 0.25rem;
}

.n_right .mianbao > a:first-of-type::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 0.16rem;
    height: 0.16rem;
    background: url("../images/home.png") center / contain no-repeat;
}

.n_right .mianbao a {
    color: #888;
    text-decoration: none;
}

.n_right .mianbao a:hover {
    color: #3c5a64;
}

.n_right .mianbao i {
    font-style: normal;
    color: #bbb;
}

.n_titu ul {
    list-style: none;
    margin: 0;
    padding: 0.08rem 0.12rem;
    border-radius: 0.06rem;
}

.n_titu > ul > li {
    margin-bottom: 0;
    border-bottom: 1px dashed #d8d8d8;
}


.n_titu .flex-center-noCenter {
    width: 100%;
}

.n_titu a.clearfix {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0.12rem;
    background: transparent;
    border: none;
    border-radius: 0;
    box-shadow: none;
    padding: 0.14rem 0.06rem;
    text-decoration: none;
    color: inherit;
    transition: background-color 0.2s ease;
}

.n_titu a.clearfix:hover {
    box-shadow: none;
    background: rgba(51, 94, 105, 0.06);
}

.n_titu .text {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0.12rem;
    text-align: left;
}

.n_titu h5.line1 {
    position: relative;
    margin: 0;
    padding-left: 0.2rem;
    flex: 1;
    min-width: 0;
    font-size: 0.18rem;
    font-weight: 400;
    color: #1a1a1a;
    line-height: 1.5;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    transition: color 0.2s ease;
}

.n_titu h5.line1::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 0.08rem;
    height: 0.08rem;
    border-radius: 50%;
    background: #3c5a64;
}

.n_titu a.clearfix:hover h5.line1 {
    color: #3c5a64;
}

.n_titu .text > i {
    display: block;
    flex-shrink: 0;
    margin-left: auto;
    margin-top: 0;
    padding-top: 0;
    font-style: normal;
    font-size: 0.16rem;
    color: #777;
    white-space: nowrap;
}

.n_right .show {
    margin-top: 0.4rem
}

.show01 {
    margin-bottom: 0.35rem
}

.show01 .show01-ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 0.12rem 0.16rem;
    margin: 0;
    padding: 0 0 0.22rem;
    list-style: none;
    border-bottom: 1px solid #e2e8eb;
}

.show01 .show01-ul li {
    margin: 0;
    list-style: none;
}

.show01 .show01-ul li div {
    display: inline-flex;
    align-items: center;
    gap: 0.06rem;
    box-sizing: border-box;
    padding: 0.08rem 0.16rem;
    font-size: 0.16rem;
    line-height: 1.45;
    color: #000;
    border-radius: 0.08rem;
}

.show01 .show01-ul li div img {
    width: 0.16rem;
    height: 0.16rem;
    object-fit: contain;
    flex-shrink: 0;
    opacity: 0.88;
}


.show01 h5 {
    font-size: 0.22rem;
    line-height: 0.32rem;
    text-align: center;
    margin-bottom: 0.2rem;
    font-weight: bold;
    color: #323232;
    height: 0.32rem
}

.show01 p {
    padding-bottom: 0.2rem;
    text-align: center;
    font-size: 0.14rem;
    color: #666666;
    border-bottom: 1px solid #dcdcdc;
    word-break: break-all
}

.show02 p {

    color: #323232;
    line-height: 0.36rem!important;
    margin-bottom: 0.14rem;

    background: none !important;
    word-break: break-all
}

.show02 p strong {
    background: none !important
}

.show02 p iframe {
    border: 0px solid #DDDDDD !important
}

.show02 p audio {
    margin: 0 auto
}

.show02 table {
    margin: 0 auto !important;
    overflow-x: scroll
}

.show02 table p {
    text-indent: 0em
}

.show02 ol {
    padding-left: 1em
}

.show02 li p {
    text-indent: 0em
}

.show02 img {
    display: inherit;
    margin: 0 auto;
    max-width: 86%;
    height: auto!important;
    border: none !important;
    margin-bottom: 0.16rem
}

@media screen and (max-width:749px) {
    .show02 p ,.show02 span{
        font-size: 0.18rem !important;
        line-height: 1.6 !important;
        text-indent:2em !important;
         margin:0 !important;
    }
}