﻿body {

}
.container{
    max-width:768px;
    margin:auto;
    background-color:white;
}
.news-container {
    max-width: 768px;
    margin: 0 auto;
    font-family: 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
}

.section-title {
    font-size: 1.1rem;
    color: #333;
    padding: 0px 0 0px 10px;
    margin-bottom: 0px;
}
    .section-title::before {
        content: "";
        display: inline-block;
        width: 4px;
        height: 12px;
        background: #1e88e5;
        margin-right: 8px;
        border-radius: 2px;
        padding-bottom: 0px; /* 增加下边距 */
    }

/* 热点新闻样式 */
.featured-card {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    margin-bottom: 10px;
}
/* 标题栏样式 */
.section-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline; /* 基线对齐（标题和链接文字底部平齐） */
    border-bottom: 1px solid #eee;
    padding-bottom: 8px; /* 增加下边距 */
    background: linear-gradient(to right, #f8fafc 0%, #f1f5f9 100%);
}

.more-news {
    color: #1e88e5;
    font-size: 0.95rem;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
    padding: 0px 10px;
    border-radius: 4px;
}

    .more-news:hover {
        color: #0d6bb8;
        background-color: rgba(30, 136, 229, 0.1);
    }
.featured-image {
    /* 现代浏览器方案 */
    width: 100%;
    max-height: 160px;
    object-fit: cover;
    object-position: center;
    /* 旧浏览器备用方案 */
    font-family: 'object-fit: cover; object-position: center;'; /* 配合object-fit-images插件使用 */
    background-size: cover;
    background-position: center;
}

.featured-content {
    padding: 10px;
    background: #fff;
}

.featured-title {
    font-size: 1.1rem;
    color: #222;
    margin-bottom: 12px;
    line-height: 1.4;
    text-align:center;
}

.featured-summary {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 15px;
}

.read-more {
    color: #1e88e5;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    text-decoration: none;
}

/* 新闻列表样式 */
.news-items {
    list-style: none;
    padding:0 10px 0 10px;
    margin: 0;
    background-color:white;
}

.news-item {
    display: flex;
    padding: 5px 0;
    border-bottom: 1px solid #f0f0f0;
    align-items: flex-start;
}

.news-thumbnail {
    width: 120px;
    height: 80px;
    object-fit: cover;
    border-radius: 4px;
    margin-right: 15px;
}

.news-info {
    flex: 1;
}

.news-title {
    font-size: 1.05rem;
    color: #333;
    margin: 0 0 8px 0;
    line-height: 1.3;
}

.news-abstract {
    font-size: 0.9rem;
    color: #777;
    margin: 0;
    line-height: 1.5;
}

/* 分类新闻样式 */
.news-categories {
    margin-top: 10px;
}

.news-category {
    margin-bottom: 10px;
}

.category-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
    padding-bottom: 0px;
    padding-left: 10px;
    border-bottom: 1px solid #f0f0f0;
}

.category-title {
    font-size: 1.1rem;
    color: #333;
    margin: 0;
    font-weight: 600;
}

.more-link {
    color: #666;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s;
    padding: 2px 8px;
    border-radius: 3px;
}

    .more-link:hover {
        color: #1e88e5;
        background-color: rgba(30, 136, 229, 0.1);
    }

/* 期刊区块样式 */
.journal-section {
    margin-top: 10px;
    margin-bottom: 10px;
    font-family: 'Segoe UI', Roboto, 'PingFang SC', sans-serif;
    /* 新增边框样式 */
    border: 1px solid #e0e0e0;
    border-radius: 8px; /* 圆角效果 */
    background-color: #fff; /* 白色背景 */
    /* 高级投影效果 */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.more-link {
    color: #1e88e5;
    font-size: 0.95rem;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
}

    .more-link:hover {
        color: #0d6bb8;
        text-decoration: underline;
    }


/* 期刊项链接样式 */
.c-qk-suggest {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); /* 自适应列数 */
    gap: 20px; /* 期刊之间的间距 */
    padding: 20px;
}

    .c-qk-suggest a {
        display: block;
        text-decoration: none; /* 去掉下划线 */
        color: inherit; /* 继承父元素颜色 */
        background-color: white;
        border-radius: 8px;
        overflow: hidden;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1); /* 期刊项阴影 */
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        text-align: center;
        padding: 15px;
    }

        /* 期刊项链接悬停效果 */
        .c-qk-suggest a:hover {
            transform: translateY(-5px); /* 悬停时轻微上移 */
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2); /* 悬停时阴影加深 */
        }

    /* 期刊图片样式 */
    .c-qk-suggest img {
        width: 100%;
        aspect-ratio: 3/4; /* 直接设置宽高比 */
        object-fit: cover;
        border-radius: 8px;
        margin-bottom: 10px;
        transition: transform 0.3s ease;
        object-fit: cover; /* 关键属性：保持比例填充 */
    }

    /* 期刊图片悬停效果 */
    .c-qk-suggest a:hover img {
        transform: scale(1.05); /* 悬停时图片轻微放大 */
    }

    /* 期刊名字样式 */
    .c-qk-suggest a .journal-name {
        font-size: 16px;
        font-weight: bold;
        color: #333333;
        margin: 0;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis; /* 文字过长时显示省略号 */
        transition: color 0.3s ease; /* 文字颜色动画 */
    }

    /* 期刊名字悬停效果 */
    .c-qk-suggest a:hover .journal-name {
        color: #007bff; /* 悬停时文字变为蓝色 */
    }

/* 加载中提示样式 */
#divjournallist {
    text-align: center;
    font-size: 18px;
    color: #666666;
    padding: 20px;
}


/* 期刊区块样式 */

/* 专家区块基础样式 */
.experts-section {
    font-family: 'Segoe UI', Roboto, 'PingFang SC', sans-serif;
    padding: 0 0;
}
/* 专家网格布局 */
.experts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 25px 15px;
    padding:5px 10px;
    margin-top:10px;
}

/* 专家卡片样式 */
.expert-card {
    background: #fff;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

    .expert-card:hover {
        transform: translateY(-3px);
        box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    }

.expert-link {
    text-decoration: none;
    color: inherit;
    display: block;
    text-align: center;
}

.expert-avatar-container {
    width: 90%;
    aspect-ratio: 1/1; /* 保持1:1正方形 */
    border-radius: 10px;
    overflow: hidden;
    margin: 0 auto 12px;
    border: 2px solid #f0f0f0;
    transition: border-color 0.3s;
}

.expert-card:hover .expert-avatar-container {
    border-color: #1e88e5;
}

.expert-avatar {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.expert-name {
    font-size: 14px;
    color: #333;
    margin: 0 0 4px;
    font-weight: 500;
    transition: color 0.2s;
}

.expert-title {
    font-size: 0.85rem;
    color: #666;
    margin: 0;
    line-height: 1.4;
}

.expert-card:hover .expert-name {
    color: #1e88e5;
}
/* 专家区块基础样式 */

/* 视频网格布局 */
.video-section {
    font-family: 'Segoe UI', Roboto, 'PingFang SC', sans-serif;
    padding: 0 0;
}
.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 25px 15px;
    margin-top: 10px;
    padding: 10px 10px;
}

/* 视频卡片样式 */
.video-card {
    background: #fff;
    border-radius: 8px;
    transition: all 0.3s ease;
}

    .video-card:hover {
        transform: translateY(-3px);
        box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    }

.video-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.video-cover-container {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9; /* 保持16:9视频比例 */
    border-radius: 6px;
    overflow: hidden;
    margin-bottom: 12px;
    background: #f5f5f5;
}

.video-cover {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.video-card:hover .video-cover {
    transform: scale(1.03);
}

.play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1e88e5;
    font-size: 14px;
    opacity: 0.9;
    transition: all 0.3s;
}

.video-card:hover .play-icon {
    background: #1e88e5;
    color: white;
}

.video-title {
    font-size: 1.05rem;
    color: #333;
    margin: 0 0 4px;
    font-weight: 500;
    transition: color 0.2s;
    padding: 0 5px;
}

.video-count {
    font-size: 0.85rem;
    color: #666;
    margin: 0;
    padding: 0 5px;
}

.video-card:hover .video-title {
    color: #1e88e5;
}
/* 视频网格布局 */


/* 知网数据基础样式 */
.article-list {
    max-width: 768px;
    margin: 0 auto;
    padding: 0 10px;
    list-style: none;
    font-family: 'Segoe UI', 'PingFang SC', 'Microsoft YaHei', sans-serif;
}

/* 列表项样式 */
.article-item {
    overflow: hidden;
    transition: all 0.3s ease;
    background-color: #fff;
}

    .article-item:hover {
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    }

/* 链接样式 */
.article-link {
    display: block;
    padding: 8px 10px;
    color: #333;
    text-decoration: none;
    font-size: 1.05rem;
    font-weight: 500;
    line-height: 1.1;
    position: relative;
    transition: color 0.2s ease;
}

    /* 悬停效果 */
    .article-link:hover {
        color: #1e88e5;
    }


/* 知网数据基础样式 */


/*推荐公司企业列表样式 */
.fcom-list {

}

.fcom-item {
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .fcom-item a {
        text-decoration: none;
        /* 其他链接样式 */
        color: inherit; /* 可选：继承父元素颜色 */
    }

        .fcom-item a:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.12);
        }

.fcom-content {
    display: flex;
    padding: 10px;
}

.fcom-text {
    flex: 1;
}

.fcom-thumbnail {
    width: 100px;
    height: 80px;
    border-radius: 8px;
    object-fit: cover;
    margin-left: 15px;
    margin-top: 20px;
}

.fcom-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #222;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.fcom-list a {
    text-decoration: none;
}

.fcom-summary {
    font-size: 14px;
    color: #666;
    margin-bottom: 10px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.fcom-meta {
    display: flex;
    align-items: center;
    font-size: 12px;
    color: #999;
}

.fcom-source {
    margin-right: 15px;
}

.fcom-time {
    display: flex;
    align-items: center;
}

    .fcom-time::before {
        content: "·";
        margin: 0 5px;
    }
/* 响应式调整 */
@media (max-width: 480px) {
    .fcom-content {
        flex-direction: column;
    }

    .fcom-thumbnail {
        width: 100%;
        height: auto;
        max-height: 150px;
        margin-left: 0;
        margin-top: 10px;
        border: 1px solid #ccc; /* 添加1像素宽的灰色实线边框 */
    }
}

/*推荐公司企业列表样式 */