/* 全局样式 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'PingFang SC', 'Microsoft YaHei', sans-serif;
}

body {
    background-color: #f5f5f5;
    color: #333;
    line-height: 1.6;
}

.container-1-41 {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* 右侧悬浮按钮 */
.floating-buttons {
    position: fixed;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    z-index: 1000;
}

.floating-button {
    display: block;
    padding: 10px 15px;
    margin-bottom: 10px;
    background-color: #fff;
    color: #333;
    text-decoration: none;
    border-radius: 4px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    text-align: center;
    font-size: 14px;
    transition: all 0.3s ease;
}

.floating-button:hover {
    background-color: #f0f0f0;
    transform: translateX(-5px);
}

.floating-button.urgent {
    background-color: #E4393C;
    color: white;
}

.floating-button.urgent:hover {
    background-color: #C1272D;
}

/* 导航栏样式 */
#header-1-06 {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-1-003 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.nav-left-1-228 {
    display: flex;
    align-items: center;
}

.logo-1-519 {
    font-size: 24px;
    font-weight: bold;
    color: #E4393C;
    text-decoration: none;
    margin-right: 30px;
}

.nav-links-1-520 {
    display: flex;
}

.nav-link-1-893, .nav-link-1-894, .nav-link-1-895, .nav-link-1-896, .nav-link-1-897 {
    margin-right: 20px;
    text-decoration: none;
    color: #666;
    font-size: 16px;
    transition: color 0.3s ease;
    display: none; /* 隐藏导航链接 */
}

.nav-link-1-893:hover, .nav-link-1-894:hover, .nav-link-1-895:hover, .nav-link-1-896:hover, .nav-link-1-897:hover {
    color: #E4393C;
}

.nav-link-1-893.active, .nav-link-1-894.active, .nav-link-1-895.active, .nav-link-1-896.active, .nav-link-1-897.active {
    color: #E4393C;
    font-weight: 500;
}

.nav-right-1-229 {
    display: flex;
    align-items: center;
}

.search-container-1-523 {
    position: relative;
    margin-right: 15px;
}

.search-input-1-907 {
    padding: 8px 15px;
    padding-right: 40px;
    border: 1px solid #ddd;
    border-radius: 4px;
    width: 250px;
    font-size: 14px;
}

.search-icon-button-1-908 {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    color: #999;
}

.search-button-1-522 {
    padding: 8px 20px;
    background-color: #E4393C;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    transition: background-color 0.3s ease;
}

.search-button-1-522:hover {
    background-color: #C1272D;
}

/* 期刊详情页样式 */
#journal-detail-main {
    padding: 30px 0;
}

.journal-detail-container {
    max-width: 1200px;
    margin: 0 auto;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

/* 期刊信息部分 */
.journal-info-section {
    display: flex;
    padding: 30px;
    border-bottom: 1px solid #eee;
}

.journal-cover {
    flex: 0 0 200px;
    margin-right: 30px;
}

.journal-cover-img {
    width: 100%;
    border: 1px solid #eee;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.journal-details {
    flex: 1;
}

.journal-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.journal-title {
    font-size: 24px;
    font-weight: 600;
    color: #333;
    margin-right: 15px;
}

.journal-tags {
    display: flex;
}

.tag {
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    margin-right: 8px;
    color: white;
}

.tag.core {
    background-color: #f39c12;
}

.tag.cn {
    background-color: #E4393C;
}

.tag.issn {
    background-color: #2ecc71;
}

.journal-stats {
    display: flex;
    margin-bottom: 20px;
}

.stat-item {
    display: flex;
    align-items: center;
    margin-right: 30px;
}

.stat-icon {
    margin-right: 8px;
    font-size: 16px;
}

.stat-label {
    color: #666;
    margin-right: 8px;
}

.stat-value {
    font-weight: 500;
    color: #333;
}

.journal-description {
    margin-bottom: 20px;
    line-height: 1.8;
    color: #555;
    font-size: 14px;
}

.journal-meta {
    margin-bottom: 20px;
}

.meta-row {
    display: flex;
    margin-bottom: 10px;
}

.meta-item {
    flex: 1;
    display: flex;
    font-size: 14px;
}

.meta-label {
    color: #666;
    margin-right: 8px;
    min-width: 100px;
}

.meta-value {
    color: #333;
    font-weight: 500;
}

.journal-tags-list {
    display: flex;
    flex-wrap: wrap;
}

.tag-item {
    padding: 6px 12px;
    background-color: #f0f0f0;
    border-radius: 4px;
    margin-right: 10px;
    margin-bottom: 10px;
    font-size: 13px;
    color: #555;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.tag-item:hover {
    background-color: #e0e0e0;
}

/* 期刊标签页部分 */
.journal-tabs-section {
    padding: 30px;
}

.tabs-header {
    display: flex;
    border-bottom: 1px solid #eee;
    margin-bottom: 20px;
}

.tab-button {
    padding: 10px 20px;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 16px;
    color: #666;
    position: relative;
    transition: color 0.3s ease;
}

.tab-button:hover {
    color: #E4393C;
}

.tab-button.active {
    color: #E4393C;
    font-weight: 500;
}

.tab-button.active::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #E4393C;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

/* 收录记录布局 */
.records-container {
    display: flex;
    gap: 30px;
}

.years-container {
    flex: 0 0 250px;
}

.current-issue-articles {
    flex: 1;
}

/* 年份抽屉式选择器 */
.year-drawer {
    margin-bottom: 15px;
    border: 1px solid #eee;
    border-radius: 6px;
    overflow: hidden;
}

.year-drawer.active {
    border-color: #E4393C;
}

.year-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 15px;
    background-color: #f8f8f8;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.year-drawer.active .year-header {
    background-color: #FADCDC;
}

.year-header:hover {
    background-color: #f0f0f0;
}

.year {
    font-weight: 500;
    font-size: 16px;
}

.drawer-toggle {
    color: #666;
    font-size: 12px;
}

.months-container {
    padding: 10px 15px;
    background-color: #fff;
}

.months-row {
    display: flex;
    margin-bottom: 10px;
}

.months-row:last-child {
    margin-bottom: 0;
}

.month {
    flex: 0 0 50%;
    padding: 8px 0;
    margin-right: 10px;
    border-radius: 4px;
    cursor: pointer;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #eee;
}

.month:last-child {
    margin-right: 0;
}

.month:hover {
    background-color: #f0f0f0;
}

.month.active {
    background-color: #E4393C;
    color: white;
    border-color: #E4393C;
}

/* 当前期文章列表 */
.issue-title {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
    color: #333;
}

/* 文章列表 */
.articles-list {
    margin-top: 30px;
}

.article-item {
    padding: 15px 0;
    border-bottom: 1px solid #eee;
}

.article-title {
    font-size: 16px;
    font-weight: 500;
    color: #333;
    margin-bottom: 8px;
    cursor: pointer;
    transition: color 0.3s ease;
}

.article-title:hover {
    color: #E4393C;
}

.article-authors {
    font-size: 14px;
    color: #666;
    margin-bottom: 5px;
}

.article-pages {
    font-size: 14px;
    color: #999;
}

/* 响应式设计 */

/* 响应式设计 */
@media (max-width: 992px) {
    .journal-info-section {
        flex-direction: column;
    }
    
    .journal-cover {
        margin-right: 0;
        margin-bottom: 20px;
        max-width: 200px;
    }
    
    .meta-row {
        flex-direction: column;
    }
    
    .meta-item {
        margin-bottom: 10px;
    }
}

@media (max-width: 768px) {
    .nav-1-003 {
        flex-direction: column;
    }
    
    .nav-left-1-228, .nav-right-1-229 {
        width: 100%;
        margin-bottom: 15px;
    }
    
    .nav-links-1-520 {
        overflow-x: auto;
        white-space: nowrap;
        padding-bottom: 5px;
    }
    
    .search-input-1-907 {
        width: 100%;
    }
    
    .journal-stats {
        flex-direction: column;
    }
    
    .stat-item {
        margin-bottom: 10px;
    }
    
    .tabs-header {
        overflow-x: auto;
        white-space: nowrap;
    }
}

.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 32px 0 0 0;
    gap: 8px;
}
.pagination-btn {
    border: none;
    background: #fff;
    color: #E4393C;
    font-size: 15px;
    padding: 6px 14px;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
    box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}
.pagination-btn.page-num.active, .pagination-btn.page-num:hover {
    background: #E4393C;
    color: #fff;
}
.pagination-btn:disabled {
    color: #ccc;
    background: #f5f5f5;
    cursor: not-allowed;
}

.nav-a:link,.nav-a:visited{
    text-decoration: none;
}