@charset "utf-8";

/* ========== 变量 ========== */
:root {
    --theme-color: #8e0e31;
    --text-color: #333;
    --text-grey: #999;
    --text-light: #666;
    --border-color: #e5e5e5;
}

/* ========== 头部 ========== */
.header {
    background: var(--theme-color);
}

.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.22rem 0 0.18rem;
}

.header-logo img {
    display: block;
    height: 0.64rem;
    width: auto;
}

.header-search {
    display: flex;
    align-items: center;
    background: rgba(255,255,255,0.2);
    border-radius: 0.3rem;
    overflow: hidden;
    width: 2.8rem;
    height: 0.35rem;
    padding-left: 0.22rem;
}

.header-search input {
    flex: 1;
    height: 100%;
    border: 0;
    font-size: 0.14rem;
    color: #fff;
    background: transparent;
}

.header-search input::placeholder {
    color: #d3ccce;
}

.search-btn {
    flex-shrink: 0;
    width: 0.35rem;
    height: 0.35rem;
    border: 0;
    background: transparent;
    cursor: pointer;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-btn img {
    width: 0.3rem;
    height: 0.3rem;
    display: block;
}

/* 导航 */
.header-nav {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.nav-list {
    justify-content: space-between;
}

.nav-item {
    position: relative;
}

.nav-item > a {
    display: block;
    color: #fff;
    font-size: 0.2rem;
    line-height: 0.56rem;
    padding: 0 0.08rem;
    white-space: nowrap;
    transition: opacity 0.3s;
    font-weight: 600;
}

.nav-item > a:hover{
    opacity: 0.85;
}

/* 二级导航 */
.sub-nav {
    position: absolute;
    left: 50%;
    top: 100%;
    transform: translateX(-50%);
    min-width: 1.4rem;
    background: #fff;
    box-shadow: 0 0.04rem 0.16rem rgba(0, 0, 0, 0.12);
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
    padding: 0.06rem 0;
}

.sub-nav li a {
    display: block;
    padding: 0.1rem 0.2rem;
    font-size: 0.18rem;
    color: var(--text-color);
    white-space: nowrap;
    text-align: center;
    transition: background 0.3s, color 0.3s;
}

.sub-nav li a:hover {
    background: rgba(142, 14, 49, 0.06);
    color: var(--theme-color);
}

.nav-item.has-sub:hover .sub-nav {
    opacity: 1;
    visibility: visible;
}

/* ========== 轮播图 ========== */
.banner {
    width: 100%;
    overflow: hidden;
}

.banner-swiper {
    width: 100%;
    height: 6rem;
}

.banner-swiper .swiper-slide {
    height: 6rem;
    overflow: hidden;
}

.banner-swiper .swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.banner-swiper .swiper-pagination {
    bottom: 0.28rem;
    left: 50%;
    transform: translateX(-50%);
    width: auto !important;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.08rem;
    padding: 0.1rem 0.18rem;
    background: rgba(0, 0, 0, 0.28);
    border-radius: 0.3rem;
    backdrop-filter: blur(0.06rem);
}

.banner-swiper .swiper-pagination-bullet {
    width: 0.1rem;
    height: 0.1rem;
    margin: 0 !important;
    background: rgba(255, 255, 255, 0.5);
    opacity: 1;
    border-radius: 50%;
    transition: background 0.3s ease, transform 0.3s ease;
}

.banner-swiper .swiper-pagination-bullet:hover {
    background: rgba(255, 255, 255, 0.85);
    transform: scale(1.1);
}

.banner-swiper .swiper-pagination-bullet-active {
    background: #fff;
}

/* ========== 主内容 ========== */
.main {
    background: #fff;
    padding-bottom: 0.6rem;
}

.section {
    padding: 0.5rem 0 0.7rem;
}

/* 栏目标题 */
.section-head {
    margin-bottom: 0.5rem;
}

.section-title {
    gap: 0.14rem;
    text-indent: 0.2rem;
}

.section-title-cn {
    position: relative;
    flex-shrink: 0;
}

.section-title-cn::before {
    content: '';
    position: absolute;
    left: -0.06rem;
    top: 50%;
    transform: translateY(-50%);
    width: 0.79rem;
    height: 0.84rem;
    background: url(../image/xlogo.png) no-repeat center;
    background-size: contain;
    opacity: 1;
    z-index: 0;
    pointer-events: none;
}

.section-title-cn h2 {
    position: relative;
    z-index: 1;
    font-size: 0.4rem;
    font-weight: bold;
    color: #000;
    line-height: 1;
}

.section-title-en {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding-bottom: 0.02rem;
}

.section-en {
    font-size: 0.3rem;
    color: #999;
    letter-spacing: 0.01rem;
    text-transform: uppercase;
    font-family: "Times New Roman", "SimSun", serif;
    line-height: 1.1;
    white-space: nowrap;
    text-indent: 0;
}

.section-en-line {
    display: block;
    width: 1rem;
    min-width: 1.2rem;
    height: 0.06rem;
    margin-top: 0.05rem;
    background: linear-gradient(to right, #bbb 50%, var(--theme-color) 50%);
}

.section-more {
    font-size: 0.18rem;
    color: #999;
    flex-shrink: 0;
    padding-bottom: 0.04rem;
    transition: color 0.3s, transform 0.3s;
}

.section-more img {
    width: 0.36rem;
    height: 0.36rem;
    margin-left: 0.08rem;
    display: block;
    transition: transform 0.4s ease;
}

.section-more:hover {
    color: var(--theme-color);
    transform: translateX(0.04rem);
}

.section-more:hover img {
    transform: rotate(90deg);
}

/* ========== 新闻动态 ========== */
.news-section-wrap {
    width: 100%;
    background: #faf9f9;
}

.news-body {
    gap: 0.4rem;
    align-items: flex-start;
}

.news-featured {
    width: 8.19rem;
    height: 4.97rem;
    flex-shrink: 0;
    overflow: hidden;
}

.news-featured-swiper {
    width: 100%;
    height: 100%;
}

.news-featured-swiper .swiper-slide {
    height: 4.97rem;
}

.news-featured-link {
    display: block;
    position: relative;
    width: 100%;
    height: 100%;
    color: #fff;
    overflow: hidden;
}

.news-featured-pic {
    width: 100%;
    height: 100%;
}

.news-featured-pic img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.news-featured-link:hover .news-featured-pic img {
    transform: scale(1.03);
}

.news-featured-info {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 0.14rem 0.22rem;
    background: rgba(142, 14, 49, 0.78);
    transition: background 0.3s;
}

.news-featured-link:hover .news-featured-info {
    background: rgba(142, 14, 49, 0.92);
}

.news-featured-tit {
    flex: 1;
    min-width: 0;
    font-size: 0.24rem;
    font-weight: normal;
    line-height: 1.4;
    color: #fff;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    padding-right: 0.2rem;
}

.news-featured-date {
    flex-shrink: 0;
    font-size: 0.24rem;
    color: rgba(255, 255, 255, 0.9);
}

.news-list {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 0.11rem;
}

.news-list-item {
    background: #fff;
    transition: box-shadow 0.3s, transform 0.3s;
}

.news-list-item:hover {
    box-shadow: 0 0.04rem 0.2rem rgba(142, 14, 49, 0.1);
    transform: translateX(0.06rem);
}

.news-list-item a {
    padding: 0.23rem 0.2rem;
    color: var(--text-color);
    transition: color 0.3s;
}

.news-list-tit {
    flex: 1;
    min-width: 0;
    font-size: 0.18rem;
    line-height: 1.5;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    padding-right: 0.24rem;
    transition: color 0.3s;
}

.news-list-date {
    flex-shrink: 0;
    font-size: 0.18rem;
    color: #999;
    transition: color 0.3s;
}

.news-list-item a:hover .news-list-tit,
.news-list-item a:hover .news-list-date {
    color: var(--theme-color);
}

/* ========== 四宫格栏目 ========== */
.grid-section {
    padding-top: 0.73rem;
    padding-bottom: 0.1rem;
}

.grid-wrap {
    flex-wrap: wrap;
    gap: 0.78rem 0.59rem;
}

.grid-item {
    width: calc(50% - 0.3rem);
    transition: transform 0.3s;
}

.grid-item:hover {
    transform: translateY(-0.04rem);
}

.grid-list {
    background: #faf9f9;
    padding: 0.24rem 0.24rem 0.33rem;
}

.grid-list-item {
    border-bottom: 1px dashed #ddd;
}

.grid-list-item a {
    padding: 0.18rem 0;
    color: var(--text-color);
    transition: color 0.3s, padding-left 0.3s;
}

.grid-list-item a:hover {
    padding-left: 0.08rem;
}

.grid-list-tit {
    flex: 1;
    min-width: 0;
    font-size: 0.18rem;
    line-height: 1.5;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    padding-right: 0.24rem;
    transition: color 0.3s;
}

.grid-list-date {
    flex-shrink: 0;
    font-size: 0.18rem;
    color: #999;
    transition: color 0.3s;
}

.grid-list-item a:hover .grid-list-tit,
.grid-list-item a:hover .grid-list-date {
    color: var(--theme-color);
}

/* ========== 底部 ========== */
.footer {
    position: relative;
    background: var(--theme-color);
    color: #fff;
    overflow: hidden;
}
.footer-wrap {
    width: 100%;
    background: url("../image/bottombg.png") center bottom no-repeat;
    background-size: 100% auto;
}

.footer-inner {
    position: relative;
    z-index: 1;
    padding: 0.4rem 0 0.05rem;
}

.footer-links {
    margin-bottom: 0.5rem;
}

.footer-links-hd h3 {
    font-size: 0.24rem;
    font-weight: normal;
    color: #fff;
    line-height: 1;
}

.footer-links-line {
    display: block;
    width: 0.36rem;
    height: 0.02rem;
    background: #fff;
    margin-top: 0.1rem;
}

.footer-links-list {
    flex-wrap: wrap;
    font-size: 0.18rem;
    line-height: 1.8;
    margin-top: 0.1rem;
}

.footer-links-list a {
    color: rgba(255, 255, 255, 0.88);
    transition: color 0.3s;
}

.footer-links-list a:hover {
    color: #fff;
}

.footer-links-sep {
    margin: 0 0.14rem;
    color: rgba(255, 255, 255, 0.45);
}

.footer-bottom {
    align-items: flex-end;
    padding-bottom: 0.1rem;
}

.footer-logo img {
    display: block;
    height: 0.6rem;
    width: auto;
}

.footer-right img {
    display: block;
    height: 1.26rem;
    width: auto;
    margin-bottom: 0.5rem;
}

.footer-copy {
    text-align: right;
    padding-top: 0.16rem;
    padding-bottom: 0.2rem;
}

.footer-copy div {
    font-size: 0.18rem;
    color: rgba(255, 255, 255, 0.3);
    line-height: 1;
}


#nav_slide {
    display: none;
}
/* ========== 新闻网列表页 .n_container（侧栏 + 面包屑 + 卡片列表） ========== */
.n_container {
    padding: 0 0 0.6rem;

}

.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.56rem 0 0;
    width: 3.05rem;
    height: 1.21rem;
    background: #8e1537;
    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: #8e1537;
    font-weight: 600;
}

.n_left .ulCon > ul > li.on > a {
    color: #8e1537;
    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("../image/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: #8e1537;
}

.n_titu a.clearfix:hover h5.line1 {
    color: #8e1537;
}

.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,.show04 img{
    display: inherit;
    margin: 0 auto;
    max-width: 86%;
    height: auto!important;
    border: none !important;
    margin-bottom: 0.16rem
}

.show02 table,.show04 table{
width: 100%;

}
/* ========== 图片/视频列表 piclist-grid（每行四列） ========== */
.piclist-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.55rem 0.65rem;
    margin: 0;
    padding: 0;
}

.piclist-card {
    display: block;
    position: relative;
    grid-column: span 1;
    min-width: 0;
    width: 100%;
    max-width: 1.68rem;
    justify-self: center;
    border-radius: 0.08rem;
    overflow: hidden;
    box-shadow: 0 0.04rem 0.14rem rgba(0, 0, 0, 0.1);
    text-decoration: none;
    color: inherit;
    transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.piclist-card:hover {
    box-shadow: 0 0.14rem 0.32rem rgba(0, 0, 0, 0.24);
    transform: translateY(-0.03rem);
}

.piclist-card:focus-visible {
    outline: 2px solid #335e69;
    outline-offset: 2px;
}

.piclist-card-media {
    display: block;
    aspect-ratio: 5 / 7; /* 一寸照 25mm×35mm */
    overflow: hidden;
    background: #e8ecee;
    border-radius: 0.08rem;
}

.piclist-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.piclist-card:hover .piclist-card-media img {
    transform: scale(1.04);
}

.piclist-card-caption {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 0.06rem 0.08rem;
    font-size: 0.12rem;
    font-weight: 600;
    line-height: 1.45;
    color: #fff;
    text-align: center;
    background: rgba(0, 0, 0, 0.6);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.n_container .n_right .TextList {
    padding-top: 0;
    margin-top: 0.4rem;
    min-height: 4.5rem
}

.TextList ul li {
    padding-bottom: 0rem;
    position: relative;
    transition: 0.6s all;
    padding-left: 0.16rem
}

.TextList ul li a {
    display: flex;
    position: relative;
    overflow: hidden;
    position: relative;
    justify-content: space-between;
    transition: 0.4s all;
    align-items: center;
    padding: 0.2rem 0 0.1rem 0.09rem;
    border-bottom: 0.01rem solid rgba(7, 45, 155, 0.12);
    box-sizing: border-box
}


.TextList ul li a p {
    transition: 0.6s all;
    line-height: 0.28rem;
    font-size: 0.18rem;
    color: #323232;
    position: relative;
    padding-left: 0.2rem;
    transition: 0.4s all;
    flex: 1;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.TextList ul li a span {
    font-size: 0.18rem !important;

    font-weight: normal;

}

.TextList ul li a .data {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center
}