@charset "utf-8";
/* 主容器背景 */

.ftco-section.bg-light.news-page-section {
	background-color: #f8f9fa;
	padding: 50px 0;
}
/* 内部容器，居中对齐 */

.container {
	max-width: 1200px;
	margin: 0 auto;
}
/* 单个新闻项 */

.job-post-item.news-page {
	background-color: #fff;
	padding: 30px;
	border-radius: 8px;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
	margin-bottom: 30px;
	transition: box-shadow 0.3s ease-in-out;
}
/* 鼠标悬停时的效果 */

.job-post-item.news-page:hover {
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}
/* 新闻标题 */

.job-post-item-header {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	margin-bottom: 20px;
}

.job-post-item-header h2 {
	font-size: 2rem;
	/* 增大字体大小 */
	font-weight: bold;
	color: #333;
	margin: 0;
	line-height: 1.4;
}

.job-post-item-header .news-page-data {
	font-size: 1.1rem;
	/* 增大字体大小 */
	color: #999;
	margin-top: 8px;
}
/* 文章内容 */

.job-post-item-body {
	font-size: 1.2rem;
	/* 增大字体大小 */
	color: #444;
	line-height: 1.8;
	margin-top: 20px;
}
/* 段落的首行缩进 */

.job-post-item-body p {
	font-size: 1.2rem;
	margin-bottom: 15px;
	text-indent: 2em;
	/* 设置段落首行缩进 */
}
/* 小屏幕适配 */

@media (max-width: 768px) {
	.container {
		padding: 0 15px;
	}
	.job-post-item.news-page {
		padding: 20px;
	}
	.job-post-item-header h2 {
		font-size: 1.75rem;
		/* 中等屏幕字体大小 */
	}
	.job-post-item-body {
		font-size: 1.1rem;
		/* 中等屏幕字体大小 */
	}
}
/* 用户头像和用户信息样式 */

#logged {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	align-items: center;
}

.nav-item-user {
	display: flex;
	align-items: center;
	margin-right: 16px;
}

.user_headimg {
	width: 30px;
	height: 30px;
	border-radius: 50%;
	margin-right: 10px;
}
/* 用户信息背景样式 */

.user_id {
	font-size: 14px;
	color: #fff;
	/* 文字颜色 */
	/* padding: 5px 10px; */
	/* 增加内边距，使背景颜色更好看 */
	border-radius: 4px;
	/* 圆角效果 */
}
/* 下拉框样式 */

.dropdown-toggle {
	cursor: pointer;
	color: #fff;
	font-size: 14px;
	position: relative;
}
/* 下拉框箭头 */

.caret {
	margin-left: 5px;
	border-top: 5px solid #fff;
	border-right: 5px solid transparent;
	border-bottom: 0;
	border-left: 5px solid transparent;
	display: inline-block;
}
/* 下拉菜单样式 */

.ul_hide_tag {
	display: none;
	position: absolute;
	top: 100%;
	/* 依旧保持菜单位置 */
	right: 0;
	background-color: #fff;
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
	padding: 0;
	/* 去除整体内边距 */
	border-radius: 4px;
	min-width: 100px;
	z-index: 1000;
	list-style: none;
	/* 去除默认的列表样式 */
	margin: 0;
	/* 去除外边距 */
}
/* 每个菜单项li的样式 */

.ul_hide_tag li {
	text-align: center;
	padding: 2px 10px;
	/* 设置上下内边距为 2px，左右 10px */
	margin: 0;
	/* 去掉li之间的间距 */
	font-size: 14px;
	/* 设置字体大小 */
	line-height: 2.5;
	/* 减小行高，减少每个li的上下间距 */
	cursor: pointer;
	/* 鼠标悬停时显示为指针 */
}
/* 下拉菜单项链接样式 */

.ul_hide_tag li a {
	color: #333;
	text-decoration: none;
	font-size: 14px;
	display: block;
	padding: 4px 0;
	/* 减少上下的内边距 */
}
/* 鼠标悬停下拉菜单项 */

.ul_hide_tag li a:hover {
	background-color: #f1f1f1;
}
/* 激活下拉菜单 */

.dropdown:hover .ul_hide_tag {
	display: block;
}
/* 鼠标悬停下拉按钮时显示下拉菜单 */

.dropdown:hover .dropdown-toggle {
	color: #3566ff;
}