/* 基础盒模型重置 */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: #333;
  background-color: #f7f7f7; /* 背景微灰，衬托白色卡片 */
  padding: 40px 20px;
}

/* 主容器 */
.contact-container {
  display: flex;
  max-width: 1200px;
  margin: 0 auto;
  gap: 30px; /* 左右两栏的间距 */
  background-color: #fff;
  padding: 30px;
  border-radius: 4px;
}

/* 左侧栏：占 2/3 宽度 */
.left-box {
  flex: 2; /* 核心：分配 2 份空间 */
  display: flex;
  flex-direction: column;
}

/* 右侧栏：占 1/3 宽度 */
.right-box {
  flex: 1; /* 核心：分配 1 份空间 */
  display: flex;
  flex-direction: column;
}

/* 栏目全局标题 */
.section-title {
  font-size: 24px;
  font-weight: bold;
  color: #555;
  margin-bottom: 20px;
}

/* 左侧地图容器 */
.map-wrapper {
  width: 100%;
  height: 480px; /* 控制地图高度 */
  background-color: #e5e5e5;
  border: 1px solid #e0e0e0;
}

.mock-map {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #888;
  font-size: 16px;
}

/* 右侧宣传图容器 */
.wechat-image-wrapper {
  width: 100%;
  border: 1px solid #e0e0e0;
  background-color: #eee;
  overflow: hidden;
  margin-bottom: 25px;
  display: flex;
}

/* 保证右侧图片等比缩放且填满容器 */
.wechat-img {
  width: 100%;
  height: auto;
  display: block;
}

/* 文字排版 */
.info-content {
  line-height: 1.6;
  font-size: 15px;
  color: #444;
}

.contact-name {
  font-size: 22px;
  font-weight: bold;
  color: #222;
  margin-bottom: 15px;
}

.address-text {
  color: #666;
  margin-bottom: 15px;
}

.info-content p {
  margin-bottom: 10px;
}

.info-content strong {
  color: #222;
}

.info-content a {
  color: #0066cc;
  text-decoration: none;
}

.info-content a:hover {
  text-decoration: underline;
}

/* 移动端自适应：屏幕宽度小于 768px 时自动变为单列堆叠 */
@media (max-width: 768px) {
  .contact-container {
    flex-direction: column;
    padding: 15px;
    gap: 20px;
  }
  
  .map-wrapper {
    height: 300px; /* 手机端适当调矮地图高度 */
  }
}




/* 卡片基础调整：改为上下堆叠布局20260715 */
.product-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    border: 1px solid #ededed;
    border-radius: 4px;
    overflow: hidden;
    background: #fff;
    text-decoration: none;
}

/* 图片容器：固定高度并限制图片比例 */
.product-img {
    width: 100%;
    height: 180px; /* 根据实际视觉调整高度 */
    overflow: hidden;
    border-bottom: 1px solid #f0f0f0;
}

.product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* 保证图片不变形铺满 */
}

/* 文字区域调整 */
.feature-text {
    padding: 15px;
}

.feature-text h3 {
    font-size: 16px;
    color: #333;
    margin-bottom: 8px;
}

.feature-text p {
    font-size: 13px;
    color: #666;
    line-height: 1.5;
}


/* 让方框内的图片自适应并填满容器，保持比例不变形 */
.banner-video-box img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* 如果你希望图片完整显示不被裁剪，可以改成 contain */
    object-position: center; /* 居中对齐 */
    display: block;
}




/* ==================== 新增：复选框自定义样式 20260719==================== */
        .checkbox-group-wrapper {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }
        .checkbox-options {
            display: flex;
            flex-wrap: wrap;
            gap: 10px 15px;
        }
        .checkbox-options label {
            display: flex;
            align-items: center;
            font-size: 0.85rem;
            font-weight: bold;
            color: #111;
            cursor: pointer;
            margin-bottom: 0;
        }
        /* 隐藏原生复选框 */
        .checkbox-options input[type="checkbox"] {
            appearance: none;
            -webkit-appearance: none;
            width: 16px;
            height: 16px;
            border: 3px solid #36a236; /* 匹配截图中的深绿色粗边框 */
            border-radius: 2px;
            margin-right: 6px;
            position: relative;
            cursor: pointer;
            background-color: transparent;
        }
        /* 选中状态 */
        .checkbox-options input[type="checkbox"]:checked {
            background-color: #36a236;
        }
        /* 选中时的对勾 */
        .checkbox-options input[type="checkbox"]:checked::after {
            content: '';
            position: absolute;
            left: 3px;
            top: 0px;
            width: 4px;
            height: 8px;
            border: solid white;
            border-width: 0 2px 2px 0;
            transform: rotate(45deg);
        }