    .nav-list .active{
        color: black;
        font-weight: bold;
        background-color:#fff;
    }
   
   .nav-item.active::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background-color: #DC252C; /* 红色选中横线 */
        }
   
    .ul-color span:hover{
        color:#8B0000;
    }
    .chr_name h4:hover{
        color:#8B0000;
    }

 /*分页容器 */
    .pagination {
      display: flex;
      justify-content: center;
      margin: 20px 0;
      list-style: none;
      padding: 0;
    }
    
     /*所有页码通用样式 */
    .pagination li {
      margin: 0 3px;
    }
    
    .pagination li a,
    .pagination li span {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-width: 36px;
      height: 36px;
      padding: 0 8px;
      border-radius: 4px;
      text-decoration: none;
      font-size: 14px;
      transition: all 0.3s ease;
    }
    
     /*普通页码样式 */
    .pagination li:not(.active) a,
    .pagination li:not(.active) span {
      background-color: #fff;
      color: #666; 
      border: 1px solid #ddd;
    }
    
     /*鼠标悬停效果（非当前页） */
    .pagination li:not(.active) a:hover {
      background-color: #f5f5f0; /* 你的浅灰色背景 */
      border-color: #ccc;
      color: #8B0000; /* 你的主色调 */
      transform: translateY(-1px);
    }
    
     /*当前选中页样式 */
    .pagination li.active a,
    .pagination li.active span {
      background-color: #8B0000;  
      color: #fff; 
      border: 1px solid #8B0000; 
      font-weight: bold;
      box-shadow: 0 2px 5px rgba(139, 0, 0, 0.2); 
    }
    
     /*禁用状态（上一页/下一页不可点击时） */
    .pagination li.disabled span {
      background-color: #f9f9f9;
      color: #ccc;
      border-color: #eee;
      cursor: not-allowed;
    }
    
     /*上一页/下一页箭头样式 */
    .pagination li a i,
    .pagination li span i {
      font-size: 16px;
    }
    
     :root {
            --primary: #8B0000;      
            --secondary: #D2B48C;    
            --neutral: #333333;      
            --light: #666666;        
            --neutral-light: #F5F5F0; 
            --white: #FFFFFF;
            --gray-light: #E5E7EB;
            --gray: #9CA3AF;
            --gray-dark: #4B5563;
            --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
            --transition: all 0.3s ease;
        }
        
        * {
            margin: 0;
            padding: 0;
            /*box-sizing: border-box;*/
        }
        
        body {
            font-family: 'Noto Sans SC', 'SimSun', serif;
            max-width: 100vw;
            background-color: #fff;
            color: var(--neutral);
            line-height: 1.6;

        }
        
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 16px;
        }
        
        /* 通用样式 */
        a {
            text-decoration: none;
            /*color: inherit;*/
        }
        
        ul {
            list-style: none;
            
        }
        
        
        .btn {
            display: inline-block;
            padding: 8px 16px;
            border-radius: 6px;
            transition: var(--transition);
            font-weight: 500;
            text-align: center;
            cursor: pointer;
            border: none;
        }
        
        .btn-primary {
            background-color: var(--primary);
            color: var(--white);
        }
        
        .btn-primary:hover {
            background-color: #6d0000;
        }
        
        .btn-outline {
            border: 1px solid var(--primary);
            color: var(--primary);
            background-color: transparent;
        }
        
        .btn-outline:hover {
            background-color: var(--primary);
            color: var(--white);
        }
        
        .section {
            margin-bottom: 48px;
        }
        
        .section-title {
            font-size: 24px;
            font-weight: bold;
            margin-bottom: 6px;
            padding-bottom: 8px;
            /*border-bottom: 2px solid var(--primary);*/
            display: inline-block;
            color: #7a1e14;
            font-weight: 700;
        }
        
        .text-shadow {
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
        }
        
        .archive-card {
            background-color: var(--white);
            border-radius: 8px;
            box-shadow: var(--shadow);
            overflow: hidden;
            transition: var(--transition);
            border-top:1px solid var(--transition);
        }
        
        .archive-card:hover {
            box-shadow: var(--shadow-lg);
            transform: translateY(-4px);
        }
        
        /* 顶部通知栏 */
        .top-notice {
            background-color: var(--primary);
            color: var(--white);
            text-align: center;
            padding: 8px 0;
            font-size: 14px;
        }
        
        .top-notice a {
            text-decoration: underline;
            color: var(--secondary);
        }
        
        /* 头部区域 */
        header {
            background-color: var(--white);
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
            /*padding: 16px 0;*/
        }
        
        .header-content {
            display: flex;
            flex-direction: column;
            align-items: center;
        }
        
        .logo {
            display: flex;
            align-items: center;
            margin-bottom: 16px;
        }
        
        .logo-icon {
            width: 64px;
            height: 64px;
            background-color: var(--primary);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 16px;
        }
        
        .logo-icon i {
            color: var(--white);
            font-size: 32px;
        }
        
        .logo-text h1 {
            font-size: 24px;
            font-weight: bold;
            color: var(--primary);
            margin-bottom: 4px;
        }
        
        .logo-text p {
            color: var(--light);
            font-size: 14px;
        }
        
        .search-box {
            width: 100%;
            position: relative;
        }
        
        .search-box input {
            width: 100%;
            padding: 8px 16px 8px 16px;
            border: 1px solid #ddd;
            border-radius: 6px;
            font-size: 14px;
            
            background: #fff;
        }
        
        .search-box button {
            position: absolute;
            right: 12px;
            top: 50%;
            transform: translateY(-50%);
            background: none;
            border: none;
            color: var(--light);
            cursor: pointer;
        }
        
        .search-box button:hover {
            color: var(--primary);
        }
        
        /* 导航栏 */
        nav {
            background-color: #8B0000;
            /*border-top: 1px solid #eee;*/
            /*border-bottom: 1px solid #eee;*/
            position: sticky;
            top: 0;
            z-index: 50;
        }
        
        .nav-container {
            padding:16px 0 16px 0;
            overflow-x: auto;
        }
        
        .nav-list {
            display: flex;
            white-space: nowrap;
            padding: 0;
            margin: 0;
            font-size: 19px;
        }
        
        .nav-item {
            padding: 16px 16px 18px;
            position: relative;
            /*transition: var(--transition);*/
            color: #fff;
            border-right:3px solid #8B0000;
        }
        
        .nav-item:hover {
            color: black;
            background-color:#fff;
            font-weight: bold;
        }
        
        .nav-item::after {
            content: '';
            position: absolute;
            /*bottom: 0;*/
            top:0;
            left: 0;
            width: 0;
            height: 4px;
            background-color: red;
            /*transition: var(--transition);*/
        }
        
        .nav-item:hover::after {
            width: 100%;
        }
        
        /* 主轮播图 */
        #home {
            height: 300px;
            position: relative;
            overflow: hidden;
        }
        
        .carousel {
            height: 100%;
            position: relative;
        }
        
        .carousel-item {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: opacity 1s ease;
        }
        
        .carousel-item.active {
            opacity: 1;
        }
        
        .carousel-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .carousel-caption {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.4);
            display: flex;
            align-items: center;
        }
        
        .carousel-text {
            max-width: 400px;
            color: var(--white);
            padding: 0 16px;
        }
        
        .carousel-text h2 {
            font-size: 32px;
            margin-bottom: 16px;
            font-weight: bold;
        }
        
        .carousel-text p {
            font-size: 18px;
            margin-bottom: 24px;
        }
        
        .carousel-control {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 40px;
            height: 40px;
            background-color: rgba(255, 255, 255, 0.3);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            cursor: pointer;
            transition: var(--transition);
            border: none;
        }
        
        .carousel-control:hover {
            background-color: rgba(255, 255, 255, 0.5);
        }
        
        .carousel-control.prev {
            left: 16px;
        }
        
        .carousel-control.next {
            right: 16px;
        }
        
        /* 主要内容区域 */
        /*main {*/
        /*    padding: 32px 0;*/
        /*}*/
        
        /* 快速链接 */
        .quick-links {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 16px;
            margin-bottom: 48px;
        }
        
        .quick-link {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            padding: 16px;
            text-align: center;
        }
        
        .link-icon {
            width: 48px;
            height: 48px;
            background-color: rgba(139, 0, 0, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 12px;
        }
        
        .link-icon i {
            color: var(--primary);
        }
        
        .link-text {
            font-size: 14px;
        }
        
        /* 最新公告 */
        .announcements {
            margin-bottom: 48px;
        }
        
        .announcement-list {
            display: grid;
            grid-template-columns: 1fr;
            gap: 24px;
        }
        
        .announcement-item {
            padding: 20px;
        }
        
        .announcement-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 12px;
        }
        
        .announcement-tag {
            background-color: rgba(139, 0, 0, 0.1);
            color: var(--primary);
            font-size: 12px;
            padding: 2px 8px;
            border-radius: 4px;
        }
        
        .announcement-date {
            color: var(--light);
            font-size: 14px;
        }
        
        .announcement-title {
            font-weight: bold;
            margin-bottom: 8px;
            transition: var(--transition);
        }
        
        .announcement-title a:hover {
            color: var(--primary);
        }
        
        .announcement-content {
            color: var(--light);
            font-size: 14px;
            margin-bottom: 16px;
            display: -webkit-box;
            -webkit-line-clamp: 3;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }
        
        .announcement-more {
            color: var(--primary);
            font-size: 14px;
            display: inline-flex;
            align-items: center;
        }
        
        .announcement-more i {
            margin-left: 4px;
        }
        
        .view-more {
            text-align: center;
            margin-top: 24px;
        }
        
        /* 档案宣传 */
        .publicity {
            margin-bottom: 48px;
        }
        
        .publicity-content {
            display: grid;
            grid-template-columns: 1fr;
            gap: 24px;
        }
        
        .publicity-main {
            grid-column: 1 / -1;
        }
        
        .publicity-main img {
            width: 100%;
            height: 240px;
            object-fit: cover;
        }
        
        .publicity-details {
            padding: 20px;
        }
        
        .publicity-title {
            font-size: 20px;
            font-weight: bold;
            margin-bottom: 12px;
        }
        
        .publicity-text {
            color: var(--light);
            margin-bottom: 16px;
        }
        
        .publicity-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            margin-bottom: 16px;
        }
        
        .publicity-tag {
            background-color: var(--neutral-light);
            color: var(--light);
            font-size: 12px;
            padding: 4px 12px;
            border-radius: 12px;
        }
        
        .publicity-list {
            display: flex;
            flex-direction: column;
            gap: 24px;
        }
        
        .publicity-item {
            padding: 16px;
            display: flex;
            gap: 16px;
        }
        
        .publicity-item img {
            width: 80px;
            height: 80px;
            object-fit: cover;
            border-radius: 4px;
        }
        
        .publicity-item-content {
            flex: 1;
        }
        
        .publicity-item-title {
            font-weight: bold;
            margin-bottom: 4px;
            transition: var(--transition);
        }
        
        .publicity-item-title a:hover {
            color: var(--primary);
        }
        
        .publicity-item-text {
            color: var(--light);
            font-size: 14px;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
            margin-bottom: 4px;
        }
        
        .publicity-item-date {
            color: var(--light);
            font-size: 12px;
        }
        
        /* 档案征集和接收标准 */
        .two-column {
            display: grid;
            grid-template-columns: 1fr;
            gap: 32px;
            margin-bottom: 48px;
        }
        
        .collection, .standards {
            margin-bottom: 24px;
        }
        
        .collection-item, .standards-item {
            padding: 20px;
            margin-bottom: 24px;
        }
        
        .collection-title, .standards-title {
            font-size: 18px;
            font-weight: bold;
            margin-bottom: 16px;
        }
        
        .collection-list, .standards-list {
            margin-bottom: 16px;
        }
        
        .collection-list li, .standards-list li {
            display: flex;
            margin-bottom: 8px;
            color: var(--light);
        }
        
        .collection-list i, .standards-list i {
            color: var(--primary);
            margin-right: 8px;
            margin-top: 6px;
        }
        
        .collection-methods {
            display: flex;
            flex-direction: column;
            gap: 16px;
        }
        
        .collection-method {
            display: flex;
            gap: 12px;
        }
        
        .method-icon {
            width: 32px;
            height: 32px;
            background-color: rgba(139, 0, 0, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }
        
        .method-icon i {
            color: var(--primary);
        }
        
        .method-content h4 {
            font-weight: bold;
            margin-bottom: 4px;
        }
        
        .method-content p {
            color: var(--light);
            font-size: 14px;
        }
        
        .standards-categories {
            margin-bottom: 24px;
        }
        
        .standards-category {
            margin-bottom: 16px;
        }
        
        .standards-category h4 {
            font-weight: bold;
            margin-bottom: 8px;
            display: flex;
            align-items: center;
        }
        
        .standards-category h4 i {
            color: var(--primary);
            margin-right: 8px;
        }
        
        .standards-category p {
            color: var(--light);
            font-size: 14px;
            padding-left: 24px;
        }
        
        .collection-more, .standards-more {
            margin-top: 16px;
            padding-top: 16px;
            border-top: 1px solid #eee;
        }
        
        /* 徐州大事记和历史上的今天 */
        .chronicle, .today-in-history {
            margin-bottom: 24px;
        }
        
        .chronicle-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 24px;
        }
        
        .chronicle-year {
            font-weight: bold;
            font-size: 18px;
        }
        
        .chronicle-nav {
            display: flex;
            gap: 8px;
        }
        
        .chronicle-nav-btn {
            width: 32px;
            height: 32px;
            border-radius: 50%;
            border: 1px solid #ddd;
            display: flex;
            align-items: center;
            justify-content: center;
            background-color: transparent;
            cursor: pointer;
            transition: var(--transition);
        }
        
        .chronicle-nav-btn:hover {
            background-color: var(--primary);
            color: var(--white);
            border-color: var(--primary);
        }
        
        .chronicle-list {
            display: flex;
            flex-direction: column;
            gap: 24px;
        }
        
        .chronicle-item {
            display: flex;
        }
        
        .chronicle-date {
            width: 64px;
            text-align: center;
            display: flex;
            flex-direction: column;
            align-items: center;
            margin-right: 16px;
        }
        
        .date-circle {
            width: 40px;
            height: 40px;
            background-color: var(--primary);
            color: var(--white);
            font-size: 14px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .date-line {
            width: 1px;
            height: 100%;
            background-color: #eee;
            margin-top: 8px;
        }
        
        .chronicle-content h4 {
            font-weight: bold;
            margin-bottom: 4px;
        }
        
        .chronicle-content p {
            color: var(--light);
            font-size: 14px;
        }
        
        .today-header {
            text-align: center;
            margin-bottom: 24px;
        }
        
        .today-date {
            font-size: 24px;
            font-weight: bold;
            margin-bottom: 8px;
        }
        
        .today-desc {
            color: var(--light);
        }
        
        .today-events {
            display: flex;
            flex-direction: column;
            gap: 16px;
        }
        
        .today-event {
            padding: 12px;
            background-color: var(--neutral-light);
            border-radius: 6px;
        }
        
        .event-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 8px;
        }
        
        .event-year {
            font-weight: bold;
        }
        
        .event-tag {
            font-size: 12px;
            background-color: rgba(139, 0, 0, 0.1);
            color: var(--primary);
            padding: 2px 8px;
            border-radius: 4px;
        }
        
        .event-content {
            color: var(--light);
            font-size: 14px;
        }
        
        .calendar {
            padding: 20px;
        }
        
        .calendar-title {
            font-weight: bold;
            margin-bottom: 16px;
        }
        
        .calendar-grid {
            display: grid;
            grid-template-columns: repeat(7, 1fr);
            gap: 4px;
            margin-bottom: 8px;
        }
        
        .calendar-day {
            text-align: center;
            font-size: 12px;
            color: var(--light);
            padding: 8px 0;
        }
        
        .calendar-date {
            text-align: center;
            font-size: 12px;
            padding: 8px 0;
            border-radius: 4px;
            cursor: pointer;
            transition: var(--transition);
        }
        
        .calendar-date:hover {
            background-color: rgba(139, 0, 0, 0.1);
        }
        
        .calendar-date.prev {
            color: #ccc;
        }
        
        .calendar-date.current {
            background-color: var(--primary);
            color: var(--white);
        }
        
        .calendar-nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-top: 16px;
        }
        
        .calendar-nav-btn {
            color: var(--primary);
            background: none;
            border: none;
            cursor: pointer;
            font-size: 14px;
            display: flex;
            align-items: center;
        }
        
        .calendar-nav-btn i {
            margin: 0 4px;
        }
        
        .calendar-month {
            font-weight: bold;
            font-size: 14px;
        }
        
        /* 县区动态和市馆动态 */
        .county-news, .city-news {
            margin-bottom: 24px;
        }
        
        .news-list {
            display: flex;
            flex-direction: column;
            gap: 16px;
            margin-bottom: 24px;
        }
        
        .news-item {
            padding: 16px;
            display: flex;
            gap: 16px;
        }
        
        .news-item img {
            width: 96px;
            height: 96px;
            object-fit: cover;
            border-radius: 4px;
        }
        
        .news-content {
            flex: 1;
        }
        
        .news-header {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            margin-bottom: 4px;
        }
        
        .news-title {
            font-weight: bold;
            transition: var(--transition);
        }
        
        .news-title a:hover {
            color: var(--primary);
        }
        
        .news-date {
            color: var(--light);
            font-size: 12px;
        }
        
        .news-text {
            color: var(--light);
            font-size: 14px;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }
        
        .city-news-featured {
            margin-bottom: 24px;
        }
        
        .city-news-featured img {
            width: 100%;
            height: 192px;
            object-fit: cover;
        }
        
        /* 页脚 */
        footer {
            background-color: var(--neutral);
            color: var(--white);
            padding: 40px 0 24px;
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: 1fr;
            gap: 32px;
            margin-bottom: 32px;
        }
        
        .footer-column h3 {
            font-size: 18px;
            font-weight: bold;
            margin-bottom: 16px;
        }
        
        .footer-about p {
            color: #bbb;
            font-size: 14px;
            margin-bottom: 16px;
        }
        
        .footer-social {
            display: flex;
            gap: 16px;
        }
        
        .footer-social a {
            color: #bbb;
            font-size: 20px;
            transition: var(--transition);
        }
        
        .footer-social a:hover {
            color: var(--white);
        }
        
        .footer-links {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }
        
        .footer-links a {
            color: #bbb;
            font-size: 14px;
            transition: var(--transition);
        }
        
        .footer-links a:hover {
            color: var(--white);
        }
        
        .footer-contact {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }
        
        .contact-item {
            display: flex;
            align-items: flex-start;
        }
        
        .contact-item i {
            margin-right: 12px;
            margin-top: 4px;
            color: #bbb;
            flex-shrink: 0;
        }
        
        .contact-item span {
            color: #bbb;
            font-size: 14px;
        }
        
        .footer-subscribe p {
            color: #bbb;
            font-size: 14px;
            margin-bottom: 16px;
        }
        
        .subscribe-form {
            display: flex;
            margin-bottom: 16px;
        }
        
        .subscribe-form input {
            flex: 1;
            padding: 8px 12px;
            border: none;
            border-radius: 4px 0 0 4px;
            font-size: 14px;
        }
        
        .subscribe-form button {
            background-color: var(--primary);
            color: var(--white);
            border: none;
            padding: 0 12px;
            border-radius: 0 4px 4px 0;
            cursor: pointer;
        }
        
        .wechat-qrcode {
            width: 128px;
            height: 128px;
            border-radius: 4px;
            overflow: hidden;
        }
        
        .wechat-qrcode img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .qrcode-text {
            color: #bbb;
            font-size: 12px;
            text-align: center;
            margin-top: 8px;
        }
        
        .footer-bottom {
            border-top: 1px solid #444;
            padding-top: 24px;
            text-align: center;
            color: #999;
            font-size: 14px;
        }
        
        /* 返回顶部按钮 */
        #back-to-top {
            position: fixed;
            bottom: 24px;
            right: 24px;
            width: 48px;
            height: 48px;
            background-color: var(--primary);
            color: var(--white);
            border-radius: 50%;
            box-shadow: var(--shadow);
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            visibility: hidden;
            transition: var(--transition);
            cursor: pointer;
            border: none;
            font-size: 20px;
        }
        
        #back-to-top.visible {
            opacity: 1;
            visibility: visible;
        }
        
        /* 响应式设计 */
        @media (min-width: 768px) {
            
            .header-content {
                flex-direction: row;
                justify-content: space-between;
            }
            
            .logo {
                margin-bottom: 0;
            }
            
            .search-box {
                width: 300px;
            }
            
            .quick-links {
                grid-template-columns: repeat(4, 1fr);
            }
            
            .announcement-list {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .publicity-content {
                grid-template-columns: 2fr 1fr;
            }
            
            .two-column {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .footer-content {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        
        @media (min-width: 1024px) {
            .quick-links {
                grid-template-columns: repeat(8, 1fr);
            }
            
            .announcement-list {
                grid-template-columns: repeat(3, 1fr);
            }
            
            .footer-content {
                grid-template-columns: repeat(4, 1fr);
            }
        }
        
        /* 动画效果 */
        @keyframes breathe {
            0% { transform: scale(1); opacity: 0.8; }
            50% { transform: scale(1.05); opacity: 1; }
            100% { transform: scale(1); opacity: 0.8; }
        }
        
        .breathe {
            animation: breathe 2s infinite ease-in-out;
        }
        
        
        .pub_arc_bak{
            
            background-color:rgb(139 0 0 / 0.1);
        }
    
        .def-word-color{
            color:#8B0000;
            
        }
       h3 a:hover{
           /*font-weight: 800;*/
           color:#8B0000;
       }
        .def-gg-bor{
            border:1px solid #8B0000;
            color:#8B0000;
        }
        .def-gg-bor:hover{
            background-color:#8B0000;
            color:#fff;
        }
        .def-color-a a:hover{
            /*font-weight: 800;*/
           color:#8B0000;
        }
        .def-bac{
            background-color:rgb(245 245 240 / var(--tw-bg-opacity, 1));
        }
       .card-css{
           background-color:#fff;
           border-radius:10px;
       }
       .title-bac{
           background-color:rgb(139 0 0);
       }
       .bt-right{
           float:right;
           margin-top:5px;
       }
       

    .more {
        width: 64px;
        height: 30px;
        line-height: 30px;
        background-image: url(bt-tab-more.png);
        background-position: center;
        background-repeat: no-repeat;
        background-size: 100% 100%;
        padding: 0 0 0 8px;
        font-weight: 400;
        font-size: 14px;
        color: #7a1e14;
        display: block;
    }
    .p-5-text{
        background: url(bt-listPic.png) no-repeat;
        padding-left: 1.1875rem;
        font-size: 16px;
        line-height: 25px;
        background-position: left 10.5px;
        text-align: justify;
        margin-bottom: 13px;
        height:50px;
        overflow: hidden;
        display: -webkit-box;
        -webkit-line-clamp:2;
        -webkit-box-orient:vertical;
        
        a{
            text-align: justify;
            color:#333;
            font-size: 16px;
        }
    }
    .height-300{
        height:300px;
        overflow: hidden;
    }
    .p-5-text2{
        
        width: 100%;
        height: 50px;
        line-height: 50px;
        text-align: left;
        background: rgba(0, 0, 0, 0.5);
        padding: 0 132px 0 20px;
        font-weight: 400;
        font-size: 16px;
        color: #fff;
        position: absolute;
        left: 0;
        bottom: 0;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }
    .swiper {
        width: 100%;
        height: 100%;
    }
    .swiper-pagination-bullet{
        background-color: #fff; 
        opacity: 1;
    }
    .swiper-pagination-bullet-active {
        background-color: #faad14; /* 设置激活状态的颜色 */
    }
    .swiper-slide {
      text-align: center;
      font-size: 18px;
      background: #fff;
      display: flex;
      justify-content: center;
      align-items: center;
      height:300px;
      width: 500px;
      position: relative;
    }

    .swiper-slide img {
      display: block;
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
    .swiper-slide .slider-text{
        width: 100%;
        height: 50px;
        line-height: 50px;
        text-align: left;
        background: rgba(0, 0, 0, 0.5);
        padding: 0 132px 0 20px;
        font-weight: 400;
        font-size: 16px;
        color: #fff!important;
        opacity: 1;
        position: absolute;
        left: 0;
        bottom: 0;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }    