/* 公司信息页面样式 */
.company-header {
    margin-bottom: 30px;
    border-bottom: 1px solid #e0e0e0;
    padding-bottom: 15px;
}

.section-title {
    font-size: 28px;
    font-weight: bold;
    color: #0056a4;
    margin-bottom: 5px;
}

.section-subtitle {
    font-size: 16px;
    color: #333;
    margin-top: 0;
}

.company-content {
    line-height: 1.8;
    font-size: 14px; 
}

.company-content p {
    margin-bottom: 15px;
    text-align: justify;
}

.company-images {
    margin: 30px 0;
    text-align: center;
}

.company-image-row {
    display: flex;
    gap: 20px;
    margin-bottom: 10px;
}

.company-image-row img {
    flex: 1;
    max-width: 48%;
    height: auto;
    border: 1px solid #e0e0e0;
    background: #fff;
    /* 移除边框和内边距 */
    border: none;
    padding: 0;
    background: transparent;
}

.company-image-single {
    margin: 30px 0;
    text-align: center;
}

.company-image-single img {
    max-width: 80%;
    height: auto;
    border: 0px solid #e0e0e0;
    padding: 5px;
    background: #fff;
}

.image-caption {
    margin-top: 10px;
    text-align: center !important;
    color: #666;
}

/* 响应式调整 */
@media (max-width: 768px) {
    .company-image-row {
        flex-direction: column;
    }
    
    .company-image-row img {
        max-width: 100%;
        margin-bottom: 15px;
    }
}

/* 新闻网格布局 - 修改为列表布局 */
.news-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 30px;
}

.news-item {
    display: flex;
    background-color: #fff;
    border-bottom: 1px solid #eee;
    padding-bottom: 30px;
    margin-bottom: 10px;
}

.news-item:nth-child(even) {
    flex-direction: row-reverse;
}

.news-item a {
    display: flex;
    text-decoration: none;
    color: inherit;
    width: 100%;
}

.news-item:nth-child(even) a {
    flex-direction: row-reverse;
}

.news-item img {
    width: 280px;
    height: 180px;
    object-fit: cover;
    margin-right: 30px;
}

.news-item:nth-child(even) img {
    margin-right: 0;
    margin-left: 30px;
}

.news-item h3 {
    font-size: 18px;
    margin: 0 0 10px;
    color: #333;
    line-height: 1.4;
}

.news-item p {
    font-size: 14px;
    color: #666;
    margin: 0 0 15px;
    line-height: 1.5;
}

.news-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.news-date {
    font-size: 12px;
    color: #888;
    margin: 0 0 10px;
}

/* 响应式调整 */
@media (max-width: 768px) {
    .news-item, .news-item:nth-child(even) {
        flex-direction: column;
    }
    
    .news-item a, .news-item:nth-child(even) a {
        flex-direction: column;
    }
    
    .news-item img, .news-item:nth-child(even) img {
        width: 100%;
        margin-right: 0;
        margin-left: 0;
        margin-bottom: 15px;
    }
}

.news-navigation {
    display: flex;
    width: 100%;
    max-width: 1180px;
    margin: 40px auto 20px auto;
    font-size: 14px;
}
.news-navigation > div {
    flex: 1;
    text-align: center;
}
.news-navigation a {
    color: #3a5a99;
    text-decoration: none;
    transition: color 0.2s;
}
.news-navigation a:hover {
    color: #ff0000;
}
