* {
    margin: 0;
    padding: 0;
}

@font-face {
    font-family: 'Abel';
    src: url('/static/font/Abel.ttf') format('truetype');
    /* 可以是其他格式，如 'opentype' 或 'embedded-opentype' */
}

@font-face {
    font-family: 'Bahn';
    src: url('/static/font/Bahn.ttf') format('truetype');
    /* 可以是其他格式，如 'opentype' 或 'embedded-opentype' */
}

@font-face {
    font-family: 'Impact';
    src: url('/static/font/impact.ttf') format('truetype');
    /* 可以是其他格式，如 'opentype' 或 'embedded-opentype' */
}

p {
    font-family: 'Abel', sans-serif;
    font-size: 1.2rem;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Bahn', sans-serif;
}

ul {
    margin-bottom: 0;
}

ul li {
    list-style: none;
}

@keyframes zoomIn {
    0% {
        transform: scale(1);
    }

    /* 初始状态为原始大小 */
    50% {
        transform: scale(1.2);
    }

    /* 放大到1.2倍 */
    100% {
        transform: scale(1.4);
    }

    /* 最后放大到1.4倍 */
}

@keyframes flipCard {
    0% {
        transform: rotateY(0);
    }

    100% {
        transform: rotateY(180deg);
    }
}

@keyframes unflipCard {
    0% {
        transform: rotateY(180deg);
    }

    100% {
        transform: rotateY(0);
    }
}

.button1 {
    padding: 8px 20px;
    background-color: #fff;
    border-radius: 25px;
    color: #43913d;
    cursor: pointer;
    font-size: 1rem;
}

.button1:hover {
    background-color: #43913d;
    color: #fff;
    text-decoration: none;
    transition: all 1s ease;
}

.button2 {
    padding: 8px 20px;
    border: solid 2px #fff;
    border-radius: 25px;
    color: #fff;
    cursor: pointer;
    font-size: 1rem;
}

.button2:hover {
    background-color: #fff;
    color: #43913d;
    text-decoration: none;
    transition: all 1s ease;
}

.button3 {
    padding: 8px 40px;
    background-color: #43913d;
    border-radius: 25px;
    color: #fff;
    cursor: pointer;
    font-size: 1rem;
    border: none;
    font-family: 'Bahn', sans-serif;
}

.button3:hover {
    background-color: #272727;
    color: #fff;
    text-decoration: none;
    transition: all 1s ease;
}

.button4 {
    padding: 15px 30px;
    background-color: #ffc500;
    border-radius: 25px;
    color: #fff;
    cursor: pointer;
    font-size: 1rem;
    border: none;
    font-family: 'Bahn', sans-serif;
}

.button4:hover {
    background-color: #fff;
    color: #43913d;
    text-decoration: none;
    transition: all 1s ease;
}








@media screen and (min-width: 1201px) {
.mt-120 {
    margin-top: 120px;
}

.mb-120 {
    margin-bottom: 120px;
}

.pt-120 {
    padding-top: 120px;
}

.pb-120 {
    padding-bottom: 120px;
}

    /* 网站顶部 */
    .header {
        position: fixed;
        left: 0;
        top: 0;
        width: 100%;
        z-index: 9;
        padding: 20px 0;
        transition: background-color 0.3s ease;
    }

    /* 滚动时的白色背景header */
    .header-white {
        background-color: #43913d;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }

    .header-white .header-menu-item,
    .header-white .dropdown-toggle {
        color: #fff;
    }


    .header-logo img {
        width: 250px;
    }

    /* 网站顶部 */
    .header-menu ul {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .header-menu .dropdown-toggle {
        color: #fff;
        text-decoration: none;
        font-family: 'Bahn', sans-serif;
    }


    .header-menu-item {
        color: #fff;
        text-decoration: none;
        font-family: 'Bahn', sans-serif;
    }

    .header-menu-item:hover {
        color: #fff;
        text-decoration: none;
    }


    /* 下拉菜单样式 */
    .header-menu .dropdown {
        position: relative;
    }

    /* 下拉菜单默认隐藏 */
    .header-menu .dropdown-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        z-index: 1000;
        min-width: 160px;
        padding: 5px 0;
        margin: 2px 0 0;
        font-size: 14px;
        text-align: left;
        list-style: none;
        background-color: #fff;
        border: 1px solid rgba(0, 0, 0, .15);
        border-radius: 4px;
        box-shadow: 0 6px 12px rgba(0, 0, 0, .175);
    }

    /* 鼠标悬停时显示下拉菜单 */
    .header-menu .dropdown:hover .dropdown-menu {
        display: block;
    }

    /* 下拉菜单项样式 */
    .header-menu .dropdown-item {
        display: block;
        padding: 3px 20px;
        clear: both;
        font-weight: 400;
        line-height: 1.42857143;
        color: #333;
        white-space: nowrap;
    }

    /* 下拉菜单项悬停样式 */
    .header-menu .dropdown-item:hover {
        color: #262626;
        text-decoration: none;
        background-color: #f5f5f5;
    }

    .header-language a {
        color: #fff;
        text-decoration: none;
        display: flex;
        align-items: center;
        width: 100%;
        height: 50px;
        gap: 5px;
        justify-content: flex-end;
    }

    .mobil-header {
        display: none;
    }
    
    .mobil-header-nav {
        display: none;
    }
    
    .mobil-header-close {
        display: none;
    }
    /* 网站顶部 */




    /* 网站滚动图 */
    .slider-area {
        width: 100%;
    }

    .slider-item {
        width: 100%;
        padding: 400px 0;
        position: relative;
    }

    .slider-item-bg {
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        z-index: -2;
    }
    
    .slider-item-bg video {
        width: 100%;
    }

    .slider-item-bg img {
        width: 100%;
    }

    .slider-item-mask {
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        z-index: -1;
        height: 800px;
    }

    .slider-text {
        text-align: center;
        color: #fff;
        padding: 20px;
        background-color: #0000004d;
        width: 50%;
        margin: 0 auto;
    }

    .slider-button {
        width: 100%;
        display: flex;
        justify-content: center;
        gap: 20px;
        margin-top: 30px;
    }

    .slider-text {
        text-transform: uppercase;
    }

    /* 网站滚动图 */




    /* 首页特点 */
    .home-feature-title {
        text-align: center;
    }

    .home-feature-box {
        margin-top: 50px;
    }

    .home-feature-box-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 20px;
        text-align: center;
    }

    .home-feature-box-item-icon i {
        font-size: 4rem;
        color: #43913d;
    }

    /* 首页特点 */




    /* 首页产品 */
    .home-pro-box {
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
        margin-top: 50px;
    }

    .home-pro-box-item {
        width: 19%;
        height: 260px;
        overflow: hidden;
        border-radius: 12px;
        margin-bottom: 20px;
        position: relative;
    }

    .home-pro-box-item-image img {
        width: 100%;
    }

    .home-pro-box-item-mask {
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        z-index: 2;
        background: linear-gradient(to top, #43913dac, #43913d00);
        height: 260px;
        border-radius: 12px;
    }

    .home-pro-box-text {
        position: absolute;
        left: 20px;
        bottom: 20px;
        z-index: 3;
    }

    .home-pro-box-text a {
        color: #fff;
        text-decoration: none;
        font-family: 'Bahn', sans-serif;
    }

    .home-pro-box-item:hover .home-pro-box-text {
        transform: translateY(-10px);
        transition: all .3s ease;
    }

    .home-pro-box-item:hover .home-pro-box-item-mask {
        background: linear-gradient(to top, #43913d, #43913d76);
        transition: all .3s ease;
    }

    /* 首页产品 */




    /* 首页荣誉资质 */
    .home-honor-box {
        margin-top: 50px;
        perspective: 1200px;
        /* 添加透视效果 */
    }

    #honor {
        perspective: 1200px;
    }

    #honor .swiper-wrapper {
        transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.275);
    }

    #honor .swiper-slide {
        transition: all 0.5s ease;
        transform-origin: center;
        backface-visibility: hidden;
    }

    /* 中心卡片(第三个) */
    #honor .swiper-slide-active {
        transform: scale(1);
        z-index: 3;
    }

    /* 第二个和第四个卡片 */
    #honor .swiper-slide-prev,
    #honor .swiper-slide-next {
        transform: scale(0.8);
        z-index: 2;
    }

    /* 第一个和第五个卡片 */
    #honor .swiper-slide-prev-prev,
    #honor .swiper-slide-next-next {
        transform: scale(0.6);
        z-index: 1;
    }

    .home-honor-box img {
        width: 100%;
        border-radius: 8px;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    }

    /* 首页荣誉资质 */






    /* 首页项目 */
    .home-project {
        position: relative;
        width: 100%;
        height: 1200px;
        overflow: hidden;
    }

    .home-project-bg {
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        z-index: -2;
    }

    .home-project-bg img {
        width: 100%;
    }

    .home-project-mask {
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        z-index: -1;
        background: linear-gradient(to bottom, #43913d14, #43913d00);
        height: 1200px;
    }

    .home-project:hover .home-project-mask {
        background: linear-gradient(to bottom, #316c2d, #2757238d);
        transition: all 10s ease;
    }

    .home-project-map img {
        width: 100%;
    }

    .home-project-text {
        color: #fff;
        text-align: right;
    }

    .home-project-text h1 {
        text-transform: uppercase;
    }

    .home-project-text p {
        margin: 15px 0;
    }

    .home-project-text-btn {
        margin-top: 35px;
    }

    .home-project-list {
        margin-top: 80px;
    }

    .home-project-list-title {
        color: #fff;
        text-align: center;
        margin-bottom: 50px;
    }

    .home-project-list-item {
        width: 100%;
        height: 380px;
        position: relative;
        border-radius: 12px;
        overflow: hidden;
    }

    .home-project-list-item-image img {
        width: 100%;
    }

    .home-project-list-item:hover .home-project-list-item-image img {
        transform: scale(1.1);
        transition: all .5s ease;
        transition-delay: 0.1s;
    }

    .home-project-list-item-mask {
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 380px;
        z-index: 2;
        background: linear-gradient(to top, #000000db, #00000000);
        display: none;
    }

    .home-project-list-item:hover .home-project-list-item-mask {
        display: block;
        transition: all .5s ease;
    }

    .home-project-list-item-text {
        position: absolute;
        left: 20px;
        bottom: 40px;
        z-index: 3;
        color: #fff;
    }

    .home-project-list-item-btn {
        margin-top: 20px;
    }

    /* 首页项目 */




    /* 首页新闻 */
    .home-news-box {
        margin-top: 50px;
    }

    .home-news-box-item {
        position: relative;
        border-radius: 12px;
        overflow: hidden;
        background-color: #43913d;
    }

    .home-news-box-item-image {
        width: 100%;
        height: 300px;
        object-fit: cover;
        overflow: hidden;
    }

    .home-news-box-item-image img {
        width: 100%;
    }

    .home-news-box-item-text {
        padding: 20px;
        color: #fff;
    }

    .home-news-box-item-text-data {
        display: flex;
        align-items: center;
        gap: 20px;
        font-size: 0.8rem;
        font-family: 'Bahn', sans-serif;
    }

    .home-news-box-item-text-data-category {
        padding: 5px 10px;
        background-color: #ffffffa8;
        border-radius: 15px;
        font-size: 0.8rem;
        font-family: 'Bahn', sans-serif;
        text-transform: uppercase;
        width: 140px;
    }

    .home-news-box-item-text-content {
        margin: 20px 0 10px 0;
    }

    .home-news-box-item-text-content a {
        color: #fff;
        font-family: 'Bahn', sans-serif;
        font-size: 1.2rem;
        word-break: break-all;
        text-decoration: none;
    }

    .home-news-box-item-btn i {
        font-size: 2rem;
        color: #fff;
    }

    .home-news-box-item-btn a:hover {
        text-decoration: none;
    }

    /* 首页新闻 */





    /* 首页留言板 */
    .home-message {
        background-color: #f8f9f8;
    }

    .home-message-image img {
        width: 100%;
        object-fit: cover;
    }

    .home-message-text {
        padding: 30px 0;
    }

    .home-message-form {
        margin-top: 30px;
    }

    .home-message-form input {
        width: 100%;
        border: none;
        background-color: #e1e6e3;
        padding: 10px 20px;
        border-radius: 25px;
        margin-bottom: 30px;
        font-family: 'Abel', sans-serif;
    }

    .home-message-form input:focus {
        outline: none;
        background-color: #43913d;
        color: #fff;
        transition: all .2s ease;
    }

    .home-message-form textarea {
        width: 100%;
        height: 120px;
        border: none;
        background-color: #e1e6e3;
        padding: 10px 20px;
        border-radius: 25px;
        margin-bottom: 30px;
        font-family: 'Abel', sans-serif;
    }

    .home-message-form textarea:focus {
        outline: none;
        background-color: #43913d;
        color: #fff;
        transition: all .2s ease;
    }

    /* 首页留言板 */






    /* 网站底部 */
    .home-partner {
        padding: 30px 0;
    }

    .footer {
        background-color: #43913d;
    }

    .footer-line {
        border-bottom: 1px solid #ffffff54;
        width: 100%;
    }

    .footer-item {
        margin: 80px 0;
    }

    .footer-item-img img {
        width: 200px;
    }

    .footer-item-message {
        margin: 30px 0;
    }

    .footer-item-message form {
        display: flex;
        align-items: center;
        gap: 1px;
    }

    .footer-item-message form input {
        border: none;
        background-color: #ffffff;
        padding: 5px 10px;
        width: 50%;
        font-family: 'Abel', sans-serif;
    }

    .footer-item-message form input:focus {
        outline: none;
        background-color: #f8f9f8;
        transition: all .3s ease;
    }

    .footer-item-message a {
        padding: 5px 10px;
        background-color: #fff;
        color: #43913d;
        text-decoration: none;
    }

    .footer-item-message form button i {
        color: #43913d;
    }

    .footer-item-qr {
        display: flex;
        gap: 10px;
    }

    .footer-item-qr img {
        width: 80px;
    }

    .footer-item-socail {
        margin-top: 20px;
        display: flex;
        gap: 5px;
        align-items: center;
    }

    .footer-item-socail a {
        text-decoration: none;
    }

    .footer-item-socail i {
        font-size: 1.5rem;
        color: #fff;
    }

    .footer-item-socail a:hover i {
        color: #316c2d;
        transition: all .2s ease;
    }

    .footer-item-title h4 {
        color: #fff;
    }

    .footer-item-list {
        display: flex;
        flex-direction: column;
        margin-top: 35px;
    }

    .footer-item-list a {
        color: #fff;
        text-decoration: none;
        margin-bottom: 10px;
        font-family: 'Abel', sans-serif;
    }

    .footer-item-list h4 {
        color: #fff;
        font-family: 'Bahn', sans-serif;
    }

    .footer-copyright {
        padding: 10px 0;
        background-color: #316c2d;
        display: flex;
        justify-content: center;
        gap: 50px;
        color: #fff;
    }

    .footer-copyright p {
        font-size: 0.8rem;
    }

    /* 网站底部 */







    /* 一级分类页 */
    .page-bg {
        position: relative;
        width: 100%;
        height: 500px;
        overflow: hidden;
    }

    .page-bg-cover {
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 500px;
        overflow: hidden;
        z-index: -2;
    }

    .page-bg-cover img {
        width: 100%;
    }

    .page-bg-mask {
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 500px;
        overflow: hidden;
        z-index: -2;
        background: linear-gradient(to bottom, #316c2d, #2757238d);
    }

    .page-bg-text {
        padding: 250px 0;
        display: flex;
        flex-direction: column;
        align-items: center;
        color: #fff;
    }

    .page-bg-text a {
        color: #fff;
        text-decoration: none;
        font-family: 'Abel', sans-serif;
    }

    .page-bg-text a:hover {
        text-decoration: none;
    }

    .page-bread {
        padding: 10px 0;
        background-color: #fafafa;
    }

    .page-bread-box {
        display: flex;
        gap: 15px;
    }

    .page-bread-box a {
        color: #272727;
        font-family: 'Abel', sans-serif;
        text-decoration: none;
    }

    .page-bread-box a:hover {
        color: #43913d;
        transition: all .2s ease;
    }

    .product-box {
        margin-top: 50px;
    }

    .product-box-item {
        margin-bottom: 20px;
        border-radius: 12px;
        position: relative;
        width: 100%;
        height: 250px;
        overflow: hidden;
    }

    .product-box-bg {
        width: 100%;
        height: 250px;
        overflow: hidden;
        display: flex;
    }

    .product-box-bg img {
        width: 100%;
    }

    .product-box-item:hover .product-box-bg img {
        transform: scale(1.1);
        transition: all .2s ease;
    }

    .product-box-text {
        position: absolute;
        left: 20px;
        bottom: 20px;
        width: calc(100% - 40px);
        margin: 0 auto;
        padding: 20px;
        border-radius: 12px;
        background-color: #fff;
        text-align: center;
        height: 98px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .product-box-item:hover .product-box-text {
        background-color: #43913d;
        transition: all .2s ease;
        color: #fff;
    }

    .product-box-text a {
        color: #272727;
        text-decoration: none;
        font-family: 'Bahn', sans-serif;
        font-size: 1.2rem;
    }

    .product-box-item:hover .product-box-text a {
        color: #fff;
        transition: all .2s ease;
    }

    .product-box-text p {
        font-size: 0.9rem;
    }

    .product-box-contact {
        width: 100%;
        padding: 30px;
        background-color: #43913d;
        border-radius: 12px;
        position: relative;
        margin-top: 80px;
    }

    .product-box-contact:hover {
        background-color: #316c2d;
        transition: all .2s ease;
    }

    .product-box-contact-text {
        margin: 50px 0;
        color: #fff;
    }

    .product-box-contact-img {
        position: absolute;
        right: 0;
        bottom: 0;
        z-index: 2;
        width: 25%;
    }

    .product-box-contact-img img {
        width: 100%;
    }

    .product-box-contact-text-btn {
        margin-top: 40px;
    }

    /* 一级分类页 */






    /* 二级分类页 */
    .pro-category-area {
        margin: 80px 0;
    }

    .pro-category-area-sidebar-item {
        margin-bottom: 20px;
    }

    .pro-category-area-sidebar-item-title {
        padding: 10px;
        background-color: #43913d;
        text-align: center;
    }

    .pro-category-area-sidebar-item-title h4 {
        color: #fff;
        margin-bottom: 0;
    }

    .pro-category-area-sidebar-item-form {
        padding: 20px;
        background-color: #fafafa;
    }

    .pro-category-area-sidebar-item-form input {
        width: 100%;
        padding: 5px 10px;
        border: none;
        margin-bottom: 10px;
        font-size: 0.8rem;
    }

    .pro-category-area-sidebar-item-form input:focus {
        outline: none;
        background-color: #43913d;
        color: #fff;
    }

    .pro-category-area-sidebar-item-form textarea {
        width: 100%;
        height: 100px;
        padding: 5px 10px;
        border: none;
        margin-bottom: 10px;
        font-size: 0.8rem;
    }

    .pro-category-area-sidebar-item-form textarea:focus {
        outline: none;
        background-color: #43913d;
        color: #fff;
    }

    .pro-category-area-sidebar-item-form button {
        border: none;
        padding: 8px 10px;
        background-color: #43913d;
        width: 100%;
        color: #fff;
        font-family: 'Bahn', sans-serif;
    }

    .pro-category-area-sidebar-item-category {
        padding: 20px;
        background-color: #fafafa;
    }

    .pro-category-area-sidebar-item-category h5 {
        color: #43913d;
    }

    .pro-category-area-sidebar-item-category-more p {
        font-size: 1rem;
        color: #43913d;
    }

    .pro-category-area-content-video video {
        width: 100%;
    }

    .pro-category-area-content-text {
        margin-top: 30px;
    }

    .pro-category-area-content-box {
        margin-top: 30px;
    }

    .pro-category-area-content-box-item {
        margin-bottom: 20px;
    }

    .pro-category-area-content-box-item-img {
        width: 100%;
        height: 250px;
        overflow: hidden;
    }

    .pro-category-area-content-box-item-img img {
        width: 100%;
    }

    .pro-category-area-content-box-item:hover .pro-category-area-content-box-item-img img {
        transform: scale(1.1);
        transition: all .2s ease;
    }

    .pro-category-area-content-box-item-text a {
        color: #272727;
        text-decoration: none;
        font-family: 'Bahn', sans-serif;
        font-size: 1.2rem;
    }

    .pro-category-area-content-box-item:hover a {
        color: #43913d;
        transition: all .2s ease;
    }

    .pro-category-area-content-box-item-text-para {
        margin-top: 10px;
    }

    .pro-category-area-content-box-item-text-para p {
        font-size: 1rem;
    }

    /* 二级分类页 */





    /* 产品详情页 */
    .pro-detail-area {
        margin: 80px 0;
    }

    .pro-detail-area-pics .swiper-slide {
        border: 1px solid #ebebeb;
    }

    .pro-detail-area-pics .mySwiper {
        margin-top: 10px;
    }

    .pro-detail-area-pics .swiper-slide img {
        width: 100%;
    }

    .pro-detail-area-info {
        margin-top: 20px;
    }

    .pro-detail-area-info-box {
        margin-top: 20px;
    }

    .pro-detail-area-info-box-list span {
        color: #767676;
        font-family: 'Abel', sans-serif;
    }

    .pro-detail-area-info-social {
        margin: 10px 0;
    }

    .pro-detail-area-info-social a {
        color: #43913d;
        text-decoration: none;
    }

    .pro-detail-area-info-social a:hover {
        color: #ffc500;
        transition: all .2s ease;
    }

    .pro-detail-area-info-social i {
        font-size: 2rem;
    }

    .pro-detail-area-info-btn {
        margin-top: 40px;
    }

    .pro-detail-area-info-btn a {
        padding: 12px 40px;
        background-color: #43913d;
        color: #fff;
        font-family: 'Bahn', sans-serif;
        text-decoration: none;
    }

    .pro-detail-area-info-btn a:hover {
        background-color: #ffc500;
        color: #fff;
        transition: all .2s ease;
    }

    .pro-detail-content {
        margin-bottom: 80px;
    }

    .pro-detail-content-title {
        padding: 10px;
        width: 100%;
        background-color: #43913d;
        text-align: center;
        color: #fff;
    }

    .pro-detail-content-title h2 {
        margin-bottom: 0;
    }

    .pro-detail-content-text {
        padding: 20px;
        background-color: #fafafa;
    }

    .pro-detail-related {
        margin-top: 20px;
    }

    /* 产品详情页 */




    /* 关于我们 */
    .about-area {
        margin: 80px 0;
    }

    .about-area-text h1 {
        color: #43913d;
        text-transform: uppercase;
    }

    .about-area-btn {
        margin-top: 30px;
    }

    .about-area-btn a {
        padding: 10px 35px;
        background-color: #43913d;
        color: #fff;
        font-family: 'Bahn', sans-serif;
        text-decoration: none;
    }

    .about-area-btn a:hover {
        background-color: #ffc500;
        color: #fff;
        transition: all .2s ease;
    }

    .about-area-img-box {
        position: relative;
    }

    .about-area-img-box-csr {
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        z-index: -1;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 50px;
    }

    .about-area-img-box-csr img {
        width: 70%;
        transform: translateY(-50px);
    }

    .about-area-img-box-text {
        background-color: #ffffffad;
        border-radius: 12px;
        box-shadow: 0px 0px 20px 7px #f4f4f4;
        padding: 30px;
        transform: translateY(200px);
        text-align: center;
    }

    .about-area-img-box-text p {
        color: #43913d;
        font-size: 1rem;
    }

    .about-area-img-box-text h4 {
        margin-top: 20px;
        color: #43913d;
    }

    .about-area-value {
        position: relative;
        margin: 80px 0;
        overflow: hidden;
    }

    .about-area-value-bg {
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        z-index: -1;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .about-area-value-bg img {
        width: 100%;
    }

    .about-area-value-box-img {
        padding: 80px 0;
    }

    .about-area-value-box-img img {
        width: 100%;
    }

    .about-area-value-box-list {
        padding: 80px 0;
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .about-area-value-box-text {
        padding: 20px;
        background-color: #ffffff96;
        border-radius: 12px;
        box-shadow: 0px 0px 10px 3px #0000001d;
    }

    .about-area-value-box-text h4 {
        text-transform: uppercase;
        color: #43913d;
    }

    .about-area-value-box-text-more {
        display: flex;
        gap: 10px;
    }

    .about-area-value-box-text-more-line {
        border-left: 2px solid #272727;
        height: 15px;
    }

    .about-area-value-box-text p {
        font-size: 1rem;
    }

    .about-area-adv {
        margin-top: 50px;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-around;
    }

    .about-area-adv-item {
        margin-bottom: 50px;
        width: 30%;
    }

    .about-area-adv-item-title {
        display: flex;
        align-items: center;
        gap: 10px;
        border: 3px solid #43913d;
        border-radius: 15px;
        padding: 10px;
        font-family: 'Bahn', sans-serif;
        font-size: 1.8rem;
        color: #43913d;
    }

    .about-area-adv-item-title-icon {
        width: 50px;
        height: 50px;
        border-radius: 8px;
        background-color: #43913d;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .about-area-adv-item-title-icon i {
        color: #fff;
        font-size: 2rem;
    }

    .about-area-adv-item-text p {
        margin-top: 20px;
        font-size: 1rem;
    }

    .about-area-contact {
        margin-top: -50px;
        margin-bottom: 120px;
    }

    /* 关于我们 */







    /* 客户案例 */
    .case-area-box-item {
        margin-bottom: 50px;
    }

    .case-area-box-item h1 {
        color: #43913d;
    }

    .case-area-box-item-btn {
        margin-top: 30px;
    }

    .case-area-box-item-btn a {
        padding: 15px 35px;
        background-color: #43913d;
        color: #fff;
        font-family: 'Bahn', sans-serif;
        text-decoration: none;
    }

    .case-area-box-item-btn a:hover {
        background-color: #ffc500;
        color: #fff;
        text-decoration: none;
        transition: all .2s ease;
    }

    .case-area-box-item-body {
        margin-top: 30px;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
    }

    .case-area-box-item-body-item {
        width: 31%;
    }

    .case-area-box-item-body-item-img {
        width: 100%;
        height: 220px;
        overflow: hidden;
        display: flex;
    }

    .case-area-box-item-body-item:hover .case-area-box-item-body-item-img img {
        transform: scale(1.1);
        transition: 0.3s ease;
    }

    .case-area-box-item-body-item-img img {
        width: 100%;
    }

    .case-area-box-item-body-item-title {
        margin-top: 15px;
    }

    .case-area-box-item-body-item-title-btn {
        margin-top: 10px;
    }

    .case-area-box-item-body-item-title-btn a {
        color: #43913d;
        text-decoration: none;
    }

    .case-area-box-item-body-item-title-btn a i {
        font-size: 2rem;
    }

    .page-require {
        padding: 50px;
        background-color: #fafafa;
    }

    .page-require-icon {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .page-require-icon i {
        font-size: 5rem;
        color: #43913d;
    }

    .page-require-text {
        color: #43913d;
    }

    .page-require-btn {
        margin-top: 30px;
    }

    .page-require-btn a {
        padding: 15px 35px;
        background-color: #43913d;
        color: #fff;
        font-family: 'Bahn', sans-serif;
        text-decoration: none;
    }

    .page-require-btn a:hover {
        background-color: #ffc500;
        color: #fff;
        transition: 0.3s ease;
    }

    /* 客户案例 */





    /* 案例详情 */
    .case-detail-content-img {
        width: 100%;
        border-radius: 15px;
    }

    .case-detail-content-text {
        margin-top: 30px;
    }

    .case-detail-content-text-body h2 {
        color: #43913d;
    }

    .case-detail-content-text-body-des {
        margin-top: 30px;
    }

    .case-detail-content-text-body-des h4 {
        color: #43913d;
    }

    .case-detail-content-text-body-pics {
        margin-top: 30px;
    }

    .case-detail-content-text-body-pics-item img {
        width: 100%;
    }

    .case-detail-content-text-rigth ul li {
        margin-bottom: 10px;
    }

    .case-detail-content-text-rigth ul li i {
        margin-right: 5px;
        font-size: 1rem;
        color: #43913d;
    }

    .case-detail-sidebar-list .about-area-adv-item-title {
        margin-bottom: 10px;
    }

    .case-detail-sidebar-contact {
        margin-top: 50px;
        position: relative;
        width: 100%;
        overflow: hidden;
        border-radius: 10px;
    }

    .case-detail-sidebar-contact-bg {
        position: absolute;
        left: 0;
        top: 0;
        z-index: -1;
        width: 100%;
        display: flex;
    }

    .case-detail-sidebar-contact-bg img {
        height: 100%;
    }

    .case-detail-sidebar-contact-text {
        padding: 30px 20px;
        color: #fff;
        word-break: break-all;
    }

    .case-detail-sidebar-contact-text-btn {
        margin-top: 30px;
    }

    .case-detail-sidebar-contact-text-btn a {
        padding: 15px 35px;
        background-color: #ffc500;
        color: #fff;
        font-family: 'Bahn', sans-serif;
        text-decoration: none;
    }

    .case-detail-sidebar-contact-text-btn a:hover {
        background-color: #43913d;
        color: #fff;
        transition: 0.3s ease;
    }

    /* 案例详情 */




    /* 新闻资讯 */
    .pro-category-area-sidebar-item-category {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .pro-category-area-sidebar-item-category a {
        font-family: 'Abel', sans-serif;
        color: #272727;
        text-decoration: none;
    }

    .pro-category-area-sidebar-item-category a:hover {
        color: #43913d;
        transition: all .2s ease;
    }

    .article-item {
        margin-bottom: 20px;
        display: flex;
    }

    .article-item:hover {
        box-shadow: 0px 0px 10px 3px #0000000a;
        transition: all .2s ease;
    }

    .article-item-img {
        width: 30%;
    }

    .article-item-img img {
        width: 100%;
    }

    .article-item-title {
        padding: 10px 20px;
        width: 70%;
    }

    .article-item-title-text a {
        color: #272727;
        font-family: 'Bahn', sans-serif;
        text-decoration: none;
        font-size: 1.2rem;
        font-weight: 700;
        line-height: 1.2rem;
    }

    .article-item-title-text a:hover {
        color: #43913d;
        transition: all .2s ease;
    }

    .article-item-author {
        display: flex;
        gap: 20px;
        margin-top: 10px;
    }

    .article-item-title p {
        font-size: 1rem;
    }

    .article-item-btn {
        margin-top: 15px;
    }

    .article-item-btn a {
        padding: 10px 25px;
        background-color: #43913d;
        color: #fff;
        font-family: 'Bahn', sans-serif;
        text-decoration: none;
    }

    .article-item-btn a:hover {
        background-color: #ffc500;
        color: #fff;
        transition: 0.5s;
    }

    .pagination {
        display: flex;
        gap: 10px;
    }

    .pagination a {
        padding: 8px 15px;
        font-family: 'Bahn', sans-serif;
        background-color: #ebebeb;
        color: #43913d;
        border-radius: 3px;
        text-decoration: none;
    }

    .pagination a.active {
        background-color: #43913d;
        color: #fff;
    }

    .article-detail-author {
        margin: 20px 0;
        display: flex;
        gap: 20px;
    }

    .article-detail-img {
        margin-bottom: 20px;
    }

    /* 新闻资讯 */






    /* 联系我们 */
    .contact-area-info-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 10px;
        background-color: #43913d;
        border-radius: 12px;
        padding: 30px 0;
        color: #fff;
    }

    .contact-area-info-item:hover {
        background-color: #316c2d;
        transition: all .2s ease;
    }

    .contact-area-info-item-icon i {
        font-size: 3.5rem;
    }

    .contact-quote {
        padding: 80px 0;
        background-color: #fafafa;
    }

    .contact-quote-title {
        text-align: center;
    }

    .contact-quote-title h1 {
        color: #43913d;
    }

    .contact-quote-form {
        margin-top: 30px;
    }

    .contact-quote-form input {
        padding: 15px 20px;
        margin-bottom: 20px;
        width: 100%;
        border: none;
        border-radius: 5px;
    }

    .contact-quote-form input:focus {
        outline: none;
        background-color: #43913d;
    }

    .contact-quote-form textarea {
        padding: 15px 20px;
        margin-bottom: 20px;
        width: 100%;
        border: none;
        border-radius: 5px;
        height: 150px;
    }

    .contact-quote-form textarea:focus {
        outline: none;
        background-color: #43913d;
        color: #fff;
    }

    .contact-quote-form button {
        padding: 10px 25px;
        background-color: #43913d;
        color: #fff;
        font-family: 'Bahn', sans-serif;
        text-decoration: none;
        border: none;
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .contact-quote-form button:hover {
        background-color: #ffc500;
        color: #fff;
        transition: 0.5s;
    }

    .contact-map img {
        width: 100%;
    }

    /* 联系我们 */
}






@media screen and (max-width: 1200px) {
    .mt-120 {
    margin-top: 50px;
}

.mb-120 {
    margin-bottom: 50px;
}

.pt-120 {
    padding-top: 50px;
}

.pb-120 {
    padding-bottom: 50px;
}
    
    
    
    
    /* 网站顶部 */
    .header {
        display: none;
    }
    
    .mobil-header {
        position: fixed;
        left: 0;
        top:0;
        padding: 20px;
        width: 100%;
        background-color: #43913d;
        z-index: 900;
    }
    
    .mobil-header-item {
        display: flex;
        justify-content: space-between;
    }
    
    .mobil-header-logo {
        width: 94%;
    }
    
    .mobil-header-logo img {
        width: 150px;
    }
    
    .mobil-header-menu {
        width: 6%;
    }
    
    .mobil-header-menu i {
        color: #fff;
        font-size: 1.5rem;
    }
    
    .mobil-header-nav {
        position: fixed;
        left: 0;
        top: 0;
        width: 100%;
        height: 100vh;
        background-color: #43913d;
        z-index: 1000;
        display: none;
    }
    
    .mobil-header-nav-box {
        padding: 20px;
    }
    
    .mobil-header-nav-title-logo img {
        width: 150px;
    }
    
    .mobil-header-nav-line {
        border-bottom: 1px solid #fff;
        margin: 20px 0;
    }
    
    .mobil-header-nav-list {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }
    
    .mobil-header-nav-list a {
        text-decoration: none;
        color: #fff;
        font-family: 'Abel';
    }
    
    .mobil-header-nav-info h6 {
        color: #fff;
        font-weight: 600;
    }
    
    .mobil-header-nav-info p {
        font-size: 1rem;
        color: #fff;
        margin-bottom: 10px;
    }
    
    .mobil-header-nav-social {
        margin: 20px 0;
    }
    
    .mobil-header-nav-social a {
        text-decoration: none;
        color: #fff;
    }
    
    .mobil-header-nav-social i {
        font-size: 1.5rem;
    }
    
    .mobil-header-nav-btn {
        margin-top: 30px;
    }
    
    .mobil-header-nav-btn a {
        padding: 10px 80px;
        background-color: #fff;
        width: 100%;
        color: #43913d;
        text-decoration: none;
    }
    
    .mobil-header-close {
        position: fixed;
        right: 20px;
        top: 20px;
        z-index: 1001;
        display: none;
    }
    
    .mobil-header-close-box i {
        font-size: 1.5rem;
        color: #fff;
    }
    /* 网站顶部 */




    /* 网站滚动图 */
    .slider-area {
        width: 100%;
    }

    .slider-item {
        width: 100%;
        height: 500px;
        padding: 120px 30px 0 30px;
        position: relative;
    }

    .slider-item-bg {
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        z-index: -2;
        display: flex;
    }
    
    .slider-item-bg video {
        height: 500px;
    }

    .slider-item-bg img {
        width: 100%;
    }

    .slider-item-mask {
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        z-index: -1;
        background: linear-gradient(to bottom, #43913d, #43913d00);
        height: 500px;
    }

    .slider-text {
        text-align: center;
        color: #fff;
        text-transform: uppercase;
        margin-top: 50px;
    }
    
    .slider-text h1 {
        font-size: 1.5rem;
        font-weight: 600;
    }

    .slider-button {
        width: 100%;
        display: flex;
        justify-content: center;
        gap: 20px;
        margin-top: 30px;
    }

    /* 网站滚动图 */




    /* 首页特点 */
    .home-feature-title {
        text-align: center;
    }

    .home-feature-box {
        margin-top: 50px;
    }

    .home-feature-box-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 20px;
        text-align: center;
        margin-bottom: 30px;
    }

    .home-feature-box-item-icon i {
        font-size: 4rem;
        color: #43913d;
    }

    /* 首页特点 */




    /* 首页产品 */
    .home-pro-box {
        margin-top: 30px;
    }

    .home-pro-box-item {
        width: 100%;
        height: 260px;
        overflow: hidden;
        border-radius: 12px;
        margin-bottom: 20px;
        position: relative;
    }

    .home-pro-box-item-image img {
        width: 100%;
    }

    .home-pro-box-item-mask {
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        z-index: 2;
        background: linear-gradient(to top, #43913dac, #43913d00);
        height: 260px;
        border-radius: 12px;
    }

    .home-pro-box-text {
        position: absolute;
        left: 20px;
        bottom: 20px;
        z-index: 3;
    }

    .home-pro-box-text a {
        color: #fff;
        text-decoration: none;
        font-family: 'Bahn', sans-serif;
    }

    .home-pro-box-item:hover .home-pro-box-text {
        transform: translateY(-10px);
        transition: all .3s ease;
    }

    .home-pro-box-item:hover .home-pro-box-item-mask {
        background: linear-gradient(to top, #43913d, #43913d76);
        transition: all .3s ease;
    }

    /* 首页产品 */




    /* 首页荣誉资质 */
    .home-honor-box {
        margin-top: 50px;
        perspective: 1200px;
        /* 添加透视效果 */
    }

    #honor {
        perspective: 1200px;
    }

    #honor .swiper-wrapper {
        transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.275);
    }

    #honor .swiper-slide {
        transition: all 0.5s ease;
        transform-origin: center;
        backface-visibility: hidden;
    }

    /* 中心卡片(第三个) */
    #honor .swiper-slide-active {
        transform: scale(1);
        z-index: 3;
    }

    /* 第二个和第四个卡片 */
    #honor .swiper-slide-prev,
    #honor .swiper-slide-next {
        transform: scale(0.8);
        z-index: 2;
    }

    /* 第一个和第五个卡片 */
    #honor .swiper-slide-prev-prev,
    #honor .swiper-slide-next-next {
        transform: scale(0.6);
        z-index: 1;
    }

    .home-honor-box img {
        width: 100%;
        border-radius: 8px;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    }

    /* 首页荣誉资质 */






    /* 首页项目 */
    .home-project {
        position: relative;
        width: 100%;
        overflow: hidden;
    }

    .home-project-bg {
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        z-index: -2;
    }

    .home-project-bg img {
        height: 100%;
    }

    .home-project-mask {
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        z-index: -1;
        background: linear-gradient(to bottom, #43913d14, #43913d00);
        height: 1200px;
    }

    .home-project:hover .home-project-mask {
        background: linear-gradient(to bottom, #316c2d, #2757238d);
        transition: all 10s ease;
    }

    .home-project-map img {
        width: 100%;
    }

    .home-project-text {
        color: #fff;
        text-align: right;
    }

    .home-project-text h1 {
        text-transform: uppercase;
    }

    .home-project-text p {
        margin: 15px 0;
    }

    .home-project-text-btn {
        margin-top: 35px;
    }

    .home-project-list {
        margin-top: 80px;
    }

    .home-project-list-title {
        color: #fff;
        text-align: center;
        margin-bottom: 50px;
    }

    .home-project-list-item {
        width: 100%;
        height: 380px;
        position: relative;
        border-radius: 12px;
        overflow: hidden;
    }

    .home-project-list-item-image img {
        width: 100%;
    }

    .home-project-list-item:hover .home-project-list-item-image img {
        transform: scale(1.1);
        transition: all .5s ease;
        transition-delay: 0.1s;
    }

    .home-project-list-item-mask {
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 380px;
        z-index: 2;
        background: linear-gradient(to top, #000000db, #00000000);
        display: none;
    }

    .home-project-list-item:hover .home-project-list-item-mask {
        display: block;
        transition: all .5s ease;
    }

    .home-project-list-item-text {
        position: absolute;
        left: 20px;
        bottom: 40px;
        z-index: 3;
        color: #fff;
    }

    .home-project-list-item-btn {
        margin-top: 20px;
    }

    /* 首页项目 */




    /* 首页新闻 */
    .home-news-box {
        margin-top: 50px;
    }

    .home-news-box-item {
        position: relative;
        border-radius: 12px;
        overflow: hidden;
        background-color: #43913d;
    }

    .home-news-box-item-image {
        width: 100%;
        height: 300px;
        object-fit: cover;
        overflow: hidden;
    }

    .home-news-box-item-image img {
        width: 100%;
    }

    .home-news-box-item-text {
        padding: 20px;
        color: #fff;
    }

    .home-news-box-item-text-data {
        display: flex;
        align-items: center;
        gap: 20px;
        font-size: 0.8rem;
        font-family: 'Bahn', sans-serif;
    }

    .home-news-box-item-text-data-category {
        padding: 5px 10px;
        background-color: #ffffffa8;
        border-radius: 15px;
        font-size: 0.8rem;
        font-family: 'Bahn', sans-serif;
        text-transform: uppercase;
        width: 140px;
    }

    .home-news-box-item-text-content {
        margin: 20px 0 10px 0;
    }

    .home-news-box-item-text-content a {
        color: #fff;
        font-family: 'Bahn', sans-serif;
        font-size: 1.2rem;
        word-break: break-all;
        text-decoration: none;
    }

    .home-news-box-item-btn i {
        font-size: 2rem;
        color: #fff;
    }

    .home-news-box-item-btn a:hover {
        text-decoration: none;
    }

    /* 首页新闻 */





    /* 首页留言板 */
    .home-message {
        background-color: #f8f9f8;
    }

    .home-message-image img {
        width: 100%;
        object-fit: cover;
    }

    .home-message-text {
        padding: 30px 0;
    }

    .home-message-form {
        margin-top: 30px;
    }

    .home-message-form input {
        width: 100%;
        border: none;
        background-color: #e1e6e3;
        padding: 10px 20px;
        border-radius: 25px;
        margin-bottom: 30px;
        font-family: 'Abel', sans-serif;
    }

    .home-message-form input:focus {
        outline: none;
        background-color: #43913d;
        color: #fff;
        transition: all .2s ease;
    }

    .home-message-form textarea {
        width: 100%;
        height: 120px;
        border: none;
        background-color: #e1e6e3;
        padding: 10px 20px;
        border-radius: 25px;
        margin-bottom: 30px;
        font-family: 'Abel', sans-serif;
    }

    .home-message-form textarea:focus {
        outline: none;
        background-color: #43913d;
        color: #fff;
        transition: all .2s ease;
    }

    /* 首页留言板 */






    /* 网站底部 */
    .home-partner {
        padding: 30px 0;
    }

    .footer {
        background-color: #43913d;
    }

    .footer-line {
        border-bottom: 1px solid #ffffff54;
        width: 100%;
    }

    .footer-item {
        margin-bottom: 30px;
    }

    .footer-item-img img {
        width: 200px;
    }

    .footer-item-message {
        margin: 30px 0;
    }

    .footer-item-message form {
        display: flex;
        align-items: center;
        gap: 1px;
    }

    .footer-item-message form input {
        border: none;
        background-color: #ffffff;
        padding: 5px 10px;
        width: 50%;
        font-family: 'Abel', sans-serif;
    }

    .footer-item-message form input:focus {
        outline: none;
        background-color: #f8f9f8;
        transition: all .3s ease;
    }

    .footer-item-message form button {
        border: none;
        background-color: #fff;
        font-family: 'Bahn', sans-serif;
        padding: 4.3px;
        width: 10%;
    }

    .footer-item-message form button i {
        color: #43913d;
    }

    .footer-item-qr {
        display: flex;
        gap: 10px;
    }

    .footer-item-qr img {
        width: 100px;
    }

    .footer-item-socail {
        margin-top: 20px;
        display: flex;
        gap: 5px;
        align-items: center;
    }

    .footer-item-socail a {
        text-decoration: none;
    }

    .footer-item-socail i {
        font-size: 1.5rem;
        color: #fff;
    }

    .footer-item-socail a:hover i {
        color: #316c2d;
        transition: all .2s ease;
    }

    .footer-item-title h4 {
        color: #fff;
    }

    .footer-item-list {
        display: flex;
        flex-direction: column;
        margin-top: 35px;
    }

    .footer-item-list a {
        color: #fff;
        text-decoration: none;
        margin-bottom: 10px;
        font-family: 'Abel', sans-serif;
    }

    .footer-item-list h4 {
        color: #fff;
        font-family: 'Bahn', sans-serif;
    }

    .footer-copyright {
        padding: 20px;
        background-color: #316c2d;
        color: #fff;
    }

    .footer-copyright p {
        font-size: 0.8rem;
    }

    /* 网站底部 */







    /* 一级分类页 */
    .page-bg {
        position: relative;
        width: 100%;
        height: 500px;
        overflow: hidden;
    }

    .page-bg-cover {
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 500px;
        overflow: hidden;
        z-index: -2;
    }

    .page-bg-cover img {
        width: 100%;
    }

    .page-bg-mask {
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 500px;
        overflow: hidden;
        z-index: -2;
        background: linear-gradient(to bottom, #316c2d, #2757238d);
    }

    .page-bg-text {
        padding: 250px 0;
        display: flex;
        flex-direction: column;
        align-items: center;
        color: #fff;
    }

    .page-bg-text a {
        color: #fff;
        text-decoration: none;
        font-family: 'Abel', sans-serif;
    }

    .page-bg-text a:hover {
        text-decoration: none;
    }

    .page-bread {
        padding: 10px 0;
        background-color: #fafafa;
    }

    .page-bread-box {
        display: flex;
        gap: 15px;
    }

    .page-bread-box a {
        color: #272727;
        font-family: 'Abel', sans-serif;
        text-decoration: none;
    }

    .page-bread-box a:hover {
        color: #43913d;
        transition: all .2s ease;
    }

    .product-box {
        margin-top: 50px;
    }

    .product-box-item {
        margin-bottom: 20px;
        border-radius: 12px;
        position: relative;
        width: 100%;
        height: 250px;
        overflow: hidden;
    }

    .product-box-bg {
        width: 100%;
        height: 250px;
        overflow: hidden;
        display: flex;
    }

    .product-box-bg img {
        width: 100%;
    }

    .product-box-item:hover .product-box-bg img {
        transform: scale(1.1);
        transition: all .2s ease;
    }

    .product-box-text {
        position: absolute;
        left: 20px;
        bottom: 20px;
        width: calc(100% - 40px);
        margin: 0 auto;
        padding: 20px;
        border-radius: 12px;
        background-color: #fff;
        text-align: center;
        height: 98px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .product-box-item:hover .product-box-text {
        background-color: #43913d;
        transition: all .2s ease;
        color: #fff;
    }

    .product-box-text a {
        color: #272727;
        text-decoration: none;
        font-family: 'Bahn', sans-serif;
        font-size: 1.2rem;
    }

    .product-box-item:hover .product-box-text a {
        color: #fff;
        transition: all .2s ease;
    }

    .product-box-text p {
        font-size: 0.9rem;
    }

    .product-box-contact {
        width: 100%;
        padding: 30px;
        background-color: #43913d;
        border-radius: 12px;
        position: relative;
        margin-top: 80px;
    }

    .product-box-contact:hover {
        background-color: #316c2d;
        transition: all .2s ease;
    }

    .product-box-contact-text {
        margin: 50px 0;
        color: #fff;
    }

    .product-box-contact-img {
        position: absolute;
        right: 0;
        bottom: 0;
        z-index: 2;
        width: 25%;
    }

    .product-box-contact-img img {
        width: 100%;
    }

    .product-box-contact-text-btn {
        margin-top: 40px;
    }

    /* 一级分类页 */






    /* 二级分类页 */
    .pro-category-area {
        margin: 80px 0;
    }

    .pro-category-area-sidebar-item {
        margin-bottom: 20px;
    }

    .pro-category-area-sidebar-item-title {
        padding: 10px;
        background-color: #43913d;
        text-align: center;
    }

    .pro-category-area-sidebar-item-title h4 {
        color: #fff;
        margin-bottom: 0;
    }

    .pro-category-area-sidebar-item-form {
        padding: 20px;
        background-color: #fafafa;
    }

    .pro-category-area-sidebar-item-form input {
        width: 100%;
        padding: 5px 10px;
        border: none;
        margin-bottom: 10px;
        font-size: 0.8rem;
    }

    .pro-category-area-sidebar-item-form input:focus {
        outline: none;
        background-color: #43913d;
        color: #fff;
    }

    .pro-category-area-sidebar-item-form textarea {
        width: 100%;
        height: 100px;
        padding: 5px 10px;
        border: none;
        margin-bottom: 10px;
        font-size: 0.8rem;
    }

    .pro-category-area-sidebar-item-form textarea:focus {
        outline: none;
        background-color: #43913d;
        color: #fff;
    }

    .pro-category-area-sidebar-item-form button {
        border: none;
        padding: 8px 10px;
        background-color: #43913d;
        width: 100%;
        color: #fff;
        font-family: 'Bahn', sans-serif;
    }

    .pro-category-area-sidebar-item-category {
        padding: 20px;
        background-color: #fafafa;
    }

    .pro-category-area-sidebar-item-category h5 {
        color: #43913d;
    }

    .pro-category-area-sidebar-item-category-more p {
        font-size: 1rem;
        color: #43913d;
    }

    .pro-category-area-content-video video {
        width: 100%;
    }

    .pro-category-area-content-text {
        margin-top: 30px;
    }

    .pro-category-area-content-box {
        margin-top: 30px;
    }

    .pro-category-area-content-box-item {
        margin-bottom: 20px;
    }

    .pro-category-area-content-box-item-img {
        width: 100%;
        height: 250px;
        overflow: hidden;
    }

    .pro-category-area-content-box-item-img img {
        width: 100%;
    }

    .pro-category-area-content-box-item:hover .pro-category-area-content-box-item-img img {
        transform: scale(1.1);
        transition: all .2s ease;
    }

    .pro-category-area-content-box-item-text a {
        color: #272727;
        text-decoration: none;
        font-family: 'Bahn', sans-serif;
        font-size: 1.2rem;
    }

    .pro-category-area-content-box-item:hover a {
        color: #43913d;
        transition: all .2s ease;
    }

    .pro-category-area-content-box-item-text-para {
        margin-top: 10px;
    }

    .pro-category-area-content-box-item-text-para p {
        font-size: 1rem;
    }

    /* 二级分类页 */





    /* 产品详情页 */
    .pro-detail-area {
        margin: 80px 0;
    }

    .pro-detail-area-pics .swiper-slide {
        border: 1px solid #ebebeb;
    }

    .pro-detail-area-pics .mySwiper {
        margin-top: 10px;
    }

    .pro-detail-area-pics .swiper-slide img {
        width: 100%;
    }

    .pro-detail-area-info {
        margin-top: 20px;
    }

    .pro-detail-area-info-box {
        margin-top: 20px;
    }

    .pro-detail-area-info-box-list span {
        color: #767676;
        font-family: 'Abel', sans-serif;
    }

    .pro-detail-area-info-social {
        margin: 10px 0;
    }

    .pro-detail-area-info-social a {
        color: #43913d;
        text-decoration: none;
    }

    .pro-detail-area-info-social a:hover {
        color: #ffc500;
        transition: all .2s ease;
    }

    .pro-detail-area-info-social i {
        font-size: 2rem;
    }

    .pro-detail-area-info-btn {
        margin-top: 40px;
    }

    .pro-detail-area-info-btn a {
        padding: 12px 40px;
        background-color: #43913d;
        color: #fff;
        font-family: 'Bahn', sans-serif;
        text-decoration: none;
    }

    .pro-detail-area-info-btn a:hover {
        background-color: #ffc500;
        color: #fff;
        transition: all .2s ease;
    }

    .pro-detail-content {
        margin-bottom: 80px;
    }

    .pro-detail-content-title {
        padding: 10px;
        width: 100%;
        background-color: #43913d;
        text-align: center;
        color: #fff;
    }

    .pro-detail-content-title h2 {
        margin-bottom: 0;
    }

    .pro-detail-content-text {
        padding: 20px;
        background-color: #fafafa;
    }

    .pro-detail-related {
        margin-top: 20px;
    }

    /* 产品详情页 */




    /* 关于我们 */
    .about-area {
        margin: 80px 0;
    }

    .about-area-text h1 {
        color: #43913d;
        text-transform: uppercase;
    }

    .about-area-btn {
        margin-top: 30px;
    }

    .about-area-btn a {
        padding: 10px 35px;
        background-color: #43913d;
        color: #fff;
        font-family: 'Bahn', sans-serif;
        text-decoration: none;
    }

    .about-area-btn a:hover {
        background-color: #ffc500;
        color: #fff;
        transition: all .2s ease;
    }

    .about-area-img-box {
        position: relative;
    }

    .about-area-img-box-csr {
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        z-index: -1;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 50px;
    }

    .about-area-img-box-csr img {
        width: 70%;
        transform: translateY(-50px);
    }

    .about-area-img-box-text {
        background-color: #ffffffad;
        border-radius: 12px;
        box-shadow: 0px 0px 20px 7px #f4f4f4;
        padding: 30px;
        transform: translateY(200px);
        text-align: center;
    }

    .about-area-img-box-text p {
        color: #43913d;
        font-size: 1rem;
    }

    .about-area-img-box-text h4 {
        margin-top: 20px;
        color: #43913d;
    }

    .about-area-value {
        position: relative;
        margin: 80px 0;
        overflow: hidden;
    }

    .about-area-value-bg {
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        z-index: -1;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .about-area-value-bg img {
        width: 100%;
    }

    .about-area-value-box-img {
        padding: 80px 0;
    }

    .about-area-value-box-img img {
        width: 100%;
    }

    .about-area-value-box-list {
        padding: 80px 0;
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .about-area-value-box-text {
        padding: 20px;
        background-color: #ffffff96;
        border-radius: 12px;
        box-shadow: 0px 0px 10px 3px #0000001d;
    }

    .about-area-value-box-text h4 {
        text-transform: uppercase;
        color: #43913d;
    }

    .about-area-value-box-text-more {
        display: flex;
        gap: 10px;
    }

    .about-area-value-box-text-more-line {
        border-left: 2px solid #272727;
        height: 15px;
    }

    .about-area-value-box-text p {
        font-size: 1rem;
    }

    .about-area-adv {
        margin-top: 50px;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-around;
    }

    .about-area-adv-item {
        margin-bottom: 50px;
        width: 30%;
    }

    .about-area-adv-item-title {
        display: flex;
        align-items: center;
        gap: 10px;
        border: 3px solid #43913d;
        border-radius: 15px;
        padding: 10px;
        font-family: 'Bahn', sans-serif;
        font-size: 1.8rem;
        color: #43913d;
    }

    .about-area-adv-item-title-icon {
        width: 50px;
        height: 50px;
        border-radius: 8px;
        background-color: #43913d;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .about-area-adv-item-title-icon i {
        color: #fff;
        font-size: 2rem;
    }

    .about-area-adv-item-text p {
        margin-top: 20px;
        font-size: 1rem;
    }

    .about-area-contact {
        margin-top: -50px;
        margin-bottom: 120px;
    }

    /* 关于我们 */







    /* 客户案例 */
    .case-area-box-item {
        margin-bottom: 50px;
    }

    .case-area-box-item h1 {
        color: #43913d;
    }

    .case-area-box-item-btn {
        margin-top: 30px;
    }

    .case-area-box-item-btn a {
        padding: 15px 35px;
        background-color: #43913d;
        color: #fff;
        font-family: 'Bahn', sans-serif;
        text-decoration: none;
    }

    .case-area-box-item-btn a:hover {
        background-color: #ffc500;
        color: #fff;
        text-decoration: none;
        transition: all .2s ease;
    }

    .case-area-box-item-body {
        margin-top: 30px;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
    }

    .case-area-box-item-body-item {
        width: 31%;
    }

    .case-area-box-item-body-item-img {
        width: 100%;
        height: 220px;
        overflow: hidden;
        display: flex;
    }

    .case-area-box-item-body-item:hover .case-area-box-item-body-item-img img {
        transform: scale(1.1);
        transition: 0.3s ease;
    }

    .case-area-box-item-body-item-img img {
        width: 100%;
    }

    .case-area-box-item-body-item-title {
        margin-top: 15px;
    }

    .case-area-box-item-body-item-title-btn {
        margin-top: 10px;
    }

    .case-area-box-item-body-item-title-btn a {
        color: #43913d;
        text-decoration: none;
    }

    .case-area-box-item-body-item-title-btn a i {
        font-size: 2rem;
    }

    .page-require {
        padding: 50px;
        background-color: #fafafa;
    }

    .page-require-icon {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .page-require-icon i {
        font-size: 5rem;
        color: #43913d;
    }

    .page-require-text {
        color: #43913d;
    }

    .page-require-btn {
        margin-top: 30px;
    }

    .page-require-btn a {
        padding: 15px 35px;
        background-color: #43913d;
        color: #fff;
        font-family: 'Bahn', sans-serif;
        text-decoration: none;
    }

    .page-require-btn a:hover {
        background-color: #ffc500;
        color: #fff;
        transition: 0.3s ease;
    }

    /* 客户案例 */





    /* 案例详情 */
    .case-detail-content-img {
        width: 100%;
        border-radius: 15px;
    }

    .case-detail-content-text {
        margin-top: 30px;
    }

    .case-detail-content-text-body h2 {
        color: #43913d;
    }

    .case-detail-content-text-body-des {
        margin-top: 30px;
    }

    .case-detail-content-text-body-des h4 {
        color: #43913d;
    }

    .case-detail-content-text-body-pics {
        margin-top: 30px;
    }

    .case-detail-content-text-body-pics-item img {
        width: 100%;
    }

    .case-detail-content-text-rigth ul li {
        margin-bottom: 10px;
    }

    .case-detail-content-text-rigth ul li i {
        margin-right: 5px;
        font-size: 1rem;
        color: #43913d;
    }

    .case-detail-sidebar-list .about-area-adv-item-title {
        margin-bottom: 10px;
    }

    .case-detail-sidebar-contact {
        margin-top: 50px;
        position: relative;
        width: 100%;
        overflow: hidden;
        border-radius: 10px;
    }

    .case-detail-sidebar-contact-bg {
        position: absolute;
        left: 0;
        top: 0;
        z-index: -1;
        width: 100%;
        display: flex;
    }

    .case-detail-sidebar-contact-bg img {
        height: 100%;
    }

    .case-detail-sidebar-contact-text {
        padding: 30px 20px;
        color: #fff;
        word-break: break-all;
    }

    .case-detail-sidebar-contact-text-btn {
        margin-top: 30px;
    }

    .case-detail-sidebar-contact-text-btn a {
        padding: 15px 35px;
        background-color: #ffc500;
        color: #fff;
        font-family: 'Bahn', sans-serif;
        text-decoration: none;
    }

    .case-detail-sidebar-contact-text-btn a:hover {
        background-color: #43913d;
        color: #fff;
        transition: 0.3s ease;
    }

    /* 案例详情 */




    /* 新闻资讯 */
    .pro-category-area-sidebar-item-category {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .pro-category-area-sidebar-item-category a {
        font-family: 'Abel', sans-serif;
        color: #272727;
        text-decoration: none;
    }

    .pro-category-area-sidebar-item-category a:hover {
        color: #43913d;
        transition: all .2s ease;
    }

    .article-item {
        margin-bottom: 20px;
        display: flex;
    }

    .article-item:hover {
        box-shadow: 0px 0px 10px 3px #0000000a;
        transition: all .2s ease;
    }

    .article-item-img {
        width: 30%;
    }

    .article-item-img img {
        width: 100%;
    }

    .article-item-title {
        padding: 10px 20px;
        width: 70%;
    }

    .article-item-title-text a {
        color: #272727;
        font-family: 'Bahn', sans-serif;
        text-decoration: none;
        font-size: 1.2rem;
        font-weight: 700;
        line-height: 1.2rem;
    }

    .article-item-title-text a:hover {
        color: #43913d;
        transition: all .2s ease;
    }

    .article-item-author {
        display: flex;
        gap: 20px;
        margin-top: 10px;
    }

    .article-item-title p {
        font-size: 1rem;
    }

    .article-item-btn {
        margin-top: 15px;
    }

    .article-item-btn a {
        padding: 10px 25px;
        background-color: #43913d;
        color: #fff;
        font-family: 'Bahn', sans-serif;
        text-decoration: none;
    }

    .article-item-btn a:hover {
        background-color: #ffc500;
        color: #fff;
        transition: 0.5s;
    }

    .pagination {
        display: flex;
        gap: 10px;
    }

    .pagination a {
        padding: 8px 15px;
        font-family: 'Bahn', sans-serif;
        background-color: #ebebeb;
        color: #43913d;
        border-radius: 3px;
        text-decoration: none;
    }

    .pagination a.active {
        background-color: #43913d;
        color: #fff;
    }

    .article-detail-author {
        margin: 20px 0;
        display: flex;
        gap: 20px;
    }

    .article-detail-img {
        margin-bottom: 20px;
    }

    /* 新闻资讯 */






    /* 联系我们 */
    .contact-area-info-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 10px;
        background-color: #43913d;
        border-radius: 12px;
        padding: 30px 0;
        color: #fff;
    }

    .contact-area-info-item:hover {
        background-color: #316c2d;
        transition: all .2s ease;
    }

    .contact-area-info-item-icon i {
        font-size: 3.5rem;
    }

    .contact-quote {
        padding: 80px 0;
        background-color: #fafafa;
    }

    .contact-quote-title {
        text-align: center;
    }

    .contact-quote-title h1 {
        color: #43913d;
    }

    .contact-quote-form {
        margin-top: 30px;
    }

    .contact-quote-form input {
        padding: 15px 20px;
        margin-bottom: 20px;
        width: 100%;
        border: none;
        border-radius: 5px;
    }

    .contact-quote-form input:focus {
        outline: none;
        background-color: #43913d;
    }

    .contact-quote-form textarea {
        padding: 15px 20px;
        margin-bottom: 20px;
        width: 100%;
        border: none;
        border-radius: 5px;
        height: 150px;
    }

    .contact-quote-form textarea:focus {
        outline: none;
        background-color: #43913d;
        color: #fff;
    }

    .contact-quote-form button {
        padding: 10px 25px;
        background-color: #43913d;
        color: #fff;
        font-family: 'Bahn', sans-serif;
        text-decoration: none;
        border: none;
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .contact-quote-form button:hover {
        background-color: #ffc500;
        color: #fff;
        transition: 0.5s;
    }

    .contact-map img {
        width: 100%;
    }

    /* 联系我们 */
}