/* 资讯动态页面样式 */

/* 主要内容区域样式 */
.news-page .main-content {
    padding: 160px 160px;
    position: relative;
}

/* 主体背景图样式 - 资讯页面 */
.news-page .main-content::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/conteng-bg-1.png');
    background-repeat: no-repeat;
    background-position: bottom center;
    background-size: contain;
    opacity: 1;
    z-index: -1;
}

.news-container {
    display: flex;
    align-items: stretch;
    height: auto;
    gap: 40px;
}

.news-image {
    flex: 0 0 40%;
    height: fit-content;
}

.news-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}

.news-coming-soon {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.news-content-wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.news-divider {
    width: 100%;
    border: none;
    height: 1px;
    background-color: #e0e0e0;
    margin: 0;
}

.news-coming-soon p {
    font-size: 18px;
    line-height: 1.5;
    color: #333;
    text-align: left;
    font-weight: 500;
}

.news-arrow {
    width: 80px;
    height: auto;
    margin-bottom: 0;
}

/* 响应式样式 */
@media (max-width: 1024px) {
    .news-page .main-content {
        padding: 80px 40px;
    }
    
    /* 覆盖container在main-content内的padding */
    .news-page .main-content .container {
        padding: 0;
    }
    
    .news-container {
        gap: 30px;
    }
    
    .news-image {
        flex: 0 0 45%;
    }
}

@media (max-width: 480px) {
    .news-page .main-content {
        padding: 60px 16px;
    }
    
    .news-container {
        flex-direction: column;
        gap: 20px;
    }
    
    .news-image {
        flex: 0 0 100%;
    }
    
    .news-coming-soon p {
        font-size: 14px;
    }
    
    .news-arrow {
        width: 40px;
        align-self: flex-start;
        margin-top: 10px;
    }
}