@import './common.css';

.banner {
	height: 480px;
	background-image: url('../image/solution/datamarge/banner.jpg');
	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;
	text-align: left;
}
section .title::after {
	content: '';
	width: 100px;
	height: 4px;
	position: absolute;
	bottom: -30px;
	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%;
	align-items: center;
}
section.s1 {
	height: 410px;
}
section.s1 .fr {
	margin-top: 139px;
	align-items: flex-start;
	justify-content: space-between;
}

section.s1 .title::after {
	left: 3px;
}

section.s1 .item {
	position: relative;
	width: 308px;
	height: 150px;
	border-radius: var(--border-radius-card);
	background: #f7f9fc;
	box-sizing: border-box;
	border: 3px solid #ffffff;
	box-shadow: var(--shadow-base);
	margin-left: 24px;
	text-align: left;
}
section.s1 .item img {
	position: absolute;
	top: -19px;
	left: 32px;
	width: 40px;
	height: 40px;
}
section.s1 .item div {
	font-size: 16px;
	line-height: 20px;
	color: var(--text-color);
	margin-top: 70px;
	margin-left: 30px;
}
section.s1 .item span:last-of-type {
	font-size: 24px;
	font-weight: bold;
	line-height: 30px;
	color: var(--error-color);
}
section.s2 {
	width: 1280px;
	height: 310px;
	margin: auto;
	font-size: 20px;
	line-height: 30px;
	color: #ffffff;

	.mg-auto {
		display: flex;
		justify-content: center;
		align-items: center;
		width: 100%;
		height: 200px;
		margin: auto;
		background: url('../image/solution/research/s2_2.png') no-repeat center;
		background-size: 1280px 200px;

		.separate {
			margin: 0 4px;
		}
	}
}

section.s3 {
	height: 1040px;
}

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 0 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;
	text-align: left;
	margin-bottom: 14px;
}

section.s3 img{
	width: 100%;
	height: 610px;
	margin-top: 62px;
}