/* 行业资讯页样式 - News Styles */

/* 资讯列表 */
.news-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.news-item {
    background: var(--bg-white);
    border-radius: 12px;
    padding: 20px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    display: flex;
    gap: 20px;
    border-left: 4px solid var(--primary-color);
}

.news-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.news-thumb {
    flex-shrink: 0;
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #E3F2FD, #BBDEFB);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.news-thumb-icon {
    font-size: 50px;
}

.news-content {
    flex: 1;
    min-width: 0;
}

.news-date {
    color: var(--text-gray);
    font-size: 13px;
    margin-bottom: 10px;
    font-weight: 500;
}

.news-item h3 {
    font-size: 18px;
    color: var(--text-main);
    margin-bottom: 12px;
    line-height: 1.4;
}

.news-item h3 a {
    color: var(--text-main);
    text-decoration: none;
    transition: color 0.3s ease;
}

.news-item h3 a:hover {
    color: var(--primary-color);
}

.news-item p {
    color: var(--text-gray);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 12px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-meta {
    display: flex;
    align-items: center;
    gap: 15px;
}

.news-meta .tag {
    display: inline-block;
    padding: 5px 12px;
    background: var(--bg-light);
    color: var(--text-gray);
    border-radius: 15px;
    font-size: 12px;
}

.news-meta .views {
    color: var(--text-light);
    font-size: 13px;
}

/* 响应式 */
@media (max-width: 768px) {
    .news-item {
        flex-direction: column;
        padding: 20px;
    }

    .news-thumb {
        width: 100%;
        height: 150px;
    }

    .news-item h3 {
        font-size: 16px;
    }

    .news-item p {
        font-size: 14px;
    }
}
