/* 基础重置：统一移动端样式基准，清除默认边距和高亮 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
    /* 清除移动端点击高亮 */
    -webkit-font-smoothing: antialiased;
    /* 优化字体显示 */
}

html {
    font-size: 100px !important;
    /* 配合JS rem适配，作为基准值 */
    font-family: "PingFang SC", "Helvetica Neue", Arial, sans-serif;
    background-color: #f5f5f5;
}

body {
    font-size: 0.14rem;
    /* 基础文本大小，基于根字体计算 */
    color: #333;
    line-height: 1.6;
    min-width: 320px;
    max-width: 750px;
    /* 限制最大宽度，避免大屏手机拉伸变形 */
    margin: 0 auto;
    /* 水平居中，适配不同宽度屏幕 */
    background-color: #fff;
    padding-top: 0 !important;
}

a {
    text-decoration: none;
    color: inherit;
    /* 继承父级颜色，统一链接样式 */
}

ul,
li {
    list-style: none;
}

img {
    display: block;
    width: 100%;
    height: auto;
    /* 保持图片比例 */
}

h2 {
    font-size: 0.22rem;
    font-weight: 600;
    color: #333;
    text-align: center;
    margin-bottom: 0.1rem;
}

p {
    font-size: 0.14rem;
    color: #666;
    text-align: center;
}

/* 头部导航：重点修复菜单按钮可见性 + 展开/收起功能 */
header {
    position: sticky;
    top: 0;
    z-index: 999;
    background-color: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    /* 轻微阴影，提升层次感 */
    padding: 0.08rem 0;
    /* 增加头部上下内边距，避免按钮贴边 */
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 0.15rem;
    background-color: unset !important;
    /* 左右内边距，确保按钮不贴屏幕边缘 */
}

/* 导航左侧LOGO：确保LOGO正常显示，避免遮挡按钮 */
.nav .left {
    width: 1.1rem;
    /* 固定LOGO容器宽度，避免变形 */
    height: 0.36rem;
    /* 固定高度，与菜单按钮对齐 */
    display: flex;
    align-items: center;
}

.nav .left img {
    height: 100%;
    object-fit: contain;
    /* 保证LOGO完整显示，不拉伸 */
}

/* 导航右侧菜单按钮：重点修复可见性，增加容错样式 */
.nav .right {
    width: 0.36rem;
    height: 0.36rem;
    display: flex;
    align-items: center;
    justify-content: center;
    /* 按钮容器居中，确保点击区域够大 */
}

.nav .right .span1 {
    display: block;
    width: 0.28rem;
    /* 增大按钮尺寸，更易点击 */
    height: 0.28rem;
    /* 双重背景：图片+纯色，确保图片加载失败时仍能看到按钮 */
    background: url("/template/default/wap/images/open1.png") no-repeat center;
    background-size: 100%;
    /* 控制图标大小，避免撑满 */
    border-radius: 4px;
    /* 轻微圆角，提升质感 */
    cursor: pointer;
    /* 提示可点击 */
}
.nav .right .span1.span {
    background: url("/template/default/wap/images/close.png") no-repeat center;
    background-size: 100%;
}
/* 导航菜单列表：默认隐藏，点击展开 + 新增关闭按钮 */
.navlist {
    position: fixed;
    display: none;
    top: 55px;
    right: 0;
    width: 50%;
    background-color: #fff;
    /* 加深背景，提升对比度 */
    transition: width 0.3s ease;
    /* 平滑展开动画 */
    overflow: hidden;
    z-index: 1000;
    padding: 20px 0;
    /* 预留顶部关闭按钮空间 */
}

/* 菜单展开状态：占屏幕80%，确保操作空间 */
.navlist.active {
    width: 80%;
}

/* 菜单关闭按钮：新增，确保展开后可关闭 */
.navlist .close-btn {
    position: absolute;
    top: 0.15rem;
    right: 0.15rem;
    width: 0.32rem;
    height: 0.32rem;
    /* 双重背景：图片+纯色，确保可见 */
    background: url("/template/default/wap/images/tonglian/icon/close.png") no-repeat center, rgba(255, 255, 255, 0.1);
    background-size: 60% 60%;
    border-radius: 50%;
    /* 圆形按钮，更易识别 */
    cursor: pointer;
    z-index: 1001;
}

/* 菜单列表样式：优化间距和颜色，提升可读性 */
.navlist ul {
    padding: 0 0.25rem;
    /* 左右内边距，避免文字贴边 */
}

.navlist li {
    margin-bottom: 5px;
    /* 增大列表项间距，更易点击 */
}

.navlist a {
    color: #333;
    font-size: 0.16rem;
    padding: 0.1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    /* 下划线分隔，更明显 */
    display: block;
}

.navlist a.active {
    color: #ffd600;
    /* 活跃状态高亮色，更醒目 */
    border-bottom-color: #ffd600;
}

/* 轮播图样式：适配移动端高度 */
.banner {
    width: 100%;
    height: 1.8rem;
    /* 固定轮播高度，保证页面比例 */
    overflow: hidden;
    display: none;
}

.swiper-wrapper {
    width: 100%;
    height: 100%;
}

.swiper-slide {
    width: 100%;
    height: 100%;
}

.swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* 图片填充容器，保证无空白 */
}

/* 轮播分页器 */
.swiper-pagination {
    bottom: 0.12rem !important;
    /* 调整分页器位置 */
}

.swiper-pagination-bullet {
    width: 0.08rem;
    height: 0.08rem;
    margin: 0 0.04rem !important;
    background-color: rgba(255, 255, 255, 0.6);
}

.swiper-pagination-bullet-active {
    background-color: #fff;
    /* 激活状态分页器颜色 */
    width: 0.16rem;
    border-radius: 0.04rem;
    /* 激活项改为椭圆，提升辨识度 */
}

/* 产品列表区域：两列布局，适配移动端 */
.index-product {
    padding: 0.3rem 0.15rem;
    background-color: #fff;
}

.index-product p {
    margin-bottom: 0.2rem;
    color: #888;
}

.product-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 0.15rem;
    /* 产品项间距 */
}

.product-list li {
    width: calc(50% - 0.075rem) !important;
    /* 两列布局，减去间距 */
    background-color: #f9f9f9;
    border-radius: 0.08rem;
    overflow: hidden;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.03);
    padding: 0 !important;
    height: auto !important;
    margin-right: 0;
    /* 轻微阴影 */
}

.product-list li img {
    height: 1.1rem;
    /* 固定产品图高度，保证一致性 */
    object-fit: cover;
}

.product-list .line {
    width: 0.3rem;
    height: 0.02rem;
    background-color: #ff4400;
    margin: 0.12rem auto;
}

.product-list .p1 {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.08rem;
    margin-bottom: 0.05rem;
}

.product-list .s1 {
    font-size: 0.12rem;
    color: #ff4400;
    background-color: rgba(255, 68, 0, 0.1);
    padding: 0.02rem 0.06rem;
    border-radius: 0.04rem;
}

.product-list .s2 {
    font-size: 0.16rem;
    font-weight: 500;
    color: #333;
}

.product-list .p2 {
    font-size: 0.12rem;
    color: #999;
    padding: 0 0.1rem 0.15rem;
    text-align: center;
}

/* 品牌优势区域：两列布局，适配小屏 */
.index-zizhi {
    padding: 0.3rem 0.15rem;
    background-color: #f5f5f5;
}

.index-zizhi img {
    width: 100%;
    height: 1rem;
    object-fit: contain;
    /* 资质图完整显示 */
    margin: 0.2rem 0;
}

.index-zizhi ul {
    display: flex;
    flex-wrap: wrap;
    gap: 0.15rem;
}

.index-zizhi li {
    width: calc(50% - 0.075rem);
    /* 两列布局 */
    background-color: #fff;
    padding: 0.2rem 0.12rem;
    border-radius: 0.08rem;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.03);
    text-align: center;
}

.index-zizhi h3 {
    font-size: 0.16rem;
    color: #333;
    margin-bottom: 0.08rem;
}

.index-zizhi .line {
    width: 0.25rem;
    height: 0.02rem;
    background-color: #ff4400;
    margin: 0 auto 0.12rem;
}

.index-zizhi p {
    font-size: 0.12rem;
    color: #666;
    line-height: 1.5;
}

/* 新闻资讯区域：列表式布局，图文结合 */
.index-news {
    padding: 0.3rem 0.15rem;
    background-color: #fff;
}

.index-news .line {
    width: 0.4rem;
    height: 0.02rem;
    background-color: #ff4400;
    margin: 0 auto 0.2rem;
}

.newList ul {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.newList li {
    display: flex;
    gap: 0.12rem;
    padding: 0.12rem;
    background-color: #f9f9f9;
    border-radius: 0.08rem;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.03);
}

.newList li img {
    width: 0.8rem;
    height: 0.8rem;
    border-radius: 0.04rem;
    object-fit: cover;
    display: none;
}

.newList .con {
    flex: 1;
    /* 内容区占剩余宽度 */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.newList .p1 {
    font-size: 0.15rem;
    color: #333;
    font-weight: 500;
    margin-bottom: 0.05rem;
    /* 文字超出2行省略 */
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-align: left;
}

.newList .p2 {
    font-size: 0.12rem;
    color: #999;
    /* 文字超出2行省略 */
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-align: left;
}

.newList .p3 {
    display: flex;
    justify-content: space-between;
    font-size: 0.11rem;
    color: #ccc;
    margin-top: 0.08rem;
}

/* 产品优势区域：自适应布局，小屏换行 */
.index-youshi {
    padding: 0.3rem 0.15rem;
    background-color: #f5f5f5;
}

.index-youshi p {
    margin-bottom: 0.25rem;
    color: #888;
}

.index-youshi ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 0.15rem;
    width: 100% !important;
    position: unset !important;
    margin-top: 10px;
}

.index-youshi li {
    width: calc(33.333% - 0.1rem) !important;
    /* 3列布局，减去间距 */
    background-color: #fff !important;
    padding: 0.15rem 0 !important;
    border-radius: 0.08rem !important;
    text-align: center !important;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.03) !important;
    height: auto !important;
}

/* 小屏适配：屏幕<375px时改为2列 */
@media (max-width: 375px) {
    .index-youshi li {
        width: calc(50% - 0.075rem);
    }
}

.index-youshi li img {
    width: 0.4rem !important;
    height: 0.4rem !important;
    margin: 0 auto 0.12rem !important;
    object-fit: contain !important;
}

.index-youshi li p {
    font-size: 0.13rem;
    color: #333;
    line-height: 1.4;
    margin-bottom: 0;
}

/* 合作渠道区域：两列布局，图文叠加 */
.index-qudao {
    padding: 0.3rem 0.15rem 1rem;
    background-color: #fff;
}

.index-qudao p {
    margin-bottom: 0.25rem;
    color: #888;
}

.index-qudao ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 0.15rem;
}

.index-qudao li {
    width: calc(50% - 0.075rem) !important;
    height: auto !important;
    /* 两列布局 */
    position: relative;
    border-radius: 0.08rem !important;
    overflow: hidden;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.03) important;
}

.index-qudao .bg {
    height: 1.2rem;
    object-fit: cover;
    filter: brightness(0.7);
    /* 背景图暗化，突出文字 */
}

.index-qudao h3 {
    position: absolute;
    top: 0.2rem;
    left: 0;
    width: 100%;
    font-size: 0.18rem;
    color: #fff;
    text-align: center;
    z-index: 2;
}

.index-qudao p {
    position: absolute;
    top: 0.5rem;
    left: 0;
    width: 100%;
    font-size: 0.12rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0;
    z-index: 2;
}

.index-qudao .logo {
    position: absolute;
    bottom: 0.2rem;
    left: 50%;
    transform: translateX(-50%);
    width: 0.5rem;
    height: 0.5rem;
    z-index: 2;
}

.index-qudao .logo img {
    object-fit: contain;
}

/* 底部导航：固定在底部，适配移动端操作 */
.footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    max-width: 750px;
    margin: 0 auto;
    background-color: #fff;
    border-top: 1px solid #eee;
    z-index: 998;
    height: auto !important;
}

.footer ul {
    display: flex;
    justify-content: space-around;
}

.footer li {
    flex: 1;
    text-align: center;
    padding: 0.08rem 0;
}

.footer li.active {
    color: #ff4400;
    /* 活跃状态颜色 */
}

.footer li img {
    width: 0.22rem;
    height: 0.22rem;
    margin: 0 auto 0.03rem;
    object-fit: contain;
}
.footer li:nth-child(3) img{
    width: 50px;
    height: 50px;
    margin-top: -28px;
}
.footer li p {
    font-size: 0.11rem;
    margin-bottom: 0;
}

/* 返回顶部按钮：固定在右下角，避免遮挡底部导航 */
.sy_back {
    position: fixed;
    bottom: 0.8rem;
    /* 距离底部导航足够远 */
    right: 0.15rem;
    width: 0.44rem;
    height: 0.44rem;
    background-color: rgba(0, 0, 0, 0.6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 997;
}

.sy_back img {
    width: 0.22rem;
    height: 0.22rem;
    object-fit: contain;
    filter: brightness(2);
    /* 图片提亮，确保可见 */
}
.news-content{
    padding: 10px;
}
.news-article{
    padding: 10px;
}
.load{
    display: none;
}
.news-details article{
    padding: 10px 10px 60px 10px;
}
.about-tag,.about-article{
    display: none;
}

.news-details article img{
    width: 90% !important;
    height: auto !important;
    display: block;
    margin: 0 auto;
}


.app-content {
    width: 100%;
    max-width: 750px;
    margin: 0 auto;
    padding: 0.2rem;
    background-color: #fff;
    display: flex; /* 使用flex布局实现左右并排 */
    gap: 0.2rem;
}

/* 左侧竖版导航样式 */
.app-content .left {
    width: 28%; /* 竖版导航占比 */
    flex-shrink: 0; /* 不压缩 */
    background-color: #f9f9f9;
    border-radius: 0.1rem;
    overflow: hidden;
}

.app-content .left ul {
    list-style: none;
    width: 100%;
}

.app-content .left li {
    width: 100%;
    padding: 0.18rem 0.15rem;
    font-size: 0.14rem;
    color: #666;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.app-content .left li.active {
    background-color: #fff;
    color: #3498db;
    border-left-color: #3498db;
    font-weight: 500;
}

.app-content .left li:active {
    background-color: #f0f7ff;
}

/* 右侧内容区域样式 */
.app-content .right {
    flex: 1; /* 占剩余宽度 */
    background-color: #f9f9f9;
    border-radius: 0.1rem;
    overflow: hidden;
}

.app-content .right > div {
    display: none !important;
    text-align: center;
    padding: 0.3rem 0.2rem;
    min-height: 260px; /* 固定最小高度，保持布局稳定 */
    display: flex;
    flex-direction: column;
    justify-content: center;
}


.app-content .right > div.active {
    display: flex !important;
    animation: fadeIn 0.5s ease;
}

.app-content .right img {
    width: 70%;
    max-width: 200px;
    height: auto;
    margin: 0 auto 0.25rem;
    display: block;
    border-radius: 0.1rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.app-content .right p {
    font-size: 0.16rem;
    color: #333;
    line-height: 1.5;
}

/* 动画效果 */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 小屏手机适配 */
@media (max-width: 375px) {
    .app-content {
        flex-direction: column; /* 小屏时改为上下布局 */
    }
    
    .app-content .left {
        width: 100%;
        margin-bottom: 0.2rem;
    }
    
    .app-content .left li {
        padding: 0.15rem;
        font-size: 0.13rem;
    }
    
    .app-content .right > div {
        min-height: 220px;
    }
    
    .app-content .right p {
        font-size: 0.15rem;
    }
}


/* 通用容器样式 */
.common-box {
    width: 100%;
    max-width: 750px;
    margin: 0.2rem auto;
    background-color: #fff;
    border-radius: 0.1rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    padding-bottom: 60px;
}

/* 标题样式 */
.title {
    padding: 0.15rem 0.2rem;
    border-bottom: 1px solid #eee;
}

.title .s1 {
    display: inline-block;
    font-size: 0.18rem;
    color: #333;
    font-weight: 600;
    padding-left: 0.08rem;
    border-left: 3px solid #ff7d00;
}

/* 内容区域通用样式 */
.content {
    padding: 0.2rem;
}

/* 公司信息区域 */
.company_info {
    width: 100%;
    max-width: 750px;
    margin: 0 auto;
    background-color: #fff;
    border-radius: 0.1rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    margin-top: 0.2rem;
}

/* 顶部信息 */
.company_info .top {
    padding: 0.2rem;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #eee;
}

.company_info .logo {
    width: 1rem;
    height: 1rem;
    border-radius: 0.05rem;
    object-fit: contain;
    margin-right: 0.15rem;
}

.company_info .info-c {
    flex: 1;
}

.company_info .info-c h2 {
    font-size: 0.17rem;
    color: #333;
    margin-bottom: 0.1rem;
    line-height: 1.3;
}

.company_info .info-c ul {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    gap: 0.1rem;
}

.company_info .info-c li {
    display: flex;
    align-items: center;
}

.company_info .info-c li img {
    width: 0.2rem;
    height: 0.2rem;
}

.company_info .info-c li p {
    font-size: 0.12rem;
    color: #666;
    background-color: #f5f5f5;
    padding: 0.03rem 0.1rem;
    border-radius: 0.1rem;
}

/* 中部信息 */
.company_info .center {
    padding: 0.2rem;
    border-bottom: 1px solid #eee;
}

.company_info .center ul {
    list-style: none;
}

.company_info .center li {
    display: flex;
    padding: 0.08rem 0;
    border-bottom: 1px dashed #eee;
}

.company_info .center li:last-child {
    border-bottom: none;
}

.company_info .center .p1 {
    width: 0.8rem;
    font-size: 0.14rem;
    color: #999;
}

.company_info .center .p2 {
    flex: 1;
    font-size: 0.14rem;
    color: #333;
}

.company_info .center .p3 a {
    color: #1e88e5;
    text-decoration: none;
    font-size: 0.14rem;
}

/* 底部联系方式 */
.company_info .bottom {
    padding: 0.15rem 0.2rem;
    display: flex;
    justify-content: space-around;
    background-color: #f9f9f9;
}

.company_info .bottom .con {
    display: flex;
    align-items: center;
    font-size: 0.14rem;
    color: #333;
}

.company_info .bottom .con img {
    width: 0.2rem;
    height: 0.2rem;
    margin-right: 0.05rem;
}

/* 品牌介绍 */
.company-pinpai .content {
    font-size: 0.14rem;
    color: #666;
    line-height: 1.8;
}

/* 公司产品表格 */
.company-chanpin .content {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding: 0.2rem 0;
}

.company-chanpin table {
    width: 100%;
    min-width: 500px;
    border-collapse: collapse;
    margin: 0 auto;
}

.company-chanpin td {
    padding: 0.1rem;
    text-align: center;
    border: 1px solid #ddd;
    font-size: 0.13rem;
}

.company-chanpin tr:first-child td {
    font-weight: 500;
}

.company-chanpin img {
    width: 1rem;
    height: auto;
    margin: 0 auto;
    display: block;
}

/* 公司资质 */
.company-zizhi .content p {
    font-size: 0.14rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 0.2rem;
}

.company-zizhi .content img {
    width: 100%;
    height: auto;
    border-radius: 0.05rem;
    margin-bottom: 0.1rem;
}

.company-zizhi .content b {
    display: block;
    text-align: center;
    font-size: 0.15rem;
    color: #333;
}

/* 招商政策表格 */
.company-zhaoshang .content {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding: 0.2rem 0;
}

.company-zhaoshang table {
    width: 100%;
    min-width: 600px;
    border-collapse: collapse;
    margin: 0 auto;
}

.company-zhaoshang td {
    padding: 0.1rem 0.05rem;
    text-align: center;
    border: 1px solid #ddd;
    font-size: 0.13rem;
}

.company-zhaoshang tr:first-child td {
    font-weight: 500;
}

/* 适配小屏手机 */
@media (max-width: 375px) {
    .company_info .top {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .company_info .logo {
        margin-right: 0;
        margin-bottom: 0.15rem;
    }
    
    .company_info .center .p1 {
        width: 0.7rem;
        font-size: 0.13rem;
    }
    
    .title .s1 {
        font-size: 0.16rem;
    }
    
    .content {
        padding: 0.15rem;

    }
    
    .company_info .bottom {
        flex-direction: column;
        gap: 0.12rem;
        padding: 0.15rem;
    }
    
    .company_info .bottom .con {
        justify-content: center;
    }
    
    .company-chanpin td,
    .company-zhaoshang td {
        padding: 0.08rem 0.03rem;
        font-size: 0.12rem;
    }
    
    .company-chanpin img {
        width: 0.85rem;
    }
    
    .company-zizhi .content p,
    .company-pinpai .content {
        font-size: 0.13rem;
        line-height: 1.7;
    }
    
    .company_info .info-c h2 {
        font-size: 0.16rem;
    }
    
    .company_info .info-c li p {
        font-size: 0.11rem;
        padding: 0.02rem 0.08rem;
    }
}

/* 触摸反馈优化 */
a,
.company_info .bottom .con {
    -webkit-tap-highlight-color: rgba(255, 125, 0, 0.1);
}

a:active {
    opacity: 0.85;
}

/* 表格表头样式强化 */
.company-chanpin tr:first-child,
.company-zhaoshang tr:first-child {
    background-color: #feefe7 !important;
}

/* 图片加载容错 */
img {
    object-fit: cover;
}

/* 防止内容溢出 */
.company_info .center .p3 a,
.company-chanpin a {
    word-break: break-all;
    display: inline-block;
}

/* 小屏特殊适配（320px以下） */
@media (max-width: 320px) {
    .title {
        padding: 0.12rem 0.15rem;
    }
    
    .title .s1 {
        font-size: 0.15rem;
    }
    
    .content {
        padding: 0.12rem;
    }
    
    .company_info .top {
        padding: 0.15rem;
    }
    
    .company_info .logo {
        width: 0.9rem;
        height: 0.9rem;
    }
    
    .company-chanpin table {
        min-width: 450px;
    }
    
    .company-zhaoshang table {
        min-width: 550px;
    }
}







/* 招商模块整体容器 */
.zhaoshang {
    width: 100%;
    max-width: 750px;
    margin: 0 auto;
    padding: 0.2rem 0.15rem;
}

/* 各内容块通用样式 */
.zhaoshang > div {
    background-color: #fff;
    border-radius: 0.1rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    margin-bottom: 0.2rem;
    overflow: hidden;
}
.zhaoshang .title {
    padding: 0.18rem 0.2rem;
    text-align: center;
    border-bottom: 1px solid #eee;
}
.zhaoshang .title h2 {
    font-size: 0.18rem;
    color: #333;
    margin-bottom: 0.1rem;
    font-weight: 600;
}
.zhaoshang .title p {
    font-size: 0.13rem;
    color: #666;
}
.zhaoshang .title p span {
    color: #ff7d00;
    font-weight: 500;
}

/* 1. 核心优势模块（sc-content） */
.sc-content .content {
    padding: 0.2rem;
}
.sc-content ul {
    display: flex;
    flex-wrap: wrap;
    gap: 0.15rem;
    list-style: none;
}
.sc-content li {
    width: calc(50% - 0.075rem); /* 2列布局 */
    text-align: center;
    padding: 0.15rem 0.1rem;
}
.sc-content li img {
    width: 0.4rem;
    height: 0.4rem;
    margin: 0 auto 0.12rem;
    object-fit: contain;
}
.sc-content li h2 {
    font-size: 0.16rem;
    color: #333;
    margin-bottom: 0.08rem;
}
.sc-content li p {
    font-size: 0.12rem;
    color: #666;
    line-height: 1.5;
}

/* 2. 核心产品优势（hp-content） */
.hp-content .hp-img {
    padding: 0.2rem;
}
.hp-content .hp-img img {
    width: 100%;
    height: auto;
    border-radius: 0.05rem;
    object-fit: cover;
}
.hp-content ul {
    padding: 0 0.2rem 0.2rem;
    list-style: none;
}
.hp-content li {
    padding: 0.15rem 0;
    border-bottom: 1px dashed #eee;
}
.hp-content li:last-child {
    border-bottom: none;
}
.hp-content li h2 {
    font-size: 0.15rem;
    color: #333;
    margin-bottom: 0.06rem;
}
.hp-content li p {
    font-size: 0.13rem;
    color: #666;
}

/* 3. 功能优势模块（ys-content） */
.ys-content .content {
    padding: 0.2rem;
}
.ys-content ul {
    list-style: none;
}
.ys-content li {
    display: flex;
    gap: 0.15rem;
    padding: 0.18rem 0;
    border-bottom: 1px dashed #eee;
}
.ys-content li:last-child {
    border-bottom: none;
}
.ys-content li img {
    width: 0.45rem;
    height: 0.45rem;
    flex-shrink: 0; /* 不压缩图片 */
    object-fit: contain;
    background: #9d5757;
}
.ys-content .txt h2 {
    font-size: 0.16rem;
    color: #333;
    margin-bottom: 0.06rem;
}
.ys-content .txt p {
    font-size: 0.13rem;
    color: #666;
    line-height: 1.5;
}

/* 4. 代理政策表格（zc-content） */
.zc-content .table-content {
    padding: 0.15rem;
    overflow-x: auto; /* 表格横向滚动 */
    -webkit-overflow-scrolling: touch; /* 流畅滚动 */
}
.zc-content table {
    width: 100%;
    min-width: 600px; /* 最小宽度，确保表格结构完整 */
    border-collapse: collapse;
}
.zc-content td {
    padding: 0.1rem 0.05rem;
    text-align: center;
    border: 1px solid #ddd;
    font-size: 0.12rem;
    color: #333;
}
.zc-content .tr1 td,
.zc-content .tr2 td {
    color: #fff;
    font-weight: 500;
}
.zc-content .tr3 td,
.zc-content .tr7 td {
    text-align: center;
    color: #666;
    font-weight: 500;
}

/* 5. 收益模式模块（sy-content） */
.sy-content .content {
    padding: 0.2rem;
}
.sy-content ul {
    list-style: none;
}
.sy-content li {
    display: flex;
    padding: 0.18rem 0;
    border-bottom: 1px dashed #eee;
}
.sy-content li:last-child {
    border-bottom: none;
}
.sy-content .left {
    width: 0.8rem;
    height: 0.3rem;
    line-height: 0.3rem;
    text-align: center;
    background-color: #ff7d00;
    color: #fff;
    font-size: 0.14rem;
    font-weight: 500;
    border-radius: 0.15rem;
    flex-shrink: 0;
    margin-right: 0.15rem;
}
.sy-content .right {
    flex: 1;
}
.sy-content .right h2 {
    font-size: 0.16rem;
    color: #333;
    margin-bottom: 0.06rem;
}
.sy-content .right p {
    font-size: 0.13rem;
    color: #666;
    line-height: 1.5;
}
.sy-content{
    padding-bottom: 60px;
}


/* 响应式适配（小屏手机 ≤375px） */
@media (max-width: 375px) {
    /* 全局调整 */
    .zhaoshang {
        padding: 0.15rem 0.1rem;
    }
    .zhaoshang .title {
        padding: 0.15rem 0.15rem;
    }
    .zhaoshang .title h2 {
        font-size: 0.16rem;
    }
    .zhaoshang .title p {
        font-size: 0.12rem;
    }

    /* 核心优势：改为1列布局 */
    .sc-content li {
        width: 100%;
    }
    .sc-content li h2 {
        font-size: 0.15rem;
    }
    .sc-content li p {
        font-size: 0.11rem;
    }

    /* 功能优势：缩小图片与间距 */
    .ys-content li {
        gap: 0.12rem;
        padding: 0.15rem 0;
    }
    .ys-content li img {
        width: 0.4rem;
        height: 0.4rem;
    }
    .ys-content .txt h2 {
        font-size: 0.15rem;
    }
    .ys-content .txt p {
        font-size: 0.12rem;
    }

    /* 表格：缩小字体与内边距 */
    .zc-content td {
        padding: 0.08rem 0.03rem;
        font-size: 0.11rem;
    }
    .zc-content table {
        min-width: 500px;
    }

    /* 收益模式：调整左侧宽度与字体 */
    .sy-content .left {
        width: 0.7rem;
        font-size: 0.13rem;
    }
    .sy-content .right h2 {
        font-size: 0.15rem;
    }
    .sy-content .right p {
        font-size: 0.12rem;
    }
}

/* 超小屏适配（≤320px） */
@media (max-width: 320px) {
    .zc-content table {
        min-width: 450px;
    }
    .hp-content li h2 {
        font-size: 0.14rem;
    }
    .hp-content li p {
        font-size: 0.12rem;
    }
}
