@import './common.css';

.banner {
	height: 480px;
	background-image: url('../image/product/data/banner.png');
	position: relative;
	background-position: center top;
	color: #fff;
	background-color: #090100;
}

.banner .banner-title {
	position: relative;
	font-weight: bold;
	position: absolute;
	top: 219px;
	font-size: 40px;
	padding-left: 30px;
}
.banner .banner-title::before{
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 10px;
	height: 100px;
	background-color: var(--primary-color);
}
.banner .banner-text {
	position: absolute;
	top: 290px;
	font-size: 24px;
	padding-left: 30px;
}
section {
	display: flex;
	color: var(--text-color);
}
section.grey {
	background: #f2f6fa;
}
section .title {
	position: relative;
	font-size: 32px;
	font-weight: bold;
	line-height: 40px;
	color: var(--text-color);
	text-align: center;
}
section .title::after {
	content: '';
	width: 100px;
	height: 4px;
	position: absolute;
	bottom: -30px;
	left: 50%;
	transform: translateX(-50%);
	background-color: var(--primary-color);
}
section .desc {
	font-size: 16px;
	line-height: 24px;
	color: var(--text-color);
	margin-top: 93px;
	text-align: center;
}
section .fr {
	width: 100%;
	flex-direction: column;
	align-items: center;
	margin-top: 120px;
}
section.s1 {
	height: 510px;
}
section.s1 .fr {
	flex-direction: row;
	width: fit-content;
	margin-top: 120px;
}
section.s1 .fr img {
	width: 394px;
	height: 264px;
	margin-right: 45px;
}
section.s1 .fr .s1-title {
	font-size: 32px;
	font-weight: bold;
	line-height: 40px;
	color: var(--text-color);
}
section.s1 .fr .s1-desc {
	margin-top: 48px;
	font-size: 16px;
	line-height: 24px;
	color: var(--text-color);
}

section.s2 {
	height: 1150px;
	overflow: hidden;
}
/* section.s2 .mg-auto{
	overflow: hidden;
} */
section.s2 .imgs {
	position: relative;
	margin-top: 90px;
	width: 1280px;
	height: 780px;
}
section.s2 .imgs .img img{
	position: relative;
	width: 1280px;
	height: 780px;
}
section.s2 .imgs .img div{
	position: absolute;
	color: #666666;
	font-size: 20px;
	letter-spacing: 2px;
	line-height: 25px;
	background-color: #ffffff;
}
section.s2 .imgs img,
section.s2 .imgs .img {
	position: relative;
	width: 100%;
	height: 100%;
}
section.s2 .imgs > img:nth-child(1) {
	position: absolute;
	left: -81px;
    bottom: -55px;
	width: 130px;
	height: 130px;
}
section.s2 .imgs > img:nth-child(2) {
	position: absolute;
	top: -17px;
	right: -176px;
	width: 200px;
	height: 200px;
}
section.s3 {
	height: 1020px;
}
section.s3 .cards {
	width: 100%;
	margin-top: 90px;
	display: grid;
	grid-template-columns: repeat(auto-fill, 416px);
	column-gap: 16px;
	row-gap: 32px;
}

section.s3 .cards .item {
	width: 416px;
	min-height: 168px;
	border-radius: var(--border-radius-card);
	background: linear-gradient(180deg, #f3f5f8 1%, #ffffff 99%);
	box-sizing: border-box;
	border: 2px solid #ffffff;
	box-shadow: var(--shadow-base);
	padding: 24px 20px 0 40px;
}
section.s3 .cards .item:hover .item-name {
	color: var(--primary-color);
}
section.s3 .cards .item .icon {
	width: 50px;
	height: 50px;
	border-radius: var(--border-radius-card);
	background: #DBDEFB;
	display: grid;
	place-items: center;
	color: var(--primary-color);
	font-size: 20px;
}

section.s3 .cards .item .item-name {
	font-size: 16px;
	font-weight: bold;
	line-height: 20px;
	color: var(--text-color);
	margin-top: 16px;
}
section.s3 .cards .item .item-desc {
	font-size: 14px;
	font-weight: normal;
	line-height: 18px;
	color: var(--text-color-weak);
	margin-top: 16px;
	margin-bottom: 12px;
}
