.cp-wrap {
	padding: 62px 0 78px;
	background: #f6f7f9;
}
.cp-main {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
}

/* 左侧的nav，其余页面公用 */
.cp-main .pro-nav {
	width: 21.667%;
}

.pro-nav h5 {
	width: 100%;
	height: 79px;
	border-radius: 8px 8px 0px 0px;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;

	font-size: 28px;
	font-weight: 400;
	color: #ffffff;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	/* 相对的是父元素的宽度，但是当前元素100%继承了宽度 */
	/* padding-left: 12.7%; */
	padding-left: 33px;
}

.pro-nav ul li a {
	display: block;
	background-color: #fff;
	padding: 21px 15px 21px 33px;
	border-bottom: 2px solid #f6f7f9;
	color: #333747;
	font-size: 16px;
	font-weight: 500;
	cursor: pointer;
	/* transition: all .45s linear; */
}

/* 鼠标hover */
.pro-nav ul li a:hover,
.pro-nav ul li a.current {
	background-color: #f2f3f5;
	font-weight: bold;
	color: #075cac;
}

/* 右侧产品列表 */
.cp-main .pro-list {
	width: 75.84%;
	margin-top: 25px;
}

/* 产品列表模块 */
.pro-list .pro-section {
	margin-top: 40px;
}

/* 第一个不用拉开上方距离 */
.pro-list .pro-section:first-child {
	margin-top: 0;
}

.pro-list .pro-section h5 {
	width: 100%;
	font-size: 28px;
	font-weight: 800;
	color: #064d8f;
	text-align: center;
}

/* 产品列表 */
.pro-section .section-list {
	display: flex;
	flex-wrap: wrap;
	margin-top: 47px;
}

.pro-section .section-list .section-item {
	width: 31.868%;
	height: 323px;
	background-color: #ffffff;
	box-shadow: 0px 8px 12px 0px rgba(27, 27, 27, 0.18);
	border-radius: 16px;
	margin-right: 2.197%;
	background-repeat: no-repeat;
	background-position: right bottom;
	padding: 12px 19px 0 26px;
	mix-blend-mode: multiply;
	/* 多个之间的垂直间隔 */
	margin-bottom: 20px;
}

.pro-section .section-list .section-item:nth-of-type(3n) {
	margin-right: 0;
}

.pro-section .section-list .section-item .img {
	width: 100%;
	height: auto;
	padding-bottom: 75.1%;
	position: relative;
	overflow: hidden;
}
.pro-section .section-list .section-item .img img {
	/* 正片叠底 */
	mix-blend-mode: multiply;
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	object-fit: contain;
	transition: all 0.45s ease;
}

/* 标题 */
.pro-section .section-list .section-item .text .title {
	margin-top: 9px;
	font-size: 18px;
	font-weight: 800;
	color: #2d2d2d;
	text-align: center;
	/* 两行溢出 */
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	text-overflow: ellipsis;
	overflow: hidden;
}

.pro-section .section-list .section-item .text .more {
	font-size: 14px;
	font-weight: 500;
	color: #085dad;
	/* margin-top: 36px; */
	margin-top: 25px;
	display: flex;
	justify-content: center;
	align-items: center;
}

.pro-section .section-list .section-item .text .more span {
	transition: all 0.45s ease;
}
.pro-section .section-list .section-item .text .more span:nth-child(2) {
	margin-left: 4px;
}

/* 鼠标放置效果 */
.pro-section .section-list .section-item:hover {
	background-color: #e8ecf5;
	border: 1px solid #075cac;
	box-shadow: 0px 12px 20px 0px rgba(7, 92, 172, 0.2);
}

.pro-section .section-list .section-item:hover .text .title {
	color: #075cac;
}

.pro-section .section-list .section-item:hover .more span:nth-child(1) {
	transform: translateX(-5px);
}
.pro-section .section-list .section-item:hover .more span:nth-child(2) {
	transform: translateX(5px);
}

.pro-section .section-list .section-item:hover .img img {
	transform: scale(1.2);
}

/* 隐藏icon */
.pro-nav .icon {
	display: none;
}

/* 产品列表面板信息展示 */
.pro-panel .panel-title {
	font-size: 26px;
	font-weight: 800;
	color: #064d8f;
	padding-bottom: 17px;
	border-bottom: 1px solid #dde1e9;
	margin-bottom: 44px;
	margin-top: 37px;
}

/* 下方的列表信息 */
.panel-list {
	display: flex;
	align-items: flex-start;
}

.panel-list .pro-title {
	/* 限制宽度，但不限制高度 */
	width: 139px;
	height: auto;
	padding: 17px 13px;
	background: #02b3df;
	font-size: 16px;
	font-weight: 800;
	color: #ffffff;
	/* 空间不足，不进行缩小 */
	flex-shrink: 0;
	text-align: center;
}

/* 右侧的列表 */
.pro-box {
	margin-left: 15px;
	display: flex;
	flex-wrap: wrap;
	margin-bottom: 39px;
}

.pro-box li {
	width: 246px;
	padding-top: 13px;
	padding-bottom: 14px;
	padding-left: 19px;
	padding-right: 18px;
	margin-right: 9px;
	margin-top: 10px;
	background-color: #fff;
	border: 1px solid transparent;
}
.pro-box li:hover {
	border: 1px solid #075cac;
}
.pro-box li:hover a {
	color: #075cac;
	/* text-decoration: underline  #075CAC; */
	background-position: left bottom;
	background-size: 100% 1px;
}

.pro-box p {
	/* 两行溢出 */
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	text-overflow: ellipsis;
	overflow: hidden;
}

.pro-box a {
	font-size: 13px;
	font-weight: 500;
	color: #282828;
	line-height: 1.54;
	text-align: center;
	cursor: pointer;
	/* hover下划线效果 */
	background-image: linear-gradient(to right, #075cac, #075cac);
	background-size: 0 1px;
	background-repeat: no-repeat;
	background-position: right bottom;
	transition: background-size 0.5s ease;
	vertical-align: text-bottom;
}
.pro-box li:nth-child(3n) {
	margin-right: 0;
}

/* 前面3个不用margin-top的距离 */
.pro-box li:nth-child(-n + 3) {
	margin-top: 0;
}

@media (max-width: 1200px) {
	.pro-section .section-list .section-item {
		height: 300px;
	}
	.pro-box li {
		width: 32%;
		margin-right: 2%;
	}
}

@media (max-width: 992px) {
	/* 修改原本的图片大小 */
	.nybanner img {
		width: 100%;
		height: 100%;
		object-fit: cover;
		object-position: center;
	}

	.cp-main {
		flex-wrap: wrap;
	}
	.cp-main .pro-nav,
	.cp-main .pro-list {
		width: 100%;
	}

	.pro-nav h5 {
		display: flex;
		align-items: center;
		justify-content: space-between;
		padding-right: 25px;
	}
	.pro-nav .icon {
		display: block;
		cursor: pointer;
		transition: all 0.45s ease;
	}

	.pro-nav .icon.active {
		transform: rotate(180deg);
	}
	/* 隐藏ul元素 */
	.pro-nav ul {
		display: none;
	}
}

@media (max-width: 768px) {
	.cp-wrap {
		padding-top: 45px;
		padding-bottom: 45px;
	}
	.pro-nav h5 {
		height: 65px;
		font-size: 24px;
	}
	.pro-nav .icon {
		width: 25px;
	}

	.pro-nav ul li a {
		padding-left: 17px 15px;
	}

	.pro-list .pro-section h5 {
		font-size: 20px;
	}

	.pro-section .section-list {
		justify-content: space-between;
		align-items: stretch;
		margin-top: 35px;
	}
	.pro-section .section-list .section-item {
		/* 数值根据效果进行调试 */
		/* height: 4rem; */
		width: 47%;
		height: auto;
		margin-right: 0;
		padding: 15px;
		padding-bottom: 20px;
		background-size: 60%;
	}

	.pro-section .section-list .section-item .text .title {
		font-size: 16px;
	}
	.pro-section .section-list .section-item .text .more {
		margin-top: 15px;
	}

	/* 修改面板列表文字 */
	.pro-panel .panel-title {
		font-size: 20px;
		margin-top: 25px;
		margin-bottom: 25px;
	}

	.panel-list {
		flex-wrap: wrap;
	}

	.panel-list .pro-title,
	.panel-list .pro-box {
		width: 100%;
	}
	.panel-list .pro-title {
		margin-bottom: 10px;
	}

	.pro-box {
		justify-content: space-between;
		margin-left: 0;
	}
	.pro-box li {
		width: 48.5%;
		margin-right: 0;
		padding-left: 10px;
		padding-right: 10px;
	}

	.pro-box li:nth-child(-n + 3) {
		margin-top: 10px;
	}
}

@media (max-width: 576px) {
	.pro-section .section-list {
		justify-content: center;
	}
	.pro-section .section-list .section-item {
		width: 90%;
	}
}
