/* 全局样式重置 */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: "Microsoft Yahei", sans-serif;
}

body {
	background-color: #f8f8f8;
	color: #333;
}

a {
	text-decoration: none;
	color: inherit;
}

ul {
	list-style: none;
}

/* 通用标题样式 */
.section-title {
	font-size: 24px;
	font-weight: 600;
	color: #333;
	text-align: center;
	margin: 40px 0 20px;
	position: relative;
}

.section-title::after {
	content: "";
	display: block;
	width: 120px;
	height: 3px;
	background-color: #e60012;
	margin: 10px auto 0;
}

/* 轮播箭头按钮通用样式 */
.banner-arrow,
.video-arrow,
.activity-arrow,
.carousel-arrow {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 50px;
	height: 50px;
	/* border-radius: 50%; */
	background-color: rgba(255, 255, 255, 0.8);
	border: none;
	font-size: 24px;
	color: #333;
	cursor: pointer;
	z-index: 10;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease;
}

.banner-arrow:hover,
.video-arrow:hover,
.activity-arrow:hover,
.carousel-arrow:hover {
	/* background-color: #e60012; */
	/* color: #fff; */
}

/* 加载更多按钮 */
.more-btn {
	display: block;
	width: 120px;
	height: 40px;
	line-height: 40px;
	text-align: center;
	margin: 40px auto 0;
	border: 1px solid #e60012;
	border-radius: 20px;
	color: #e60012;
	font-size: 14px;
	text-decoration: none;
	transition: all 0.3s;
}

.more-btn:hover {
	background-color: #e60012;
	color: #fff;
}