@charset "utf-8";
/* Optimized keyWordList.css for tag/default.asp */

/* Basic Reset & Body */
body {
	background-color: #f5f7fa;
	color: #333;
	font-family: "Heiti SC", "Microsoft YaHei", Arial, sans-serif;
	margin: 0;
	padding: 0;
}

a {
	text-decoration: none;
	color: #555;
	transition: color 0.2s;
}

a:hover {
	color: #3266A0;
	text-decoration: underline;
}

ul,
li {
	list-style: none;
	padding: 0;
	margin: 0;
}

h1,
h2,
h3,
p {
	margin: 0;
	padding: 0;
}

/* Small Nav (Top Bar) */
.smallnav {
	width: 100%;
	height: 40px;
	background: #3266A0;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.smallnav .cont {
	width: 1200px;
	margin: 0 auto;
	line-height: 40px;
	color: #fff;
	font-size: 13px;
	display: flex;
	justify-content: space-between;
}

.smallnav .cont a {
	color: #fff;
}

.smallnav .cont a:hover {
	text-decoration: none;
	opacity: 0.8;
}

/* Header (.top) */
.top {
	width: 100%;
	height: 70px;
	background: #fff;
	border-bottom: 1px solid #eee;
}

.top .cont {
	width: 1200px;
	height: 70px;
	color: #CCC;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.top .cont .l {
	margin-top: 0;
	display: flex;
	align-items: flex-end;
}

.top .cont .l .nav {
	margin-left: 20px;
	font-size: 14px;
	color: #555;
	line-height: normal;
	padding-bottom: 5px;
}

.top .cont .m {
	margin: 0;
}

.top .cont .m form {
	display: flex;
	align-items: center;
}

/* Search Input Wrapper and Elements */
.search-input-wrapper {
	position: relative;
	display: flex;
	align-items: center;
}

.top .cont .m .kw {
	border: 2px solid #3266A0;
	border-right: none;
	border-radius: 4px 0 0 4px;
	padding: 0 10px;
	width: 300px;
	height: 32px;
	line-height: 32px;
	outline: none;
	color: #333;
	font-size: 14px;
}

.top .cont .m .submit {
	border: none;
	background: #3266A0;
	color: #fff;
	font-weight: bold;
	font-size: 14px;
	width: 70px;
	height: 36px;
	border-radius: 0 4px 4px 0;
	cursor: pointer;
	line-height: normal;
}


/* Search History & Suggestions */
.search-history {
	position: absolute;
	top: calc(100% + 2px);
	left: 0;
	right: 70px;
	background: #fff;
	border: 1px solid #ddd;
	border-radius: 4px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
	z-index: 1000;
	max-height: 280px;
	overflow-y: auto;
}

.history-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 10px 15px;
	background: #f8f9fa;
	border-bottom: 1px solid #eee;
	font-size: 13px;
	color: #666;
	font-weight: 600;
}

.clear-history {
	color: #3266A0;
	font-size: 12px;
	font-weight: normal;
	cursor: pointer;
}

.clear-history:hover {
	color: #2850a0;
	text-decoration: underline;
}

.history-list {
	padding: 0;
	margin: 0;
}

.history-item {
	display: flex;
	align-items: center;
	padding: 10px 15px;
	cursor: pointer;
	border-bottom: 1px solid #f5f5f5;
	transition: background 0.2s, color 0.2s;
}

.history-item:last-child {
	border-bottom: none;
}

.history-item i {
	font-size: 14px;
	color: #999;
	margin-right: 8px;
}

.history-item .keyword {
	flex: 1;
	font-size: 14px;
	color: #555;
}

.history-item:hover,
.history-item.active {
	background: #f0f7ff;
	color: #3266A0;
}

.history-item:hover .keyword,
.history-item.active .keyword {
	color: #3266A0;
}

.history-item:hover i,
.history-item.active i {
	color: #3266A0;
}

/* Search Suggestions Dropdown */
.search-suggestions {
	position: absolute;
	top: calc(100% + 2px);
	left: 0;
	right: 70px;
	background: #fff;
	border: 1px solid #ddd;
	border-radius: 4px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
	z-index: 1000;
	max-height: 320px;
	overflow-y: auto;
}

.suggestions-list {
	padding: 0;
	margin: 0;
}

.suggestion-item {
	display: flex;
	align-items: center;
	padding: 12px 15px;
	cursor: pointer;
	border-bottom: 1px solid #f5f5f5;
	transition: background 0.2s, color 0.2s;
}

.suggestion-item:last-child {
	border-bottom: none;
}

.suggestion-item i {
	font-size: 14px;
	color: #999;
	margin-right: 8px;
	flex-shrink: 0;
}

.suggestion-item .keyword {
	flex: 1;
	font-size: 14px;
	color: #555;
}

.suggestion-item .keyword strong {
	color: #3266A0;
	font-weight: 600;
}

.suggestion-item .count {
	font-size: 12px;
	color: #999;
	margin-left: 10px;
	flex-shrink: 0;
}

.suggestion-item:hover,
.suggestion-item.active {
	background: #f0f7ff;
}

.suggestion-item:hover .keyword,
.suggestion-item.active .keyword {
	color: #3266A0;
}

.suggestion-item:hover i,
.suggestion-item.active i {
	color: #3266A0;
}

.suggestion-item:hover .count,
.suggestion-item.active .count {
	color: #3266A0;
}

/* Result Count Badge */
.result-count {
	font-size: 14px;
	font-weight: normal;
	color: #999;
	margin-left: 8px;
}

/* Hot Search Section */
.hot-search-wrapper {
	background: #fff;
	border-radius: 8px;
	padding: 15px 20px;
	margin-bottom: 20px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
	display: flex;
	align-items: center;
	flex-wrap: wrap;
}

.hot-search-label {
	font-size: 14px;
	color: #666;
	font-weight: 600;
	margin-right: 15px;
	white-space: nowrap;
}

.hot-search-label i {
	color: #ff6b6b;
	margin-right: 5px;
}

.hot-search-tags {
	flex: 1;
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.hot-tag {
	display: inline-block;
	padding: 5px 12px;
	background: #f5f7fa;
	color: #555;
	font-size: 13px;
	border-radius: 16px;
	transition: all 0.2s;
	border: 1px solid transparent;
}

.hot-tag:hover {
	background: #3266A0;
	color: #fff;
	border-color: #3266A0;
	transform: translateY(-1px);
}

.no-hot {
	color: #999;
	font-size: 13px;
}


/* Main Layout */
.content {
	width: 1200px;
	margin: 20px auto;
	min-height: 600px;
}

/* Breadcrumb (.nav) */
.nav {
	padding: 0;
	margin-left: 20px;
	color: #555;
	font-size: 14px;
	line-height: normal;
}

.nav a,
.nav a strong {
	color: #555;
}

.nav a:hover,
.nav a:hover strong {
	color: #3266A0;
	text-decoration: none;
}

.nav strong {
	font-weight: bold;
}

.nav span {
	margin: 0 5px;
	color: #555;
	font-weight: normal;
	font-family: sans-serif;
}

/* List Section (.lists) - Card Style */
.lists {
	background: #fff;
	border-radius: 8px;
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
	margin-bottom: 20px;
	overflow: hidden;
	border: 1px solid #eef2f7;
}

/* Page Title (.list2) */
.lists .list2 {
	padding: 25px 30px;
	border-bottom: 1px solid #f0f0f0;
	background: #fff;
}

.lists .list2 h1 {
	font-size: 24px;
	font-weight: 600;
	color: #333;
	line-height: 1.2;
	padding-left: 15px;
	border-left: 4px solid #3266A0;
}

/* List Content Container (.list3) */
.lists .list3 {
	border: none;
}

.lists .list3 .listL {
	width: 100%;
	border: none;
	padding: 0;
}

/* List Items - Flex Layout (.list-item) */
.list-container {
	padding-top: 10px;
}

.list-item {
	display: flex;
		padding: 18px 20px;
		border-bottom: 1px solid #f0f0f0;
		transition: background .2s;
}
.list-item:hover {
	background: #fafafa;
}
.list-item:last-child {
	border-bottom: none;
}

/* Image Box */
.pic-box {
	width: 200px;
	height: 150px;
	flex-shrink: 0;
	margin-right: 25px;
}

.pic-box img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 6px;
	border: 1px solid #f0f0f0;
	transition: all 0.3s ease;
	display: block;
}

.pic-box img:hover {
	transform: scale(1.02);
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Info Box */
.info-box {
	flex-grow: 1;
	display: flex;
	flex-direction: column;
}

/* Title Row */
.info-box .t {
	margin-bottom: 10px;
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
}

.info-box .t h2 {
	font-size: 20px;
	font-weight: bold;
	line-height: 1.4;
	color: #333;
	margin: 0;
}

.info-box .t h2 a {
	color: #333;
	text-decoration: none;
	transition: color 0.2s;
}

.info-box .t h2 a:hover {
	color: #3266A0;
}

.info-box .t .qy {
	margin-top: 4px;
	flex-shrink: 0;
	margin-left: 10px;
}

.info-box .t .qy a {
	color: #999;
	background: #f5f5f5;
	padding: 2px 8px;
	border-radius: 2px;
	font-size: 12px;
	display: inline-block;
	transition: all 0.2s;
}

.info-box .t .qy a:hover {
	color: #fff;
	background: #3266A0;
	text-decoration: none;
}

/* Content Description */
.info-box .c {
	font-size: 14px;
	color: #666;
	line-height: 1.6;
	margin-bottom: 12px;
	height: 48px;
	overflow: hidden;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	line-clamp: 2;
	text-align: left;
	word-break: break-all;
}

/* Tags / Bottom Row */
.info-box .sx {
	font-size: 13px;
	color: #999;
	margin-top: auto;
}

.info-box .sx a {
	color: #999;
	margin-right: 12px;
	display: inline-block;
}

.info-box .sx a:hover {
	color: #3266A0;
}

/* Recommendations (.infoTZ) */
.infoTZ {
	width: 1200px;
	margin: 40px auto 20px;
	padding-top: 0;
}

.infoTZ ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	padding: 0;
	list-style: none;
}

.infoTZ ul li {
	width: 225px !important;
	background: #fff;
	border-radius: 8px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
	margin-bottom: 25px;
	overflow: hidden;
	transition: all 0.3s ease;
}

.infoTZ ul li:hover {
	transform: translateY(-5px);
	box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
}

.infoTZ ul li img {
	width: 100%;
	height: 173px;
	object-fit: cover;
	border: none;
	display: block;
}

.infoTZ ul li .team {
	padding: 12px 15px 5px;
	font-size: 12px;
	color: #999;
	display: flex;
	justify-content: space-between;
}

.infoTZ ul li .title {
	padding: 0 15px 15px;
	font-size: 15px;
	font-weight: bold;
	color: #333;
	line-height: 1.4;
	height: 42px;
	overflow: hidden;
}

.infoTZ ul li a {
	text-decoration: none;
	color: inherit;
	display: block;
}

.infoTZ ul li a:hover {
	text-decoration: none;
}

/* Footer Data (.footerData1) */
.footerData1 {
	background: #fff;
	border-radius: 8px;
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
	border: 1px solid #eef2f7;
	padding: 15px 20px;
	margin-top: 20px;
}

.footerData1 dl {
	display: flex;
	flex-wrap: wrap;
	margin: 0;
	padding: 0;
	position: relative;
}

.footerData1 dt {
	order: 1;
	padding: 10px 20px;
	cursor: pointer;
	background: #f5f5f5;
	border-radius: 4px 4px 0 0;
	margin-right: 5px;
	transition: all 0.2s;
	position: relative;
	z-index: 0;
}

.footerData1 dt:hover {
	background: #e8e8e8;
}

.footerData1 dt.active {
	background: #3266A0;
	z-index: 2;
}

.footerData1 dt h3 {
	font-size: 14px;
	font-weight: 600;
	color: #666;
	margin: 0;
}

.footerData1 dt.active h3 {
	color: #fff;
}

.footerData1 dd {
	order: 2;
	width: 100%;
	display: none;
	margin: 0;
	padding-top: 15px;
	border-top: 2px solid #3266A0;
	margin-top: -2px;
	z-index: 1;
	min-height: 120px;
}

.footerData1 dd.active {
	display: block;
}

.footerData1 dd a {
	display: inline-block;
	padding: 6px 12px;
	margin: 4px;
	background: #f8f9fa;
	border-radius: 4px;
	color: #666;
	font-size: 13px;
	transition: all 0.2s;
}

.footerData1 dd a:hover {
	background: #3266A0;
	color: #fff;
}

/* Footer */
.footer {
	width: 100%;
	background: #fff;
	border-top: 1px solid #e7e7e7;
	padding: 40px 0;
	margin-top: 30px;
	font-size: 14px;
	line-height: 1.8;
	color: #666;
}

.footer .cont {
	width: 1200px;
	margin: 0 auto;
	text-align: center;
	color: #666;
}

.footer .c1 {
	margin-bottom: 15px;
}

.footer .c1 a {
	margin: 0 8px;
	color: #555;
}

.footer .c1 a:hover {
	color: #FF5A00;
}

.footer .c1 .sep {
	color: #dcdcdc;
}

.footer .c2 {
	color: #999;
	font-size: 13px;
	font-family: Arial, sans-serif;
	padding: 0;
}

.footer .c2 a {
	color: #999;
}

.footer .c2 a:hover {
	color: #FF5A00;
}

/* Helpers */
.mt10 {
	margin-top: 10px;
}

.mb10 {
	margin-bottom: 10px;
}

/* Back to Top */
.back-to-top {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M18 15l-6-6-6 6'/%3E%3C/svg%3E");
	background-color: rgba(50, 102, 160, 0.8);
	background-size: 24px;
	background-repeat: no-repeat;
	background-position: center;
	border-radius: 50%;
	bottom: 50px;
	height: 44px;
	width: 44px;
	position: fixed;
	margin-left: 610px;
	right: auto;
	left: 50%;
	z-index: 99;
	cursor: pointer;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
	display: none;
	transition: background-color 0.3s, transform 0.3s;
}

.back-to-top:hover {
	background-color: #3266A0;
	transform: translateY(-3px);
}

/* Tablet Portrait - Minimal adaptive support for smaller PC screens */
@media screen and (min-width: 769px) and (max-width: 1024px) {

	.content,
	.smallnav .cont,
	.top .cont,
	.footer .cont,
	.infoTZ,
	.footerData1,
	.lists {
		width: 750px;
	}

	.back-to-top {
		margin-left: 385px;
		/* 750/2 + 10 */
	}
}