@charset "utf-8";
/* CSS Document */
/*联系我们*/
.new_bt {
    font-size: 36px;
    color: #083979;
    margin-top: -120px;
}
.contact {
  width: 1200px;
  margin: 0 auto;
  height: auto;
}
.contact_tx {
  border-left: 3px solid #e57a22;
  padding-left: 10px;
  height: 23px;
  display: block;
  float: left
}
.contact_img {
  height: 25px;
  float: left
}
.contact_tx span {
  line-height: 20px;
  position: relative;
  top: -3px;
  float: left;
  display: block;
}
.contact_map_reset {
            width: 100%;
        }
        /* 容器样式 */
        .contact_map_container {
            width: 1440;
            margin: 0 auto;
            display: flex;
            border: 1px solid #eee;
            overflow: hidden;
            box-shadow: 0 2px 8px rgba(0,0,0,0.1);
        }
        /* 通用区域样式（北京/上海） */
        .contact_map_section {
            flex: 1;
            position: relative;
            height: 400px;
            background-color: #f8f9fa;
            cursor: pointer; /* 鼠标悬停显示手型 */
        }
        /* 实景图容器 */
        .contact_map_bg {
            width: 100%;
            height: 100%;
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            opacity: 1;
            transition: opacity 0.3s ease; /* 渐变过渡 */
            position: absolute;
            top: 0;
            left: 0;
            z-index: 10; /* 实景图层级 */
        }
        /* 北京实景图 */
        .contact_map_beijing-bg {
            background-image: url(../img/contact_bj.jpg);
        }
        /* 上海实景图 */
        .contact_map_shanghai-bg {
            background-image: url(../img/contact_sh.jpg);
        }
        /* 地图插件容器 */
        .contact_map_map-container {
            width: 100%;
            height: 100%;
            position: absolute;
            top: 0;
            left: 0;
            z-index: 5; /* 地图层级低于实景图 */
            background-color: #f0f2f5; /* 地图加载前占位色 */
            display: flex;
            justify-content: center;
            align-items: center;
            font-size: 16px;
            color: #333;
        }
        /* 鼠标悬停：隐藏实景图，显示地图 */
        .contact_map_section:hover .contact_map_bg {
            opacity: 0; /* 实景图透明隐藏 */
            z-index: 5; /* 层级低于地图 */
        }
        .contact_map_section:hover .contact_map_map-container {
            z-index: 15; /* 地图层级置顶 */
        }
        /* 核心：蓝色区块（172x57 + 左侧垂直居中 + 无圆角） */
        .contact_map_location-tag {
            position: absolute;
            top: 50%;
            left: 0;
            transform: translateY(-50%);
            width: 172px;
            height: 50px;
            background-color: #093979; /* 蓝色背景 */
            color: #fff;
            font-size: 22px;
            font-weight: 500;
            letter-spacing: 1px;
            text-align: center;
            border-radius: 0; /* 无圆角 */
            z-index: 99; /* 始终置顶，不被遮挡 */
            /* 关键：让文字+渐变条整体垂直居中 */
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 0 0 12px; /* 移除多余内边距，精准居中 */
        }
        /* 文字+渐变条容器（作为整体居中） */
        .contact_map_tag-wrapper {
            position: relative;
            display: inline-block;
            text-align: center;
            line-height: 1.4; /* 重置行高 */
        }
        /* 文字容器 */
        .contact_map_tag-text {
            display: inline-block;
        }
        /* 渐变条：文字正下方 + 同宽 + 2px高 + 间距10px + 黄到透明 */
        .contact_map_tag-wrapper::after {
            content: "";
            position: absolute;
            bottom: -10px; /* 距离文字底部10px */
            left: 0;
            width: 100%; /* 完全匹配文字宽度 */
            height: 2px;
            background: linear-gradient(90deg, #e57a22 0%, transparent 100%);
            z-index: 100;
        }
        /* 响应式适配 */
        @media (max-width: 768px) {
            .contact_map_container {
                flex-direction: column;
            }
            .contact_map_section {
                height: 300px;
            }
            .contact_map_location-tag {
                width: 140px;
                height: 46px;
                font-size: 18px;
                left: 15px;
            }
            .contact_map_tag-wrapper::after {
                height: 1.5px;
                bottom: -8px; /* 小屏幕间距适配 */
            }
        }


footer{
	position: relative;
}