
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

body {

    color: #333;
    line-height: 1.6;
}


/* 面包屑导航 */
.breadcrumb {
    padding: 15px 0;
    margin-bottom: 30px;
}

.breadcrumb ul {
    display: flex;
    list-style: none;
}

.breadcrumb li {
    margin-right: 10px;
    font-size: 14px;
    color: #666;
}

.breadcrumb li:after {
    content: '>';
    margin-left: 10px;
    color: #999;
}

.breadcrumb li:last-child:after {
    content: '';
}

.breadcrumb a {
    color: #2980b9;
    text-decoration: none;
    transition: color 0.3s;
}

.breadcrumb a:hover {
    color: #2980b9;
    text-decoration: underline;
}

/* 新闻列表 */
.news-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.news-item {
    cursor: pointer;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    display: flex;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.4s ease;
    height: 210px;
    transform: translateX(0);
    position: relative;
    z-index: 1;
}

.news-item:hover {
    transform: translateX(20px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    z-index: 2;
}

.news-date {
    width: 100px;
    background-color: #f1f8fe;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 15px;
    position: relative;
}

.news-date:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background-color: #2980b9;
}

.calendar-icon {
    font-size: 24px;
    color: #3498db;
    margin-bottom: 5px;
}

.date-info {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.date-info > div {
    display: flex;
    align-items: baseline;
}

.date-day {
    font-size: 24px;
    font-weight: bold;
    color: #333;
}

.date-month {
    font-size: 12px;
    color: #777;
    text-transform: uppercase;
    margin-left: 5px;
}

.date-year {
    font-size: 14px;
    color: #777;
    display: block;
    text-align: center;
    margin-top: 5px;
}

.news-content {
    flex: 1;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.news-title {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #2c3e50;
    transition: color 0.3s ease;
}

.news-item:hover .news-title {
    color: #2980b9;
}

.news-excerpt {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.news-image {
    border-radius: 10px;
    padding: 5px;
    width: 260px;
    height: 210px;
    object-fit: cover;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.news-item:hover .news-image {
    transform: scale(1.05);
}

/* 响应式设计 */
@media (max-width: 768px) {
    .news-item {
        flex-direction: column;
        height: auto;
    }

    .news-item:hover {
        transform: translateX(10px); /* 在移动设备上减小移动距离 */
    }

    .news-date {
        width: 100%;
        flex-direction: row;
        justify-content: flex-start;
        gap: 15px;
        padding: 10px 15px;
    }

    .calendar-icon {
        margin-bottom: 0;
    }

    .date-info {
        flex-direction: row;
        align-items: center;
        gap: 10px;
    }

    .date-year {
        margin-left: 5px;
        margin-top: 0;
    }

    .news-image {
        width: 100%;
        height: 180px;
    }
}

/* 动画效果 */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 初始隐藏新闻项 */
.news-item.init-hidden {
    opacity: 0;
}

/* 入场动画类 */
.news-item.fade-in {
    animation-name: fadeInUp;
    animation-duration: 0.5s;
    animation-fill-mode: forwards;
    animation-timing-function: ease;
}

.news-item:nth-child(1) {
    animation-delay: 0.1s;
}

.news-item:nth-child(2) {
    animation-delay: 0.2s;
}

.news-item:nth-child(3) {
    animation-delay: 0.3s;
}

.news-item:nth-child(4) {
    animation-delay: 0.4s;
}

.news-item:nth-child(5) {
    animation-delay: 0.5s;
}




     /* 面包屑导航 */
 .breadcrumb {
     padding: 15px 0;
     margin-bottom: 30px;
 }

.breadcrumb ul {
    display: flex;
    list-style: none;
}

.breadcrumb li {
    margin-right: 10px;
    font-size: 14px;
    color: #666;
}

.breadcrumb li:after {
    content: '>';
    margin-left: 10px;
    color: #999;
}

.breadcrumb li:last-child:after {
    content: '';
}

.breadcrumb a {
    color: #2980b9;
    text-decoration: none;
    transition: color 0.3s;
}

.breadcrumb a:hover {
    color: #2980b9;
    text-decoration: underline;
}


.date-info > div {
    display: flex;
    align-items: baseline;
}


.news-content {
    flex: 1;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.news-title {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #2c3e50;
    transition: color 0.3s ease;
}

.news-item:hover .news-title {
    color: #2980b9;
}






/* 响应式设计 */
@media (max-width: 768px) {
    .news-item {
        flex-direction: column;
        height: auto;
    }

    .news-item:hover {
        transform: translateX(10px); /* 在移动设备上减小移动距离 */
    }

    .news-date {
        width: 100%;
        flex-direction: row;
        justify-content: flex-start;
        gap: 15px;
        padding: 10px 15px;
    }

    .calendar-icon {
        margin-bottom: 0;
    }

    .date-info {
        flex-direction: row;
        align-items: center;
        gap: 10px;
    }

    .date-year {
        margin-left: 5px;
        margin-top: 0;
    }

    .news-image {
        width: 100%;
        height: 180px;
    }
}

/* 动画效果 */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}





 .news-container {
     /*background-color: white;*/
     border-radius: 8px;
     padding: 30px;
     /*box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);*/
 }

.news-title {
    font-size: 24px;
    font-weight: 600;
    text-align: left;
    margin-bottom: 25px;
    line-height: 1.4;
    letter-spacing: 0.5px;
    color: #222;
}

.news-meta {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
    color: #666;
    font-size: 14px;
}

.meta-item {
    margin: 0 15px;
    display: flex;
    align-items: center;
}

.meta-item i {
    margin-right: 5px;
    font-size: 16px;
}

.news-content {
    font-size: 16px;
    line-height: 1.8;
    letter-spacing: 0.3px;
    word-spacing: 1px;
}
.conter_icon
{
    display:inline-block;
    width: 16px;
    height:auto;
    margin-right: 5px;
}
.news-content p
{
    font-size:18px;
    line-height: 40px;
    text-indent:2em;
}
.news-content p img
{
    /* width:auto; */
    /* max-width:75%; */
    height:auto;
    display:block;
    margin:0 auto;
}