/* banner开始 */
.szbanner {
	height: 100vh;
}

.szbanner .sztext {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	color: #fff;
}

.szbanner .sztext h5 {
	font-size: var(--f95);
	line-height: 1.5;
	letter-spacing: .086rem;

}

.szbanner .sztext p {
	font-size: var(--f24);
	line-height: 1.5em;
	margin: .05rem 0 0.375rem;
}

.szbanner .sztext div {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.1125rem;
}

.szbanner .sztext div a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 1rem;
	height: 0.33rem;
	border: 1px solid #fff;
	font-size: var(--f18);
	color: #fff;
    transition: all .3s;
	border-radius: .0625rem;
	position: relative;
	z-index: 0;
}

.szbanner .sztext div a::before {
	content: '';
	position: absolute;
	width: calc(100% + 2px);
	height: calc(100% + 2px);
	background: var(--btnBgColor);
	background-size: cover;
	left: -1px;
	top: -1px;
	z-index: -1;
	opacity: 0;
	border-radius: .0625rem;
}

/* .szbanner .sztext div a:hover::before {
 *     opacity: 1;
 * } */

.szbanner .sztext div a:hover {
    font-size: var(--f20);
}
.szbanner .sztext div a:first-child::before {
	opacity: 1;
}

.szbanner .sztext {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	height: 100%;
}

.szbanner .mbx{
	bottom: 6vh;
}

/* banner结束 */




/* 开发的产品开始 */
.szbox {
	background: #f7f8f9;
}

.szbox ul {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 0.35rem 0.35rem;
}

.szbox ul li a {
	display: flex;
	align-items: flex-start;
	gap: 0.02rem;
	padding: 0.28rem 0.25rem 0.28rem;
	position: relative;
	z-index: 0;
	background: #fff;
	border-radius: .0625rem;
	overflow: hidden;
	transition: all .5s;
}

.szbox ul li a::before {
	content: '';
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	background: url(../images/szlisthoverbg.jpg);
	background-size: cover;
	z-index: -1;
	opacity: 0;
	transition: all .5s;
}

.szbox ul li a:hover {
	box-shadow: 0px 0px 120px rgba(110, 110, 110, 0.26);
}

.szbox ul li a:hover::before {
	opacity: 1;

}

.szbox ul li a img {
	flex-shrink: 0;
	width: 0.65rem;
	aspect-ratio: 1/1;
	object-fit: contain;
}

.szbox ul li a>div h5 {
	font-size: var(--f32);
	line-height: 1.5;
	color: #323232;
	margin-bottom: 0.1rem;
}

.szbox ul li a>div h6 {
	color: #323232;
	font-size: var(--f20);
	line-height: 1.5;
}

.szbox ul li a>div p {
	color: #949494;
	font-size: var(--f16);
	line-height: 2.062em;
	margin-bottom: 0.3125rem;

	margin: 0.1875rem 0 0.15rem;
}

.szbox ul li a>div div {
	width: 1.25625rem;
	height: 0.325rem;
	border-radius: 0.15rem;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.1875rem;
	background: var(--noBtnBgColor);
	background-size: cover;
	position: relative;
	color: #fff;
	z-index: 0;
	font-size: var(--f18);
}


.szbox ul li a>div div::before {
	content: '';
	position: absolute;
	width: 100%;
	border-radius: 0.15rem;
	height: 100%;
	left: 0;
	top: 0;
	background: var(--btnBgColor);
	background-size: cover;
	z-index: -1;
	opacity: 0;
	transition: all .5s;
}

.szbox ul li a>div div i {
	color: #fff;
	font-size: var(--f30);
}

.szbox ul li a:hover>div div::before {
	opacity: 1;
}

/* 开发的产品结束 */