body {
	min-width: 1280px;
}

.s-fiexd {
	height: 40px;
}

.header {
	position: fixed;
	top: 0px;
	left: 0px;
	z-index: 20;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	height: 60px;
	background: #A5001C;
}


.container {
width: 1394px;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.logo {
	display: flex;
	position: absolute;
	left: 36px;
}
.pplogo {
	display: flex;
	position: absolute;
	left: 36px;
	margin-left: 260px
}
.pplogo img{
	margin-left: 11px;
}

.shangshi {
	margin-left: 12px;
}

.logo>img {
	padding: 0px 12px;
}

.desc {
position: relative;
	color: #fff;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	z-index: 10;
	-moz-user-select: none;
	-webkit-user-select: none;
	-ms-user-select: none;
	-khtml-user-select: none;
	user-select: none;
}

.lianxi {
	position: absolute;
	top: 25px;
	right: 11px;
}

.lists {
	display: flex;
	background: #fff;
	height: 338px;
	position: absolute;
	top: 65px;
	right: 11px;
	z-index: 11px;
	transform: scaleY(0);
	transform-origin: 50% 0;
	box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
	border-bottom-left-radius: 10px;
	border-bottom-right-radius: 10px;
}

.lists a {
	color: #000;
}

.item {
	padding-top: 15px;
	display: flex;
	/*垂直排列*/
	flex-direction: column;
	align-items: center;
	margin: 0px 24px;
}

.item-one {
	padding-left: 24px;
}


.item .title {
	margin-top: 19px;
	font-weight: 500;
}

.item .type {
	font-family: SourceHanSansSC-Normal;
	margin-top: 2px;
	font-size: 16px;
	font-weight: bold
}

.look_more {
	display: flex;
	/*垂直排列*/
	flex-direction: column;
	align-items: center;
	justify-content: center;
	margin-left: 20px;
	width: 240px;
	height: 338px;
	background: #EAEAEA;
	border-bottom-right-radius: 10px;
}

.look_item h2:hover {
	color: #A5001C;
}

.look_more img {
	width: 42px;
	height: 40px;
}

.look_more h2 {
	padding: 5px 0px;
	margin-top: 15px;
	font-weight: bold;
	font-size: 18px;
	border-bottom: 1px solid #000;
}

.look_more span {
	margin-top: 9px;
	font-size: 8px;
	color: #A6A6A6;
	font-weight: bold;
}

.look_item {
	display: flex;
	justify-content: center;
	align-items: center;
}

.menu {
	display: flex;
	justify-content: flex-end;
}

.navbar {
	width: 100%;
	height: 70px;
}

.navbar .nav {
	width: 638px;
	height: 100%;
	/* 让元素自动水平居中 */
	margin: 0 auto;
}

.navbar .nav ul {
	/* 相对定位 */
	position: relative;
	/* 弹性布局 */
	display: flex;
	/* 让子元素平均分配宽度 */
	justify-content: space-around;
	width: 100%;
	height: 100%;
}

.navbar .nav ul>li {
	width: 100%;
	height: 100%;
}

.navbar .nav ul>li>a {
	font-family: SourceHanSansSC-Normal;
	font-size: 16px;
	position: relative;
	/* 因为a元素是行内元素 必须将其转为行内块或者块级才能设置宽度和高度 */
	display: block;
	width: 100%;
	height: 100%;
	line-height: 70px;
	text-align: center;
}

.corner {
	position: absolute;
	top: 32px;
	right: 4px;
	width: 0px;
	/*  宽高设置为0，很重要，否则达不到效果 */
	height: 0px;
	border: 5px solid #fff;
	border-bottom-color: transparent;
	/* 设置透明背景色 */
	border-left-color: transparent;
	border-right-color: transparent;
}

.navbar .nav ul>li ol {
	width: 100%;
	background-color: #A5001C;
	box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
	/* 让盒子先沿着y轴缩放到0 也就是隐藏了 */
	transform: scaleY(0);
	/* 我们需要将盒子从上面滑动下来 设置一下缩放的中心点即可 设置到最上面的中间位置 */
	transform-origin: 50% 0;
	/* 设置过渡 */
	/* transition: all 0.1s; */
}

.navbar .nav ul>li ol li {
	height: 50px;
	border-bottom: 1px solid rgb(245, 245, 245);
}

.navbar .nav ul>li ol li a {
	display: block;
	width: 100%;
	height: 100%;
	line-height: 50px;
	text-align: center;
}

.navbar .nav ul>li ol li:hover {
	background-color: rgba(0, 0, 0, 0.03);
}

.navbar .nav ul>li:hover ol {
	transform: scaleY(1);
}

.navbar .nav ul>li:hover .lists {
	transform: scaleY(1);
}