* {
	margin: 0;
	padding: 0;
}

li {
	list-style-type: none;
}

a {
	text-decoration: none;
	color: black;
	/* 默认颜色 */
}

.shou {
	color: red;
}

body {
	background-color: lightpink;
}

a:hover {
	color: red;
	/* 鼠标悬停时的颜色 */
}

.daohang {
	width: 100%;
	height: 150px;
}

.logo {
	margin-top: 30px;
	margin-left: 150px;

}

.daohang ul {
	/* float: left; */
	/* width: ; */
	margin-left: 60%;
	margin-top: -60px;
}

.daohang li {
	display: inline-block;
	font-size: 30px;
	margin-left: 20px;
}

/* 轮播图 */
/* 基础样式 */
.carousel {
	position: relative;
	max-width: 100%;
	max-height: 680px;
	margin: 0 auto;
	overflow: hidden;
}

.carousel-track {
	display: flex;
	transition: transform 0.5s ease-in-out;
}

.carousel-slide {
	min-width: 100%;
	height: 400px;
	width: 100%;
	height: 50%;
}

.carousel-slide img {
	width: 100%;
	height: 70%;
	object-fit: cover;
}

/* 导航按钮 */
.carousel-button {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	background: rgba(0, 0, 0, 0.5);
	color: white;
	border: none;
	padding: 10px 15px;
	cursor: pointer;
	font-size: 1.5rem;
}

.button-prev {
	left: 10px;
}

.button-next {
	right: 10px;
}

/* 指示器 */
.carousel-indicators {
	position: absolute;
	bottom: 20px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	gap: 10px;
}

.indicator {
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.5);
	cursor: pointer;
	transition: background 0.3s ease;
}

.indicator.active {
	background: rgba(255, 255, 255, 0.9);
}

/* <!-- 图片文字信息 --> */
.list-item {
	display: flex;
	align-items: center;
	margin-bottom: 10px;

}

.list-item img {
	width: 60%;
	/* 根据需要调整图片大小 */
	/* height: 100%; */
	/* 根据需要调整图片大小 */
	margin-right: 10px;
	/* 图片与文字之间的间距 */
}

.list-ol {
	width: 600px;
	margin-top: 3%;
	float: left;
	margin-left: 20%;
}

.list-ol1 {
	width: 600px;
	margin-top: 3%;
	float: right;
	margin-right: 15%;
}

/* <!-- 自动获取热点评价 -- */
#hotspot-info {
	border: 1px solid #ccc;
	padding: 10px;
	margin: 20px;
	background-color: #f9f9f9;
}

#hotspot-info h2 {
	color: #333;
}

#hotspot-info p {
	color: #666;
}

@media (max-width: 600px) {
	#hotspot-info {
		margin: 10px;
		padding: 5px;
	}
}

/* 备案 */
.bei {
	margin: auto;
	margin-left: 45%;
}