* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Microsoft YaHei', 'Segoe UI', Arial, sans-serif;
}
:root {
  --primary-red: #c62828;
  --dark-red: #8e0000;
  --light-red: #ff5f52;
  --lighter-red: #ff8a80;
  --gray-bg: #f5f5f5;
  --text-dark: #333;
  --text-light: #666;
  --white: #ffffff;
}
body {
  background-color: #f9f9f9;
  color: var(--text-dark);
  line-height: 1.6;
}
/* 导航栏样式 */
.navbar {
  background-color: var(--primary-red);
  padding: 0 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  z-index: 1000;
}
.logo {
  font-size: 1.8rem;
  font-weight: bold;
  color: white;
  padding: 15px 0;
  display: flex;
  align-items: center;
}
.logo i {
  margin-right: 10px;
}
.nav-links {
  display: flex;
  list-style: none;
}
.nav-links li {
  position: relative;
}
.nav-links a {
  color: white;
  text-decoration: none;
  padding: 20px 15px;
  display: block;
  transition: background-color 0.3s;
}
.nav-links a:hover {
  background-color: var(--dark-red);
}
.navon {
  background-color: var(--dark-red);
}
.dropdown-content {
  display: none;
  position: absolute;
  background-color: white;
  min-width: 180px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  z-index: 1;
  border-radius: 0 0 5px 5px;
  overflow: hidden;
}
.dropdown-content a {
  color: var(--text-dark);
  padding: 12px 16px;
  border-bottom: 1px solid #eee;
}
.dropdown-content a:hover {
  background-color: var(--lighter-red);
  color: white;
}
.dropdown:hover .dropdown-content {
  display: block;
}
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
  z-index: 1001;
}
/* 主轮播图样式 - 增强 */
.hero-slider {
  height: 93vh;
  position: relative;
  overflow: hidden;
  cursor: grab;
  user-select: none;
}
.hero-slider.dragging {
  cursor: grabbing;
}
.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}
.slide.active {
  opacity: 1;
}
/* 主轮播图图片样式 - 新增 */
.slide-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}
.slide-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;
  width: 80%;
  max-width: 800px;
  z-index: 1;
}
.slide-content h2 {
  font-size: 2.8rem;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}
.slide-content p {
  font-size: 1.2rem;
  margin-bottom: 30px;
}
.btn {
  display: inline-block;
  background-color: var(--primary-red);
  color: white;
  padding: 12px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s;
}
.btn:hover {
  background-color: var(--dark-red);
}
/* 轮播图按钮 */
.slider-controls {
  position: absolute;
  top: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  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%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: background-color 0.3s, transform 0.2s;
  margin: 0 20px;
}
.slider-btn:hover {
  background-color: rgba(0, 0, 0, 0.6);
  transform: scale(1.1);
}
.slider-nav {
  position: absolute;
  bottom: 20px;
  left: 0;
  width: 100%;
  text-align: center;
}
.slider-dot {
  display: inline-block;
  width: 12px;
  height: 12px;
  background-color: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  margin: 0 5px;
  cursor: pointer;
  transition: background-color 0.3s, transform 0.2s;
}
.slider-dot.active {
  background-color: white;
  transform: scale(1.2);
}
/* 新闻中心样式 */
.section-title {
  text-align: left;
  font-size: 2rem;
  color: var(--primary-red);
  margin: 40px 0 30px;
  padding-bottom: 15px;
  border-bottom: 2px solid var(--lighter-red);
  display: inline-block;
  width: 100%;
}
.news-center {
  padding: 0 5% 40px;
}
.news-container {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}
/* 新闻轮播图 - 增强 */
.news-slider {
  flex: 1;
  min-width: 300px;
}
.news-slider-container {
  width: 100%;
  height: 550px;
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  cursor: grab;
  user-select: none;
}
.news-slider-container a {
  text-decoration: none;
  display: block;
  height: 100%;
}
.news-slider-container.dragging {
  cursor: grabbing;
}
.news-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.8s ease;
}
.news-slide.active {
  opacity: 1;
}
/* 新闻轮播图图片样式 - 新增 */
.news-slide-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}
/* 新闻轮播图控制按钮 */
.news-slider-controls {
  position: absolute;
  top: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
  z-index: 5;
}
.news-slider-btn {
  background-color: rgba(0, 0, 0, 0.3);
  color: white;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: background-color 0.3s, transform 0.2s;
  margin: 0 10px;
}
.news-slider-btn:hover {
  background-color: rgba(0, 0, 0, 0.6);
  transform: scale(1.1);
}
.slide-info {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  color: white;
  padding: 20px;
  z-index: 2;
}
/* 新闻轮播图链接样式 */
.slide-info-link {
  text-decoration: none;
  color: inherit;
  display: block;
}
.slide-info-link:hover h3 {
  text-decoration: underline;
}
.slide-info h3 {
  font-size: 1.3rem;
  margin-bottom: 5px;
}
.news-list {
  flex: 1;
  min-width: 300px;
}
.news-list-container {
  background-color: white;
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
.news-item {
  padding: 15px 0;
  border-bottom: 1px solid #eee;
  display: flex;
  align-items: center;
}
.news-item:last-child {
  border-bottom: none;
}
.news-date {
  background-color: var(--primary-red);
  color: white;
  padding: 5px 10px;
  border-radius: 3px;
  font-size: 0.9rem;
  margin-right: 15px;
  min-width: 70px;
  text-align: center;
}
.news-title {
  flex: 1;
  font-weight: 500;
}
.news-title a {
  color: var(--text-dark);
  text-decoration: none;
  transition: color 0.3s;
}
.news-title a:hover {
  color: var(--primary-red);
}
/* 通知公告样式 - 增强横向循环滚动功能 */
.announcement-section {
  background-color: var(--gray-bg);
  padding: 40px 5%;
}
.announcement-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}
.announcement-container {
  background-color: white;
  border-radius: 8px;
  padding: 25px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  position: relative;
}
.announcement-list {
  display: flex;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding-bottom: 10px;
  gap: 20px;
  scroll-snap-type: x mandatory;
}
.announcement-list::-webkit-scrollbar {
  display: none;
}
.announcement-item {
  width: 400px;
  min-width: 300px; /* 较小宽度 */
  background-color: #f8f8f8;
  border-left: 4px solid var(--primary-red);
  border-radius: 0 5px 5px 0;
  flex-shrink: 0;
  scroll-snap-align: start;
  transition: transform 0.3s, box-shadow 0.3s;
  padding: 20px;
}
.announcement-item a {
  text-decoration: none;
  color: inherit;
  display: block;
}
.announcement-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
/* 通知公告链接样式 */
.announcement-link:hover {
  text-decoration: none;
}
.announcement-item h4 {
  color: var(--primary-red);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.announcement-item h4 i {
  font-size: 0.9rem;
  opacity: 0.7;
  transition: opacity 0.3s, transform 0.3s;
}
.announcement-link:hover .announcement-item h4 i {
  opacity: 1;
  transform: translateX(3px);
}
.announcement-item p {
  color: var(--text-light);
  font-size: 0.95rem;
  margin-bottom: 10px;
}
/* 通知公告日期样式 */
.announcement-date {
  font-size: 0.85rem;
  color: #999;
  display: flex;
  align-items: center;
  margin-top: 15px;
  padding-top: 10px;
  border-top: 1px solid #eee;
}
.announcement-date i {
  margin-right: 5px;
}
.scroll-buttons {
  display: flex;
  gap: 10px;
}
.scroll-btn {
  background-color: var(--primary-red);
  color: white;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s;
}
.scroll-btn:hover {
  background-color: var(--dark-red);
}
/* 党建新闻样式 - 网格布局底部 */
.party-news {
  padding: 40px 5%;
}
.party-news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
}
.party-news-item {
  background-color: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.party-news-item:hover {
  transform: translateY(-5px);
}
.party-news-item a {
  text-decoration: none;
  color: inherit;
  display: block;
  height: 100%;
}
/* 党建新闻链接样式 */
.party-news-link {
  text-decoration: none;
}
.party-news-link:hover {
  text-decoration: none;
}
.party-news-img {
  height: 200px;
  background-size: cover;
  background-position: center;
  flex-shrink: 0;
  z-index: 0;
}
.party-news-content {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
  z-index: 1;
}
.party-news-content h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: var(--primary-red);
}
.party-news-content p {
  color: var(--text-light);
  font-size: 0.95rem;
  margin-bottom: 15px;
  flex: 1;
}
/* 党建新闻日期样式 - 网格布局底部 */
.party-news-date {
  font-size: 0.85rem;
  color: #999;
  margin-top: auto;
  padding-top: 15px;
  border-top: 1px solid #eee;
  display: flex;
  align-items: center;
}
.party-news-date i {
  margin-right: 5px;
}
/* 页脚样式 */
footer {
  background-color: var(--dark-red);
  color: white;
  padding: 60px 5% 20px;
}
.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 40px;
}
.footer-slogan {
  font-size: 1.2rem;
  color: #eee;
  margin-bottom: 40px;
  text-align: center;
  max-width: 600px;
  line-height: 1.8;
}
.footer-main-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 60px;
  width: 100%;
  max-width: 800px;
}
.wechat-section {
  text-align: center;
  flex: 1;
  min-width: 300px;
}
.wechat-qrcode {
  background-color: white;
  width: 180px;
  height: 180px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  overflow: hidden;
  border: 3px solid white;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}
.wechat-qrcode-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #f0f0f0 0%, #ffffff 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #666;
  font-size: 0.9rem;
}
.wechat-qrcode-placeholder i {
  font-size: 3.5rem;
  color: #07c160;
  margin-bottom: 15px;
}
.wechat-info h3 {
  font-size: 1.6rem;
  margin-bottom: 15px;
  color: white;
}
.wechat-info p {
  color: #ddd;
  font-size: 1rem;
  margin-bottom: 8px;
}
.wechat-features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  margin-top: 20px;
}
.wechat-features a {
  color: #fff;
  text-decoration: none;
}
.wechat-feature {
  background-color: rgba(255, 255, 255, 0.1);
  padding: 8px 15px;
  border-radius: 20px;
  font-size: 0.9rem;
}
.social-section {
  text-align: center;
  width: 100%;
  margin-top: 40px;
}
.social-section h4 {
  font-size: 1.3rem;
  margin-bottom: 20px;
  color: white;
}
.social-links {
  display: flex;
  justify-content: center;
  gap: 20px;
}
.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: white;
  text-decoration: none;
  font-size: 1.3rem;
  transition: background-color 0.3s, transform 0.2s;
}
.social-link:hover {
  transform: translateY(-5px);
}
.social-link.wechat:hover {
  background-color: #07c160;
}
.social-link.weibo:hover {
  background-color: #e6162d;
}
.social-link.qq:hover {
  background-color: #12b7f5;
}
.social-link.email:hover {
  background-color: #4285f4;
}
.social-link.website:hover {
  background-color: #ff9800;
}
.copyright {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.9rem;
  color: #ccc;
  line-height: 1.6;
}
.copyright a {
  color: #fff;
  text-decoration: none;
}
/* 响应式样式 - 修改移动端通知公告项的宽度 */
@media (max-width: 992px) {
  .hero-slider {
    height: 500px;
  }
  .nav-links {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: var(--primary-red);
    flex-direction: column;
    z-index: 999;
    padding-top: 80px;
    overflow-y: auto;
  }
  .nav-links.active {
    display: flex;
  }
  .nav-links li {
    width: 100%;
  }
  .dropdown-content {
    position: static;
    box-shadow: none;
    background-color: var(--dark-red);
    display: none;
  }
  .dropdown.active .dropdown-content {
    display: block;
  }
  .mobile-menu-btn {
    display: block;
  }
  .news-container {
    flex-direction: column;
  }
  .slide-content h2 {
    font-size: 2rem;
  }
  .slider-btn {
    width: 40px;
    height: 40px;
    font-size: 1rem;
    margin: 0 10px;
  }
  .footer-main-content {
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }
  .wechat-qrcode {
    width: 150px;
    height: 150px;
  }
  .news-slider-btn {
    width: 35px;
    height: 35px;
    font-size: 0.9rem;
    margin: 0 5px;
  }
  /* 移动端隐藏轮播图按钮需要使用触摸操作 */
  .slider-controls, .news-slider-controls {
    display: none;
  }
}
@media (max-width: 768px) {
  /* 在平板设备上通知公告显示两列 */
  .announcement-item {
    min-width: calc(50% - 20px);
    max-width: calc(50% - 20px);
    width: calc(50% - 20px);
  }
  .hero-slider {
    height: 250px;
  }
}
@media (max-width: 576px) {
  .slide-content h2 {
    font-size: 1.6rem;
  }
  .section-title {
    font-size: 1.6rem;
  }
  .party-news-grid {
    grid-template-columns: 1fr;
  }
  .footer-slogan {
    font-size: 1rem;
  }
  .wechat-qrcode {
    width: 130px;
    height: 130px;
  }
  .social-link {
    width: 45px;
    height: 45px;
    font-size: 1.2rem;
  }
  /* 修改手机设备通知公告 */
  .announcement-item {
    min-width: calc(100% - 20px) !important;
    max-width: calc(100% - 20px) !important;
    width: calc(100% - 20px) !important;
  }
  .announcement-list {
    gap: 15px;
  }
}
/* 内容页样式 - 侧边栏 */
.main-content {
  padding: 40px 5%;
  display: flex;
  gap: 30px;
}
/* 侧边栏样式 */
.sidebar {
  flex: 0 0 250px;
  background-color: white;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}
.sidebar-header {
  background-color: var(--primary-red);
  color: white;
  padding: 20px;
  text-align: center;
}
.sidebar-header h2 {
  font-size: 1.5rem;
  margin: 0;
}
.sidebar-nav {
  list-style: none;
}
.nav-item {
  border-bottom: 1px solid #eee;
}
.nav-item:last-child {
  border-bottom: none;
}
.nav-item a {
  display: flex;
  align-items: center;
  padding: 15px 20px;
  text-decoration: none;
  color: var(--text-dark);
  transition: all 0.3s;
}
.nav-item a:hover {
  background-color: #f8f8f8;
  color: var(--primary-red);
}
.nav-item.active a {
  background-color: var(--lighter-red);
  color: white;
  border-left: 4px solid var(--primary-red);
}
.nav-item i {
  margin-right: 10px;
  width: 20px;
  text-align: center;
}
.nav-item span {
  flex: 1;
}
.nav-badge {
  background-color: var(--primary-red);
  color: white;
  padding: 2px 8px;
  border-radius: 10px;
  font-size: 0.8rem;
}
/* 内容页侧边栏样式 */
.content-section {
  flex: 1;
}
.content-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 2px solid var(--lighter-red);
}
.content-header h2 {
  color: var(--primary-red);
  font-size: 1.8rem;
}
.breadcrumb {
  font-size: 0.9rem;
  color: var(--text-light);
}
.breadcrumb a {
  color: var(--primary-red);
  text-decoration: none;
}
.breadcrumb a:hover {
  text-decoration: underline;
}
/* 列表样式 */
.content-list {
  background-color: white;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}
.list-item {
  display: flex;
  padding: 20px;
  border-bottom: 1px solid #eee;
  transition: background-color 0.3s;
}
.list-item:last-child {
  border-bottom: none;
}
.list-item:hover {
  background-color: #f9f9f9;
}
.detailTit {
  width: 100%;
  text-align: center;
  padding: 40px 25px;
  border-bottom: 1px solid #333;
}
.detailTit h6 {
  font-weight: 500;
  font-size: 24px;
  font-weight: bold;
  color: #333333;
}
.detailTit p {
  font-size: 14px;
  color: #666666;
  display: inline-block;
  padding-left: 20px;
  background: url(../images/icon-time.png) no-repeat left center;
  margin-top: 8px;
}
.detailContent {
  padding: 20px 20px;
}
.detailContent p {
  font-size: 16px !important;
  color: #333333 !important;
  margin: 10px 0 !important;
  line-height: 28px !important;
}
.detailContent p strong {
  text-align: center
}
.detailContent p img {
  max-width: 100%;
  margin: 20px auto;
  display: inline-block;
}
.detailContent table {
  width: 100% !important;
}
.list-date {
  flex: 0 0 100px;
  text-align: center;
}
.list-date .date-day {
  font-size: 2rem;
  color: var(--primary-red);
  font-weight: bold;
  display: block;
}
.list-date .date-month {
  font-size: 0.9rem;
  color: var(--text-light);
}
.list-content {
  flex: 1;
  padding: 0 20px;
}
.list-content h3 {
  font-size: 1.2rem;
  margin-bottom: 8px;
  color: var(--primary-red);
}
.list-content h3 a {
  color: inherit;
  text-decoration: none;
}
.list-content h3 a:hover {
  text-decoration: underline;
}
.list-content p {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.5;
}
.list-info {
  display: flex;
  margin-top: 10px;
  font-size: 0.85rem;
  color: #999;
}
.list-info span {
  margin-right: 15px;
  display: flex;
  align-items: center;
}
.list-info i {
  margin-right: 5px;
}
.list-action {
  flex: 0 0 120px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.list-action a {
  display: inline-block;
  background-color: var(--primary-red);
  color: white;
  text-decoration: none;
  padding: 8px 20px;
  border-radius: 5px;
  transition: background-color 0.3s;
}
.list-action a:hover {
  background-color: var(--dark-red);
}
/* 分页样式 */
.pagination {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}
.pagination ul {
  display: flex;
  list-style: none;
}
.pagination li {
  margin: 0 5px;
}
.pagination a {
  display: block;
  padding: 8px 15px;
  background-color: white;
  border: 1px solid #ddd;
  color: var(--text-dark);
  text-decoration: none;
  border-radius: 5px;
  transition: all 0.3s;
}
.pagination a:hover {
  background-color: #f8f8f8;
}
.pagination li.active a {
  background-color: var(--primary-red);
  color: white;
  border-color: var(--primary-red);
}
/* 响应式 */
@media (max-width: 992px) {
  .nav-links {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: var(--primary-red);
    flex-direction: column;
    z-index: 999;
    padding-top: 80px;
    overflow-y: auto;
  }
  .nav-links.active {
    display: flex;
  }
  .nav-links li {
    width: 100%;
  }
  .dropdown-content {
    position: static;
    box-shadow: none;
    background-color: #fff;
    display: none;
  }
  .dropdown.active .dropdown-content {
    display: block;
  }
  .mobile-menu-btn {
    display: block;
  }
  .main-content {
    flex-direction: column;
  }
  .sidebar {
    flex: none;
    width: 100%;
  }
  .footer-main-content {
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }
  .wechat-qrcode {
    width: 150px;
    height: 150px;
  }
}
@media (max-width: 768px) {
  .list-item {
    flex-direction: column;
  }
  .list-date {
    flex: none;
    text-align: left;
    margin-bottom: 10px;
  }
  .list-content {
    padding: 0;
  }
  .list-action {
    flex: none;
    justify-content: flex-start;
    margin-top: 15px;
  }
}
/* 分页样式 */
.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: #b40c25;
  color: #fff;
  border: 1px solid #b40c25
}
.pages ul li:hover a {
  color: #fff;
}
.pages ul li.thisclass {
  display: inline-block;
  border: 1px solid #b40c25;
  padding: 6px 15px;
  margin: 0 1px;
  background: #b40c25;
  color: #fff;
}
.pages ul li.thisclass a {
  color: #fff;
}
.pages ul li a {
  display: block;
  color: #999;
  text-decoration: none;
}
.pages ul li a:hover {
  color: #fff;
}
.pages tr td {
  display: inline-block;
  border: 1px solid #ccc;
  padding: 6px 15px;
  margin: 0 1px;
  line-height: 24px;
  background: #fff;
  color: #999;
  border-radius: 2px
}
.pages tr td:hover {
  background: #b40c25;
  color: #fff;
  border: 1px solid #b40c25
}
.pages tr td:hover a {
  color: #fff;
}
.pages tr td.thisclass {
  display: inline-block;
  border: 1px solid #b40c25;
  padding: 6px 15px;
  margin: 0 1px;
  background: #b40c25;
  color: #fff;
}
.pages tr td.thisclass a {
  color: #fff;
}
.pages tr td a {
  display: block;
  color: #999;
  text-decoration: none;
}
.pages tr td a:hover {
  color: #fff;
}
.bt_title {
  border-radius: 12px;
  text-align: center;
  width: 150px;
  margin: 40px auto;
  background: #c62828;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
.bt_title a {
  font-size: 20px;
  font-weight: bold;
  height: 55px;
  line-height: 55px;
  color: #FFFFFF;
  text-decoration: none;
}
.bt_title:hover {
  background: #ae2d2d;
}