/* 期刊浏览栏目样式文件 */

/* 小屏幕下期刊浏览布局优化 */
@media (max-width: 768px) {
    .index03-scope .journals-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto auto auto auto auto auto auto auto auto;
        gap: 15px;
    }
    
    /* 隐藏三个标题按钮 */
    .index03-scope .journal-title {
        display: none;
    }
    
    /* 期刊项目布局 - 小屏幕下每行显示两张图片 */
    .index03-scope .journal-item:nth-child(4) {
        grid-column: 1 / span 1;
        grid-row: 2;
    }
    
    .index03-scope .journal-item:nth-child(5) {
        grid-column: 2 / span 1;
        grid-row: 2;
    }
    
    .index03-scope .journal-item:nth-child(6) {
        grid-column: 1 / span 1;
        grid-row: 4;
    }
    
    .index03-scope .journal-item:nth-child(7) {
        grid-column: 2 / span 1;
        grid-row: 4;
    }
    
    .index03-scope .journal-item:nth-child(8) {
        grid-column: 1 / span 1;
        grid-row: 6;
    }
    
    .index03-scope .journal-item:nth-child(9) {
        grid-column: 2 / span 1;
        grid-row: 6;
    }
    
    /* 标题按钮布局 - 放在对应图片上方 */
    .index03-scope .journal-title:nth-child(1) {
        display: block !important;
        grid-column: 1 / span 2;
        grid-row: 1;
        text-align: center;
        padding: 8px 16px;
        background: #e3f2fd;
        color: #2a4c89;
        border-radius: 6px;
        font-size: 0.9rem;
        font-weight: 600;
        margin-bottom: 10px;
    }
    
    .index03-scope .journal-title:nth-child(2) {
        display: block !important;
        grid-column: 1 / span 2;
        grid-row: 3;
        text-align: center;
        padding: 8px 16px;
        background: #e3f2fd;
        color: #2a4c89;
        border-radius: 6px;
        font-size: 0.9rem;
        font-weight: 600;
        margin-bottom: 10px;
    }
    
    .index03-scope .journal-title:nth-child(3) {
        display: block !important;
        grid-column: 1 / span 2;
        grid-row: 5;
        text-align: center;
        padding: 8px 16px;
        background: #e3f2fd;
        color: #2a4c89;
        border-radius: 6px;
        font-size: 0.9rem;
        font-weight: 600;
        margin-bottom: 10px;
    }
    
    /* More按钮布局 - 只保留一个 */
    .index03-scope .journal-more:nth-child(10) {
        grid-column: 1 / span 2;
        grid-row: 7;
        text-align: center;
        margin-top: 15px;
    }
    
    .index03-scope .journal-more:nth-child(11) {
        display: none !important;
    }
    
    .index03-scope .journal-more:nth-child(12) {
        display: none !important;
    }
    
    /* More按钮样式 - 更简洁 */
    .index03-scope .more-btn {
        display: inline-block;
        padding: 6px 12px;
        background: none;
        color: #2a4c89;
        text-decoration: none;
        border: none;
        border-radius: 0;
        font-size: 0.85rem;
        font-weight: 400;
        text-transform: none;
        letter-spacing: normal;
        box-shadow: none;
        transition: none;
    }
}

/* 大屏幕下期刊浏览布局优化 */
@media (min-width: 769px) {
    .index03-scope .journals-grid {
        display: grid;
        grid-template-columns: repeat(6, 1fr);
        grid-template-rows: auto auto auto auto;
        gap: 20px;
        padding: 20px;
        background: #fff;
        border-radius: 12px;
        box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    }
    
    /* 期刊标题按钮样式 - 大屏幕下显示 */
    .index03-scope .journal-title {
        display: block !important;
        padding: 12px 20px;
        background: #e3f2fd;
        color: #2a4c89;
        text-decoration: none;
        border-radius: 6px;
        font-size: 1rem;
        font-weight: 600;
        text-align: center;
        transition: all 0.3s ease;
        border: 1px solid #bbdefb;
        margin: 0 10px;
    }
    
    .index03-scope .journal-title:hover {
        background: #bbdefb;
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(42, 76, 137, 0.2);
    }
    
    /* 标题按钮布局 - 放在对应图片上方 */
    .index03-scope .journal-title:nth-child(1) {
        grid-column: 1 / span 2;
        grid-row: 1;
        text-align: center;
        margin-bottom: 15px;
    }
    
    .index03-scope .journal-title:nth-child(2) {
        grid-column: 3 / span 2;
        grid-row: 1;
        text-align: center;
        margin-bottom: 15px;
    }
    
    .index03-scope .journal-title:nth-child(3) {
        grid-column: 5 / span 2;
        grid-row: 1;
        text-align: center;
        margin-bottom: 15px;
    }
    
    /* 期刊项目样式 - 大屏幕下 */
    .index03-scope .journal-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 15px;
        background: #fff;
        border-radius: 12px;
        box-shadow: 0 4px 15px rgba(0,0,0,0.1);
        border: 1px solid #e0e0e0;
        text-decoration: none;
        color: #333;
        transition: all 0.3s ease;
    }
    
    .index03-scope .journal-item:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 25px rgba(0,0,0,0.15);
        border-color: #2a4c89;
    }
    
    .index03-scope .journal-item img {
        max-width: 120px;
        height: auto;
        border-radius: 8px;
        box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        margin-bottom: 10px;
        transition: all 0.3s ease;
    }
    
    .index03-scope .journal-item:hover img {
        box-shadow: 0 6px 16px rgba(0,0,0,0.2);
    }
    
    .index03-scope .journal-item h6 {
        font-size: 0.9rem;
        font-weight: 600;
        color: #333;
        text-align: center;
        margin: 0;
        line-height: 1.3;
    }
    
    /* 期刊项目网格定位 - 大屏幕下六张图片在一行 */
    .index03-scope .journal-item:nth-child(4) {
        grid-column: 1 / span 1;
        grid-row: 2;
    }
    
    .index03-scope .journal-item:nth-child(5) {
        grid-column: 2 / span 1;
        grid-row: 2;
    }
    
    .index03-scope .journal-item:nth-child(6) {
        grid-column: 3 / span 1;
        grid-row: 2;
    }
    
    .index03-scope .journal-item:nth-child(7) {
        grid-column: 4 / span 1;
        grid-row: 2;
    }
    
    .index03-scope .journal-item:nth-child(8) {
        grid-column: 5 / span 1;
        grid-row: 2;
    }
    
    .index03-scope .journal-item:nth-child(9) {
        grid-column: 6 / span 1;
        grid-row: 2;
    }
    
    /* More按钮样式 - 大屏幕下显示所有三个 */
    .index03-scope .journal-more {
        text-align: center;
        margin-top: 15px;
    }
    
    .index03-scope .more-btn {
        display: inline-block;
        padding: 12px 30px;
        background: #2a4c89;
        color: #ffffff;
        text-decoration: none;
        border: none;
        border-radius: 25px;
        font-size: 1rem;
        font-weight: 600;
        transition: all 0.3s ease;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        box-shadow: 0 2px 8px rgba(42, 76, 137, 0.2);
    }
    
    .index03-scope .more-btn:hover {
        background: #1e3a6b;
        transform: translateY(-2px);
        box-shadow: 0 4px 15px rgba(42, 76, 137, 0.3);
    }
    
    /* More按钮网格定位 - 大屏幕下均匀分布 */
    .index03-scope .journal-more:nth-child(10) {
        grid-column: 1 / span 2;
        grid-row: 3;
        text-align: center;
    }
    
    .index03-scope .journal-more:nth-child(11) {
        grid-column: 3 / span 2;
        grid-row: 3;
        text-align: center;
    }
    
    .index03-scope .journal-more:nth-child(12) {
        grid-column: 5 / span 2;
        grid-row: 3;
        text-align: center;
    }
}
    
/* 快速通道样式 */
.footer_bottom {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 30px 0;
    border-top: 1px solid #dee2e6;
    position: relative;
    overflow: hidden;
}

.footer_bottom::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23e9ecef" stroke-width="0.5" opacity="0.3"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.1;
    z-index: 1;
}

.footer_bottom .w1200 {
    position: relative;
    z-index: 2;
}

.footer_bottom p {
    display: flex;
    align-items: center;
    gap: 20px;
    margin: 0;
    font-size: 1rem;
    color: #2a4c89;
    font-weight: 600;
}

.footer_bottom p i {
    width: 4px;
    height: 20px;
    background: linear-gradient(135deg, #2a4c89 0%, #4a6fa5 100%);
    border-radius: 2px;
    display: inline-block;
}

.footer_bottom span {
    display: inline-block;
}

.footer_bottom span a {
    display: inline-block;
    padding: 8px 16px;
    background: #ffffff;
    color: #495057;
    text-decoration: none;
    border: 1px solid #dee2e6;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.footer_bottom span a:hover {
    background: #2a4c89;
    color: #ffffff;
    border-color: #2a4c89;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(42, 76, 137, 0.2);
}

/* 响应式设计 */
@media (max-width: 768px) {
    .footer_bottom p {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .footer_bottom span {
        width: 100%;
    }
    
    .footer_bottom span a {
        width: 100%;
        text-align: center;
        padding: 12px 16px;
    }
}

@media (max-width: 480px) {
    .footer_bottom {
        padding: 20px 0;
    }
    
    .footer_bottom p {
        font-size: 0.9rem;
    }
    
    .footer_bottom span a {
        font-size: 0.85rem;
        padding: 10px 14px;
    }
