@import url('../fonts/noto-serif-sc.css');

:root {
    --primary-color: #1A5D38;
    --secondary-color: #B88645;
    --bg-light: #F8F6F0;
    --white: #FFFFFF;
    --text-dark: #333333;
    --text-light: #666666;
    --transition: all 0.3s ease;
    --container-width: 1200px;

    --m-bottom: 16px;
    --font-Serif: "思源宋体", "Noto Serif SC", sans-serif;
    --font-sans: "思源宋体", "Noto Sans SC", sans-serif;

    --shadow: 0 10px 25px rgba(26, 93, 56, 0.1);
}

/* 全局样式重置 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "思源宋体", "Noto Serif SC", sans-serif;

}

html {
    scroll-behavior: smooth;
}

.m {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
}

.flex {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}

.desc {
    font-size: 16px;
    line-height: 29px;
    font-weight: 400;
    font-family: var(--font-sans);
    color: var(--secondary-color);
}

/* 分页 */
#page_1 {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 50px;
}

#page_1 a {
    padding: 10px 20px;
    border-radius: 4px;
    font-weight: 500;
    line-height: 23px;
    transition: var(--transition);
    background-color: var(--primary-color);
    color: var(--white);
    font-size: 16px;
}

#page_1 a:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(26, 93, 56, 0.2);
}

#page_1 a.active {
    background-color: var(--primary-color);
    color: var(--white);
}

/* 动画设置 */
.animate__fadeInLeft,
.animate__slideInRight {
    --animate-duration: 0.8s;
    /* ease-out：先快后慢，入场收尾柔和；也可以用 ease */
    --animate-timing-function: ease;
}

.animate__fadetop,
.animate__slideInBottom {
    --animate-duration: 0.8s;
    /* ease-out：先快后慢，入场收尾柔和；也可以用 ease */
    --animate-timing-function: ease;
}

/* 公共样式 */
h1 {
    font-size: 48px;
    font-weight: 600;
    line-height: 63px;
    color: var(--primary-color);
    /* font-family: 'Noto Serif SC', serif; */
}

h2 {
    font-size: 36px;
    font-weight: 600;
    line-height: 47px;
    color: var(--primary-color);
    /* font-family: 'Noto Serif SC', serif; */
    margin-bottom: var(--m-bottom);
}

h3 {
    font-size: 22px;
    font-weight: 600;
    line-height: 29px;
    color: var(--primary-color);
    /* font-family: 'Noto Serif SC', serif; */

}

p {
    font-family: var(--font-sans);
    font-size: 16px;
    line-height: 26px;
    font-weight: 400;
    color: var(--text-light);
}


/* 按钮 */
.btn a {
    display: inline-block;
    padding: 8px 20px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
    line-height: 23px;
    transition: var(--transition);
    ;
}

.btn a:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(26, 93, 56, 0.2);
}

/* 导航样式 */

ul {
    list-style: none;
}

a {
    text-decoration: none;
    color: #333;
}

header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    /* background-color: var(--white); */
    background-color: transparent;
    z-index: 999;
    /* box-shadow: var(--shadow); */
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}

.container {
    width: 100%;
    height: 80px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.container ul {
    display: flex;
    gap: clamp(15px, 2vw, 36px);

}

.nav-link {
    font-weight: 400;
    font-size: clamp(14px, 2vw, 16px);
    font-family: "思源宋体", 微软雅黑, sans-serif;
    position: relative;
    color: var(--bg-light);
}

.nav-link::after {
    content: '';
    width: 0;
    height: 3px;
    background-color: var(--primary-color);
    position: absolute;
    bottom: -28px;
    left: 0;
    opacity: 1;
    transition: all 0.3s ease;
}

.nav-link.active::after {
    content: '';
    width: 100%;
    height: 3px;
    background-color: var(--primary-color);
    position: absolute;
    bottom: -28px;
    left: 0;
    opacity: 1;
    transition: all 0.3s ease;
}

.nav-link:hover::after {
    opacity: 1;
    width: 100%;
}

.menu {
    display: none;
    position: relative;
    width: 30px;
    height: 20px;
    cursor: pointer;
}

.menu .bar {
    width: 30px;
    height: 3px;
    background-color: #333;
    display: block;
    position: absolute;
    left: 0;
    transition: all 0.3s ease-in-out;
}

.menu .bar:nth-child(1) {
    top: 0;
}

.menu .bar:nth-child(2) {
    top: 50%;
    transform: translateY(-50%);
}

.menu .bar:nth-child(3) {
    bottom: 0;
}

.no-scroll {
    overflow: hidden;
}


.container .btn {
    display: flex;
    gap: 12px;
}

.container .btn a:first-child {
    border: 1px solid var(--primary-color);
    background-color: transparent;
    color: var(--primary-color);
}

.container .btn a:last-child {
    background-color: var(--primary-color);
    color: var(--white);
}

.log {
    display: flex;
    align-items: center;
    gap: 12px;
}

.log span {
    font-size: 27px;
    font-weight: 500;
    color: var(--primary-color);
}

.log img {
    width: auto;
    max-height: 35px;
}

/* 二级导航 */
.nav-item {
    position: relative;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

ul.nav-dropdown {
    position: absolute;
    top: 100%;
    left: 50%;
    width: 280px;
    padding: 12px;
    margin: 0;
    background-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
    opacity: 0;
    visibility: hidden;
    z-index: 999;
    transition: all 0.25s ease;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    box-sizing: border-box;
    transform: translateX(-20%) translateY(10px);
}

.nav-item:hover .nav-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateX(-20%) translateY(0);
}

.nav-dropdown li {
    display: block;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    text-align: center;
}

.nav-dropdown li a {
    display: block;
    width: 100%;
    padding: 12px 8px;
    font-size: 15px;
    font-weight: 500;
    color: #000;
    text-align: center;
    box-sizing: border-box;
    border-radius: 4px;
    transition: all 0.2s ease;
}

.nav-dropdown li a:hover {
    background-color: var(--primary-color);
    color: var(--white);
}


@media screen and (max-width: 768px) {
    .menu {
        display: block;
    }

    .nav ul {
        padding: 20px 0;
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: 100%;
        /* background-color: #efefef; */
        background-color: rgba(255, 255, 255, 0.9);
        opacity: 0;
        transition: all 0.3s ease-in-out;
        display: flex;
        flex-direction: column;
        align-items: center;

    }

    .nav ul.active {
        top: 80px;
        left: 0;
        z-index: 999;
        opacity: 1;
    }

    .nav-link a {
        width: 100%;
        height: 80px;
        line-height: 80px;
        text-align: center;
        font-size: 20px;
        color: #fff;
    }

    .menu.active .bar:nth-child(1) {
        top: 50%;
        transform: translateY(-50%) rotate(45deg);
    }

    .menu.active .bar:nth-child(2) {
        opacity: 0;
    }

    .menu.active .bar:nth-child(3) {
        bottom: 50%;
        transform: translateY(50%) rotate(-45deg);
    }

    .container .btn {
        display: none;
    }

}

/* 公共banner */
.banner {
    height: 400px;
    width: 100%;
    background-color: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    position: relative;
}

.banner::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.3), transparent);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}

.banner h5 {
    position: relative;
}

.banner h5 {
    width: 100%;
    text-align: center;
    font-size: 40px;
    /* font-weight: 600; */
    line-height: 49px;
    color: var(--white);
    font-family: '思源宋体', 微软雅黑, sans-serif;
    z-index: 2;
}

.s-banner {
    height: 80vh;
    display: flex;
    align-items: center;

    z-index: 0;
    position: relative;
}

.s-banner::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, var(--bg-light) 0%, rgba(248, 246, 240, 0.9) 100%);
    z-index: 0;
}

.banner-content {
    width: 100%;
    display: flex;
    gap: 40px;
    position: relative;
    z-index: 2;
}

.banner-content-left {
    width: calc((100% - 40px) / 2);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.banner-content-right {
    width: calc((100% - 40px) / 2);
    display: flex;
    justify-content: center;
    align-items: center;
}

.banner-content-right .img {
    width: 375px;
    height: auto;
    border-radius: 8px;
    overflow: hidden;
}

.banner-content-right .img img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    transition: var(--transition);
}

.banner-content-right img:hover {
    transform: scale(1.05);
}

.banner-content-left h1 {
    margin-bottom: var(--m-bottom);
}

.banner-content-left .banner-p {
    font-size: 24px;
    line-height: 39px;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.banner-info {
    display: flex;
    gap: 12px;
    margin-bottom: 24px;
    color: var(--bg-light);
}

.banner-content-left .p {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 50px;
    color: var(--primary-color);
    background-color: rgba(26, 93, 56, 0.1);
    font-family: 'Noto Sans SC', serif;
    font-size: 14px;
}

.banner-content-left p {
    max-width: 500px;
    margin-bottom: 32px;
    color: var(--bg-light);
}

.banner-content-left .btn {
    display: flex;
    gap: 12px;
}

.banner-content-left a {
    display: inline-block;
    padding: 12px 32px;
    font-family: var(--font-sans);
    font-size: 16px;
    line-height: 26px;
    font-weight: 500;
    color: var(--text-light);
    border: 1px solid var(--primary-color);
}

.banner-content-left a:first-child {
    background-color: var(--primary-color);
    color: var(--white);
}

.banner-content-left a:last-child {
    background-color: transparent;
    color: var(--primary-color);
}

.swiper {
    width: 100%;
    height: 80vh;
}

.swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}


.swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.swiper-slide-active .banner-txt {
    animation: move 1s ease 0.2s forwards;
}

.banner-txt {
    padding: 20px;
    width: 100%;
    position: absolute;
    top: 50%;
    left: 10%;
    right: 10%;
    transform: translateY(-50%);
    z-index: 1;
    text-align: left;
    opacity: 0;
}

.swiper-pagination-bullet-active {
    background-color: var(--primary-color) !important;
}

@keyframes move {
    0% {
        opacity: 0;
        transform: translateY(-50%) translateX(300px);

    }

    100% {
        opacity: 1;
        transform: translateY(-50%) translateX(0);


    }
}

@media screen and (max-width: 768px) {
    .swiper {
        width: 100%;
        height: 60vh;
    }

    .banner-txt {
        width: 100%;
        position: absolute;
        top: 50%;
        left: 0%;
        right: 0%;
        transform: translateY(-50%);
        z-index: 1;
        text-align: left;
    }
}



.box1 {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.box1 h2 {
    text-align: center;
    margin-bottom: 50px;
}

.box1-item {
    width: calc((100% - 76px) / 3);
    padding: 40px 32px;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #fff;
    border-radius: 8px;
    transition: var(--transition);
    background-repeat: no-repeat;
    /* 不重复 */
    background-position: center;
    /* 水平+垂直居中 */
    background-size: cover;
    position: relative;
    z-index: 0;
}

.box1-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.2));
    z-index: 1;
    border-radius: 8px;

}

.box1-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(26, 93, 56, 0.1);
}

.box1-item .icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #e8eeeb;
    text-align: center;
    line-height: 60px;
    margin-bottom: 20px;
    text-align: center;
    display: flex;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.box1-item .icon i {
    text-align: center;
    font-size: 24px;
    color: var(--primary-color);
}

.box1-item h3 {
    margin-bottom: var(--m-bottom);
    position: relative;
    z-index: 2;
}

.box1-item p {
    font-size: 15px;
    text-align: center;
    position: relative;
    z-index: 2;
    color: var(--bg-light);
}

.box2 {
    padding: 80px 0;
    background-color: var(--primary-color);
}

.box2 h2 {
    text-align: center;
    color: var(--white);
    margin-bottom: var(--m-bottom);
}

.box2 .flex {
    gap: 20px;
}

.box2 p {
    text-align: center;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 48px;
}

.box2-item {
    width: calc((100% - 100px) / 6);
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: var(--transition);
}

.box2-item:hover {
    transform: translateY(-10px);
}

.box2-item .num {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-color: var(--secondary-color);
    text-align: center;
    line-height: 40px;
    color: var(--white);
    font-size: 18px;
    font-weight: 700;
    font-family: var(--font-sans);
    margin-bottom: var(--m-bottom);
}

.box2-item .num img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-color: var(--secondary-color);
    text-align: center;
    line-height: 40px;
    color: var(--white);
    font-size: 18px;
    font-weight: 700;
    font-family: var(--font-sans);
    margin-bottom: var(--m-bottom);
}

.box2-item h3 {
    color: var(--white);
    font-size: 19px;
    margin-bottom: var(--m-bottom);
    text-align: center;
    height: 47px;
}

.box2-item p {
    font-size: 14px;
    margin-bottom: 0px;
}

.box3 {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.box3-left {
    width: calc((100% - 40px) / 2);
}

.box3-right {
    width: calc((100% - 40px) / 2);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.box3-left img {
    width: 100%;
    height: auto;
    max-height: 500px;
    border-radius: 8px;
    object-fit: cover;
    object-position: center;
    transition: var(--transition);
}

.box3-left img:hover {
    transform: scale(1.03);
}

.box3-right h2 {
    margin-bottom: var(--m-bottom);
}

.box3-right .desc {
    margin-bottom: 24px;
}

.box3-right p {
    margin-bottom: var(--m-bottom);
    text-align: left;
}

.box3-right .btn a {
    padding: 12px 32px;
    background-color: var(--primary-color);
    color: var(--white);
    font-family: var(--font-sans);
    font-size: 16px;
    line-height: 26px;
    font-weight: 500;
    margin-top: var(--m-bottom);
}

.box3-right .btn a:hover {

    background-color: #144a2c;
}

.box4 {
    padding: 80px 0;
    text-align: center;
}

.box4 h2 {
    margin-bottom: var(--m-bottom);
}

.box4 p {
    margin-bottom: 48px;
}

.box4-content {
    margin-bottom: 60px;
}

.box4-item {
    width: calc((100% - 96px) / 4);
    padding: 32px 20px;
    background-color: var(--bg-light);
    border-radius: 8px;
    transition: var(--transition);
    position: relative;
    background-repeat: no-repeat;
    /* 不重复 */
    background-position: center;
    /* 水平+垂直居中 */
    background-size: cover;
}

.box4-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0));
    z-index: 1;
    border-radius: 8px;

}

.box4-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.box4-item {
    padding: 32px 20px;
    background-color: var(--bg-light);
    border-radius: 8px;
}

.box4-item span {
    font-size: 42px;
    font-weight: 700;
    line-height: 68px;
    font-family: 'Inter', sans-serif;
    margin-bottom: 8px;
    color: var(--primary-color);
    position: relative;
    z-index: 2;
}

.box4-item h3 {
    font-size: 18px;
    color: var(--text-dark);
    position: relative;
    z-index: 2;
}

.box4-item p {
    font-size: 14px;
    margin-bottom: 0px;
    position: relative;
    z-index: 2;
    color: var(--bg-light);
}

.box4 h3 {
    margin-bottom: 32px;
}

.cert-logos {
    display: flex;
    justify-content: center;
}

.cert-logos div {
    width: 140px;
    height: 60px;
    text-align: center;
    line-height: 60px;
    font-weight: 500;
    background-color: var(--bg-light);
    border-radius: 4px;
    font-family: var(--font-sans);
    color: var(--text-light);
    transition: var(--transition);
    cursor: default;
}

.cert-logos div:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.box5 {
    padding: 80px 0;
    background-color: var(--bg-light);
    text-align: center;
}

.box5-content {
    margin-top: 48px;
}

.box5-item {
    width: calc((100% - 76px) / 3);
    border-radius: 8px;
    transition: var(--transition);
}

.box5-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow);
}

.box5-item img {
    width: 100%;
    height: auto;
    max-height: 320px;
    border-radius: 8px 8px 0 0;
    display: block;
}

.box5-txt {
    padding: 24px;
    background-color: var(--white);
    text-align: left;
    border-radius: 0 0 8px 8px;
}

.box5-txt h3 {
    font-size: 20px;
    margin-bottom: 8px;
}

.box5-txt .desc {
    font-size: 14px;
    margin-bottom: 12px;
    color: var(--secondary-color);
}

.box5-txt .tags {
    margin-bottom: 16px;
}

.box5-txt .tags span {
    padding: 4px 12px;
    background-color: rgba(26, 93, 56, 0.1);
    color: var(--primary-color);
    font-size: 12px;
    line-height: 20px;
    font-weight: 500;
    border-radius: 50px;
    margin-right: 8px;
}

.box5-txt p {
    font-size: 14px;
    color: var(--text-light);
    font-family: var(--font-sans);
    line-height: 23px;
    margin-bottom: 20px;
    display: -webkit-box;
    line-clamp: 2;
    -webkit-line-clamp: 2;
    /* 控制显示行数，改成3就是3行 */
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.box5-txt .btn a {
    width: 100%;
    background-color: var(--primary-color);
    color: var(--white);
    font-family: var(--font-sans);
    font-size: 16px;
    line-height: 26px;
    font-weight: 500;
    margin-top: var(--m-bottom);
    display: block;
    text-align: center;
}

.Enter {
    margin-top: 40px;
}

.Enter a {
    padding: 12px 32px;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    font-family: var(--font-sans);
    font-size: 16px;
    line-height: 26px;
    font-weight: 500;
    margin-top: var(--m-bottom);
    display: inline-block;
    text-align: center;
}

.Enter a:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

.box6 {
    padding: 80px 0;
    background-color: var(--primary-color);
}

.box6-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.box6-right {
    width: 450px;
}

.box6-right img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    object-position: center;
    border-radius: 8px;
    display: block;
    transition: var(--transition);
}

.box6-right img:hover {
    transform: scale(1.03);
}

.box6-left h2 {
    color: var(--white);
}

.box6-left p {
    color: var(--white);
    margin-bottom: 16px;
}

.box6-left p.desc {
    color: var(--secondary-color);
    margin-bottom: 16px;
}

.box6-left .btn {
    margin-top: var(--m-bottom);
}

.box6-left .btn a {
    padding: 12px 32px;
    background-color: var(--secondary-color);
    color: var(--white);
    font-family: var(--font-sans);
    font-size: 16px;
    line-height: 26px;
    font-weight: 500;
    margin-top: var(--m-bottom);
    display: inline-block;
    text-align: center;
}

.box7 {
    padding: 80px 0;
}

.box7-title {
    text-align: center;
}

.box7 .flex {
    gap: 24px;
}

.box7-content {
    margin-top: 48px;
}

.box7-item {
    width: calc((100% - 72px) / 4);
    height: 320px;
    position: relative;
    border-radius: 8px;
    overflow: hidden;
}

.box7-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    border-radius: 8px 8px 0 0;
    transition: var(--transition);
}

.box7-item .box7-txt {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 24px 20px;
    background: linear-gradient(to top, rgba(26, 93, 56, 0.9), transparent);
    text-align: left;
    border-radius: 0 0 8px 8px;
}

.box7-item .box7-txt h3 {
    color: var(--white);
    font-size: 18px;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    /* 控制显示行数：2行 */
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.box7-item .box7-txt p {
    color: var(--white);
    font-size: 14px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    /* 控制显示行数：2行 */
    -webkit-box-orient: vertical;
    overflow: hidden;

}

.box7-item:hover img {
    transform: scale(1.05)
}

.box7 .btn {
    /* margin-top: var(--m-bottom); */
    margin: 20px auto;
    width: 100%;
    text-align: center;
}

.box7 .btn a {
    padding: 12px 32px;
    background-color: transparent;
    color: var(--primary-color);
    font-family: var(--font-sans);
    font-size: 16px;
    line-height: 26px;
    font-weight: 500;
    margin-top: var(--m-bottom);
    display: inline-block;
    text-align: center;
    border: 1px solid var(--primary-color);
}

.box7 .btn a:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

.box8 {
    padding: 60px 0;
    background-color: var(--bg-light);
}

.box8-content {
    display: flex;
    justify-content: center;
}

.box8 h3 {
    text-align: center;
    font-size: 24px;
    margin-bottom: 40px;
}

.partner-logo {
    width: 140px;
    height: 60px;
    text-align: center;
    line-height: 60px;
    border-radius: 4px;
    background-color: var(--white);
    font-size: 16px;
    font-family: var(--font-sans);
    color: var(--text-light);
    font-weight: 500;
    transition: var(--transition);
    cursor: default;
}

.partner-logo:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.box9 {
    padding: 80px 0;
}

.box9-title {
    text-align: center;
}

.box9-content {
    margin-top: 48px;
}

.box9-item {
    width: calc((100% - 64px) / 3);
    border-radius: 8px;
    transition: var(--transition);
}

.box9-img {
    width: 100%;
}

.box9-item>a {
    width: 100%;
    height: auto;
    display: block;
    color: inherit;
}

.box9-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow);
}

.box9-item img {
    width: 100%;
    height: 100%;
    max-height: 200px;
    object-fit: cover;
    object-position: center;
    display: block;
    border-radius: 8px 8px 0 0;
}

.box9-txt {
    padding: 24px;
    background-color: var(--bg-light);
    border-radius: 0 0 8px 8px;
}

.box9-txt span {
    display: block;
    font-size: 14px;
    line-height: 23px;
    font-family: var(--font-sans);
    color: var(--text-light);
    text-align: left;
    margin-bottom: var(--m-bottom);
}

.box9-txt h3 {
    font-size: 18px;
    margin-bottom: 12px;
}

.box9-txt p {
    font-size: 14px;
    margin-bottom: 16px;
    line-height: 23px;
}

.box9-txt .more {
    color: var(--primary-color);
    font-size: 14px;
    font-family: var(--font-sans);
    font-weight: 500;
    line-height: 22px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.box9 .btn {
    margin-top: 40px;
    display: flex;
    justify-content: center;
}

.box9 .btn a {
    padding: 12px 32px;
    border: 1px solid var(--primary-color);
    font-family: var(--font-sans);
    font-size: 16px;
    line-height: 26px;
    font-weight: 500;
    margin-top: var(--m-bottom);
    display: inline-block;
    text-align: center;
    color: var(--primary-color);
}

.box9 .btn a:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

.box10 {
    padding: 80px 0;
    background-color: var(--primary-color);
    text-align: center;
}

.box10 h2 {
    color: var(--white);
}

.box10 p {
    color: var(--white);
    max-width: 800px;
    margin: 0 auto;
}

.box10 p:nth-child(2) {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 24px;
}

.box10 .btn {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 32px;
}

.box10 .btn a {
    padding: 12px 32px;
    font-family: var(--font-sans);
    font-size: 16px;
    line-height: 26px;
    font-weight: 500;
    display: inline-block;
    text-align: center;
    color: var(--white);
}

.box10 .btn a:nth-child(1) {
    background-color: var(--secondary-color);
}

.box10 .btn a:nth-child(2) {
    color: var(--text-light);
    background-color: var(--bg-light);
}

.box11 {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.box11-title {
    text-align: center;
}

.box11-content {
    margin-top: 48px;
}

.box11-left {
    width: calc((100% - 32px) / 2);
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.box11-left .contact-item {
    display: flex;
    gap: 18px;
}

.box11-left .contact-item .icon {
    width: 40px;
    height: 40px;
    background-color: rgba(26, 93, 56, 0.1);
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
}

.box11-left h3 {
    font-size: 18px;
}

.box11-right h3 {
    font-size: 24px;
    margin-bottom: 24px;
}

.box11-right {
    width: calc((100% - 32px) / 2);
    background-color: var(--white);
    border-radius: 8px;
    padding: 40px 32px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.box11-right .row {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 20px;
}

.box11-right .row input {
    width: 100%;
    height: 46px;
    padding: 12px 16px;
    border-radius: 4px;
    border: 1px solid #dddddd;
}

.box11-right .row select {
    width: 100%;
    height: 46px;
    padding: 12px 16px;
    border-radius: 4px;
    border: 1px solid #dddddd;
}

.box11-right .row textarea {
    width: 100%;
    height: 120px;
    padding: 12px 16px;
    border-radius: 4px;
    border: 1px solid #dddddd;
}

.box11-right .row input:focus,
.box11-right .row textarea:focus,
.box11-right .row select:focus {
    outline: none;
    border-color: var(--primary-color);
}

.box11-right .btn a {
    width: 100%;
    padding: 12px 32px;
    background-color: var(--primary-color);
    color: var(--white);
    font-family: var(--font-sans);
    font-size: 16px;
    line-height: 26px;
    font-weight: 500;
    margin-top: var(--m-bottom);
    text-align: center;
}

footer {
    padding: 60px 0px 20px 0px;
    background-color: var(--primary-color);
}

.footer-content {
    display: flex;
    gap: 40px;
}

.footer-title {
    width: 34%;
}

.footer-title h2 {
    color: var(--white);
    font-size: 24px;
    margin-bottom: 12px;
    line-height: 31px;
}

.footer-title .desc {
    margin-bottom: 20px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    display: inline-block;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    text-align: center;
    line-height: 36px;
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

.footer-social a:hover {
    transform: translateY(-5px);
    background-color: var(--primary-color);
}

.fast-nav {
    flex: 1;
}

.fast-nav h3 {
    color: var(--white);
    font-size: 18px;
    margin-bottom: 20px;
}

.fast-nav ul li {
    line-height: 26px;
    margin-bottom: 10px;
}

.fast-nav ul a {
    line-height: 26px;
    color: rgba(255, 255, 255, 0.7);
    font-family: var(--font-sans);
    font-size: 16px;
    display: block;
    transition: var(--transition);
}

.fast-nav ul a:hover {
    color: var(--secondary-color);
    transform: translateX(5px);
}

.footer-col {
    flex: 1.3;
}

.footer-col h3 {
    color: var(--white);
    font-size: 18px;
    margin-bottom: 20px;
}

.footer-col .footer-contact {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-col .footer-contact i {
    color: var(--secondary-color);
    margin-right: 8px;
}

.footer-col .footer-contact p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7)
}

.copy p {
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 40px;
    text-align: center;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
}

/* =====================product===================== */
.p-box {
    background-size: cover;
    background-position: center;
}

.p-nav {
    background-color: rgba(255, 255, 255, 1);
}

.p-nav .m {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.p-nav .m>div {
    display: flex;
    align-items: center;
    gap: 15px;
}

.p-nav .m>div span {
    font-size: 14px;
    font-family: '思源宋体', sans-serif;
    color: #1f1f1f;
}

.p-nav .m>div span:last-child {
    color: var(--primary-color);
}

.p-nav .m>div .iconfont {
    font-size: 9px;
}

.p-nav .m>div .nav-img {
    width: 65px;
    height: 65px;
    background: linear-gradient(90deg, var(--primary-color), #6ead38);
    display: flex;
    align-items: center;
    justify-content: center;
}

.p-nav .m ul {
    display: flex;
    gap: 50px;
    align-items: center;
    height: 65px;
}

.p-nav .m ul li {
    height: 65px;
    display: flex;
    align-items: center;
    /* border-right: 1px solid rgba(255, 255, 255, 0.6); */
    position: relative;
    transition: var(--transition);
}

.p-nav .m ul li a {
    font-size: 16px;
    font-family: '思源宋体', sans-serif;
    color: #1f1f1f;
}

.p-nav .m ul li::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: var(--primary-color);
    bottom: 0;
    left: 0;
    opacity: 0;
}

.p-nav .m ul li.active::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: var(--primary-color);
    bottom: 0;
    left: 0;
    opacity: 1;
}

.p-nav .m ul li:hover a {
    color: var(--primary-color);
}

.p-nav .m ul li:hover::after {
    opacity: 1;
}

.p-content .m {
    padding: 30px;
    background-color: var(--white);
}

.p-img img {
    width: 100%;
    height: 100%;
}

.p-info {
    margin-top: 20px;
    padding: 40px;
    display: flex;
    gap: 30px;
    background-color: #f7f7f7;
}

.p-info img {
    width: calc((100% - 60px) / 3);
    height: 100%;
}

.product-box {
    padding: 100px 0px;
}

/* .product {
    margin: 100px 0px;
} */

.product .box5-content {
    margin-top: 0px;
}

/* ======================productinfo========================= */
.pinfo-content {
    padding: 100px 0px;
}

.product-txt {
    display: flex;
    gap: 60px;
}

.product-img {
    width: 45%;
    /* width: calc((100% - 60px) / 2); */
}

.product-img img {
    width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: cover;
    object-position: center;
    border-radius: 8px;
}

.product-info {
    width: 55%;
    /* width: calc((100% - 60px) / 2); */
    display: flex;
    flex-direction: column;
    gap: 16px;
    justify-content: center;
}

.product-info h2 {
    position: relative;
}

.product-info h2::after {
    content: '';
    position: absolute;
    width: 12%;
    height: 2px;
    background-color: var(--primary-color);
    bottom: -40%;
    left: 0;
}

.pinfo-content .m {
    background-color: var(--white);
    padding: 30px;
}

.product-info .btn a {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 10px 20px;
    border-radius: 4px;
    text-decoration: none;
    transition: var(--transition);
}

.product-deta {
    padding-top: 36px;
}

.product-deta h5 {
    font-size: 24px;
    font-family: '思源宋体', sans-serif;
    color: var(--primary-color);
    position: relative;
    padding-bottom: 16px;
    margin-bottom: 32px;
    border-bottom: 2px solid #e6ebe8;
    position: relative;
}

.product-deta h5::after {
    content: '';
    position: absolute;
    width: 9%;
    height: 2px;
    background-color: var(--primary-color);
    bottom: 0%;
    transform: translateY(50%);
    left: 0;
}

.product-deta div p {
    margin-bottom: 16px;
}

.product-deta div img {
    max-width: 100%;
}

/* ======================Introduction===================== */
.Introduction-box {
    background-size: cover;
    background-position: center;
}

.Introduction-nav .m {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.Introduction-nav .m>div {
    display: flex;
    align-items: center;
    gap: 15px;
    min-width: 0;
    flex: 1;
    overflow: hidden;
}

.Introduction-nav .m>div span {
    font-size: 14px;
    font-family: '思源宋体', sans-serif;
    color: #1f1f1f;
    white-space: nowrap;
    /* 强制不换行 */
    overflow: hidden;
    /* 超出部分隐藏 */
    text-overflow: ellipsis;
    /* 超出显示省略号 … */
}

.Introduction-nav .m>div span:last-child {
    color: var(--primary-color);
    min-width: 0;
    flex: 1;
    width: auto;
}

.Introduction-nav .m>div .iconfont {
    font-size: 9px;
}

.Introduction-nav .m>div .nav-img {
    display: flex;
    align-items: center;
    width: 65px;
    height: 65px;
    justify-content: center;
    background: linear-gradient(90deg, var(--primary-color), #6ead38);
}

.Introduction-nav {
    /* transform: translateY(-100%); */
    background-color: rgba(255, 255, 255, 1);
}

.Introduction-nav ul {
    display: flex;
    gap: 50px;
    align-items: center;
    height: 65px;
    flex-shrink: 0;
}

.Introduction-nav .m ul li {
    height: 65px;
    display: flex;
    align-items: center;
    /* border-right: 1px solid rgba(255, 255, 255, 0.6); */
    position: relative;
    transition: var(--transition);
}

.Introduction-nav .m ul li a {
    font-size: 16px;
    font-family: '思源宋体', sans-serif;
    color: #1f1f1f;
}


.Introduction-nav .m ul li::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: var(--primary-color);
    bottom: 0;
    left: 0;
    opacity: 0;
}

.Introduction-nav .m ul li.active::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: var(--primary-color);
    bottom: 0;
    left: 0;
    opacity: 1;
}

.Introduction-nav .m ul li:hover a {
    color: var(--primary-color);
}

.Introduction-nav .m ul li:hover::after {
    opacity: 1;
}

.Introduction-txt {
    display: flex;
    gap: 30px;
}

.Introduction-txt .desc {
    margin-bottom: 24px;
}

.Introduction-txt div p {
    margin-bottom: var(--m-bottom);
}

.Introduction-txt article img {
    width: 580px;
    height: 500px;
    object-fit: cover;
    object-position: center;
    border-radius: 8px;
    float: left;
    margin-right: 30px;
    margin-bottom: 0px;
}

/* .Introduction-img {
    width: calc((100% - 30px) / 2);
}

.Introduction-img img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    max-height: 600px;
} */

/* .Introduction-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: calc((100% - 30px) / 2);
}

.Introduction-text .btn a {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    transition: var(--transition);
} */

.Introduction-content {
    padding: 100px 0px;

}

.Introduction-content h5 {
    text-align: center;
    font-size: 24px;
    position: relative;
    padding-bottom: 20px;
    margin-bottom: 20px;
}

.Introduction-content h5::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: var(--primary-color);
    bottom: 0;
    left: 0;
}

/* .Introduction-content p {
    font-size: 19px;
    color: var(--text-dark);
    line-height: 36px;
    font-weight: 400;
    font-family: '思源宋体', sans-serif;
    margin-bottom: var(--m-bottom);
    text-indent: 2em;
} */

/* =====================企业文化===================== */
.Culture-box {
    background-size: cover;
    background-position: center;
}

.Culture-nav .m ul {
    display: flex;
    gap: 40px;
    align-items: center;
    background-color: var(--white);
    height: 70px;
    transform: translateY(-50%);
}

.Culture-nav .m ul li {
    height: 70px;
    display: flex;
    align-items: center;
    padding: 0 30px;
    /* border-right: 1px solid rgba(255, 255, 255, 0.6); */
    position: relative;
    transition: var(--transition);
}

.Culture-nav .m ul li::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: var(--primary-color);
    bottom: 0;
    left: 0;
    opacity: 0;
}

.Culture-nav .m ul li:hover a {
    color: var(--primary-color);
}

.Culture-nav .m ul li:hover::after {
    opacity: 1;
}

.Culture-content img {
    width: 100%;
    height: auto;
    padding: 100px 0px;
}

/* ================企业荣誉===================== */
.swiper {
    width: 100%;
    padding-top: 50px;
    padding-bottom: 50px;
}

.swiper-slide {
    background-position: center;
    background-size: cover;
    width: 300px;
    height: 300px;
}

.swiper-slide img {
    display: block;
    width: 100%;
    height: 300px;
}

.honor-info {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-top: 50px;
}

.honor-item {
    padding: 20px;
    width: calc((100% - 80px) / 3);
    background-color: var(--white);
}

.honor-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    object-position: center;
}

.honor-item h3 {
    font-size: 16px;
    color: var(--text-dark);
    line-height: 36px;
    font-weight: 400;
    font-family: '思源宋体', sans-serif;
    text-align: center;
}

/* ========================Honorinfo====================== */
.honorinfo-content {
    padding: 100px 0px;
}

.honorinfo-content .m {
    padding: 30px;
    background-color: var(--white);
}

.honorinfo-content h4 {
    text-align: center;
    font-size: 26px;
    font-weight: 700;
    font-family: '思源宋体', sans-serif;
}

.info-time {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 20px;
    padding-bottom: 18px;
    border-bottom: 1px solid rgba(229, 229, 229);
}

.info-time span {
    color: var(--text-light);
}

.info-content {
    padding-top: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.info-btn {
    margin-top: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    color: var(--primary-color);
}

.info-btn a {
    color: var(--primary-color);
    font-size: 16px;

}

.h-prev,
.h-next {
    padding: 10px 20px;
    transition: var(--transition);
    border-radius: 50px;
}

.h-prev:hover,
.h-next:hover {

    background-color: #eeeeee;
}

/* =====================发展历程===================== */
.Journey-box {
    background-size: cover;
    background-position: center;
}

.Journey-nav .m ul {
    display: flex;
    gap: 40px;
    align-items: center;
    background-color: var(--white);
    height: 70px;
    transform: translateY(-50%);
}

.Journey-nav .m ul li {
    height: 70px;
    display: flex;
    align-items: center;
    padding: 0 30px;
    /* border-right: 1px solid rgba(255, 255, 255, 0.6); */
    position: relative;
    transition: var(--transition);
}

.Journey-nav .m ul li::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: var(--primary-color);
    bottom: 0;
    left: 0;
    opacity: 0;
}

.Journey-nav .m ul li:hover a {
    color: var(--primary-color);
}

.Journey-nav .m ul li:hover::after {
    opacity: 1;
}

.Journey-content {
    padding: 100px 0px;
}

.Journey-content .m {
    padding: 30px;
    background-color: var(--white);
}

.Journey-content .dsj_sub_name {
    margin: 30px 0px;
    padding-left: 110px;
    font-size: 30px;
    font-weight: 500;
    font-family: '思源宋体', sans-serif;
    position: relative;
}

.Journey-content .dsj_sub_name::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 62px;
    width: 10px;
    height: 10px;
    border: 4px solid var(--primary-color);
    border-radius: 50%;
    z-index: 1;
}


.Journey-content .dsj_sub_info li p {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    position: relative;
}

/* .Journey-content .dsj_sub_info li p::after {
    position: absolute;
    content: '';
    top: 50%;
    left: 62px;
    width: 20px;
    height: 2px;
    background-color: var(--primary-color);
    z-index: 1;
} */

.Journey-content .shijian {
    width: 110px;
    font-size: 14px;
    font-weight: 400;
    font-family: '思源宋体', sans-serif;
    color: var(--text-light);
    z-index: 1;
}

.Journey-content .text p {
    padding: 10px 25px;
    background-color: #f4f6f6;
    width: calc(100% - 110px);
    width: 100%;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 400;
    font-family: '思源宋体', sans-serif;
    color: var(--text-light);
    margin-bottom: 20px;
    z-index: 1;
}

.Journey-content .dsj_bd {
    position: relative;
}

.Journey-content .dsj_bd::after {
    content: '';
    position: absolute;
    width: 2px;
    height: 100%;
    background-color: var(--bg-light);
    bottom: 0;
    left: 70px;
    z-index: 0;
}

/* ============================news==================== */
.news-box {
    background-size: cover;
    background-position: center;
}

.news-nav {
    background-color: rgba(255, 255, 255, 1);
}

.news-nav .m {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.news-nav .m>div {
    display: flex;
    gap: 15px;
    align-items: center;
}

.news-nav .m>div span {
    font-size: 14px;
    font-family: '思源宋体', sans-serif;
    color: #1f1f1f;
}

.news-nav .m>div span:last-child {
    color: var(--primary-color);
}

.news-nav .m>div .iconfont {
    font-size: 9px;
}

.news-nav .m>div .nav-img {
    width: 65px;
    height: 65px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(90deg, var(--primary-color), #6ead38);
}

.news-nav .m ul {
    display: flex;
    gap: 50px;
    align-items: center;
    height: 65px;
}

.news-nav .m ul li {
    height: 65px;
    display: flex;
    align-items: center;
    /* border-right: 1px solid rgba(255, 255, 255, 0.6); */
    position: relative;
    transition: var(--transition);
}

.news-nav .m ul li a {
    font-size: 16px;
    font-family: '思源宋体', sans-serif;
}

.news-nav .m ul li::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: var(--primary-color);
    bottom: 0;
    left: 0;
    opacity: 0;
}

.news-nav .m ul li.active::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: var(--primary-color);
    bottom: 0;
    left: 0;
    opacity: 1;
}

.news-nav .m ul li:hover a {
    color: var(--primary-color);
}

.news-nav .m ul li:hover::after {
    opacity: 1;
}

.news-content {
    padding: 100px 0px;
}

.news-content .box9-content {
    margin-top: 0px;
}

.news-content .box9-content .box9-txt p {
    display: -webkit-box;
    line-clamp: 3;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;

}

.new-content {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.new-item {
    width: 100%;
    background-color: var(--white);
    padding: 28px;
    width: calc((100% - 40px) / 2);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.new-item a {
    display: flex;
    gap: 20px;
    align-items: center;
}

.new-item .date {
    width: 65px;
}

.new-item .date .dd {
    font-size: 26px;
    line-height: 26px;
    color: var(--primary-color);
    text-align: center;
}

.new-item .date .line {
    width: 100%;
    height: 1px;
    background-color: rgb(229, 229, 229);
    margin: 5px 0px;
}

.new-item .date .yy {
    font-size: 16px;
    line-height: 16px;
    color: var(--text-light);
    text-align: center;
}

.new-item .text {
    flex: 1;
    width: 100%;
}

.new-item .text h3 {
    width: 409px;
    font-size: 16px;
    color: var(--text-light);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.new-item .text p {
    font-size: 14px;
    font-weight: 400;
    line-height: 22px;
    color: rgb(158, 158, 158);
    display: -webkit-box;
    line-clamp: 2;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-top: 17px;

}

/* ===========================newinfo====================== */
.newinfo-content .m {
    padding: 30px;
    background-color: var(--white);
}

.newinfo-content h4 {
    text-align: center;
    font-size: 26px;
    font-weight: 700;
    font-family: '思源宋体', sans-serif;
}

.newinfo-time {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 20px;
    padding-bottom: 18px;
    border-bottom: 1px solid rgba(229, 229, 229);
}

.newinfo-time span {
    color: var(--text-light);
}

.newinfo-content {
    padding: 100px 0px;

}

.newinfo-content-txt {
    padding: 30px 0px;

}

.newinfo-content-txt img {
    display: block;
    max-width: 80%;
    margin: 0 auto;

}

.newinfo-content-txt p {
    text-align: center;
    color: rgb(58, 58, 58);
    font-size: 16px;
    font-weight: 400;
    line-height: 30px;
    margin-bottom: 16px;

}

.newinfo-btn {
    margin-top: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    color: var(--primary-color);
}

.newinfo-btn a {
    color: var(--primary-color);
    font-size: 16px;

}

.newinfo .h-prev,
.newinfo .h-next {
    padding: 10px 20px;
    transition: var(--transition);
    border-radius: 50px;
}

.newinfo .h-prev:hover,
.newinfo .h-next:hover {

    background-color: #eeeeee;
}

/* ================================join============================ */
.join-box {
    background-size: cover;
    background-position: center;
}

.join-nav {
    background-color: rgba(255, 255, 255, 1);
}

.join-nav .m {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.join-nav .m div {
    display: flex;
    gap: 15px;
    align-items: center;
}

.join-nav .m div span {
    font-size: 14px;
    font-family: '思源宋体', sans-serif;
    color: #1f1f1f;
}

.join-nav .m div span:last-child {
    color: var(--primary-color);
}

.join-nav .m div .iconfont {
    font-size: 9px;
}

.join-nav .m div .nav-img {
    width: 65px;
    height: 65px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(90deg, var(--primary-color), #6ead38);
}

.join-nav .m ul {
    display: flex;
    gap: 50px;
    align-items: center;
    height: 65px;
}

.join-nav .m ul li {
    height: 65px;
    display: flex;
    align-items: center;
    /* border-right: 1px solid rgba(255, 255, 255, 0.6); */
    position: relative;
    transition: var(--transition);
}

.join-nav .m ul li a {
    font-size: 16px;
    color: var(--text-dark);
    font-family: '思源宋体', sans-serif;

}

.join-nav .m ul li::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: var(--primary-color);
    bottom: 0;
    left: 0;
    opacity: 0;
}

.join-nav .m ul li.active::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: var(--primary-color);
    bottom: 0;
    left: 0;
    opacity: 1;
}

.join-nav .m ul li:hover a {
    color: var(--primary-color);
}

.join-nav .m ul li:hover::after {
    opacity: 1;
}

.join-content {
    padding: 100px 0px;
}

.join-content h5 {
    text-align: center;
    font-size: 24px;
    position: relative;
    padding-bottom: 20px;
    margin-bottom: 20px;
}

.join-content h5::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: var(--primary-color);
    bottom: 0;
    left: 0;
}

.join-content p {
    font-size: 16px;
    color: var(--text-dark);
    line-height: 36px;
    font-weight: 400;
    font-family: '思源宋体', sans-serif;
    margin-bottom: var(--m-bottom);
    text-indent: 2em;
}

.join-item {
    margin-bottom: 14px;
    background-color: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
    transition: box-shadow 0.35s ease;
}

.join-item:hover {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.join-title {
    padding: 24px 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: var(--white);
    cursor: pointer;
    transition: background-color 0.35s ease;
}

.join-title:hover {
    background-color: rgba(26, 93, 56, 0.05);
}

.join-title.active {
    background-color: rgba(26, 93, 56, 0.08);
}

.join-title .title {
    width: 20%;
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
}

.join-title .time {
    width: 20%;
}

.join-title .time span {
    font-size: 14px;
    color: var(--text-light);
}

.join-title .iconfont {
    display: inline-block;
    font-size: 14px;
    color: var(--primary-color);
    transition: transform 0.35s ease;
}

.join-title.active .iconfont {
    transform: rotate(90deg);
}

.join-text {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    padding: 0 32px;
    transition: max-height 0.45s ease, opacity 0.35s ease 0.1s, padding 0.35s ease;
}

.join-title.active+.join-text {
    max-height: 600px;
    opacity: 1;
    padding: 24px 32px 24px;
}

.join-text p {
    margin: 0 0 12px;
    text-indent: 2em;
    line-height: 1.9;
}

.join-text p:last-child {
    margin-bottom: 0;
}

.join-title.active .iconfont {
    transform: rotate(90deg);
}

/* ===============================contact============================ */
.contact {
    padding: 100px 0px;
}

.contact-content {
    display: flex;
    gap: 40px;
    margin-bottom: 50px;
}

.contact-left {
    width: 40%;
    display: flex;
    flex-direction: column;
    gap: 20px;
    justify-content: center;
}

.contact-right {
    flex: 1;
}

.contact-left h3 {
    font-size: 40px;
    font-weight: 600;
    line-height: 50px;
    color: var(--text-dark);
    margin-bottom: 25px;
    position: relative;
}

.contact-left h3::after {
    position: absolute;
    content: '';
    width: 20%;
    height: 2px;
    background-color: var(--primary-color);
    bottom: -30%;
    left: 0;
}

.icon {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 20px;
}

.icon p {
    font-size: 16px;
    color: var(--text-dark);
}

.icon span {
    font-size: 18px;
    color: #111111;
}

.icon .iconfont {
    font-size: 25px;
}

#container {
    width: 100%;
    height: 400px;
}

.contact-form {
    /* background-color: var(--primary-color); */
    /* background-image: url(../image/c-bg.jpg); */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 60px 0;
}

.contact-form form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    width: 100%;
    display: flex;
    gap: 20px;
}

.form-row>div {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-row label {
    color: var(--text-dark);
    font-size: 14px;
}

.form-row input[type="text"],
.form-row input[type="email"] {
    width: 100%;
    height: 42px;
    padding: 10px 14px;
    border: 1px solid rgba(0, 0, 0, 0.3);
    border-radius: 4px;
    background-color: rgba(0, 0, 0, 0.05);
    color: var(--text-dark);
}

.form-row textarea {
    width: 100%;
    height: 120px;
    padding: 12px 14px;
    border: 1px solid rgba(0, 0, 0, 0.3);
    border-radius: 4px;
    background-color: rgba(0, 0, 0, 0.1);
    color: var(--text-dark);
    resize: vertical;
}

.form-row input::placeholder,
.form-row textarea::placeholder {
    color: rgba(0, 0, 0, 0.4);
}

.form-row:nth-child(2) {
    flex-direction: column;
}

.form-row:last-child {
    justify-content: center;
}

.form-row:last-child input {
    padding: 12px 48px;
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    transition: var(--transition);
}

.form-row:last-child input:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.form-row input:focus,
.form-row textarea:focus {
    outline: none;
}

/* =====================brand===================== */
.brand {
    padding: 100px 0px;
    background-size: cover;
    background-position: top;
    background-repeat: no-repeat;
}

.brand-content {
    overflow: hidden;
}

.brand-content p {
    text-indent: 2em;
    line-height: 2;
    color: var(--text-dark);
}

/* .brand-item {
    display: flex;
    gap: 50px;
    background-color: rgba(255, 255, 255, 1);
    border-radius: 8px;
}

.brand-item:nth-child(2n) {
    flex-direction: row-reverse;
}

.brand-img {
    width: 45%;
    overflow: hidden;
}

.brand-img img {
    width: 100%;
    max-height: 500px;
    object-fit: cover;
    object-position: center;
    border-radius: 8px 0px 0px 8px;
    display: block;
    transition: var(--transition);
}

.brand-item:hover img {
    transform: scale(1.05);
}

.brand-item:nth-child(2n) img {
    border-radius: 0px 8px 8px 0px;
}

.brand-txt {
    width: 55%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 20px 32px;
}

.brand-txt p {
    margin-bottom: 10px;
    text-indent: 2em;
} */
.brand-content img {
    width: 480px;
    height: auto;
    max-height: 500px;
    object-fit: cover;
    object-position: center;

}

.brand-img-top {
    float: left;
    margin: 0 30px 20px 0;
}

.brand-img-bottom {
    float: right;
    margin: 20px 0 20px 30px;
}

/* ============================check======================== */
.check-content img {
    max-width: 100%;
}

/* ============================ 移动端适配 ============================ */
@media screen and (max-width: 1024px) {
    .m {
        padding: 0 20px;
    }

    .box2-item {
        width: calc((100% - 60px) / 4);
    }

    .box4-item {
        width: calc((100% - 48px) / 3);
    }

    .box7-item {
        width: calc((100% - 48px) / 3);
    }

    .honor-item {
        width: calc((100% - 40px) / 2);
    }
}

@media screen and (max-width: 768px) {
    .m {
        padding: 0 16px;
    }

    .flex {
        gap: 16px;
    }

    h1 {
        font-size: 30px;
        line-height: 42px;
    }

    h2 {
        font-size: 24px;
        line-height: 34px;
    }

    h3 {
        font-size: 18px;
        line-height: 26px;
    }

    p {
        font-size: 14px;
        line-height: 24px;
    }

    .desc {
        font-size: 14px;
        line-height: 24px;
    }

    /* 头部 */
    header {
        position: relative;
        height: 70px;
    }

    .container {
        height: 70px;
    }

    .log {
        gap: 8px;
    }

    .nav-item {
        height: 40px;
    }

    .log span {
        font-size: 20px;
    }

    .log img {
        max-height: 28px;
    }

    .nav ul {
        top: 70px;
        /* gap: 24px; */
    }

    .nav-link {
        font-size: 18px;
    }

    .nav ul.active {
        top: 70px;
    }

    /* 公共banner */
    .banner {
        height: 220px;
    }

    .banner h5 {
        font-size: 24px;
        line-height: 32px;
        padding: 0 16px;
    }

    .s-banner {
        height: auto;
        min-height: 80vh;
        padding: 60px 0;
    }

    .banner-content {
        flex-direction: column;
        gap: 30px;
    }

    .banner-content-left,
    .banner-content-right {
        width: 100%;
        text-align: center;
    }

    .banner-content-right img {
        width: 100%;
        max-width: 320px;
    }

    .banner-content-left .banner-p {
        font-size: 18px;
        line-height: 30px;
    }

    .banner-content-left .btn {
        flex-wrap: wrap;
        justify-content: center;
    }

    .banner-content-left a {
        padding: 10px 24px;
        font-size: 14px;
    }

    .banner-content-left p {
        max-width: none;
        margin-bottom: 32px;
    }

    .banner-info {
        justify-content: center;
    }

    /* 分页 */
    #page_1 {
        flex-wrap: wrap;
        gap: 8px;
        margin-top: 30px;
    }

    #page_1 a {
        padding: 8px 14px;
        font-size: 14px;
    }

    /* box1 - 3列 */
    .box1 {
        padding: 50px 0;
    }

    .box1-item {
        width: 100%;
        padding: 28px 20px;
    }

    /* box2 - 6列 */
    .box2 {
        padding: 50px 0;
    }

    .box2 .flex {
        gap: 16px;
    }

    .box2-item {
        width: calc((100% - 16px) / 2);
    }

    .box2-item h3 {
        height: auto;
        font-size: 16px;
    }

    /* box3 - 2列 */
    .box3 {
        padding: 50px 0;
    }

    .box3-left,
    .box3-right {
        width: 100%;
    }

    .box3-left img {
        max-height: 300px;
    }

    /* box4 - 4列 */
    .box4 {
        padding: 50px 0;
    }

    .box4-item {
        width: calc((100% - 16px) / 2);
        padding: 24px 16px;
    }

    .box4-item span {
        font-size: 32px;
        line-height: 48px;
    }

    .cert-logos {
        flex-wrap: wrap;
        gap: 12px;
    }

    .cert-logos div {
        width: calc((100% - 12px) / 2);
    }

    /* box5 - 3列 */
    .box5 {
        padding: 50px 0;
    }

    .box5-item {
        width: 100%;
    }

    /* box6 - 2列 */
    .box6 {
        padding: 50px 0;
    }

    .box6-left,
    .box6-right {
        width: 100%;
    }

    .box6-right img {
        height: 240px;
    }

    /* box7 - 4列 */
    .box7 {
        padding: 50px 0;
    }

    .box7 .flex {
        gap: 16px;
    }

    .box7-item {
        width: calc((100% - 16px) / 2);
        height: 220px;
    }

    /* box8 */
    .box8 {
        padding: 40px 0;
    }

    .box8-content {
        flex-wrap: wrap;
        gap: 12px;
    }

    .partner-logo {
        width: calc((100% - 12px) / 3);
    }

    /* box9 - 3列 */
    .box9 {
        padding: 50px 0;
    }

    .box9-item {
        width: 100%;
    }

    /* box10 */
    .box10 {
        padding: 50px 0;
    }

    .box10 .btn {
        flex-direction: column;
        align-items: center;
    }

    .box10 .btn a {
        width: 100%;
        max-width: 280px;
    }

    /* box11 - 2列 */
    .box11 {
        padding: 50px 0;
    }

    .box11-left,
    .box11-right {
        width: 100%;
    }

    .box11-right {
        padding: 24px 20px;
    }

    /* 页脚 */
    footer {
        padding: 40px 0 20px;
    }

    .footer-content {
        flex-direction: column;
        gap: 30px;
    }

    .footer-title {
        width: 100%;
    }

    .fast-nav,
    .footer-col {
        width: 100%;
    }

    /* ================= 子页面导航 ================= */
    .p-nav .m,
    .news-nav .m,
    .Introduction-nav .m,
    .join-nav .m {
        flex-direction: column;
        align-items: flex-start;
        padding: 12px 16px;
    }

    .p-nav .m>div,
    .news-nav .m>div,
    .Introduction-nav .m>div,
    .join-nav .m div {
        gap: 8px;
        width: 100%;
    }

    .p-nav .m>div .nav-img,
    .news-nav .m>div .nav-img,
    .Introduction-nav .m>div .nav-img,
    .join-nav .m div .nav-img {
        width: 40px;
        height: 40px;
    }

    .p-nav .m ul,
    .news-nav .m ul,
    .Introduction-nav ul,
    .join-nav .m ul {
        gap: 0;
        height: auto;
        width: 100%;
        overflow-x: auto;
        white-space: nowrap;
        padding-bottom: 4px;
        margin-top: 10px;
    }

    .p-nav .m ul li,
    .news-nav .m ul li,
    .Introduction-nav .m ul li,
    .join-nav .m ul li {
        height: 40px;
        padding: 0 16px;
        flex-shrink: 0;
    }

    .Culture-nav .m ul,
    .Journey-nav .m ul {
        flex-wrap: wrap;
        gap: 0;
        height: auto;
        transform: none;
        padding: 10px 16px;
    }

    .Culture-nav .m ul li,
    .Journey-nav .m ul li {
        height: 40px;
        padding: 0 16px;
    }

    /* ================= 产品页 ================= */
    .product-box {
        padding: 50px 0;
    }

    .p-content .m {
        padding: 20px;
    }

    .p-info {
        flex-direction: column;
        padding: 20px;
        gap: 16px;
    }

    .p-info img {
        width: 100%;
    }

    .pinfo-content {
        padding: 50px 0;
    }

    .product-txt {
        flex-direction: column;
        gap: 24px;
    }

    .product-img,
    .product-info {
        width: 100%;
    }

    .product-img img {
        max-height: 360px;
    }

    .product-deta h5 {
        font-size: 20px;
    }

    /* ================= 企业简介 ================= */
    .Introduction-content {
        padding: 50px 0;
    }

    .Introduction-txt {
        flex-direction: column;
        gap: 20px;
    }

    .Introduction-txt article img {
        width: 100%;
        height: auto;
        max-height: 280px;
        float: none;
        margin: 0 0 16px 0;
    }

    /* ================= 企业文化 ================= */
    .Culture-content img {
        padding: 50px 0;
    }

    /* ================= 荣誉 ================= */
    .swiper-slide {
        width: 240px;
        height: 240px;
    }

    .swiper-slide img {
        height: 240px;
    }

    .honor-info {
        gap: 20px;
    }

    .honor-item {
        width: 100%;
    }

    .honor-item img {
        height: 220px;
    }

    .honorinfo-content {
        padding: 50px 0;
    }

    .honorinfo-content .m {
        padding: 20px;
    }

    .info-content img {
        max-width: 100%;
    }

    /* ================= 发展历程 ================= */
    .Journey-content {
        padding: 50px 0;
    }

    .Journey-content .m {
        padding: 20px;
    }

    .Journey-content .dsj_sub_name {
        padding-left: 50px;
        font-size: 22px;
    }

    .Journey-content .dsj_sub_name::after {
        left: 22px;
    }

    .Journey-content .dsj_bd::after {
        left: 30px;
    }

    .Journey-content .shijian {
        width: 70px;
        flex-shrink: 0;
    }

    .Journey-content .text p {
        width: 100%;
    }

    /* ================= 新闻 ================= */
    .news-content {
        padding: 50px 0;
    }

    .new-content {
        gap: 20px;
    }

    .new-item {
        width: 100%;
        padding: 20px;
    }

    .new-item a {
        gap: 14px;
    }

    .new-item .date {
        width: 50px;
        flex-shrink: 0;
    }

    .new-item .date .dd {
        font-size: 20px;
        line-height: 20px;
    }

    .new-item .text h3 {
        width: auto;
        white-space: normal;
        font-size: 15px;
    }

    .newinfo-content {
        padding: 50px 0;
    }

    .newinfo-content .m {
        padding: 20px;
    }

    .newinfo-content-txt img {
        max-width: 100%;
    }

    /* ================= 招商合作 ================= */
    .join-content {
        padding: 50px 0;
    }

    .join-title {
        padding: 18px 16px;
        flex-wrap: wrap;
        gap: 8px;
    }

    .join-title .title,
    .join-title .time {
        width: 100%;
    }

    .join-text {
        padding: 0 16px;
    }

    .join-title.active+.join-text {
        padding: 16px;
    }

    /* ================= 联系我们 ================= */
    .contact {
        padding: 50px 0;
    }

    .contact-content {
        flex-direction: column;
        gap: 30px;
    }

    .contact-left,
    .contact-right {
        width: 100%;
    }

    .contact-left h3 {
        font-size: 28px;
        line-height: 38px;
    }

    .icon {
        font-size: 16px;
    }

    .icon span {
        font-size: 15px;
    }

    #container {
        height: 300px;
    }

    .contact-form {
        padding: 40px 0;
    }

    .form-row {
        flex-direction: column;
        gap: 16px;
    }

    .form-row>div {
        width: 100%;
    }

    .form-row:last-child {
        flex-direction: row;
    }

    /* ================= 品牌故事 ================= */
    .brand {
        padding: 50px 0;
    }

    .brand-content img {
        width: 100%;
        max-height: 320px;
        float: none !important;
        margin: 0 0 16px 0 !important;
    }
}

@media screen and (max-width: 480px) {
    .m {
        padding: 0 12px;
    }

    h1 {
        font-size: 26px;
        line-height: 36px;
    }

    h2 {
        font-size: 22px;
        line-height: 30px;
    }

    .log span {
        font-size: 17px;
    }

    .banner h5 {
        font-size: 20px;
        line-height: 28px;
    }

    .banner {
        height: 180px;
    }

    .box4-item,
    .box7-item {
        width: 100%;
    }

    .box2-item {
        width: 100%;
    }

    .partner-logo {
        width: calc((100% - 12px) / 2);
    }

    .new-item a {
        flex-direction: column;
        align-items: flex-start;
    }

    .new-item .date {
        width: 100%;
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .new-item .date .line {
        width: 1px;
        height: 16px;
        margin: 0;
    }

    .contact-left h3 {
        font-size: 24px;
        line-height: 32px;
    }
}