body {
	background-color: transparent;
	background-image: linear-gradient(180deg, #3279FF66 0%, #fff 13%);
}

.banner {
	width: 100%;
	height: auto;
	padding: 40px 17%;
	filter: brightness(100%) contrast(100%) saturate(100%) blur(0px) hue-rotate(0deg);
	background-color: #FFFFFF00;
	background-image: url(../images/banner.webp);
	background-position: center right;
	background-repeat: no-repeat;
	background-size: 46%;
	opacity: 1;
	transition: background 0.3s, border-radius 0.3s, opacity 0.3s;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.b_wrapper {
	width: 48%;
	display: none;
	height: 500px;
	object-fit: cover;

}

.web_text {
	position: relative;
	width: 50%;
	height: auto;
	box-sizing: border-box;
}

.web_text h1 {
	font-size: 32px;
	line-height: 1.4;
	font-weight: 700;
	color: #1a1a2e;
	margin-bottom: 15px;
}

.web_text .subtitle {
	font-size: 16px;
	color: #4a5568;
	margin-bottom: 25px;
	line-height: 1.6;
}

.web_box {
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
}

.web_inner_box {
	width: calc(50% - 6px);
	display: flex;
	align-items: center;
	padding: 12px;
	background: rgba(255,255,255,0.95);
	border-radius: 12px;
	box-shadow: 0 4px 15px rgba(0,0,0,0.08);
	transition: all 0.3s ease;
}

.web_inner_box:hover {
	transform: translateY(-3px);
	box-shadow: 0 8px 25px rgba(0,0,0,0.12);
	background: #fff;
}

.web_inner_box img {
	width: 48px;
	height: 48px;
	border-radius: 10px;
	margin-right: 12px;
	object-fit: cover;
	flex-shrink: 0;
	box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.web_inner_text {
	flex: 1;
	min-width: 0;
}

.web_inner_text p:nth-of-type(1) {
	font-size: 14px;
	font-weight: 600;
	color: #1a1a2e;
	margin-bottom: 3px;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.web_inner_text p:nth-of-type(2) {
	font-size: 12px;
	color: #718096;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.web_inner_text p:nth-of-type(3) {
	font-size: 11px;
	color: #667eea;
	font-weight: 500;
	margin-top: 2px;
}

@media(max-width:760px) {
	.banner {
		width: 96%;
		padding: 20px 2%;
		flex-wrap: wrap;
		background-image: none;
	}
	.b_wrapper{
		display: block;
	}
	.web_text {
		width: 100%;
		margin: auto;
		padding: 10px;
	}

	.web_text h1 {
		font-size: 22px;
	}
	
	.web_text .subtitle {
		font-size: 14px;
		margin-bottom: 15px;
	}

	.web_box {
		gap: 10px;
	}

	.web_inner_box {
		width: 100%;
		padding: 10px;
	}

	.web_inner_box img {
		width: 45px;
		height: 45px;
	}

	.web_inner_text p:nth-of-type(1) {
		font-size: 14px;
	}

	.web_inner_text p:nth-of-type(2) {
		font-size: 12px;
	}

	.web_inner_text p:nth-of-type(3) {
		font-size: 11px;
	}

	.b_wrapper {
		width: 100%;
		display: block;
		height: 230px;
	}
}
