/* Global styles */
body {
	font-family: Arial, sans-serif;
	background-color: #f9f9f9;
	margin: 0;
	padding: 0;
}

h2 {
	font-size: 1rem;
}


a:hover{
	color: #3cc0ff;
}


.uk-card-body {
	padding: 20px 20px;
}

.uk-accordion-content {
	margin-top: 0px;
}

/* Navbar styles */
.uk-navbar-container {
	background-color: #333;
	color: #fff;
	padding: 10px 20px; /* Adjusted padding */
	display: flex;
	justify-content: space-between; /* Aligning items */
}

.uk-navbar-left img {
	max-height: 40px;
	vertical-align: middle;
}

.uk-navbar-right p {
	color: #060606;
	margin: 0;
	font-size: 0.8rem;
}

/* Breadcrumb styles */
.breadcrumb {
	padding: 10px 20px;
	background-color: #fff;
	font-size: 0.8rem;
	margin: 0 auto;
	max-width: 1160px;
	margin-top: 10px;
}

.breadcrumb a{
	text-decoration: none;
	color: #666;
}

/* Main content styles */
.uk-container {
	margin-top: 10px; /* Adjusted margin-top */
	padding: 0 20px; /* Adjusted padding */
}

.uk-card {
	border: none; /* Removed border */
	border-radius: 8px;
	background-color: #fff;
	margin-bottom: 12px;
}


/* Related videos styles */
.related-videos {
	list-style: none;
	padding: 0;
	margin-top: 20px;
}

.related-videos li {
	display: flex;
	align-items: center;
	border-bottom: 1px solid #ddd;
	padding-bottom: 10px;
	word-wrap: break-word; /* Wrap long words */
	margin-top: 10px 
}

.related-videos li:last-child {
	border-bottom: none;
	padding-bottom: 0;
}

.related-videos a{
	text-decoration: none;
}

.related-videos img {
	width: 100px; /* Adjusted width */
	height: auto; /* Auto height */
	border-radius: 8px;
	margin-right: 20px;
}

.related-videos p {
	font-size: 14px; /* Reduced font size */
	margin: 0;
	color: #333;
	max-width: 180px; /* Adjusted max width */
}

.related-videos .video-description {
	font-size: 12px; /* Reduced font size */
	color: #666;
	margin-top: 5px;
	max-width: 180px; /* Adjusted max width */
}

/* Footer styles */
.uk-section {
	background-color: #333;
	color: #fff;
	text-align: center;
	padding: 20px;
	border-top: 1px solid #555;
	margin-top: 10px;
}

.nav_car{
	background-color: #fff;
	margin: 0 auto;
	max-width: 1160px;
}
/* Content List Module */
.content-list {
	background-color: #fff;
	padding: 40px;
	border-radius: 8px;
	margin-top: 5px;
	max-width: 1160px;
	margin: 0 auto;
	overflow: hidden;
}

.content-list h2 {
	font-size: 1.2rem;
	color: #333;
	margin-bottom: 10px;
}

.content-list ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.content-list li {
	margin-bottom: 10px;
}

@media (max-width: 768px) {
	.content-list {
		padding: 20px;
	}
	
	.content-list h2 {
		font-size: 1rem;
	}
	
	.content-list li {
		margin-bottom: 5px;
	}
}

/* 新增样式 */
.list-title {
	position: relative; /* 让伪元素相对于其父元素定位 */
}

.uk-accordion-title {
	font-size: 1rem;
}

.list-title:before {
	content: " "; /* 伪元素内容为空格 */
	position: absolute; /* 绝对定位 */
	top: 50%; /* 将伪元素垂直居中 */
	left: -5px; /* 距离左侧距离 */
	transform: translateY(-50%); /* 垂直居中 */
	width: 5px; /* 宽度 */
	height: 16px; /* 高度 */
	background: #4187f0; /* 蓝色背景 */
	overflow: hidden; /* 隐藏溢出部分 */
}

.content-list ul {
	list-style: none;
	padding-left: 5px;
	margin: 0;
}

.content-list  li{
	align-items: center; /* 垂直居中 */
	margin-bottom: 20px; /* 调整列表项之间的垂直间距 */
	border-bottom: 1px solid #e0e6ee; /* 增加底部边框作为分割线 */
	padding-bottom: 10px; /* 调整底部边框与文字的间距 */
}

.content-list li:first-child {
	margin-top: 10px; /* 设置第一个 li 元素与上边缘的间距 */
}

/* 设置竖向导航的样式 */
.course {
  list-style-type: none; /* 移除默认的列表样式 */
  padding: 0;
  margin: 0;
}

.course a{
	text-decoration: none;
	color: #666;
	font-size: 14px;
}

.course a:hover{
	color: #3cc0ff;
	text-decoration: none;
}

.course span {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 12px 20px;
	position: relative; /* 设置相对定位，以便添加竖线和原点 */
	/* display: block; *//* 将span元素变为块级元素，撑开整行 */;
	margin-left: 10px;
	transition: background-color 0.3s ease;
}

.course span::before {
	content: "";
	position: absolute;
	top: 50%; /* 原点垂直居中 */
	left: 0; /* 原点位置 */
	transform: translateY(-50%); /* 将原点向上偏移50%自身高度，使其垂直居中 */
	width: 8px; /* 原点的宽度 */
	height: 8px; /* 原点的高度 */
	border: 1px solid #e0e6ee; /* 设置边框 */
	border-radius: 50%; /* 将原点设为圆形 */
	background-color: transparent; /* 原点的背景颜色为空 */
}

.course2 span::after {
	content: "";
	position: absolute;
	top: 48%; /* 竖线与原点相连的位置 */
	left: 5px; /* 竖线的位置 */
	width: 1px; /* 竖线的宽度 */
	height: 100%; /* 竖线的高度，撑满整个导航项 */
	background-color: #ddd; /* 竖线的颜色 */
	transform: translateX(-50%);  将竖线向左偏移50%自身宽度，使其与原点水平居中 */
}

.course span:hover {
	background-color: #f0f0f0; /* 鼠标移动到span上时的背景颜色 */
}

.course span::before {
	/* Existing styles */
	background-color: transparent; /* Make the circle hollow by default */
}

.course span::after {
	/* Existing styles */
}

.course span {
	/* Existing styles */
}

.course span:hover::before {
	background-color: #3ec0ff; /* Change the color to solid when hovered */
}

		
.video-duration {
	font-size: 0.9rem;
	color: #999;
}

.thumbnail-link {
	position: relative;
	display: inline-block;
	text-decoration: none;
}

.play-button {
	position: absolute;
	top: 50%;
	left: 42%;
	transform: translate(-50%, -50%);
	width: 40px;
	height: 40px;
	background-color: rgba(0, 0, 0, 0.4);
	border-radius: 50%;
	z-index: 1; /* 确保按钮位于图像上方 */
}

.play-button:before {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-40%, -50%);
	width: 0;
	height: 0;
	border-top: 15px solid transparent;
	border-bottom: 15px solid transparent;
	border-left: 25px solid white;
}

.thumbnail {
	display: block;
	width: 100%; /* 确保图像占据容器的整个宽度 */
	height: auto; /* 保持图像的宽高比 */
}