/* 自定义样式 */
body {
	background-color: #f2f2f2;
}
.header {
	height: 60px;
	background-color: #393D49;
	color: #fff;
	line-height: 60px;
}
.logo {
	font-size: 20px;
	font-weight: bold;
}
.banner {
	/* margin: 15px 0;*/
	margin: 10px auto;
}
.content {
	padding: 15px;
	background-color: #F0F0F0;
	border-radius: 2px;
	box-shadow: 0 1px 2px 0 rgba(0,0,0,.05);
}
.footer {
	text-align: center;
	padding: 20px 0;
	color: #999;
	border-top: 1px solid #e6e6e6;
}
.card {
	margin-bottom: 15px;
	transition: all .3s;
}
.card:hover {
	box-shadow: 0 5px 12px 0 rgba(0,0,0,.1);
	transform: translateY(-5px);
}
.card-img {
	height: 160px;
	overflow: hidden;
}
.card-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.card-title {
	font-size: 16px;
	font-weight: bold;
	margin-bottom: 10px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
.card-desc {
	color: #666;
	height: 40px;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
}
.card-footer {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-top: 15px;
	color: #999;
}
.nav-item {
	padding: 0 15px;
	cursor: pointer;
}
.nav-item:hover {
	color: #1E9FFF;
}
/* 自定义样式 */
.card-list {
	padding: 15px;
}
.card-item {
	margin-bottom: 15px;
	border-radius: 2px;
	box-shadow: 0 1px 2px 0 rgba(0,0,0,.05);
	transition: all .3s;
}
.card-item:hover {
	box-shadow: 0 1px 6px rgba(0,0,0,.2);
}
.card-header {
	border-bottom: 1px solid #f6f6f6;
	padding: 10px 15px;
	font-size: 16px;
	font-weight: bold;
}
.card-body {
	padding: 15px;
}
.card-footer {
	border-top: 1px solid #f6f6f6;
	padding: 10px 15px;
	color: #999;
	font-size: 12px;
}
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: 'Helvetica Neue', Arial, sans-serif;
}

body {
	background-color: #f9f9f9;
}

.footer {
	background-color: #ffffff;
	color: #333333;
	padding: 40px 0 20px;
	box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.05);
	border-top: 1px solid #f0f0f0;
}

.footer-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

.footer-content {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	margin-bottom: 30px;
}

.footer-section {
	flex: 1;
	min-width: 200px;
	margin-bottom: 20px;
	padding: 0 15px;
}

.footer-section h3 {
	font-size: 18px;
	margin-bottom: 20px;
	color: #444;
	font-weight: 600;
}

.footer-section ul {
	list-style: none;
}

.footer-section ul li {
	margin-bottom: 12px;
}

.footer-section ul li a {
	color: #666;
	text-decoration: none;
	transition: color 0.3s;
	font-size: 14px;
}

.footer-section ul li a:hover {
	color: #0066cc;
}

.footer-bottom {
	text-align: center;
	padding-top: 20px;
	border-top: 1px solid #eee;
	color: #999;
	font-size: 13px;
}

.social-icons {
	display: flex;
	margin-top: 15px;
}

.social-icons a {
	display: inline-block;
	margin-right: 15px;
	color: #666;
	font-size: 18px;
	transition: color 0.3s;
}

.social-icons a:hover {
	color: #0066cc;
}

@media (max-width: 768px) {
	.footer-content {
		flex-direction: column;
	}

	.footer-section {
		margin-bottom: 30px;
	}
}
/*二级导航样式*/
