* {
	margin: 0;
	padding: 0;
	outline: none;
	/*box-sizing: border-box;*/
	font-family: 'sans-serif';
	list-style: none;
	text-decoration: none;
	font-size: 14px;
}

body {
	background: #f2f2f2;
}

.layui-row {
	background: white;
	margin-top: 10px;
	padding: 10px;
}

.header {
	background: #FFFFFF;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	height: 120px;
	padding: 0 10px;
}

.header .logo {
	color: #1e232b;
	font-size: 30px;
	font-weight: 600;
	letter-spacing: 0px;
}

.header .logo2 {
	display: none;
}

.header img {
	height: 80px;
}

.header form input {
	border-radius: 10px;
	height: 25px;
	border: 1px #c2ccd0 solid;
}

.header form button {
	font-size: 18px;
	border: none;
	background: transparent;
}

.header form select {
	border: none;
}

.header .menu-icon,
.header .search-icon,
.header .cancel-icon {
	width: 40px;
	color: #CC9966;
	text-align: center;
	font-size: 18px;
	cursor: pointer;
	display: none;
	border: 1px transparent solid;
}

.header .oa {
	display: flex;
	flex-direction: row;
	justify-content: baseline;
	padding-bottom: 10px;
}
.header .oa a{
	margin: 0 10px;
}
.header .oa img {
	height: 50px;
}

/* 导航start */
.nav {
	position: relative;
	width: 100%;
	height: 40px;
	background-color: #CC0033;
	text-align: center;
	z-index: 99;
}

.nav a {
	cursor: pointer;
	text-decoration: none;
}

.nav ul:nth-child(1) {
	width: 100%;
	display: inline-flex;
	justify-content: space-between;
	list-style: none;
}

.nav ul li {
	float: left;
	width: 12.5%;
	height: 40px;
	margin-right: 1px;
	background: #CC0033;
}

.nav ul li a {
	font-size: 16px;
}

.nav ul li:hover {
	color: #fff;
	background: #ffb3a7;
	animation: changeColor 1s infinite;
	animation-delay: 3s;
}

.nav ul li ul li {
	display: none;
	width: 100%;
	height: 40px;
	float: initial;
	background: #FFFFFF;
	transition: 0.3s;
}

.nav ul li ul li a {
	line-height: 40px;
	color: #000000;
}

.nav ul li ul li:hover {
	background: #ffb3a7;
}

.nav ul li:hover ul li {
	display: block;
	border-top: 1px solid #CCCCCC;
}

@keyframes changeColor {
	0% {
		background: #CC0033;
	}

	50% {
		background: #ffb3a7;
	}

	100% {
		background: #CC0033;
	}
}

.nav ul li a {
	text-decoration: none;
	color: #fff;
	display: block;
	text-align: center;
	line-height: 40px;
	font-weight: 500;
	text-transform: uppercase;
}

/* 导航end */
.nav_mobile {
	display: none;
}

.slide-wrap img {
	height: 100%;
	width: 100%;
}

.slide-wrap .introduction {
	position: absolute;
	top: 10%;
	left: 10%;
	/* transform: translate(0, -50%); */
	font-size: 60px;
	font-weight: 500;
	font-family: "楷体";
	text-shadow: 0 0 10px #003366;
	-webkit-text-fill-color: #ffc64b;
	/*文字的填充色*/
	-webkit-text-stroke: 0.2px #FFF9EC;
	letter-spacing: 3px;
}

.footer {
	height: auto;
	background: #CC0033;
	text-align: center;
	padding: 20px;
	color: #FFF9EC;
}

.footer p {
	padding: 3px;
}

.footer p:nth-last-child(1) {
	display: inline-block;
}

.footer span {
	margin: 0px 5px;
}

.footer span a {
	font-size: 16px;
	color: #FFFFFF;
	opacity: 0.7;
}

.footer span a:hover {
	opacity: 1;
	transition: all 0.5s;
}

.weixin a {
	width: auto;
	height: auto;
	background: transparent;
	color: #FFFFFF;
	padding: 0 5px;
	opacity: 1 !important;
}

.weixin a:hover i {
	color: #FFFFFF;
	cursor: pointer;
	transform: scale(1.5);
	transition: 0.1s;
}

.weixin img {
	height: 0;
	position: absolute;
	bottom: 93px;
	left: calc(50% - 10px);
	z-index: 1;
}

.weixin a:hover img {
	height: 150px;
	transition: height 0.3s;
}

@media (max-width:1100px) {
	.layui-container {
		padding: 0 !important;
	}

	.header {
		background: #FFFFFF;
		width: 100%;
		height: 50px;
		display: flex;
		flex-wrap: nowrap;
		align-items: center;
		justify-content: space-between;
		position: fixed;
		top: 0;
		left: 0;
		z-index: 9;
		opacity: 0.9;
	}

	.header form {
		display: none;
	}

	.header form.active {
		display: block;
		position: absolute;
		top: 60px;
		right: 0;
		z-index: 9;
		border: 10px #CC9966 solid;
		background: #FFFFFF;
	}

	.header form::before {
		content: "";
		display: block;
		width: 12px;
		height: 12px;
		background-color: #CC9966;
		transform: rotate(45deg);
		position: absolute;
		top: -16px;
		right: 15px;
		z-index: 1;
	}

	.header form input {
		height: 20px;
		width: 120px;
		border: none;
	}

	.header form button {
		background: transparent;
	}

	.header .logo2 {
		display: flex;
		border: 1px transparent solid;
	}

	.header .logo2 h4 {
		font-size: 18px;
	}

	.header .menu-icon,
	.header .search-icon {
		display: block;
		border: 1px transparent solid;
	}

	.header .menu-icon.disable {
		visibility: hidden;
	}

	.header .search-icon.hide {
		display: none;
	}

	.header .cancel-icon.show {
		display: block;
	}

	/* 移动导航栏的样式 */
	.header .logo1 {
		display: none;
	}

	.nav {
		display: none;
	}

	.nav_mobile {
		position: fixed;
		top: 50px;
		left: 0;
		z-index: 9;
		width: 45%;
		height: 100%;
		display: none;
		opacity: 0.9;
		background-color: #6c848d;
	}

	.nav_mobile.active {
		display: block;
	}

	.nav_mobile .menu .btn {
		display: block;
		/*width: 100%;*/
		height: 45px;
		line-height: 45px;
		border-left: 10px transparent solid;
		border-bottom: 1px #485859 solid;
		color: #FFFFFF;
		background: #6c848d;
	}

	.nav_mobile .smenu {
		display: none;
		background: #FFFFFF;
	}

	.nav_mobile .smenu.active {
		display: block;
	}

	.nav_mobile .smenu a {
		display: block;
		/*width: 100%;*/
		height: 40px;
		line-height: 40px;
		border-left: 15px transparent solid;
		border-bottom: 1px #dcd6d9 solid;
		background;
		#e7e7eb;
	}

	.nav_mobile .smenu a:hover {
		background: #dcd6d9;
	}

	.oa {
		display: none !important;
	}
}
