body {
	--themeColor: #FF5A16;
}

/* 战队 */
.team-box {
	width: 1300px;
	height: auto;
	/* min-height: 780px; */
	padding: 60px;
	background: rgba(var(--bg-color),var(--bg-opacity));
	backdrop-filter: var(--bg-blur);
}

.team-title {
	font-size: 30px;
	padding-bottom: 65px;
	color: var(--text-color);
	font-weight: bold;
	text-align: center;
}

.team-page-one.none {
	display: none;
}

.team-ul-box {
	display: flex;
	align-items: center;
	justify-content: center;
}

.team-ul {
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
	justify-content: space-between;
	padding: 0 60px;
}

.team-li {
	width: 220px;
	height: 220px;
	margin: 0 40px;
	margin-bottom: 70px;
	border-radius: 10px;
	background: var(--white);
	border: 1px solid var(--border-color);
	box-shadow: 5px 5px 5px 0 #cccccc;
}

.team-li:hover {
	cursor: pointer;
	border: 1px solid var(--themeColor);
	box-shadow: 5px 5px 5px 0 var(--themeColor);
}

.team-li .img {
	width: 100%;
	height: 100%;
	border-radius: 10px;
}

.team-set-box {
	width: 100%;
	height: auto;
	display: none;
}

.team-set-box.display {
	display: block;
}

.team-set-back {
	width: 100%;
	color: var(--text-color);
	font-size: 20px;
	cursor: pointer;
	padding-bottom: 50px;
}

.team-set-back .icon{
	font-size: 20px;
	padding-right: 10px;
	color: var(--text-color);
}

.team-set-choose-box {
	width: 100%;
	height: auto;
	padding-bottom: 50px;
}

.team-set-choose {
	width: 100%;
	display: flex;
	align-items: flex-start;
	justify-content: flex-start;
	overflow: hidden;
}

.team-set-logo {
	width: 137px;
	height: 137px;
	border: 1px solid #141414;
	border-radius: 3px;
	margin-right: 30px;
	background: var(--white);
}

.team-set-logo .img {
	width: 100%;
	/* border-radius: 3px; */
}

.team-member-set-box {
	width: 100%;
	flex: 1;
	display: flex;
	align-items: center;
	justify-content: flex-start;
}

.team-member-set {
	width: 116px;
	height: auto;
	cursor: pointer;
	display: flex;
	align-items: center;
	flex-direction: column;
	justify-content: center;
	margin-right: 20px;
}

.team-member-picture {
	width: 116px;
	height: 116px;
	border-radius: 4px;
	margin-bottom: 10px;
	overflow: hidden;
	background-color: #CCCCCC;
}

.team-member-picture .img {
	max-width: 100%;
	height: auto;
}

.team-member-name {
	width: 116px;
	height: 26px;
	line-height: 24px;
	color: var(--text-color);
	font-size: 14px;
	text-align: center;
	border-radius: 3px;
	border: 1px solid var(--border-color);
}

.team-member-name:hover {
	cursor: pointer;
	color: var(--text-color);
	background: var(--themeColor);
}

.team-member-name.active {
	color: var(--text-color);
	background: var(--themeColor);
}

.detail-set-box {
	display: none;
	height: auto;
}

.detail-set-box.display {
	display: block;
}

.detail-set {
	padding-top: 15px;
	display: flex;
	flex-direction: column;
}

.detail-set-ul {
	width: 100%;
	margin-bottom: 10px;
	text-align: center;
	display: flex;
	align-items: flex-start;
	justify-content: space-between;

	.copy-btn {
		width: 82px;
		height: 24px;
		color: var(--text-color);
		font-size: 14px;
		line-height: 22px;
		border-radius: 3px;
		cursor: pointer;
		border: 1px solid var(--border-color);
		
		&:hover{
			background: var(--themeColor);
		}
	}

	.use-btn {
		width: 82px;
		height: 24px;
		line-height: 22px;
		font-size: 14px;
		border-radius: 3px;
		color: var(--text-color);
		cursor: pointer;
		border: 1px solid var(--border-color);
		
		&:hover{
			background: var(--themeColor);
		}
	}
}

.set-left-title {
	width: 150px;
	height: 26px;
	color: var(--text-color);
	font-size: 14px;
	line-height: 24px;
	overflow: hidden;
	text-align: center;
	white-space: nowrap;
	border-radius: 3px;
	border: 1px solid var(--border-color);
}

.mini-box {
	width: auto;
	min-width: 230px;
	height: 24px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 8px;
	margin-right: 10px;

	.mini-box-left {
		height: 24px;
		line-height: 24px;
		font-size: 14px;
		text-align: left;
		margin-right: 20px;
		display: flex;
		align-items: center;
		justify-content: flex-start;
		color: var(--text-color);
	}

	.img {
		width: 16px;
		height: 16px;
		background-color: #CCCCCC;
	}
}

.mini-box:nth-child(3n) {
	padding-right: 0;
}

.keyboard-set {

	.mini-box {
		padding-right: 0;
	}

	.center {
		flex-grow: 1;
		overflow: hidden;
		padding-left: 30px;
	}

	.right {
		min-width: 230px;
		display: flex;
		align-items: flex-start;
		justify-content: flex-end;
	}

	.right .btn {
		width: 110px;
		height: 24px;
		line-height: 24px;
		font-size: 14px;
		border-radius: 5px;
		color: var(--text-color);
		background-color: #000000;
		cursor: pointer;
	}
}

.aim-set {

	.mini-box {
		padding-right: 0;
	}

	.center {
		flex-grow: 1;
		padding-left: 30px;

		.right {
			width: 790px;
			height: 24px;
			line-height: 24px;
			font-size: 14px;
			margin: 10px 0;
			text-align: left;
		}
	}

}

.mouse-set {

	.right {
		flex: 1;
		padding-left: 30px;
		display: flex;
		align-items: flex-start;
		justify-content: flex-start;
		flex-wrap: wrap;
	}
}

.picture-set {

	.right {
		flex: 1;
		padding-left: 30px;
		display: flex;
		align-items: flex-start;
		justify-content: flex-start;
		flex-wrap: wrap;
	}
}