@charset "utf-8";

/* 招生专业：一行 7 列 */
.major {
	width: 100%;
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 20px;
	box-sizing: border-box;
	font-family: "Microsoft YaHei", "PingFang SC", sans-serif;
	overflow: hidden;
}

.major .title {
	position: relative;
	margin-bottom: 16px;
	font-size: 15px;
	line-height: 1.4;
}

.major .title .link {
	color: #222;
	text-decoration: none;
	font-weight: 700;
}

.major .title .more {
	position: absolute;
	right: 0;
	top: 0;
	color: #555;
	text-decoration: none;
	font-size: 13px;
}

.major__list {
	display: grid;
	grid-template-columns: repeat(7, minmax(0, 1fr));
	gap: 12px;
	margin: 0;
	padding: 0;
	width: 100%;
	list-style: none;
}

/* CMS 输出 li */
.major__list > li {
	margin: 0;
	padding: 0;
	list-style: none;
	min-width: 0;
}

/* CMS 输出 table 包裹 */
.major__list table {
	display: block;
	width: 100%;
	border: 0;
	border-collapse: collapse;
}

.major__list tbody {
	display: grid;
	grid-template-columns: repeat(7, minmax(0, 1fr));
	gap: 12px;
	width: 100%;
}

.major__list tr {
	display: contents;
}

.major__list td {
	display: block;
	padding: 0;
	margin: 0;
	height: auto !important;
	min-width: 0;
	border: 0;
}

.major__list a {
	display: block;
	text-decoration: none;
	min-width: 0;
}

.major__list .news-feature__img {
	position: relative;
	width: 100%;
	min-height: 120px;
	aspect-ratio: 4 / 4.5;
	overflow: hidden;
	background: #f0f3f8;
	border-radius: 4px;
}

.major__list img {
	display: block;
	width: 100%;
	height: 100%;
	max-width: 100%;
	object-fit: cover;
	object-position: center;
	border: 0;
}

.major__list a:hover img {
	transform: scale(1.03);
	transition: transform 0.25s ease;
}
