.news-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}
/* 新闻列表样式 */

.news-list {
    margin-bottom: 60px;
}
.news-item {
    display: flex;
    align-items: center;
    max-width: 1100px;
    background: #eee;
    margin-bottom: 30px;
    overflow: hidden;
    position: relative;
}
.news-item:nth-child(odd) {
    margin-left: 0px;
}
.news-item:nth-child(even) {
    margin-left: 100px;
}
.news-image {
    flex: 0 0 300px;
    height: 200px;
    overflow: hidden;
}
.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}
.news-item:hover .news-image img {
    transform: scale(1.05);
}
.news-content {
    /* flex: 1; */
    padding: 20px;
    width: 65%;
}
.news-content a {
    text-decoration: none;
    color: #333;
}
.news-arrow a {
    text-decoration: none;
    color: #fff;
}
.news-date {
    color: #666666;
    font-size: 16px;
    margin-bottom: 5px;
    font-weight: 500;
}
.news-title {
    font-size: 20px;
    font-weight: 600;
    color: #333333;
    margin-bottom: 5px;
    line-height: 1.4;
}
.news-description {
    color: #666666;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 0px;
}
.news-arrow {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: #008ed6;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}
.news-arrow:hover {
    background: #0056b3;
    transform: translateY(-50%) scale(1.1);
}
/* 分页导航样式 */

.pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 10px;
}
.page-number {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #fff;
    color: #6c757d;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.page-number:hover {
    background: #007bff;
    color: white;
    transform: translateY(-2px);
}
.page-number.active {
    background: #007bff;
    color: white;
}
/* 咨询区域样式 */

.consultation-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}
.consultation-title {
    text-align: left;
    font-size: 28px;
    font-weight: 600;
    color: #333333;
    margin-bottom: 20px;
}
.consultation-description {
    text-align: left;
    color: #666666;
    font-size: 16px;
    line-height: 2rem;
    margin-bottom: 40px;
    margin-left: auto;
    margin-right: auto;
}
.consultation-buttons {
    display: flex;
    justify-content: left;
    gap: 20px;
}
.btn {
    padding: 12px 30px;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}
.btn-primary {
    background: #008ed6;
    color: white;
}
.btn-primary:hover {
    background: #008ed6;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
}
.btn-secondary {
    background: #6c757d;
    color: white;
}
.btn-secondary:hover {
    background: #545b62;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(108, 117, 125, 0.3);
}
/* 响应式设计 */

@media (max-width: 768px) {
    .news-container {
        padding: 20px 15px;
    }
    .news-item {
        flex-direction: column;
        margin-bottom: 20px;
    }
    .news-item.reverse {
        flex-direction: column;
    }
    .news-image {
        flex: none;
        width: 100%;
        height: 200px;
    }
    .news-content {
        width: 100%;
        padding: 10px;
    }
    .news-title {
        font-size: 14px;
    }
    .news-arrow {
        display: none;
    }
    .consultation-section {
        padding: 30px 20px;
    }
    .consultation-title {
        font-size: 24px;
    }
    .consultation-description {
        font-size: 14px;
    }
    .consultation-buttons {
        align-items: center;
    }
    .btn {
        width: 140px;
    }
}
@media (max-width: 480px) {
    .news-list {
        margin-bottom: 10px;
    }
    .hero-title-section {
        margin-top: 0px;
        padding-bottom: 20px;
        background: none;
        border-radius: 0px;
        backdrop-filter: blur(10px);
        border: none;
    }
    .pagination {
        flex-wrap: wrap;
        gap: 5px;
        margin-bottom: 10px;
    }
    .page-number {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }
    .consultation-title {
        font-size: 20px;
    }
    .consultation-description {
        font-size: 14px;
        line-height: 1.8;
        margin-bottom: 20px;
    }
    .news-item:nth-child(odd) {
        margin-left: 0px;
    }
    .news-item:nth-child(even) {
        margin-left: 0px;
    }
}