/* --- Banner 部分保持不变 --- */
.banner-box {
  max-width: 1920px;
  min-width: 1450px;
  margin: 0 auto;
  line-height: 1;
  position: relative;
  padding-top: 80px;
}
.banner-box .bg {
  display: block;
  width: 100%;
  height: 400px;
  object-fit: cover;
}
.banner-box .content-box {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.banner-box .content-box .inner {
  width: 1320px;
  margin: 0 auto;
  box-sizing: border-box;
  padding-top: 190px;
  line-height: 1;
}
.banner-box .content-box .inner .name {
  font-weight: bold;
  font-size: 50px;
  color: #FFFFFF;
  margin-bottom: 27px;
}
.banner-box .content-box .inner .img-1 {
  display: block;margin-bottom: 27px;
}

.banner-box .content-box .inner .img-2 {
  display: block;
}

/* --- 信息区块布局 --- */
.info-box {
  max-width: 1920px;
  min-width: 1450px;
  margin: 50px auto;
  line-height: 1;
}
.info-box .inner {
  width: 1320px;
  margin: 0 auto;
  background: #fff;
  padding: 88px 28px;
  box-sizing: border-box;
  display: flex;
}

/* --- 核心修改：地图容器 ID 样式 --- */
/* 这里确保三个 ID 都有固定的宽度和高度 */
#map1, #map2, #map3 {
  width: 672px;
  height: 476px;
  margin-right: 28px;
  background-color: #f0f0f0; /* 地图加载前的底色 */
  position: relative;
}

.info-box .inner .right {
  flex: 1;
  padding-top: 36px;
}
.info-box .inner .right .p1 {
  font-size: 28px;
  color: #333333;
  margin-bottom: 30px;
}
.info-box .inner .right .p2 {
  font-size: 18px;
  color: #333333;
  margin-bottom: 30px;
  line-height: 1.5; /* 增加行高，多行地址不拥挤 */
}
.info-box .inner .right .p3 {
  display: flex;
}
.info-box .inner .right .p3 .item {
  margin-right: 20px;
}
.info-box .inner .right .p3 .item img {
  width: 134px;
  height: 134px;
}
.info-box .inner .right .p3 .item .name {
  font-size: 14px;
  color: #333;
  text-align: center;
  padding-top: 10px;
}

/* --- 核心修改：图标 ID 样式 --- */
/* 将原来的 #mapContainer 替换为并列的三个 ID */
#map1 .icon, #map2 .icon, #map3 .icon { 
  background: url(//a.amap.com/lbs-dev-yuntu/static/web/image/tools/creater/marker.png) no-repeat; 
}
#map1 .icon-cir, #map2 .icon-cir, #map3 .icon-cir { 
  height: 31px; 
  width: 28px; 
}
#map1 .icon-cir-blue, #map2 .icon-cir-blue, #map3 .icon-cir-blue { 
  background-position: -11px -55px; 
}

/* --- 信息窗体（弹窗）样式 --- */
.myinfowindow {
  width: 240px;
  min-height: 50px;
}
.myinfowindow h5 { 
  height: 20px; 
  line-height: 20px; 
  overflow: hidden; 
  font-size: 14px; 
  font-weight: bold; 
  width: 220px; 
  text-overflow: ellipsis; 
  word-break: break-all; 
  white-space: nowrap; 
  margin: 0;
}
.myinfowindow div { 
  margin-top: 10px; 
  min-height: 40px; 
  line-height: 20px; 
  font-size: 13px; 
  color: #6f6f6f; 
}

























/* --- 变量定义 --- */
:root {
  --main-red: #BE2626;
  --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* --- 核心卡片容器：错层设计 --- */
.info-box .inner {

  padding: 70px 50px;
  box-sizing: border-box;
  display: flex;
  position: relative;
  z-index: 10;
  /* 基础投影 */
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

/* 错层装饰：在卡片背后露出一个红色斜块，增加空间感 */
.info-box .inner::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 160px;
  height: 100%;
  background: var(--main-red);
  z-index: -1;
  /* 利用 clip-path 制造斜切感 */
  clip-path: polygon(100% 0, 0% 0, 60% 100%, 100% 100%);
  opacity: 1;
}

/* 卡片顶部的品牌色细线 */
.info-box .inner::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 300px;
  height: 4px;
  background: var(--main-red);
}

/* --- 左侧地图：画框质感 --- */
#map1, #map2, #map3 {
  width: 672px;
  height: 476px;
  margin-right: 60px;
  background-color: #eee;
  position: relative;
  /* 增加悬浮感阴影 */
  box-shadow: 20px 20px 0px #f4f4f4; 
  border: 1px solid #f0f0f0;
}

/* --- 右侧信息区域：文字分级设计 --- */
.info-box .inner .right {
  flex: 1;
  padding-top: 15px;
  padding-right:80px;
}

/* 公司标题：极简风格 */
.info-box .inner .right .p1 {
  font-size: 30px;
  color: #111;
  margin-bottom: 50px;
  font-weight: 800;
  letter-spacing: -0.5px;
}

/* 联系信息：图标文字化 */
.info-box .inner .right .p2 {
  font-size: 18px;
  color: #666;
  margin-bottom: 25px;
  line-height: 1.4;
  display: flex;
  align-items: center;
}

/* 为每一行增加一个极简红色下标线 */
.info-box .inner .right .p2 {
  border-bottom: 1px solid #f2f2f2;
  padding-bottom: 15px;
  transition: var(--transition);
}

.info-box .inner .right .p2:hover {
  color: var(--main-red);
  padding-left: 10px; /* 交互时产生向右滑动的动态感 */
  border-bottom-color: var(--main-red);
}

/* --- 二维码区域：极简对齐 --- */
.info-box .inner .right .p3 {
  display: flex;
  margin-top: 50px;
  gap: 40px;
}

.info-box .inner .right .p3 .item {
  text-align: left;
}

.info-box .inner .right .p3 .item img {
  width: 100px;
  height: 100px;
  border-radius: 0; /* 保持硬朗线条 */
  border: 1px solid #eee;
  padding: 5px;
  background: #fff;
}

.info-box .inner .right .p3 .item .name {
  font-size: 12px;
  color: #999;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 10px;
}


























