/* 信息查询页顶部大图 */
.info-banner {
	width: 100%;
	min-width: 1400px;
	height: 400px;
	overflow: hidden;
}

.info-banner img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* 信息列表区域 */
.info-main {
	padding: 20px 0 80px;
	min-width: 1400px;
	background: #fff;
}

.info-main .container {
	padding: 0;
}

/* 列表 */
.info-list {
	list-style: none;
	margin: 0;
	padding: 0;
}

.info-list li + li {
	border-top: 1px dashed #e6e8eb;
}

/* 列表项（一行：点 + 标题 + 日期 + 箭头） */
.info-item {
	display: flex;
	align-items: center;
	gap: 14px;
	padding: 22px 10px;
	text-decoration: none;
	color: inherit;
	transition: background 0.25s ease, padding 0.25s ease;
}

.info-item:hover {
	background: #f5fbff;
	padding-left: 20px;
}

/* 左侧菱形点 */
.info-dot {
	flex-shrink: 0;
	width: 8px;
	height: 8px;
	background: #0877A8;
	transform: rotate(45deg);
	border-radius: 1px;
	margin-right: 6px;
	transition: background 0.25s ease, transform 0.25s ease;
}

.info-item:hover .info-dot {
	background: #1EA7D9;
	transform: rotate(45deg) scale(1.25);
}

/* 标题 */
.info-title {
	flex: 1;
	min-width: 0;
	font-size: 15px;
	color: #002647;
	line-height: 1.6;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	transition: color 0.25s ease;
}

.info-item:hover .info-title {
	color: #0877A8;
}

/* 右侧日期 */
.info-date {
	flex-shrink: 0;
	font-size: 14px;
	color: #999;
	white-space: nowrap;
}

/* 右箭头 */
.info-arrow {
	flex-shrink: 0;
	width: 18px;
	height: 18px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 16px;
	color: #0877A8;
	opacity: 0;
	transform: translateX(-6px);
	transition: all 0.3s ease;
	margin-left: 14px;
}

.info-item:hover .info-arrow {
	opacity: 1;
	transform: translateX(0);
}
