@charset "utf-8";
/* CSS Document */
.info-section {
    padding: 60px 0;
    display: flex;
    justify-content: center;
	background-image:url(../img/img_building3.png);
    background-size: cover;
    background-position: center 70%;
    background-repeat: no-repeat;
    position: relative;
    min-height: 600px; /* 新增最小高度 */
}

/* 修正遮罩层 */
.info-section::before {
    content: '';
    position: absolute;

    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255,255,255,0.30);
    z-index: 0; /* 修正层级 */
}

.info-container {
    width: 90%;
    max-width: 1200px;
    display: flex;
    gap: 40px;
    position: relative;
    z-index: 1; /* 确保内容在遮罩层上方 */
}

.news-image {
    max-height: 500px;
	max-width: 700px;

    object-fit: contain;

    background: #f5f5f5;
}

.info-column {
    flex: 3;
    background: #fff;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
    border-radius: 8px;
    padding: 25px;
}

.title-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #06487a;
}

.title-row h3 {
    font-size: 22px;
    color: #06487a;
    margin: 0;
}

.more-btn {
    background: #06487a;
    color: white;
    border: none;
    padding: 8px 25px;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s;
}

.more-btn:hover {
    background: #0a6aa5;
    transform: translateY(-2px);
}

.news-image {
    width: 100%;
    height: auto;
    aspect-ratio: 4/3;
    object-fit: cover;
    border-radius: 6px;
    margin-bottom: 15px;
}

.info-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #eee;
}

.date {
    color: #06487a;
    font-weight: 700;
    font-size: 15px;
    min-width: 100px;
}

.text {
    flex: 1;
    text-align: right;
    color: #333;
    font-size: 16px;
    padding-left: 20px;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .info-container {
        width: 90%;
        flex-direction: column;
    }
    
    .title-row h3 {
        font-size: 20px;
    }
    
    .more-btn {
        padding: 6px 20px;
    }
    
    .info-row {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .text {
        text-align: left;
        padding-left: 0;
        margin-top: 8px;
    }
}

@media (max-width: 1200px) {
    .info-container {
        width: 85%;
        gap: 30px;
    }
}

@media (max-width: 992px) {
    .news-image {
        max-height: 300px;
    }
}

@media (max-width: 768px) {
    .info-container {
        width: 90%;
        flex-direction: column;
    }
    
    .news-image {
        max-height: 250px;
        object-fit: cover;
    }
    
    .info-section::before {
        background: rgba(255,255,255,0.96);
    }
}

@media (max-width: 480px) {
    .news-image {
        max-height: 200px;
    }
}
