/* 产业发展二级页面样式 */

.chanyefazhan-modules {
    margin: 20px 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
/* 产业发展模块样式 */
.chanyefazhan-section {
    width: calc(50% - 15px); /* 增加宽度，减小间距至30px */
    margin-bottom: 25px;  /* 减小模块之间的间距 */
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

/* 模块标题样式 */
.chanyefazhan-title {
    position: relative;
    padding: 12px 20px;  /* 减小标题内边距 */
    border-left: 4px solid #2b80c4;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chanyefazhan-title h2 {
    font-size: 18px;
    color: #333;
    margin: 0;
    font-weight: bold;
}

/* 添加标题下方的蓝色分割线 */
.chanyefazhan-title:after {
    content: '';
    display: block;
    width: calc(100% - 4px);
    height: 2px;
    background-color: #2b80c4;
    position: absolute;
    bottom: 0;
    left: 4px;
}

.chanyefazhan-title .more {
    color: #999;
    font-size: 14px;
    text-decoration: none;
    transition: color 0.3s;
}

.chanyefazhan-title .more:hover {
    color: #2b80c4;
}

/* 模块内容样式 */
.chanyefazhan-content {
    padding: 15px;  /* 减小内容区域内边距 */
}

/* 产业发展列表样式 */
.chanyefazhan-list {
    list-style: none;
    /* 让文章列表整体向内缩进一些，提高版面舒适度 */
    padding-left: 20px;
    margin: 0;
}

.chanyefazhan-list li {
    border-bottom: 1px dashed #eee;
    padding: 12px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chanyefazhan-list li:last-child {
    border-bottom: none;
}

.chanyefazhan-list li:before {
    content: '•';
    color: #2b80c4;
    margin-right: 10px;
    font-weight: bold;
}

.chanyefazhan-list li a {
    flex: 1;
    color: #333;
    text-decoration: none;
    transition: color 0.3s, padding-left 0.3s;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.chanyefazhan-list li a:hover {
    color: #2b80c4;
    padding-left: 5px;
}

.chanyefazhan-list li .date {
    color: #999;
    font-size: 14px;
    margin-left: 15px;
}

/* 产业发展介绍模块 */
.chanyefazhan-intro {
    display: flex;
    align-items: center;
    margin-bottom: 15px;  /* 减小介绍与列表之间的间距 */
}

.chanyefazhan-intro-icon {
    width: 60px;
    height: 60px;
    background-color: #f5f5f5;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 20px;
    flex-shrink: 0;
}

.chanyefazhan-intro-icon img {
    width: 30px;
    height: 30px;
}

.chanyefazhan-intro-text {
    flex: 1;
    color: #666;
    line-height: 1.6;
    font-size: 16px;
    /* 默认最多显示5行，超出省略 */
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 5; /* 限制为5行 */
    overflow: hidden;
    text-overflow: ellipsis;
    /* 高度兜底与占位：5行 * 1.6em = 8.0em */
    max-height: 8.0em;
    min-height: 8.0em; /* 不足5行也保留空间 */
}

/* 悬浮提示冒泡样式（仅用于显示，不改变原区域高度）*/
.chanyefazhan-intro-tooltip {
    position: fixed;
    background: #fff;
    color: #333;
    border: 1px solid rgba(0,0,0,0.12);
    box-shadow: 0 8px 24px rgba(0,0,0,0.18);
    padding: 12px 14px;
    border-radius: 6px;
    max-width: 520px;
    max-height: 60vh;
    overflow: auto;
    z-index: 9999;
    font-size: 16px;
    line-height: 1.6;
}
.row {
    display: flex;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
}

.col-md-6 {
    flex: 0 0 50%;
    max-width: 50%;
    padding-right: 15px;
    padding-left: 15px;
}
/* 响应式布局 */
@media (max-width: 768px) {
    .chanyefazhan-section {
        width: 100%;
    }
    .col-md-6 {
        flex: 0 0 100%;
        max-width: 100%;
    }
    .chanyefazhan-intro {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .chanyefazhan-intro-icon {
        margin-bottom: 15px;
    }
    .chanyefazhan-list li:before {
        content: "";
        position: absolute;
        left: 0;
        top: 20px;
        width: 6px;
        height: 6px;
        border-radius: 50%;
        background-color: #0066cc;
    }
    .chanyefazhan-list li {
        display: flex;
        justify-content: space-between;
        padding: 12px 0;
        border-bottom: 1px dashed #e0e0e0;
        position: relative;
        padding-left: 15px;
    }
    
    .chanyefazhan-list li .date {
        margin-left: 0;
        margin-top: 5px;
    }
}

