* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Microsoft YaHei", sans-serif;
    background-color: #fff;
}

.header {
    background: url(../images/banner.png) no-repeat center center;
    width: 100%;
    height: 480px;
}

.inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.header .inner {
    /* width: 120px; */
    magrin: 0 auto;
    position: relative;
}
.site-logo {
    margin-bottom: 15px;
    position: absolute;
    top: 10px;
    left: 0px;
}

.site-logo img {
    height: 60px;
}

.header .banner {
    width: 100%;
    text-align: center;
    margin: 0 auto;
    padding-top: 160px;
    text-align: center;
}

.header .banner img {
    max-width: 600px;
    width: 100%;
    height: auto;
}

.news-container {
    margin: 30px auto;
}

.news-item-container {
    padding: 15px;
}

.news-item {
    background-color: #fff;
    border: 1px solid #FFECDB;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    border-radius: 0 0 20px 0;
    box-shadow: 5px 5px 5px #FBF0ED;
}

.news-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.news-header {
    background-color: #FBECC7;
    padding: 12px 20px;
    border-bottom: 1px solid #FFECDB;
    display: flex;
    align-content: flex-start;
}

.news-icon {
    width: 18px;
    height: 18px;
    margin-right: 10px;
    flex-shrink: 0;
    margin: 4px 10px 4px 0px;
}
.content {
    background: url(../images/bg.png) no-repeat bottom center;

}
.news-title {
    color: #55524B;
    font-size: 18px;
    font-weight: bold;
    margin: 0;
    line-height: 1.4;
}
.news-title h3 {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.news-body {
    padding: 20px;
}

.news-content {
    color: #333;
    line-height: 1.8;
    margin-bottom: 15px;
    font-size: 16px;
}

.news-date {
    color: #999;
    font-size: 14px;
}


.qr-item {
    text-align: center;
}

.qr-img {
    width: 80px;
    height: 80px;
}

.qr-text {
    font-size: 12px;
    color: #999;
    margin-top: 5px;
}

.more-btn {
    display: block;
    width: 160px;
    height: 40px;
    line-height: 40px;
    background-color: #FBECC7;
    color: #C72017;
    text-align: center;
    margin: 20px auto 40px;
    border: 1px solid #CA3129;
    text-decoration: none;
    font-size: 16px;
    transition: background-color 0.2s ease;
}

.more-btn:hover {
    background-color: #FFE4CE;
}

/* 响应式调整 */
@media (max-width: 768px) {
    .header .inner {
        width: 100%;
    }
    
    .header {
        height: auto;
    }
    .header .banner {
        padding: 80px 50px 60px 50px;
    }
    .site-logo img {
        height: 45px;
    }

    .news-title {
        font-size: 16px;
    }

    .news-content {
        font-size: 14px;
    }



    .news-item-container {
        margin-bottom: 10px;
    }
}

@media (max-width: 576px) {
    .inner {
        padding: 0 10px;
    }
    
    .site-logo img {
        height: 40px;
    }
    
    .header .banner img {
        width: 95%;
    }

}