﻿/* 全局样式 */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: "Microsoft YaHei", sans-serif;
	background: url('../images/bg-clouds.png') no-repeat center top !important;
	color: #333;
}

.container {
	width: 100%;
	max-width: 1400px;
	margin: 0 auto;
	padding: 0 15px;
}

/* 头部样式 */
.header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 15px 0;
}

.logo img {
	height: 60px;
}

.search-login {
	display: flex;
	align-items: center;
}

.search-box {
	position: relative;
	margin-right: 20px;
}

.search-box input {
	width: 250px;
	height: 40px;
	border: 1px solid #ddd;
	border-radius: 18px;
	padding: 0 40px 0 15px;
	outline: none;
}

.search-box .submitButton {
	position: absolute;
	right: 10px;
	top: 50%;
	transform: translateY(-50%);
	background: none;
	border: none;
	cursor: pointer;
}

.search-icon {
	display: block;
	width: 16px;
	height: 16px;
	background: url('../images/search.png') no-repeat;
	background-size: contain;
}

.login-register {
	padding: 8px 20px;
	background-color: #205DC4;
	border-radius: 20px;
	font-size: 14px;
	color: white;
}

.login-register a {
	display: inline-block;
	background-color: #205DC4;
	color: white;
	text-decoration: none;
	font-size: 14px;
}

/* 轮播图样式 */
.banner-swiper {
	width: 100%;
	height: 400px;
	overflow: hidden;
	position: relative;
}

.swiper-slide {
	position: relative;
}

.swiper-pagination-bullet-active {
	background: #1a4490 !important;
}

.swiper-slide img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}


.swiper-pagination-bullet {
	width: 10px;
	height: 10px;
	background: rgba(255, 255, 255, 0.7);
	margin: 0 5px;
}

.swiper-pagination-bullet-active {
	background: white;
}

.banner-swiper .swiper-pagination {
	bottom: 21px;
	right: 0;
	left: 0;
	text-align: center;
}

.banner-swiper .swiper-pagination-bullet {
	width: 10px;
	height: 10px;
	background: #fff;
	margin: 0 5px;
	opacity: 1 !important;
}

.banner-swiper .swiper-pagination-bullet-active {
	background: #205DC4 !important;
}

/* 导航菜单样式 */
.main-nav {
	background-color: #205DC4;
}

.main-nav > ul {
	display: flex;
	list-style: none;
	justify-content: space-around;
}

.main-nav > ul > li {
	position: relative;
}

.main-nav > ul > li > a {
	display: block;
	color: white;
	text-decoration: none;
	padding: 15px 8px;
	font-size: 16px;
	transition: background-color 0.3s;
}

.main-nav > ul > li > a:hover {
	background-color: #1a4490;
}

.main-nav .sub {
	display: none;
	position: absolute;
	top: 100%;
	left: 50%;
	z-index: 10;
	width: 180px;
	border-top: 0;
	background: rgba(249, 249, 249, 0.9);
	box-shadow: 0 0 7px rgba(0, 0, 0, 0.2);
	margin: 0;
	-webkit-transform: translateX(-50%);
	-moz-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	-o-transform: translateX(-50%);
	transform: translateX(-50%);
}

.main-nav .sub li {
	border-bottom: 1px solid rgba(255, 255, 255, 0.9);
}

.main-nav .sub li:last-child {
	border-bottom: 0;
}

.main-nav .sub li a {
	color: #205dc4;
	font-size: 14px;
	padding: 10px 8px;
	display: block;
	white-space: nowrap;
	-ms-text-overflow: ellipsis;
	text-overflow: ellipsis;
	overflow: hidden;
	-webkit-transition: all .4s;
	-moz-transition: all .4s;
	-ms-transition: all .4s;
	-o-transition: all .4s;
	transition: all .4s;
}

.main-nav .sub li a:hover {
	background: #205dc4 !important;
	color: #ffffff !important;
}

.main-nav > ul > li:hover .sub {
	display: block;
}

/* 主要内容区域样式 */
.main-content {
	margin-top: 30px;
	min-height: 400px;
}

@media (max-width: 769px) {
	.main-content {
		padding: 0 4%;
	}
}

/* 页脚样式 */
.footer {
	margin-top: 30px;
	padding: 20px 0;
	background-color: #f5f5f5;
	text-align: center;
	border-radius: 4px;
}

/* 响应式设计 */
@media (max-width: 768px) {
	.header {
		flex-direction: column;
	}

	.search-login {
		margin-top: 15px;
	}

	.main-nav ul {
		flex-wrap: wrap;
	}

	.main-nav a {
		padding: 10px 15px;
		font-size: 14px;
	}

	.banner-content h2 {
		font-size: 28px;
	}

	.banner-content p {
		font-size: 16px;
	}
}

/* 新闻资讯部分样式 */
.news-section {
	margin: 30px 0;
	border-radius: 8px;
	padding: 20px 0;
}

.section-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 20px;
	border-bottom: 2px solid #f0f0f0;
	padding-bottom: 10px;
}

.section-title {
	display: flex;
	align-items: center;
	position: relative;
}

.section-title::before {
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	bottom: -15px;
	z-index: 10;
	border-bottom: 3px solid #205DC4;
}

.section-title h2 {
	font-size: 20px;
	color: #205DC4;
	margin: 0;
	font-weight: 600;
}

.news-icon {
	display: inline-block;
	width: 24px;
	height: 24px;
	background: url('../images/icon1.png') no-repeat;
	background-size: contain;
	margin-right: 10px;
	position: relative;
}


.news-more {
	color: #666;
	text-decoration: none;
	font-size: 14px;
	display: flex;
	align-items: center;
}

.more-icon {
	font-style: normal;
	margin-left: 5px;
	font-size: 16px;
}

.news-container {
	display: flex;
	gap: 40px;
}


.news-swiper {
	width: 40%;
	height: 420px;
	overflow: hidden;
}

.news-slide-img {
	position: relative;
	width: 100%;
	height: 100%;
}

.news-slide-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.news-slide-caption {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	background: rgba(0, 0, 0, 0.6);
	color: white;
	padding: 10px;
}

.news-slide-caption p {
	margin: 0;
	font-size: 14px;
}

.news-swiper-button-prev,
.news-swiper-button-next {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 30px;
	height: 30px;
	background: rgba(0, 0, 0, 0.5);
	color: white;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	z-index: 10;
	border-radius: 50%;
}

.news-swiper-button-prev {
	left: 10px;
}

.news-swiper-button-next {
	right: 10px;
}

.news-swiper-button-prev:after {
	content: '<';
}

.news-swiper-button-next:after {
	content: '>';
}

.news-swiper-pagination {
	position: absolute;
	bottom: 40px;
	left: 50%;
	transform: translateX(-50%);
	z-index: 10;
}

.news-swiper-fraction {
	position: absolute;
	bottom: 10px;
	right: 10px;
	color: white;
	background: rgba(0, 0, 0, 0.5);
	padding: 2px 8px;
	border-radius: 10px;
	font-size: 12px;
}

/* 右侧新闻列表样式 */
.news-list-container {
	width: 60%;
}

.news-list-header {
	margin-bottom: 10px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.featured-news-title,
.featured-news-title a {
	font-size: 14px;
	color: #333;
	margin: 0;
	font-weight: normal;
	flex: 1;
}

.news-date {
	color: #666;
	font-size: 12px;
}

.featured-news-summary {
	color: #666;
	font-size: 14px;
	line-height: 1.6;
	margin-bottom: 15px;
}

.news-list {
	list-style: none;
	padding: 0;
	margin: 0;
}

.news-item {
	margin-bottom: 10px;
	transition: all 0.3s;
}

.news-item a {
	display: flex;
	align-items: center;
	text-decoration: none;
	color: #333;
	padding: 8px 0;
	border-bottom: 1px dashed #eee;
}

.news-dot {
	width: 3px;
	height: 3px;
	background: #205DC4;
	transition: 0.3s;
	margin-right: 10px;
	flex-shrink: 0;
}

.news-title {
	flex: 1;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	font-size: 14px;
}

.news-item-hover .news-dot {
	width: 16px;
}

.news-item-hover a {
	color: #205DC4;
}

/* 响应式设计 */
@media (max-width: 768px) {
	.news-container {
		flex-direction: column;
	}

	.news-swiper-container,
	.news-list-container {
		width: 100%;
	}

	.news-swiper {
		width: 100%;
		height: 200px;
		margin-bottom: 20px;
	}
}



/* 信息模块共用样式 */
.info-section {
	margin: 30px 0;
}

.info-container {
	display: flex;
	gap: 40px;
	flex-wrap: wrap;
}

.info-box {
	flex: 1;
	min-width: 300px;
	border-radius: 8px;
	padding: 10px 0;
}

.info-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 15px;
	border-bottom: 2px solid #f0f0f0;
	padding-bottom: 10px;
}

.info-title {
	display: flex;
	align-items: center;
	position: relative;
}

.info-title::before {
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	bottom: -15px;
	z-index: 10;
	border-bottom: 3px solid #205DC4;
}

.info-title h2 {
	font-size: 18px;
	color: #205DC4;
	margin: 0;
	font-weight: 600;
}

.icon {
	display: inline-block;
	width: 24px;
	height: 24px;
	margin-right: 10px;
	position: relative;
}

.member-icon {
	background: url('../images/icon2.png') no-repeat;
	background-size: contain;
	width: 20px;
	height: 20px;
	margin-right: 10px;
}

.industry-icon {
	background: url('../images/icon3.png') no-repeat;
	background-size: contain;
	width: 20px;
	height: 20px;
	margin-right: 10px;
}


.notice-icon {
	background: url('../images/icon4.png') no-repeat;
	background-size: contain;
	width: 20px;
	height: 20px;
	margin-right: 10px;
}


.info-more {
	color: #666;
	text-decoration: none;
	font-size: 14px;
	display: flex;
	align-items: center;
}

.info-list {
	list-style: none;
	padding: 0;
	margin: 0;
}

.info-item {
	margin-bottom: 10px;
	transition: all 0.3s;
}

.info-item a {
	display: flex;
	align-items: center;
	text-decoration: none;
	color: #333;
	padding: 8px 0;
	border-bottom: 1px dashed #eee;
}

.info-dot {
	width: 7px;
	height: 8px;
	background: url("../images/info-dot.png") center/cover no-repeat;
	margin-right: 8px;
	flex-shrink: 0;
	-webkit-transition: all .3s;
	-moz-transition: all .3s;
	-ms-transition: all .3s;
	-o-transition: all .3s;
	transition: all .3s;
}

.info-title-text {
	flex: 1;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	font-size: 14px;
}

.info-date {
	color: #666;
	font-size: 12px;
	margin-left: 10px;
}

.info-item:hover {
	transform: translateX(5px);
}

.info-item:hover a {
	color: #205DC4;
}

.info-item:hover .info-dot {
	background-image: url("../images/info-dot-active.png");
}

/* 通知公告特殊样式 */
.notice-list {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.notice-item {
	margin-bottom: 0;
	border-bottom: 1px solid #eee;
	padding-bottom: 8px;
}

.notice-item a {
	display: flex;
    align-items: center;
	padding: 0;
    text-decoration: none;
	border-bottom: none;
}

.notice-date {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	min-width: 60px;
	margin-right: 15px;
    color:#333;
    border:1px solid #ddd;
    padding:5px 0;
}

.notice-day {
	font-size: 20px;
	font-weight: bold;
	line-height: 1;
}

.notice-month {
	font-size: 12px;
	color: #666;
	margin-top: 5px;
}

.notice-content {
	flex: 1;
}

.notice-content h3 {
	font-size: 14px;
	margin: 0;
	line-height: 1.4;
    color:#333;
	font-weight: normal;
    text-decoration: none;
		display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.notice-item:hover {
}

.notice-item:hover h3 {
	color: #205DC4;
}

/* 响应式设计 */
@media (max-width: 992px) {
	.info-container {
		flex-direction: column;
	}

	.info-box {
		width: 100%;
	}
}

/* CSS代码

接下来，我们需要添加相应的CSS样式：
```css
/* 政策法规和党的建设模块样式 */
.policy-party-section {
	margin: 30px 0;
}

.policy-party-container {
	display: flex;
	gap: 40px;
}

.policy-box {
	flex: 1;
	border-radius: 8px;
	padding: 10px 0;
}

.policy-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 15px;
	border-bottom: 2px solid #EBEBEB;
	padding-bottom: 10px;
}

.policy-title {
	display: flex;
	align-items: center;
}

.policy-title h2 {
	font-size: 18px;
	color: #205DC4;
	margin: 0;
	font-weight: 600;
}

.party-icon {
	background: url('../images/icon5.png') no-repeat;
	background-size: contain;
	width: 24px;
	height: 24px;
	margin-right: 10px;
}

.regulation-icon {
	background: url('../images/icon6.png') no-repeat;
	background-size: contain;
	width: 24px;
	height: 24px;
	margin-right: 10px;
}

.policy-more {
	color: #666;
	text-decoration: none;
	font-size: 14px;
	display: flex;
	align-items: center;
}

/* 特色政策内容 */
.featured-policy {
	display: flex;
	margin-bottom: 20px;
	gap: 27px;
}

.featured-policy-img {
	width: 40%;
	height: 200px;
	overflow: hidden;
}

.featured-policy-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.3s;
}

.featured-policy:hover .featured-policy-img img {
	transform: scale(1.05);
}

.featured-policy-info {
	width: 60%;
}

.featured-policy-info h3 {
	font-size: 18px;
	color: #333333;
	margin: 0 0 10px 0;
	line-height: 1.8;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
}

.policy-date {
	color: #999;
	font-size: 14px;
	margin: 0 0 10px 0;
}

.policy-summary {
	color: #666;
	font-size: 16px;
	margin: 0;
	line-height: 1.9;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
}

/* 政策列表 */
.policy-list {
	list-style: none;
	padding: 0;
	margin: 0;
}

.policy-item {
	margin-bottom: 10px;
	transition: all 0.3s;
}

.policy-item a {
	display: flex;
	align-items: center;
	text-decoration: none;
	color: #333;
	padding: 8px 0;
	border-bottom: 1px dashed #eee;
}

.policy-dot {
	width: 7px;
	height: 8px;
	background: url("../images/info-dot.png") center/cover no-repeat;
	margin-right: 8px;
	flex-shrink: 0;
	-webkit-transition: all .3s;
	-moz-transition: all .3s;
	-ms-transition: all .3s;
	-o-transition: all .3s;
	transition: all .3s;
}

.policy-title-text {
	flex: 1;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	font-size: 14px;
}

.policy-item:hover {
	transform: translateX(5px);
}

.policy-item:hover .policy-dot {
	background-image: url("../images/info-dot-active.png");
}

.policy-item:hover a {
	color: #205DC4;
}

.full-list {
	height: 100%;
	display: flex;
	flex-direction: column;
}

.full-list .policy-item {
	margin-bottom: 3.6px;
}

.full-list .policy-item a {
	padding: 6px 0;
}

/* 响应式设计 */
@media (max-width: 992px) {
	.policy-party-container {
		flex-direction: column;
	}

	.policy-box {
		width: 100%;
	}

	.featured-policy {
		flex-direction: column;
	}

	.featured-policy-img,
	.featured-policy-info {
		width: 100%;
	}

	.featured-policy-img {
		margin-bottom: 10px;
	}
}

/* 企业展示模块样式 */
.company-section {
	margin: 30px 0;
	border-radius: 8px;
	padding: 10px 0;
}

.section-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 20px;
	border-bottom: 2px solid #f0f0f0;
	padding-bottom: 10px;
}

.section-title {
	display: flex;
	align-items: center;
}

.section-title h2 {
	font-size: 20px;
	color: #205DC4;
	margin: 0;
	font-weight: 600;
}

.company-icon {
	background: url('../images/icon7.png') no-repeat;
	background-size: contain;
	width: 24px;
	height: 24px;
	margin-right: 10px;
}

.company-icons {
	background: url('../images/icon11.png') no-repeat !important;
	background-size: 100% 100% !important;
	width: 24px;
	height: 24px;
	margin-right: 10px;
}

.company-more {
	color: #666;
	text-decoration: none;
	font-size: 14px;
	display: flex;
	align-items: center;
}

.company-container {
	margin-top: 20px;
}

.company-grid {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	justify-content: space-between;
}

.company-item {
	flex: 0 0 calc(33.333% - 14px);
	margin-bottom: 20px;
}

.company-card {
	display: block;
	text-decoration: none;
	background-color: #fff;
	overflow: hidden;
	transition: transform 0.3s;
	height: 100%;
}

.company-card:hover .company-info{
	background: #205dc4;
}

.company-card:hover .company-info h3{
	color: #fff;
}

.company-img {
	width: 100%;
	height: 270px;
	overflow: hidden;
}

.company-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s;
}

.company-card:hover .company-img img {
	transform: scale(1.05);
}

.company-info {
	padding: 15px;
	text-align: center;
	background-color: #f9f9f9;
}

.company-info h3 {
	margin: 0;
	font-size: 16px;
	color: #333;
	font-weight: 500;
}

/* 响应式设计 */
@media (max-width: 992px) {
	.company-item {
		flex: 0 0 calc(50% - 10px);
	}
}

@media (max-width: 576px) {
	.company-item {
		flex: 0 0 100%;
	}

	.company-img {
		height: 180px;
	}
}



/* 三栏模块共用样式 */
.triple-section {
	margin: 30px 0;
}

.triple-container {
	display: flex;
	width: 100%;
}

.triple-box {
	border-radius: 8px;
	padding: 10px 0;
	width: calc(100% / 3 - 26.666px);
	margin-right: 40px;
}

.triple-box:last-child {
	margin-right: 0;
}

.triple-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 15px;
	border-bottom: 2px solid #f0f0f0;
	padding-bottom: 10px;
}

.triple-title {
	display: flex;
	align-items: center;
	position: relative;
}

.triple-title::before {
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	bottom: -15px;
	z-index: 10;
	border-bottom: 3px solid #205DC4;
}

.triple-title h2 {
	font-size: 18px;
	color: #205DC4;
	margin: 0;
	font-weight: 600;
}

.committee-icon {
	background: url('../images/icon8.png') no-repeat;
	background-size: contain;
	width: 20px;
	height: 20px;
	margin-right: 10px;
}


.statistics-icon {
	background: url('../images/icon9.png') no-repeat;
	background-size: contain;
	width: 20px;
	height: 20px;
	margin-right: 10px;
}

.culture-icon {
	background: url('../images/icon10.png') no-repeat;
	background-size: contain;
	width: 20px;
	height: 20px;
	margin-right: 10px;
}

.triple-more {
	color: #666;
	text-decoration: none;
	font-size: 14px;
	display: flex;
	align-items: center;
}

.triple-list {
	list-style: none;
	padding: 0;
	margin: 0;
}

.triple-item {
	margin-bottom: 10px;
	transition: all 0.3s;
}

.triple-item a {
	display: flex;
	align-items: center;
	text-decoration: none;
	color: #333;
	padding: 8px 0;
	border-bottom: 1px dashed #eee;
}

.triple-dot {
	width: 7px;
	height: 8px;
	background: url("../images/info-dot.png") center/cover no-repeat;
	margin-right: 8px;
	flex-shrink: 0;
	-webkit-transition: all .3s;
	-moz-transition: all .3s;
	-ms-transition: all .3s;
	-o-transition: all .3s;
	transition: all .3s;
}

.triple-title-text {
	flex: 1;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	font-size: 14px;
}

.triple-date {
	color: #666;
	font-size: 12px;
	margin-left: 10px;
}

.triple-item:hover {
	transform: translateX(5px);
}

.triple-item:hover .triple-dot {
	background-image: url("../images/info-dot-active.png");
}

.triple-item:hover a {
	color: #205DC4;
}

/* 响应式设计 */
@media (max-width: 992px) {
	.triple-container {
		flex-direction: column;
	}

	.triple-box {
		width: 100%;
		margin-bottom: 20px;
	}
}

/* 顶部导航栏样式 */
.top-nav {
	background-color: #f8f8f8;
	border-bottom: 1px solid #e7e7e7;
	font-size: 14px;
}

.top-nav-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 15px;
}

.top-nav-links {
	display: flex;
	justify-content: space-between;
}

.dropdown {
	position: relative;
	padding: 10px 0;
}

.dropdown-toggle {
	color: #333;
	text-decoration: none;
	padding: 5px 10px;
	display: flex;
	align-items: center;
}

.dropdown-icon {
	display: inline-block;
	width: 0;
	height: 0;
	margin-left: 5px;
	border-left: 5px solid transparent;
	border-right: 5px solid transparent;
	border-top: 5px solid #333;
}

.dropdown-menu {
	position: absolute;
	top: 100%;
	left: 0;
	z-index: 1000;
	display: none;
	min-width: 200px;
	padding: 5px 0;
	margin: 0;
	background-color: #fff;
	border: 1px solid rgba(0, 0, 0, .15);
	border-radius: 4px;
	box-shadow: 0 6px 12px rgba(0, 0, 0, .175);
}

.dropdown-menu a {
	display: block;
	padding: 8px 15px;
	color: #333;
	text-decoration: none;
	white-space: nowrap;
}

.dropdown-menu a:hover {
	background-color: #f5f5f5;
	color: #205DC4;
}

.dropdown:hover .dropdown-menu {
	display: block;
}

/* 页脚样式 */
.footer {
	background-color: #205DC4;
	color: #fff;
	padding: 40px 0 20px;
	margin-top: 30px;
}

.footer-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 15px;
}

.footer-info {
	display: flex;
	flex-wrap: wrap;
	margin-bottom: 30px;
}

.footer-contact {
	flex: 0 0 30%;
	padding-right: 30px;
}

.footer-contact p {
	margin: 10px 0;
	font-size: 14px;
}

.footer-links {
	flex: 0 0 70%;
	display: flex;
	flex-wrap: wrap;
}

.footer-link-group {
	flex: 1;
	min-width: 150px;
	margin-bottom: 20px;
}

.footer-link-group h3 {
	font-size: 16px;
	margin-bottom: 15px;
	font-weight: 600;
	position: relative;
	padding-bottom: 10px;
}


.footer-link-group ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.footer-link-group ul li {
	margin-bottom: 8px;
}

.footer-link-group ul li a {
	color: #ccc;
	text-decoration: none;
	font-size: 14px;
	transition: color 0.3s;
}

.footer-link-group ul li a:hover {
	color: #fff;
}

.footer-bottom {
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	padding-top: 20px;
	text-align: center;
	font-size: 12px;
	color: #ccc;
}

/* 响应式设计 */
@media (max-width: 992px) {
	.footer-contact {
		flex: 0 0 100%;
		padding-right: 0;
		margin-bottom: 20px;
	}

	.footer-links {
		flex: 0 0 100%;
	}

	.footer-link-group {
		flex: 0 0 50%;
	}

	.top-nav-links {
		flex-wrap: wrap;
	}

	.dropdown {
		flex: 0 0 50%;
	}
}

@media (max-width: 576px) {
	.footer-link-group {
		flex: 0 0 100%;
	}

	.dropdown {
		flex: 0 0 100%;
	}
}
