* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

li {
	list-style: none;
}

a {
	text-decoration: none;
	list-style: none;
}

div {
	display: block;
}

.header {
	width: 100%;
	height: 100px;
	background: #fff;
}

.header-cen {
	display: flex;
	justify-content: space-between;
	align-items: center;
	height: 100%;
}

.header-right>ul {
	display: flex;
	justify-content: space-between;
}

.header-right>ul>li {
	text-align: center;
	margin-right: 50px;
	color: #333;
	position: relative;
}

.header-right ul li a {
	color: #333;
	transition: all 0.4s;
}

.header-right ul li a p {
	font-size: 15px;
	line-height: 1;
	margin-bottom: 8px;
}

.header-right ul li a span {
	display: block;
	font-size: 14px;
	line-height: 1;
	color: #999999;
	transition: all 0.4s;
}

.header-right ul li a:hover {
	color: rgb(229, 0, 126);
}

.header-right ul li a:hover span {
	color: rgb(229, 0, 126);
}

.header-right>ul>li:hover .hrader-list {
	display: block;
}

.hrader-list {
	position: absolute;
	z-index: 9;
	left: 50%;
	transform: translateX(-50%);
	width: 100%;
	background: #fff;
	display: none;
	padding: 10px 0;
	border-radius: 3px;
}

.hrader-list ul {
	display: flex;
	flex-direction: column;
	background: #fff;
}
.hrader-list ul li{
	line-height: 2;
	margin: 10px 0;
}

.hrader-list ul li a p {
	width: 100%;
	margin: 0;
	background: #fff;
	font-size: 16px;
}