.journal-info-sidebar {
    text-align: center;
    width: 200px;
    font-size: 14px;
    background-color: #f9f9f9;
    padding: 15px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    font-family: "Microsoft YaHei", Arial, sans-serif;
    color: #333;
}

.journal-header {
    margin-bottom: 15px;
    border-bottom: 1px solid #eaeaea;
    padding-bottom: 10px;
}

.journal-title {
    text-align: center;
    font-weight: bold;
    font-size: 16px;
    margin: 0 0 5px 0;
    color: #1a56a8;
}

.journal-since {
    text-align: center;
    margin: 0;
    color: #666;
    font-size: 13px;
}

.detail-item {
    margin-bottom: 12px;
}

.detail-label {
    font-weight: 600;
    margin: 0 0 3px 0;
    color: #555;
}

.detail-content {
    margin: 0;
    color: #333;
}

.divider {
    height: 1px;
    background-color: #eaeaea;
    margin: 15px 0;
}

.contact-info {
    margin: 15px 0;
}

.contact-item {
    margin: 0 0 10px 0;
    position: relative;
    /*padding-left: 20px;*/
}

.contact-item:before {
    content: "";
    position: absolute;
    left: 0;
    top: 4px;
    width: 14px;
    height: 14px;
    background-size: contain;
    background-repeat: no-repeat;
}



.wechat-info {
    margin-top: 15px;
    text-align: center;
}

.wechat-title {
    font-weight: 600;
    margin-bottom: 8px;
    color: #1a56a8;
}

.wechat-qrcode {
    width: 100px;
    height: auto;
    border: 1px solid #ddd;
    padding: 5px;
    background: white;
}

@media (max-width: 768px) {
    .journal-info-sidebar {
        width: 100%;
        margin-bottom: 20px;
    }
}




.news-list-container {
    width: 80%;
    font-family: 'Microsoft YaHei', Arial, sans-serif;
}

.news-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.news-item {
    padding: 15px 0;
    border-bottom: 1px solid #f0f0f0;
}

.news-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.news-title {
    font-size: 18px;
    color: #333;
    text-decoration: none;
    font-weight: bold;
    flex: 1;
}

.news-title:hover {
    color: #1890ff;
    text-decoration: underline;
}

.news-date {
    font-size: 14px;
    color: #999;
    margin-left: 15px;
}



.news-authors {
    font-size: 14px;
    color: #666;
    margin: 0;
    line-height: 1.6;
}

.news-content {
    margin-top: 5px;
}

.news-abstract {
    font-size: 14px;
    color: #666;
    line-height: 1.8;
    margin: 0;
    text-align: justify;
}

.pagination-wrapper {
    margin-top: 30px;
    text-align: center;
}

/* Responsive design */
@media (max-width: 768px) {
    .news-list-container {
        width: 100%;
    }
    
    .news-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .news-date {
        margin-left: 0;
        margin-top: 5px;
    }
}