/* 全局样式 */
body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    color: #000;
    overflow-x: hidden; /* 禁止横向滚动 */
}

/* 背景图设置 */
.header {
    position: relative;
    background: url('img/背景.png') no-repeat center center; /* 背景图居中 */
    background-size: 100% auto; /* 关键：完整显示图片，宽度100%，高度按比例自适应 */
    /* 或者使用：background-size: 100% auto; （效果类似） */
    width: 100%; /* 确保宽度占满 */
    height: 90vh;
    margin-top: 60px; /* 如果顶部有固定导航栏，留出空间 */
    color: #000000; /* 文字颜色 */
}

.header-content {
    display: flex;
    justify-content: space-between;
    width: 100%;
    margin: 0 auto;
    z-index: 1;
}

.header-left {
    display: block;
    flex: 1;
    padding-right: 20px;
}

.header-left h1 {
    width: 100%;
    font-size: 3.5em;
    font-weight: 900;
    margin-top: 120px;
    margin-left: 40px;
    margin-bottom: 20px;
    color: #000000; /* 文字颜色 */
}

.header-left p {
    width: 65%;
    margin-top: 70px;
    margin-left: 40px;
    font-size: 1.6em;
    line-height: 1.6;
}

.header-right {
    display: flex;
    width: 700px;
    height: 700px;
    gap: 20px;
}

.img1 {
    position: absolute; /* 子元素绝对定位 */
    top: 12%;
    left: 65%;
    width: 15%; /* 图片宽度占满容器 */
    object-fit: cover;
}

.img2 {
    position: absolute; /* 子元素绝对定位 */
    top: 22%;
    left: 77%;
    width: 15%; /* 图片宽度占满容器 */
    object-fit: cover;
}

/*!* 导航栏样式 *!*/
/*.navbar {*/
/*    display: flex;*/
/*    align-items: center;  !* 垂直居中 *!*/
/*    padding: 10px 20px;*/
/*    background: #ffffff;*/
/*    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);*/
/*}*/

/* 导航栏固定在顶部 */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background-color: #ffffff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    z-index: 1000; /* 确保导航栏在最上层 */
}

/* 左侧内容（靠左） */
.navbar-left {
    display: flex;
    align-items: center;
}

.logo {
    width: 55px;
    height: 55px;
    border-radius: 50%; /* 关键：设置为圆形 */
    object-fit: cover; /* 确保图片比例不变形 */
    margin-left: 20px;
}

.company-name {
    margin-left: 44px;
    font-weight: bold;
    color: #000;
    font-size: 33px;
}

/* 右侧内容（靠右） */
.navbar-right {
    display: flex;
    align-items: center;
    margin-left: auto;  /* 关键：让右侧内容靠右 */
    font-size: 20px;
}

.nav-link {
    margin-bottom: -16px;
    margin-left: 33px;
    text-decoration: none;
    color: #555555;
    font-weight: bold;
}

.btn {
    background: #007bff;
    color: white;
    border: none;
    margin-bottom: -16px;
    margin-left: 33px;
    margin-right: 55px;
    padding: 4px 20px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 20px;
}

.nav-link:hover {
    color: #007bff;
}

/* 时间线容器（左右内容 + 中间时间线） */
.timeline-container {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    top:-60px;
}

/* 左侧 */
.timeline-left {
    padding-right: 30px;
    text-align: right;
}
.timeline-rig {
    padding-left: 30px;
    text-align: left;
}

/* 发展历程时间线 */
.timeline {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.timeline-item {
    padding-bottom:40px;
    padding-top:4px;
    margin-top: 55px;
    border-radius: 5px;
    width: 100%;

}

.timeline-year {
    font-size: 28px;
    font-weight: bold;
    color: #007bff;
}

.timeline-content {
    font-size: 19px;
    font-weight: bold;
    color: #555555;
}

/* 中间时间线（蓝色竖线 + 圆点） */
.timeline-line {
    position: relative;
    width: 2px;
    height: 100%; /* 高度由内容撑开，或指定固定高度 */
    background-color: #007bff;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    margin: 0 20px;
}

/* 时间线竖线 + 圆点容器 */
.timeline-line {
    position: relative;
    width: 4px; /* 竖线宽度 */
    height: 400px; /* 竖线高度，可调整 */
    background-color: #007bff; /* 竖线颜色 */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding: 30px 0; /* 给圆点留出空间 */
}

/* 每个蓝色圆点 */
.timeline-dot {
    width: 24px;
    height: 24px;
    background-color: #ffffff; /* 背景透明 */
    border: 7px solid #007bff; /* 蓝色边框 */
    border-radius: 50%;
}

/* 功能卡片网格布局 */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(20%, 1fr));
    gap: 20px;
    padding-left: 10px;
}

/* 单个功能卡片 */
.feature-card {
    background: #fff;
    border-radius: 8px;
    padding-left: 16px;
    padding-top: 16px;
    padding-right: 16px;
    margin-left: 10px;
    margin-right: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* 图标样式 */
.feature-icon {
    width: 80px;
    height: 80px;
    color: #007bff;
}

/* 标题样式 */
.feature-title {
    font-size: 26px;
    font-weight: bold;
    margin-left: 10px;
    margin-top: -2px;
    color: #000;
}

/* 描述样式 */
.feature-desc {
    font-size: 20px;
    color: #555;
    font-weight: bold;
    margin-left: 10px;
    margin-top: -4px;
}

.column-c {
    width: 100%;
    display: flex;
    justify-content: space-evenly;
}

/* 行业难点 */
.column {
    width: 46%;
}

.item {
    display: flex;
    height: 140px;
    margin-bottom: 20px;
}

.item-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
}
.item-content {
    display: flex;
    flex-direction: column;
    margin-left: 10px;
}

.item-title {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 5px;
}

.item-description {
    color: #666;
    font-size: 18px;
    line-height: 1.5;
}

/* 这些年， */
.hero {
    width: 100%;
    height: 760px;
    text-align: center;
    padding: 20px;
    margin-top: 120px;
    /* 背景渐变：从上到下，浅蓝到更浅蓝（或白色） */
    background: linear-gradient(to bottom, #ffffff,#e6f4ff);
}

h1 {
    font-size: 70px; /* 小标题字号 */
    font-weight: 500;
    margin-bottom: 10px;
    color: #2a5caa;
    margin-left: 3%;
}

.highlight {
    font-size: 180px; /* 大标题字号 */
    font-weight: bold;
    margin-top: 24px;
    margin-left: 8%;
    color: #0066cc; /* 更深的蓝色，突出显示 */
}

.sub-text {
    font-size: 70px; /* 副标题字号 */
    margin-left: 4%;
    margin-top: -160px;
    color: #2a5caa;
}

.underline {
    width: 20%;
    height: 6px;
    background-color: #0066cc; /* 下划线颜色与标题一致 */
    border-radius: 2px;
    margin: 15px auto 0; /* 上下 margin，左右自动，使其水平居中 */
}

/* 应用场景 */
.yycj_container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(30%, 1fr));
    max-width: 100%;
    margin: 0 auto;
    gap: 20px;
}
/* 单个卡片样式 */
.card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
}

/* 卡片图片 */
.card img {
    width: 100%; /* 图片宽度占满卡片 */
    height: 180px; /* 固定高度，或使用 min-height */
    object-fit: cover; /* 保持比例，裁剪多余部分 */
    display: block; /* 消除图片底部默认间隙 */
}

/* 卡片内容 */
.card h3 {
    margin: 20px 20px 5px;
    font-weight: 900;
    font-size: 22px;
    color: #333;
}

.card p {
    margin: 10px 20px 20px;
    font-size: 18px;
    color: #666;
    line-height: 1.5;
    font-weight: 600;
}

/*  产品优势 */
/* 功能卡片容器：Flexbox 布局 */
.cp-features-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    max-width: 100%;
    margin: 0 auto;
}

/* 单个功能卡片样式 */
.cp-feature-card {
    width: 25%;
    height: 150px;
    background: white;
    border-radius: 8px;
    padding: 30px;
    margin-left: 20px;
    margin-top: 30px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* 悬停效果 */
.cp-feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.15);
}

/* 卡片头部（序号+标题） */
.cp-card-header {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

/* 序号样式 */
.cp-card-number {
    font-size: 46px;
    font-weight: bold;
    color: #0066cc;
    margin-right: 10px;
}

/* 标题样式 */
.cp-card-title {
    font-size: 26px;
    font-weight: 900;
    margin: 0;
    color: #333;
}

/* 描述样式 */
.cp-card-description {
    margin: 0;
    font-size: 20px;
    font-weight: 700;
    color: #666;
    line-height: 1.5;
}


/* 通用部分样式 */
.section {
    padding: 30px 20px;
    max-width: 100%;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    font-size: 2em;
    margin-bottom: 60px;
    font-weight: 700;
    color: #000;
}

/* 功能介绍 */
.features {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}

.feature-item {
    width: 200px;
    text-align: center;
    margin: 20px;
}

.feature-item img {
    width: 80px;
    height: 80px;
}

/* 应用场景图片 */
.scenarios img {
    width: 100%;
    max-width: 300px;
    height: auto;
    margin: 10px;
}

/* 价格部分 */
.pricing {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.price-item {
    background: #f0f0f0;
    padding: 20px;
    margin: 10px;
    border-radius: 5px;
    text-align: center;
    width: 200px;
}

/* 页脚 */
.footer {
    background: #333;
    color: white;
    padding: 20px;
}


/* 亮点功能 */
/* 功能模块容器：Flexbox 布局 */
.ld-features-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    max-width: 100%;
    margin: 0 auto;
}

/* 单个功能卡片样式 */
.ld-feature-card {
    width: 28%;
    background: white;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-left: 20px;
    padding-bottom: 50px;
}

/* 悬停效果 */
.ld-feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.15);
}

.ld-card-icon {
    display: flex;
    justify-content: space-between;
}

.ld_img1 {
    display: block;  /* 可选：避免图片下方留白 */
    width: 150px; /* 图片宽度占满容器 */
    height: 150px; /* 图片宽度占满容器 */
    object-fit: cover;
    padding-top: 10px;
}

.ld_img2 {
    width: 100px; /* 图片宽度占满容器 */
    height: 100px; /* 图片宽度占满容器 */
    object-fit: cover;
    margin-left: -50px;
}

.ld_img3 {
    display: block;  /* 可选：避免图片下方留白 */
    width: 70px; /* 图片宽度占满容器 */
    height: 140px; /* 图片宽度占满容器 */
    object-fit: cover;
    margin-left: 40px;
}

.ld_img4 {
    display: block;  /* 可选：避免图片下方留白 */
    width: 70px; /* 图片宽度占满容器 */
    height: 140px; /* 图片宽度占满容器 */
    margin-left: -120px;
    margin-right: 40px;
    object-fit: cover;
}

.ld_img5 {
    display: block;  /* 可选：避免图片下方留白 */
    width: 202px; /* 图片宽度占满容器 */
    height: 120px;
    margin-right: 40px;
    object-fit: cover;
}

/* 图标样式 */
/*.ld-card-icon img {*/
/*    width: 200px;*/
/*    margin-bottom: 15px;*/
/*}*/



/* 图标样式 */
.ld-card-icon-left img {
    width: 90px;
    height: 90px;
    margin-bottom: 15px;
}

/* 图标样式 */
.ld-card-icon-right {
    width: 90px;
    height: 90px;
    margin-bottom: 15px;
}

/* 标题样式 */
.ld-card-title {
    font-size: 24px;
    font-weight: 900;
    margin: 0 0 10px;
    color: #333;
}

/* 描述样式 */
.ld-card-description {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    color: #666;
    line-height: 1.5;
}


/* 容器样式 */
.kh-container {
    max-width: 100%;
    margin: 0 auto;
    padding: 20px;
}

/* 顶部文字样式 */
.kh-header {
    text-align: center;
    font-weight: 600;
    font-size: 18px;
    color: #999;
    margin-bottom: 40px;
    margin-top: -60px;
}

/* 商户列表容器：Flexbox 布局 */
.kh-merchant-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center; /* 商户卡片居中对齐 */
    gap: 20px;
}

/* 单个商户卡片样式 */
.kh-merchant-card {
    width: 26%;
    background: white;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-left: 20px;
}

/* 悬停效果 */
.kh-merchant-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.15);
}

.kh-card-icon{
    display: flex;
    justify-content: flex-start;
}

/* 图标样式 */
.kh-card-icon img {
    width: 80px;
    height: 80px;
    border-radius: 50%; /* 圆形图标 */
    margin-right: 15px;
}

/* 卡片内容区域 */
.kh-card-content {
    flex: 1; /* 占据剩余空间 */
    margin-top: 20px;
}

/* 标题样式 */
.kh-card-title {
    font-size: 20px;
    font-weight: 900;
    margin: 0 0 5px;
    color: #333;
}

.kh-card-icon-r{
    margin-top: 10px;
}

/* 副标题样式 */
.kh-card-subtitle {
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 10px;
    color: #999;
}

/* 描述样式 */
.kh-card-description {
    font-size: 18px;
    font-weight: 600;
    margin: 0;
    color: #999;
    line-height: 1.5;
}

/* 容器样式 */
.hz-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center; /* 卡片居中对齐 */
    gap: 20px;
    max-width: 100%;
    margin: 0 auto;
    padding: 10px;
}

/* 单个卡片样式 */
.hz-card {
    width: 40%;
    background: white;
    border-radius: 8px;
    padding: 30px;
    margin-right: 30px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* 悬停效果 */
.hz-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.15);
}

/* 图标样式 */
.hz-card-icon img {
    width: 80px;
    height: 80px;
    margin-right: 15px;
}

/* 卡片内容区域 */
.hz-card-content {
    flex: 1; /* 占据剩余空间 */
}

/* 标题样式 */
.hz-card-title {
    font-size: 22px;
    margin: 0 0 10px;
    font-weight: 900;
    color: #333;
    margin-left: 10px;
}

/* 描述样式 */
.hz-card-description {
    font-size: 18px;
    margin: 0;
    font-weight: 600;
    color: #666;
    line-height: 1.5;
    margin-left: 10px;
    margin-bottom: 100px;
}

/* 容器样式 */
.fy-container {
    max-width: 56%;
    margin: 0 auto;
}

/* 套餐卡片容器：Flex 布局 */
.fy-plan-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

/* 单个套餐卡片样式 */
.fy-plan-card {
    background: white;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    min-width: 40%;
}

/* 套餐标题 */
.fy-plan-title {
    font-size: 26px;
    font-weight: 900;
    color: #333;
    margin: 0 0 10px;
}

/* 套餐价格 */
.fy-plan-price {
    font-size: 36px;
    font-weight: 900;
    color: #0066cc;
    margin: 0;
}

.fy-plan-price span {
    font-size: 22px;
    font-weight: 600;
    color: #666;
}

/* 表格容器 */
.fy-table-container {
    overflow-x: auto; /* 小屏幕支持横向滚动 */
}

/* 对比表格样式 */
.fy-comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    overflow: hidden;
}

/* 表头样式 */
.fy-table-header {
    width: 30%;
    background: #4a90e2;
    color: white;
    padding: 15px;
    text-align: center;
    font-size: 22px;
}

/* 表格单元格样式 */
.fy-table-cell {
    width: 30%;
    padding: 12px 15px;
    text-align: center;
    border: 1px solid #e0e0e0;
    font-size: 20px;
    font-weight: 600;
    color: #333;
}


/* 容器样式 */
.d-container {
    max-width: 100%;
    margin: 0 auto;
    text-align: center;
}

/* 套餐卡片容器：Flex 布局 */
.d-plan-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

/* 单个套餐卡片样式 */
.d-plan-card {
    background: white;
    border-radius: 8px;
    padding: 18px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    min-width: 21%;
}

/* 套餐标题 */
.d-plan-title {
    font-size: 26px;
    font-weight: 900;
    color: #333;
    margin: 0 0 10px;
}

/* 套餐价格 */
.d-plan-price {
    font-size: 36px;
    font-weight: 900;
    color: #0066cc;
    margin: 0;
}

.d-plan-price span {
    font-size: 22px;
    font-weight: 600;
    color: #666;
}

/* 表格容器 */
.d-table-container {
    overflow-x: auto; /* 小屏幕支持横向滚动 */
    margin: 0 auto; /* 水平居中 */
    width: 70%;
}

/* 对比表格样式 */
.d-comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    overflow: hidden;
}

/* 表头样式 */
.d-table-header {
    width: 19%;
    background: #4a90e2;
    color: white;
    padding: 15px;
    text-align: center;
    font-size: 22px;
}

/* 表格单元格样式 */
.d-table-cell {
    width: 19%;
    padding: 12px 15px;
    text-align: center;
    border: 1px solid #e0e0e0;
    font-size: 20px;
    font-weight: 600;
    color: #333;
}

/* 交替行背景色（可选） */
.d-comparison-table tbody tr:nth-child(even) {
    background-color: rgba(187, 222, 251, 0.3); /* 偶数行：极浅蓝色带透明度 */
}

/* 交替行背景色（可选） */
.fy-comparison-table tbody tr:nth-child(even) {
    background-color: rgba(187, 222, 251, 0.3); /* 偶数行：极浅蓝色带透明度 */
}


/* 顶部横幅样式 */
.fy-banner {
    display: flex;
    flex-direction: column;
    align-items: center; /* 水平居中 */
    justify-content: center; /* 垂直居中 */
    width: 100%;
    padding: 20px;
    box-sizing: border-box;
}

#download{
    display: flex;
    flex-direction: column;
    align-items: center; /* 水平居中 */
    justify-content: center; /* 垂直居中 */
    width: 100%;
    background: linear-gradient(to bottom, #ffffff, #b3e5fc); /* 渐变背景（浅蓝色） */
    padding: 20px;
    box-sizing: border-box;
}

/* 横幅文字样式 */
.fy-banner-text {
    font-size: 26px;
    font-weight: 700;
    color: #333;
    margin: -50px 0 10px 0;
    text-align: center;
}

/* 按钮样式 */
.fy-banner-btn {
    background: white;
    color: #333;
    border: none;
    border-radius: 4px;
    padding: 8px 16px;
    font-size: 32px;
    cursor: pointer;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    margin-top: 20px;
    margin-bottom: 40px;
}

/* 按钮悬停效果 */
.fy-banner-btn:hover {
    background: #0066cc;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* 联系栏整体样式 */
.fy-contact-bar {
    display: flex;
    width: 100%;
    justify-content: flex-start; /* 左右两侧内容分开 */
}

.fy-contact-info {
    width: 22%;
    margin-left: 80px;
    margin-top: 40px;
    margin-bottom: 30px;
}

.fy-contact-title {
    font-size: 20px;
    margin: 0 0 10px 0;
    color: #ffffff; /* 标题绿色，与示例图一致 */
}

.fy-contact-address,
.fy-contact-phone {
    font-size: 16px;
    margin: 5px 0;
    line-height: 1.5;
    color: #ffffff; /* 标题绿色，与示例图一致 */
}

/* 右侧二维码列表样式 */
.fy-qrcode-list {
    display: flex;
    gap: 60px; /* 二维码间距 */
    margin-top: 30px;
    margin-left: 80px;

}

.fy-qrcode-item {
    display: flex;
    flex-direction: column;
    align-items: center; /* 图标和文字居中 */
}

.fy-qrcode-item img {
    width: 90px;
    height: 90px;
    border-radius: 8px; /* 圆角 */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* 轻微阴影 */
}

.fy-qrcode-label {
    font-size: 16px;
    margin-top: 8px;
    color: #fff; /* 白色文字 */
}

.fodz{
    width: 100%;
    font-size: 18px;
    margin-top: 20px;
    text-align: center;
    color: #fff; /* 白色文字 */
}

.img_ass{
    margin: 10px;
    transform: scale(0.9);
}

[id] {
    scroll-margin-top: 80px; /* 调整偏移量 */
}

/* 弹窗背景（默认隐藏） */
.modal {
    display: none; /* 隐藏弹窗 */
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7); /* 半透明黑色背景 */
}

/* 弹窗内容 */
.modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 80%;
    max-height: 80%;
}

/* 弹出的图片 */
.popup-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* 关闭按钮 */
.close-btn {
    position: absolute;
    top: -15px;
    right: -15px;
    font-size: 24px;
    color: white;
    background: red;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    text-align: center;
    line-height: 30px;
    cursor: pointer;
}

.close-btn:hover {
    background: darkred;
}

/* 响应式设计：小屏幕调整 */
@media (max-width: 768px) {
    .hz-card {
        flex-direction: column; /* 垂直排列图标和内容 */
        align-items: center; /* 居中对齐 */
        text-align: center; /* 文字居中 */
    }
    .hz-card-icon img {
        margin-right: 0;
        margin-bottom: 10px;
    }
}