body{
    background: #fff;
}
.banner {
    width: 100%;
    height: 45vw;
    overflow: hidden;
    position: relative;
}
.banner .swiper-wrapper {
    width: 100%;
    height: 100%;
}
.banner .swiper-slide {
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    position: relative;
}
.banner .banner-text-cn{
    position: absolute;
    top: 55%;
    left: 0;
    right: 0;
    margin: 0 auto;
    text-align: center;
    font-size: 4vw;
    font-weight: bold;
    color: #fff;
    z-index: 10;
}
.banner .swiper-nav-buttons {
    position: absolute;
    bottom: 30px;
    right:10%;
    display: flex;
    justify-content: center;
    gap: 20px;
    z-index: 10;
}
.banner .swiper-button-next,
.banner .swiper-button-prev {
    position: static;
    width: 3vw;
    height: 3vw;
    background: transparent;
    border: 1px dashed rgba(255,255,255,0.6);
    border-radius: 50%;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    margin: 0 10px;
    transition: all 0.3s ease;
}
.banner .swiper-button-next::after,
.banner .swiper-button-prev::after {
    color: rgba(255,255,255,0.6);
    font-size: 16px;
    transition: all 0.3s ease;
}
.banner .swiper-button-next:hover,
.banner .swiper-button-prev:hover{
    border: 1px dashed rgba(255,255,255,1);
}
.banner .swiper-button-next:hover::after,
.banner .swiper-button-prev:hover::after{
    color: rgba(255,255,255,1);
}

.about {
    padding: 60px 0;
    /* background: #fff; */
}
.tit_box {
    margin-bottom: 40px;
}
.title-cn {
    font-size: 2vw;
    font-weight: bold;
    color: #333;
    margin: 0 0 10px 0;
}
.title-en {
    font-size: 3.5vw;
    color: #333;
    font-weight: bold;
    margin: 0;
}
.about_content {
    display: flex;
    gap: 5%;
}
.about_text p {
    font-size: 16px;
    line-height: 1.8;
    color: #5C5C5C;
    margin-bottom: 10px;
    text-indent: 2em;
}
.about_left {
    width:60%;
}
.about_image {
    width: 35%;
    height:18vw;
    border-radius: 16px;
    overflow: hidden;
}
.about_image img {
    width: 100%;
    height: 100%;
    transition: all 0.5s ease;
}
.about_image img:hover{
    transform: scale(1.05);  
}
.about_list {
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
    padding: 30px 0;
    border-top:1px solid #EBEBEB;
    border-bottom:1px solid #EBEBEB;
}
.about_item{
    position: relative; /* 伪元素定位基准 */
    text-align: center;
    flex: 1;
}
.about_item:not(:last-child)::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%); /* 垂直居中 */
    width: 1px;
    height: 40px; /* 竖线高度可自行调整 */
    background-color: #EBEBEB; /* 和上下边框同色 */
}
.about_item .data {
    font-size: 18px;
    font-weight: bold;
    color: #171717;
    margin-bottom: 8px;
}
.about_item .title {
    font-size: 14px;
    color: #808080;
    font-weight: bold;
}
.about_btn {
    margin-top: 30px;
    display: inline-block;
    padding: 12px 30px;
    background: #00593B;
    color: #fff;
    text-decoration: none;
    border-radius: 30px;
    transition: all 0.3s ease;
}
.about_btn:hover {
    background: rgba(0, 89, 59, 0.8);
}
.about_item:hover .data{
    color: #00593B;
}



.services {
    margin:60px 0;
    background: #fff;
    width:100%;
    height:25vw;
}
.services .swiper-slide {
    width:100%;
    height:100%;
    border-radius: 16px;
    overflow: hidden;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    position: relative;
}
.services .service-title {
    position: absolute;
    bottom: 30px;
    left: 30px;
    color: #fff;
    font-size: 18px;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 10px;
}

.news {
    padding: 60px 0;
}
.news-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 auto 40px;
}

.news-more {
    padding: 8px 20px;
    background: #00593B;
    color: #fff;
    text-decoration: none;
    border-radius: 30px;
    font-size: 14px;
    transition: all 0.3s ease;
}

.news-more:hover {
    background: rgba(0, 89, 59, 0.8);
}

.news-grid {
    display: grid;
    grid-template-columns: 45% 45%;
    gap: 10%;
}

.news-left {
    
}

.news-main {
    border-radius: 16px;
    overflow: hidden;
    height: 20vw;
}

.news-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.news-main-content {
    padding: 20px;
    background: #fff;
}

.news-main-title {
    font-size: 24px;
    font-weight: bold;
    color: #333;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.news-main-desc {
    font-size: 16px;
    color: #808080;
    line-height: 1.5;
}
.news-left:hover .news-main-title{
    color: #00593B;
}
.news-left:hover .news-main img{
    transform: scale(1.05);
}
.news-right {
    display: flex;
    flex-direction: column;
    gap: 2.5vw;
}

.news-item {
    padding: 20px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.news-item-title {
    font-size: 20px;
    font-weight: bold;
    color: #212121;
    margin-bottom: 10px;
}

.news-item-desc {
    font-size: 14px;
    color: #474747;
    line-height: 1.5;
}

.news-item:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    transform: translateY(-3px);
}

.news-item:hover .news-item-title{
    color: #00593B;
}

