@charset "utf-8";
/* CSS Document - Refactored UI 2025-12-18 */

/* ================== Reset & Base ================== */
body {
    background: #f5f7fa;
    font-family: "Microsoft YaHei", Arial, sans-serif;
    margin: 0;
    padding: 0;
    color: #333;
}

a {
    color: #555;
    text-decoration: none;
    transition: color .2s;
}

a:hover {
    color: #3266A0;
}

img {
    border: none;
}

ul,
li,
p,
h1,
h2,
h3,
figure {
    margin: 0;
    padding: 0;
    list-style: none;
}

/* ================== Layout Containers ================== */
.content,
.smallnav .cont,
.top .cont,
.infoTZ,
.footer .cont {
    width: 1200px;
    margin: 0 auto;
}

/* ================== Small Nav ================== */
.smallnav {
    width: 100%;
    height: 40px;
    background: #3266A0;
}

.smallnav .cont {
    height: 40px;
    line-height: 40px;
    color: #FFF;
    display: flex;
    justify-content: space-between;
    font-size: 13px;
}

.smallnav .cont a {
    color: #FFF;
}

.smallnav .cont .r a:hover {
    text-decoration: none;
    opacity: 0.8;
}

/* ================== Top Header ================== */
.top {
    width: 100%;
    height: 70px;
    background: #FFF;
    border-bottom: 1px solid #EEE;
    margin-bottom: 20px;
}

.top .cont {
    height: 70px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #666;
}

.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; /* Fine-tune alignment */
}

.top .cont .l .nav a {
    text-decoration: none;
}
.top .cont .l .nav a:hover {
    text-decoration: none;
    color: #3266A0;
}
.top .cont .l .nav a:first-child {
    font-weight: bold;
}

.top .cont .l .nav h1 {
    display: inline;
    font-size: 14px;
    font-weight: normal;
    margin: 0;
    padding: 0;
}


.top .cont .m {
    margin: 0;
}



.top .cont .m .kw {
    border: 2px solid #3266A0;
    height: 32px;
    padding: 0 10px;
    width: 300px;
    outline: none;
    font-size: 14px;
    border-right: none;
    color: #333;
    border-radius: 4px 0 0 4px;
}

.top .cont .m .submit {
    background: #3266A0;
    color: #fff;
    border: none;
    height: 36px;
    width: 70px;
    cursor: pointer;
    font-size: 14px;
    border-radius: 0 4px 4px 0;
    font-weight: bold;
}

.top .cont .m .submit:hover {
    background: #2857a0;
}

/* ================== Breadcrumb ================== */
.top .nav,
.content .nav {
    margin: 0;
    color: #555;
    font-size: 14px;
}

.top .nav a,
.content .nav a {
    color: #555;
}

.top .nav a:hover,
.content .nav a:hover {
    color: #3266A0;
    text-decoration: none;
}

/* ================== Filter Section (.nav2) ================== */
.nav2 {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
    padding: 20px 25px;
    margin-bottom: 20px;
    color: #333;
}

.nav2 .filter-row {
    display: flex;
    padding: 12px 0;
    border-bottom: 1px dashed #eee;
    align-items: flex-start;
}

.nav2 .filter-row:last-child {
    border-bottom: none;
}

.nav2 .s1 {
    width: 80px;
    font-weight: bold;
    color: #333;
    line-height: 26px;
    text-align: right;
    padding-right: 15px;
    font-size: 15px;
}

/* Filter Toggle Button */
.filter-toggle {
    text-align: center;
    cursor: pointer;
    color: #666;
    font-size: 13px;
    padding: 8px 0;
    border-top: none;
    margin-top: 5px;
    transition: color 0.2s;
}

.filter-toggle:hover {
    color: #3266A0;
}

.filter-toggle .iconfont {
    font-size: 12px;
    margin-left: 4px;
    transition: transform 0.3s;
    display: inline-block;
}

.filter-toggle.open {
    border-top: 1px dashed #eee;
}

.filter-toggle.open .iconfont {
    transform: rotate(180deg);
}

.nav2 .s2 {
    flex: 1;
    display: flex;
    flex-wrap: wrap;
    gap: 8px 12px;
    align-items: center;
}

.nav2 .s2>div {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 8px 12px;
    align-items: center;
}

.nav2 .s2 a,
.nav22 a {
    padding: 2px 10px;
    border-radius: 4px;
    color: #666;
    line-height: 24px;
    white-space: nowrap;
}

.nav2 .s2 a:hover,
.nav22 a:hover {
    color: #3266A0;
    background: #eff6ff;
    text-decoration: none;
}

.nav2 .s2 .ck,
.nav22 .ck {
    background: #F4841A;
    color: #fff;
}

.nav2 .s2 .ck:hover,
.nav22 .ck:hover {
    background: #F4841A;
    color: #fff;
    text-decoration: none;
}

/* Selected Tags Bar (.s3) */
.nav2 .s3 {
    background: #f9f9f9;
    padding: 8px 15px;
    display: flex;
    align-items: center;
    border-radius: 4px;
    color: #666;
    margin-top: 5px;
}

.nav2 .s3 div {
    margin-right: 10px;
}

.nav2 .s3 ul {
    display: flex;
    font-size: 12px;
}

.nav2 .s3 ul li {
    border: 1px solid #F4841A;
    background: #fff;
    padding: 2px 6px;
    margin-right: 8px;
    display: flex;
    align-items: center;
    border-radius: 2px;
}

.nav2 .s3 ul li a {
    display: inline-block;
    width: 10px;
    height: 10px;
    background: url(/qietu/img/xx.png) no-repeat center;
    margin-left: 5px;
}

/* Dropdown Filter (.nav22) */
.nav22 {
    display: flex;
    flex-direction: column;
    line-height: 24px;
}





/* ================== Main Lists Area ================== */
.lists {
    margin-top: 0;
}

/* Tabs (.list1) */
.lists .list1 {
    border-bottom: 2px solid #F4841A;
    margin-bottom: 15px;
    height: 40px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
}

.lists .list1 ul {
    display: flex;
}

.lists .list1 ul li {
    margin-right: 5px;
    font-weight: normal;
    background: none;
    padding: 0;
    height: auto;
    border: none;
}

.lists .list1 ul li a {
    display: block;
    padding: 0 20px;
    height: 38px;
    line-height: 38px;
    background: #fff;
    border: 1px solid #eee;
    border-bottom: none;
    border-radius: 6px 6px 0 0;
    color: #555;
    font-size: 16px;
    text-align: center;
    min-width: 60px;
}

.lists .list1 .ck,
.lists .list1 .ck a {
    background: #F4841A;
    color: #fff;
    border-color: #F4841A;
    font-weight: bold;
}

/* List Content Wrapper (.list3) */
.lists .list3 {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    border: none;
}

/* Left Column (.listL) */
.lists .list3 .listL {
    flex: 1;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
    padding: 0;
    border: none;
    min-width: 0;
}

/* Right Column (.listR) */
.lists .list3 .listR {
    width: 200px;
    flex-shrink: 0;
    position: -webkit-sticky;
    position: sticky;
    top: 20px;
}

.lists .list3 .listL .listTuiJian {
    height: 40px;
    line-height: 40px;
    color: #999;
    border-bottom: 1px solid #eee;
    margin-bottom: 10px;
}

/* List Item (.list-item) */
.list-item {
    display: flex;
    padding: 0;
    border-bottom: 1px solid #f0f0f0;
    transition: background .2s;
    padding: 18px 20px;
}

.list-item:hover {
    background: #fafafa;
}

.list-item .l {
    width: 240px;
    height: 180px;
    flex-shrink: 0;
    margin-right: 20px;
}

.list-item .l img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 4px;
    border: 1px solid #f0f0f0;
    display: block;
}

.list-item .m {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 0;
    border: none;
}

.list-item .m .t {
    font-size: 18px;
    font-weight: bold;
    color: #333;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    line-height: 26px;
}

.list-item .m .t a {
    color: #333;
}

.list-item .m .t a:hover {
    color: #F4841A;
    text-decoration: none;
}

.tags-row {
    margin-bottom: 14px;
    display: flex;
    align-items: center;
}

.tags-row .qy {
    display: inline-block;
    font-size: 12px;
    font-weight: normal;
    padding: 2px 8px;
    background: #eef2f7;
    color: #3266A0;
    border-radius: 12px;
    margin-right: 5px;
    transition: all 0.2s;
    cursor: default;
}

.tags-row .qy:hover {
    background: #3266A0;
    color: #fff;
    text-decoration: none;
}

.list-item .m .c {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    height: 70px;
    overflow: hidden;
    margin-bottom: auto;
    width: auto;
    text-align: justify;
    margin-top: 0;
    word-break: break-all;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    line-clamp: 3;
}

.list-item .m .sx {
    color: #999;
    font-size: 13px;
    display: flex;
    align-items: center;
}

.list-item .m .sx .split {
    margin: 0 10px;
    color: #e0e0e0;
    font-style: normal;
    font-size: 12px;
    position: relative;
    top: -1px;
}

.list-item .r {
    width: 120px;
    text-align: right;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 0;
    border: none;
    height: 180px;
}

.jq {
    font-family: Arial;
    font-size: 18px;
    color: #F4841A;
    font-weight: bold;
    text-align: right;
}

.jq span {
    font-size: 20px;
}

.jq2 {
    color: #999;
    font-size: 12px;
    margin-top: 4px;
    line-height: 2.2;
    text-align: right;
}

.my {
    font-size: 20px;
    color: #F4841A;
    font-weight: bold;
    text-align: right;
}

.mj {
    font-size: 14px;
    color: #666;
    margin-top: auto;
    line-height: 2.2;
    text-align: right;
}

/* Right Sidebar (.listR) */
.lists .list3 .listR {
    width: 300px;
    flex-shrink: 0;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
    padding: 20px;
    box-sizing: border-box;
    text-align: center;
}



.lists .list3 .listR img {
    max-width: 100%;
    border-radius: 4px;
}

/* Recommendation Title in Sidebar */
.lists .list2 {
    background: #f2f2f2;
    padding: 10px 15px;
    border-radius: 4px;
    margin-bottom: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid #e6e6e6;
    height: auto;
    line-height: normal;
}

.lists .list2 h2 {
    font-size: 16px;
    font-weight: bold;
    color: #333;
}

.lists .list2 .L2 a {
    color: #3266A0;
    font-size: 12px;
}



/* ================== Pagination ================== */
.pagelist {
    padding: 40px 0;
    text-align: center;
}

.pagelist ul {
    display: inline-block;
    list-style: none;
    margin: 0;
    padding: 0;
}

.pagelist ul li {
    display: inline;
    margin: 0 5px;
}

.pagelist a {
    font-size: 14px;
    color: #555;
    border: 1px solid #ddd;
    padding: 6px 12px;
    background: #fff;
    border-radius: 4px;
    display: inline-block;
}

.pagelist a:hover {
    background: #f5f5f5;
    color: #3266A0;
    border-color: #3266A0;
}

.pagelist font {
    font-size: 14px;
    color: #fff;
    background: #3266A0;
    padding: 6px 12px;
    border: 1px solid #3266A0;
    border-radius: 4px;
    font-weight: normal;
}

/* ================== 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;
    text-decoration: none;
}

.footer .c1 a:hover {
    color: #FF5A00;
    text-decoration: none;
}

.footer .c1 .sep {
    color: #dcdcdc;
}

.footer .c2 {
    color: #999;
    font-size: 13px;
    font-family: Arial, sans-serif;
    padding: 0;
}

.footer .c2 a {
    color: #999;
    text-decoration: none;
}

.footer .c2 a:hover {
    color: #FF5A00;
    text-decoration: none;
}

/* Free Publish Button */
.btn-pub {
    display: inline-block;
    height: 34px;
    line-height: 34px;
    padding: 0 20px;
    background: #F4841A;
    color: #fff;
    border-radius: 4px;
    font-size: 14px;
    font-weight: bold;
    transition: all 0.2s;
    margin-bottom: 2px;
}

.btn-pub:hover {
    background: #e67610;
    color: #fff;
    text-decoration: none;
    box-shadow: 0 2px 6px rgba(244, 132, 26, 0.3);
}

/* ================== Helpers ================== */


/* ================== Back To Top ================== */
/* 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;
	/* 1200/2 + 10 - 2025-12-19 */
	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);
}

/* ================== 底部标签区域1 (From index.css) ================== */
/* ================== 底部标签区域1 (From index.css - DL/DT/DD Structure) ================== */
.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;
    margin-bottom: 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; /* Pull up to overlap with tabs */
	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;
	text-decoration: none;
}

.footerData1 dd a:hover {
	background: #3266A0;
	color: #fff;
	text-decoration: none;
}

/* ================== 底部标签区域2 (From index.css) ================== */
.footerData2 {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
    border: 1px solid #eef2f7;
    padding: 15px 20px;
    overflow: hidden;
    margin-bottom: 20px;
}

.FD_t2 {
    display: flex;
    flex-wrap: wrap;
    border-bottom: 1px solid #eee;
    margin-bottom: 15px;
    padding-bottom: 10px;
}

.FD_t2 li,
.FD_t2 a {
    padding: 4px 10px;
    cursor: pointer;
    margin: 3px;
    background: #f5f5f5;
    border-radius: 4px;
    color: #666;
    font-size: 13px;
    transition: all 0.2s;
}

.FD_t2 li:hover,
.FD_t2 a:hover {
    background: #e8e8e8;
    color: #333;
}

.FD_t2 li.select,
.FD_t2 a.select {
    background: #3266A0;
    color: #fff;
}

.FD_C2 {
    min-height: 100px;
}

.FD_C2 li.fd_show2 {
    display: block;
}

.FD_C2 li {
    display: none;
}

.FD_C2 li a {
    display: inline-block;
    padding: 5px 10px;
    margin: 3px;
    background: #f8f9fa;
    border-radius: 4px;
    color: #666;
    font-size: 13px;
    transition: all 0.2s;
}

.FD_C2 li a:hover {
    background: #FF5A00;
    color: #fff;
}

/* ================== Recommendations (.infoTZ) - Synced with keyWordList.css ================== */
.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; /* Adjusted to prevent wrapping */
    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;
}.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;
}


/* Nav2 (Filter/Search Info Area) */
.nav2 { background: #fff; border-radius: 8px; box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04); padding: 20px 25px; margin-bottom: 20px; color: #333; }
.nav2 .filter-row { display: flex; padding: 12px 0; border-bottom: 1px dashed #eee; align-items: center; }

/* Lists Area */
.lists { margin-top: 0; }
.lists .list3 { display: flex; gap: 20px; align-items: flex-start; border: none; }
.lists .list3 .listL { flex: 1; background: #fff; border-radius: 8px; box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04); padding: 0; border: none; min-width: 0; }
.lists .list3 .listR { width: 300px; flex-shrink: 0; background: #fff; border-radius: 8px; box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04); padding: 20px; box-sizing: border-box; text-align: center; }
.lists .list1 { margin-bottom: 20px; }

/* List Item */
.list-item { display: flex; padding: 18px 20px; border-bottom: 1px solid #f0f0f0; transition: background .2s; }
.list-item:hover { background: #fafafa; }
.list-item .l { width: 240px; height: 180px; flex-shrink: 0; margin-right: 20px; }
.list-item .l a { display: block; position: relative; width: 100%; height: 100%; }
.list-item .l img { width: 100%; height: 100%; object-fit: cover; border-radius: 4px; border: 1px solid #f0f0f0; display: block; }
.list-item .m { flex: 1; display: flex; flex-direction: column; justify-content: flex-start; }
.list-item .m .t { font-size: 18px; font-weight: bold; color: #333; margin-bottom: 14px; display: flex; align-items: center; line-height: 26px; }
.list-item .m .c { font-size: 14px; color: #666; line-height: 1.6; height: 70px; overflow: hidden; margin-bottom: auto; text-align: justify; display: -webkit-box; -webkit-line-clamp: 3; line-clamp: 3; -webkit-box-orient: vertical; }
.list-item .m .sx { color: #999; font-size: 13px; display: flex; align-items: center; }
.list-item .m .sx .split { margin: 0 10px; color: #e0e0e0; }
.list-item .r { width: 120px; text-align: right; flex-shrink: 0; display: flex; flex-direction: column; justify-content: flex-start; height: 180px; }

/* Prices */
.jq { font-family: Arial; font-size: 18px; color: #F4841A; font-weight: bold; text-align: right; }
.jq span { font-size: 20px; }
.jq2 { color: #999; font-size: 12px; margin-top: 4px; line-height: 2.2; text-align: right; }
.my { font-size: 20px; color: #F4841A; font-weight: bold; text-align: right; }
.mj { font-size: 14px; color: #666; margin-top: auto; line-height: 2.2; text-align: right; }

/* Search Highlight */
.highlight { color: #d00; font-weight: bold; }

/* 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 Data */
.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; margin-bottom: 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.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; }



/* Helpers */
.tags-row .qy { display: inline-block; font-size: 12px; font-weight: normal; padding: 2px 8px; background: #eef2f7; color: #3266A0; border-radius: 12px; margin-right: 5px; cursor: default; }



/* Hot Search Section */


/* ========================================
   Mobile Responsive Styles
   ======================================== */

@media screen and (max-width: 767px) {
    /* Layout */
    .content, .smallnav .cont, .top .cont {
        width: 100%;
        padding: 0 15px;
        box-sizing: border-box;
    }
    
    /* Top Navigation */
    .top {
        height: auto;
        padding: 10px 0;
    }
    
    .top .cont {
        flex-direction: column;
        align-items: stretch;
    }
    
    .top .cont .l {
        justify-content: center;
        margin-bottom: 10px;
    }
    
    .top .cont .l img {
        height: 40px;
        width: auto;
    }
    
    .top .cont .l .nav {
        display: none;
    }
    
    /* Search Form */
    .top .cont .m form {
        width: 100%;
    }
    
    .top .cont .m .kw {
        width: 100%;
        height: 40px;
        font-size: 16px;
    }
    
    .top .cont .m .submit {
        height: 44px;
        width: 80px;
    }
    

    
    /* Search Results */
    .lists .list3 {
        flex-direction: column;
    }
    
    .lists .list3 .listR {
        width: 100%;
        margin-top: 20px;
    }
    
    /* List Items */
    .list-item {
        flex-direction: column;
        padding: 15px;
    }
    
    .list-item .l {
        width: 100%;
        height: auto;
        aspect-ratio: 4/3;
        margin-right: 0;
        margin-bottom: 12px;
    }
    
    .list-item .m {
        width: 100%;
    }
    
    .list-item .m .t {
        font-size: 16px;
        margin-bottom: 10px;
    }
    
    .list-item .m .c {
        font-size: 13px;
        height: auto;
        -webkit-line-clamp: 2;
        line-clamp: 2;
    }
    
    .list-item .r {
        width: 100%;
        height: auto;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        margin-top: 10px;
        padding-top: 10px;
        border-top: 1px solid #f0f0f0;
    }
    
    .jq, .my {
        font-size: 16px;
        text-align: left;
    }
    
    .mj {
        text-align: right;
        margin-top: 0;
    }
    
    /* Footer */
    .footer {
        padding: 20px 0;
        font-size: 12px;
    }
    
    .footer .cont {
        width: 100%;
    }
    
    /* Small Nav */
    .smallnav {
        display: none;
    }
    
    /* Back to Top Button */
    .back-to-top {
        bottom: 20px;
        right: 20px;
        left: auto;
        margin-left: 0;
        width: 40px;
        height: 40px;
    }
    
    /* Search History Dropdown */

}

/* Tablet Portrait */
/* Tablet Portrait - Disabled for Fixed 1200px Requirement */
@media screen and (min-width: 769px) and (max-width: 1024px) {
/*
    .content, .smallnav .cont, .top .cont, .footer .cont {
        width: 750px;
    }
    
    .list-item .l {
        width: 200px;
        height: 150px;
    }
*/
}

/* Enforce 1200px fixed width for Desktop >= 768px */
@media screen and (min-width: 768px) {
    body {
        min-width: 1200px;
        overflow-x: auto;
    }
    .content, .smallnav .cont, .top .cont, .infoTZ, .footer .cont {
        width: 1200px !important;
        margin-left: auto;
        margin-right: auto;
        box-sizing: border-box; 
    }
}

/* Auto-Complete Suggestions */


/* Touch-friendly enhancements */
@media (hover: none) and (pointer: coarse) {
    .hot-tag, .history-item {
        min-height: 44px;
        display: flex;
        align-items: center;
    }
    
    .list-item:hover {
        background: transparent;
    }
}

/* ================== Recommendations (.infoTZ) - Synced with list.css ================== */
.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; /* Adjusted to prevent wrapping */
    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;
}
.search-input-wrapper { position: relative; display: flex; align-items: center; }
.top .cont .m .kw { border: 2px solid #3266A0; height: 32px; padding: 0 10px; width: 300px; outline: none; font-size: 14px; border-radius: 4px 0 0 4px; }
.top .cont .m .submit { background: #3266A0; color: #fff; border: none; height: 36px; width: 70px; cursor: pointer; font-size: 14px; border-radius: 0 4px 4px 0; font-weight: bold; }

/* 推荐 SVG 角标样式 */
.recommend-badge {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 10;
    width: 45px;
    height: 45px;
    pointer-events: none; /* 防止遮挡点击 */
    background-image: url('data:image/svg+xml;utf8,<svg t="1767536617694" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="4101" width="32" height="32"><path d="M172.757333 409.642667l42.24-42.24 31.68 31.68-42.24 42.24zM218.581333 454.122667l42.24-42.218667 31.68 31.68-42.24 42.24zM264.256 501.973333l42.24-42.261333 33.194667 33.173333-42.24 42.24z" fill="%23ef0909" p-id="4102"></path><path d="M339.2 0L0 345.6V1024L1024 0H339.2z m-36.266667 179.2l14.933334-14.933333 19.2 19.2 57.6-57.6-19.2-19.2 14.933333-14.933334 19.2 19.2 53.333333-53.333333 14.933334 14.933333-53.333334 53.333334 14.933334 14.933333-14.933333 14.933333-14.933333-14.933333-57.6 57.6 10.666667 10.666667-14.933334 14.933333-12.8-10.666667-55.466666 55.466667-14.933334-14.933333L320 198.4l-17.066667-19.2z m-130.133333 128l44.8 6.4-6.4 23.466667c-12.8-4.266667-27.733333-6.4-42.666667-8.533334l4.266667-21.333333zM256 625.066667c-6.4 6.4-12.8 14.933333-21.333333 21.333333-6.4-4.266667-12.8-10.666667-19.2-14.933333 6.4-6.4 12.8-10.666667 17.066666-14.933334 4.266667-4.266667 4.266667-10.666667 0-14.933333l-55.466666-55.466667c-6.4 10.666667-12.8 21.333333-17.066667 32l-19.2-14.933333c6.4-10.666667 12.8-21.333333 19.2-34.133333l-49.066667-49.066667L85.333333 503.466667l-14.933333-14.933334 25.6-25.6-38.4-38.4 14.933333-14.933333L110.933333 448l23.466667-23.466667 14.933333 14.933334-23.466666 23.466666L170.666667 507.733333c6.4-10.666667 12.8-21.333333 17.066666-29.866666 6.4 6.4 12.8 10.666667 17.066667 14.933333l-19.2 32 61.866667 61.866667c17.066667 14.933333 19.2 27.733333 8.533333 38.4z m70.4-61.866667l-14.933333 14.933333-132.266667-132.266666c2.133333 8.533333 2.133333 19.2 4.266667 27.733333H160c-4.266667-38.4-12.8-78.933333-29.866667-123.733333L149.333333 341.333333c6.4 17.066667 10.666667 32 14.933334 49.066667l102.4-102.4 14.933333 14.933333-51.2 51.2 32 32 49.066667-49.066666 14.933334 14.933334-49.066667 44.8 32 32 49.066667-49.066667 14.933334 14.933334-49.066666 49.066666 32 32 55.466666-55.466666 12.8 12.8-113.066666 113.066666 14.933333 17.066667z m155.733333-162.133333L401.066667 320c2.133333 21.333333 2.133333 40.533333 0 59.733333-8.533333-2.133333-17.066667-2.133333-23.466667-4.266666 4.266667-38.4 0-76.8-8.533333-117.333334L320 307.2l-14.933333-14.933333L362.666667 234.666667c-2.133333-4.266667-2.133333-8.533333-4.266667-14.933334l17.066667-17.066666c2.133333 4.266667 4.266667 8.533333 4.266666 14.933333l121.6-121.6 14.933334 14.933333-128 128c4.266667 14.933333 6.4 27.733333 10.666666 42.666667l102.4 102.4-19.456 16.896z m85.504-84.992l-36.352 36.352c-6.656-4.096-12.8-8.704-19.456-14.848 12.8-10.752 25.6-23.552 36.352-32.256 6.656-6.656 6.656-14.848 0-21.504l-25.6-27.648-61.952 61.952-14.848-14.848 61.952-61.952-10.752-10.752 10.752-49.152-80.896 80.896-14.848-14.848 106.496-106.496 14.848 14.848-14.848 66.048 4.096 4.096 53.248-53.248 14.848 14.848L538.112 240.64l27.648 27.648c16.896 15.36 16.896 32.768 2.56 47.616z" fill="%23ef0909" p-id="4103"></path></svg>'), url('data:image/svg+xml;utf8,<svg t="1767538995839" class="icon" viewBox="0 0 1025 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="4266" width="32" height="32"><path d="M173.056 409.6l42.496-42.496 31.744 31.744-42.496 42.496-31.744-31.744z m46.08 44.544l42.496-41.984 31.744 31.744-42.496 42.496-31.744-32.256z m46.08 47.616l42.496-42.496 33.28 33.28-42.496 42.496-33.28-33.28z" fill="%23FFFFFF" p-id="4267"></path><path d="M339.456 0l-339.456 345.6V1024L1025.024 0h-685.568z m-35.84 179.2l14.848-14.848 19.456 19.456 57.856-57.856-19.456-19.456 14.848-14.848 19.456 19.456 53.248-53.248 14.848 14.848-53.248 53.248 14.848 14.848-14.848 14.848-14.848-14.848-57.856 57.856 10.752 10.752-14.848 14.848-12.8-10.752-55.296 55.296-14.848-14.848 55.296-55.296-17.408-19.456z m-46.592 445.952c-6.656 6.656-12.8 14.848-21.504 21.504-6.656-4.096-12.8-10.752-19.456-14.848 6.656-6.656 12.8-10.752 16.896-14.848s4.096-10.752 0-14.848l-55.296-55.296c-6.656 10.752-12.8 21.504-16.896 32.256l-19.456-14.848c6.656-10.752 12.8-21.504 19.456-34.304l-49.152-49.152-25.6 23.552-14.848-14.848 25.6-25.6-38.4-38.4 14.848-14.848 38.4 38.4 23.552-23.552 14.848 14.848-23.552 23.552 45.056 45.056c6.656-10.752 12.8-21.504 16.896-29.696 6.656 6.656 12.8 10.752 16.896 14.848l-19.456 32.256 61.952 61.952c17.408 13.312 19.968 26.112 9.216 36.864z m69.632-61.952l-14.848 14.848-132.096-132.096c2.048 8.704 2.048 19.456 4.096 27.648h-23.552c-4.096-38.4-12.8-78.848-29.696-123.904l19.456-8.704c6.656 16.896 10.752 32.256 14.848 49.152l30.208-30.208c-3.072-1.024-5.632-3.072-7.68-5.12-7.168-7.168-11.264-15.872-11.264-25.6-2.56-0.512-4.608-0.512-7.168-1.024l4.096-21.504 9.216 1.536c1.536-3.072 3.584-6.144 5.12-9.216 5.632-13.312 24.064-14.848 34.816-9.216 5.632 3.072 10.24 9.216 11.776 15.36s0.512 11.264-1.536 16.896l34.304-34.304 14.848 14.848-51.2 51.2 32.256 32.256 49.152-49.152 14.848 14.848-49.152 45.056 32.256 32.256 49.152-49.152 14.848 14.848-49.152 49.152 32.256 32.256 55.296-55.296 12.8 12.8-113.152 113.152 14.848 16.384z m156.16-162.304l-80.896-80.896c2.048 21.504 2.048 40.448 0 59.904-8.704-2.048-16.896-2.048-23.552-4.096 4.096-38.4 0-76.8-8.704-117.248l-49.152 49.152-14.848-14.848 57.856-57.856c-2.048-4.096-2.048-8.704-4.096-14.848l16.896-16.896c2.048 4.096 4.096 8.704 4.096 14.848l121.856-121.856 14.848 14.848-128 128c4.096 14.848 6.656 27.648 10.752 42.496l102.4 102.4-19.456 16.896z m85.504-84.992l-36.352 36.352c-6.656-4.096-12.8-8.704-19.456-14.848 12.8-10.752 25.6-23.552 36.352-32.256 6.656-6.656 6.656-14.848 0-21.504l-25.6-27.648-61.952 61.952-14.848-14.848 61.952-61.952-10.752-10.752 10.752-49.152-80.896 80.896-14.848-14.848 106.496-106.496 14.848 14.848-14.848 66.048 4.096 4.096 53.248-53.248 14.848 14.848L538.112 240.64l27.648 27.648c16.896 15.36 16.896 32.768 2.56 47.616z" fill="%23FFFFFF" p-id="4268"></path><path d="M57.856 367.616h228.352V670.72h-228.352z" fill="%23FFFFFF" p-id="4269"></path><path d="M115.2 280.576h228.352V583.68h-228.352z" fill="%23FFFFFF" p-id="4270"></path><path d="M251.904 163.328h195.584v165.888h-195.584z" fill="%23FFFFFF" p-id="4271"></path><path d="M306.176 307.2h135.168v234.496h-135.168zM343.04 52.224h203.264v151.04h-203.264z" fill="%23FFFFFF" p-id="4272"></path><path d="M412.672 166.4h141.312V409.6h-141.312z" fill="%23FFFFFF" p-id="4273"></path><path d="M525.824 111.616h66.048v217.6h-66.048z" fill="%23FFFFFF" p-id="4274"></path></svg>');
    background-repeat: no-repeat;
    background-size: contain;
    /* 重置可能存在的污染样式 */
    color: transparent;
    background-color: transparent;
    padding: 0;
    border-radius: 0;
    font-size: 0;
}

