* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Microsoft YaHei", sans-serif;
    color: #333;
    background-color: #f5f5f5;
}

.container {
    width: 1400px;
    margin: 0 auto;
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    background-color: #fff;
    min-width:1400px;
}

.logo-area {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    width: 330px;
    height: 80px;
    margin-right: 15px;
}

.logo img {
    /* width: 100%; */
    height: 100%;
}

.site-title {
    font-size: 28px;
    color: #166e39;
    font-weight: bold;
}

.logo-area-left {
    display: flex;
    align-items: center;
}

.search-area {
    display: flex;
}

.search-input {
    width: 200px;
    height: 36px;
    border: 1px solid #ccc;
    padding: 0 10px;
    border-radius: 3px 0 0 3px;
    outline: none;
}

.search-btn {
    width: 40px;
    height: 36px;
    background-color: #166e39;
    border: none;
    border-radius: 0 3px 3px 0;
    color: white;
    cursor: pointer;
}

.search-btn img {
    width: 16px;
    height: 16px;
}

.nav {
    background-color: #166e39;
    min-width: 1400px;
}

.nav-list {
    display: flex;
    list-style: none;
    justify-content: space-between;
    height: 60px;
}

.nav-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 30px;
    height: 100%;
}

.nav-item a {
    color: white;
    text-decoration: none;
    font-size: 18px;
}

.nav-item:hover {
    background-color: #0e5028;
}

.banner {
    width: 100%;
    height: 540px;
    position: relative;
    margin-bottom: 30px;
    min-width: 1400px;
}

.swiper {
    width: 100%;
    height: 100%;
}

.swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 24px;
}

.swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 30px;
}

.section {
    background-color: #fff;
    padding: 20px;
    margin-bottom: 30px;
    width: 100%;
}

.section-half {
    width: 48%;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.15);
    padding-bottom: 10px;
}

.section-title {
    font-size: 18px;
    font-weight: bold;
    color: #166e39;
    position: relative;
}

.section-title::before {
    content: "";
    position: absolute;
    left: 0px;
    bottom: -10px;
    width: 72px;
    height: 4px;
    background-color: #166e39;
}

.more {
    color: #999;
    font-size: 14px;
    text-decoration: none;
}

.more:hover {
    color: #166e39;
}

.achievement-content {
    display: flex;
}

.achievement-image {
    width: 600px;
    height: 400px;
    margin-right: 60px;
    flex-shrink: 0;
}

.achievement-image img {
    width: 100%;
    height: 100%;
    object-fit: fill;
}

.news-list {
    list-style: none;
    flex: 1;
}

.news-item {
    display: flex;
    align-items: center;
    height: 80px;
    border-bottom: 2px dashed rgba(53, 173, 135, 1);
}

.news-date {
    margin-right: 20px;
    display: flex;
    justify-content: center;
    align-items: left;
    position: relative;
}

.news-month {
    font-size: 17px;
    color: rgba(53, 173, 135, 1);
}

.news-month-day:before {
    content: "";
    position: absolute;
    right: 0px;
    bottom: -10px;
    width: 20px;
    height: 1px;
    background-color: rgba(53, 173, 135, 1);
}

.news-title {
    flex: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.news-title a {
    color: #000;
    font-size: 16px;
    text-decoration: none;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}

.news-title a:hover {
    color: #166e39;
}

.news-item-seccend {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.news-item-seccend-left {
    width: calc(100% - 100px);
    display: flex;
    justify-content: left;
    align-items: center;
}

.dian {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background-color: rgb(186, 189, 187);
    margin-right: 15px;
    flex-shrink: 0;
}

.news-title-a {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    color: #272626;
    font-size: 16px;
    text-decoration: none;
}

.news-item-seccend-right {
    width: 100px;
    font-size: 14px;
    color: #999;
    text-align: right;
}

.footer {
    background-color: #166e39;
    color: white;
    padding: 30px 0;
    text-align: center;
    min-width: 1400px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.footer-logo {
    width: 260px;
}

.footer-logo img {
    width: 100%;
    height: 100%;
}

.footer-info {
    font-size: 14px;
    line-height: 1.8;
    text-align: left;
}

.footer-qrcode {
    width: 40px;
}

.footer-qrcode img {
    width: 100%;
}
.scroll-container {
height: 260px;
overflow: hidden;
position: relative;
}
.scroll-list{
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   animation: scroll 20s linear infinite;
 }

@keyframes scroll{
0%{
 transform: translateY(0);
}
100% {
transform: translateY(-50%);
}
}
.scroll-list:hover{
animation-play-state: paused;
}