/* 6大服务优势 */
.adv-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 15px;
    border: 2px solid #dc3545;
    border-radius: 50%;
    line-height: 86px;
    font-size: 36px;
    color: #dc3545;
    transition: all 0.3s ease;
}
.adv-item:hover .adv-icon {
    background: #dc3545;
    color: #fff;
    transform: scale(1.05);
}
.adv-item h4 {
    font-size: 17px;
    color: #333;
    font-weight: 500;
}

/* 项目卡片hover优化 */
.project-card {
    transition: all 0.3s ease;
}
.project-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}
.card-img-150 img {
    transition: all 0.3s ease;
}
.project-card:hover .card-img-150 img {
    transform: scale(1.05);
}

/* 摆摊技术、机构推荐列表 */
.booth-item h5, .org-item h5 {
    font-size: 17px;
    font-weight: 500;
    margin-bottom: 6px;
}

/* 关于我们数据卡片 */
.fs-36 {
    font-size: 36px;
    font-weight: bold;
}
.data-card {
    transition: all 0.3s ease;
}
.data-card:hover {
    transform: translateY(-3px);
}

/* 底部CTA */
.cta-bar h4 {
    font-weight: bold;
}
.fs-14 {
    font-size: 14px;
}

/* 移动端适配 */
@media (max-width: 768px) {
    .adv-icon {
        width: 70px;
        height: 70px;
        line-height: 66px;
        font-size: 28px;
    }
    .fs-36 {
        font-size: 28px;
    }
}

/* 机构推荐卡片 */
.org-card {
    height: 100%;
    padding: 15px;
    border: 1px solid #eee;
    border-radius: 6px;
    transition: all 0.3s ease;
    background: #fff;
    gap: 25px; /* 图文间距加大到25px，解决太近的问题 */
}
.org-card:hover {
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
    transform: translateY(-2px);
}
.org-thumb {
    width: 180px;
    height: 140px;
    overflow: hidden;
    border-radius: 4px;
}
.org-thumb img {
    transition: all 0.3s ease;
}
.org-card:hover .org-thumb img {
    transform: scale(1.05);
}
.org-title {
    font-size: 20px;
    font-weight: 600;
}
/* 描述2行省略核心样式 */
.org-desc {
    font-size: 15px;
    line-height: 1.7;
    color: #666;
    display: -webkit-box;
    -webkit-line-clamp: 2; /* 控制显示2行，改数字即可调整行数 */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
.fs-14 {
    font-size: 14px;
}
.object-fit-cover {
    object-fit: cover;
}

/* 移动端适配 */
@media (max-width: 768px) {
    .org-card {
        flex-direction: column;
        gap: 15px;
    }
    .org-thumb {
        width: 100%;
        height: 180px;
    }
}

/* 新闻列表项 */
.news-item {
    height: 100%;
    padding-bottom: 12px;
    border-bottom: 1px dashed #eee;
}
/* 左侧缩略图 */
.news-thumb {
    width: 140px;
    height: 100px;
    border-radius: 4px;
    overflow: hidden;
}
.news-thumb img {
    transition: all 0.3s ease;
}
.news-item:hover .news-thumb img {
    transform: scale(1.05);
}
/* 右侧文字区 */
.news-body h5 a {
    color: #333;
    text-decoration: none;
    font-size: 17px;
    font-weight: 500;
    transition: color 0.2s;
}
.news-body h5 a:hover {
    color: #f39c12;
}
.news-body p {
    font-size: 14px;
    margin-bottom: 8px;
}
.fs-14 {
    font-size: 14px;
}
.object-fit-cover {
    object-fit: cover;
}

/* 移动端适配 */
@media (max-width: 768px) {
    .news-thumb {
        width: 110px;
        height: 80px;
    }
    .news-body h5 a {
        font-size: 15px;
    }
}