 /* 全局样式重置 */
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: "微软雅黑", sans-serif;
    }

    body {
      background-color: #e63946; /* 主体红色背景 */
      color: #fff;
      line-height: 1.6;
    }

a {
    text-decoration: none;
}

    /* 导航栏样式 */
    header {
      background-color: #c1121f; /* 深红色导航栏 */
      padding: 0.5rem 1rem;
      position: sticky;
      top: 0;
      z-index: 999;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    /* Logo容器 */
    .logo-container {
      display: flex;
      align-items: center;
      gap: 0.8rem;
    }

    /* Logo样式 */
    .logo-img {
      height: 50px;
      width: 50px;
      
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #c1121f;
      font-size: 1.5rem;
      font-weight: bold;
     
    }
.logo-img img {
    width: 50px;
    height: 50px;
}
    

    .logo-text {
      font-size: 1.5rem;
      font-weight: bold;
      color: white;
      text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
    }

    /* 汉堡菜单按钮（默认隐藏，手机端显示） */
    .menu-toggle {
      display: none;
      background: none;
      border: 2px solid rgba(255, 255, 255, 0.7);
      color: white;
      font-size: 1.5rem;
      cursor: pointer;
      padding: 0.4rem 0.8rem;
      border-radius: 4px;
      transition: all 0.3s;
      z-index: 1000;
    }

    .menu-toggle:hover {
      background-color: rgba(255, 255, 255, 0.1);
      border-color: #fff;
    }

    /* 导航菜单容器 */
    .nav-container {
      display: flex;
      align-items: center;
    }

    /* 导航菜单 */
    nav {
      transition: all 0.3s ease;
    }

    nav ul {
      list-style: none;
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      margin: 0;
      padding: 0;
    }

    nav li {
      margin: 0.5rem 0.8rem;
    }

    nav a {
      color: #fff;
      text-decoration: none;
      font-size: 1rem;
      padding: 0.5rem 0.8rem;
      border-radius: 4px;
      transition: background 0.3s, transform 0.2s;
      display: flex;
      align-items: center;
      gap: 0.5rem;
    }

    nav a:hover {
      background-color: #ff4d4d; /* 悬停浅红 */
      transform: translateY(-2px);
    }

    nav a i {
      font-size: 0.9rem;
    }

    /* 幻灯片轮播区域 - 纯图片展示 */
    .slider-container {
      width: 100%;
      max-width: 1580px;
      height: 500px; /* 增加高度以适应图片 */
      margin: 2rem auto 2rem auto;
      position: relative;
      overflow: hidden;
      border-radius: 8px;
      box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    }

    .slider {
      width: 100%;
      height: 100%;
      position: relative;
    }

    .slide {
      width: 100%;
      height: 100%;
      position: absolute;
      top: 0;
      left: 0;
      opacity: 0;
      transition: opacity 0.8s ease;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
    }

    .slide.active {
      opacity: 1;
    }

    .slide-img {
      width: 100%;
      height: 100%;
      object-fit: cover; /* 保持图片比例并填充整个区域 */
      display: block;
    }

    /* 幻灯片图片占位符 - 当没有真实图片时使用 */
    .slide-placeholder {
      width: 100%;
      height: 100%;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
      color: white;
      font-size: 1.5rem;
    }

    .slide-placeholder i {
      font-size: 4rem;
      margin-bottom: 1rem;
      opacity: 0.8;
    }

    /* 图片描述（可选的，如果需要可取消注释）
    .slide-caption {
      position: absolute;
      bottom: 0;
      left: 0;
      width: 100%;
      background: linear-gradient(transparent, rgba(0,0,0,0.7));
      color: white;
      padding: 2rem 1rem 1rem;
      text-align: center;
    }
    
    .slide-caption h3 {
      font-size: 1.5rem;
      margin-bottom: 0.5rem;
    }
    
    .slide-caption p {
      font-size: 1rem;
      opacity: 0.9;
    }
    */

    /* 幻灯片控制按钮 */
    .slider-controls {
      position: absolute;
      top: 50%;
      width: 100%;
      display: flex;
      justify-content: space-between;
      padding: 0 1rem;
      transform: translateY(-50%);
      z-index: 10;
    }

    .slider-btn {
      background-color: rgba(0, 0, 0, 0.3);
      color: white;
      border: none;
      width: 50px;
      height: 50px;
      border-radius: 50%;
      font-size: 1.5rem;
      cursor: pointer;
      transition: all 0.3s;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .slider-btn:hover {
      background-color: rgba(0, 0, 0, 0.7);
      transform: scale(1.1);
    }

    /* 幻灯片指示器 */
    .slider-indicators {
      position: absolute;
      bottom: 20px;
      left: 0;
      width: 100%;
      display: flex;
      justify-content: center;
      gap: 10px;
      z-index: 10;
    }

    .indicator {
      width: 12px;
      height: 12px;
      border-radius: 50%;
      background-color: rgba(255, 255, 255, 0.5);
      cursor: pointer;
      transition: all 0.3s;
    }

    .indicator.active {
      background-color: white;
      transform: scale(1.2);
    }

    /* 主体内容容器 */
    .container {
      max-width: 1600px;
      margin: 2rem auto;
      padding: 0 1rem;
      display: flex;
      flex-wrap: wrap; /* 响应式换行 */
      gap: 2rem;
    }

    /* 左侧列表（参考图风格） */
    .left-sidebar {
      flex: 1;
      min-width: 250px; /* 最小宽度，防止过窄 */
    }

    .left-list {
      list-style: none;
    }

    .left-list li {
      background-color: #f5f5f5; /* 白色卡片 */
      color: #333; /* 文字深色 */
      margin-bottom: 1rem;
      padding: 1rem;
      border-radius: 8px;
      box-shadow: 0 2px 5px rgba(0,0,0,0.1);
      transition: transform 0.3s, box-shadow 0.3s;
      cursor: pointer;
    }

    .left-list li:hover {
      transform: translateY(-3px); /* 悬停上浮 */
      box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    }

    .left-list li i {
      margin-right: 0.5rem;
      color: #c1121f; /* 图标红色 */
    }

    /* 右侧信息卡片 */
    .right-section {
      flex: 2;
      min-width: 300px; /* 最小宽度 */
    }

    .card-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 1.5rem;
    }
	
    .card {
      background-color: #f5f5f5; /* 白色卡片 */
      color: #333; /* 文字深色 */
      padding: 1.5rem;
      border-radius: 8px;
      box-shadow: 0 2px 5px rgba(0,0,0,0.1);
      text-align: center;
      transition: transform 0.3s, box-shadow 0.3s;
      cursor: pointer;
      text-decoration: none;
    }

    .card:hover {
      transform: scale(1.05);
      box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    }

    .card i {
      display: block;
      margin-bottom: 1rem;
      color: #c1121f; /* 图标红色 */
      font-size: 1.5rem;
    }

.list_r {
    width: 100%;
    overflow: hidden;
    background-color: #FFFFFF;
    padding: 30px;
    border-radius: 10px;
    color: #000000;
}

.list_r ul {
    width: 100%;
    color: #000000;
}
.list_r ul li {
    line-height: 60px;
     border-bottom-style: dashed;
            border-bottom-width: 1px;
            border-bottom-color: #333;
    list-style: none;
}
.list_r ul li a {
    color: #000000;
}

.list_r ul li a:hover {
    color: #F00;
}

h2 {
    font-size: 25px;
    font-weight: bold;
    line-height: 50px;
    text-align: center;
    border-bottom-style: solid;
            border-bottom-width: 2px;
            border-bottom-color: #333;
}

.time {
    font-size: 16px;
    text-align: center;
    margin-bottom: 50px;
}

.list_r img {
    width: 100%;
}

.location {
    font-size: 14px;
    margin-bottom: 20px;
    overflow: hidden;
}

.location a {
    color:#000000; 
}

.location a:hover {
    color: #f00;
}



    /* 底部信息 */
    footer {
      background-color: #c1121f; /* 深红色底部 */
      text-align: center;
      padding: 1.5rem;
      margin-top: 3rem;
    }

    footer p {
      font-size: 0.9rem;
      opacity: 0.9;
    }
    footer p a {
        color: #FFF;
        text-decoration-line: none;
    }

    /* 响应式调整（平板端） */
    @media (max-width: 992px) {
      header {
        padding: 0.5rem;
      }
      
      nav li {
        margin: 0.3rem 0.5rem;
      }
      
      .logo-text {
        font-size: 1.3rem;
      }
      
      .logo-img {
        height: 40px;
        width: 40px;
        font-size: 1.2rem;
      }
      
      .slider-container {
        height: 400px;
        margin-bottom: 1.5rem;
      }
      
      .slider-btn {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
      }
      
      .slide-placeholder i {
        font-size: 3rem;
      }
    }

    /* 响应式调整（手机端 - 768px以下） */
    @media (max-width: 768px) {
      /* 导航栏布局调整 */
      header {
        flex-wrap: wrap;
        padding: 0.8rem 1rem;
        position: relative;
      }
      
      .logo-container {
        flex: 1;
      }
      
      /* 显示汉堡菜单按钮 */
      .menu-toggle {
        display: block;
        order: 2;
      }
      
      /* 导航菜单在手机端初始隐藏 - 修复：使用transform而不是display */
      nav {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: #c1121f;
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        transform: translateY(-10px);
        transition: all 0.4s ease;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
        z-index: 999;
      }
      
      /* 菜单展开状态 - 修复：平滑的下拉动画 */
      nav.active {
        max-height: 500px;
        opacity: 1;
        transform: translateY(0);
      }
      
      nav ul {
        flex-direction: column;
        align-items: stretch;
        width: 100%;
        padding: 0.5rem 0;
      }
      
      nav li {
        margin: 0;
        width: 100%;
      }
      
      nav a {
        padding: 0.9rem 1.5rem;
        border-radius: 0;
        background-color: transparent;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        margin-bottom: 0;
      }
      
      nav a:hover {
        background-color: #ff4d4d;
        border-bottom-color: transparent;
      }
      
      nav a i {
        width: 20px;
        text-align: center;
      }
      
      .logo-text {
        font-size: 1.2rem;
      }
      
      .logo-img {
        height: 35px;
        width: 35px;
        font-size: 1rem;
      }
      
      .slider-container {
        height: 350px;
        margin-bottom: 1rem;
        border-radius: 0;
      }
      
      .slider-controls {
        padding: 0 0.5rem;
      }
      
      .slider-btn {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
      }
      
      .slide-placeholder {
        font-size: 1.2rem;
      }
      
      .slide-placeholder i {
        font-size: 2.5rem;
      }
      
      .container {
        flex-direction: column;
        gap: 1.5rem;
        margin: 1rem auto;
      }
      
      .card-grid {
        grid-template-columns: 1fr; /* 单列显示 */
      }
    }

    /* 响应式调整（小手机端 - 480px以下） */
    @media (max-width: 480px) {
      header {
        padding: 0.7rem 0.8rem;
      }
      
      .logo-container {
        gap: 0.5rem;
      }
      
      .logo-text {
        font-size: 1.1rem;
      }
      
      .logo-img {
        height: 30px;
        width: 30px;
        font-size: 0.9rem;
        border-radius: 6px;
      }
      
      .menu-toggle {
        font-size: 1.3rem;
        padding: 0.4rem 0.7rem;
      }
      
      nav a {
        padding: 0.8rem 1.2rem;
        font-size: 0.9rem;
      }
      
      .slider-container {
        height: 280px;
      }
      
      .slider-btn {
        width: 35px;
        height: 35px;
        font-size: 1rem;
      }
      
      .slide-placeholder {
        font-size: 1rem;
      }
      
      .slide-placeholder i {
        font-size: 2rem;
      }
      
      .container {
        padding: 0 0.8rem;
        gap: 1rem;
      }
      
      .left-list li {
        padding: 0.8rem;
        font-size: 0.9rem;
      }
      
      .card {
        padding: 1.2rem;
      }
      
      .card i {
        font-size: 1.3rem;
        margin-bottom: 0.5rem;
      }
      
      footer {
        padding: 1rem;
        font-size: 0.8rem;
      }
    }












/*网分页样式*/
.pages {
	clear: both;
	margin: 40px auto 20px auto;
	padding-top: 40px;
	overflow: hidden;
	text-align: center;
	font-size: 14px;
}
.pages ul li {
	display: inline-block;
	border: 1px solid #ccc;
	padding: 6px 15px;
	margin: 0 1px;
	line-height: 24px;
	background: #fff;
	color: #999;
	border-radius: 2px
}
.pages ul li:hover {
	background: #e00700;
	color: #fff;
	border: 1px solid #e00700
}
.pages ul li:hover a {
	color: #fff;
}
.pages ul li.thisclass {
	display: inline-block;
	border: 1px solid #e00700;
	padding: 6px 15px;
	margin: 0 1px;
	background: #e00700;
	color: #fff;
}
.pages ul li.thisclass a {
	color: #fff;
}
.pages ul li a {
	display: block;
	color: #999
}
.pages ul li a:hover {
	color: #fff;
}