/* 背景容器样式 */
.news-background {
    position: relative;
    width: 100%;
    background: url(../image/newsbg.jpg) repeat;
	padding: 80px 0;
}



/* 新闻部分基础样式 */
.news-section {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* 头部样式 */
.news-header {
    position: relative;
    margin-bottom: 50px;
}

.news-header .news-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.news-header h2 {
    font-size: 28px;
    color: #064ebb;
    margin: 0;
    font-weight: 600;
    letter-spacing: 0.5px;
    position: relative;
    padding: 0 15px;
}

.news-header .line {
    display: block;
    height: 2px;
    width: 60px;
    background: linear-gradient(90deg, 
        rgba(6,78,187,0.1) 0%,
        rgba(6,78,187,0.8) 50%,
        rgba(6,78,187,0.1) 100%
    );
}

/* 更多链接样式 */
.more-link {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    gap: 8px;
    color: #064ebb;
    text-decoration: none;
    font-size: 15px;
    padding: 8px 16px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
}

.more-link:hover {
    background: rgba(255, 255, 255, 0.95);
    transform: translateY(-50%) translateX(-5px);
}

.arrow-icon {
    transition: transform 0.3s ease;
}

.more-link:hover .arrow-icon {
    transform: translateX(5px);
}

/* 新闻列表样式 */
.news-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.news-item {
    position: relative;
    padding: 25px;
    background: url(../image/newsbg2.jpg) no-repeat;
    backdrop-filter: blur(10px);
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.news-item::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 12px;
    border: 2px solid #064ebb;
    opacity: 0;
    transition: all 0.3s ease;
}

.news-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(6,78,187,0.1);
    background: url(../image/newsbg3.jpg) no-repeat;
}

.news-item:hover::before {
    opacity: 1;
}

/* 日期样式 */
.news-date {
    margin-bottom: 15px;
}

.news-date .day {
    display: block;
    font-size: 36px;
    line-height: 1;
    color: #064ebb;
    font-weight: bold;
    margin-bottom: 5px;
    font-family: 'Arial', sans-serif;
}

.news-date .year {
    display: block;
    font-size: 14px;
    color: #064ebb;
    opacity: 0.7;
}

/* 新闻标题样式 */
.news-item .news-title {
    margin: 0;
    text-align: right;
}

.title-link {
    color: #333;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
    padding-bottom: 5px;
}

.title-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #064ebb;
    transition: width 0.3s ease;
}

.title-link:hover {
    color: #064ebb;
}

.title-link:hover::after {
    width: 100%;
}

/* 响应式布局 */
@media (max-width: 1024px) {
    .news-background {
        padding: 60px 0;
    }

    .news-list {
        grid-template-columns: repeat(2, 1fr);
    }

    .news-header h2 {
        font-size: 24px;
    }
}

@media (max-width: 768px) {
    .news-background {
        padding: 40px 0;
        background-attachment: scroll;
    }

    .news-section {
        padding: 0 15px;
    }

    .news-header .line {
        width: 40px;
    }

    .more-link {
        position: relative;
        transform: none;
        margin-top: 20px;
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .news-list {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .news-item {
        padding: 20px;
    }

    .news-header h2 {
        font-size: 20px;
    }
}