@charset "utf-8";

:root {
    --theme: #a62823;
    --theme-dark: #8a201c;
}

body {
    background: #fff;
}

.w18,
.w1350 {
    max-width: none;
}

/* ========== 头部 ========== */
.header {
    background: #fff;
    position: relative;
    z-index: 100;
}

.header-bar {
    width: 100%;
    height: 0.04rem;
    background: var(--theme);
}

.header-top-wrap {
    background: #fff;
}

.header-top {
    padding: 0.22rem 0 0.2rem;
}

.logo img {
    height: 0.71rem;
    display: block;
}

.search-box {
    display: flex;
    align-items: center;
    width: 2.6rem;
    height: 0.4rem;
    border: 0.01rem solid #dcdcdc;
    border-radius: 0.2rem;
    overflow: hidden;
    padding: 0 0.12rem 0 0.18rem;
    background: #fff;
}

.search-box input {
    flex: 1;
    border: none;
    background: transparent;
    font-size: 0.14rem;
    color: #333;
}

.search-box input::placeholder {
    color: #bbb;
}

.search-box button {
    width: 0.28rem;
    height: 0.28rem;
    border: none;
    background: transparent;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.search-box button img {
    width: 0.18rem;
    height: 0.18rem;
}

/* 导航 */
.nav {
    background: #f2f2f2;
}

.nav-list {
    position: relative;
}

.nav-item {
    position: relative;
    text-align: center;
}

.nav-item > a {
    display: block;
    padding: 0.16rem 0;
    font-size: 0.18rem;
    color: #333;
    white-space: nowrap;
    transition: color 0.3s;
}

.nav-item:hover > a,
.nav-item.active > a {
    color: var(--theme);
}

/* 二级菜单 */
.sub-nav {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    min-width: 1.4rem;
    background: #fff;
    box-shadow: 0 0.04rem 0.15rem rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
    z-index: 200;
    padding: 0.08rem 0;
}

.nav-item.has-sub:hover .sub-nav {
    opacity: 1;
    visibility: visible;
}

.sub-nav li a {
    display: block;
    padding: 0.1rem 0.2rem;
    font-size: 0.16rem;
    color: #666;
    white-space: nowrap;
    transition: background 0.3s, color 0.3s;
}

.sub-nav li a:hover {
    background: var(--theme);
    color: #fff;
}

/* ========== 轮播图 ========== */
.banner {
    position: relative;
    width: 100%;
    padding: 0;
}

.banner-wrap {
    position: relative;
    width: 100%;
    height: 4.2rem;
    overflow: hidden;
}

.banner-swiper {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.banner-swiper .swiper-slide {
    height: 4.2rem;
    display: flex;
    justify-content: flex-end;
}

.banner-swiper .swiper-slide img {
    width: 72%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.banner-left {
    position: absolute;
    left: 0;
    top: 0;
    width: 6.5rem;
    height: 100%;
    clip-path: polygon(0 0, 90% 0, 100% 100%, 0 100%);
    background-color: var(--theme);
    z-index: 3;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: calc((100vw - 18rem) / 2 + 0.45rem);
    padding-right: 0.5rem;
}

.banner-left::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('../images/lunbobg.png') center / cover no-repeat;
    mix-blend-mode: screen;
    opacity: 0.75;
    pointer-events: none;
}

.banner-left .banner-text {
    position: relative;
    z-index: 1;
}

.banner-text {
    color: #fff;
}

.banner-text h2,
.banner-text p {
    transition: opacity 0.5s ease;
}

.banner-text.is-fade h2,
.banner-text.is-fade p {
    opacity: 0;
}

.banner-text h2 {
    font-size: 0.24rem;
    font-weight: normal;
    letter-spacing: 0.01rem;
    margin-bottom: 0.12rem;
    font-family: "Times New Roman", "Georgia", serif;
    line-height: 1.2;
}

.banner-text p {
    font-size: 0.18rem;
    opacity: 0.9;
    line-height: 1.6;
}

.banner-nav {
    position: absolute;
    left: calc((100vw - 18rem) / 2 + 0.45rem);
    bottom: 0.35rem;
    display: flex;
    gap: 0.1rem;
    z-index: 2;
}

.banner-prev,
.banner-next {
    width: 0.36rem;
    height: 0.36rem;
    border-radius: 50%;
    background: rgba(255, 235, 235, 0.92);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.3s;
}

.banner-prev:hover,
.banner-next:hover {
    background: #fff;
}

.banner-prev img,
.banner-next img {
    width: 0.2rem;
}

/* ========== 通用区块 ========== */
.section {
    padding: 0.6rem 0;
}

.section-head {
    margin-bottom: 0.32rem;
}

.section-head-row {
    align-items: flex-end;
}

.section-title {
    display: flex;
    align-items: flex-end;
    gap: 0.05rem;
    margin-bottom: 0.1rem;
}

.tit-main {
    font-size: 0.36rem;
    font-weight: bold;
    color: #333;
    line-height: 1.08;
}

.tit-side {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 0.45rem;
    padding-top: 0.03rem;
    padding-bottom: 0.05rem;
}

.tit-sub {
    font-size: 0.24rem;
    font-weight: normal;
    color: #333;
    font-style: normal;

    white-space: nowrap;
}

.section-en {
    font-size: 0.12rem;
    color: #ccc;
    white-space: nowrap;
}

.section-head-line {
    width: 100%;
    height: 0.01rem;
    background: #e8e8e8;
}

.more-btn {
    display: flex;
    width: 1.15rem;
    height: 0.41rem;
    background: var(--theme);
    color: #fff;
    font-size: 0.13rem;
    line-height: 1.4;
    clip-path: polygon(18% 0, 100% 0, 100% 100%, 0 100%, 0 52%);
    transition: background 0.3s;
    white-space: nowrap;
    flex-shrink: 0;
    justify-content: center;
    align-items: center;
    padding-left: 0.1rem;
}

.more-btn:hover {
    background: var(--theme-dark);
    color: #fff;
}

/* ========== 新闻动态 ========== */
.news-content {
    display: flex;
    gap: 0.3rem;
    align-items: stretch;
}

.news-left {
    flex-shrink: 0;
}

.news-img-box {
    position: relative;
    width: 6.22rem;
    height: 4.51rem;
}

.news-swiper {
    position: relative;
    z-index: 1;
    width: 6.22rem;
    height: 4.51rem;
}

.news-swiper .swiper-slide {
    width: 6.22rem;
    height: 4.51rem;
}

.news-featured {
    display: block;
    width: 6.22rem;
    height: 4.51rem;
}

.news-featured img {
    width: 6.22rem;
    height: 4.51rem;
    display: block;
    object-fit: cover;
    transition: transform 0.5s;
}

.news-featured:hover img {
    transform: scale(1.03);
}

.news-foot {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(0, 0, 0, 0.55);
    padding: 0.13rem 0.16rem;
    box-sizing: border-box;
}

.news-cap-tit {
    flex: 1;
    min-width: 0;
    color: #fff;
    font-size: 0.18rem;
    line-height: 1.4;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    padding-right: 0.15rem;
}

.news-pagination {
    position: static;
    display: flex;
    align-items: center;
    gap: 0.06rem;
    flex-shrink: 0;
    width: auto !important;
}

.news-pagination .swiper-pagination-bullet {
    width: 0.18rem;
    height: 0.04rem;
    background: #fff;
    border-radius: 0;
    opacity: 1;
    cursor: pointer;
    margin: 0 !important;
}

.news-pagination .swiper-pagination-bullet-active {
    background: var(--theme);
}

.news-right {
    flex: 1;
    min-width: 0;
    height: 4.51rem;
}

.news-list {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.news-item {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 0.14rem;
    border-bottom: 0.01rem solid #eee;
    transition: padding-left 0.3s;
    color: #333;
}


.news-item:hover {
    padding-left: 0.06rem;
}

.news-item:hover .news-info h3 {
    color: var(--theme);
}

.news-date {
    width: 0.72rem;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.news-date .day {
    display: block;
    font-size: 0.4rem;
    color: var(--theme);
    font-weight: bold;
    line-height: 1;
}

.news-date .ym {
    display: block;
    font-size: 0.16rem;
    color: #b0b0b0;
    margin-top: 0.05rem;
    line-height: 1;
}

.news-divider {
    width: 0.01rem;
    height: 0.38rem;
    background: #e5e5e5;
    flex-shrink: 0;
}

.news-info {
    flex: 1;
    min-width: 0;
}

.news-info h3 {
    font-size: 0.18rem;
    color: #333;
    font-weight: bold;
    margin-bottom: 0.05rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    transition: color 0.3s;
}

.news-info p {
    font-size: 0.16rem;
    color: #aaa;
    line-height: 1.5;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* ========== 通知公告 ========== */
.notice-section {
    background: #f7f7f7 url('../images/banner1bg.png') no-repeat center;
    background-size: cover;
    position: relative;
}


.notice-section .w1350 {
    position: relative;
    z-index: 1;
}

.notice-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    column-gap: 0.5rem;
    width: 100%;
}

.notice-item {
    display: flex;
    align-items: center;
    gap: 0.14rem;
    min-width: 0;
    max-width: 100%;
    padding: 0.18rem 0;
    border-bottom: 0.01rem solid #e5e5e5;
    box-sizing: border-box;
    color: #333;
    transition: padding-left 0.3s;
    overflow: hidden;
}

.notice-item:hover {
    padding-left: 0.08rem;
}

.notice-date {
    display: flex;
    flex-shrink: 0;
    align-items: stretch;
}

.notice-ym {
    display: flex;
    align-items: center;
    background: var(--theme);
    color: #fff;
    font-size: 0.14rem;
    padding: 0.05rem 0.08rem;
    line-height: 1.2;
    white-space: nowrap;
}

.notice-day {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 0.3rem;
    background: #fff;
    border: 0.01rem solid #ddd;
    border-left: none;
    color: #666;
    font-size: 0.18rem;
    padding: 0.04rem 0.06rem;
    line-height: 1.2;
}

.notice-tit {
    flex: 1;
    min-width: 0;
    display: block;
    font-size: 0.18rem;
    color: #333;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    transition: color 0.3s;
}

.notice-item:hover .notice-tit {
    color: var(--theme);
}

/* ========== 教学科研 + 学生工作 ========== */
.teach-student-section {
    position: relative;
    padding: 0.6rem 0 1.8rem;
    background: url('../images/banner2bg.png') no-repeat center calc(100% + 3.4rem);
    background-size: cover;
}

.teach-student-inner {
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.research-swiper {
    overflow: hidden;
    margin-bottom: 0.1rem;
}

.research-card {
    display: block;
    color: #333;
    transition: transform 0.3s;
}

.research-card:hover {
    transform: translateY(-0.03rem);
}

.research-img {
    width: 100%;
    height: 1.75rem;
    overflow: hidden;
}

.research-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s;
}

.research-card:hover .research-img img {
    transform: scale(1.05);
}

.research-body {
    padding: 0.14rem 0 0.06rem;
}

.research-date {
    font-size: 0.17rem;
    color: var(--theme);
    display: block;
    margin-bottom: 0.08rem;
    line-height: 1.4;
}

.research-body h3 {
    font-size: 0.18rem;
    color: #333;
    font-weight: bold;
    margin-bottom: 0.08rem;
    line-height: 1.5;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    transition: color 0.3s;
    height: 0.6rem;
}

.research-card:hover .research-body h3 {
    color: var(--theme);
}

.research-body p {
    font-size: 0.16rem;
    color: #999;
    line-height: 1.7;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.student-head {
    margin-top: 0.45rem;
}

.student-list {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    column-gap: 0.5rem;
    width: 100%;
}

.student-item {
    display: flex;
    align-items: flex-start;
    gap: 0.14rem;
    min-width: 0;
    max-width: 100%;
    padding: 0.2rem 0;
    border-bottom: 0.01rem solid #d7d7d7;
    color: #333;
    transition: padding-left 0.3s;
    overflow: hidden;
}

.student-item:hover {
    padding-left: 0.06rem;
}

.student-date {
    width: 0.46rem;
    flex-shrink: 0;
    border: 0.01rem solid #ddd;
    overflow: hidden;
    text-align: center;
    background: #fff;
}

.student-m {
    display: block;
    background: var(--theme);
    color: #fff;
    font-size: 0.16rem;
    line-height: 1.3;
    padding: 0.04rem 0;
}

.student-d {
    display: block;
    background: #fff;
    color: #666;
    font-size: 0.18rem;
    line-height: 1.3;
    padding: 0.04rem 0;
}

.student-info {
    flex: 1;
    min-width: 0;
    padding-top: 0.02rem;
}

.student-info h3 {
    font-size: 0.18rem;
    color: #333;
    font-weight: bold;
    margin-bottom: 0.06rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    transition: color 0.3s;
}

.student-item:hover .student-info h3 {
    color: var(--theme);
}

.student-info p {
    font-size: 0.16rem;
    color: #999;
    line-height: 1.6;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* ========== 页脚 ========== */
.footer {
    background: var(--theme);
    padding: 0.32rem 0;
}

.footer-inner {
    gap: 0.2rem;
}

.footer-logo {
    flex-shrink: 0;
}

.footer-logo img {
    height: 0.65rem;
    display: block;
}

.footer-info {
    flex: 1;
    min-width: 0;
    text-align: right;
    padding: 0 0.35rem 0 0.2rem;
    color: rgba(255, 255, 255, 0.92);
    font-size: 0.16rem;
    line-height: 1.5;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.back-top {
    width: 0.4rem;
    height: 0.4rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform 0.3s, background 0.3s;
    position: absolute;
    right: -1.5rem;
}

.back-top:hover {
    transform: translateY(-0.03rem);
    background: rgba(0, 0, 0, 0.32);
}

.back-top img {
    width: 0.4rem;
    height: 0.4rem;
}


/* ========== 新闻网列表页 .n_container（侧栏 + 面包屑 + 卡片列表） ========== */
.n_container {
    padding: 0 0 0.6rem;
    margin-top: 0.5rem;
}

.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 {
    width: 3.05rem;
    height: 1.21rem;
    background: #a62823;
    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: #a62823;
    font-weight: 600;
}

.n_left .ulCon > ul > li.on > a {
    color: #a62823;
    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: #a62823;
}

.n_titu a.clearfix:hover h5.line1 {
    color: #a62823;
}

.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: 0;
}

.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
}


.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
}