﻿
*{
	margin:0;
	padding:0;
	box-sizing: border-box;
}

html{
	font-size:14px;
}

body {
	min-width: 1400px;
	background: #f1f5f9;
	font-family: 'Source Han Sans CN', 'Microsoft YaHei', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
	color: #1a365d;
	line-height: 1.6;
	position: relative;
	min-height: 100vh;
}

body::before {
	content: '';
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image:
		linear-gradient(rgba(45, 116, 217, 0.03) 1px, transparent 1px),
		linear-gradient(90deg, rgba(45, 116, 217, 0.03) 1px, transparent 1px);
	background-size: 50px 50px;
	pointer-events: none;
	z-index: -1;
}

/* 鍔ㄦ€佸厜鏁?*/
body::after {
	content: '';
	position: fixed;
	top: -50%;
	left: -50%;
	width: 200%;
	height: 200%;
	background: radial-gradient(circle, rgba(45, 116, 217, 0.05) 0%, transparent 70%);
	animation: rotate 20s linear infinite;
	pointer-events: none;
	z-index: -1;
}

@keyframes rotate {
	0% { transform: rotate(0deg); }
	100% { transform: rotate(360deg); }
}

a{
	text-decoration: none;
	color: inherit;
	transition: color 0.3s ease;
}

a:hover {
	color: #1a3a5c;
}

ul,li{
	list-style: none;
}

img{
	border:none;
	vertical-align: top;
}

.fl{
	float: left;
}

.fr{
	float: right;
}

.clearfix:after{
	content: "";
	display: block;
	height: 0;
	clear: both;
	visibility: hidden;
}

.clearfix{
	zoom: 1;
}

.ellipsis1{
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.ellipsis2{
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
}

.ellipsis3{
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
}

.maxwidth{
	max-width: 1680px; /* 璋冩暣涓?680px锛岄€傚悎澶у鏁板灞忔樉绀哄櫒 */
	width: 96%; /* 浣跨敤鐧惧垎姣斿搴︼紝閬垮厤妯悜婊氬姩鏉?*/
	margin:0 auto;
	position: relative;
	z-index: auto;
	padding: 90px 20px 20px 20px;
}

/* 澶撮儴 */
#header{
	position:fixed;
	top:0;
	left:0;
	width:100%;
	height: 70px;
	background: #fff;
	border-bottom: 1px solid #e5e7eb;
	box-shadow: 0px 2px 8px 0px rgba(0, 0, 0, 0.08);
	z-index:5;
	transition: all 0.3s ease;
}
#header header{
	width: 96%; /* 浣跨敤鐧惧垎姣斿搴︼紝涓巑axwidth淇濇寔涓€鑷?*/
	max-width: 1680px; /* 鏈€澶у搴?680px */
	margin:0 auto;
	position: relative;
}
#header .logo{
	margin:15px 0 0;
	display:block;
	width:140px;
	float:left;
}
#header .nav{
	float:left;
	margin-left:40px;
}
#header .nav .nav-lis{
	float:left;
	margin:0 30px;
	text-align:center;

}
#header .nav .nav-lis.hot>a::after{
	position:absolute;
	top:8px;
	right:-10px;
	content:'';
	width:35px;
	height:20px;
	background:url(../icon/hot.png) no-repeat center;
	background-size:100%;
}
#header .nav .nav-lis>a{
	position:relative;
	display:block;
	font-size: 16px;
	line-height:40px;
	padding:15px 0;
	font-family: Microsoft YaHei;
	font-weight: 400;
	color: #333333;
}
#header .nav .nav-lis.more-ft>a{
	padding-right:20px;
	background:url(../icon/down.png) no-repeat center right 0;
	background-size:12px;
}
#header .nav .nav-lis.active>a,#header .nav .nav-lis:hover>a{
	color:#1d4ed8;
}
#header .nav .nav-lis:hover .navChild{
	display:block !important;
}
#header .nav .nav-lis .navChild{
	position: absolute;
	top: 70px;
	left: 0;
	background: #FFFFFF;
	box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.12);
	border-radius: 12px;
	z-index: 1000;
	animation: slideDown 0.2s ease-out;
}
@keyframes slideDown {
	from {
		opacity: 0;
		transform: translateY(-10px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}
#header .nav .nav-lis .navChild a{
	display: block;
	font-size: 15px;
	line-height: 1.5;
	font-family: Microsoft YaHei;
	font-weight: 400;
	color: #333333;
	transition: all 0.3s ease;
}
#header .nav .nav-lis .navChild .navChild-lis.active a,
#header .nav .nav-lis .navChild a:hover{
	color: #1d4ed8;
}
#header .nav .nav-lis .navChild .navChild-con{
	width: auto;
	max-width: 800px;
	padding: 15px 20px;
	text-align: left;
	display: flex;
	flex-wrap: wrap;
	gap: 10px 15px;
}
#header .nav .nav-lis .navChild .navChild-lis{
	width: auto;
	min-width: 140px;
	font-size: 15px;
	font-family: Microsoft YaHei;
	font-weight: 400;
	color: #333333;
	padding: 8px 16px;
	white-space: nowrap;
	/* border-radius: 8px; */
	transition: all 0.3s ease;
}
#header .nav .nav-lis .navChild .navChild-lis:hover{
	background: rgba(14, 155, 243, 0.08);
	transform: translateX(3px);
}
#header .nav .nav-lis .navChild .course-lis{
	width: 211px;
	height: 59px;
	line-height: 59px;
	border-radius: 5px;
	font-size: 18px;
	font-family: Microsoft YaHei;
	font-weight: bold;
	color: #FD8320;
	padding-left:75px;
	background:url(../icon/nav-l1.png) no-repeat center left 25px;
	background-size:38px;
	background-color: rgba(253, 131, 32, 0.17);
	margin-top:17px;
	margin-right:15px;
}
#header .nav .nav-lis .navChild .course-lis:nth-child(2){
	color: #1d4ed8;
	background:url(../icon/nav-l2.png) no-repeat center left 25px;
	background-size:38px;
	background-color: rgba(14, 155, 243, 0.17);
	margin-bottom:17px;
}
#header .search{
	display: flex;
	/* width: 430px; */
	max-width: 320px;
	min-width: 320px;
	height: 42px;
	line-height: 42px;
	background: #fff;
	border: 1px solid #ddd;
	border-radius: 22px;
	position:relative;
	float:left;
	padding:0 80px 0 105px;
	padding-left: 0;
	padding-right: 0;
	margin:14px 0 14px 80px;
	box-shadow: none;
	transition: all 0.3s ease;
}

#header .search .input-wrapper {
	flex: 1;
	width: 100%;
}
#header .search .select{
	position: relative;
	/* position:absolute;
	top:0;
	left:15px;
	bottom:0; */
	/* margin:auto 0; */
	margin-left: 21px;
	margin-right: 20px;
	width:65px;
	font-size: 14px;
	font-family: Microsoft YaHei;
	font-weight: 400;
	color: #333333;
	cursor: pointer;
	z-index: 10;
}
#header .search .select .txt{
	display:block;
	padding-right:20px;
	background:url(../icon/down.png) no-repeat right 0 center;
	background-size:13px;
	cursor: pointer;
	user-select: none;
}
#header .search .select .navChild{
	position: absolute;
	top:40px;
	left:50%;
	margin-left:-40px;
	width:80px;
	max-height: 200px;
	overflow-y: auto;
	background: linear-gradient(135deg, rgba(248, 250, 252, 0.98) 0%, rgba(255, 255, 255, 0.98) 100%);
	backdrop-filter: blur(15px);
	box-shadow: 0px 8px 32px 0px rgba(26, 54, 93, 0.15);
	border: 1px solid rgba(45, 116, 217, 0.15);
	border-radius: 12px;
	text-align: center;
	z-index: 1000;
	pointer-events: auto;
	overflow: hidden;
}
#header .search .select .navChild .navChild-lis{
	font-size: 14px;
	line-height:40px;
	font-family: 'Source Han Sans CN', 'Microsoft YaHei', sans-serif;
	font-weight: 500;
	color: #1a365d;
	cursor: pointer;
	border: none;
	background: none;
	width: calc(100% - 4px);
	padding: 0;
	margin: 2px;
	border-radius: 8px;
	transition: all 0.3s ease;
}
#header .search .select .navChild .navChild-lis.on,#header .search .select .navChild .navChild-lis:hover{
	color:#1a365d;
	background: #f0f4ff;
	transform: none;
	box-shadow: none;
}
#header .search .select::after{
	content:'';
	width:1px;
	height:25px;
	position: absolute;
	top:0;
	right:-14px;
	bottom:0;
	margin:auto 0;
	background:#EBEBEB;
}
#header .search input{
	display: block;
	width:100%;
	height:40px;
	border: none;
}
#header .search button{
	/* position: absolute; */
	/* top:1px; */
	/* bottom:1px; */
	/* right:1px; */
	width:78px;
	height:40px;
	background: linear-gradient(135deg, #2d74d9 0%, #1a365d 100%);
	border-radius: 0 21px 21px 0;
	border:none;
	cursor: pointer;
	color: #ffffff;
	font-size: 14px;
	font-weight: 600;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease;
	/* box-shadow: 0px 2px 8px 0px rgba(45, 116, 217, 0.3); */
}

#header .search button:hover{
	background: linear-gradient(135deg, #1a365d 0%, #2d74d9 100%);
	transform: translateY(-1px);
	box-shadow: 0px 4px 12px 0px rgba(45, 116, 217, 0.4);
	color: #fff !important;
}

#header .search button .search-icon{
	font-size: 16px;
}
#header .head-img{
	float:right;
	height:70px;
	display:flex;
	justify-content: center;
	align-items: center;
	position:relative;

}
#header .head-img .head_box{
	height:100%;
	padding:10px 0;
}
#header .head-img .login{
	width: 110px;
	height: 42px;
	line-height: 40px;
	border: 1px solid #1d4ed8;
	border-radius: 21px;
	text-align: center;
	margin-right:10px;
}
#header .head-img .login span{
	display: inline-block;
	font-size: 14px;
	font-family: Microsoft YaHei;
	font-weight: 400;
	color: #1d4ed8;
	position: relative;
	margin:0 7px;
	cursor: pointer;
}
#header .head-img .login span:nth-child(2)::after{
	content:'';
	position: absolute;
	top:0;
	left:-8px;
	bottom:0;
	margin:auto 0;
	width:1px;
	height:16px;
	background:#1d4ed8;
}
#header .head-img button{
	width: 110px;
	height: 42px;
	background: #1d4ed8;
	border-radius: 21px;
	text-align: center;
	font-size: 14px;
	font-family: Microsoft YaHei;
	font-weight: bold;
	color: #FFFFFF;
	margin-right:30px;
	cursor: pointer;
}
#header .head-img .head{
	display:inline-block;
	width: 50px;
	height: 50px;
	border-radius: 25px;
	cursor: pointer;
}
#header .head-img .popup{
	position: absolute;
	top: 70px;
	right: 0;
	width: 300px;
	background: #FFFFFF;
	box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.12);
	border-radius: 12px;
	overflow: hidden;
	animation: slideDown 0.2s ease-out;
}
#header .head-img .popup .popup-top{
	width:100%;
	min-height:80px;
	padding-left:80px;
	position:relative;
	background:url(../icon/bg.png) no-repeat center;
	background-size:100%;
	border-radius: 5px 5px 0 0;
	display: flex;
	justify-content: center;
	flex-flow: column;
}
#header .head-img .popup .popup-top .img{
	width:56px;
	height:56px;
	border-radius:50%;
	border:2px solid #fff;
	position:absolute;
	top:0;
	bottom:0;
	left:14px;
	margin:auto 0;
}
#header .head-img .popup .popup-top .name{
	font-size: 16px;
	font-family: Microsoft YaHei;
	font-weight: bold;
	color: #FFFFFF;
}
#header .head-img .popup .popup-top .id{
	font-size: 16px;
	font-family: Microsoft YaHei;
	font-weight: 400;
	color: #F3F3F3;
}
#header .head-img .popup .popup-con .lis{
	padding: 0 20px 0 66px;
	min-height: 55px;
	line-height: 55px;
	font-size: 15px;
	font-family: Microsoft YaHei;
	font-weight: 400;
	color: #333333;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: space-between;
	transition: all 0.3s ease;
}
#header .head-img .popup .popup-con .lis:hover{
	color: #1d4ed8;
	background-color: rgba(14, 155, 243, 0.05);
}
#header .head-img .popup .popup-con .lis.money{
	padding-right: 20px;
	cursor: default;
}
#header .head-img .popup .popup-con .lis.money:hover{
	background-color: transparent;
}
#header .head-img .popup .popup-con .lis.money .money-info{
	display: inline-flex;
	align-items: center;
	gap: 6px;
	flex: 1;
	white-space: nowrap;
	cursor: pointer;
	padding: 5px 10px 5px 0;
	border-radius: 8px;
	transition: all 0.3s ease;
}
#header .head-img .popup .popup-con .lis.money .money-info:hover{
	background-color: rgba(14, 155, 243, 0.05);
}
#header .head-img .popup .popup-con .lis.money .money-info span{
	color: #FF8B03;
	font-weight: 600;
	font-size: 16px;
}
#header .head-img .popup .popup-con .recharge{
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 8px 18px;
	font-size: 13px;
	font-family: Microsoft YaHei;
	font-weight: 600;
	color: #FFFFFF;
	background: linear-gradient(135deg, #FF6B6B 0%, #FF5B53 100%);
	border-radius: 18px;
	border: none;
	cursor: pointer;
	transition: all 0.3s ease;
	box-shadow: 0 2px 8px rgba(255, 91, 83, 0.3);
	white-space: nowrap;
	margin-left: 12px;
	flex-shrink: 0;
}
#header .head-img .popup .popup-con .recharge:hover{
	background: linear-gradient(135deg, #FF5B53 0%, #FF4444 100%);
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(255, 91, 83, 0.4);
}
#header .head-img .popup .popup-con .infor-num{
	position:absolute;
	top:0;
	bottom:0;
	right:15px;
	margin:auto 0;
	font-size: 12px;
	font-family: Microsoft YaHei;
	font-weight: bold;
	color: #FFFFFF;
	min-width: 24px;
	height: 24px;
	background: #F30E34;
	text-align: center;
	line-height: 24px;
	border-radius: 12px;
	padding:0 4px;
}
#header .head-img .popup .popup-con .lis.money{
	background:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%231d4ed8' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='10'%3E%3C/circle%3E%3Cline x1='12' y1='6' x2='12' y2='18'%3E%3C/line%3E%3Cpath d='M15 9.5c0-1.38-1.34-2.5-3-2.5s-3 1.12-3 2.5 1.34 2.5 3 2.5 3 1.12 3 2.5-1.34 2.5-3 2.5'%3E%3C/path%3E%3C/svg%3E") no-repeat center left 30px;
	background-size:22px;
}
#header .head-img .popup .popup-con .lis.homepage{
	background:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%231d4ed8' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M3 9l9-7 9 7v11a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2z'%3E%3C/path%3E%3Cpolyline points='9 22 9 12 15 12 15 22'%3E%3C/polyline%3E%3C/svg%3E") no-repeat center left 29px;
	background-size:24px;
}
#header .head-img .popup .popup-con .lis.personal{
	background:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%231d4ed8' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M16 21v-2a4 4 0 0 0-4-4H5a4 4 0 0 0-4 4v2'%3E%3C/path%3E%3Ccircle cx='8.5' cy='7' r='4'%3E%3C/circle%3E%3C/svg%3E") no-repeat center left 31px;
	background-size:21px;
}
#header .head-img .popup .popup-con .lis.news{
	background:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%231d4ed8' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M21 15a2 2 0 0 1-2 2H7l-4 4V5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2z'%3E%3C/path%3E%3C/svg%3E") no-repeat center left 28px;
	background-size:26px;
}
#header .head-img .popup .popup-con .lis.down{
	background:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%231d4ed8' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M21 15v4a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-4'%3E%3C/path%3E%3Cpolyline points='7 10 12 15 17 10'%3E%3C/polyline%3E%3Cline x1='12' y1='15' x2='12' y2='3'%3E%3C/line%3E%3C/svg%3E") no-repeat center left 33px;
	background-size:21px;
}
#header .head-img .popup .popup-con .lis:hover.homepage{
	background:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%231e40af' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M3 9l9-7 9 7v11a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2z'%3E%3C/path%3E%3Cpolyline points='9 22 9 12 15 12 15 22'%3E%3C/polyline%3E%3C/svg%3E") no-repeat center left 29px;
	background-size:24px;
	color: #1d4ed8;
	background-color: rgba(29,78,216,0.06);
}
#header .head-img .popup .popup-con .lis:hover.personal{
	background:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%231e40af' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M16 21v-2a4 4 0 0 0-4-4H5a4 4 0 0 0-4 4v2'%3E%3C/path%3E%3Ccircle cx='8.5' cy='7' r='4'%3E%3C/circle%3E%3C/svg%3E") no-repeat center left 31px;
	background-size:21px;
	color: #1d4ed8;
	background-color: rgba(29,78,216,0.06);
}
#header .head-img .popup .popup-con .lis:hover.news{
	background:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%231e40af' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M21 15a2 2 0 0 1-2 2H7l-4 4V5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2z'%3E%3C/path%3E%3C/svg%3E") no-repeat center left 28px;
	background-size:26px;
	color: #1d4ed8;
	background-color: rgba(29,78,216,0.06);
}
#header .head-img .popup .popup-con .lis:hover.down{
	background:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%231e40af' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M21 15v4a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-4'%3E%3C/path%3E%3Cpolyline points='7 10 12 15 17 10'%3E%3C/polyline%3E%3Cline x1='12' y1='15' x2='12' y2='3'%3E%3C/line%3E%3C/svg%3E") no-repeat center left 33px;
	background-size:21px;
	color: #1d4ed8;
	background-color: rgba(29,78,216,0.06);
}
#header .head-img .popup .popup-con .lis span{
	color:#FF8B03;
}
#header .head-img .popup .popup-con .lis.exit{
	text-align: left;
	background: transparent;
	padding: 0 20px 0 66px;
	margin-top: 8px;
	border-top: 1px solid #f0f0f0;
	color: #666;
	font-weight: 500;
}
#header .head-img .popup .popup-con .lis.exit::before{
	content: '';
	position: absolute;
	left: 30px;
	top: 50%;
	transform: translateY(-50%);
	width: 22px;
	height: 22px;
	background: url(../icon/exit.png) no-repeat center;
	background-size: 20px;
}
#header .head-img .popup .popup-con .lis.exit:hover{
	background-color: rgba(255, 91, 83, 0.05);
	color: #FF5B53;
}
/* 棣栭〉  */

/* 涓ラ€夊浘绾搁椤靛ご閮ㄦā鍧?*/
.home-hero {
	margin: 0;
}

.home-hero .hero-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	background: linear-gradient(135deg, #f9fafb 0%, #e5f0ff 100%);
	border-radius: 20px;
	padding: 40px 50px;
	box-shadow: 0 15px 40px rgba(15, 23, 42, 0.12);
	position: relative;
	overflow: hidden;
}

.home-hero .hero-left {
	flex: 0 0 35%;
	max-width: 480px;
}

.home-hero .hero-title {
	font-size: 40px;
	font-weight: 700;
	color: #111827;
	margin-bottom: 10px;
}

.home-hero .hero-subtitle {
	font-size: 16px;
	color: #4b5563;
}

.home-hero .hero-right {
	flex: 0 0 55%;
	height: 260px;
}

.home-hero .hero-right .banner-con {
	width: 100%;
	height: 100%;
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 10px 30px rgba(15, 23, 42, 0.16);
}

.home-hero .hero-right .swiper-slide img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

@media (max-width: 992px) {
	.home-hero .hero-inner {
		flex-direction: column;
		padding: 30px 24px;
	}

	.home-hero .hero-left {
		max-width: 100%;
		text-align: left;
	}

	.home-hero .hero-right {
		width: 100%;
		margin-top: 20px;
		height: 220px;
	}
}

.banner-v .banner-img{
	width:100%;
}

/* ==================== 棣栭〉杞挱鍥惧畬鏁存牱寮?浼樺厛绾ф彁鍗? ==================== */
.monthly-showcase-module .banner-v {
	width: 100%;
	position: relative;
	background: #000;
	margin: 0;
	padding: 0;
}

.monthly-showcase-module .banner-v .banner-con {
	width: 100%;
	height: 350px;
	position: relative;
}

.banner-v .swiper-container-horizontal > .swiper-pagination-bullets{
	bottom:15px;
}
.banner-v .swiper-pagination-bullet{
	background: #CCCCCC;
	opacity: 1;
}
.banner-v .swiper-pagination-bullet-active{
	background: #fff;
}

/* 鏈堝搴︿紭绉€浜у搧灞曠ず妯″潡 */
.featured-products-section {
	background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
	padding: 25px 0 20px;
	margin-bottom: 0;
}

.featured-products-box {
	background: #ffffff;
	border: 2px solid rgba(45, 116, 217, 0.15);
	border-radius: 16px;
	padding: 25px 30px;
	box-shadow: 0px 4px 20px 0px rgba(26, 54, 93, 0.08);
	position: relative;
	overflow: hidden;
}

.featured-products-box::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: linear-gradient(90deg, #2d74d9, #d4af37, #0ea9f9, #2d74d9);
	background-size: 200% 100%;
	animation: shimmer 3s linear infinite;
}

@keyframes shimmer {
	0% { background-position: 200% 0; }
	100% { background-position: -200% 0; }
}

.featured-header {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 15px;
}

.featured-icon {
	font-size: 32px;
	line-height: 1;
	animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
	0%, 100% { transform: translateY(0); }
	50% { transform: translateY(-5px); }
}

.featured-title {
	font-size: 22px;
	font-weight: 700;
	color: #1a365d;
	margin: 0;
	background: linear-gradient(135deg, #2d74d9 0%, #d4af37 50%, #0ea9f9 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.featured-content {
	background: rgba(45, 116, 217, 0.03);
	border-radius: 10px;
	padding: 20px;
	border: 1px dashed rgba(45, 116, 217, 0.2);
}

.featured-placeholder {
	text-align: center;
	color: #999;
	font-size: 14px;
	padding: 10px;
}
.content .search{
	width: 960px;
	height: 60px;
	line-height: 60px;
	background: linear-gradient(135deg, rgba(248, 250, 252, 0.95) 0%, rgba(255, 255, 255, 0.95) 100%);
	backdrop-filter: blur(10px);
	border: 1px solid rgba(45, 116, 217, 0.2);
	border-radius: 30px;
	position:relative;
	padding:0 100px 0 110px;
	box-shadow: 0px 4px 16px 0px rgba(26, 54, 93, 0.08);
	margin:20px auto 14px;
	display: flex;
	align-items: center;
}
.content  .search .select{
	position:absolute;
	top:0;
	left:0;
	bottom:0;
	width:100px;
	height:60px;
	font-size: 14px;
	font-family: 'Source Han Sans CN', 'Microsoft YaHei', sans-serif;
	font-weight: 500;
	color: #1a365d;
	text-align: center;
	cursor: pointer;
	z-index: 10;
	display: flex;
	align-items: center;
	justify-content: center;
	border-right:1px solid rgba(45, 116, 217, 0.15);
}
.content  .search .select .txt{
	display:inline-block;
	padding-right: 25px;
	font-size:16px;
	background:url(../icon/down.png) no-repeat right 0 center;
	background-size:12px;
	cursor: pointer;
	user-select: none;
	line-height: 60px;
}
.content  .search .select .navChild{
	position: absolute !important;
	top: 62px !important;
	left: 50% !important;
	transform: translateX(-50%) !important;
	width: 90px !important;
	max-height: none !important;
	overflow: hidden !important;
	background: linear-gradient(135deg, rgba(248, 250, 252, 0.98) 0%, rgba(255, 255, 255, 0.98) 100%) !important;
	backdrop-filter: blur(15px) !important;
	box-shadow: 0px 8px 32px 0px rgba(26, 54, 93, 0.15) !important;
	border: 1px solid rgba(45, 116, 217, 0.15) !important;
	border-radius: 12px !important;
	text-align: center !important;
	z-index: 99999 !important;
	pointer-events: none !important;
	display: none !important;
	visibility: hidden !important;
	opacity: 0 !important;
	line-height: normal !important;
	padding: 5px 0 !important;
	transition: all 0.3s ease !important;
}

/* 鐐瑰嚮鏃舵樉绀轰笅鎷夋 */
.content  .search .select.open .navChild{
	display: block !important;
	visibility: visible !important;
	opacity: 1 !important;
	pointer-events: auto !important;
}
.content  .search .select .navChild .navChild-lis{
	font-size: 15px !important;
	line-height:40px !important;
	height: 40px !important;
	font-family: 'Source Han Sans CN', 'Microsoft YaHei', sans-serif !important;
	font-weight: 500 !important;
	color: #1a365d !important;
	cursor: pointer !important;
	border: none !important;
	background: none !important;
	width: calc(100% - 8px) !important;
	margin: 2px 4px !important;
	padding: 0 !important;
	border-radius: 8px !important;
	transition: all 0.3s ease !important;
	display: block !important;
	text-align: center !important;
}
.content  .search .select .navChild .navChild-lis:hover{
	color:#1a365d !important;
	background: #f0f4ff !important;
	transform: none !important;
	box-shadow: none !important;
}
.content  .search .select::after{
	content:'';
	width:1px;
	height:42px;
	position: absolute;
	top:0;
	right:0px;
	bottom:0;
	margin:auto 0;
	background:#EBEBEB;
}
.content  .search input{
	display: block;
	width:100%;
	height:100%;
	font-size: 20px;
	font-weight: 400;
	font-family: Microsoft YaHei;
	color: #333333;
	padding-left:55px;
	background:url(../icon/search1.png) no-repeat center left 25px;
	background-size:22px;
}
.content .search button{
	position: absolute;
	top:0;
	bottom:0;
	right:-2px;
	margin:auto 0;
	width:135px;
	height:100%;
	font-size: 24px;
	font-family: Microsoft YaHei;
	font-weight: bold;
	color: #FFFFFF;
	background:#1d4ed8;
	border-radius: 40px;
	cursor: pointer;
}

.index-menu {
	padding-top:50px;
	max-width: 100%;
	overflow: visible;
}
.index-menu .menu-lis{
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	gap: 15px;
	width: 100%;
}
.index-menu .lis-v{
	position:relative;
	min-height: 75px;
	height: auto;
	background: #F7F9FA;
	border-radius: 10px;
	padding:12px 8px 12px 52px;
	margin:0;
	cursor: pointer;
	display: flex;
	flex-direction: column;
	justify-content: center;
	transition: all 0.3s ease;
	overflow: hidden;
}
.index-menu .lis-v:hover{
	box-shadow: 0px 2px 35px 0px rgba(14,155,243, 0.24);
	transform: translateY(-3px);
}
.index-menu .lis-v .icon{
	position:absolute;
	top:0;
	left:8px;
	bottom:0;
	margin:auto 0;
	width:38px;
	height:38px;
}
.index-menu .lis-v .icon-emoji{
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 28px;
	line-height: 1;
	width:38px;
	height:38px;
}
.index-menu .lis-v .icon-svg{
	object-fit: contain;
}
.index-menu .lis-v .tit{
	font-size: 13px;
	font-family: 'Source Han Sans CN', 'Microsoft YaHei', sans-serif;
	font-weight: 600;
	color: #1a365d;
	line-height: 1.5;
	margin-bottom: 2px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	word-break: keep-all;
}
.index-menu .lis-v .des{
	font-size: 10px;
	font-family: 'Source Han Sans CN', 'Microsoft YaHei', sans-serif;
	font-weight: 400;
	color: #6b7280;
	line-height: 1.4;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	word-break: keep-all;
}
/* 鍒楄〃 */
.content .top{
	margin:30px 0 0;
	padding:30px 30px 15px;
	background: #FFFFFF;
	box-shadow: 0px 2px 35px 0px rgba(204, 209, 228, 0.84);
	border-radius: 20px;
}
.content .banner{
	width:100%;
	height:210px;
	display: block;
}

/* 绔欑偣瀵艰埅 - 椤堕儴 */
.content .site{
	font-size: 14px;
	font-family: Microsoft YaHei;
	font-weight: 400;
	color: #666666;
	padding:15px 0;
	border-bottom:1px solid #F2F3F6;
	margin-bottom: 20px;
}
.content .site a{
	color:#666;
}

/* 涓诲鍣?- 宸﹀彸甯冨眬 */
.content .main-container{
	display: flex;
	flex-direction: column;
	gap: 20px;
	align-items: flex-start;
}

/* 宸︿晶鑿滃崟 */
.content .menu{
	/* width: 280px; */
	width: 100%;
	background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
	box-shadow: 0px 8px 32px 0px rgba(26, 54, 93, 0.12);
	border-radius: 20px;
	padding: 0;
	flex-shrink: 0;
	border: 1px solid rgba(45, 116, 217, 0.1);
	position: relative;
	overflow: hidden;
	transition: all 0.3s ease;
}

/* 鑿滃崟鏀惰捣/灞曞紑鎸夐挳 */
.content .menu .menu-toggle {
	background: linear-gradient(135deg, #1a365d 0%, #2d74d9 100%);
	padding: 15px 20px;
	border-radius: 20px 20px 0 0;
	position: relative;
}

.content .menu .toggle-btn {
	background: none;
	border: none;
	color: #ffffff;
	font-family: 'Source Han Sans CN', 'Microsoft YaHei', sans-serif;
	font-size: 14px;
	font-weight: 500;
	cursor: pointer;
	display: flex;
	align-items: center;
	gap: 8px;
	width: 100%;
	justify-content: flex-end;
	transition: all 0.3s ease;
}
.content .menu .toggle-btn:focus {
	outline: none;
}

.content .menu .toggle-btn:hover {
	transform: translateY(-1px);
}

.content .menu .toggle-icon {
	font-size: 12px;
	transition: transform 0.3s ease;
	transform: rotate(90deg);
}

.content .menu .toggle-text {
	font-weight: 500;
}

/* 鑿滃崟鍐呭鍖哄煙 */
.content .menu .menu-content {
	padding: 25px 20px;
  padding-top: 15px;
	padding-bottom: 15px;
}

.content .menu.collapsed {
	/* width: 120px; */
}

.content .menu.collapsed .menu-content {
	/* display: none; */
}

.content .menu .menu-con{
	margin-bottom: 25px;
	padding-bottom: 20px;
	padding-bottom: 10px;
	margin-bottom: 10px;
	border-bottom: 1px solid rgba(45, 116, 217, 0.1);
	position: relative;
}

.content .menu .menu-con:last-child{
	margin-bottom: 0;
	border-bottom: none;
}

.content .menu .menu-con::before {
	content: '';
	position: absolute;
	left: -20px;
	right: -20px;
	bottom: -1px;
	height: 1px;
	background: linear-gradient(90deg, transparent 0%, rgba(45, 116, 217, 0.2) 50%, transparent 100%);
}

.content .menu .menu-con .level-one-text-wrapper {
	display: flex;
	justify-content: center;
	margin-bottom: 20px;
}

.content .menu .menu-con .level-one-text {
	padding-bottom: 2px;
	border-bottom: 4px solid var(--color-primary);
	font-weight: 500;
}

.content .menu .menu-tit{
	font-size: 16px;
	font-family: 'Source Han Sans CN', 'Microsoft YaHei', sans-serif;
	font-weight: 600;
	color: #1a365d;
	line-height: 1.5;
	margin-bottom: 15px;
	text-align: left;
	display: flex;
	align-items: center;
	position: relative;
}

.content .menu .menu-tit .tit-icon {
	width: 4px;
	height: 18px;
	background: linear-gradient(135deg, #2d74d9 0%, #d4af37 100%);
	border-radius: 2px;
	margin-right: 10px;
	position: relative;
}

.content .menu .menu-tit .tit-icon::after {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 2px;
	height: 12px;
	background: rgba(255, 255, 255, 0.8);
	border-radius: 1px;
}

.content .menu  .menu-nav{
	width:100%;
	display: grid;
	grid-template-columns: repeat(9, minmax(0, 1fr));
	gap: 8px 12px;
	align-items: start;
}

.content .menu  .menu-nav-type {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.content .menu  .menu-nav-type-sub {
	width:100%;
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 8px 12px;
	align-items: start;
	margin-top: 15px;
	margin-top: 8px;
}

.content .menu  .menu-nav-type .active-type {
	background: linear-gradient(135deg, #2d74d9 0%, #1a365d 100%) !important;
	color: #FFFFFF !important;
	box-shadow: 0px 8px 24px 0px rgba(45, 116, 217, 0.4) !important;
	border-color: #2d74d9 !important;
	transform: translateY(-1px);
}

.content .menu  .menu-nav-type .inactive-type {
	background-color: #f0f9ff;
}

.content .menu .menu-lis{
	display: flex;
	align-items: center;
	justify-content: center;
	/* min-height: 38px; */
	line-height: 1.4;
	font-size: 13px;
	text-align: center;
	font-family: 'Source Han Sans CN', 'Microsoft YaHei', sans-serif;
	font-weight: 500;
	color: #1a365d;
	padding: 8px 12px;
	cursor: pointer;
	border-radius: 19px;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	text-decoration: none;
	white-space: nowrap;
	word-break: keep-all;
	background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
	border: 1px solid rgba(45, 116, 217, 0.15);
	width: 100%;
	box-sizing: border-box;
	position: relative;
	overflow: hidden;
}

.content .menu .menu-lis::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(45, 116, 217, 0.1), transparent);
	transition: left 0.5s ease;
}

.content .menu .menu-lis:hover::before {
	left: 100%;
}

.content .menu .menu-lis:hover {
	transform: translateY(-2px);
	box-shadow: 0px 8px 20px 0px rgba(45, 116, 217, 0.2);
	border-color: rgba(45, 116, 217, 0.3);
}

.content .menu .menu-lis a{
	display: inline-block;
	color: #1a365d;
	text-decoration: none;
	white-space: nowrap;
	position: relative;
	z-index: 1;
}

.content .menu .menu-lis.active{
	background: linear-gradient(135deg, #2d74d9 0%, #1a365d 100%) !important;
	color: #FFFFFF !important;
	box-shadow: 0px 8px 24px 0px rgba(45, 116, 217, 0.4) !important;
	border-color: #2d74d9;
	transform: translateY(-1px);
}

.content .menu .menu-lis.active a {
	color: #FFFFFF;
}

.content .menu .menu-lis.active::after {
	content: '';
	position: absolute;
	top: 2px;
	right: 2px;
	width: 6px;
	height: 6px;
	background: #d4af37;
	border-radius: 50%;
	box-shadow: 0 0 8px rgba(212, 175, 55, 0.6);
}

.content .menu .menu-lis:hover{
	background: rgba(255, 76, 57, 0.1);
	color: #FF4C39;
	border-color: #FF4C39;
	transform: translateY(-2px);
}
.content .menu .menu-lis.active a,
.content .menu .menu-lis:hover a{
	color: #FF4C39;
}
.content .menu .menu-lis.active a{
	color: #FFFFFF;
}

/* 鍙充晶鍐呭 */
.content .con{
	flex: 1;
	width: 100%;
	background: #FFFFFF;
	box-shadow: 0px 2px 35px 0px rgba(204, 209, 228, 0.84);
	border-radius: 20px;
	padding: 20px;
	min-height: 600px;
}
.content .con .top{
	margin: 0 0 20px 0;
	padding: 0;
}

.content .list{
    /* padding-bottom:30px; */
}

.content .list .tit{
    font-size: 22px;
    font-family: Microsoft YaHei;
    font-weight: bold;
    color: #161616;
    line-height: 60px;
}

.content .list .tit span{
    font-size: 14px;
    font-family: Microsoft YaHei;
    font-weight: 400;
    color: #999999;
    padding-left:20px;
}

.content .list .tit a{
    float:right;
    font-size: 14px;
    font-family: Microsoft YaHei;
    font-weight: 400;
    color: #7B7A7A;
    padding-right:28px;
    background:url(../icon/more.png) no-repeat center right 0;
    background-size:22px;
}

/* 鏈堝搴︿紭绉€浜у搧灞曠ず妯″潡 - 閫氱煡鏍?杞挱鍥句竴浣撳寲 */
.monthly-showcase-module {
    margin: 20px 0 15px 0;
    padding: 0;
}

.showcase-container {
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    border: 1px solid rgba(45, 116, 217, 0.1);
    border-radius: 16px;
    padding: 0;
    box-shadow: 0px 4px 20px 0px rgba(26, 54, 93, 0.08);
    overflow: hidden;
    position: relative;
}

/* 鍘绘帀椤堕儴娴佸厜鏁堟灉 */

/* 璋冩暣閫氱煡鏍忔牱寮忥紝浣垮叾涓庤疆鎾浘铻嶄负涓€浣?*/
.showcase-container .notice-bar {
    background: transparent;
    box-shadow: none;
    border-radius: 0;
    border-bottom: 1px solid rgba(45, 116, 217, 0.1);
    margin: 0;
    padding: 15px 20px;
}

.showcase-container .notice-bar .notice-content {
    text-align: center;
}

.showcase-container .notice-bar .notice-list li {
    font-size: 18px;
    font-weight: 600;
    color: #1a365d;
    background: linear-gradient(135deg, #2d74d9 0%, #0ea9f9 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* 璋冩暣杞挱鍥炬牱寮?*/
.showcase-container .banner-v {
    margin: 0;
    border-radius: 0 0 16px 16px;
    overflow: hidden;
}

.showcase-container .banner-con {
    border-radius: 0 0 16px 16px;
}

/* Tab 瀵艰埅鏍峰紡 - 绉戞妧鎰熻璁?*/
.tab-nav {
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    border: 1px solid rgba(45, 116, 217, 0.1);
    border-radius: 16px;
    padding: 12px 16px;
    margin-bottom: 30px;
    box-shadow: 0px 4px 16px 0px rgba(26, 54, 93, 0.08);
    position: relative;
    overflow: hidden;
}

.tab-nav::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #2d74d9, #d4af37, #2d74d9);
    background-size: 200% 100%;
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% { background-position: -200% 0; }
    50% { background-position: 200% 0; }
}

/* 鏍囬鍜孴ab鎸夐挳瀹瑰櫒 */
.tab-header-content {
    display: flex;
    align-items: center;
    gap: 24px;
    flex: 1;
}

/* 鏍囬鍖哄煙 */
.tab-title-section {
    display: flex;
    align-items: baseline;
    gap: 12px;
    flex-shrink: 0;
}

.tab-main-title {
    font-size: 20px;
    font-weight: 700;
    color: #000000;
    margin: 0;
    white-space: nowrap;
}

.tab-subtitle {
    font-size: 13px;
    color: #999999;
    margin: 0;
    font-weight: 400;
    white-space: nowrap;
}

.tab-items {
    display: flex;
    gap: 8px;
    background: rgba(26, 54, 93, 0.05);
    border-radius: 12px;
    padding: 4px;
    flex-shrink: 0;
}

.tab-item {
    font-size: 16px;
    font-family: 'Source Han Sans CN', 'Microsoft YaHei', sans-serif;
    font-weight: 600;
    color: #1a365d;
    padding: 12px 24px;
    cursor: pointer;
    position: relative;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 10px;
    background: transparent;
    border: none;
    white-space: nowrap;
    overflow: hidden;
}

.tab-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(45, 116, 217, 0.1), transparent);
    transition: left 0.5s ease;
}

.tab-item:hover::before {
    left: 100%;
}

.tab-item:hover {
    color: #2d74d9;
    transform: translateY(-1px);
}

.tab-item.active {
    color: #ffffff;
    background: linear-gradient(135deg, #2d74d9 0%, #1a365d 100%);
    box-shadow: 0px 4px 12px 0px rgba(45, 116, 217, 0.3);
    transform: translateY(-1px);
}

.tab-item.active::after {
    content: '';
    position: absolute;
    top: 2px;
    right: 6px;
    font-size: 10px;
    color: #d4af37;
    text-shadow: 0 0 4px rgba(212, 175, 55, 0.6);
}

/* 澧炲己鐨凾ab椤规牱寮?*/
.tab-item {
    display: flex;
    align-items: center;
    gap: 8px;
    position: relative;
}

.tab-item .tab-icon {
    font-size: 14px;
    transition: transform 0.3s ease;
}

.tab-item:hover .tab-icon {
    transform: scale(1.2);
}

.tab-item .tab-text {
    font-weight: 600;
}

.tab-item .tab-badge {
    font-size: 10px;
    padding: 2px 6px;
    background: linear-gradient(135deg, #d4af37, #f4d03f);
    color: #1a365d;
    border-radius: 8px;
    font-weight: 700;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 4px rgba(212, 175, 55, 0.3);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.tab-item.handpicked-tab.active .tab-badge {
    background: linear-gradient(135deg, #ffffff, #f8fafc);
    color: #2d74d9;
    box-shadow: 0 2px 8px rgba(255, 255, 255, 0.4);
}

/* 鏌ョ湅鏇村閾炬帴澧炲己 */
.more-link.tech-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #2d74d9;
    text-decoration: none;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 12px;
    background: rgba(45, 116, 217, 0.05);
    border: 1px solid rgba(45, 116, 217, 0.15);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.more-link.tech-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(45, 116, 217, 0.1), transparent);
    transition: left 0.5s ease;
}

.more-link.tech-link:hover::before {
    left: 100%;
}

.more-link.tech-link:hover {
    background: rgba(45, 116, 217, 0.1);
    border-color: rgba(45, 116, 217, 0.3);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(45, 116, 217, 0.2);
}

.more-link.tech-link .link-arrow {
    transition: transform 0.3s ease;
}

.more-link.tech-link:hover .link-arrow {
    transform: translateX(4px);
}

.tab-nav span {
    font-size: 14px;
    color: #999;
}

.tab-nav .more-link {
    font-size: 14px;
    color: #7B7A7A;
    text-decoration: none;
    padding-right: 28px;
    background: url(../icon/more.png) no-repeat center right 0;
    background-size: 22px;
}

/* Tab 鍐呭鏍峰紡 */
.tab-content {
    position: relative;
}

.tab-pane {
    display: none;
}

.tab-pane.active {
    display: block;
}









.content .lis{
	float:left;
	width: 23%;
	height:auto;
	min-height:0;
	background:#fff;
	box-shadow: 0 1px 6px rgba(0,0,0,0.06), 0 4px 16px rgba(0,0,0,0.05);
	border-radius: 12px;
	margin:0 2.66% 30px 0;
	transition: transform 0.22s ease, box-shadow 0.22s ease;
	overflow: hidden;
}
.content .lis:hover{
	transform: translateY(-5px);
	box-shadow: 0 8px 32px rgba(0,0,0,0.13);
}

/* 榛樿4鍒楀竷灞€ */
/* 默认4列布局 */
.content .lis:nth-child(4n){
	margin-right:0;
}
.content .lis:nth-child(4n+1){
	clear:left;
}

/* 宽屏显示5列 */
@media (min-width: 1400px) {
	.content .lis{
		width: 18%;
		margin:0 2.5% 30px 0;
	}
	.content .lis:nth-child(4n){
		margin-right:2.5%;
	}
	.content .lis:nth-child(4n+1){
		clear:none;
	}
	.content .lis:nth-child(5n){
		margin-right:0;
	}
	.content .lis:nth-child(5n+1){
		clear:left;
	}
}

/* 中等屏幕显示3列 */
@media (max-width: 1200px) {
	.content .lis{
		width: 31%;
		margin:0 3.5% 30px 0;
	}
	.content .lis:nth-child(4n){
		margin-right:3.5%;
	}
	.content .lis:nth-child(4n+1){
		clear:none;
	}
	.content .lis:nth-child(3n){
		margin-right:0;
	}
	.content .lis:nth-child(3n+1){
		clear:left;
	}
}
.content .lis .lis-c{
	padding:11px 13px 0;
}
.content .lis h4{
	margin:0 0 5px;
}
.content .lis .fill{
	width:100%;
	height:190px;
	overflow:hidden;
	border-radius: 0;
	text-align: center;
	background: #f1f5f9;
	position: relative;
}
.content .lis .fill::after{
	content:'';
	position:absolute;
	inset:0;
	background:linear-gradient(to bottom, transparent 55%, rgba(0,0,0,0.22));
	opacity:0;
	transition:opacity 0.25s;
	pointer-events:none;
}
.content .lis:hover .fill::after{ opacity:1; }
.content .lis .img{
	width:100%;
	height:100%;
	object-fit:cover;
}
.content .lis:hover .img{transition: all 0.6s;transform: scale(1.04);-webkit-transform: scale(1.04);}

/* 棣栭〉鎺ㄨ崘鍖猴細鍏佽 tooltip 婧㈠嚭涓斿彇娑堝浘鐗囨斁澶э紝閬垮厤绐佺牬鍗＄墖 */
/* 鏁翠釜瀹瑰櫒閾炬潯閮介渶瑕佹斁寮€ overflow锛宼ooltip 鎵嶈兘瀹屾暣鏄剧ず */
.tab-content,
.tab-pane,
#recommend-content,
#recommend-content .lis,
#recommend-content .lis .fill{
	overflow:visible !important;
}

#recommend-content .lis:hover .img{
	transition:none !important;
	transform:none !important;
	-webkit-transform:none !important;
}
.content .lis .title{
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	white-space: normal;
	text-overflow: ellipsis;
	font-size: 13px;
	font-weight: 600;
	color: #111827;
	line-height: 1.5;
	max-height: 3em;
	transition: color 0.15s;
}
.content .lis .title:hover{ color:#1d4ed8; }
.content .lis .con-v{
	display: flex;
	flex-wrap: nowrap;
	align-items: center;
	gap: 6px;
	font-size: 11px;
	color: #6b7280;
	padding: 6px 0 4px;
	overflow: hidden;
}
.content .lis .con-v > a{
	margin-left:auto;
	display:inline-flex;
	align-items:center;
	float:none !important;
	position:relative;
}
.content .lis .con-v > a img{
	width:28px !important;
	height:28px !important;
	border-radius:50% !important;
	object-fit:cover !important;
	float:none !important;
	display:block;
}
.content .lis .eye{
	float:none;
	padding-left:17px;
	margin-right:0;
	background:url(../icon/eye.png) no-repeat center left 0;
	background-size:13px;
}
.content .lis .love{
	float:none;
	padding-left:16px;
	margin-right:0;
	background:url(../icon/love.png) no-repeat center left 0;
	background-size:13px;
	border:none;
	cursor:pointer;
}
.content .lis .love.on{
	background:url(../icon/love_on.png) no-repeat center left 0;
	background-size:13px;
}
.content .lis .down{
	float:none;
	padding-left:16px;
	margin-right:0;
	background:url(../icon/down1.png) no-repeat center left 0;
	background-size:13px;
}
.content .lis .price{
	float:none;
	padding-left:16px;
	margin-right:0;
	background:url(../icon/money.png) no-repeat center left 0;
	background-size:13px;
	color:#f59e0b;
	font-size:11px;
	font-weight:600;
}
.content .lis .price.free{
	color:#10b981;
	background:none;
	padding-left:0;
}
/* 原创标签 */
.content .lis .original-badge{
	display:inline-block;
	padding:1px 5px;
	border-radius:3px;
	font-size:10px !important;
	font-weight:600;
	line-height:1.6;
	flex-shrink:0;
	margin-right:0 !important;
}
.content .lis .original-badge--yes{ background:#eff6ff; color:#1d4ed8 !important; }
.content .lis .original-badge--no { background:#f3f4f6; color:#9ca3af !important; }

/* 绛夌骇鏍囩鏍峰紡 */
.content .lis .fill {
	position: relative;
}

.content .lis .level-badge {
	position: absolute;
	top: 10px;
	right: 10px;
	padding: 4px 12px;
	border-radius: 4px;
	font-size: 12px;
	font-weight: 600;
	color: #ffffff;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
	backdrop-filter: blur(4px);
}

/* five */
.content .lis .level-badge.level-y {
	background: linear-gradient(135deg, #10b981 0%, #059669 100%);
	background: linear-gradient(135deg, #FFD700 0%, #00f 100%);
	box-shadow: 0 0 8px rgba(212, 175, 55, 0.6);
  color: white;
}
/* four */
.content .lis .level-badge.level-s {
	background: linear-gradient(135deg, #1d4ed8 0%, #1d4ed8 100%);
	background: linear-gradient(135deg, #d4af37, #f4d03f);
	box-shadow: 0 0 8px rgba(212, 175, 55, 0.6);
  color: white;
}
/* three */
.content .lis .level-badge.level-a {
	background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
	background: linear-gradient(135deg, #2d74d9, #4facfe);
	box-shadow: 0 0 8px rgba(45, 116, 217, 0.6);
  color: white;
}
/* two */
.content .lis .level-badge.level-b {
	background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  background: linear-gradient(135deg, #10b981, #34d399);
	box-shadow: 0 0 8px rgba(16, 185, 129, 0.6);
  color: white;
}
/* one */
.content .lis .level-badge.level-c {
	background: linear-gradient(135deg, #10b981 0%, #059669 100%);
	background: linear-gradient(135deg, #6b7280, #9ca3af);
	box-shadow: 0 0 8px rgba(107, 114, 128, 0.6);
  color: white;
}

.content .lis .clearfix > a img{
	float:none;
	width: 28px;
	height: 28px;
	border-radius: 50%;
	object-fit:cover;
}
.content .lis .but{
	display:flex;
	align-items:center;
	justify-content:space-between;
	border-top: 1px solid #f3f4f6;
	padding: 7px 0;
	margin-top: 4px;
	line-height: 1;
}
.content .lis .con-t{
	float:none;
	display:inline-block;
	padding:2px 8px;
	background:#eff6ff;
	color:#1d4ed8;
	border-radius:4px;
	font-size: 11px;
	font-weight: 500;
}
.content .lis .date{
	float:none;
	font-size: 11px;
	color: #9ca3af;
}
/*	璇︽儏  */
.dtl .dtl-top{
	width:100%;
	padding-top:40px;
	display: flex;
	gap: 30px;
	align-items: flex-start;
}
.dtl .dtl-top .dtl-left{
	flex: 1;
	background: #FFFFFF;
	box-shadow: 0px 2px 35px 0px rgba(204, 209, 228, 0.84);
	border-radius: 20px;
	padding: 30px;
}
.dtl .dtl-top .dtl-left .title{
	font-size: 28px;
	font-family: Microsoft YaHei;
	font-weight: bold;
	color: #161616;
	margin-bottom: 15px;
	line-height: 1.3;
}
.dtl .dtl-top .dtl-left .bot{
	line-height: 40px;
	position:relative;
	padding-bottom: 15px;
	margin-bottom: 20px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 10px;
}
.dtl .dtl-top .dtl-left .bot::before{
	content:'';
	width:100%;
	height:0;
	border-bottom:1px solid #F0F0F0;
	position:absolute;
	bottom:0;
	left:0;
}
.dtl .dtl-top .dtl-left .bot a{
	font-size: 14px;
	font-family: Microsoft YaHei;
	font-weight: 400;
	color: #666666;
	transition: color 0.3s ease;
}
.dtl .dtl-top .dtl-left .bot a:hover{
	color:#1d4ed8;
}
.dtl .dtl-top .dtl-left .bot-m{
	font-size: 14px;
	font-family: Microsoft YaHei;
	font-weight: 400;
	color: #666666;
}
.dtl .dtl-top .dtl-left .bot-m span{
	color:#1d4ed8;
	font-weight:bold;
	font-size: 16px;
}
.dtl .dtl-top .dtl-left .bot-r{
	font-size: 15px;
	font-family: Microsoft YaHei;
	font-weight: 400;
	color: #999999;
	display: flex;
	align-items: center;
	gap: 20px;
}
.dtl .dtl-top .dtl-left .bot-r .eye{
	padding-left:28px;
	background:url(../icon/eye.png) no-repeat center left 0;
	background-size:20px;
}
.dtl .dtl-top .dtl-left .bot-r .love{
	padding-left:24px;
	background:url(../icon/love.png) no-repeat center left 0;
	background-size:16px;
}
.dtl .dtl-top .dtl-left .bot-r .down{
	padding-left:22px;
	background:url(../icon/down1.png) no-repeat center left 0;
	background-size:14px;
}
.dtl .dtl-top .dtl-left .nav-lis{
	margin:0 8px 0 0;
	padding: 12px 24px;
	float:left;
	font-size: 16px;
	font-family: Microsoft YaHei;
	font-weight: 500;
	color: #666666;
	position:relative;
	line-height:1.4;
	text-align: center;
	border-radius: 25px;
	background: #F8F9FA;
	border: 1px solid #E8E8E8;
	cursor: pointer;
	transition: all 0.3s ease;
}
.dtl .dtl-top .dtl-left .nav-lis:hover{
	background: #F0F7FF;
	color: #1d4ed8;
}
.dtl .dtl-top .dtl-left .nav-lis.active{
	color:#FFFFFF;
	background: #1d4ed8;
	border-color: #1d4ed8;
}
.dtl .dtl-top .dtl-content{
	width:100%;
	height: auto;
	min-height: 300px;
	border-radius: 15px;
	overflow: hidden;
	background: #FAFBFC;
	padding: 15px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.dtl .dtl-top .dtl-content .swiper-button-white{display: none;}
.dtl .dtl-top .dtl-content:hover .swiper-button-white{display: block;}
.dtl .dtl-top .dtl-content img{
	object-fit: contain;
	max-width: 100%;
	max-height: 500px;
	height: auto;
	width: auto;
	margin: 0 auto;
	display: block;
}
.dtl .dtl-top .swiper{
	width:100%;
	height:120px;
	position: relative;
	padding:15px 60px;
	background: #F8F9FA;
	border-radius: 0 0 15px 15px;
}
.dtl .dtl-top .swiper-con{
	height:100%;
}
.dtl .dtl-top .swiper .img-lis{
	width: 18%;
	height: 90px;
	margin: 0 1%;
	border-radius: 8px;
	overflow: hidden;
	cursor: pointer;
	transition: all 0.3s ease;
}
.dtl .dtl-top .swiper .img-lis:hover{
	transform: scale(1.05);
}
.dtl .dtl-top .swiper .img-lis img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.dtl .dtl-top .swiper .prev,.dtl-content .prev{
	position:absolute;
	top:0;
	left:15px;
	bottom:0;
	margin:auto 0;
	width:36px;
	height:36px;
	border-radius:50%;
	background-color: rgba(255, 255, 255, 0.9);
	background-size:11px;
	z-index: 4;
	cursor: pointer;
	transition: all 0.3s ease;
	box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
.dtl .dtl-top .swiper .next ,.dtl-content .next{
	position:absolute;
	top:0;
	right:15px;
	bottom:0;
	margin:auto 0;
	width:36px;
	height:36px;
	border-radius:50%;
	background-color: rgba(255, 255, 255, 0.9);
	background-size:11px;
	z-index: 4;
	cursor: pointer;
	transition: all 0.3s ease;
	box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
.dtl .dtl-top .swiper .next:hover,.dtl .dtl-top .swiper .prev:hover{
	background-color: #FFFFFF;
	transform: scale(1.1);
}
.dtl .dtl-top .swiper .next,.dtl .dtl-top .swiper .prev{
	width:20px;
	height:70%;
	border-radius: 0;
	background-color: rgba(255, 255, 255, 0);
	background-size:100%;
}

#gallery-top .prev {
	background-image:url(../icon/change-d.png);
	transform: rotate(90deg);
}

#gallery-top .next {
	background-image:url(../icon/change-d.png);
	transform: rotate(-90deg);
}

.dtl .dtl-top .swiper .next{
	right:20px;
	background-image:url(../icon/picSlideRight.gif);
}
.dtl .dtl-top .swiper .prev{
	left:20px;
	background-image:url(../icon/picSlideLeft.gif)
}

.dtl .dtl-top .thumb-swiper #gallery-thumb-prev,
.dtl .dtl-top .thumb-swiper #gallery-thumb-next
 {
	height: 90px;
	border-radius: 0;
	box-shadow: none;
	background-size: contain;
	background-repeat: no-repeat;
	border: none;
 	margin-top: 13px;
}

.dtl .dtl-top .dtl-right{
	width:320px;
	flex-shrink: 0;
	background: #FFFFFF;
	box-shadow: 0px 2px 35px 0px rgba(204, 209, 228, 0.84);
	border-radius: 20px;
	padding: 25px;
	position: sticky;
	top: 20px;
}
.dtl .dtl-top .dtl-right .top {
    padding-bottom: 20px;
}
.dtl .dtl-top .dtl-right .top .down{
	width: 220px;
	height: 60px;
	line-height:60px;
	text-align:center;
	background: #1d4ed8;
	border-radius: 30px;
	font-size: 20px;
	font-family: Microsoft YaHei;
	font-weight: bold;
	color: #FFFFFF;
	cursor: pointer;
	box-shadow: 0px 2px 10px 2px RGBA(14, 155, 243, 0.36);
}
.dtl .dtl-top .dtl-right .top .collect{
	width:60px;
	height:60px;
	border-radius: 50%;
	background:url(../icon/collect.png) no-repeat center;
	background-size:24px;
	border:1px solid #D6D6D6;
	margin-left:20px;
	cursor: pointer;
}
.dtl .dtl-top .dtl-right .top .collect.on{
	background:url(../icon/collect_on.png) no-repeat center;
}
.dtl .dtl-top .dtl-right .des{
	line-height: 40px;
	font-size: 16px;
	font-family: Microsoft YaHei;
	font-weight: 400;
	color: #333;
	padding-left:20px;
}
.dtl .dtl-top .dtl-right .des span{
	color: #FF8B03;
	font-size: 20px;
}
.dtl .dtl-top .dtl-right .dtl-right-tit{
	width:100%;
	height:40px;
	line-height: 40px;
	background: linear-gradient(135deg, #f0f5ff 0%, #f8fafc 100%);
	font-size: 15px;
	font-family: Microsoft YaHei;
	font-weight: 600;
	color: #1a365d;
	padding:0 12px;
	border-left: 3px solid #1d4ed8;
	border-radius: 0 6px 6px 0;
	margin-bottom: 8px;
}
.dtl .dtl-top .dtl-right .infor .infor-con{
	position:relative;
	padding:12px 0 8px 90px;
	min-height: 70px;
}
.dtl .dtl-top .dtl-right .infor .title{
	font-size: 16px;
	font-family: Microsoft YaHei;
	font-weight: 600;
	color: #1a365d;
	cursor: pointer;
}
.dtl .dtl-top .dtl-right .infor .tag-lis{
	height: 24px;
	line-height: 24px;
	font-size: 13px;
	font-family: Microsoft YaHei;
	font-weight: 400;
	color: #666666;
	margin-right:10px;
	padding-right:10px;
	position:relative;
}
.dtl .dtl-top .dtl-right .infor .tag-lis:first-child::after{
	content:'';
	position: absolute;
	top:0;
	bottom:0;
	right:0;
	margin:auto 0;
	width:1px;
	height:12px;
	background:#ddd;
}
.dtl .dtl-top .dtl-right .infor .tag-lis span{
	color:#1d4ed8;
	font-weight: 500;
}
.dtl .dtl-top .dtl-right .infor .join_time{
	font-size: 13px;
	font-family: Microsoft YaHei;
	font-weight: 400;
	color: #666666;
}
.dtl .dtl-top .dtl-right .infor .infor-r{
	width:65px;
	height:65px;
	border-radius: 50%;
	position: absolute;
	top:12px;
	left:10px;
	object-fit: cover;
	border: 2px solid #1d4ed8;
	box-shadow: 0 2px 8px rgba(29,78,216,0.1);
}
.dtl .dtl-top .dtl-right .join{
	padding:0 0 15px 0;
	display: flex;
	gap: 10px;
	justify-content: center;
}
.dtl .dtl-top .dtl-right .join .join-lis{
	width: 90px;
	height: 36px;
	line-height: 34px;
	text-align: center;
	border: 1px solid #1d4ed8;
	border-radius: 18px;
	font-size: 14px;
	font-family: Microsoft YaHei;
	font-weight: 400;
	color: #1d4ed8;
	cursor: pointer;
	transition: all 0.2s ease;
	background: #fff;
}
.dtl .dtl-top .dtl-right .join .join-lis:hover{
	background: #eff6ff;
}
.dtl .dtl-top .dtl-right .join .join-lis.follow_button.on1{
	background: #1d4ed8;
	color: #fff;
	border-color: #1d4ed8;
}
.dtl .dtl-top .dtl-right .join .join-lis.follow_button.on1 span{
	padding-left: 0;
	background: none;
	color: #fff;
}
.dtl .dtl-top .dtl-right .join .join-lis.send_message{
	color: #fff !important;
	background: #1d4ed8 !important;
	border-color: #1d4ed8 !important;
}
.dtl .dtl-top .dtl-right .join .join-lis.send_message:hover{
	background: #1e40af;
	border-color: #1e40af;
}
.dtl .dtl-top .dtl-right .join .join-lis:not(.send_message) span{
	display: inline-block;
	padding-left:20px;
	background:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%231d4ed8' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M16 21v-2a4 4 0 0 0-4-4H5a4 4 0 0 0-4 4v2'%3E%3C/path%3E%3Ccircle cx='8.5' cy='7' r='4'%3E%3C/circle%3E%3Cline x1='20' y1='8' x2='20' y2='14'%3E%3C/line%3E%3Cline x1='23' y1='11' x2='17' y2='11'%3E%3C/line%3E%3C/svg%3E") no-repeat center left 0;
	background-size:15px;
}
.dtl .dtl-top .dtl-right .join .join-lis.send_message span{
	padding-left:0;
	background:none !important;
	color: #fff !important;
}
.dtl .dtl-top .dtl-right .format{
	padding:10px 0;
}
.dtl .dtl-top .dtl-right .format .format-con{
	padding:5px 12px;
}
.dtl .dtl-top .dtl-right .format .format-lis{
	font-size: 14px;
	font-family: Microsoft YaHei;
	font-weight: 400;
	color: #1a365d;
	line-height: 38px;
	border-bottom: 1px solid #f0f4f8;
}
.dtl .dtl-top .dtl-right .format .format-lis:last-child{
	border-bottom: none;
}
.dtl .dtl-top .dtl-right .format .format-lis span{
	display:inline-block;
	color:#64748b;
	width:100px;
	font-size: 13px;
}
.dtl .dtl-top .dtl-right .explain{
	border-top:1px solid #e8edf5;
	padding:10px 0;
}
.dtl .dtl-top .dtl-right .explain .explain-top{
	padding:15px 0 0 ;
}
.dtl .dtl-top .dtl-right .explain .explain-top-lis{
	padding:0 12px;
	height: 28px;
	line-height: 28px;
	text-align: center;
	background: #eff6ff;
	border-radius: 14px;
	font-size: 13px;
	font-family: Microsoft YaHei;
	font-weight: 400;
	color: #1d4ed8;
	margin:0 6px 6px 0;
	border: 1px solid #dbeafe;
	transition: all 0.2s ease;
}
.dtl .dtl-top .dtl-right .explain .explain-top-lis:hover{
	background: #dbeafe;
}
.dtl .dtl-top .dtl-right .explain .top-lis{
	line-height: 40px;
	display: inline-block;
	font-size: 16px;
	font-family: Microsoft YaHei;
	font-weight: normal;
	color: #848484;
	position: relative;
	margin-right:20px;
}
.dtl .dtl-top .dtl-right .explain .top-lis::before{
	content:'|';
	width:1px;
	font-size: 16px;
	font-family: Microsoft YaHei;
	color: #848484;
	position: absolute;
	top:0;
	bottom:0;
	right:-10px;
	margin:auto 0;
}
.dtl .dtl-top .dtl-right .explain .top-lis:last-child::before{
	display:none;
}
.dtl .dtl-top .dtl-right .explain .top-lis.active{
	color:#333;
	font-weight: bold;
}
.dtl .dtl-top .dtl-right .explain .top-lis.active::after{
	content:'';
	width:24px;
	height:5px;
	border-radius: 3px;
	background:#030303;
	position: absolute;
	bottom:0;
	left:0;
	right:0;
	margin:0 auto;
}
.dtl .dtl-top .dtl-right .explain .top-lis span{
	display: inline-block;
	padding-right:20px;
	background:url(../icon/explain.png) no-repeat center right 0;
	background-size:13px;
}
.dtl .dtl-top .dtl-right .explain .explain-des{
	padding:10px;
	font-size: 14px;
	font-family: Microsoft YaHei;
	font-weight: 400;
	color: #666666;
	line-height: 25px;
}
.dtl .share{
	padding:10px 0 20px;
}
.dtl .share .share-lis{
	height: 40px;
	line-height: 40px;
	text-align: center;
	font-size: 14px;
	font-weight: 400;
	color: #333333;
	margin-right:20px;
	cursor: pointer;
}
.dtl .share .share-lis.social-share{
	display:flex;
	align-items:center;
	gap:4px;
}
.dtl .share .share-lis.social-share .social-share-icon{
	width:32px;
	height:32px;
	font-size:20px;
	line-height:32px;
}
.dtl .share .share-lis.report span{
	display: inline-block;
	padding-left:20px;
	background:url(../icon/report1.png) no-repeat center left 0;
	background-size:14px;
	color: #8E8F90;
}
.dtl .dtl-top .tab-con{
	border: 1px solid #ddd;
}
.dtl .dtl-top .file-list{
	overflow-y: auto;
}
.dtl .dtl-top .table{
	width:100%;
	text-align: left;
}
.dtl .dtl-top .table th:nth-child(1){width:10%;}
.dtl .dtl-top .table th:nth-child(2){width:70%;}
.dtl .dtl-top .table th:nth-child(3){width:20%;}
.dtl .dtl-top .table tr th{
	color: #797979;
	padding: 10px 0 10px 15px;
	border-bottom: 1px solid #ddd;
}
.dtl .dtl-top .table tr td{
	color: #282828;
	padding: 10px 0 10px 15px;
	border-bottom: 1px solid #ddd;
}
.dtl-con{
	padding-bottom:30px;
}
.dtl-con .tit{
	font-size: 22px;
	font-family: Microsoft YaHei;
	font-weight: bold;
	color: #161616;
	line-height: 60px;
}
.dtl-con .tit a{
	float:right;
	font-size: 14px;
	font-family: Microsoft YaHei;
	font-weight: 400;
	color: #7B7A7A;
	padding-right:28px;
	background:url(../icon/more.png) no-repeat center right 0;
	background-size:22px;
}
.dtl-con .lis{
	width:24%;
	background:#fff;
	box-shadow: 0px 0px 35px 0px rgba(221, 221, 221, 0.69);
	border-radius: 20px;
	margin-right:1.3%;
	margin-bottom:25px;
}
.dtl-con .lis:nth-child(4n){
	margin-right:0;
}
.dtl-con .lis .fill{
	width: 100%;
	height: 260px;
	overflow: hidden;
	position: relative;
}
.dtl-con .lis .fill .level-badge{
	position: absolute;
	top: 10px;
	right: 10px;
	padding: 4px 12px;
	border-radius: 4px;
	font-size: 12px;
	font-weight: 600;
	color: #fff;
	box-shadow: 0 2px 8px rgba(0,0,0,0.15);
	backdrop-filter: blur(4px);
	z-index: 2;
}
.dtl-con .lis .fill .level-badge.level-a{
	background: linear-gradient(135deg, #2d74d9, #4facfe);
}
.dtl-con .lis .fill .level-badge.level-b{
	background: linear-gradient(135deg, #10b981, #34d399);
}
.dtl-con .lis .fill .level-badge.level-c{
	background: linear-gradient(135deg, #6b7280, #9ca3af);
}
.dtl-con .lis img{
	display: block;
	width: 100%;
	height: 100%;
	border-radius: 20px 20px 0 0;
	object-fit:cover;
}
.dtl-con .lis:hover img{transition: all 0.6s;transform: scale(1.4);-webkit-transform: scale(1.4);}
.dtl-con .lis .title{
	padding:0 15px;
	line-height: 54px;
	font-size: 14px;
	font-family: Microsoft YaHei;
	font-weight: bold;
	color: #000000;
}
/* 涓炬姤寮圭獥 */
.report-q{
	position: fixed;
	top:0;
	left:0;
	width:100%;
	height:100%;
	background:rgba(0,0,0,.5);
	z-index: 10;
}
.report-q .report{
	width:780px;
	height:70%;
	overflow-y: auto;
	background: #FFFFFF;
	border-radius: 15px;
	position: absolute;
	top:0;
	bottom:0;
	left:0;
	right:0;
	margin:auto;
}
.report-q .report .report-top{
	font-size: 24px;
	font-family: Microsoft YaHei;
	font-weight: bold;
	color: #3B3B3B;
	line-height: 80px;
	padding:0 20px;
	border-bottom:1px solid #EEEEEE;
	position: relative;
}
.report-q .report .report-top .close{
	position: absolute;
	top:0;
	right:0;
	bottom:0;
	margin:auto 0;
	width:80px;
	height: 80px;
	background:url(../icon/close.png) no-repeat center;
	background-size:20px;
}
.report-q .report .report-con{
	padding:20px 30px;
}
.report-q .report .report-con .top-t{
	font-size: 16px;
	font-family: Microsoft YaHei;
	font-weight: bold;
	color: #3B3B3B;
}
.report-q .report .report-con .con-v{
	padding:20px 0 20px 0;
}
.report-q .report .report-con .con-lis{
	padding:0 0 0 25px;
	position: relative;
	font-size: 14px;
	font-family: Microsoft YaHei;
	color: #3B3B3B;
	width:50%;
	float:left;
	height:40px;
	line-height: 40px;
}
.report-q .report .report-con .con-lis .inp{
	width:100px;
	height:30px;
	line-height: 30px;
	margin:auto 0;
	border:1px solid #CCCCCC;
	margin-left:15px;
}
.report-q .report .report-con .con-lis::after{
	content:'';
	width:15px;
	height:15px;
	border-radius: 50%;
	border:1px solid #CCCCCC;
	position: absolute;
	top:0;
	bottom:0;
	left:0;
	margin:auto 0;
	z-index: 2;
}
.report-q .report .report-con .con-lis.active::after{
	background:#2594F0;
	border:1px solid #2594F0;
}
.report-q .report .report-con .con-lis.active::before{
	content:'';
	width:5px;
	height:5px;
	border-radius: 50%;
	position: absolute;
	top:0;
	bottom:0;
	left:6px;
	margin:auto 0;
	background:#fff;
	z-index: 3;
}
.report-q .report .report-con .txt{
	margin:30px 0;
	width:100%;
	height:150px;
	border:1px solid #CCCCCC;
	padding:10px;
}
.report-q .report .report-con .contact-tit{
	font-size: 14px;
	font-family: Microsoft YaHei;
	color: #666;
}
.report-q .report .report-con .but{
	padding:20px 0;
}
.report-q .report .report-con .inp{
	width:200px;
	height:40px;
	line-height: 40px;
	margin:auto 0;
	border:1px solid #CCCCCC;
	padding:0 10px;
}
.report-q .report .report-con .right{
	width:150px;
	height:40px;
	line-height: 40px;
	text-align: center;
	background:#2594F0;
	color:#fff;
	border-radius: 5px;
}
/* 宸ョ▼甯?*/
.engineer .engineer-menu{
	padding:15px 0 0;
}
.engineer .engineer-menu .menu-tit{
	float:left;
	font-size: 14px;
	font-family: Microsoft YaHei;
	font-weight: 400;
	color: #999999;
	line-height: 40px;
	margin-right:10px;
}
.engineer .engineer-menu  .menu-nav{
	float:left;
	width:94%;
}
.engineer .engineer-menu .menu-lis{
	float:left;
	line-height: 40px;
	font-size: 14px;
	font-family: Microsoft YaHei;
	color: #333333;
	margin:0 15px 15px 0;
	padding:0 15px;
	cursor: pointer;
}
.engineer .engineer-menu .menu-lis a{
	display:block;
	color:#333333;
	padding:0 10px;
}
.engineer .engineer-menu .menu-lis.active{
	color:#1d4ed8;
}
.engineer .engineer-menu .menu-lis.active a{
	color:#1d4ed8;
}
.engineer .content .con{
	padding-top:0;
}
.engineer .content .lis-v{
	width: 730px;
	height: 450px;
	background: #FFFFFF;
	box-shadow: 0px 2px 35px 0px rgba(204, 209, 228, 0.84);
	border-radius: 20px;
	padding:45px 24px 22px;
	margin-bottom:20px;
}
.engineer .content .lis-v:nth-child(2n){
	float: right;
}
.engineer .content .lis-v .top-l{
	position: relative;
	padding:0 0 0 98px;
	width:60%;
}
.engineer .content .lis-v .top-l .head-icon{
	width:72px;
	height:72px;
	border-radius: 50%;
	position: absolute;
	top:0;
	left:0;
	bottom:0;
	margin:auto 0;
}
.engineer .content .lis-v .top-l .head-icon .head-img{
	width:100%;
	height:100%;
	border-radius: 50%;
}
.engineer .content .lis-v .top-l .head-icon.active::after{
	content:'V';
	display: block;
	width: 24px;
	height: 24px;
	line-height: 24px;
	text-align: center;
	background: #FFC300;
	border-radius: 50%;
	font-size: 20px;
	font-family: Exotc350 DmBd BT;
	font-weight: bold;
	color: #FFFFFF;
	position: absolute;
	bottom:0;
	right:0;
	z-index: 1;
}
.engineer .content .lis-v .top-l .name{
	font-size: 18px;
	font-family: Microsoft YaHei;
	font-weight: 400;
	color: #4E4E4E;
	padding-bottom:3px;
}
.engineer .content .lis-v .top-l .tag-lis{
	height: 24px;
	line-height: 24px;
	font-size: 14px;
	font-family: Microsoft YaHei;
	font-weight: 400;
	color: #828282;
	margin-right:15px;
}
.engineer .content .lis-v .top-l .tag-lis span{
	color:#4B4B4B;
}
.engineer .content .lis-v .top-l .join_time{
	font-size: 13px;
	font-family: Microsoft YaHei;
	font-weight: 400;
	color: #666666;
	padding-top:3px;
}
.engineer .content .lis-v .join{
	margin-top:15px;
}
.engineer .content .lis-v .join .join-lis{
	width: 105px;
	height: 40px;
	line-height: 38px;
	text-align: center;
	border: 1px solid #FC6656;
	border-radius: 20px;
	font-size: 16px;
	font-family: Microsoft YaHei;
	font-weight: 400;
	color: #FC6656;
	text-align: center;
	cursor: pointer;
}
.engineer .content .lis-v .join .join-lis.send_message,
.engineer .content .lis-v .join .send_message {
	color: #fff !important;
	border: 1px solid #1d4ed8 !important;
	background-color: #1d4ed8 !important;
}
.engineer .content .lis-v .join .join-lis:nth-child(2n){
	color: #fff;
	background: #1d4ed8;
	border: 1px solid #1d4ed8;
	margin-left:20px;
}
.engineer .content .lis-v .join .join-lis:not(.send_message) span{
	display: inline-block;
	padding-left:20px;
	background:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M16 21v-2a4 4 0 0 0-4-4H5a4 4 0 0 0-4 4v2'%3E%3C/path%3E%3Ccircle cx='8.5' cy='7' r='4'%3E%3C/circle%3E%3Cline x1='20' y1='8' x2='20' y2='14'%3E%3C/line%3E%3Cline x1='23' y1='11' x2='17' y2='11'%3E%3C/line%3E%3C/svg%3E") no-repeat center left 0;
	background-size:15px;
}
.engineer .content .lis-v .join .join-lis.on{
	background:#FC6656;
	color:#fff;
}
.engineer .content .lis-v .join .join-lis.on span{
	padding-left:0;
	background:none;
}

.engineerdtl-top .head-v .join-lis.on1 span{
	padding-left:0;
	background:none;
}

.engineer .content .lis-v .join .join-lis:nth-child(2n) span,
.engineer .content .lis-v .join .join-lis.send_message span {
	padding-left:0;
	background:none !important;
	color: #fff !important;
}
.engineer .content .lis-v .lis-con{
	margin-top:38px;
}
.engineer .content .lis-v .lis-con .tit-v{
	font-size: 14px;
	font-family: Microsoft YaHei;
	font-weight: 400;
	color: #666666;
	border-bottom:1px solid #E7E7E7;
}
.engineer .content .lis-v .lis-con .tit-v span{
	display: inline-block;
	position: relative;
	padding-bottom:20px;
}
.engineer .content .lis-v .lis-con .tit-v span::after{
	content:'';
	width:43px;
	height:3px;
	border-radius: 2px;
	background:#4C4C4C;
	position: absolute;
	bottom:0;
	left:0;
	right:0;
	margin:0 auto;
}
.engineer .content .lis-v .lis-con .con-lis{
	width: 217px;
	height: 212px;
	background: #FFFFFF;
	margin:20px 15px 0 0;
}
.engineer .content .lis-v .lis-con .con-lis:nth-child(3n){
	margin-right:0;
}
.engineer .content .lis-v .lis-con .con-lis .fill{
	display: flex;
	width:100%;
	height:160px;
	overflow: hidden;
	background: #f5f5f5;
	align-items: center;
	justify-content: center;
	position: relative;
}
.engineer .content .lis-v .lis-con .con-lis img{
	width:100%;
	height:100%;
	object-fit:cover;
	object-position: center;
	display: block;
}
.engineer .content .lis-v .lis-con .con-lis:hover img{transition: all 0.6s;transform: scale(1.4);-webkit-transform: scale(1.4);}
.engineer .content .lis-v .lis-con .con-lis .name{
	border: 1px solid #EDEAEA;
	border-top:0;
	line-height: 53px;
	padding:0 10px;
	overflow:hidden;
	white-space:nowrap;
	text-overflow:ellipsis;
}
/* 宸ョ▼甯堣鎯?/ 涓汉涓婚〉鑳屾櫙瀹瑰櫒 */
.engineerdtl{
	background: #f5f7fb;
}
.engineerdtl .banner{
	width:100%;
	height:320px;
	display: block;
	object-fit:cover;
}
.engineerdtl-top{
	background: transparent;
	margin-top: -120px;
	position: relative;
	z-index: 2;
}
.engineerdtl-top .head-v{
	margin:0 auto;
	width: 625px;
	height: 350px;
	background: #FFFFFF;
	box-shadow: 0px 5px 18px 0px rgba(0, 0, 0, 0.08);
	border-radius: 15px;
	padding:93px 0 0;
	position: relative;
	text-align: center;
	z-index: 1;
}
.engineerdtl-top .head-v .head-icon{
	width:160px;
	height:160px;
	border-radius: 50%;
	position:absolute;
	top:-80px;
	left:0;
	right:0;
	margin:0 auto;
	border:4px solid #fff;
}
.engineerdtl-top .head-v .head-icon .head-img{
	width:100%;
	height:100%;
	border-radius: 50%;
}
.engineerdtl-top .head-v .head-icon.active::after{
	content:'';
	display: block;
	width: 36px;
	height: 36px;
	line-height: 36px;
	text-align: center;
	background: url(../icon/vip.png) no-repeat center;
	background-size:100%;
	border-radius: 50%;
	position: absolute;
	bottom:5px;
	right:5px;
	z-index: 1;
}
.engineerdtl-top .head-v .name{
	font-size: 22px;
	font-family: Microsoft YaHei;
	font-weight: 400;
	color: #000000;
}
.engineerdtl-top .head-v .join{
	margin-top:20px;
}
.engineerdtl-top .head-v .join-lis{
	display: inline-block;
	width: 115px;
	height: 42px;
	background-color: #1d4ed8;
	background-color: var(--color-primary);
	border-radius: 5px;
	line-height: 40px;
	text-align: center;
	font-size: 14px;
	font-family: Microsoft YaHei;
	font-weight: 400;
	color: #fff;
	cursor: pointer;
	border: 1px solid #1d4ed8;
	border: 1px solid var(--color-primary);
}
.engineerdtl-top .head-v .join-lis:nth-child(2n),
.engineerdtl-top .head-v .join-lis.send_message,
.engineerdtl-top .head-v .send_message {
	color: #fff !important;
	background-color: #1d4ed8 !important;
	border: 1px solid #1d4ed8 !important;
	margin-left:20px;
}
.engineerdtl-top .head-v .join-lis:not(.send_message) span{
	display: inline-block;
	padding-left:20px;
	background:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M16 21v-2a4 4 0 0 0-4-4H5a4 4 0 0 0-4 4v2'%3E%3C/path%3E%3Ccircle cx='8.5' cy='7' r='4'%3E%3C/circle%3E%3Cline x1='20' y1='8' x2='20' y2='14'%3E%3C/line%3E%3Cline x1='23' y1='11' x2='17' y2='11'%3E%3C/line%3E%3C/svg%3E") no-repeat center left 0;
	background-size:15px;
}
.engineerdtl-top .head-v .join-lis:nth-child(2n) span,
.engineerdtl-top .head-v .join-lis.send_message span {
	padding-left:0;
	background:none !important;
	color: #fff !important;
}
.engineerdtl-top .head-v .join-lis.disable{
	background-color: #DFDDDD;
	border: 1px solid #DFDDDD;
	cursor:not-allowed;
}
.engineerdtl-top .head-v .join-lis.disable:nth-child(2n){
	color: #DFDDDD;
	background-color: #fff;
	margin-left:20px;
}
.engineerdtl-top .head-v .join-lis.disable:nth-child(2n) span{
	padding-left:25px;
	background:url(../icon/infor-l3.png) no-repeat center left 0;
	background-size:18px;
}
.engineerdtl-top .head-v .menu-lis{
	width:25%;
	margin:65px 0 0;
	position: relative;
}
.engineerdtl-top .head-v .menu-lis::after{
	content:'';
	width:1px;
	height: 40px;
	background:#EAEAEA;
	position: absolute;
	top:0;
	bottom:0;
	right:0;
	margin:auto 0;
}
.engineerdtl-top .head-v .menu-lis:last-child::after{
	display: none;
}
.engineerdtl-top .head-v .menu-lis span{
	font-size: 16px;
	font-family: Microsoft YaHei;
	font-weight: 400;
	color: #919191;
}
.engineerdtl-top .head-v .menu-lis p{
	font-size: 22px;
	font-family: Microsoft YaHei;
	font-weight: 400;
	color: #1d4ed8;
	color: var(--color-primary);
	padding-top:5px;
}
.engineerdtl-top .tab{
	text-align: center;
	padding:30px 0 16px;
}
.engineerdtl-top .tab-lis{
	display: inline-block;
	padding:23px 30px;
	font-size: 18px;
	font-family: Microsoft YaHei;
	font-weight: 400;
	color: #666666;
	position: relative;
}
.engineerdtl-top .tab-lis.active{
	color: #1d4ed8;
	color: var(--color-primary);
}
.engineerdtl-top .tab-lis.active::after{
	content:'';
	width:60px;
	height:5px;
	background:#02AAEF;
	background: var(--color-primary);
	position: absolute;
	bottom:0;
	left:0;
	right:0;
	margin:0 auto;
}
.engineerdtl-con .con-tv{
	padding:21px 0 28px;
}
.engineerdtl-con .con-t-lis{
	padding:0 20px;
	font-size: 16px;
	font-family: Microsoft YaHei;
	font-weight: 400;
	color: #666666;
	height: 46px;
	line-height: 46px;
}
.engineerdtl-con .con-t-lis.active{
	color: #1d4ed8;
	color: var(--color-primary);
	background: #FFFFFF;
	border: 1px solid #E8E8E8;
	line-height: 44px;
	border-radius: 23px;
}
.engineerdtl-con .search-v{
	width: 320px;
	height: 40px;
	line-height: 40px;
	border: 1px solid #EEEEEE;
	border-radius: 20px;
	position: relative;
	padding:0 78px 0 60px;
	margin:3px 0;
	background:url(../icon/search1.png) no-repeat center left 15px;
	background-size:19px;
	background-color: #FFFFFF;
}
.engineerdtl-con .search-v::before{
	content:'';
	width:1px;
	height:20px;
	background:#C3C2C2;
	position: absolute;
	top:0;
	bottom:0;
	left:47px;
	margin:auto 0;
}
.engineerdtl-con .search-v input{
	width:100%;
	height:38px;
	font-size: 14px;
	font-family: Microsoft YaHei;
	font-weight: 400;
	color: #333;
	border: none;
}
.engineerdtl-con .search-v button{
	width: 74px;
	height: 37px;
	background: #1d4ed8;
	background: var(--color-primary);
	border-radius: 19px;
	position: absolute;
	top:0;
	right:0;
	font-size: 14px;
	font-family: Microsoft YaHei;
	font-weight: 400;
	color: #FFFFFF;
}

/* 涓汉涓績 - 鎴戠殑浣滃搧/鏀惰棌 缃戞牸甯冨眬 */
#my_list_project_box,
#list_project_box{
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
	gap: 16px;
}
#my_list_project_box .lis,
#list_project_box .lis{
	float:none !important;
	width:100%;              /* 鍗犳弧褰撳墠缃戞牸鍒楀搴?*/
	min-height:auto;         /* 浣跨敤鍐呭楂樺害锛屼笉缁ф壙 .content .lis 鐨勫浐瀹氭渶灏忛珮搴?*/
	margin:0;                /* 鐢?grid 鐨?gap 鎺у埗闂磋窛 */
	background:#ffffff;
	border:1px solid rgba(45,116,217,0.08);
	border-radius:12px;
	overflow:hidden;
	box-shadow:0 4px 18px rgba(26,54,93,0.08);
	transition:transform .2s ease, box-shadow .2s ease;
}
#my_list_project_box .lis:hover,
#list_project_box .lis:hover{
	transform: translateY(-2px);
	box-shadow:0 8px 24px rgba(26,54,93,0.12);
}
#my_list_project_box .lis .fill,
#list_project_box .lis .fill{
	position: relative;
	width: 100%;
	padding-top: 66%; /* 3:2 姣斾緥锛屾洿璐村悎浣滃搧棰勮 */
	background:#f7f9fa;
	overflow: hidden;         /* 淇濇寔鍥剧墖鍦ㄥ崱鐗囧唴锛屼笉绐佺牬杈圭晫 */
}
#my_list_project_box .lis .fill img,
#list_project_box .lis .fill img{
	position: absolute;
	top:0;left:0;right:0;bottom:0;
	width:100%;
	height:100%;
	max-width:100%;
	object-fit: cover;       /* 濉弧鍖哄煙锛屼繚鎸佹瘮渚?*/
}
#my_list_project_box .lis .lis-c,
#list_project_box .lis .lis-c{
	padding:10px 12px;
}
#my_list_project_box .lis .lis-c .title,
#list_project_box .lis .lis-c .title{
	font-size:14px;
	color:#111827;
	margin-bottom:6px;
	overflow:hidden;
	text-overflow:ellipsis;
	display:-webkit-box;
	-webkit-line-clamp:2;    /* 鏈€澶氭樉绀轰袱琛?*/
	-webkit-box-orient:vertical;
	word-break:break-all;    /* 闀胯嫳鏂?ID 涔熻兘鎹㈣ */
}
#my_list_project_box .lis .lis-c .con-v,
#list_project_box .lis .lis-c .con-v{
	display:flex;
	flex-wrap: wrap;
	align-items:center;
	gap:12px;
}
#my_list_project_box .lis .lis-c .con-v img,
#list_project_box .lis .lis-c .con-v img{
	width:28px;
	height:28px;
	border-radius:50%;
	overflow:hidden;
	object-fit:cover;
	margin-left:auto;       /* 闈犲彸瀵归綈锛岄伩鍏嶆尋鍑哄崱鐗?*/
}
#my_list_project_box .lis .but,
#list_project_box .lis .but{
	display:flex;
	align-items:center;
	justify-content:space-between;
}
@media (max-width:768px){
	#my_list_project_box,
	#list_project_box{
		grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
		gap:12px;
	}
}

/* 鍙戝竷鍥剧焊 */
.publish .publish-con{
	min-height: 950px;
	background: #FFFFFF;
	box-shadow: 0px 2px 35px 0px rgba(204, 209, 228, 0.84);
	border-radius: 20px;
	margin:24px auto;
	padding:30px 24px;
}
.publish .publish-con .lis{
	margin-bottom:20px;
}
.publish .publish-con .lis label{
	line-height: 47px;
	font-size: 14px;
	font-family: Microsoft YaHei;
	font-weight: 400;
	color: #666666;
}
.publish .publish-con .lis .inp{
	width: 390px;
	height: 47px;
	background: #FFFFFF;
	border: 1px solid #DEDEDE;
	border-radius: 5px;
	padding:0 7px;
}
.publish .publish-con .lis .select{
	display:inline-block;
}
.publish .publish-con .lis .select-lis{
	padding-left:28px;
	height: 47px;
	line-height: 47px;
	position: relative;
	margin-right:20px;
	font-size: 14px;
	font-family: Microsoft YaHei;
	font-weight: 400;
	color: #333333;
}
.publish .publish-con .lis .select-lis .inp{
	width: 140px;
	margin-left:20px;
	font-size: 12px;
	font-family: Microsoft YaHei;
	font-weight: 400;
}
.publish .publish-con .lis .select-lis::before{
	content:'';
	width:20px;
	height:20px;
	border-radius: 50%;
	border:1px solid #DEDEDE;
	position: absolute;
	top:0;
	left:0;
	bottom:0;
	margin:auto 0;
}
.publish .publish-con .lis .select-lis.active::before{
	border:1px solid #0E9BF5;
	border:1px solid var(--color-primary);
}
.publish .publish-con .lis .select-lis.active::after{
	content:'';
	width:12px;
	height:12px;
	border-radius: 50%;
	background: var(--color-primary);
	position: absolute;
	top:0;
	left:5px;
	bottom:0;
	margin:auto 0;
}
.publish .publish-con .upload{
	background: #fff;
	border: 1px solid #DEDEDE;
	border-radius: 20px;
	padding:10px;
	position: relative;
}
.publish .publish-con .upload-con{
	width:100%;
	min-height: 340px;
	border-radius: 20px;
	border: 1px dashed #DEDEDE;
	background: #FBFAFA;
}
.publish .publish-con .txt{
	padding:20px 0;
}
.publish .publish-con p{
	font-size: 14px;
	font-family: Microsoft YaHei;
	font-weight: 400;
	color: #666666;
	padding:5px 0;
}
.publish .publish-con .upload .uploadBtn{
	width:220px;
	margin:70px auto 10px;
}
.publish .publish-con .upload .uploadBtn img{
	display: block;
	width:75px;
	height:60px;
	margin:0 auto 20px;
}
.publish .publish-con .upload .uploadBtn .btn{
	display:block;
	width: 205px;
	height: 54px;
	line-height: 54px;
	text-align: center;
	background: #FFFFFF;
	border: 1px solid var(--color-primary);
	border-radius: 10px;
	font-size: 20px;
	font-family: Microsoft YaHei;
	font-weight: 400;
	color: var(--color-primary); 
}
.publish .publish-con .upload .p{
	line-height: 30px;
	font-size: 14px;
	font-family: Microsoft YaHei;
	font-weight: 400;
	color: #999999;
	text-align: center;
}
/* 鍏充簬鎴戜滑 */
.about{

}
.about .banner{
	display: block;
	width:100%;
}
.about .about-con{
	padding:20px 0;
}
.about .about-con .left{
	padding:20px 0;
	width: 210px;
	height: 730px;
	background: #FFFFFF;
	box-shadow: 0px 1px 21px 0px rgba(216, 216, 216, 0.38);
	border-radius: 15px;
}
.about .about-con .left .lis{
	font-size: 16px;
	font-family: Microsoft YaHei;
	color: #333;
	line-height: 70px;
	text-align: center;
	position: relative;
}
.about .about-con .left .lis a{
	color: #333;
}
.about .about-con .left .lis.active,.about .about-con .left .lis.active a{
	color: #1d4ed8;
}
.about .about-con .left .lis.active::after{
	content:'';
	position: absolute;
	top:0;
	bottom:0;
	left:38px;
	margin:auto 0;
	width:18px;
	height:18px;
	border:2px solid #1d4ed8;
	border-radius: 50%;
	box-sizing:border-box;
	-moz-box-sizing:border-box;
	-webkit-box-sizing:border-box;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
.about .about-con .right{
	width: 1246px;
	min-height:730px ;
	background: #FFFFFF;
	box-shadow: 0px 1px 21px 0px rgba(216, 216, 216, 0.38);
	border-radius: 15px;
	padding:15px 35px;
}
.about .about-con .right p{
	line-height: 30px;
	font-size: 14px;
	font-family: Microsoft YaHei;
	font-weight: 400;
	color: #333333;
}
/* 涓汉涓績 */
.personal .banner{
	display: block;
	width:100%;
	height:200px;
	object-fit: cover;
}
.personal .personal-con{
	padding:20px 0;
	position: relative;
	margin-top:-145px;
}
.personal .personal-con .left{
	width: 290px;
}
.personal .personal-con .left-head{
	width:100%;
	height: 280px;
	background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
	box-shadow: 0px 8px 32px 0px rgba(26, 54, 93, 0.12);
	border-radius: 20px;
	position: relative;
	padding:70px 25px 0;
	text-align: center;
	margin-bottom:21px;
	border: 1px solid rgba(45, 116, 217, 0.1);
	overflow: hidden;
}

.personal .personal-con .left-head::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: linear-gradient(90deg, #2d74d9, #d4af37, #2d74d9);
	background-size: 200% 100%;
	animation: shimmer 3s ease-in-out infinite;
}

.personal .personal-con .left-head .head-icon{
	width:90px;
	height:90px;
	border-radius: 50%;
	position:absolute;
	top:-5px;
	left:0;
	right:0;
	margin:0 auto;
	border:4px solid #fff;
	box-shadow: 0px 8px 24px 0px rgba(26, 54, 93, 0.15);
	background: linear-gradient(135deg, #2d74d9, #1a365d);
	padding: 2px;
}

.personal .personal-con .left-head .head-icon .head-img{
	width:100%;
	height:100%;
	border-radius: 50%;
	border: 2px solid rgba(255, 255, 255, 0.8);
}

.personal .personal-con .left-head .head-icon.active::after{
	content:'';
	display: block;
	width: 24px;
	height: 24px;
	line-height: 24px;
	text-align: center;
	background: linear-gradient(135deg, #d4af37, #f4d03f);
	color: #1a365d;
	font-weight: bold;
	font-size: 12px;
	border-radius: 50%;
	position: absolute;
	bottom:-2px;
	right:-2px;
	z-index: 1;
	box-shadow: 0px 4px 12px 0px rgba(212, 175, 55, 0.4);
	border: 2px solid #fff;
}

.personal .personal-con .left-head .name{
	font-size: 24px;
	font-family: 'Source Han Sans CN', 'Microsoft YaHei', sans-serif;
	font-weight: 700;
	color: #1a365d;
	margin-top: 8px;
	text-shadow: 0 2px 4px rgba(26, 54, 93, 0.1);
}

.personal .personal-con .left-head .phone{
	font-size: 14px;
	font-family: 'Source Han Sans CN', 'Microsoft YaHei', sans-serif;
	font-weight: 500;
	color: #666666;
	padding:7px 0;
}

.personal .personal-con .left-head .menu-lis{
	display: inline-block;
	font-size: 14px;
	font-family: 'Source Han Sans CN', 'Microsoft YaHei', sans-serif;
	font-weight: 500;
	color: #1a365d;
	position: relative;
}

.personal .personal-con .left-head .menu-lis:nth-child(2n){
	margin-left:20px;
}

.personal .personal-con .left-head .menu-lis:nth-child(2n)::after{
	content:'';
	width:1px;
	height:12px;
	background: linear-gradient(180deg, transparent, rgba(45, 116, 217, 0.3), transparent);
	position: absolute;
	top:0;
	bottom:0;
	left:-11px;
	margin:auto 0;
}

.personal .personal-con .left-head .menu-lis span{
	font-weight: 700;
	color: #2d74d9;
	text-shadow: 0 1px 2px rgba(45, 116, 217, 0.2);
}

.personal .personal-con .left-head .join_time{
	width:235px;
	font-size: 14px;
	font-family: 'Source Han Sans CN', 'Microsoft YaHei', sans-serif;
	font-weight: 500;
	color: #666666;
	line-height: 50px;
	border-top:1px solid rgba(45, 116, 217, 0.15);
	position: absolute;
	bottom:0;
	left:0;
	right:0;
	margin:0 auto;
	background: linear-gradient(90deg, transparent, rgba(45, 116, 217, 0.05), transparent);
}
.personal .personal-con .left-menu{
	width:100%;
	background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
	box-shadow: 0px 8px 32px 0px rgba(26, 54, 93, 0.12);
	border-radius: 20px;
	position: relative;
	padding:30px 20px;
	text-align: left;
	border: 1px solid rgba(45, 116, 217, 0.1);
	overflow: hidden;
}

.personal .personal-con .left-menu::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 2px;
	background: linear-gradient(90deg, #2d74d9, #d4af37, #2d74d9);
	background-size: 200% 100%;
	animation: shimmer 3s ease-in-out infinite;
}

.personal .personal-con .left-menu .menu-lis{
	width:100%;
	height:52px;
	line-height: 52px;
	text-align: left;
	font-size: 16px;
	font-family: 'Source Han Sans CN', 'Microsoft YaHei', sans-serif;
	font-weight: 500;
	color: #1a365d;
	margin-bottom:8px;
	position: relative;
	border-radius: 12px;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	padding-left: 75px;
	overflow: hidden;
}
.personal .personal-con .left-menu .menu-lis.on1{
	background:url(../icon/my-nav1.png) no-repeat center left 20px;
	background-size:25px;
}
.personal .personal-con .left-menu .menu-lis.on2{
	background:url(../icon/my-nav2.png) no-repeat center left 20px;
	background-size:20px;
}
.personal .personal-con .left-menu .menu-lis.on3{
	background:url(../icon/my-nav3.png) no-repeat center left 20px;
	background-size:20px;
}
.personal .personal-con .left-menu .menu-lis.on4{
	background:url(../icon/my-nav4.png) no-repeat center left 20px;
	background-size:20px;
}
.personal .personal-con .left-menu .menu-lis.on5{
	background:url(../icon/my-nav5.png) no-repeat center left 20px;
	background-size:20px;
}
.personal .personal-con .left-menu .menu-lis.on6{
	background:url(../icon/my-nav6.png) no-repeat center left 20px;
	background-size:20px;
}
.personal .personal-con .left-menu .menu-lis.on7{
	background:url(../icon/my-nav7.png) no-repeat center left 20px;
	background-size:20px;
}
.personal .personal-con .left-menu .menu-lis.on8{
	background:url(../icon/my-nav8.png) no-repeat center left 20px;
	background-size:20px;
}
.personal .personal-con .left-menu .menu-lis.active.on1{
	background:url(../icon/my-nav1-b.png) no-repeat center left 20px;
	background-size:25px;
	background-color:rgba(14, 155, 243, 0.11);
}
.personal .personal-con .left-menu .menu-lis.active.on2{
	background:url(../icon/my-nav2-b.png) no-repeat center left 20px;
	background-size:20px;
	background-color:rgba(14, 155, 243, 0.11);
}
.personal .personal-con .left-menu .menu-lis.active.on3{
	background:url(../icon/my-nav3-b.png) no-repeat center left 20px;
	background-size:20px;
	background-color:rgba(14, 155, 243, 0.11);
}
.personal .personal-con .left-menu .menu-lis.active.on4{
	background:url(../icon/my-nav4-b.png) no-repeat center left 20px;
	background-size:20px;
	background-color:rgba(14, 155, 243, 0.11);
}
.personal .personal-con .left-menu .menu-lis.active.on5{
	background:url(../icon/my-nav5-b.png) no-repeat center left 20px;
	background-size:20px;
	background-color:rgba(14, 155, 243, 0.11);
}
.personal .personal-con .left-menu .menu-lis.active.on6{
	background:url(../icon/my-nav6-b.png) no-repeat center left 20px;
	background-size:20px;
	background-color:rgba(14, 155, 243, 0.11);
}
.personal .personal-con .left-menu .menu-lis.active.on7{
	background:url(../icon/my-nav7-b.png) no-repeat center left 20px;
	background-size:20px;
	background-color:rgba(14, 155, 243, 0.11);
}
.personal .personal-con .left-menu .menu-lis.active.on8{
	background:url(../icon/my-nav8-b.png) no-repeat center left 20px;
	background-size:20px;
	background-color:rgba(14, 155, 243, 0.11);
}
.personal .personal-con .left-menu .menu-lis a{
	display: block;
	color: #000;
}
.personal .personal-con .left-menu .menu-lis span{
	position: absolute;
	top:0;
	bottom:0;
	right:0;
	margin:auto 0;
	min-width: 17px;
	height: 17px;
	line-height: 17px;
	text-align: center;
	background: #FC0000;
	border-radius: 10px;
	font-size: 12px;
	font-family: Microsoft YaHei;
	font-weight: 400;
	color: #FFFFFF;
	padding:0 4px;
}
.personal .personal-con .left-menu .menu-lis.active a{
	color: #1d4ed8;
}
.personal .personal-con .right{
    width: auto;
    min-height:730px ;
    background: #FFFFFF;
    box-shadow: 0px 1px 21px 0px rgba(216, 216, 216, 0.38);
    border-radius: 15px;
    padding:15px 21px;
}

/* 淇瀹藉睆涓嬩晶杈规爮涓庡唴瀹瑰尯绌虹櫧闂磋窛杩囧ぇ鐨勯棶棰橈細浣跨敤寮规€у竷灞€骞跺浐瀹氬垪闂磋窛 */
.personal .personal-con{
  display: flex;
  align-items: flex-start;
  gap: 20px; /* 鍥哄畾宸﹀彸闂磋窛 */
}
.personal .personal-con .left{
  flex: 0 0 290px; /* 鍥哄畾渚ф爮瀹藉害 */
}
.personal .personal-con .right{
  flex: 1 1 auto; /* 鑷€傚簲濉弧鍓╀綑绌洪棿 */
  width: auto;     /* 瑕嗙洊鍘熷浐瀹氬搴︼紝閬垮厤鐣欑櫧 */
}

@media (max-width: 1200px){
  .personal .personal-con{
    flex-direction: column;
  }
  .personal .personal-con .left,
  .personal .personal-con .right{
    flex: none;
    width: 100%;
  }
}
.personal .personal-con .right .top{
	font-size: 14px;
	font-family: Microsoft YaHei;
	font-weight: 400;
	color: #5E5E5E;
	padding:20px 0;
}
.personal .personal-con .right .con-lis{
	border-bottom:10px solid #eee;
	margin-bottom:20px;
}
.personal .personal-con .right .con-lis:last-child{
	border-bottom:0;
	margin-bottom:0;
}
.personal .personal-con .right .img{
	width:100%;
	display: block;
}
.personal .personal-con .right .img.on1{
	display:none;
}
.personal .personal-con .right .con-tit{
	font-size: 14px;
	font-family: Microsoft YaHei;
	font-weight: 400;
	color: #333333;
	line-height: 50px;
}
.personal .personal-con .right .con-tit span{
	color:#1d4ed8;
	padding-left:10px;
}
.personal .personal-con .right .lis-c{
	position: relative;
	padding:25px 25px 25px 120px;
	width:345px;
	height: 139px;
	background: #FFFFFF;
	box-shadow: 0px 2px 29px 0px rgba(81, 98, 138, 0.2);
	border-radius: 15px;
	margin:0 41px 33px 0;
}
.personal .personal-con .right .lis-c:nth-child(3n){
	margin-right:0;
}
.personal .personal-con .right .lis-c .icon{
	width:75px;
	height:75px;
	border-radius: 50%;
	position: absolute;
	top:25px;
	left:26px;
}
.personal .personal-con .right .lis-c .des{
	font-size: 14px;
	font-family: Microsoft YaHei;
	font-weight: 400;
	color: #333333;
}
.personal .personal-con .right .lis-c .price{
	font-size: 22px;
	font-family: Microsoft YaHei;
	font-weight: bold;
	color: #F58425;
	margin:5px 0 7px;
}
.personal .personal-con .right .lis-c .btn{
	width: 72px;
	height: 30px;
	line-height: 30px;
	text-align: center;
	background: #F58425;
	border-radius: 3px;
	font-size: 14px;
	font-family: Microsoft YaHei;
	font-weight: 400;
	color: #FFFFFF;
}
.personal .personal-con .right .lis-c.active .btn{
	background: #EDEDED;
	color: #B7B7B7;
}
/* vip */
.personal .personal-con .right.vip{
	padding-top:34px;
}
.personal .personal-con .right.vip .vip-top .lis{
	width:50%;
	position: relative;
}
.personal .personal-con .right.vip .vip-top .lis:first-child::after{
	position: absolute;
	top:0;
	bottom:0;
	right:0;
	margin:auto 0;
	content:'';
	width:1px;
	height:102px;
	background:#E8E8E8;
}
.personal .personal-con .right.vip .vip-top .lis .east{
	width:35%;
	text-align: center;
}
.personal .personal-con .right.vip .vip-top .lis .des{
	font-size: 14px;
	font-family: Microsoft YaHei;
	font-weight: 400;
	color: #666666;
}
.personal .personal-con .right.vip .vip-top .lis .num{
	font-size: 40px;
	font-family: Arial;
	font-weight: 400;
	color: #333333;
	margin:30px 0;
}
.personal .personal-con .right.vip .vip-top .lis .record{
	font-size: 14px;
	font-family: Microsoft YaHei;
	font-weight: 400;
	color: #FE8D17;
}
.personal .personal-con .right.vip .vip-top .lis:first-child .west{
	right:50px;
}
.personal .personal-con .right.vip .vip-top .lis .west{
	position: absolute;
	top:51px;
	right:20px;
	text-align: center;
}
.personal .personal-con .right.vip .vip-top .lis .west .west-lis{
	display: inline-block;
	width: 80px;
	height: 40px;
	line-height: 38px;
	text-align: center;
	background: #FFFFFF;
	border: 1px solid #FD8320;
	border-radius: 5px;
	font-size: 14px;
	font-family: Microsoft YaHei;
	font-weight: 400;
	color: #FD8320;
}
.personal .personal-con .right.vip .vip-top .lis .west .west-lis:last-child{
	background: #FD8320;
	color: #FFFFFF;
	margin-left:23px;
}
.personal .personal-con .right.vip .vip-top .lis .west .p{
	font-size: 14px;
	font-family: Microsoft YaHei;
	font-weight: 400;
	color: #999999;
	margin-top:10px;
}
.personal .personal-con .right.vip .vip-con{
	padding:65px 0 0;
}
.personal .personal-con .right.vip .vip-tit{
	font-size: 20px;
	font-family: Microsoft YaHei;
	color: #333333;
	line-height: 80px;
}
.personal .personal-con .right.vip .vip-con .lis{
	width:49%;
	height:335px;
	border-radius:15px ;
	text-align: center;
	background:url(../icon/vip-l.jpg) no-repeat center;
	background-size:100%;
	padding:80px 0 0;
	position: relative;
}
.personal .personal-con .right.vip .vip-con .lis .hot{
	position: absolute;
	top:0;
	left:15px;
	padding-left:25px;
	background:url(../icon/hot1.png) no-repeat center left 0;
	background-size:18px;
	font-size: 16px;
	font-family: Microsoft YaHei;
	font-weight: bold;
	color: #FFFFFF;
	line-height: 40px;
}
.personal .personal-con .right.vip .vip-con .lis:last-child{
	background:url(../icon/vip-r.png) no-repeat center;
	background-size:100%;
}
.personal .personal-con .right.vip .vip-con .lis .title{
	font-size: 28px;
	font-family: Microsoft YaHei;
	font-weight: 400;
	color: #BD4308;
}
.personal .personal-con .right.vip .vip-con .lis .des{
	font-size: 16px;
	font-family: Microsoft YaHei;
	font-weight: 400;
	color: #FE5200;
	margin:20px 0 60px;
}
.personal .personal-con .right.vip .vip-con .lis .btn{
	width: 290px;
	height: 69px;
	line-height: 69px;
	background: #FD8320;
	border-radius: 35px;
	font-size: 21px;
	font-family: Microsoft YaHei;
	font-weight: 400;
	color: #FFFFFF;
	margin:0 auto;
}
.personal .personal-con .right.vip .vip-con .lis:last-child .title{
	color: #0C7652;
}
.personal .personal-con .right.vip .vip-con .lis:last-child .des{
	color: #04B97D;
}
.personal .personal-con .right.vip .vip-con .lis:last-child .btn{
	background: #0DB27C;
}
.personal .personal-con .right.vip .figure{
	padding:65px 0 30px;
}
.personal .personal-con .right.vip .figure-con{
	padding-top:20px;
}
.personal .personal-con .right.vip .figure .lis{
	width:100px;
	text-align: center;
	margin-right:30px;
}
.personal .personal-con .right.vip .figure .lis:last-child{
	margin-right:0;
}
.personal .personal-con .right.vip .figure .lis .img{
	width: 95px;
	height: 95px;
	border-radius: 50%;
}
.personal .personal-con .right.vip .figure .lis .name{
	font-size: 16px;
	font-family: Microsoft YaHei;
	color: #333333;
	padding:15px 0 10px;
}
.personal .personal-con .right.vip .figure .lis .des{
	font-size: 14px;
	font-family: Microsoft YaHei;
	font-weight: 400;
	color: #ACACAC;
}
/* 鍏呭€?*/
.personal .personal-con .right.recharge .recharge-con{
	padding-bottom:30px;
}
.personal .personal-con .right.recharge .recharge-tit{
	font-size: 20px;
	font-family: Microsoft YaHei;
	color: #333333;
	line-height: 80px;
}
.personal .personal-con .right.recharge .con{
	padding-top:20px;
	padding-left:32px;
}
.personal .personal-con .right.recharge .lis{
	width:225px;
	height:350px;
	text-align: center;
	border: 1px solid #DFDFDF;
	border-radius: 5px;
	margin-right: 50px;
	margin-bottom:25px;
	padding-top:25px;
	position: relative;
	overflow: hidden;
}
.personal .personal-con .right.recharge .lis:nth-child(4n){
	margin-right: 0;
}
.personal .personal-con .right.recharge .lis .tis{
	position: absolute;
	top:7px;
	left:-40px;
	width:130px;
	height:40px;
	line-height: 40px;
	text-align: center;
	background:#1d4ed8;
	font-size: 14px;
	font-family: Microsoft YaHei;
	font-weight: 400;
	color: #FFFFFF;
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
}
.personal .personal-con .right.recharge .lis.active{
	background:url(../icon/recharge.jpg) no-repeat center;
	background-size:100% 100%;
	box-shadow: -3px 0px 27px 0px RGBA(14, 138, 243, 0.3);
}
.personal .personal-con .right.recharge .lis .img{
	width:38px;
	height:38px;
	margin:0 auto;
}
.personal .personal-con .right.recharge .lis .gold{
	font-size: 20px;
	font-family: Microsoft YaHei;
	font-weight: 400;
	color: #1d4ed8;
	margin:25px 0 70px;
}
.personal .personal-con .right.recharge .lis .gold span{
	font-size: 40px;
	font-weight: bold;
	padding-right:5px;
}
.personal .personal-con .right.recharge .lis .price{
	font-size: 30px;
	font-family: Microsoft YaHei;
	font-weight: bold;
	color: #FAB001;
	padding-bottom:5px;
}
.personal .personal-con .right.recharge .lis .tag-lis{
	font-size: 16px;
	font-family: Microsoft YaHei;
	font-weight: 400;
	color: #838383;
	text-align: left;
	line-height: 40px;
	padding-left:105px;
	background:url(../icon/gou.png) no-repeat center left 70px;
	background-size:27px;
}
.personal .personal-con .right.recharge .lis.active .price{
	color: #FFFFFF;
}
.personal .personal-con .right.recharge .lis.active .tag-lis{
	color: #FFFFFF;
	background:url(../icon/gou1.png) no-repeat center left 70px;
	background-size:27px;
}
.personal .personal-con .right.recharge .pay-info{
	font-size: 16px;
	font-family: Microsoft YaHei;
	font-weight: 400;
	color: #666666;
	text-align: center;
	margin:30px 0 55px;
}
.personal .personal-con .right.recharge .pay-info span{
	font-size: 24px;
	color:#FAB001;
}
.personal .personal-con .right.recharge .pay-lis{
	width:50%;
	text-align: center;
}
.personal .personal-con .right.recharge .pay-lis img{
	width: 257px;
	height: 257px;
	border: 1px solid #4BB414;
	padding:25px;
}
.personal .personal-con .right.recharge .pay-lis .tit{
	line-height: 70px;
	font-size: 18px;
	font-family: Microsoft YaHei;
	font-weight: 400;
	color: #09BB07;
}
.personal .personal-con .right.recharge .pay-lis .tit span{
	display: inline-block;
	padding-left:63px;
	background:url(../icon/wechat1.png) no-repeat center left 0;
	background-size:45px;
}
.personal .personal-con .right.recharge .pay-lis:last-child .tit span{
	background:url(../icon/zhifubao.png) no-repeat center left 0;
	background-size:40px;
}
.personal .personal-con .right.recharge .pay-lis:last-child img{
	border: 1px solid #02AAEF;
}
.personal .personal-con .right.recharge .pay-lis:last-child .tit{
	color:#02AAEF;
}
/* 閲戝竵鍏戞崲 */
.personal .personal-con .right.exchange .exchange-tit{
	font-size: 20px;
	font-family: Microsoft YaHei;
	color: #333333;
	line-height: 80px;
}
.personal .personal-con .right.exchange .exchange-con{
	font-size: 14px;
	font-family: Microsoft YaHei;
	font-weight: 400;
	color: #333333;
	padding:50px 0 0 260px;
}
.personal .personal-con .right.exchange .exchange-con .lis{
	margin-bottom:20px;
}
.personal .personal-con .right.exchange .exchange-con label{
	display: inline-block;
	width:100px;
	text-align: right;
}
.personal .personal-con .right.exchange .exchange-con input{
	width: 254px;
	height: 50px;
	background: #FFFFFF;
	border: 1px solid #E4E4E4;
	border-radius: 5px;
	padding:0 15px;
	margin:0 10px;
}
.personal .personal-con .right.exchange .exchange-con span{
	color: #666666;
}
.personal .personal-con .right.exchange .exchange-con i{
	color:#1d4ed8;
	font-size: 18px;
}
.personal .personal-con .right.exchange .exchange-con .btn{
	width: 146px;
	height: 50px;
	line-height: 50px;
	text-align: center;
	background: #1d4ed8;
	border-radius: 5px;
	font-size: 16px;
	font-family: Microsoft YaHei;
	font-weight: 400;
	color: #FFFFFF;
	position: relative;
	margin:35px 0 0 110px;
}
/* 鎴戜笂浼犵殑 */
.uploaded{
	padding:27px 20px;
}
.uploaded .table{
	width:100%;
	border:1px solid #EAF2F7;
}
.uploaded .table .lis{
	width:25%;
}
.uploaded .table .th{
	height:60px;
	line-height: 60px;
	font-size: 14px;
	font-family: Microsoft YaHei;
	font-weight: 400;
	color: #666666;
	background:rgba(237, 235, 235, 0.86);
	text-align: center;
}
.uploaded .table .lis:first-child{width:35%;}
.uploaded .table .lis:nth-child(2){width:25%;}
.uploaded .table .lis:nth-child(3){width:25%;}
.uploaded .table .lis:last-child{width:15%;}
.uploaded .table .th .lis{float:left;}
.uploaded .table .td{
	border-bottom: 1px solid #E7E7E7;
	font-size: 14px;
	font-family: Microsoft YaHei;
	font-weight: 400;
	color: #000000;
	display: flex;
	justify-content: flex-start;
	align-items: center;
}
.uploaded .table .td .lis{
	padding:12px 0;
	display: flex;
	justify-content: center;
	align-items: center;
}
.uploaded .table .td:last-child{
	border:none;
}
.uploaded .table .td .lis.on1{
	padding-left:30px;
	padding-right:20px;
	justify-content: flex-start;
}
.uploaded .table img{
	width:80px;
	height:58px;
	margin-right:10px;
}
.uploaded .table .td .lis .checked{
	display: inline-block;
	width:40px;
	height:20px;
	border-radius: 20px;
	background:#eee;
	position: relative;
}
/* Switch寮€鍏虫牱寮?*/
input[type='checkbox'].switch {
	outline: none;
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	position: relative;
	width: 40px;
	height: 20px;
	background: #ccc;
	border-radius: 10px;
	transition: border-color .3s, background-color .3s;
}

input[type='checkbox'].switch::after {
	content: '';
	display: inline-block;
	width: 16px;
	height: 16px;
	border-radius: 50%;
	background: #fff;
	box-shadow: 0, 0, 2px, #999;
	transition: .4s;
	top: 2px;
	position: absolute;
	left: 2px;
}

input[type='checkbox'].switch:checked {
	background: rgb(19, 206, 102);
}

/* 褰搃nput[type=checkbox]琚€変腑鏃讹細浼厓绱犳樉绀轰笅闈㈡牱寮?浣嶇疆鍙戠敓鍙樺寲 */
input[type='checkbox'].switch:checked::after {
	content: '';
	position: absolute;
	left: 55%;
	top: 2px;
}
.page{
	padding:50px 0 20px;
}
.page ul{
	display:flex;
	justify-content: center;
	align-items: center;
}
.page li{
	width: 40px;
	height: 40px;
	line-height: 40px;
	text-align: center;
	background: #F2F2F2;
	border-radius: 3px;
	font-size: 17px;
	font-family: Microsoft YaHei;
	font-weight: 400;
	color: #666666;
	margin:0 5px;
	cursor: pointer;
	overflow: hidden;
}
.page li a{
	display: inline-block;
	width:100%;
	height:100%;
}
.page li.active{
	background:#1d4ed8;
	color:#FFFFFF;
	cursor: not-allowed;
}
.page li:hover a{
	background:#1d4ed8;
	color:#FFFFFF;
}
/* 妯″瀷 */
.uploaded.model .uploaded-top{
	margin-bottom:17px;
	margin-top:10px;
}
.uploaded.model .uploaded-top .select-v{
	height: 36px;
	line-height: 36px;
	font-size: 14px;
	font-family: Microsoft YaHei;
	font-weight: 400;
	color: #666666;
	position: relative;
	padding-left:35px;
}
.uploaded.model .uploaded-top .select-v .checked::before{
	content:'';
	position: absolute;
	top:0;
	bottom:0;
	left:0;
	margin:auto 0;
	width:21px;
	height:21px;
	background:#fff;
	border: 1px solid #EBEBEB;
}
.uploaded.model .uploaded-top .select-v .checked:checked::before{
	background:url(../icon/gou.png) no-repeat center;
	background-size:16px;
}
.uploaded.model .uploaded-top label{
	font-size: 14px;
	font-family: Microsoft YaHei;
	font-weight: 400;
	color: #333333;
	line-height: 36px;
	display: inline-block;
}
.uploaded.model .uploaded-top .option{
	width: 150px;
	height: 36px;
	padding:0 10px;
	border: 1px solid #E7E7E7;
	border-radius: 2px;
	 appearance:none;
	-moz-appearance:none;
	-webkit-appearance:none;
	background:url(../icon/down.png) no-repeat center right 10px;
	background-size:15px;
	background-color: #FFFFFF;
	margin-right:10px;
}
.uploaded.model .uploaded-top .option option{
	background:none;
}
.uploaded.model .uploaded-top  .tish{
	display: flex;
	align-items: center;
}
.uploaded.model .uploaded-top .cate_search_input{
	width: 180px;
	height: 36px;
	padding:0 10px;
	border: 1px solid #E7E7E7;
	border-radius: 2px;
	background-size:15px;
	background-color: #FFFFFF;
	margin-right:10px;
	font-size: 14px;
	font-family: Microsoft YaHei;
	font-weight: 400;
	color: #333333;
}
.uploaded.model .uploaded-top .open{
	display: inline-block;
}
.uploaded.model .uploaded-top .open-lis{
	padding-left:30px;
	font-size: 14px;
	font-family: Microsoft YaHei;
	font-weight: 400;
	color: #333333;
	position: relative;
	margin-left:20px;
}
.uploaded.model .uploaded-top .open-lis span{
	width:19px;
	height:19px;
	border-radius: 50%;
	border: 1px solid #1d4ed8;
	position: absolute;
	top:0;
	left:0;
	bottom:0;
	margin:auto 0;
}
.uploaded.model .uploaded-top .open-lis.active span::before{
	content:'';
	width:9px;
	height:9px;
	border-radius: 50%;
	background:#1d4ed8;
	position: absolute;
	top:0;
	bottom:0;
	left:0;
	right:0;
	margin:auto;
}
.uploaded.model .uploaded-top .set{
	width: 75px;
	height: 36px;
	line-height: 36px;
	text-align: center;
	background:#1d4ed8;
	border-radius: 2px;
	font-size: 14px;
	font-family: Microsoft YaHei;
	font-weight: 400;
	color: #fff;
}
.uploaded.model .table .lis:first-child{width:25%;padding-right:10px;padding-left:10px;}
.uploaded.model .table .lis:nth-child(2){width:15%;}
.uploaded.model .table .lis:nth-child(3){width:15%;}
.uploaded.model .table .lis:nth-child(4){width:15%;}
.uploaded.model .table .lis:nth-child(5){width:15%;}
.uploaded.model .table .lis:nth-child(6){width:15%;}
.uploaded.model .table .lis.on1 p{
	font-size: 14px;
	font-family: Microsoft YaHei;
	font-weight: 400;
	color: #999999;
}
.uploaded.model .table .lis .select-v{
	width:23px;
	height:23px;
	background:#F6F6F6;
}
.uploaded.model .table .lis .select-v:checked{
	background:url(../icon/gou.png) no-repeat center;
	background-size:16px;
	background-color:#F6F6F6;
}
.uploaded.model .table .td .lis:nth-child(3) {
	padding:0 20px;
	color:#0BD57D;
}
.uploaded.model .table .td .repeat.lis:nth-child(3) {
	color:#FF0505;
}
.uploaded.model .table .td .fail.lis:nth-child(3) {
	color:#B6B7B7;
}
.uploaded.model .table .td .lis:nth-child(5){color:#B6B7B7;}
.uploaded.model .table .td .lis:last-child span,.uploaded.model .table .td .lis:last-child a{
	color:#1d4ed8;
	color: var(--color-primary);
	margin:0 10px;
}
.uploaded.model .table .td .lis:last-child .self-help{
	color:#FF8A00;
}
/* 妯″瀷缂栬緫 */
.right.model-edit .model-edit-tit{
	font-size: 20px;
	font-family: Microsoft YaHei;
	color: #333333;
	line-height: 80px;
}
.right.model-edit .model-edit-con .lis{
	margin-bottom:20px;
}
.right.model-edit .model-edit-con .option{
	width: 240px;
	height: 50px;
	padding:0 10px;
	border: 1px solid #E7E7E7;
	border-radius: 2px;
	 appearance:none;
	-moz-appearance:none;
	-webkit-appearance:none;
	background:url(../icon/down.png) no-repeat center right 10px;
	background-size:15px;
	background-color: #FFFFFF;
	margin-right:10px;
	margin-left:-2px;
}
.right.model-edit .model-edit-con .option option{
	background:none;
}
.right.model-edit .model-edit-con label{
	display: inline-block;
	width:100px;
	text-align: right;
	font-size: 14px;
	font-family: Microsoft YaHei;
	font-weight: 400;
	color: #333333;
	margin-right:10px;
}
.right.model-edit .model-edit-con input{
	width: 254px;
	height: 42px;
	background: #FFFFFF;
	border: 1px solid #E4E4E4;
	border-radius: 5px;
	padding:0 15px;
	margin:0 20px 0 -2px;
}
.right.model-edit .model-edit-con .txt-v label{
	position: relative;
	top:-50px;
}
.right.model-edit .model-edit-con textarea{
	width: 642px;
	height: 122px;
	background: #FFFFFF;
	border: 1px solid #E4E4E4;
	border-radius: 5px;
	padding:15px;
	font-size: 14px;
	font-family: Microsoft YaHei;
	font-weight: 400;
	color: #333;
	margin-left:-2px;
}
.right.model-edit .model-edit-con .seo input{
	width: 110px;
}
.right.model-edit .model-edit-con span{
	color: #666666;
}
.right.model-edit .model-edit-con i{
	color:#1d4ed8;
	font-size: 18px;
}
.right.model-edit .model-edit-con .radio{
	display: flex;
	align-items: center;
	height:42px;
}
.right.model-edit .model-edit-con .upload .tit{
	display: block;
	float: left;
	line-height: 105px;
	position: relative;
}
.right.model-edit .model-edit-con .upload-con{
	float: left;
	display:block;
	max-width: 980px;
}
.right.model-edit .model-edit-con .img-lis{
	width: 142px;
	height: 105px;
	display: flex;
	justify-content: center;
	align-items: center;
	margin-right:8px;
	margin-bottom:8px;
	position: relative;
}
.right.model-edit .model-edit-con .img-lis .back{
	position: absolute;
	left:0;
	bottom:0;
	width:100%;
	height:30px;
	line-height: 30px;
	text-align: center;
	background:rgba(0,0,0,.5);
}
.right.model-edit .model-edit-con .img-lis:hover .back{
	display: block;
}
.right.model-edit .model-edit-con .img-lis .back .back-lis{
	width:50%;
	float: left;
	font-size: 12px;
	color:#fff;
	cursor: pointer;
}
.right.model-edit .model-edit-con .img-lis .set-img{
	display: none;
	position: absolute;
	top:0;
	left:0;
	width:100%;
	height:100%;
	background:rgba(0,0,0,.5);
	z-index: 2;
	padding:42px 0;
}
.right.model-edit .model-edit-con .img-lis:hover .set-img{
	display: block;
}
.right.model-edit .model-edit-con .img-lis .set-img>div{
	font-size: 14px;
	font-family: Microsoft YaHei;
	font-weight: 400;
	color: #DADADA;
	padding:0 10px;
	cursor: pointer;
}
.right.model-edit .model-edit-con .img-lis .img-v{
	width:100%;
	height:100%;
	object-fit: cover;
}
.right.model-edit .model-edit-con .upload-btn{
	background: #F9F9F9;
	font-size: 44px;
	font-family: Microsoft YaHei;
	font-weight: 400;
	color: #DADADA;
}
.right.model-edit .model-edit-con .open{
	display: flex;
	justify-content: flex-start;
	align-items: center;
}
.right.model-edit .model-edit-con .open .open-lis{
	padding-left:30px;
	font-size: 14px;
	font-family: Microsoft YaHei;
	font-weight: 400;
	color: #333333;
	position: relative;
	margin-right:20px;
}
.right.model-edit .model-edit-con .open .open-lis span{
	width:19px;
	height:19px;
	border-radius: 50%;
	border: 1px solid #1d4ed8;
	position: absolute;
	top:0;
	left:0;
	bottom:0;
	margin:auto 0;
}
.right.model-edit .model-edit-con .open .open-lis input{
	width: 129px;
}
.right.model-edit .model-edit-con .open .open-lis.active span::before{
	content:'';
	width:9px;
	height:9px;
	border-radius: 50%;
	background:#1d4ed8;
	position: absolute;
	top:0;
	bottom:0;
	left:0;
	right:0;
	margin:auto;
}
.right.model-edit .model-edit-con .btn{
	width: 146px;
	height: 50px;
	line-height: 50px;
	text-align: center;
	background: #1d4ed8;
	border-radius: 5px;
	font-size: 16px;
	font-family: Microsoft YaHei;
	font-weight: 400;
	color: #FFFFFF;
	position: relative;
	margin:35px 0 0 110px;
}
/* 鎴戠殑淇℃伅缂栬緫 */
.right.info .info-tab{
	display: flex;
	gap: 40px;
	border-bottom: 2px solid #f0f0f0;
}
.right.info .info-tab .lis{
	font-size: 18px;
	font-family: Microsoft YaHei;
	font-weight: 400;
	color: #666;
	position: relative;
	line-height: 50px;
	padding: 0 10px;
	transition: all 0.3s ease;
	cursor: pointer;
}
.right.info .info-tab .lis:hover{
	color: #333;
}
.right.info .info-tab .lis.active{
	color: #1d4ed8;
	color: var(--color-primary);
	font-weight: 600;
}
.right.info .info-tab .lis.active::after{
	content:'';
	width: 100%;
	height: 3px;
	border-radius: 3px;
	position:absolute;
	bottom: -2px;
	left: 0;
	right: 0;
	margin: 0 auto;
}
.right.info .info-con{
	padding-top:50px;
}
.right.info .info-con .lis{
	margin-bottom:20px;
	display: flex;
	justify-content: flex-start;
	align-items: center;
}
.right.info .info-con .lis .head-img{
	display: flex;
	justify-content: flex-start;
	align-items: center;
}
.right.info .info-con .lis .img-v{
	width:90px;
	height:90px;
	border-radius: 50%;
	margin-right:20px;
}
.right.info .info-con .lis .edit{
	width: 80px;
	height: 36px;
	line-height: 34px;
	text-align: center;
	font-size: 14px;
	font-family: Microsoft YaHei;
	font-weight: 400;
	color: #6F6F6F;
	border: 1px solid #9A9A9A;
	border-radius: 5px;
}
.right.info .info-con .tit{
	width:100px;
	text-align: right;
	font-size: 14px;
	font-family: Microsoft YaHei;
	font-weight: 400;
	color: #333333;
	margin-right:30px;
}
.right.info .info-con input{
	width: 254px;
	height: 46px;
	background: #FFFFFF;
	border: 1px solid #E4E4E4;
	border-radius: 5px;
	padding:0 15px;
}
.right.info .info-con .identif{
	width: 135px;
	height: 46px;
	background: #E0F2FD;
	background: #e0ecfd;
	border-radius: 10px;
	text-align: center;
	line-height:46px;
	font-size: 14px;
	font-family: Microsoft YaHei;
	font-weight: 400;
	color: #2CAEFF;
	color: var(--color-primary);
	cursor: pointer;
	margin-left:20px;
}
.right.info .info-con textarea{
	width: 642px;
	height: 122px;
	background: #FFFFFF;
	border: 1px solid #E4E4E4;
	border-radius: 5px;
	padding:15px;
	font-size: 14px;
	font-family: Microsoft YaHei;
	font-weight: 400;
	color: #333;
}
.right.info  .form-group{
	display: inline-block;
	margin-bottom: 0;
	vertical-align: middle;
	min-width: 156px;
}
.right.info  .sr-only{
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	border: 0;
}
.right.info .form-control{
	display: block;
	width: 100%;
	height: 46px;
	padding: 6px 30px 6px 12px;
	font-size: 14px;
	line-height: 1.42857143;
	color: #555;
	background:url(../icon/down.png) no-repeat center right 10px;
	background-size:13px;
	background-color: #FFFFFF;
	border: 1px solid #ccc;
	border-radius: 4px;
}
.right.info .info-con .option{
	width: 240px;
	height: 46px;
	padding:0 10px;
	border: 1px solid #E7E7E7;
	border-radius: 2px;
	 appearance:none;
	-moz-appearance:none;
	-webkit-appearance:none;
	background:url(../icon/down.png) no-repeat center right 10px;
	background-size:13px;
	background-color: #FFFFFF;
	margin-right:10px;
}
.right.info .info-con .option option{
	background:none;
}
.right.info .info-con .lis .span{
	color: #D5D5D5;
	padding:0 20px;
}
.right.info .info-con .radio{
	display: flex;
	align-items: center;
	height:42px;
}
.right.info .info-con .open{
	display: flex;
	justify-content: flex-start;
	flex-wrap: wrap;
	align-items: flex-start;
	max-width: 980px;
	gap: 10px 15px;
}
.right.info .info-con  .open .open-lis{
	padding-left:30px;
	font-size: 14px;
	font-family: Microsoft YaHei;
	font-weight: 400;
	color: #333333;
	position: relative;
	margin-right:25px;
	margin-bottom:15px;
	min-width:140px;
	flex: 0 0 auto;
	display: inline-flex;
	align-items: center;
}
.right.info .info-con .open .open-lis span{
	width:19px;
	height:19px;
	border-radius: 50%;
	border: 1px solid #1d4ed8;
	border: 1px solid var(--color-primary);
	position: absolute;
	top:0;
	left:0;
	bottom:0;
	margin:auto 0;
}
.right.info .info-con .open .open-lis.active span::before{
	content:'';
	width:9px;
	height:9px;
	border-radius: 50%;
	background: #1d4ed8;
	background: var(--color-primary);
	position: absolute;
	top:0;
	bottom:0;
	left:0;
	right:0;
	margin:auto;
}
.right.info .info-con .checkbox .open .open-lis span{
	width: 20px;
	height: 20px;
	border: 1px solid #E4E4E4;
	border-radius: 0;
}
.right.info .info-con .checkbox .open .open-lis.active span{
	border: 1px solid #1d4ed8;
	border: 1px solid var(--color-primary);
}
.right.info .info-con .checkbox .open .open-lis.active span::before{
	content:'';
	width: 5px;
	height: 10px;
	border: 1px solid #1d4ed8;
	border: 1px solid var(--color-primary);
	border-width: 0 1px 1px 0;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
	border-radius: 0;
	background:none;
	position: absolute;
	top:0;
	left:0;
	margin:auto;
}
.right.info .info-con .address{
	display: flex;
	justify-content: center;
	flex-flow: column;
}
.right.info .info-con .btn{
	width: 146px;
	height: 48px;
	line-height: 46px;
	text-align: center;
	border:1px solid #1d4ed8;
	border:1px solid var(--color-primary);
	border-radius: 5px;
	font-size: 16px;
	font-family: Microsoft YaHei;
	font-weight: 400;
	color: #1d4ed8;
	color: var(--color-primary);
	position: relative;
	margin:35px 0 0 130px;
}
/* 鎴戠殑娑堟伅 */
.right.info .message-con .lis{
	padding:25px 0 50px 28px;
	border-bottom:1px solid #E7E7E7;
}
.right.info .message-con .lis .title{
	max-width: 80%;
	font-size: 18px;
	font-family: Microsoft YaHei;
	font-weight: 400;
	color: #333333;
	line-height: 30px;
	position: relative;
}
.right.info .message-con .lis .title::before{
	content:'';
	display: block;
	width:12px;
	height:12px;
	border-radius: 50%;
	background: #BEBEBE;
	opacity: 0.64;
	position: absolute;
	top:10px;
	left:-28px;
}
.right.info .message-con .lis .date{
	font-size: 14px;
	font-family: Microsoft YaHei;
	font-weight: 400;
	color: #999999;
	line-height: 30px;
	margin-left:20px;
}
.right.info .message-con .lis  .des{
	font-size: 14px;
	font-family: Microsoft YaHei;
	font-weight: 400;
	color: #666666;
	line-height: 30px;
	margin-top:15px;
}
.uploaded.info .info-con{
	padding-top:25px;
	position: relative;
}
.uploaded.info .info-con .price{
	font-size: 16px;
	font-family: Microsoft YaHei;
	font-weight: 400;
	color: #666666;
}
.uploaded.info .info-con .price span{
	color:#FF9628;
}
.uploaded.info .info-con .sai{
	font-size: 14px;
	font-family: Microsoft YaHei;
	font-weight: 400;
	color: #333333;
	position: absolute;
	top:0;
	right:0;
}
.uploaded.info .table{
	margin-top:20px;
}
.uploaded.info .table .lis:first-child{width:25%;}
.uploaded.info .table .lis:nth-child(2){width:25%;}
.uploaded.info .table .lis:nth-child(3){width:25%;}
.uploaded.info .table .lis:last-child{width:25%;}
.uploaded.info .table .lis.on{
	color:#FF0018;
}
.uploaded.info .table .td .lis{
	padding:18px 0;
}
/* 鍙戠淇?*/
.send-q{
	position: fixed;
	top:0;
	left:0;
	width:100%;
	height:100%;
	background:rgba(0,0,0,.5);
	z-index: 10;
}
.send-q .send{
	position: absolute;
	top:0;
	left:0;
	bottom:0;
	right:0;
	margin:auto;
	width:50%;
	min-width: 500px;
	height:310px;
	background:#fff;
	padding:0 30px;
	border-radius: 10px;
}
.send-q .send .title{
	height:70px;
	line-height: 70px;
	font-size: 14px;
	font-family: Microsoft YaHei;
	font-weight: 400;
	color: #000000;
}
.send-q .send .title span{
	color:#5081FF;
}
.send-q .send .close{
	position:absolute;
	top:0;
	right:0;
	width:40px;
	height:40px;
	padding:8px;
}
.send-q .send textarea{
	width:100%;
	height: 110px;
	background: #F1F1F1;
	border: 1px solid #D3D3D3;
	border-radius: 10px;
	font-size: 14px;
	font-family: Microsoft YaHei;
	font-weight: 400;
	color: #333;
	padding:10px;
}
.send-q .send button{
	width: 123px;
	height: 47px;
	background: #0EA8EF;
	border-radius: 10px;
	font-size: 16px;
	font-family: Microsoft YaHei;
	font-weight: 400;
	color: #FFFFFF;
	margin-top:20px;
}
/* 灏鹃儴 */
.footer{
	min-width: 1200px;
	height: 300px;
	background: #343434;
	padding:50px 0;
	position:relative;
}
.footer .footer-left{
	float:left;
	width:78%;
}
.footer .footer-left .logo{
	width:315px;
}
.footer .footer-left .foot-vcon{
	width:60%;
	margin-left:6.7%;
}
.footer .footer-left .foot-tit{
	line-height:30px;
	font-size: 14px;
	font-family: Microsoft YaHei;
	font-weight: bold;
	color: #FFFFFF;
}
.footer .footer-left .foot-lis{
	float:left;
	text-align: center;
	width:33.33%;
}
.footer .footer-left .foot-con .lis a{
	line-height:30px;
	font-size: 14px;
	font-family: Microsoft YaHei;
	font-weight: 400;
	color: #C6C6C6;
}
.footer .foot-b{
	position:absolute;
	bottom:38px;
	left:0;
	width:100%;
	font-size: 14px;
	font-family: Microsoft YaHei;
	font-weight: 400;
	color: #959393;
	text-align:center;
}
.footer .foot-b a{
	color: #959393;
}
.footer .footer-right{
	float:right;
}
.footer .footer-right img{
	width: 130px;
	height: 130px;
	display:block;
}
.footer .footer-right p{
	font-size: 14px;
	font-family: Microsoft YaHei;
	font-weight: 400;
	color: #E2D8D8;
	padding-top:5px;
	text-align: center;
}
.footer .footer-right .icon{
	display: inline-block;
	width:30px;
	height:30px;
	position: relative;
	top:10px
}
.footer .footer-right  .qq-lis{
	display: block;
	font-size: 14px;
	font-family: Microsoft YaHei;
	font-weight: 400;
	color: #E2D8D8;
	line-height: 45px;
	text-align: left;
	margin-right:60px;
	margin-bottom:20px;
}
/* 鍙充晶鑿滃崟 */
.left-contact{
	position: fixed;
	top:0;
	right:0;
	bottom:0;
	margin:auto 0;
	width: 63px;
	max-height: 250px;
	background: #FFFFFF;
	border: 1px solid #EDEAEA;
	box-shadow: -3px 0px 27px 0px rgba(91, 94, 96, 0.13);
	border-radius: 5px;
	z-index: 6;
}
.left-contact .contact-lis{
	width:100%;
	text-align: center;
	padding:10px 7px;
	position: relative;
}
.left-contact .contact-lis.to-service {
	cursor: pointer;
	position: relative;
}
.left-contact .contact-lis.to-service:hover .qrcode-wrapper,
.left-contact .contact-lis.qq-contact:hover .qrcode-wrapper {
	display: block;
}
.left-contact .contact-lis.to-service .qrcode-wrapper,
.left-contact .contact-lis.qq-contact .qrcode-wrapper {
	display: none;
	position: absolute;
	top: -100px;
	right: 88px;
	padding: 20px;
	border-radius: 10px;
	background:linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
}
.left-contact .contact-lis.to-service .qrcode-wrapper img,
.left-contact .contact-lis.qq-contact .qrcode-wrapper img {
	width: 200px;
	filter: none;
}

.left-contact .contact-lis::after{
	position: absolute;
	bottom:0;
	left:0;
	right:0;
	margin:0 auto;
	content:'';
	width:70px;
	height:1px;
	background:#DFDFDF;
}
.left-contact .contact-lis:last-child::after{
	display: none;
}
.left-contact .contact-lis .icon{
	width:20px;
	height:20px;
}
.left-contact .contact-lis .tit{
	font-size: 11px;
	font-family: Microsoft YaHei;
	font-weight: 400;
	color: #1d4ed8;
}
.left-contact .contact-lis .qq{
	position: absolute;
	top:0;
	right:90px;
	height:100%;
	line-height: 87px;
	min-width: 200px;
	padding:0 13px;
	font-size: 14px;
	font-family: Microsoft YaHei;
	font-weight: 400;
	color: #3E3E3E;
	background:#fff;
	border-radius: 5px;
	border: 1px solid #EDEAEA;
}
.left-contact .contact-lis:hover .qq{
	display: block;
}
/* 鐧诲綍涓庢敞鍐屽脊绐?*/
.register-q{
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	background: rgba(0,0,0,.5);
	z-index: 10010;
	display: flex;
	align-items: flex-start; /* 寮圭獥璐磋繎椤甸潰涓婃柟鏄剧ず */
	justify-content: center;
	padding: 120px 20px 20px; /* 鐣欏嚭澶撮儴楂樺害 */
	box-sizing: border-box;
	overflow-y: auto;
}

/* 纭繚hidden绫昏兘闅愯棌寮规 */
.register-q.hidden{
	display: none !important;
}

/* 鍏ㄥ眬闅愯棌绫伙紝淇寮圭獥瀛愬厓绱犲彲瑙佺殑闂 */
.hidden{display:none !important;}

body.login-modal-open .quality-engineer-badge,
body.login-modal-open .quality-engineer-badge .qe-tooltip {
	z-index: 1 !important;
}

body.login-modal-open .quality-engineer-badge .qe-tooltip {
	opacity: 0 !important;
	visibility: hidden !important;
	pointer-events: none !important;
}

body.login-modal-open .home-banner .banner-v,
body.login-modal-open .home-banner .banner-v-inner,
body.login-modal-open .home-banner .swiper-container.banner-con {
	z-index: 1 !important;
}

body.login-modal-open .home-banner .mech-corner,
body.login-modal-open .home-banner .mech-bar,
body.login-modal-open .home-banner .mech-scan {
	opacity: 0 !important;
	visibility: hidden !important;
}

body.login-modal-open .home-banner .banner-v {
	box-shadow: none !important;
	animation: none !important;
}

/* 鍏煎鏃у啓娉曪紙淇濈暀锛?*/


.register-q .register{
	width: 905px;
	max-width: 95%;
	height: auto;
	min-height: 600px;
	max-height: 90vh;
	background: #FFFFFF;
	box-shadow: 0px 12px 27px 0px #5B5E60;
	border-radius: 20px;
	position: relative;
	overflow: visible;
	display: flex;
	flex-wrap: nowrap;
	align-items: stretch;
	margin: auto;
}
.register-q .register .register-l{
	width:410px;
	height: 100%;
	min-height: 600px;
	flex-shrink: 0;
}
.register-q .register .register-l .swiper-container{
	width:100%;
	height:100%;
	min-height: 600px;
	overflow:hidden;
}
.register-q .register .register-l .swiper-slide{
	background-position:center center;
	background-size:cover;
	background-repeat:no-repeat;
}
.register-q .register .register-l .swiper-pagination{
	text-align: left;
	padding:0 10px;
}
.register-q .register .register-l .swiper-pagination-bullet{
	background: #EAEAEA;
	opacity: 1;
}
.register-q .register .register-l .swiper-pagination-bullet-active{
	background: #929292;
}
.register-q .register .register-r{
	width:495px;
	padding:30px 40px 30px 53px;
	position: relative;
	overflow-y: visible;
	max-height: none;
	display: flex;
	flex-direction: column;
	flex-shrink: 0;
}
.register-q .register .register-r .tit{
	font-size: 20px;
	font-family: Microsoft YaHei;
	font-weight: 400;
	color: #333333;
	text-align: center;
	padding:0 0 25px 0;
	margin: 0;
}
.register-q .register .register-r .ewm{
	width:64px;
	height:64px;
	position: absolute;
	top:12px;
	right:12px;
	background:url(../icon/ewm.png) no-repeat center;
	background-size:100%;
	filter: brightness(0);
	opacity: 0.7;
}
.register-q .register .register-r .ewm.on{
	background:url(../icon/ewm1.png) no-repeat center;
	background-size:100%;
	filter: brightness(0);
	opacity: 0.7;
}
.register-q .register .register-r .register-lis{
	width:100%;
	height:50px;
	margin-bottom:18px;
	position: relative;
}
.register-q .register .register-lis.code{
	padding-right:150px;
}
.register-q .register .register-lis.code .identif{
	position: absolute;
	top:0;
	right:0;
	width: 120px;
	height: 50px;
	background: #E0F2FD;
	border-radius: 10px;
	text-align: center;
	line-height: 50px;
	font-size: 13px;
	font-family: Microsoft YaHei;
	font-weight: 400;
	color: #2CAEFF;
	cursor: pointer;
}
.register-q .register .register-r .inp{
	width:100%;
	height:100%;
	border: 1px solid #EBEBEB;
	border-radius: 10px;
	font-size: 14px;
	font-family: Microsoft YaHei;
	font-weight: 400;
	color: #333;
	padding:0 20px 0 75px;
}
.register-q .register .register-r .inp.on{
	border: 1px solid #2CAEFF;
	box-shadow: 0px 7px 27px 0px rgba(44, 174, 255, 0.2);
}
.register-q .register .register-lis.phone .inp{
	background:url(../icon/phone.png) no-repeat center left 18px;
	background-size:19px;
}
.register-q .register .register-lis.code .inp{
	background:url(../icon/code.png) no-repeat center left 17px;
	background-size:21px;
}
.register-q .register .register-lis.pass .inp{
	background:url(../icon/pass.png) no-repeat center left 14px;
	background-size:18px;
}
.register-q .register .register-lis.compass .inp{
	background:url(../icon/pass.png) no-repeat center left 14px;
	background-size:18px;
}
.register-q .register .agree{
	font-size: 13px;
	font-family: Microsoft YaHei;
	font-weight: 400;
	color: #333333;
	padding-left:30px;
	position: relative;
	cursor: pointer;
	margin: 15px 0;
	line-height: 22px;
}
.register-q .register .agree::after{
	content:'';
	position:absolute;
	top:0;
	left:0;
	bottom:0;
	margin:auto 0;
	width: 20px;
	height: 20px;
	background: #F6F6F6;
	border: 1px solid #ECECEC;
	border-radius: 2px;
	z-index: 1;
}
.register-q .register .agree.on::after{
	background:none;
	border: 1px solid var(--color-primary);
}
.register-q .register .agree.on::before{
	content:'';
	position:absolute;
	top:0;
	left:9px;
	bottom:0;
	margin:auto 0;
	width: 5px;
	height: 10px;
	border: 1px solid var(--color-primary);
	border-width: 0 1px 1px 0;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
	z-index: 2;
}
.register-q .register .agree a{
	color:#2CAEFF;
	color:var(--color-primary);
}
/* 璁颁綇瀵嗙爜瀹瑰櫒 */
.register-q .register .forget{
	margin: 15px 0;
	line-height: 22px;
}
/* 璁颁綇瀵嗙爜 */
.register-q .register .forget-l{
	font-size: 14px;
	font-family: Microsoft YaHei;
	font-weight: 400;
	color: #333333;
	padding-left:30px;
	position: relative;
	cursor: pointer;
}
.register-q .register .forget-l::after{
	content:'';
	position:absolute;
	top:0;
	left:0;
	bottom:0;
	margin:auto 0;
	width: 20px;
	height: 20px;
	border: 1px solid #2CAEFF;
	border: 1px solid var(--color-primary);
	border-radius: 2px;
	z-index: 1;
}
.register-q .register .forget-l.on::before{
	content:'';
	position:absolute;
	top:0;
	left:9px;
	bottom:0;
	margin:auto 0;
	width: 5px;
	height: 10px;
	border: 1px solid #2CAEFF;
	border: 1px solid var(--color-primary);
	border-width: 0 1px 1px 0;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
	z-index: 2;
}
.register-q .register .forget-r{
	font-size: 14px;
	font-family: Microsoft YaHei;
	font-weight: 400;
	color: #ADADAD;
}
.register-q .register .btn{
	width: 100%;
	height: 50px;
	background: #2CAEFF;
	background: var(--color-primary);
	border-radius: 10px;
	font-size: 16px;
	font-family: Microsoft YaHei;
	font-weight: 400;
	color: #FFFFFF;
	margin:20px 0 15px 0;
	border: none;
	cursor: pointer;
	transition: all 0.3s ease;
}
.register-q .register .btn:hover{
	background: #1E9EEF;
	background: #0033e8;
	box-shadow: 0px 4px 15px rgba(44, 174, 255, 0.3);
}
.register-q .register .goto{
	font-size: 13px;
	font-family: Microsoft YaHei;
	font-weight: 400;
	color: #333333;
	text-align: center;
	margin: 15px 0;
	line-height: 22px;
}
.register-q .register .goto span{
	color:#2CAEFF;
	color:var(--color-primary);
	cursor: pointer;
}
.register-q .register .goto span:hover{
	text-decoration: underline;
}
/* 鐧诲綍鑰佽处鍙烽摼鎺ユ牱寮?*/
.register-q .register .old-account-link{
	text-align: center;
	margin: 15px 0 0 0;
	padding-top: 15px;
	border-top: 1px solid #F0F0F0;
}
.register-q .register .old-account-link a{
	color: #FF4444;
	font-weight: 700;
	font-size: 14px;
	font-family: Microsoft YaHei;
	text-decoration: none;
	transition: all 0.3s ease;
}
.register-q .register .old-account-link a:hover{
	color: #FF0000;
	text-decoration: underline;
}
.register-q .register .wechat .tit{
	font-size: 20px;
	font-family: Microsoft YaHei;
	font-weight: 400;
	color: #202020;
}
.register-q .register .wechat img{
	display: inline-block;
	width:49px;
	position: relative;
	top:10px;
	margin-right:15px;
}
.register-q .register .wechat .wechat-img{
	display: block;
	width: 337px;
	height: 337px;
	background: #FFFFFF;
	border: 1px solid #F0F0F0;
	padding:20px;
	box-shadow: 0px 1px 21px 0px rgba(152, 150, 150, 0.38);
	margin:0 auto;
}
/* 蹇樿瀵嗙爜 */
.forget-v{
	height: 550px;
	background: #FFFFFF;
	box-shadow: 0px 2px 35px 0px rgba(204, 209, 228, 0.84);
	border-radius: 20px;
	margin:24px auto;
	padding:30px 24px;
}
.forget-v .forget-tit{
	font-size: 16px;
	font-family: Microsoft YaHei;
	font-weight: bold;
	color: #000000;
}
.forget-v .forget-con{
	padding:50px 0 0;
	text-align: center;
	width:524px;
	margin:0 auto;
}
.forget-v .forget-con .forget-lis{
	margin-bottom:20px;
	position:relative;
}
.forget-v .forget-con .forget-lis label{
	display: inline-block;
	width:120px;
	font-size: 14px;
	font-family: Microsoft YaHei;
	font-weight: 400;
	color: #000000;
	text-align: right;
}
.forget-v .forget-con .forget-lis input{
	width: 400px;
	height: 58px;
	background: #FFFFFF;
	border: 1px solid #D0D0D0;
	border-radius: 10px;
	font-size: 14px;
	font-family: Microsoft YaHei;
	font-weight: 400;
	color: #333;
	padding:0 20px;
}
.forget-v .forget-con .forget-lis.code{
	padding-right:160px;
}
.forget-v .forget-con .forget-lis.code input{
	width:240px;
}
.forget-v .forget-con .forget-lis.code .identif{
	position: absolute;
	top:0;
	right:0;
	width: 140px;
	height: 58px;
	border-radius: 10px;
	border: 1px solid #1d4ed8;
	text-align: center;
	line-height: 58px;
	font-size: 14px;
	font-family: Microsoft YaHei;
	font-weight: 400;
	color: #2CAEFF;
	cursor: pointer;
}
.forget-v .forget-con .forget-lis .submit{
	background: #1d4ed8;
	color:#fff;
}
/* 3D 杞崲 */
.change{
	min-width:1480px;
	min-height: 600px;
	background-image:url(../icon/3D.jpg);
	background-size: 100% cover;
	background-repeat: no-repeat;
	background-position: top 0 center;
}
.change .change-tit{
	line-height: 140px;
	text-align: center;
	font-size: 39px;
	font-family: Microsoft YaHei;
	font-weight: 400;
	color: #FFFFFF;
	letter-spacing: 8px;
}
.change .change-upload{
	width: 1200px;
	height: 495px;
	background: #FFFFFF;
	border: 1px dashed #E3E2E2;
	box-shadow: 0px 3px 22px 5px rgba(186,186,186,0.21);
	border-radius: 10px;
	margin:0 auto;
	text-align: center;
	overflow: hidden;
}
.change .change-upload .first{
	padding:100px 230px;
}
.change .change-upload .second{
	padding:100px 230px;
}
.change .change-upload .progress-v{
	position: relative;
	width:100%;
	height:20px;
	border-radius: 12px;
	background:#EEEEEE;
	margin:60px 0 0;
}
.change .change-upload .progress-v .load_num{
	position: absolute;
	top:-20px;
	right:0;
	font-size: 12px;
	font-family: Microsoft YaHei;
	font-weight: 400;
	color: #8D8D8D;
}
.change .change-upload .progress-v .box{
	position: absolute;
	background: #1d4ed8;
	border-radius: 12px;
	width:20%;
	height:100%;
}
.change .change-upload .icon{
	display: block;
	width:74px;
	margin:20px auto;
}
.change .change-upload .btn{
	width: 155px;
	height: 55px;
	line-height: 55px;
	text-align: center;
	background-color: #96D002;
	border-radius: 10px;
	font-size: 16px;
	font-family: Microsoft YaHei;
	font-weight: 400;
	color: #FFFFFF;
	margin:0 auto;
}
.change .change-upload .btn.on{
	background-color: #EAEAEA;
	color:#A0A0A0;
	margin-top:45px;
}
.change .change-upload p{
	padding:20px 0;
	font-size: 14px;
	font-family: Microsoft YaHei;
	font-weight: 400;
	color: #999999;
	text-align: center;
}
.change .change-upload .tit{
	font-size: 16px;
	font-family: Microsoft YaHei;
	font-weight: 400;
	color: #474747;
	text-align: center;
}
.change .change-upload .three{
	padding:150px 0 0;
	text-align: center;
}
.change .change-upload .three .name{
	font-size: 16px;
	font-family: Microsoft YaHei;
	font-weight: 400;
	color: #000000;
}
.change .change-upload .three .des{
	font-size: 16px;
	font-family: Microsoft YaHei;
	font-weight: 400;
	color: #999999;
	padding:10px 0;
}
.change .change-upload .three  .img{
	width: 129px;
}
.change .change-upload .three .tit{
	font-size: 16px;
	font-family: Microsoft YaHei;
	font-weight: 400;
	color: #474747;
	padding-top:10px;
}
.change .change-upload .four{
	padding:120px 0;
}
.change .change-upload .four .name{
	font-size: 16px;
	font-family: Microsoft YaHei;
	font-weight: 400;
	color: #000000;
}
.change .change-upload .img{
	width:86px;
	height:86px;
	margin-top:15px;
}
.change .change-upload .four .tit{
	font-size: 18px;
	font-family: Microsoft YaHei;
	font-weight: bold;
	color: #1d4ed8;
	padding:10px 0;
}
.change .change-upload .four .des{
	font-size: 14px;
	font-family: Microsoft YaHei;
	font-weight: 400;
	color: #989898;
}
.change .change-upload .five{
	padding:100px 0;
}
.change .change-upload .five .img{
	width:68px;
	height:68px;
}
.change .change-upload .five .tit{
	font-size: 18px;
	font-family: Microsoft YaHei;
	font-weight: bold;
	color: #1d4ed8;
	margin-top:10px;
}
.change .change-upload .five .des{
	font-size: 14px;
	font-family: Microsoft YaHei;
	font-weight: 400;
	color: #989898;
	padding:10px 0;
}
.change .change-upload .five .btn{
	background-image:url(../icon/change-down.png);
	background-repeat: no-repeat;
	background-position: center left 20px ;
	background-size:27px;
	padding-left:40px;
}

.change .change-upload .eight{
	padding:100px 0;
}
.change .change-upload .eight .img{
	width:68px;
	height:68px;
}
.change .change-upload .eight .tit{
	font-size: 18px;
	font-family: Microsoft YaHei;
	font-weight: bold;
	color: #1d4ed8;
	margin-top:10px;
}
.change .change-upload .eight .des{
	font-size: 14px;
	font-family: Microsoft YaHei;
	font-weight: 400;
	color: #989898;
	padding:10px 0;
}
.change .change-upload .eight .btn{
	background-repeat: no-repeat;
	background-position: center left 20px ;
	background-size:27px;
}
.change .change-upload .fix{
	padding:150px 0 0;
}
.change .change-upload .fix .des{
	font-size: 18px;
	font-family: Microsoft YaHei;
	font-weight: 400;
	color: #444444;
	padding-top:30px;
}
.change .change-upload .fix .des span{
	color:#1d4ed8;
}
.change .change-upload .seven{
	position: relative;
	height:100%;
	padding:78px 0;
}
.change .change-upload .seven .tit{
	font-size: 16px;
	font-family: Microsoft YaHei;
	font-weight: 400;
	color: #000000;
	position: absolute;
	top:0;
	left:0;
	width:100%;
	height:78px;
	line-height: 78px;
	border-bottom:1px solid #EBEBEB;
}
.change .change-upload .seven-con{
	height:100%;
	overflow-y: auto;
}
.change .change-upload .seven .but{
	position: absolute;
	bottom:0;
	left:0;
	width:100%;
	height:78px;
	padding:8px 15px;
	background:#DEDEDE;
}
.change .change-upload .seven .but-l{
	font-size: 18px;
	font-family: Microsoft YaHei;
	font-weight: bold;
	color: #000000;
	line-height: 62px;
}
.change .change-upload .seven .but-l span{
	color:#1d4ed8;
}
.change .change-upload .seven .select-c{
	display: inline-block;
	width: 191px;
	height: 62px;
	background-color: #FFFFFF;
	border: 0;
	border-radius: 5px;
	padding:0 10px;
	background-image: url(../icon/change-d.png);
	background-position: center right 10px;
	background-repeat: no-repeat;
	background-size: 15px;
	margin-right:15px;
}
.change .change-upload .seven .option{
	width:100%;
	height:50px;
	line-height: 50px;
}
.change .change-upload .seven .btn{
	display: inline-block;
	height:62px;
	line-height: 62px;
	border-radius: 5px;
}
.change .progress{
	padding:80px 140px 95px;
}
.change .progress .li{
	float:left;
	width:25%;
	text-align: center;
	position: relative;
}
.change .progress .li::after{
	content:'';
	width:100%;
	height:1px;
	background:#E3E2E2;
	position: absolute;
	top:25px;
	left:50%;
}
.change .progress .li.on::after{
	background:#1d4ed8;
}
.change .progress .li:last-child::after{
	display: none;
}
.change .progress .img{
	position: relative;
	width: 55px;
	height: 55px;
	border: 1px solid #E3E2E2;
	border-radius: 10px;
	margin:0 auto 30px;
	background-position: center;
	background-repeat: no-repeat;
	background-size:37px;
	background-color:#fff;
	z-index: 1;
}
.change .progress .li.on .img{
	border-color:#1d4ed8;
}
.change .progress .li:nth-child(1) .img{
	background-image:url(../icon/change-p1.png);
}
.change .progress .li:nth-child(2) .img{
	background-image:url(../icon/change-p2.png);
}
.change .progress .li:nth-child(3) .img{
	background-image:url(../icon/change-p4.png);
}
.change .progress .li:nth-child(4) .img{
	background-image:url(../icon/change-p6.png);
}
.change .progress .li.on:nth-child(2) .img{
	background-image:url(../icon/change-p3.png);
}
.change .progress .li.on:nth-child(3) .img{
	background-image:url(../icon/change-p5.png);
}
.change .progress .li.on:nth-child(4) .img{
	background-image:url(../icon/change-p7.png);
}
.change .progress .tit{
	font-size: 16px;
	font-family: Microsoft YaHei;
	font-weight: 400;
	color: #000000;
}
.change .flow{
	background:#F7F7F7;
}
.change .flow-top{
	padding:50px 0;
}
.change .flow-tit{
	font-size: 25px;
	font-family: Microsoft YaHei;
	font-weight: 400;
	color: #000000;
	text-align: center;
}
.change .flow-des{
	font-size: 15px;
	font-family: Microsoft YaHei;
	font-weight: 400;
	color: #5B5B5B;
	text-align: center;
	padding-top:10px;
}
.change .flow-con{
	padding:100px 0 85px;
}
.change .flow-con .li{
	float:left;
	width: 450px;
	height: 319px;
	background-color: #FFFFFF;
	box-shadow: 0px 3px 22px 5px rgba(129,129,129,0.1700);
	border-radius: 5px;
	position: relative;
	background-position: center;
	background-repeat: no-repeat;
	padding-top:130px;
	margin-right:65px;
}
.change .flow-con .tit{
	text-align: center;
	font-size: 14px;
	font-family: Microsoft YaHei;
	font-weight: 400;
	color: #010101;
	line-height: 30px;
}
.change .flow-con .li:nth-child(1){
	background-image:url(../icon/change-li4.png);
	background-size:100px;
}
.change .flow-con .li:nth-child(2){
	background-image:url(../icon/change-li5.png);
	background-size:135px;
}
.change .flow-con .li:nth-child(3){
	background-image:url(../icon/change-li6.png);
	background-size:113px;
	margin-right:0;
}
.change .flow-con .img{
	width:162px;
	height:162px;
	border-radius: 50%;
	position: absolute;
	left:0;
	right:0;
	top:-80px;
	margin:0 auto;
}
.change .flow-con .tit{
	font-size: 14px;
	font-family: Microsoft YaHei;
	font-weight: 400;
	color: #000000;
}
.change .change-foot{
	display: block;
	width:100%;
}
@media (max-width: 1480px){
	#header header{
		width:1200px;
	}
	/* #header .search{
		width:240px;
	} */
	.maxwidth{width: 1200px;}
	.footer{min-width:1200px;}
	.footer .footer-left{width:73%;}
	.footer .footer-left .foot-vcon{margin-left:2.5%;}
	.dtl .dtl-top .dtl-right .top .down{width:180px;}
	.dtl .dtl-top .dtl-right .join .join-lis{width:70px}
	.about .about-con .left{width:200px;}
	.about .about-con .right{width:980px;}
	/* .content .menu .menu-nav{width:90%;} */
	.engineer .content .lis-v{width:590px;height:auto;}
	.engineer .content .lis-v .join .join-lis{width:90px;}
	.engineer .content .lis-v .lis-con .con-lis{width:170px;height:auto;}
	.engineer .content .lis-v .lis-con .con-lis img{height:125px;}
	.personal .personal-con .left{width:260px;}
	.personal .personal-con .right{width:920px;}
	.right.info .info-con .open{width:700px}
	.personal .personal-con .right.recharge .con{padding-left:50px;}
	.personal .personal-con .right.recharge .lis:nth-child(3n){margin-right:0}
	.personal .personal-con .right.recharge .lis:nth-child(4n){margin-right:50px}
	.change .change-upload{width:1000px}
	.change .flow-con .li{width:380px;margin-right:30px;}
	.index-menu .menu-lis:nth-child(1) .lis-v:nth-child(3n){
		margin-right:30px;
	}
	.index-menu .menu-lis:nth-child(2) .lis-v:nth-child(3n+1){
		margin-right:30px;
	}

	/* 鍝嶅簲寮忓竷灞€璋冩暣 */
	.content .main-container{
		flex-direction: column;
	}
	.content .menu{
		width: 100%;
		margin-bottom: 20px;
	}
	.content .con{
		width: 100%;
	}

	/* 璇︽儏椤靛搷搴斿紡甯冨眬 */
	.dtl .dtl-top{
		flex-direction: column;
		gap: 20px;
	}
	.dtl .dtl-top .dtl-left{
		width: 100%;
		padding: 20px;
	}
	.dtl .dtl-top .dtl-right{
		width: 100%;
		position: static;
	}
	.dtl .dtl-top .dtl-left .title{
		font-size: 24px;
	}
	.dtl .dtl-top .dtl-left .bot{
		flex-direction: column;
		align-items: flex-start;
		gap: 8px;
	}
	.dtl .dtl-top .dtl-left .nav-lis{
		margin: 0 8px 10px 0;
		padding: 10px 16px;
		font-size: 14px;
	}
	.dtl .dtl-top .swiper{
		padding: 15px 40px;
	}
	.dtl .dtl-top .swiper .img-lis{
		width: 30%;
		height: 70px;
	}
}

/* 宸ョ▼甯堟敼杩涚増鏍峰紡 */
.engineer .filter-section{
	background: #FFFFFF;
	box-shadow: 0px 2px 35px 0px rgba(204, 209, 228, 0.84);
	border-radius: 20px;
	padding: 25px;
	margin: 20px 0;
}
.engineer .filter-group{
	display: flex;
	align-items: center;
	margin-bottom: 20px;
	flex-wrap: wrap;
	gap: 10px;
}
.engineer .filter-group:last-child{
	margin-bottom: 0;
}
.engineer .filter-label{
	font-size: 15px;
	font-family: Microsoft YaHei;
	font-weight: 500;
	color: #161616;
	min-width: 80px;
	flex-shrink: 0;
}
.engineer .filter-options{
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	align-items: center;
}
.engineer .filter-option{
	padding: 8px 16px;
	font-size: 14px;
	font-family: Microsoft YaHei;
	font-weight: 400;
	color: #666666;
	background: #F8F9FA;
	border-radius: 20px;
	cursor: pointer;
	transition: all 0.3s ease;
	border: 1px solid #E8E8E8;
}
.engineer .filter-option:hover{
	background: #F0F7FF;
	background: #e0ecfd;
	color: #1d4ed8;
	color: var(--color-primary);
	border-color: #1d4ed8;
	border-color: var(--color-primary);
}
.engineer .filter-option.active{
	background: #1d4ed8;
	background: var(--color-primary);
	color: #FFFFFF;
	border-color: #1d4ed8;
	border-color: var(--color-primary);
}

.engineer .sort-section{
	background: #FFFFFF;
	box-shadow: 0px 2px 35px 0px rgba(204, 209, 228, 0.84);
	border-radius: 20px;
	padding: 20px 25px;
	margin-bottom: 20px;
	display: flex;
	align-items: center;
	gap: 20px;
}
.engineer .sort-label{
	font-size: 15px;
	font-family: Microsoft YaHei;
	font-weight: 500;
	color: #161616;
	min-width: 60px;
}
.engineer .sort-options{
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}
.engineer .sort-option{
	padding: 6px 14px;
	font-size: 14px;
	font-family: Microsoft YaHei;
	font-weight: 400;
	color: #666666;
	background: #F8F9FA;
	border-radius: 18px;
	cursor: pointer;
	transition: all 0.3s ease;
}
.engineer .sort-option:hover{
	background: #F0F7FF;
	color: #1d4ed8;
	color: var(--color-primary);
}
.engineer .sort-option.active{
	background: #1d4ed8;
	background: var(--color-primary);
	color: #FFFFFF;
}

.engineer .engineer-list{
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
	gap: 25px;
	margin: 20px 0;
}
.engineer .engineer-card{
	background: #FFFFFF;
	box-shadow: 0px 2px 35px 0px rgba(204, 209, 228, 0.84);
	border-radius: 20px;
	padding: 25px;
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
}
.engineer .engineer-card:hover{
	transform: translateY(-5px);
	box-shadow: 0px 8px 40px 0px rgba(204, 209, 228, 0.6);
}
.engineer .engineer-header{
	margin-bottom: 20px;
}
.engineer .engineer-info{
	display: flex;
	align-items: flex-start;
	gap: 15px;
	cursor: pointer;
	transition: all 0.3s ease;
}
.engineer .engineer-info:hover{
	opacity: 0.8;
}
.engineer .avatar-container{
	flex-shrink: 0;
}
.engineer .avatar{
	width: 70px;
	height: 70px;
	border-radius: 50%;
	object-fit: cover;
	border: 2px solid #F0F0F0;
}
.engineer .info-main{
	flex: 1;
}
.engineer .name{
	font-size: 18px;
	font-family: Microsoft YaHei;
	font-weight: 600;
	color: #161616;
	margin-bottom: 8px;
}
.engineer .stats{
	display: flex;
	gap: 15px;
	margin-bottom: 5px;
}
.engineer .stat-item{
	font-size: 13px;
	font-family: Microsoft YaHei;
	font-weight: 400;
	color: #666666;
}
.engineer .stat-item span{
	color: #1d4ed8;
	font-weight: 500;
}
.engineer .join-time{
	font-size: 12px;
	font-family: Microsoft YaHei;
	font-weight: 400;
	color: #999999;
}

.engineer .action-buttons{
	display: flex;
	gap: 10px;
	justify-content: flex-end;
	margin-bottom: 20px;
}
.engineer .action-btn{
	padding: 6px 12px;
	font-size: 13px;
	font-family: Microsoft YaHei;
	font-weight: 500;
	border-radius: 15px;
	cursor: pointer;
	transition: all 0.3s ease;
	border: 1px solid #E8E8E8;
	background: #FFFFFF;
	color: #666666;
}
.engineer .action-btn:hover{
	background: #F8F9FA;
}
.engineer .action-btn.follow{
	color: #1d4ed8;
	border-color: #1d4ed8;
}
.engineer .action-btn.follow.on{
	background: #1d4ed8;
	color: #FFFFFF;
}
.engineer .action-btn.message{
	color: #FF8B03;
	border-color: #FF8B03;
}

.engineer .works-section{
	border-top: 1px solid #F0F0F0;
	padding-top: 15px;
}
.engineer .works-title{
	font-size: 14px;
	font-family: Microsoft YaHei;
	font-weight: 500;
	color: #666666;
	margin-bottom: 12px;
}
.engineer .works-grid{
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 10px;
}
.engineer .work-item{
	cursor: pointer;
	border-radius: 8px;
	overflow: hidden;
	transition: all 0.3s ease;
}
.engineer .work-item:hover{
	transform: scale(1.05);
}
.engineer .work-item img{
	width: 100%;
	height: 80px;
	object-fit: cover;
}
.engineer .work-item.no-works{
	height: 80px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #F8F9FA;
	color: #999999;
	font-size: 12px;
}

.engineer .load-more{
	text-align: center;
	padding: 30px 0;
}
.engineer .more{
	font-size: 14px;
	font-family: Microsoft YaHei;
	font-weight: 400;
	color: #999999;
}

/* 宸ョ▼甯堥〉闈㈠搷搴斿紡璁捐 */
@media (max-width: 768px) {
	.engineer .filter-section {
		padding: 20px 15px;
		margin: 15px 0;
	}

	.engineer .filter-group {
		flex-direction: column;
		align-items: flex-start;
		gap: 8px;
	}

	.engineer .filter-label {
		min-width: auto;
		margin-bottom: 5px;
	}

	.engineer .filter-options {
		width: 100%;
	}

	.engineer .filter-option {
		padding: 6px 12px;
		font-size: 13px;
	}

	/* 绛夌骇绛涢€夌Щ鍔ㄧ浼樺寲 */
	.engineer .filter-option.level_tab {
		flex-direction: column;
		align-items: flex-start;
		gap: 4px;
		padding: 8px 12px;
	}

	.engineer .filter-option.level_tab .level-text {
		font-size: 12px;
		line-height: 1.3;
	}

	.engineer .engineer-level-badge {
		position: static;
		margin-bottom: 10px;
		align-self: flex-start;
	}

	.engineer .engineer-level-badge .level-text {
		font-size: 10px;
	}

	.engineer .sort-section {
		padding: 15px 20px;
		flex-direction: column;
		align-items: flex-start;
		gap: 15px;
	}

	.engineer .sort-options {
		width: 100%;
		justify-content: flex-start;
	}

	.engineer .sort-option {
		padding: 5px 12px;
		font-size: 13px;
	}

	.engineer .engineer-list {
		grid-template-columns: 1fr;
		gap: 20px;
		margin: 15px 0;
	}

	.engineer .engineer-card {
		padding: 20px;
	}

	.engineer .engineer-info {
		flex-direction: column;
		text-align: center;
	}

	.engineer .avatar-container {
		margin: 0 auto 10px;
	}

	.engineer .avatar {
		width: 60px;
		height: 60px;
	}

	.engineer .name {
		font-size: 16px;
	}

	.engineer .stats {
		justify-content: center;
		gap: 20px;
	}

	.engineer .action-buttons {
		justify-content: center;
		margin-bottom: 15px;
	}

	.engineer .works-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 8px;
	}

	.engineer .work-item img {
		height: 70px;
	}
}

@media (max-width: 480px) {
	.engineer .filter-option {
		padding: 5px 10px;
		font-size: 12px;
	}

	.engineer .sort-option {
		padding: 4px 10px;
		font-size: 12px;
	}

	.engineer .engineer-card {
		padding: 15px;
	}

	.engineer .avatar {
		width: 50px;
		height: 50px;
	}

	.engineer .name {
		font-size: 15px;
	}

	.engineer .stats {
		gap: 15px;
	}

	.engineer .stat-item {
		font-size: 12px;
	}

	.engineer .action-btn {
		padding: 5px 10px;
		font-size: 12px;
	}

	.engineer .works-grid {
		grid-template-columns: 1fr;
	}

	.engineer .work-item img {
		height: 60px;
	}
}

/* 浼橀€夊窘绔犳牱寮?- 绉戞妧鎰熻璁?*/
.handpicked-badge {
    display: inline-flex;
    align-items: center;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    margin: 5px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    box-shadow: 0 2px 8px rgba(102, 126, 234, 0.3);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.handpicked-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.handpicked-badge:hover::before {
    left: 100%;
}

.handpicked-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
}

/* 绉戞妧鎰熸笎鍙樿壊鏂规 */
.detail-level-badge {
	cursor: pointer;
}

.level-0 {
    background: linear-gradient(135deg, #a8b8d8 0%, #8b9dc3 100%);
    box-shadow: 0 2px 8px rgba(168, 184, 216, 0.3);
		background: linear-gradient(135deg, #d1d5db, #e5e7eb);
		box-shadow: 0 0 8px rgba(209, 213, 219, 0.6);
    color: white;
}

.level-1 {
    background: linear-gradient(135deg, #ffd89b 0%, #19547b 100%);
    box-shadow: 0 2px 8px rgba(255, 216, 155, 0.4);
		background: linear-gradient(135deg, #6b7280, #9ca3af);
		box-shadow: 0 0 8px rgba(107, 114, 128, 0.6);
    color: white;
}

.level-2 {
    background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
    box-shadow: 0 2px 8px rgba(168, 237, 234, 0.4);
		background: linear-gradient(135deg, #10b981, #34d399);
		box-shadow: 0 0 8px rgba(16, 185, 129, 0.6);
    color: #333;
}

.level-3 {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    box-shadow: 0 2px 8px rgba(240, 147, 251, 0.4);
		background: linear-gradient(135deg, #2d74d9, #4facfe);
		box-shadow: 0 0 8px rgba(45, 116, 217, 0.6);
    color: white;
}

.level-4 {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    box-shadow: 0 2px 8px rgba(79, 172, 254, 0.4);
		background: linear-gradient(135deg, #d4af37, #f4d03f);
		box-shadow: 0 0 8px rgba(212, 175, 55, 0.6);
    color: white;
}

.level-5 {
    background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
    box-shadow: 0 2px 8px rgba(250, 112, 154, 0.5);
		background: linear-gradient(135deg, #FFD700 0%, #00f 100%);
		box-shadow: 0 0 8px rgba(212, 175, 55, 0.6);
    color: white;
}

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 2px 8px rgba(250, 112, 154, 0.5);
    }
    50% {
        box-shadow: 0 4px 16px rgba(250, 112, 154, 0.8);
    }
}

.star-rating {
    margin-right: 5px;
    display: inline-flex;
    gap: 2px;
}

.star {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.4);
    transition: all 0.3s ease;
    text-shadow: 0 0 2px rgba(0,0,0,0.2);
}

.star.filled {
    color: #fff;
    text-shadow: 0 0 4px rgba(255, 255, 255, 0.5);
}

.handpicked-badge:hover .star.filled {
    transform: scale(1.1);
}

.handpicked-text {
    font-weight: 600;
    letter-spacing: 0.5px;
    text-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

/* 浼橀€夌瓑绾ф偓鍋滃脊绐?- 鍏ㄥ眬瀹瑰櫒锛堟寕鍦?body 涓嬶紝瀹屽叏鑴辩鐖跺厓绱犻檺鍒讹級 */
.handpicked-tooltip-global {
    position: fixed;
    z-index: 999999;
}

.handpicked-tooltip-global .handpicked-tooltip-content,
.handpicked-tooltip {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color: white;
    padding: 20px;
    border-radius: 16px;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4);
    min-width: 320px;
    max-width: 420px;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.15);
}

/* 寮圭獥绠ご - 鎸囧悜涓婃柟 */
.handpicked-tooltip::before {
    content: '';
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 10px solid transparent;
    border-bottom-color: #2a5298;
    filter: drop-shadow(0 -2px 2px rgba(0,0,0,0.1));
}

/* 寮圭獥鍏夋辰鏁堟灉 */
.handpicked-tooltip::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.15) 0%, transparent 50%);
    border-radius: 16px;
    pointer-events: none;
}

/* 鎮仠鏃舵樉绀哄脊绐楋紙fixed 瀹氫綅锛屽眳涓樉绀哄湪椤甸潰涓ぎ锛?*/
.handpicked-badge:hover .handpicked-tooltip,
.level-badge:hover .handpicked-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%);
    pointer-events: auto;
}

/* 纭繚寮圭獥鍦ㄥ鍣ㄥ涔熻兘鏄剧ず */
.handpicked-badge {
    overflow: visible !important;
    z-index: auto;
}

	/* 鎮仠鏃舵彁鍗囧眰绾?*/
	.handpicked-badge:hover {
	    z-index: auto;
	}

	/* 棣栭〉鎺ㄨ崘鍖猴細浠呬繚鎸佸崱鐗囧唴瀹瑰尯鍩熺殑姝ｅ父瑁佸壀锛宼ooltip 浣跨敤榛樿瑙勫垯 */
	#recommend-content .lis .fill {
		overflow: hidden !important;  /* 鍥剧墖淇濇寔鍦ㄥ崱鐗囧唴锛屼笉鏀惧ぇ婧㈠嚭 */
	}

	/* 绉诲姩绔紭鍖?- 寮圭獥瀹藉害鑷€傚簲 */
	@media (max-width: 768px) {
	    .handpicked-tooltip {
	        min-width: 280px;
	        max-width: 90vw;
	        left: 50%;
	        transform: translateX(-50%);
	    }

	    .handpicked-tooltip-title {
	        font-size: 16px;
	        flex-direction: column;
	        align-items: flex-start;
	        gap: 8px;
	    }

	    .handpicked-tooltip-desc {
	        font-size: 13px;
	    }

	    .handpicked-tooltip-features li {
	        font-size: 12px;
	    }
	}

	.handpicked-tooltip-title {
	    font-size: 18px;
	    font-weight: 700;
	    margin-bottom: 12px;
	    display: flex;
	    align-items: center;
	    justify-content: space-between;
	    gap: 12px;
	    padding-bottom: 10px;
	    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
	}
        /* min-width: 280px;
        max-width: 90vw;
        left: 50%;
        transform: translateX(-50%);
    } */

    .handpicked-tooltip-title {
        font-size: 16px;
        /* flex-direction: column; */
        align-items: flex-start;
        gap: 8px;
    }
		.handpicked-tooltip-title .title-text {
			white-space: nowrap;
		}

    .handpicked-tooltip-desc {
        font-size: 13px;
    }

    .handpicked-tooltip-features li {
        font-size: 12px;
    }
}

.handpicked-tooltip-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding-bottom: 10px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
}

.handpicked-tooltip-title .tooltip-stars {
    display: inline-flex;
    gap: 3px;
}

.handpicked-tooltip-title .tooltip-star {
    font-size: 16px;
    color: #ffd700;
    text-shadow: 0 0 6px rgba(255, 215, 0, 0.6);
    animation: starTwinkle 2s ease-in-out infinite;
}

@keyframes starTwinkle {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.handpicked-tooltip-desc {
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 16px;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 400;
}

.handpicked-tooltip-features {
    list-style: none;
    padding: 0;
    margin: 16px 0;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 12px;
}

.handpicked-tooltip-features li {
    font-size: 13px;
    padding: 6px 0;
    padding-left: 24px;
    position: relative;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

.handpicked-tooltip-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #4ade80;
    font-weight: bold;
    font-size: 16px;
}

.handpicked-tooltip-footer {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 2px solid rgba(255, 255, 255, 0.2);
    text-align: center;
}

.handpicked-tooltip-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: white;
    background: rgba(255, 255, 255, 0.15);
    padding: 8px 20px;
    border-radius: 20px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.handpicked-tooltip-link:hover {
    background: rgba(255, 255, 255, 0.25);
    gap: 10px;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.handpicked-tooltip-link::after {
    content: '→';
    transition: transform 0.3s ease;
    font-size: 14px;
}

.handpicked-tooltip-link:hover::after {
    transform: translateX(3px);
}

/* 浼橀€夌瓑绾у叏閮ㄤ粙缁嶉〉闈?- 绉戞妧鎰熻璁?*/
.handpicked-levels-page {
    max-width: 1200px;
    margin: 40px auto;
    padding: 20px;
}

.handpicked-levels-header {
	text-align: center;
	margin-bottom: 50px;
	display: flex;
}
.handpicked-levels-header .left {
	flex: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.handpicked-levels-title {
    font-size: 36px;
    font-weight: 700;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 12px;
}

.handpicked-levels-subtitle {
	margin-top: 20px;
    font-size: 16px;
    color: #6b7280;
}

.handpicked-levels-subtitle-tip {
	width: 400px;
	margin-top: 20px;
    font-size: 16px;
		line-height: 2;
    color: #6b7280;
}

.handpicked-levels-header .contact-service {
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	align-items: center;
	width: 160px;
}
.handpicked-levels-header .contact-service img {
	width: 160px;
	margin-top: 10px;
}

.handpicked-levels-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.handpicked-level-card {
    background: white;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.handpicked-level-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.handpicked-level-card:hover::before {
    transform: scaleX(1);
}

.handpicked-level-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

/* 鍏ㄧ珯寮圭獥灞傜骇锛氱‘淇濈櫥褰?鎻愮ず寮圭獥鍜岄伄缃╁缁堝湪鎵€鏈夊唴瀹逛箣涓?*/
.layui-layer-shade,
.layui-layer {
    z-index: 999999 !important;
}

.handpicked-level-card.level-card-0::before {
	background: linear-gradient(90deg, #a8b8d8 0%, #8b9dc3 100%);
}
.handpicked-level-card.level-card-0 .level-card-features li:last-child::before {
	content: '❌';
	font-size: 14px;
}

.handpicked-level-card.level-card-1::before {
    background: linear-gradient(90deg, #ffd89b 0%, #19547b 100%);
}

.handpicked-level-card.level-card-2::before {
    background: linear-gradient(90deg, #a8edea 0%, #fed6e3 100%);
}

.handpicked-level-card.level-card-3::before {
    background: linear-gradient(90deg, #f093fb 0%, #f5576c 100%);
}

.handpicked-level-card.level-card-4::before {
    background: linear-gradient(90deg, #4facfe 0%, #00f2fe 100%);
}

.handpicked-level-card.level-card-5::before {
    background: linear-gradient(90deg, #fa709a 0%, #fee140 100%);
}

.level-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.level-card-badge {
    display: inline-flex;
    align-items: center;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    gap: 8px;
}

.level-card-stars {
    display: inline-flex;
    gap: 3px;
    font-size: 18px;
}

.level-card-title {
    font-size: 24px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 12px;
}

.level-card-desc {
    font-size: 14px;
    color: #6b7280;
    line-height: 1.8;
    margin-bottom: 20px;
}

.level-card-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.level-card-features li {
    padding: 10px 0;
    padding-left: 28px;
    position: relative;
    font-size: 14px;
    color: #374151;
    border-bottom: 1px solid #f3f4f6;
}

.level-card-features li:last-child {
    border-bottom: none;
}

.level-card-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: bold;
    font-size: 16px;
}

.level-card-icon {
    width: 60px;
    height: 60px;
		padding-left: 10px;
		padding-right: 10px;
    border-radius: 12px;
		box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
		font-size: 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

/* 绠€娲佺増鏈牱寮?*/
.quality-indicator {
    font-size: 12px;
    color: #6c757d;
}

.quality-indicator.has-quality {
    color: #e67700;
    font-weight: 500;
}

.stars {
    display: inline-block;
    margin-right: 4px;
}

.star {
    color: #ffc107;
    font-size: 12px;
}

.quality-text.normal {
    color: #6c757d;
}/**
 * UI 浼樺寲瑕嗙洊鏍峰紡 - PC 绔?
 * 鐢ㄤ簬浼樺寲鎺掔増銆佽瑙夊眰绾с€侀棿璺濄€佷氦浜掍綋楠?
 * 浣滆€? UI 浼樺寲鍥㈤槦
 * 鏃ユ湡: 2025-10-17
 *
 * 浣跨敤璇存槑锛氬湪 style.css 涔嬪悗寮曞叆姝ゆ枃浠?
 */

/* ==================== 鍏ㄥ眬浼樺寲 ==================== */

/* 缁熶竴瀛椾綋绯荤粺 */
body,
#header,
.content,
button,
input,
select,
textarea {
  font-family: var(--font-family-base);
}

/* 缁熶竴棰滆壊 - 淇澶氫釜钃濊壊娣风敤闂 */
#header .nav .nav-lis.active > a,
#header .nav .nav-lis:hover > a,
#header .nav .nav-lis .navChild .navChild-lis.active a,
#header .nav .nav-lis .navChild a:hover,
#header .search .select .navChild .navChild-lis.on,
#header .search .select .navChild .navChild-lis:hover,
#header .head-img .popup .popup-con .lis:hover,
.dtl .dtl-top .dtl-left .bot a:hover,
.dtl .dtl-top .dtl-left .bot-m span,
.content .search .select .navChild .navChild-lis:hover {
  /* color: var(--color-primary) !important; */
}

.content .search {
  border-color: var(--color-primary) !important;
}

#header .head-img .login {
  border-color: #1d4ed8 !important;
}

#header .head-img .login span {
  color: #1d4ed8 !important;
}

#header .head-img .login span:nth-child(2)::after {
  background: #1d4ed8 !important;
}

#header .head-img button {
  background: #1d4ed8 !important;
  color: #fff !important;
}

.content .search button {
  background: var(--color-primary) !important;
}

.dtl .dtl-top .dtl-left .nav-lis.active {
  background: var(--color-primary) !important;
  border-color: var(--color-primary) !important;
}

.dtl .dtl-top .dtl-left .nav-lis:hover {
  color: var(--color-primary) !important;
}

/* ==================== 澶撮儴瀵艰埅浼樺寲 ==================== */

#header {
  height: var(--header-height-pc);
  box-shadow: var(--shadow-header);
  transition: box-shadow var(--transition-base);
}

#header header {
  width: 96%;
  max-width: var(--container-2xl);
  padding: 0 var(--spacing-4);
}

/* 浼樺寲瀵艰埅椤归棿璺?*/
#header .nav .nav-lis {
  margin: 0 var(--spacing-6);
}

#header .nav .nav-lis > a {
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-medium);
  padding: var(--spacing-4) 0;
  transition: color var(--transition-fast);
}

/* 浼樺寲涓嬫媺鑿滃崟 */
#header .nav .nav-lis .navChild {
  box-shadow: var(--shadow-lg);
  border-radius: var(--radius-lg);
  padding: var(--spacing-2) 0;
  animation: slideDown 0.2s ease-out;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

#header .nav .nav-lis .navChild a {
  padding: var(--spacing-2) var(--spacing-5);
  transition: all var(--transition-fast);
}

#header .nav .nav-lis .navChild a:hover {
  background-color: var(--color-bg-lighter);
}

/* 浼樺寲鎼滅储妗?*/
#header .search {
  border-radius: var(--radius-circle);
  box-shadow: none;
  transition: all var(--transition-base);
}

#header .search:focus-within {
  box-shadow: 0 0 0 3px rgba(15, 156, 247, 0.1);
}

/* 浼樺寲鐢ㄦ埛澶村儚涓嬫媺鑿滃崟 */
#header .head-img .popup {
  box-shadow: var(--shadow-lg);
  border-radius: var(--radius-lg);
  animation: slideDown 0.2s ease-out;
}

#header .head-img .popup .popup-con .lis {
  transition: all var(--transition-fast);
}

#header .head-img .popup .popup-con .lis:hover {
  background-color: var(--color-bg-lighter);
}

/* ==================== 棣栭〉鎼滅储妗嗕紭鍖?==================== */

.content .search {
  width: 100%;
  max-width: 800px;
  height: 64px;
  line-height: 64px;
  margin: 15px auto 30px auto;
  padding: 0 120px 0 110px;
  box-shadow: var(--shadow-card);
  border-radius: var(--radius-circle);
  transition: all var(--transition-base);
}

.content .search:focus-within {
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-2px);
}

.content .search input {
  font-size: 15px;
  height: 60px;
  line-height: 60px;
  border: none;
  background: transparent;
  padding: 0 10px;
  flex: 1;
  color: #1a365d;
}

.content .search input::placeholder {
  color: rgba(26, 54, 93, 0.5);
}

.content .search button {
  position: absolute;
  right: 0;
  top: 0;
  width: 90px;
  height: 60px;
  font-size: 15px;
  font-weight: 600;
  border-radius: 0 30px 30px 0;
  background: linear-gradient(135deg, #2d74d9 0%, #1a365d 100%);
  color: #ffffff;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0px 2px 8px 0px rgba(45, 116, 217, 0.3);
}

.content .search button:hover {
  background: linear-gradient(135deg, #1a365d 0%, #2d74d9 100%);
  transform: translateY(-1px);
  box-shadow: 0px 4px 12px 0px rgba(45, 116, 217, 0.4);
  box-shadow: 0 4px 12px rgba(15, 156, 247, 0.3);
}

/* ==================== 棣栭〉鍒嗙被鑿滃崟浼樺寲 ==================== */

.index-menu {
  padding-top: var(--spacing-10);
  margin-bottom: var(--spacing-10);
}

.index-menu .lis-v {
  height: auto;
  min-height: 95px;
  padding: var(--spacing-5) var(--spacing-5) var(--spacing-5) 100px;
  margin: 0 var(--spacing-4) var(--spacing-4) 0;
  border-radius: var(--radius-lg);
  transition: all var(--transition-base);
  border: 1px solid transparent;
}

.index-menu .lis-v:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
  border-color: var(--color-primary);
  background: linear-gradient(135deg, #F7F9FA 0%, #FFFFFF 100%);
}

.index-menu .lis-v .tit {
  font-size: var(--font-size-lg);
  font-weight: var(--font-weight-semibold);
  margin-bottom: var(--spacing-1);
}

.index-menu .lis-v .des {
  font-size: var(--font-size-xs);
  color: var(--color-text-secondary);
  padding-top: var(--spacing-1);
  line-height: var(--line-height-relaxed);
}

/* 棣栭〉绛涢€夋爮鏍峰紡锛堟浛浠ｅ師鍒嗙被鍗＄墖锛?*/
.content .index-menu {
    padding-top: 30px;
    margin-bottom: 20px;
    border-bottom: 1px solid #f0f0f0;
}

.content .index-menu .filter-bar {
    background: #fff;
}

.content .index-menu .filter-row {
    display: flex;
    align-items: center;
    padding: 8px 0;
    font-size: 14px;
    color: #555;
}

.content .index-menu .filter-row + .filter-row {
    border-top: 1px solid #f0f0f0;
    margin-top: 6px;
    padding-top: 10px;
}

.content .index-menu .filter-label {
    flex-shrink: 0;
    width: 60px;
    color: #999;
}

.content .index-menu .filter-options {
    flex: 1;
}

.content .index-menu .filter-item {
    display: inline-block;
    margin-right: 24px;
    color: #555;
    text-decoration: none;
    transition: color 0.2s;
}

.content .index-menu .filter-item:hover {
    color: #ff4c39;
}

.content .index-menu .filter-extra {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-left: auto;
    white-space: nowrap;
}

.content .index-menu .filter-sort {
    color: #666;
    cursor: pointer;
}

.content .index-menu .filter-sort.active {
    color: #ff4c39;
}


/* ==================== Tab 瀵艰埅浼樺寲 ==================== */

.tab-nav {
  border-bottom: 2px solid var(--color-border-lightest);
  margin-bottom: var(--spacing-8);
  padding-bottom: 0;
}

.tab-items {
  gap: var(--spacing-10);
}

.tab-item {
  font-size: var(--font-size-lg);
  padding: var(--spacing-4) 0;
  transition: all var(--transition-fast);
}

.tab-item:hover {
  color: var(--color-text-primary);
}

.tab-item.active {
  color: var(--color-primary);
}

.tab-item.active::after {
  background-color: var(--color-primary);
  height: 3px;
}



/* ==================== 鍒楄〃椤典紭鍖?==================== */

.content .top {
  margin: var(--spacing-8) 0 0;
  padding: var(--spacing-8);
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-card);
}

.content .banner {
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.content .site {
  font-size: var(--font-size-sm);
  padding: var(--spacing-4) 0;
  margin-bottom: var(--spacing-5);
}

/* 绛涢€夎彍鍗曚紭鍖?*/
.content .menu .menu-con {
  margin-bottom: var(--spacing-6);
	margin-bottom: 10px;
}

.content .menu .menu-tit {
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-semibold);
  color: var(--color-text-primary);
  margin-bottom: var(--spacing-3);
	margin-bottom: 8px;
}

.content .menu .menu-lis {
  /* padding: 0 var(--spacing-4); */
	/* padding: 0 8px; */
  /* line-height: 36px; */
  /* line-height: 20px; */
	/* height: 20px; */
	overflow: hidden;
	padding-top: 4px; 
	padding-bottom: 4px;
	line-height: 1;
  /* margin: 0 var(--spacing-2) var(--spacing-2) 0; */
  border-radius: var(--radius-circle);
  background: var(--color-bg-lighter);
  border: 1px solid transparent;
	/* border: 1px solid red; */
}

.content .menu .menu-lis:hover {
  background: rgba(15, 156, 247, 0.08);
  border-color: var(--color-primary);
  transform: translateY(-1px);
}

.content .menu .menu-lis.active {
  background: linear-gradient(135deg, #2d74d9 0%, #1a365d 100%) !important;
  color: #FFFFFF !important;
  box-shadow: 0px 8px 24px 0px rgba(45, 116, 217, 0.4) !important;
  border-color: #2d74d9 !important;
  transform: translateY(-1px);
}

.content .menu .menu-lis.active:hover {
  transform: translateY(-2px);
}

/* ==================== 璇︽儏椤典紭鍖?==================== */

.dtl .dtl-top {
  padding-top: var(--spacing-10);
  gap: var(--spacing-8);
}

.dtl .dtl-top .dtl-left {
  padding: var(--spacing-10);
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-card);
}

.dtl .dtl-top .dtl-left .title {
  font-size: 32px;
  margin-bottom: var(--spacing-5);
  line-height: var(--line-height-tight);
}

.dtl .dtl-top .dtl-left .bot {
  padding-bottom: var(--spacing-5);
  margin-bottom: var(--spacing-6);
}

.dtl .dtl-top .dtl-left .nav-lis {
  padding: var(--spacing-3) var(--spacing-6);
  margin: 0 var(--spacing-3) var(--spacing-3) 0;
  border-radius: var(--radius-circle);
  font-size: var(--font-size-base);
}

.dtl .dtl-top .dtl-left .nav-lis:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.dtl .dtl-top .dtl-left .nav-lis.active {
  box-shadow: 0 4px 12px rgba(15, 156, 247, 0.3);
}

.dtl .dtl-top .dtl-content {
  border-radius: var(--radius-xl);
  background: var(--color-bg-lightest);
}

/* ==================== 婊氬姩鍔犺浇鎻愮ず浼樺寲 ==================== */

.more {
  padding: var(--spacing-8) 0;
  text-align: center;
  font-size: var(--font-size-base);
  color: var(--color-text-disabled);
  transition: all var(--transition-fast);
}

.more:hover {
  color: var(--color-text-secondary);
}

/* ==================== 鍝嶅簲寮忎紭鍖?==================== */

@media (max-width: 1536px) {
  #header header {
    width: 96%;
    max-width: var(--container-xl);
  }

  .content .search {
    max-width: 700px;
  }
}

@media (max-width: 1280px) {
  .index-menu .lis-v {
    margin: 0 var(--spacing-3) var(--spacing-3) 0;
  }
}

/* ==================== 浜や簰澧炲己 ==================== */

/* 鎸夐挳鎮诞鏁堟灉 */
button,
.btn,
[type="button"],
[type="submit"] {
  transition: all var(--transition-base);
  cursor: pointer;
}

button:hover,
.btn:hover {
  transform: translateY(-1px);
}

button:active,
.btn:active {
  transform: translateY(0);
}

/* 閾炬帴鎮诞鏁堟灉 */
a {
  transition: all var(--transition-fast);
}

/* 鍥剧墖鎳掑姞杞戒紭鍖?*/
img {
  image-rendering: -webkit-optimize-contrast;
}

/* 骞虫粦婊氬姩 */
html {
  scroll-behavior: smooth;
}

/* 閫変腑鏂囨湰棰滆壊 */
::selection {
  background-color: rgba(15, 156, 247, 0.2);
  color: var(--color-text-primary);
}

::-moz-selection {
  background-color: rgba(15, 156, 247, 0.2);
  color: var(--color-text-primary);
}

/* ==================== 鍔犺浇鍔ㄧ敾 ==================== */

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ==================== 鍙闂€т紭鍖?==================== */

/* 鑱氱劍鐘舵€?*/
a:focus,
button:focus,
input:focus,
select:focus,
textarea:focus {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

/* 鍑忓皯鍔ㄧ敾锛堢敤鎴峰亸濂斤級 */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ==================== PC绔〉闈㈢壒瀹氭牱寮?==================== */

/* 宸ョ▼甯堝垪琛ㄩ〉鏍峰紡 */
.engineer_box{
    cursor: pointer;
}
.project_box{
    cursor: pointer;
}
.no_project{
    text-align: center;
    margin-top: 72px;
    font-size: 20px;
    color: #aaa;
    height: 127px;
}


/* ===== Search dropdown visibility fix ===== */
/* Ensure dropdown can overflow and display correctly */
#header .search,
.content .search,
.content,
.maxwidth {
  overflow: visible !important;
}

/* Default hidden state (robust) */
.switch_search .switch_search_box {
  /* display: none !important; */
}
/* Open state shows dropdown forcefully */
.switch_search.open .switch_search_box {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

/* Fix dropdown box styles - reset inherited properties */
.content .search .select .navChild,
#header .search .select .navChild {
  z-index: 9999 !important;
  position: absolute !important;
  line-height: normal !important;  /* Reset line-height */
  padding: 0 !important;  /* Reset padding */
  font-size: 20px !important;  /* Ensure readable font size */
	display: flex;
	flex-direction: column;
}

/* Fix dropdown button styles */
.switch_search_box .switch_search_tab {
  line-height: 40px !important;  /* Proper line height for buttons */
  height: 40px !important;
  display: block !important;
  width: 100% !important;
  padding: 0 !important;
  margin: 0 !important;
  text-align: center !important;
}

/* ==================== 涓汉涓婚〉鑿滃崟澧炲己鏍峰紡 ==================== */

/* 鑿滃崟椤规偓鍋滃拰婵€娲绘晥鏋?*/
.personal .personal-con .left-menu .menu-lis::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(45, 116, 217, 0.1), transparent);
	transition: left 0.5s ease;
}

.personal .personal-con .left-menu .menu-lis:hover::before {
	left: 100%;
}

.personal .personal-con .left-menu .menu-lis:hover {
	background: rgba(45, 116, 217, 0.05);
	transform: translateX(4px);
}

.personal .personal-con .left-menu .menu-lis.active {
	background: linear-gradient(135deg, #2d74d9 0%, #1a365d 100%) !important;
	color: #ffffff;
	transform: translateX(4px);
	box-shadow: 0px 6px 20px 0px rgba(45, 116, 217, 0.3);
}

.personal .personal-con .left-menu .menu-lis.active::after {
	content: '';
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 4px;
	height: 24px;
	background: #d4af37;
	border-radius: 0 2px 2px 0;
	box-shadow: 0 0 8px rgba(212, 175, 55, 0.6);
}

.personal .personal-con .left-menu .menu-lis a{
	color: #1a365d !important;
	text-decoration: none;
	transition: color 0.3s ease;
	position: relative;
	z-index: 1;
}

.personal .personal-con .left-menu .menu-lis:hover a {
	color: #2d74d9 !important;
}

.personal .personal-con .left-menu .menu-lis.active a{
	color: #ffffff !important;
}

.personal .personal-con .left-menu .menu-lis span{
	background: linear-gradient(135deg, #d4af37, #f4d03f) !important;
	color: #1a365d !important;
	font-weight: 600 !important;
	box-shadow: 0px 2px 8px 0px rgba(212, 175, 55, 0.4);
	z-index: 2;
	right: 15px !important;
	border-radius: 50% !important;
}

/* ==================== 宸ョ▼甯堢瓑绾х郴缁熸牱寮?==================== */

/* 绛夌骇绛涢€夋寜閽牱寮?*/
.filter-option.level_tab {
	display: flex;
	align-items: center;
	gap: 8px;
	position: relative;
	transition: all 0.3s ease;
}

.filter-option.level_tab:hover {
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* 绛夌骇鍦嗙偣鏍峰紡 */
.level-dot {
	width: 12px;
	height: 12px;
	border-radius: 50%;
	display: inline-block;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
	position: relative;
}

.level-dot::after {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.8);
}

/* Y绾?-  */
.level-y-dot {
	background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
	background: linear-gradient(135deg, #FFD700 0%, #00f 100%);
	box-shadow: 0 0 8px rgba(212, 175, 55, 0.6);
	border-radius: 0;
}

/* S绾?- 閲戣壊 */
.level-s-dot {
	background: linear-gradient(135deg, #d4af37, #f4d03f);
	box-shadow: 0 0 8px rgba(212, 175, 55, 0.6);
}

/* A绾?- 钃濊壊 */
.level-a-dot {
	background: linear-gradient(135deg, #2d74d9, #4facfe);
	box-shadow: 0 0 8px rgba(45, 116, 217, 0.6);
}

/* B绾?- 缁胯壊 */
.level-b-dot {
	background: linear-gradient(135deg, #10b981, #34d399);
	box-shadow: 0 0 8px rgba(16, 185, 129, 0.6);
}

/* C绾?- 鐏拌壊 */
.level-c-dot {
	background: linear-gradient(135deg, #6b7280, #9ca3af);
	box-shadow: 0 0 8px rgba(107, 114, 128, 0.6);
}

/* 鏅€氾紙0绾э級 - 娴呯伆鑹?*/
.level-0-dot {
	background: linear-gradient(135deg, #d1d5db, #e5e7eb);
	box-shadow: 0 0 8px rgba(209, 213, 219, 0.6);
}

/* 宸ョ▼甯堝崱鐗囩瓑绾ф牱寮?*/
.engineer-card {
	position: relative;
	overflow: visible;
}

.engineer-level-badge {
	position: absolute;
	top: -8px;
	right: 15px;
	background: rgba(255, 255, 255, 0.95);
	backdrop-filter: blur(10px);
	padding: 6px 12px;
	border-radius: 20px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
	display: flex;
	align-items: center;
	gap: 6px;
	z-index: 10;
	font-size: 11px;
	font-weight: 600;
	border: 1px solid rgba(0, 0, 0, 0.1);
	transition: all 0.3s ease;
}

.engineer-level-badge:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.engineer-level-badge .level-text {
	color: #1a365d;
	white-space: nowrap;
}

/* 涓嶅悓绛夌骇鍗＄墖鐨勮竟妗嗘晥鏋?*/
.engineer-card.level-s {
	border: 2px solid transparent;
	background: linear-gradient(white, white) padding-box,
	            linear-gradient(135deg, #d4af37, #f4d03f) border-box;
}

.engineer-card.level-a {
	border: 2px solid transparent;
	background: linear-gradient(white, white) padding-box,
	            linear-gradient(135deg, #2d74d9, #4facfe) border-box;
}

.engineer-card.level-b {
	border: 2px solid transparent;
	background: linear-gradient(white, white) padding-box,
	            linear-gradient(135deg, #10b981, #34d399) border-box;
}

.engineer-card.level-c {
	border: 2px solid transparent;
	background: linear-gradient(white, white) padding-box,
	            linear-gradient(135deg, #6b7280, #9ca3af) border-box;
}

/* 绛夌骇鍗＄墖鎮仠鏁堟灉 */
.engineer-card.level-s:hover {
	box-shadow: 0px 12px 48px 0px rgba(212, 175, 55, 0.3);
}

.engineer-card.level-a:hover {
	box-shadow: 0px 12px 48px 0px rgba(45, 116, 217, 0.3);
}

.engineer-card.level-b:hover {
	box-shadow: 0px 12px 48px 0px rgba(16, 185, 129, 0.3);
}

.engineer-card.level-c:hover {
	box-shadow: 0px 12px 48px 0px rgba(107, 114, 128, 0.3);
}

/* ==================== 椤圭洰绛夌骇绯荤粺鏍峰紡 ==================== */

/* 椤圭洰绛夌骇绛涢€夋寜閽牱寮?*/
.menu-lis.level_tab_project {
	display: flex;
	align-items: center;
	gap: 8px;
	position: relative;
	transition: all 0.3s ease;
	/* margin-bottom: 12px; */
}

.menu-lis.level_tab_project:hover {
	transform: translateX(5px);
}

/* 椤圭洰鍗＄墖绛夌骇寰界珷 */
.project-level-badge {
	position: absolute;
	top: 8px;
	right: 8px;
	background: rgba(255, 255, 255, 0.95);
	backdrop-filter: blur(10px);
	padding: 3px 8px;
	border-radius: 12px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
	display: flex;
	align-items: center;
	gap: 4px;
	z-index: 10;
	font-size: 11px;
	font-weight: 600;
	border: 1px solid rgba(0, 0, 0, 0.08);
	transition: all 0.3s ease;
	white-space: nowrap;
}

.project-level-badge:hover {
	transform: translateY(-1px);
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.18);
}

.project-level-badge .level-text {
	color: #1a365d;
	white-space: nowrap;
	font-family: 'Source Han Sans CN', 'Microsoft YaHei', sans-serif;
}

/* 涓嶅悓绛夌骇椤圭洰鍗＄墖鐨勮竟妗嗘晥鏋?*/
.lis.project-level-s {
	border: 2px solid transparent;

}

.lis.project-level-a {
	border: 2px solid transparent;
	background: linear-gradient(white, white) padding-box,
	            linear-gradient(135deg, #2d74d9, #4facfe) border-box;
}

.lis.project-level-b {
	border: 2px solid transparent;
	background: linear-gradient(white, white) padding-box,
	            linear-gradient(135deg, #10b981, #34d399) border-box;
}

.lis.project-level-c {
	border: 2px solid transparent;
	background: linear-gradient(white, white) padding-box,
	            linear-gradient(135deg, #6b7280, #9ca3af) border-box;
}

/* 绛夌骇椤圭洰鍗＄墖鎮仠鏁堟灉 */
.lis.project-level-s:hover {
	box-shadow: 0px 12px 48px 0px rgba(212, 175, 55, 0.3);
	transform: translateY(-5px);
}

.lis.project-level-a:hover {
	box-shadow: 0px 12px 48px 0px rgba(45, 116, 217, 0.3);
	transform: translateY(-5px);
}

.lis.project-level-b:hover {
	box-shadow: 0px 12px 48px 0px rgba(16, 185, 129, 0.3);
	transform: translateY(-5px);
}

.lis.project-level-c:hover {
	box-shadow: 0px 12px 48px 0px rgba(107, 114, 128, 0.3);
	transform: translateY(-5px);
}

/* 椤圭洰鍒楄〃椤归渶瑕佺浉瀵瑰畾浣嶄互瀹圭撼缁濆瀹氫綅鐨勫窘绔?*/
.content .con .list .lis {
	position: relative;
	overflow: visible;
}

/* 鍝嶅簲寮忚璁?- 绉诲姩绔紭鍖?*/
@media (max-width: 768px) {
	.project-level-badge {
		font-size: 9px;
		padding: 3px 8px;
		max-width: 120px;
	}

	.project-level-badge .level-text {
		font-size: 9px;
	}

	.menu-lis.level_tab {
		flex-direction: column;
		align-items: flex-start;
		gap: 4px;
		padding: 8px 12px;
	}
}

/* 鏃ф湀瀛ｅ害浼樼浜у搧灞曠ず妯″潡闅愯棌锛屼娇鐢ㄦ柊涓ラ€夊浘绾稿ご閮?*/
.monthly-showcase-module {
	display: none;
}

/* 棣栭〉绛涢€夋爮锛堟浛鎹㈠師鍒嗙被瀵艰埅鍗＄墖锛?*/
.content .index-menu {
    padding-top: 30px;
    margin-bottom: 20px;
    border-bottom: 1px solid #f0f0f0;
}

.content .index-menu .filter-bar {
    background: #fff;
}

.content .index-menu .filter-row {
    display: flex;
    align-items: center;
    padding: 8px 0;
    font-size: 14px;
    color: #555;
}

.content .index-menu .filter-row + .filter-row {
    border-top: 1px solid #f0f0f0;
    margin-top: 6px;
    padding-top: 10px;
}

.content .index-menu .filter-label {
    flex-shrink: 0;
    width: 70px;
    color: #999;
}

.content .index-menu .filter-options {
    flex: 1;
}

.content .index-menu .filter-item {
    display: inline-block;
    margin-right: 24px;
    color: #555;
    text-decoration: none;
    cursor: pointer;
    transition: color 0.2s;
}

.content .index-menu .filter-item:hover {
    color: #1d4ed8;
}

.content .index-menu .filter-item.active {
    color: #1d4ed8;
    font-weight: 600;
}

.content .index-menu .filter-extra {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-left: auto;
    white-space: nowrap;
}

.content .index-menu .filter-summary {
    font-size: 13px;
    color: #999;
}

.content .index-menu .filter-sort {
    font-size: 13px;
    color: #666;
    cursor: pointer;
}

.content .index-menu .filter-sort.active {
    color: #1d4ed8;
    font-weight: 600;
}

/* ==================== 璇︽儏椤?UI 浼樺寲锛岃创杩戝弬鑰冨浘 ==================== */

/* 鏁翠綋甯冨眬 */
.dtl {
  padding: 30px 0 60px;
}

/* 宸﹀彸涓ゅ垪闂磋窛鐣ュ皬涓€鐐癸紝鏇寸揣鍑?*/
.dtl .dtl-top {
  gap: 24px;
}

/* 宸︿晶涓诲唴瀹瑰崱鐗?*/
.dtl .dtl-top .dtl-left {
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.06);
  padding: 24px 28px 28px;
}

/* 鏍囬鏍峰紡锛堝拰鎴浘鎺ヨ繎锛?*/
.dtl .dtl-top .dtl-left .title {
  font-size: 24px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 10px;
}

/* 闈㈠寘灞?+ 鐗堟潈 + 缁熻琛?*/
.dtl .dtl-top .dtl-left .bot {
  margin-bottom: 18px;
  padding-bottom: 12px;
}

.dtl .dtl-top .dtl-left .bot a {
  font-size: 13px;
  color: #6b7280;
}

.dtl .dtl-top .dtl-left .bot-m {
  font-size: 13px;
  color: #9ca3af;
}

.dtl .dtl-top .dtl-left .bot-r {
  font-size: 13px;
  color: #9ca3af;
}

/* Tab 鍒囨崲鎸夐挳锛氱伆鑹?pill + 钃濊壊婵€娲?*/
.dtl .dtl-top .dtl-left .nav-lis {
  padding: 9px 20px;
  font-size: 14px;
  background: #f3f4f6;
  border-radius: 999px;
  border: 1px solid #e5e7eb;
  color: #4b5563;
}

.dtl .dtl-top .dtl-left .nav-lis.active {
  background: #1d4ed8;
  border-color: #1d4ed8;
  color: #ffffff;
}

/* 澶у浘鍖哄煙锛氭祬鐏拌儗鏅€佺暀鐧芥洿鍍忓弬鑰冨浘 */
.dtl .dtl-top .dtl-content {
  min-height: 520px;
  background: #f8fafc;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
}

/* 缂╃暐鍥炬潯锛氭祬鐏拌儗鏅?+ 鍦嗚 */
.dtl .dtl-top .swiper {
  background: #f9fafb;
  border-radius: 0 0 12px 12px;
  padding: 12px 60px;
}

.dtl .dtl-top .swiper .img-lis,
.dtl .dtl-top .swiper .swiper-slide img {
  border-radius: 6px;
}

/* 杞挱绠ご锛氬皬鍦嗙櫧搴?娴呰竟妗?*/
.dtl .dtl-top .swiper .next,
.dtl .dtl-top .swiper .prev,
.dtl-content .next,
.dtl-content .prev {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: #ffffff;
  border: 1px solid #e5e7eb;
  box-shadow: 0 2px 6px rgba(15, 23, 42, 0.12);
}

/* 鍙充晶淇℃伅鍗℃暣浣?*/
.dtl .dtl-top .dtl-right {
  width: 320px;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.06);
  padding: 20px 20px 24px;
}

/* 鈥滄鍥剧焊涓嬭浇闇€瑕?X 閲戝竵鈥?鎻愮ず */
.dtl .dtl-top .dtl-right .des {
  font-size: 14px;
  color: #4b5563;
  margin-bottom: 10px;
}

.dtl .dtl-top .dtl-right .des span {
  font-size: 18px;
  font-weight: 700;
  color: #f97316;
}

/* 绔嬪嵆涓嬭浇鎸夐挳 */
.dtl .dtl-top .dtl-right .top .down {
  height: 40px;
  line-height: 40px;
  border-radius: 20px;
  background: linear-gradient(135deg, #1d4ed8 0%, #1d4ed8 100%);
  color: #ffffff;
  font-size: 15px;
  font-weight: 600;
}

/* 鏀惰棌鎸夐挳鍦嗗舰鍥炬爣 */
.dtl .dtl-top .dtl-right .top .collect {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid #e5e7eb;
}

/* 鍙戝竷鑰?/ 妯″瀷淇℃伅 / 鏍囩 / 绠€浠?/ 鐗堟潈 杩欎簺 title 鏉?*/
.dtl .dtl-top .dtl-right .dtl-right-tit {
  font-size: 14px;
  font-weight: 600;
  color: #111827;
  padding: 8px 0 6px;
  border-bottom: 1px solid #f3f4f6;
}

/* 鍙戝竷鑰呭崱鐗囩殑澶栨 */
.dtl .dtl-top .dtl-right .infor {
  border-radius: 12px;
  border: 1px solid #e5e7eb;
}

/* 浣滆€呭叾瀹冨浘绾?/ 鐚滀綘鍠滄 鍒楄〃鍗＄墖 */
.dtl-con .lis {
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.06);
  overflow: hidden;
}

.dtl-con .lis .fill {
  height: 220px;
}

.dtl-con .lis .title {
  font-size: 14px;
  font-weight: 500;
  color: #111827;
}

/* 璇︽儏椤垫柊鐗堟牱寮忚鐩栵紝璐磋繎鍙傝€冨浘 */
.dtl {
  padding: 30px 0 60px;
}

.dtl .dtl-top {
  padding-top: 30px;
  display: flex;
  gap: 24px;
  align-items: flex-start;
}

/* 宸︿晶澶у浘鍗＄墖 */
.dtl .dtl-top .dtl-left {
  flex: 1;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.06);
  padding: 24px 28px 28px;
}

/* 澶у浘鍖哄煙 */
.dtl .dtl-top .dtl-content {
  min-height: 520px;
  background: #f8fafc;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
}

/* 缂╃暐鍥炬潯 */
.dtl .dtl-top .swiper {
  background: #f9fafb;
  border-radius: 0 0 12px 12px;
  padding: 12px 60px;
}

/* 鍙充晶淇℃伅鍗＄墖 */
.dtl .dtl-top .dtl-right {
  width: 320px;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.06);
  padding: 20px 20px 24px;
}

/* 鈥滄鍥剧焊涓嬭浇闇€瑕?X 閲戝竵鈥?*/
.dtl .dtl-top .dtl-right .des span {
  font-size: 18px;
  font-weight: 700;
  color: #f97316;
}

/* 绔嬪嵆涓嬭浇鎸夐挳 */
.dtl .dtl-top .dtl-right .top .down {
  height: 40px;
  line-height: 40px;
  border-radius: 20px;
  background: linear-gradient(135deg, #1d4ed8 0%, #1d4ed8 100%);
  color: #ffffff;
  font-size: 15px;
  font-weight: 600;
}

/* 浣滆€呭叾瀹冨浘绾?/ 鐚滀綘鍠滄鍗＄墖 */
.dtl-con .lis {
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.06);
  overflow: hidden;
}
.dtl-con .lis .fill {
  height: 220px;
}

/* ==================== 鍥剧墖灞曠ず鍖哄煙浼樺寲 ==================== */
.dtl .dtl-top .dtl-content .swiper-container {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.dtl .dtl-top .dtl-content .swiper-wrapper {
	display: flex;
	align-items: center;
}

.dtl .dtl-top .dtl-content .swiper-slide {
	display: flex;
	align-items: center;
	justify-content: center;
	height: auto;
}

.dtl .dtl-top .dtl-content .swiper-slide img {
	max-width: 100%;
	max-height: 600px;
	height: auto;
	width: auto;
	object-fit: contain;
	display: block;
	margin: 0 auto;
}

/* Tab 鍐呭鍖哄煙闂磋窛璋冩暣 */
.dtl .dtl-top .dtl-left .nav-lis {
	margin-bottom: 15px;
}

.dtl .dtl-top .dtl-left > .clearfix {
	margin-bottom: 15px;
}

/* 鏂囦欢鍒楄〃鏍峰紡 */
.dtl .dtl-top .dtl-content.file-list {
	padding: 30px;
	display: block;
}

.dtl .dtl-top .dtl-content.file-list .table {
	width: 100%;
	background: #fff;
	border-radius: 8px;
	overflow: hidden;
}

.dtl .dtl-top .dtl-content.file-list .table th {
	background: #f8fafc;
	padding: 12px;
	text-align: left;
	font-weight: 600;
	color: #374151;
	border-bottom: 2px solid #e5e7eb;
}

.dtl .dtl-top .dtl-content.file-list .table td {
	padding: 12px;
	border-bottom: 1px solid #f3f4f6;
	color: #6b7280;
}

/* ==================== 宸﹀彸瀵归綈浼樺寲 ==================== */
.dtl .dtl-top {
	display: flex;
	align-items: flex-start;
	gap: 20px;
}

.dtl .dtl-top .dtl-left,
.dtl .dtl-top .dtl-right {
	align-self: stretch;
}

/* Tab瀵艰埅闂磋窛 */
.dtl .dtl-top .dtl-left .tab-nav {
	margin-bottom: 20px;
}

/* Tab鍐呭鍖呰鍣?*/
.dtl .dtl-top .dtl-left .tab-content-wrapper {
	position: relative;
}

/* 闅愯棌缂╃暐鍥惧垵濮嬬姸鎬?*/
.dtl .dtl-top .swiper.thumb-swiper {
	display: block;
}

/* 3D棰勮iframe鏍峰紡 */
.dtl .dtl-top .dtl-content iframe {
	width: 100%;
	height: 600px;
	border: none;
	display: block;
}

/* 鏂囦欢鍒楄〃琛ㄦ牸浼樺寲 */
.dtl .dtl-top .dtl-content.file-list .table {
	margin: 0;
}

.dtl .dtl-top .dtl-content.file-list .table thead tr {
	background: #f1f5f9;
}

.dtl .dtl-top .dtl-content.file-list .table tbody tr:hover {
	background: #f8fafc;
}

.dtl .dtl-top .dtl-content.file-list .table tbody tr:last-child td {
	border-bottom: none;
}

/* ==================== 棣栭〉杞挱鍥炬牱寮?==================== */
.monthly-showcase-module {
	width: 100%;
	margin-bottom: 30px;
}

/* 閫氱煡鏍?*/
.notification-bar {
	background: linear-gradient(135deg, #1d4ed8 0%, #1d4ed8 100%);
	padding: 12px 0;
	overflow: hidden;
}

.notification-content {
	max-width: 1400px;
	margin: 0 auto;
	padding: 0 20px;
	color: #ffffff;
	font-size: 14px;
	display: flex;
	align-items: center;
	white-space: nowrap;
}

.notification-title {
	font-weight: 600;
	margin-right: 15px;
	flex-shrink: 0;
}

.notification-text {
	animation: scroll-left 30s linear infinite;
	display: inline-block;
}

@keyframes scroll-left {
	0% {
		transform: translateX(0);
	}
	100% {
		transform: translateX(-50%);
	}
}

/* 杞挱鍥惧鍣?*/
.banner-v {
	width: 100%;
	position: relative;
	/* background: #000; */
}

.banner-v .banner-con {
	width: 100%;
	height: 350px;
	position: relative;
}

.banner-v .swiper-wrapper {
	height: 100%;
}

.banner-v .swiper-slide {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}

.banner-v .swiper-slide a {
	display: block;
	width: 100%;
	height: 100%;
	position: relative;
}

.banner-v .swiper-slide img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

/* 杞挱鍥惧唴瀹规枃瀛?*/
.banner-v .slide-content {
	position: absolute;
	left: 10%;
	top: 50%;
	transform: translateY(-50%);
	z-index: 10;
	color: #ffffff;
	max-width: 600px;
	text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.banner-v .slide-title {
	font-size: 32px;
	font-weight: 700;
	margin-bottom: 15px;
	line-height: 1.2;
	animation: fadeInLeft 0.8s ease;
}

.banner-v .slide-desc {
	font-size: 16px;
	margin-bottom: 20px;
	line-height: 1.5;
	opacity: 0.95;
	animation: fadeInLeft 1s ease 0.2s both;
}

.banner-v .slide-button {
	display: inline-block;
	padding: 12px 36px;
	background: linear-gradient(135deg, #1d4ed8 0%, #1d4ed8 100%);
	color: #ffffff;
	font-size: 15px;
	font-weight: 600;
	border-radius: 30px;
	text-decoration: none;
	transition: all 0.3s ease;
	box-shadow: 0 4px 15px rgba(15, 156, 247, 0.4);
	animation: fadeInLeft 1.2s ease 0.4s both;
}

.banner-v .slide-button:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(15, 156, 247, 0.6);
	background: linear-gradient(135deg, #1d4ed8 0%, #1d4ed8 100%);
}

@keyframes fadeInLeft {
	from {
		opacity: 0;
		transform: translateX(-30px);
	}
	to {
		opacity: 1;
		transform: translateX(0);
	}
}

/* 鍒嗛〉鍣ㄦ牱寮?*/
.banner-v .swiper-pagination {
	bottom: 25px !important;
	left: 0;
	right: 0;
	text-align: center;
}

.banner-v .swiper-pagination-bullet {
	width: 12px;
	height: 12px;
	background: rgba(255, 255, 255, 0.5);
	opacity: 1;
	margin: 0 6px;
	transition: all 0.3s ease;
}

.banner-v .swiper-pagination-bullet-active {
	width: 32px;
	border-radius: 6px;
	background: #ffffff;
}

/* 瀵艰埅鎸夐挳 */
.banner-v .swiper-button-next,
.banner-v .swiper-button-prev {
	width: 50px;
	height: 50px;
	background-color: rgba(255, 255, 255, 0.2);
	background-size: 40%;
	backdrop-filter: blur(10px);
	border-radius: 50%;
	color: #ffffff;
	transition: all 0.3s ease;
}

.banner-v .swiper-button-next:after,
.banner-v .swiper-button-prev:after {
	font-size: 20px;
	font-weight: 700;
}

.banner-v .swiper-button-next:hover,
.banner-v .swiper-button-prev:hover {
	background-color: rgba(255, 255, 255, 0.4);
	transform: scale(1.1);
}

.banner-v .swiper-button-prev {
	left: 30px;
}

.banner-v .swiper-button-next {
	right: 30px;
}

/* 鍝嶅簲寮忚璁?*/
@media (max-width: 768px) {
	.banner-v .banner-con {
		height: 250px;
	}

	.banner-v .slide-content {
		left: 5%;
		right: 5%;
		max-width: 90%;
	}

	.banner-v .slide-title {
		font-size: 24px;
		margin-bottom: 10px;
	}

	.banner-v .slide-desc {
		font-size: 12px;
		margin-bottom: 15px;
	}

	.banner-v .slide-button {
		padding: 8px 24px;
		font-size: 13px;
	}

	.banner-v .swiper-button-next,
	.banner-v .swiper-button-prev {
		width: 36px;
		height: 36px;
	}

	.banner-v .swiper-button-prev {
		left: 10px;
	}

	.banner-v .swiper-button-next {
		right: 10px;
	}

	.notification-bar {
		padding: 8px 0;
	}

	.notification-content {
		font-size: 12px;
		padding: 0 15px;
	}
}

/* ==================== 杞挱鍥維wiper瀹瑰櫒淇 ==================== */
.monthly-showcase-module .banner-v .swiper-wrapper {
	height: 100%;
	position: relative;
}

.monthly-showcase-module .banner-v .swiper-slide {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	/* background: #000; */
}

.monthly-showcase-module .banner-v .swiper-slide a {
	display: block;
	width: 100%;
	height: 100%;
	position: relative;
}

.monthly-showcase-module .banner-v .swiper-slide img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.monthly-showcase-module .banner-v .slide-content {
	position: absolute;
	left: 10%;
	top: 50%;
	transform: translateY(-50%);
	z-index: 10;
	color: #ffffff;
	max-width: 600px;
	text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
	pointer-events: none;
}

.monthly-showcase-module .banner-v .slide-content .slide-button {
	pointer-events: auto;
}

/* ==================== 杞挱鍥惧己鍒舵樉绀轰慨姝?==================== */
.monthly-showcase-module {
	display: block !important;
	visibility: visible !important;
	width: 100% !important;
	margin-bottom: 30px !important;
}

.monthly-showcase-module .banner-v {
	display: block !important;
	visibility: visible !important;
	width: 100% !important;
	min-height: 350px !important;
}

.monthly-showcase-module .banner-v .banner-con {
	display: block !important;
	visibility: visible !important;
	width: 100% !important;
	height: 350px !important;
	min-height: 350px !important;
}

.monthly-showcase-module .swiper-wrapper {
	display: flex !important;
	height: 100% !important;
}

.monthly-showcase-module .swiper-slide {
	display: flex !important;
	width: 100% !important;
	height: 350px !important;
}
/* 鍒楄〃 / 璇︽儏椤靛崱鐗囧浘鐗囧浐瀹氬昂瀵?*/
.content .lis .fill,
.dtl-con .lis .fill {
    width: 100%;
    height: 220px;        /* 鍥哄畾楂樺害锛屾寜闇€瑕佹敼 200/240 绛?*/
    overflow: hidden;
    border-radius: 20px 20px 0 0;
    background: #f8f9fa;
    position: relative;
}

/* 鍥剧墖璺熼殢瀹瑰櫒锛岀敤 cover 淇濇寔缁熶竴姣斾緥 */
.content .lis .fill .img,
.content .lis .fill img,
.dtl-con .lis .fill .img,
.dtl-con .lis .fill img {
    width: 100%;
    height: 100%;
    object-fit: cover;     /* 鎯充笉瑁佸壀灏辨敼鎴?contain */
}
/* 鍝嶅簲寮忓竷灞€浼樺寲 - 缂╁皬鏃朵繚鎸佸竷灞€ */
@media (max-width: 1200px) {
    header .nav { flex-wrap: nowrap; }
    header .nav .nav-lis { white-space: nowrap; }
    .search { min-width: 200px; }
}

@media (max-width: 768px) {
    header { flex-wrap: wrap; }
    header .nav { width: 100%; justify-content: center; }
    .search { width: 100%; margin-top: 10px; }
}

/* QQ缇や簩缁寸爜鎮仠鏍峰紡 */
.qq-contact { position: relative; }
.qq-contact .qq-qrcode {
    display: none;
    position: absolute;
    right: 60px;
    top: 0;
    background: #fff;
    padding: 10px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    z-index: 1000;
}
.qq-contact:hover .qq-qrcode { display: block; }


/* 鍥剧墖灞呬腑鏍峰紡 */
.list .lis .fill img, .dtl-content img, .banner-v img {
    display: block;
    margin: 0 auto;
    object-fit: contain;
}

/* 鎸夐挳闂磋窛缇庡寲 */
.btn-group, .button-group {
    display: flex;
    gap: 10px;
}
.btn-group .btn, .button-group button {
    margin: 0 5px;
}

/* 鐧诲綍娉ㄥ唽鎸夐挳闂磋窛 */
/* 会员中心 - 使用原始底色 */

/* 侧边栏深蓝色主题 */
.personal .left-menu .menu-lis.active,
.personal .left-menu .menu-lis:hover {
    color: #1d4ed8;
    border-left-color: #1d4ed8;
}


/* ==================== 详情页双栏布局修复 & 底部卡片区重设计 ==================== */

/* 1. 强制左右两列布局（覆盖 @media max-width:1480px 中的 flex-direction:column） */
.dtl .dtl-top {
    display: flex !important;
    flex-direction: row !important;
    align-items: flex-start;
    gap: 24px;
}

.dtl .dtl-top .dtl-left {
    flex: 1 1 0 !important;
    width: auto !important;
    min-width: 0;
}

.dtl .dtl-top .dtl-right {
    width: 320px !important;
    flex-shrink: 0 !important;
    position: sticky !important;
    top: 80px !important;
    align-self: flex-start !important;
}

/* 2. 移动端（≤900px）恢复单列堆叠 */
@media (max-width: 900px) {
    .dtl .dtl-top {
        flex-direction: column !important;
    }
    .dtl .dtl-top .dtl-left {
        width: 100% !important;
        padding: 20px !important;
    }
    .dtl .dtl-top .dtl-right {
        width: 100% !important;
        position: static !important;
    }
}

/* 3. 底部推荐区模块间距 */
.dtl-con {
    margin-top: 32px;
    padding-bottom: 8px;
}

/* 4. 标题行改用 flex（取代旧浮动） */
.dtl-con .tit {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 18px;
    font-weight: 700;
    color: #111827;
    line-height: 1.5;
    padding: 0 0 14px;
    margin-bottom: 20px;
    border-bottom: 2px solid #f1f5f9;
}

.dtl-con .tit a {
    float: none;
    font-size: 13px;
    font-weight: 400;
    color: #6b7280;
    padding-right: 0;
    background: none;
}

.dtl-con .tit a:hover {
    color: #1d4ed8;
}

/* 5. 卡片网格容器（覆盖 clearfix 的浮动布局） */
#otherList,
#loveList {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    overflow: visible;
}

/* 6. 卡片项：取消浮动，现代卡片样式 */
#otherList .lis,
#loveList .lis {
    float: none !important;
    width: auto !important;
    margin: 0 !important;
    background: #ffffff;
    border-radius: 14px;
    box-shadow: 0 4px 16px rgba(15, 23, 42, 0.07);
    overflow: hidden;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

#otherList .lis:hover,
#loveList .lis:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 28px rgba(15, 23, 42, 0.12);
}

/* 7. 卡片图片区 */
#otherList .lis .fill,
#loveList .lis .fill {
    height: 190px !important;
    border-radius: 14px 14px 0 0;
}

/* 8. 卡片标题 */
#otherList .lis .title,
#loveList .lis .title {
    padding: 10px 14px 14px;
    font-size: 13px;
    font-weight: 500;
    color: #374151;
    line-height: 1.5;
    height: auto;
}

/* 9. 平板两列 */
@media (max-width: 900px) {
    #otherList,
    #loveList {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 12px;
    }
}


/* 登录弹窗左右互换：仅登录时生效 */
.register-q .register.login-mode {
    flex-direction: row-reverse !important;
}
.register-q .register.login-mode .register-l {
    float: none !important;
}
.register-q .register.login-mode .register-l .swiper-container {
    border-radius: 0 20px 20px 0 !important;
}

/* ==================== 优质工程师badge统一样式 ==================== */
.quality-engineer-badge {
    display: inline-flex;
    align-items: center;
    flex-direction: row;
    gap: 4px;
    background: linear-gradient(135deg, #e53e3e, #f56565);
    color: #fff;
    font-size: 12px;
    font-weight: 500;
    padding: 4px 8px 4px 10px;
    border-radius: 4px 0 0 4px;
    cursor: help;
    box-shadow: 0 2px 8px rgba(229, 62, 62, 0.3);
    white-space: nowrap;
    line-height: 1.2;
}
/* 勋章图标 - 使用图片，放在文字右边 */
.quality-engineer-badge .qe-icon {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
    filter: brightness(0) invert(1);
    order: 1;
}

/* 展品卡片图片区域边框 - 深蓝色加粗 */
.content .lis .fill,
.list .lis .fill,
.lis-con-v .con-lis .fill,
.other-works .lis .fill,
.dtl-con .lis .fill {
    border: 3px solid transparent;
    border-radius: 20px 20px 0 0;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.content .lis:hover .fill,
.list .lis:hover .fill,
.lis-con-v .con-lis:hover .fill,
.other-works .lis:hover .fill,
.dtl-con .lis:hover .fill {
    border-color: #1d4ed8;
    box-shadow: 0 4px 20px rgba(29, 78, 216, 0.25);
}
/* 选中状态的卡片边框 */
.content .lis.active .fill,
.list .lis.active .fill,
.dtl-con .lis.active .fill {
    border-color: #1d4ed8;
}

.quality-engineer-badge {
    position: relative;
}

/* 优质工程师tooltip - 白底样式 */
.quality-engineer-badge .qe-tooltip {
    display: block;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.2s, visibility 0.2s;
    transition-delay: 2s; /* 鼠标离开后延迟5秒关闭 */
    position: absolute;
    right: 0;
    top: 100%;
    margin-top: 8px;
    width: 200px;
    padding: 14px 16px;
    background: #fff;
    color: #333;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
    z-index: 9999;
    font-size: 13px;
    line-height: 1.8;
    text-align: left;
    white-space: normal;
}
.quality-engineer-badge .qe-tooltip::before {
    content: '';
    position: absolute;
    top: -6px;
    right: 16px;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-bottom: 6px solid #fff;
}
.quality-engineer-badge .qe-tooltip.qe-visible {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transition-delay: 0s;
}
.qe-tooltip .qe-title {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 6px;
    color: #222;
}
.qe-tooltip .qe-upgrade-btn {
    display: inline-block;
    margin-top: 10px;
    padding: 6px 18px;
    background: #1d4ed8;
    color: #fff;
    border-radius: 4px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    text-align: center;
}
.qe-tooltip .qe-upgrade-btn:hover {
    background: #1e40af;
}
