/* 顶部导航样式 */
.header {
	position: fixed;
	height: 90px;
	width: 100%;
	background-color: rgba(255, 255, 255, 0.95);
	z-index: 9999 !important;
	border-bottom: 1px solid rgba(230, 230, 230, 0.9);
}

.nav {
	margin-left: 5%;
	margin-right: 5%;
	display: flex;
	justify-content: space-between;
}

.logo {
	height: 90px;
	width: 230px;
	padding-top: 15px;

}

.logo img {
	width: 100%;
}

#menu-ul {
	display: flex;
	justify-content: space-between;
}

.nav_a {
	display: block;
	height: 90px;
	font-size: 1rem;
	line-height: 90px;
	position: relative;
}

.nav_a:after {
	content: "";
	background: var(--primary_color);
	transition: all 0.3s ease;
	width: 0%;
	left: 50%;
	transform: translateX(-50%);
	position: absolute;
	bottom: 0;
	height: 4px;
	border-radius: 2px;
	z-index: 10;
}

.nav_a:hover:after {
	width: 100%;
}

#language-container>a {
	display: inline-block;
	line-height: 90px;
	height: 90px;
	vertical-align: middle;
}

/* 导航下拉菜单 */
.submenu-container {
	padding-top: 30px;
	padding-bottom: 30px;
	width: 100%;
	display: none;
	background-color: var(--boxbg);
	/* background-color: aqua; */
}

.submenu-items {
	display: none;
	justify-content: space-between;
	margin: 0 auto;
}

.submenu-items li span {
	display: block;
	font-size: 0.95rem;
	line-height: 2rem;
}

.submenu-items a {
	display: block;
}

.submenu-items li i {
	display: block;
	text-align: center;
	font-size: 3.2rem;
	line-height: 3.2rem;
	color: var(--p_color1);
}

.submenu-items>li>a:hover,
.submenu-items>li>a:hover i {
	color: var(--primary_color) !important;
}

.submenu-brief {
	width: 50%;
}

.submenu-products {
	width: 33%;
}

.submenu-solutions {
	width: 32%;
}

#language-container {
	position: relative;
}

.language {
	display: none;
	position: absolute;
	padding: 8px 0;
	right: 0;
	top: 65px;
	width: 52px;
	background-color: var(--boxbg);
	border-radius: 4px;
	box-shadow: 1px 1px 2px 1px rgba(230, 230, 230, 1);
}

.language li {
	width: 52px;
	text-align: center;
	line-height: 1.7rem;
	font-size: 0.95rem;
}

/* 小屏幕导航 */
.menu-small {
	display: flex;
	flex-direction: column;
	justify-content: space-around;
	position: absolute;
	top: 50%;
	right: 5%;
	transform: translateY(-50%);
	height: 30px;
	width: 30px;
}

.menu-small:hover,
.msl-i>i:hover {
	cursor: pointer;
}

.menu-small span {
	display: block;
	height: 2px;
	width: 100%;
	background-color: var(--txt_color);
}

.menu-small-list {
	position: absolute;
	display: none;
	height: 100vh;
	width: 100vw;
	left: 0;
	top: 0;
	background-color: var(--primary_color);
	font-size: 1rem;
	padding: 0 5vw;
}

.msl-i {
	display: flex;
	justify-content: end;
	width: 100%;
}

.menu-small-list div i {
	color: white;
	font-size: 3rem;
}

.menu-small-list div ul {
	width: 15vw !important;
}

.menu-small-list>div:last-child {
	display: flex;
	justify-content: space-between;
}


.menu-small-list ul li:first-child {
	font-size: 1.2rem;
	font-weight: 600;
}

.menu-small-list ul li {
	padding: 15px 0 3px 0;
	border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}

.menu-small-list a {
	color: white !important;
}

/* 底部导航 */
.nav-bottom {
	/* height: 150px; */
	/* background-color: rgb(230, 230, 230); */
	font-size: 1rem;
	line-height: 2.3rem;
}

.nav-bottom ul li:nth-child(1) {
	font-size: 1.2rem;
	font-weight: 600;
}

.nav-bottom ul li a {
	transition: all 0.3s;
}

.nav-bottom ul li a:hover {
	font-weight: 600;
	/* transform: translateX(10px); */
}

.wx-r img {
	display: inline-block;

}

.wx-r {
	text-align: right;
}

.wx-r p {
	margin-right: 30px;
}


/* 底部footer样式 */
.ft {
	height: 80px;
	width: 100%;
	background-color: #003eb2;
}

.ft-container {
	width: 90%;
	height: 100%;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
}

.ft-left {
	display: none;
}

.ft-right {
	position: relative;
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
}

.ft-right p {
	color: var(--txt_white);
	opacity: 0.5;
	margin-bottom: 0 !important;
}

.copyright {
	font-size: 1rem;
}

.copyright a {
	color: var(--txt_white) !important;
	display: inline-block;
	margin-left: 30px;
}



.tel-400 {
	display: none;
}

.green-skew {
	position: absolute;
	right: -20px;
	height: 80px;
	width: 80px;
	background-color: var(--secondary_color);
	transform: skewX(-20deg);
	border-radius: 0 18px 0 0;
	z-index: -1;
}

.blue-skew {
	position: absolute;
	left: -10px;
	height: 80px;
	width: 80px;
	background-color: var(--primary_color);
	transform: skewX(-20deg);
	border-radius: 14px 0 0 0;
	z-index: -1;
}

@media screen and (min-width:576px) {
	#menu-ul>li+li {
		margin-left: 30px;
	}
}

@media screen and (min-width:768px) {}

@media screen and (min-width:992px) {
	.ft {
		background: linear-gradient(to right, #00b300 0 28%, transparent 28% 38%, #003eb2 38% 100%);
	}

	.ft-left {
		position: relative;
		width: 28%;
		height: 100%;
		display: flex;
		align-items: center;
		justify-content: flex-start;
	}

	.ft-right {
		width: 67%;
		justify-content: space-between;
	}

	.copyright {
		padding-left: 50px;
	}

}

@media screen and (min-width:1200px) {
	.ft {
		background: linear-gradient(to right, #00b300 0 25%, transparent 25% 30%, #003eb2 30% 100%);
	}

	.ft-left {
		width: 22%;
	}

	.ft-right {
		width: 74.5%;
	}

	.tel-400 {
		display: inline-block;
		font-size: 2rem;
	}
}

@media screen and (min-width:1400px) {
	#menu-ul>li+li {
		margin-left: 50px;
	}

	.submenu-brief {
		width: 36%;
	}

	.submenu-products {
		width: 25%;
	}

	.submenu-solutions {
		width: 25%;
	}

	.ft {
		background: linear-gradient(to right, #00b300 0 20%, transparent 20% 25%, #003eb2 25% 100%);
	}

	.ft-left {
		width: 18%;
	}

	.ft-right {
		width: 79.5%;
	}

	.copyright {
		padding-left: 70px;
	}
}