.mid-content {
  margin: 50px auto;
}
.mid-content h3 {
  color: #2d5e2c;
  margin-bottom: 15px;
}
.mid-content ul {
  list-style: none;
  padding-left: 0;
}

.mid-content li {
  margin-bottom: 10px;
}

.mid-content a {
  color: #2d5e2c;
  text-decoration: none;
}

.mid-content a:hover {
  text-decoration: underline;
}
/* 专题活动区整体样式 */
.section-special-activities {
  padding: 60px 0;
  background-color: #f8f8f8;
}

.section-title {
  text-align: center;
  font-size: 24px;
  color: #2d5e2c;
  margin-bottom: 40px;
  font-weight: bold;
}

.activities-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
}

.activity-card {
  flex: 1 1 calc(25% - 15px);
  background-color: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
  text-align: center;
}

.activity-card:hover {
  transform: translateY(-5px);
}

.activity-image {
  height: 180px;
  background-size: cover;
  background-position: center;
}

.activity-one { background-image: url('../images/jthd_1.jpg'); }
.activity-two { background-image: url('../images/jthd_2.jpg'); }
.activity-three { background-image: url('../images/jthd_3.jpg'); }
.activity-four { background-image: url('../images/jthd_4.jpeg'); }

.activity-text {
  padding: 15px 10px;
  font-size: 16px;
  color: #333;
  font-weight: bold;
}

/* 响应式适配 */
@media (max-width: 992px) {
  .activity-card {
    flex: 1 1 calc(50% - 15px);
  }
}

@media (max-width: 768px) {
  .activity-card {
    flex: 1 1 100%;
  }
}
/* Footer Styles */
footer {
  background-color: #2d5e2c;
  color: #fff;
  padding-top: 40px;
  font-size: 14px;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 30px;
}

.footer-section {
  flex: 1 1 22%;
  margin-bottom: 20px;
}

.footer-section h2 {
  font-size: 16px;
  margin-bottom: 10px;
  color: #f8f8f8;
}

.footer-section ul {
  list-style: none;
  padding-left: 0;
}

.footer-section li {
  margin-bottom: 8px;
}

.footer-section p {
  line-height: 1.6;
}

.footer-divider {
  height: 1px;
  background-color: rgba(255, 255, 255, 0.2);
  margin: 20px 0;
}

.footer-nav-initiative-section .footer-nav-content,
.footer-nav-initiative-section .footer-initiative-content {
  float: none;
  width: 100%;
  margin-bottom: 15px;
}

.footer-nav-initiative-section ul.left-float {
  display: flex;
  flex-wrap: wrap;
  padding-left: 0;
  margin: 0;
}

.footer-nav-initiative-section ul li {
  margin-right: 15px;
  margin-bottom: 10px;
}

.footer-nav-initiative-section ul li a {
  color: #ddd;
  text-decoration: none;
}

.footer-nav-initiative-section ul li a:hover {
  color: #fff;
}

.footer-bottom {
  background-color: #254e23;
  padding: 15px 0;
  text-align: center;
  color: #aaa;
}

@media (max-width: 768px) {
  .footer-section {
    flex: 1 1 100%;
  }
}
/* 友情链接图片 */
/* 友情链接图片_div */
.content_bottom_yqlj {
	margin-top: 20px !important;
	/* width: 1370px; */
  padding-left: 20px;
	height: 65px;
	margin: 0 auto;
}

/* 友情链接图片 */
.content_bottom_yqlj_tp {
	float: left;
	width: 161px;
	height: 65px;
	background-image: url(../images/headline3.png);
}

/* 内容底部 */
.content_bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  padding: 30px 15px;
  background-color: #f9f9f9;
}

.content_bottom_card {
  flex: 1 1 calc(25% - 20px); /* 默认4列 */
  min-width: 200px;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  overflow: hidden;
  text-align: center;
  padding: 15px;
}

.content_bottom_card a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  display: block;
  height: 100%;
}
.content_bottom_card p {
margin: auto !important;
}

.content_bottom_card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}

@media (max-width: 992px) {
  .content_bottom_card {
    flex: 1 1 calc(33.33% - 20px); /* 移动端3列 */
  }
}

@media (max-width: 768px) {
  .content_bottom_card {
    flex: 1 1 calc(50% - 20px); /* 小屏设备2列 */
  }
}

@media (max-width: 576px) {
  .content_bottom_card {
    flex: 1 1 100%; /* 手机竖屏1列 */
  }
}
