/* 联系信息容器 */
.contact-container {
	width: 1595rem;
	background-color: #ffffff;
	box-shadow: 0rem 2rem 32rem 0rem rgba(0, 0, 0, 0.15);
	margin: 0 auto;
	margin-top: 93rem;
	margin-bottom: 100rem;
	box-sizing: border-box;
	display: flex;
	justify-content: space-between;
	overflow: hidden;
	padding: 40rem 66rem 54rem 66rem;
}
/* 地图区域 */
.map-section {
    width: 760rem;
	height: 500rem;
	transition: transform 0.3s ease;
	/* 平滑过渡效果 */
}
.map-section:hover {
	transform: scale(1.05);
}
.map-section img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
/* 信息区域 */
.info-section {
    width: 680rem;
    padding: 30rem 35rem;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
}
.info-section h2 {
    font-size: 24rem;
    color: #222;
    margin-top: 0;
    margin-bottom: 45rem;
}
.info-item {
    margin-bottom: 16rem;
}
.info-item p {
    margin: 0;
    font-size: 16rem;
    color: #444;
    line-height: 1.7;
}
.info-item p strong {
    font-weight: 500;
    color: #333;
}
/* 二维码区域 */
.qr-code-area {
    margin-top: 50rem;
    text-align: left;
}
.qr-code-area img {
    display: block;
    width: 143rem;
    height: 143rem;
    margin-bottom: 10rem; 
}
.qr-caption {
    font-size: 16rem;
    color: #666;
    margin: 0;
}