.head {
	position: absolute;
	width: 100%;
	margin: 0px auto;
	height: 80px;
	display: flex;
	align-items: center;
	background: rgba(255, 255, 255, 0.6);
	z-index: 10;
}

.pc-head {
	display: block;
}

.phone-head-home {
	display: none;
}

.phone-head-other {
	display: none;
}

.phone-head-content {
	display: none;
}

.head-content {
	position: relative;
	width: 1200px;
	margin: 0px auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.head-pic {
	position: relative;
	width: 248px;
	height: 20px;
	background-image: url("../../img/head/logo.png");
	background-size: cover;
}

.head-list {
	position: relative;
	/* width: calc(100% - 400px); */
	width: calc(90% - 400px);
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.head-item {
	position: relative;
	display: flex;
	align-items: center;
	line-height: 80px;
	transition: all 0.3s;
	cursor: pointer;
}

.head-item:hover .head-item-text {
	color: #136cffff;
}

.head-item-arror {
	position: relative;
	width: 12px;
	height: 12px;
	background-image: url("../../img/head/arror.svg");
	background-size: cover;
	margin-left: 10px;
	transition: all 0.3s;
}

.head-item:hover .head-item-arror {
	color: #136cffff;
	transform: rotate(180deg);
	filter: invert(35%) sepia(100%) saturate(1000%) hue-rotate(200deg) brightness(95%) contrast(100%);
}

.head-item-text {
	position: relative;
	font-size: 18px;
}

.head-item-triggle {
	position: absolute;
	width: 10px;
	height: 10px;
	margin: auto;
	left: 0;
	right: 0;
	bottom: 0;
	background-size: cover;
	border-left: 7px solid transparent;
	border-right: 7px solid transparent;
	border-bottom: 7px solid #136cffff;
	opacity: 0;
	transform: all 0.3s;
}

.head-item-triggle-curr {
	opacity: 1;
}

.head-item-menu-list {
	position: absolute;
	width: 220px;
	margin: auto;
	left: 50%;
	top: 80px;
	background-color: #fff;
	transform: translateX(-50%);
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.3s ease, visibility 0s 0.3s;
}

.head-item:hover .head-item-menu-list {
	opacity: 1;
	visibility: visible;
	transition: opacity 0.3s ease;
}

.head-item-menu-item {
	position: relative;
	width: 100%;
	border-bottom: 1px solid #d9d9d9;
	line-height: 20px;
	font-weight: 400;
	font-size: 14px;
	color: #666666;
	text-align: center;
	font-style: normal;
	text-transform: none;
	text-align: center;
	padding: 10px 0px;
}

.head-item-menu-text {
	position: relative;
	transition: all 0.3s;
}

.head-item-menu-item:hover .head-item-menu-text {
	color: #136cffff;
}

.head-phone-item {
	position: relative;
	width: 158px;
	height: 40px;
	background: rgba(19, 108, 255, 0.15);
	border-radius: 30px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0 16px;
}

.head-phone-pic {
	position: relative;
	width: 20px;
	height: 20px;
	background-image: url("../../img/head/phone.svg");
	background-size: cover;
}

.head-phone-number {
	font-weight: 500;
	font-size: 14px;
	color: #555555;
	line-height: 16px;
	text-align: left;
	font-style: normal;
	text-transform: none;
}

@media screen and (max-width: 1199px) {
	.pc-head {
		display: none;
	}

	.head {
		height: 44px;
		background: rgba(255, 255, 255, 0.7);
		justify-content: space-between;
	}

	.phone-head-home,
	.phone-head-other {
		position: relative;
		width: 100%;
		display: flex;
		align-items: center;
		justify-content: space-between;
		padding: 0 16px;
	}

	.phone-head-home .phone-head-logo {
		position: relative;
		height: 16px;
	}

	.phone-head-home .phone-head-button {
		position: relative;
		height: 16px;
		aspect-ratio: 1/1;
	}

	.phone-head-home .phone-head-logo-img,
	.phone-head-home .phone-head-button-img {
		position: relative;
		height: 100%;
	}

	.phone-head-other .phone-head-close {
		position: relative;
		height: 24px;
	}

	.phone-head-other .phone-head-text {
		position: relative;
		width: calc(100% - 50px);
		text-align: center;
		font-family: Source Han Sans CN, Source Han Sans CN;
		font-weight: bold;
		font-size: 14px;
		color: #010101;
		line-height: 24px;
		text-align: center;
		font-style: normal;
		text-transform: none;
	}

	.phone-head-other .phone-head-button {
		position: relative;
		height: 16px;
		aspect-ratio: 1/1;
	}

	.phone-head-other .phone-head-close-img,
	.phone-head-other .phone-head-button-img {
		position: relative;
		height: 100%;
	}

	.phone-head-content {
		position: fixed;
		width: 100vw;
		height: 100vh;
		left: 0;
		top: 0;
		background-color: #fff;
	}

	.phone-head-content-head {
		position: relative;
		width: 100%;
		height: 44px;
		display: flex;
		align-items: center;
		justify-content: space-between;
		padding: 0 16px;
		box-shadow: 0px 4px 6px 0px rgba(0, 0, 0, 0.05);
	}

	.phone-head-content-logo {
		position: relative;
		height: 16px;
	}

	.phone-head-content-close {
		position: relative;
		height: 24px;
		aspect-ratio: 1/1;
	}

	.phone-head-content-logo-img,
	.phone-head-content-close-img {
		position: relative;
		height: 100%;
	}

	.phone-head-content-info {
		position: relative;
		width: 100%;
		padding: 16px 30px;
	}

	.phone-head-content-list {
		position: relative;
		width: 100%;
		margin-bottom: 16px;
	}

	.phone-head-content-list-head {
		position: relative;
		width: 100%;
		display: flex;
		align-items: center;
		justify-content: space-between;
		margin-bottom: 16px;
	}

	.phone-head-content-devider {
		position: relative;
		width: 100%;
		height: 1px;
		background-color: #e5e5e5;
	}

	.phone-head-content-list-head-text {
		position: relative;
		font-family: Source Han Sans CN, Source Han Sans CN;
		font-weight: 500;
		font-size: 18px;
		color: #333333;
		line-height: 21px;
		text-align: left;
		font-style: normal;
		text-transform: none;
	}

	.phone-head-content-list-head-icon {
		position: relative;
		width: 16px;
		height: 16px;
	}

	.closePhoneHeadArror {
		transform: rotate(180deg);
	}

	.phone-head-content-arror-img {
		position: relative;
		width: 100%;
	}

	.phone-head-content-second-list {
		position: relative;
		width: 100%;
		background-color: #f2f2f2;
		padding: 0 20px;
		display: none;
	}

	.phone-head-content-second-item {
		position: relative;
		width: 100%;
		font-family: Source Han Sans CN, Source Han Sans CN;
		font-weight: 400;
		font-size: 14px;
		color: #666666;
		line-height: 16px;
		text-align: left;
		font-style: normal;
		text-transform: none;
		padding: 10px 0;
		border-bottom: 1px solid #d9d9d9;
		display: block;
	}

	.phone-head-content-second-item:last-child {
		border-bottom: none;
	}
}
