body {
	background: white;
	padding:0;
	margin:0;
}

.header{
	background:#fff;
	min-width:1160px;
	
}
.menu{
		width:1160px;
		height:24px;
		margin:0 auto;
		padding:50px 0 40px;
	
}
.menu ul{
	display: flex;
	justify-content: end;
	list-style: none;
	margin:0;padding:0;
}
.menu li{
	margin-left: 60px;
	font-size:14px;
	padding-bottom:8px;
}
.menu li a{
	text-decoration: none;
	color:#666666
}
.menu li.on{
	border-bottom:2px solid #230970;

}
.menu li.on a{
	color:#230970;
}
.bg-img {
	position: absolute;
	width: 100%;
	top: 0;
	left: 0;
	z-index: -1;
}

.main {
	width: 1190px;
	/* background-color: red; */
	margin: auto;
	display: flex;
	flex-direction: column;
}

.content {
	flex: 1 1 auto;
	padding-top: calc(189 / 1920 * 100vw);
}

.footer {
	flex: 0 0 auto;
}

.top-div {
	display: flex;
}

.top-img {
	width: 704px;
	height: 592px;
	object-fit: cover;
}

.p-title {
	font-family: 'SourceHanSansCN-Medium, SourceHanSansCN';
	font-weight: 500;
	color: #230970;
}

p {
    display: block;
    margin-block-start: 20px;
    margin-block-end: 20px;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
}

.line {
	width: 34px;
	height: 6px;
	background: #230970;
}

.desc {
	width: 278px;
	font-size: 12px;
	font-family: SourceHanSansCN-Medium, SourceHanSansCN;
	font-weight: 500;
	color: #7664AC;
	letter-spacing: 1px;
	margin-top: calc(17 / 1920 * 100vw);
	line-height: 26px;
}

.bottom-div {
	display: flex;
	margin-top: calc(349 / 1920 * 100vw);
	margin-bottom: calc(157 / 1920 * 100vw);
}

.bottom-p-title {
	width: auto;
	height: 22px;
	font-size: 18px;
	font-family: 'SourceHanSansCN-Medium, SourceHanSansCN';
	font-weight: 500;
	color: #230970;
	margin-top: calc(52 / 1920 * 100vw);
}

.bottom-p-desc {
	width: 412px;
	height: 51px;
	font-size: 14px;
	font-family: SourceHanSansCN-Medium, SourceHanSansCN;
	font-weight: 500;
	color: #999999;
	margin-top: 27px;
}

.bottom-img {
	width: 610px;
	margin-left: 159px;
}

/* 客服信息样式 */
.customer-service {
	padding: 20px;
	border-top: 1px solid #e0e0e0;
	margin-top: 30px;
	margin-bottom: 20px;
}

.customer-service a:hover {
	text-decoration: underline;
}

.customer-service img {
	max-width: 100%;
	height: auto;
}

/* 响应式设计 */
@media (max-width: 768px) {
	.header {
		min-width: auto;
	}
	
	.menu {
		width: 100%;
		padding: 20px;
	}
	
	.menu ul {
		justify-content: center;
	}
	
	.menu li {
		margin-left: 20px;
	}
	
	.main {
		width: 100%;
		padding: 0 20px;
	}
	
	.top-div {
		flex-direction: column;
		align-items: center;
	}
	
	.top-img {
		width: 100%;
		height: auto;
		max-width: 500px;
	}
	
	.bottom-div {
		flex-direction: column;
		align-items: center;
	}
	
	.bottom-img {
		width: 100%;
		max-width: 400px;
		margin-left: 0;
		margin-top: 20px;
	}
	
	.bottom-p-desc {
		width: 100%;
		height: auto;
	}
	
	.desc {
		width: 100%;
		text-align: center;
	}
	
	.customer-service {
		padding: 15px;
		flex-direction: column !important;
		gap: 20px !important;
		text-align: center;
	}
	
	.customer-service img {
		width: 200px !important;
		height: 152px !important;
		max-width: 100%;
	}
}