/* 引入字体 */
@font-face {
    font-family: 'Nunito Sans';
    src: url('../font/NunitoSans-VariableFont_YTLC,opsz,wdth,wght.ttf');
}

/* 全局样式 */
* {
    font-family: 'Nunito Sans', '微软雅黑';
    color: #000000;
    font-size: 17px;
    font-weight: 400;
}

body {}

ul,
li {
    list-style: none;
    padding: 0;
    margin: 0;
}

a:hover {
    text-decoration: none;
}

h2,
h3,
h4 {
    margin: 0;
}

.container {
    font-size: 17px;
}
.footerNav{
    display: none;
    background-color: #fff;
    position: fixed;
    left: 0;
    bottom: 0;
    z-index: 200;
    width: 100%;
}
.footerNav .item{
    padding: 10px 0;
    flex: 1;
}
.footerNav .link1{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.footerNav .link1 img{
    width: 15px;
    height: 15px;
}
.footerNav .link1 p{
    margin: 0;
    padding-top: 5px;
    font-size: 12px;
    text-transform: uppercase;
    line-height: 12px;
}
.footerNav .link2{
    display: flex;
    justify-content: center;
    align-items: center;
}
.footerNav .link2 img{
    margin-top: -20px;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: solid 2px #fff;
}
.footerMsg{
    display: none;
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    z-index: 300;
    background-color: #fff;
}
.footerMsg .captchaGroup{
    display: flex;
}
.footerMsg .captchaGroup img{
    height: 40px;
}
.footerMsg .top{
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #537f53;
    padding: 10px 15px;
}
.footerMsg .top div{
    color: #fff;
}
.footerMsg .closeBtn{
    font-size: 20px;
}
.footerMsg .msgBox{
    padding: 15px 10px;
}
.footerMsg .msgBox .text{
        margin-bottom: 10px;
}
.footerMsg .form .item{
    margin-bottom: 15px;
}
.footerMsg .form .item input{
    width: 100%;
    border: 1px solid #e5e5e5;
    background: none;
    line-height: 38px;
    height: 40px;
    box-shadow: none;
    padding-right: 45px;
    border-radius: 0;
    padding-left: 10px;
}
.footerMsg .form textarea{
    height: 100px;
    max-height: 100px;
    max-width: 100%;
    min-width: 100%;
    min-height: 100px;
    padding-top: 10px;
    padding-left: 10px;
}
.footerMsg .main_more{
    position: relative;
    display: inline-block;
    transition: all .5s;
    z-index: 3;
    border-radius: 0;
    background: #537f53;
    border: none;
    border-radius: 0;
}
.footerMsg .main_more input{
    line-height: 40px;
    height: 40px;
    padding: 0 20px;
    background-color: transparent;
    color: #fff;
    border: aliceblue;
}

.header {
    position: fixed;
    left: 0;
    top: 0;
    z-index: 999;
    width: 100%;
    height: 90px;
    padding: 0 5%;
    box-sizing: border-box;
    border-bottom: solid 1px rgba(255, 255, 255, 0.8);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header .container {
    position: relative;
}

.header .logo {
    position: absolute;
    left: -80px;
    top: 50%;
    transform: translateY(-50%);
}

.header .logo img {
    width: 95px;
    height: 50px;
}

.header .right {
    display: flex;
    align-items: center;
    margin-right: -95px;
}

.header .right .menu ul li {
    position: relative;
    display: inline-block;
    margin: 0 20px;
    height: 90px;
    line-height: 90px;
}

.header .right .menu ul li .active {
    color: #537f53 !important;
}

.header .right .menu ul li .link {
    color: #fff;
    font-size: 18px;
    font-weight: bold;
    transition: all 0.3s;
}

.header .right .menu ul li .link::after {
    content: "";
    display: block;
    width: 0;
    height: 2px;
    transform: translateY(-30px);
    background-color: #547f52;
    transition: all 0.3s;
}

.header .right .menu ul li .link:hover {
    color: #547f52;
}

.header .right .menu ul li .link:hover::after {
    width: 100%;
}

.header .right .menu ul li:hover .dropdownMenu {
    display: block;
}

.header .right .menu li .dropdownMenu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;

    overflow: hidden;
    background-color: rgba(255, 255, 255, 1);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
.header .right .menu li .dropdownMenuBox{
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    width: max-content;
    height: 300px;
}

.header .right .menu li .dropdownMenu .dropdownMenuItem {
    display: block;
    width: 240px;
    /*width: 50%;*/
    float: left;
}

.header .right .menu li .dropdownMenu .active_sub {
    color: #537f53 !important;
}

.header .right .menu li .dropdownMenu .dropdownMenuLink {
    display: block;
    height: 50px;
    line-height: 50px;
    padding: 0 20px;
    box-sizing: border-box;
    color: #000;
    font-size: 17px;
    font-weight: 400;
    transition: all 0.3s;
}

.header .right .menu li .dropdownMenu .dropdownMenuLink:hover {
    background-color: #f5f5f5;
    color: #547f52;
}


.header .right .tool {
    display: flex;
    align-items: center;
    margin-left: 20px;
}

.header .right .tool .lang::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    display: block;
    width: 1px;
    height: 20px;
    background-color: #fff;
}

.header .right .tool .lang {
    position: relative;
    margin-right: 35px;
    padding-left: 20px;
}

.header .right .tool .langLink {
    display: flex;
    align-items: center;
}

.header .right .tool .lang img {
    width: 22px;
    height: 22px;
}

.header .right .tool .lang span {
    color: #fff;
    font-size: 18px;
    cursor: pointer;
}

.header .right .tool .btn {
    color: #fff;
    font-size: 17px;
    padding: 5px 20px;
    background-color: #547f52;
    border-radius: 5px;
    transition: all 0.3s;
}

.header .right .tool .btn:hover {
    background-color: #466842;
}

.header .logoImg {
    display: block;
}

.header .logoImgB {
    display: none;
}

.scrolled {
    background-color: #fff;
    border-bottom: solid 1px rgba(0, 0, 0, 0.1);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.scrolled .logoImg {
    display: none;
}

.scrolled .logoImgB {
    display: block;
}

.scrolled .right .menu ul li .link {
    color: #000;
}

.scrolled .right .tool .lang::before {
    background-color: #000;
}

.scrolled .right .tool .lang span {
    color: #000;
    margin-left: 5px;
}

/* 容器宽度自适应 */
.swiper-container {
    width: 100%;
    height: auto;
    /* 高度自适应 */
    /* 或者设置固定高度: height: 400px; */
}

/* 每个slide宽度自适应 */
.swiper-slide {
    width: 100%;
    height: auto;
}

/* 图片样式 */
.swiper-slide img {
    width: 100%;
    height: auto;
    display: block;
}

/* 防止图片加载过程中的布局闪烁 */
.swiper-container.loading {
    height: 0;
    overflow: hidden;
}

.banner {
    margin-top: 90px;
}

.banner .swiper-pagination-bullet {
    border: solid 2px #fff;
    background: transparent;
    width: 12px;
    height: 12px;
    opacity: 1;
}

.banner .swiper-pagination-bullet-active {
    background-color: #fff;
}

.banner .swiper-button-next,
.swiper-button-prev {
    width: 50px;
    height: 50px;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    background-position: center;
    background-size: cover;
}

.banner .swiper-button-prev {
    left: 5%;
    background-image: url(../img/21.png);
}

.banner .swiper-button-prev:hover {
    background-image: url(../img/21b.png);
    background-color: #fff;
}

.banner .swiper-button-next {
    right: 5%;
    background-image: url(../img/22.png);
}

.banner .swiper-button-next:hover {
    background-image: url(../img/22b.png);
    background-color: #fff;
}

.banner .swiper-text {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 60%;
    transform: translate(-50%, -50%);
    font-size: 36px;
    font-weight: bold;
    text-align: center;
}

.banner .swiper-text .title {
    font-size: 60px;
    font-weight: bold;
    color: #fff;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.banner .swiper-text .desc {
    font-size: 32px;
    color: #fff;
    margin-bottom: 20px;
}

.banner .swiper-text .btn {
    display: flex;
    justify-content: center;
}

.banner .swiper-text .btn a {
    display: block;
    padding: 0px 20px;
    line-height: 45px;
    background-color: rgb(84, 127, 82);
    color: #fff;
    font-size: 22px;
    /*font-weight: bold;*/
    border-radius: 5px;
    transition: all 0.3s;
}

.banner .swiper-text .btn a:hover {
    background-color: #466842;
}

.indexTitle {
    font-size: 36px;
    color: #547f52;
    font-weight: bold;
    text-transform: uppercase;
}

.indexA {
    padding-top: 60px;
    margin-bottom: 55px;
}

.indexAContent {
    padding-top: 30px;
    display: flex;
}

.indexAContent.row {
    margin: 0;
}

.indexAContent .left {
    padding: 0 30px 0 0;
}

.indexAContent .indexA-left-a {
    line-height: 30px;
    margin-bottom: 50px;
}

.indexAContent .indexA-left-b {
    display: flex;
    flex-wrap: wrap;
}

.indexAContent .indexA-left-b .item {
    position: relative;
    font-weight: bold;
    font-size: 18px;
    margin-bottom: 30px;
    line-height: 32px;
}

.indexAContent .indexA-left-b .item::before {
    content: "";
    position: absolute;
    left: 0;
    top: 12px;
    display: inline-block;
    width: 8px;
    height: 8px;
    background-color: #547f52;
    border-radius: 50%;
    margin-right: 10px;
}

.indexAContent .right {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    transform: translateX(30px);
}


.indexAContent .right .item {
    display: block;
    position: relative;
    height: 175px;
    border-radius: 10px;
    overflow: hidden;
    margin-left: 20px;
}

.indexAContent .right .item .img {
    width: 100%;
    height: 100%;
}

.indexAContent .right .item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.indexAContent .right .item .bg {
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
    position: absolute;
    left: 0;
    top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
    font-weight: bold;
    transition: all 0.3s;
}

.indexAContent .right .item:hover .bg {
    background-color: rgba(0, 0, 0, 0.6);
}

.indexAContent .right .item .title {
    position: absolute;
    left: 0;
    bottom: 10px;
    width: 100%;
    font-size: 18px;
    line-height: 25px;
    height: 25px;
    padding: 0 15px;
    text-align: center;
    color: #fff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-weight: bold;
}
.indexAContent .right .item .more{
    position: absolute;
    left: 0;
    top: 210%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    width: 100%;
    height: 100%;
    background-color: #547f52;
    transition: all 0.3s;
    padding: 15px;
    box-sizing: box-sizing;
}
.indexAContent .right .item .more-a{
    width: 100%;
    text-align: center;
    font-size: 18px;
        color: #fff;
        font-weight: bold;
}
.indexAContent .right .item .more-b{
    width: 100%;
    font-size: 16px;
    color: #fff;
    margin-top: 5px;
    text-align: center;
}
.indexAContent .right .item .more-b p{
    color: #fff;
}
.indexAContent .right .item .more-b span{
    color: #fff;
}
.indexAContent .right .item .link {
    position: absolute;
    left: 50%;
    top: 200%;
    transform: translate(-50%, -50%);
    line-height: 25px;
    padding: 5px 15px;
    text-align: center;
    width: 80%;
    color: #fff;
    background-color: rgba(0, 0, 0, 0.6);
    border: solid 1px #eee;
    font-size: 14px;
    text-transform: uppercase;
    transition: all 0.3s;

}

.indexAContent .right .item:hover .title {
    display: none;
}
.indexAContent .right .item:hover .more{
    top: 0;
}
.indexAContent .right .item:hover .link {
    top: 50%;
}

.indexB {
    margin-bottom: 50px;
}

.indexB .indexTitle {
    text-align: center;
    margin-bottom: 15px;
}

.indexB-description {
    text-align: center;
    font-size: 18px;
    margin-bottom: 20px;
}

.indexB-content .show {
    display: flex;
}

.indexB-tab {
    display: flex;
    justify-content: center;
    margin-bottom: 24px;
}

.indexB-tab .item {
    padding: 0 20px;
    line-height: 40px;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s;
    color: #000;
}

.indexB-tab .link {
    padding: 0 20px;
    line-height: 40px;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s;
    color: #000;
}

.indexB-tab .active {
    background-color: #547f52;
    color: #fff;
}

.indexB-tab a:hover {
    color: #547f52;
}

.indexB-content-list {
    display: none;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.indexB-content-list .item {
    width: 48%;
    margin-bottom: 20px;
}

.indexB-content-list .item a {
    display: block;
}

.indexB-content-list .item .img {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.indexB-content-list .item .bg {
    position: absolute;
    left: 0;
    top: 200%;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
    font-weight: bold;
    transition: all 0.3s;
}

.indexB-content-list .item .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s;
}

.indexB-content-list .item .title {
    font-size: 18px;
    height: 35px;
    line-height: 35px;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    padding-top: 4px;
}

/* .indexB-content-list .item:hover .bg {
    top: 0;
} */

.indexB-content-list .item:hover img {
    transform: scale(1.1);
}

.indexC {
    background-color: #ececec;
    padding: 70px 0;
}

.indexC .indexTitle {
    margin-bottom: 25px;
}
.indexC-content .col-lg-6{
    padding-left:0px;
}

.indexC .left {
    padding-right: 80px;
}

.indexC-left-a {
    line-height: 30px;
    margin-bottom: 30px;
}

.indexC-left-b {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.indexC-left-b .item .num {
    font-size: 30px;
    color: #537f53;
    font-weight: bold;
    border-bottom: solid 1px #537f53;
}

.indexC-left-b .item .num span {
    font-size: 36px;
    color: #537f53;
    font-weight: bold;
}

.indexC-left-b .item .text {
    font-size: 16px;
    line-height: 28px;
}

.indexC-left-c {
    display: flex;
}

.indexC-left-c a {
    display: block;
    width: 175px;
    height: 40px;
    line-height: 40px;
    background-color: #537f53;
    color: #fff;
    overflow: hidden;
    text-align: center;
}

.indexC-left-c a:hover {
    background-color: #466842;
}

.indexC .right .video {
    position: relative;
    /**height: 395px;**/
    background-color: #fff;
    padding-bottom: 0;
}
.indexC .right .video video{
    display: block;
}


.indexC .right .video .play {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
        z-index: 1;
}

.indexD {
    padding: 60px 0;
}

.indexD .indexTitle {
    text-align: center;
    margin-bottom: 10px;
}

.indexD-desc {
    text-align: center;
    font-size: 18px;
    line-height: 28px;
    margin-bottom: 30px;
}

.indexD-content .item {
    position: relative;
    margin-bottom: 20px;
}

.indexD-content .item a {
    display: block;
    position: relative;
    overflow: hidden;
}

.indexD-content .item .img img {
    width: 100%;
    height: 350px;
    object-fit: cover;
}

.indexD-content .item .bg {
    position: absolute;
    left: 0;
    top: 100%;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    transition: all 0.3s;
}

.indexD-content .item .text {
    position: absolute;
    left: 0%;
    bottom: -70px;
    width: 100%;
    padding: 0 10px;
    box-sizing: border-box;
    transition: all 0.3s;
}

.indexD-content .item .text .title {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #fff;
}

.indexD-content .item .text .desc {
    line-height: 24px;
    color: #fff;
    height: 72px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
    text-overflow: ellipsis;
}

.indexD-content .item a:hover .text {
    bottom: 60px;
}

.indexD-content .item a:hover .text .title {
    color: #537f53;
}

.indexD-content .item a:hover .bg {
    top: 0;
}

.indexE {
    padding: 60px 0;
    background-color: #ececec;
}

.indexE .indexTitle {
    text-align: center;
    margin-bottom: 10px;
}

.indexE-desc {
    text-align: center;
    font-size: 18px;
    line-height: 28px;
    margin-bottom: 30px;
}

/* indexE轮播图样式 */
.indexE-swiper {
    position: relative;
}

.indexE-swiper .news-item {
    display: block;
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s;
}

.indexE-swiper .news-item .img {
    position: relative;
    width: 100%;
    height: 310px;
    overflow: hidden;
}

.indexE-swiper .news-item .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s;
}

.indexE-swiper .news-item .text {
    padding: 30px 25px;
    transition: all 0.3s;
}

.indexE-swiper .news-item .text .title {
    font-size: 20px;
    font-weight: bold;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.4;
    max-height: 2.8em;
    /* 确保两行高度一致 */
}

.indexE-swiper .news-item .text .desc {
    font-size: 17px;
    height: 75px;
    line-height: 25px;
    margin-top: 10px;
    margin-bottom: 10px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
    text-overflow: ellipsis;
}

.indexE-swiper .news-item .text .info {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.indexE-swiper .news-item .text .info .view {
    font-size: 18px;
    color: #fff;
    background-color: #537f53;
    padding: 2px 15px;
}

.indexE-swiper .news-item:hover .img img {
    transform: scale(1.1);
}

.indexE-swiper .news-item:hover .text {
    background-color: #537f53;
}

.indexE-swiper .news-item:hover .text .title {
    color: #fff;
}

.indexE-swiper .news-item:hover .text .desc {
    color: #fff;
}

.indexE-swiper .news-item:hover .text .info .time {
    color: #fff;
}

.indexE-swiper .news-item:hover .text .info .view {
    color: #537f53;
}

.indexE-swiper .indexE-button-next,
.indexE-swiper .indexE-button-prev {
    position: absolute;
    z-index: 10;
    top: 155px;
    width: 50px;
    height: 50px;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    cursor: pointer;
}

.indexE-swiper .indexE-button-next {
    right: 10px;
    background-image: url(../img/next.png);
}


.indexE-swiper .indexE-button-prev {
    left: 10px;
    background-image: url(../img/prev.png);
}

.indexE-swiper .indexE-button-next:hover {
    background-image: url(../img/nextb.png);
}

.indexE-swiper .indexE-button-prev:hover {
    background-image: url(../img/prevb.png);
}

.footer {
    background-color: #2b2b2b;
    padding-top: 50px;
}

.footer-info {
    border-bottom: solid 1px #505050;
    padding-bottom: 70px;
}


.footer-a-logo {
    margin-bottom: 30px;
}

.footer-a-logo img {
    width: 95px;
    height: 50px;
}

.footer-a-text {
    color: #fff;
    line-height: 32px;
    margin-bottom: 20px;
}

.footer-a-link {
    display: flex;
}

.footer-a-link a {
    display: block;
    margin-right: 10px;
}

.footer-a-link a img {
    width: 36px;
    height: 36px;
}



.footer-b {
    color: #fff;
}

.footer-b-title {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #fff;
}
.footer-b-title a {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 20px;
    
    color: #fff;
}

.footer-b-title a:hover {
    color: #537f53;
}

.footer-b-list a {
    color: #fff;
    line-height: 30px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
    max-width: 100%;
    transition: all 0.3s;
}

.footer-b-list a:hover {
    color: #537f53;
}

.footer-b-contact {
    color: #fff;
    line-height: 35px;
}

.footer-b-contact a{
    color: #fff;
    line-height: 35px;
}

.footer-b-contact a:hover{
    color: #537f53;
}

.footer-rights {
    padding: 25px 0;
    color: #fff;
}

.footer-info-r {
    display: flex;
    flex: 1;
    padding-left: 50px;
}

.footer-info-r .footer-b {
    flex: 1;
}

.pageBanner {
    position: relative;
    padding-top: 90px;
}

.pageBanner img {
    display: block;
    width: 100%;
}

.pageBannerTitle {
    position: absolute;
    bottom: 155px;
    left: 50%;
    transform: translate(-50%, 0%);
    color: #fff;
    font-size: 55px;
    text-align: center;
    font-weight: bolder;
}

.position {
    position: absolute;
    left: 50%;
    bottom: 25px;
    transform: translateX(-50%);
    color: #fff;
    /*font-weight: bold;*/
}

.position a {
    color: #fff;
    /*font-weight: bold;*/
}

.news-title {
    font-size: 50px;
    font-weight: bold;
    text-align: center;
    padding: 55px 0;
    text-transform: uppercase;
}

.news-swiper {
    padding-bottom: 60px;
    border-bottom: solid 1px #e1e1e1;
}

.news-swiper .item {
    display: flex;
}

.news-swiper .item .img {
    width: 50%;
    height: 420px;
    overflow: hidden;
}

.news-swiper .item .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-swiper .item .content {
    width: 50%;
    padding-left: 95px;
    box-sizing: border-box;
}

.news-swiper .item .content .time {
    font-weight: bold;
    margin-bottom: 5px;
}

.news-swiper .item .content .title {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 10px;
    /*white-space: nowrap;*/
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
    max-height: 80px;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    max-width: 100%;
}

.news-swiper .item .content .text {
    line-height: 1.5;
    margin-bottom: 80px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
    overflow: hidden;
    text-overflow: ellipsis;
    max-height: 6em;
    /* 确保四行高度一致 */
}

.news-swiper .item .content .more {
    display: flex;
}

.news-swiper .item .content .more a {
    display: block;
    font-weight: bold;
    color: #fff;
    background-color: #547f52;
    padding: 10px 25px;
    transition: all .3s;
}

.news-swiper .item .content .more a:hover {
    background-color: #46603d;
}

.newsSwiper-pagination {
    position: absolute;
    left: 50%;
    bottom: 80px;
    z-index: 10;
    display: flex;
    padding-left: 120px;
}

.newsSwiper-button-prev,
.newsSwiper-button-next {
    width: 51px;
    height: 51px;
    background-size: 100%;
    margin-right: 20px;
    cursor: pointer;
}

.newsSwiper-button-prev {
    left: 0;
    background-image: url('../img/51.png');
}

.newsSwiper-button-next {
    right: 0;
    background-image: url('../img/52.png');
}

.news-list {
    padding: 60px 0;
}

.news-list .item {
    margin-bottom: 60px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.news-list .item a {
    display: block;
}

.news-list .item .img {
    width: 100%;
    height: 265px;
    overflow: hidden;
}

.news-list .item .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.news-list .item .content {
    padding: 30px 35px;
}

.news-list .item .title {
    position: relative;
    font-size: 20px;
    font-weight: bold;
    margin: 10px 0;
    line-height: 32px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipsis;
    max-height: 64px;
    /* 确保两行高度一致 */
}

.news-list .item .content {
    position: relative;
}

.news-list .item .content::before {
    content: "";
    position: absolute;
    left: 0px;
    top: 70px;
    display: block;
    width: 2px;
    height: 28px;
    background: #4f754b;
}

.news-list .item .desc {
    line-height: 1.5;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
    text-overflow: ellipsis;
    max-height: 4.5em;
    /* 确保三行高度一致 */
}

.news-list .item:hover {
    background-color: #4f754b;
}

.news-list .item:hover .img img {
    transform: scale(1.1);
}

.news-list .item:hover .time {
    color: #fff;
}

.news-list .item:hover .desc {
    color: #fff;
}

.news-list .item:hover .title {
    color: #fff;
}

.msg {
    position: relative;
    background-color: #4f754b;
    padding: 55px 0;
    /*box-shadow: inset 5px 10px 10px rgba(0, 0, 0, 0.5);*/
    background-image: url(../img/201.png);
    background-size: cover;
}
/*.msg::after{*/
/*    content:'';*/
/*    position: absolute;*/
/*    left: 0;*/
/*    bottom: 0;*/
/*    width: 100%;*/
/*    height: 20px;*/
/*    box-shadow: inset 5px -5px 10px rgba(0, 0, 0, 0.2);*/
/*}*/

.msg .container {
    width: 1080px;
    margin: 0 auto;
}

.msg .left .title {
    font-size: 36px;
    color: #fff;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 0px;
}

.msg .left .desc {
    color: #fff;
    margin-bottom: 20px;
}

.msg .left .dl {
    margin-bottom: 20px;
}

.msg .left .contact {
    padding-top: 10px;
}

.msg .left .contact .dt {
    color: #fff;
    font-weight: bold;
    margin-bottom: 5px;
}

.msg .left .contact .dd {
    color: #fff;
}
.msg .left .contact .dd a{
    color: #fff;
}
.msg .right {
    padding: 40px 15px 0 60px;
    box-sizing: border-box;
}

.msg .right .form-item {
    margin-bottom: 20px;
}

.msg .right .form-input {
    /**margin-bottom: 20px;**/
}

.msg .right input {
    width: 100%;
    height: 30px;
    line-height: 30px;
}

.msg .right .form-textarea {
    /**margin-bottom: 20px;**/
}

.msg .right textarea {
    width: 100%;
    padding: 5px;
    box-sizing: border-box;
}

.msg .right .code {
    display: flex;
    align-items: center;
}

.msg .right .code .codeText {
    /*width: 100px;*/
    background-color: #ececec;
    padding: 0 10px;
    line-height: 30px;
    color: #989898;
}

.msg .right .code input {
    flex: 1;
    height: 32px;
    line-height: 30px;
    padding: 0 5px;
}

.msg .right .code img {
    width: 100px;
    height: 30px;
}

.msg .right .form-submit {
    display: flex;
    justify-content: flex-end;
}

.msg .right .form-submit input {
    width: 200px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    border: 1px solid #fff;
    background: transparent;
    color: #fff;
    cursor: pointer;
}

.msg .right .form-submit input:hover {
    background-color: #fff;
    color: #4f754b;
}

.newsDetail {
    padding: 50px 0;
}
.newsDetail .left{
    padding-right:65px;
}
.newsDetail .left .title {
    font-size: 24px;
    line-height: 36px;
    font-weight: bold;
    text-align: center;
}

.newsDetail .left .time {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 0;
    border-bottom: solid 1px #e1e1e1;
    margin-bottom: 20px;
}

.newsDetail .left .time span {
    font-size: 14px;
    margin: 0 10px;
}
.richBox *{
    font-size: 18px;
}
.richBox img {
    max-width: 100%;
}

.newsDetail .left .richBox {
    margin-bottom: 55px;
}

.newsDetail .left .richBox a {
    color: #537f53;
    padding: 0 5px;
}

.newsDetail .left .richBox a:hover {
    color: #537f53;
}

.paginationTitle {
    font-weight: bold;
    margin-bottom: 5px;
}

.pagination span {
    display: block;
    font-weight: bold;
}

.pagination a {
    display: block;
    color: #000;
}

.pagination a:hover {
    color: #4f754b;
}

.newsDetail .right {
    display: flex;
    justify-content: flex-end;
    padding-left: 20px;
}

.newsDetail .right .Recommendation {
    width: 300px;
}

.newsDetail .right .recommendationTitle {
    position: relative;
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 40px;
    padding-left: 20px;
}

.newsDetail .right .recommendationTitle::before {
    content: "";
    position: absolute;
    left: 0px;
    top: 50%;
    transform: translateY(-50%);
    display: block;
    width: 2px;
    height: 25px;
    background-color: #537f53;
}

.newsDetail .right .item {
    border-top: solid 1px #e1e1e1;
    padding: 30px 0 40px;
}

.newsDetail .right .item .time {
    margin-bottom: 10px;
}

.newsDetail .right .item .title {
    line-height: 30px;
    font-size: 18px;
}

.newsDetail .right .item:hover * {
    color: #537f53;
}

.companyA {
    padding: 60px 0;
}

.companyA-title {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 20px;
}

.companyA-text p {
    line-height: 30px;
}

.companyA-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.companyB {
    background-color: #ececec;
    padding: 60px 0;
}

.companyB-title {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 30px;
}

.companyBSwiper .item .item-year {
    font-size: 36px;
    font-weight: bold;
    color: #537f53;
    margin-bottom: 20px;
}

.companyBSwiper .item .item-text p {
    line-height: 32px;
    position: relative;
    margin-bottom: 20px;
    padding-left: 20px;
}

.companyBSwiper .item .item-text p::before {
    content: "";
    position: absolute;
    left: 0px;
    top: 10px;
    display: block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #000;
}

.companyB-swiper .swiper-pagination {
    height: 3px;
    width: 100%;
    background-color: #e1e1e1;
}

.companyB-swiper .swiper-pagination-progressbar {
    background-color: #e1e1e1;
}

.companyB-swiper .swiper-scrollbar-drag {
    background-color: #537f53;
}

.companyB-swiper .tips {
    position: relative;
    height: 3px;
    margin-bottom: 30px;
}

.companyB-swiper .companyBSwiper-button-prev,
.companyB-swiper .companyBSwiper-button-next {
    width: 51px;
    height: 51px;
    cursor: pointer;
    margin-right: 15px;
}

.companyB-swiper .companyBSwiper-button-prev {
    background-image: url(../img/51.png);
}

.companyB-swiper .companyBSwiper-button-next {
    background-image: url(../img/52.png);
}

.companyB-swiper .page {
    display: flex;
}

.companyC .container {
    padding: 70px 0;
    border-bottom: solid 1px #e1e1e1;
}

.companyC-title {
    font-size: 32px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 30px;
}

.companyC-swiper {
    padding: 0 50px;
    position: relative;
    margin-bottom: 30px;
}

.companyCSwiper {
    padding: 10px 5px;
}

.companyCSwiper .item {
    box-shadow: 0 0 10px #000;
}

.companyC-swiper .companyCSwiper-button-prev,
.companyC-swiper .companyCSwiper-button-next {
    position: absolute;
    top: 50%;
    z-index: 10;
    transform: translateY(-50%);
    width: 25px;
    height: 35px;
    cursor: pointer;
}

.companyC-swiper .companyCSwiper-button-prev {
    background-image: url(../img/61.png);
    left: 0px;
}

.companyC-swiper .companyCSwiper-button-next {
    background-image: url(../img/62.png);
    right: 0;
}

.companyC-img {
    margin-bottom: 50px;
}

.companyC-img img {
    width: 100%;
}

.companyC-text {
    line-height: 32px;
    text-align: center;
}

.companyD {
    padding: 70px 0 70px 0;
}

.companyD-title {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 45px;
}

.companyD-list .item {
    border: solid 2px #e1e1e1;
    padding: 45px 45px;
    transition: all 0.3s;
}

.companyD-list .item .title {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 20px;
}

.companyD-list .item .desc {
    line-height: 30px;
}

.companyD-list .item:hover {
    box-shadow: 0 0 10px #999;
}

.companyE {
    padding-bottom: 120px;
}

.companyE-title {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 40px;
}

.companyESwiper {
    position: relative;
}

.companyE-list .item .img {
    width: 100%;
    height: 270px;
    margin-bottom: 30px;
    overflow: hidden;
}

.companyE-list .item .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s;
}

.companyE-list .item .title {
    text-align: center;
    font-size: 18px;
    font-weight: bold;
}

.companyE-list .item:hover .img img {
    transform: scale(1.1);
}

.companyE-list .companyESwiper-button-next,
.companyE-list .companyESwiper-button-prev {
    position: absolute;
    z-index: 10;
    top: 115px;
    width: 35px;
    height: 35px;
    background-color: rgba(0, 0, 0, 0.5);
    background-size: cover;
    border-radius: 50%;
    cursor: pointer;
}

.companyE-list .companyESwiper-button-prev {
    left: 10px;
    background-image: url(../img/prev.png);
}

.companyE-list .companyESwiper-button-next {
    right: 10px;
    background-image: url(../img/next.png);
}

.proA {
    padding: 50px 0 70px;
}

.proALeft {
    padding-right: 0px;
}

.proALeft-a {
    box-shadow: 0 0 5px #cdcdcd;
    padding: 25px 15px;
    border-top: solid 2px #537f53;
    margin-bottom: 40px;
}

.proALeft-a .title {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 20px;
}

.proALeft-a .list .item {
    border-bottom: solid 1px #e1e1e1;
}

.proALeft-a .list .itemTitle {
    background-image: url(../img/71.png);
    background-position: right center;
    background-repeat: no-repeat;
    line-height: 40px;
    cursor: pointer;
    font-weight: 600;
}

.proALeft-a .list .active {
    background-image: url(../img/72.png);
    color: #537f53;
}

.proALeft-a .list .itemList {
    /*display: none;*/
    padding-left: 25px;
}

.proALeft-a .list .itemList a {
    display: block;
    line-height: 40px;
    color: #333;
    font-weight: 600;
}

.proALeft-a .list .itemList a:hover {
    color: #537f53;
}

.proALeft-a .list .itemList .active_sub {
    color: #537f53;
}

.proALeft-b {
    box-shadow: 0 0 5px #cdcdcd;
    padding: 20px 15px;
}

.proALeft-b .title {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 20px;
}

.proALeft-b .list .item {
    display: flex;
    border-bottom: solid 1px #e1e1e1;
    padding: 25px 0;
}

.proALeft-b .list .item .itemImg {
    width: 50%;
    height: 110px;
    padding-right: 20px;
    box-sizing: border-box;
}

.proALeft-b .list .item .itemImg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.proALeft-b .list .item .itemText{
    flex: 1;
}

.proALeft-b .list .item .itemTitle {
    margin-bottom: 30px;
}

.proALeft-b .list .item .itemLink a {
    display: block;
    border: solid 1px #e1e1e1;
    font-size: 14px;
    width: 140px;
    line-height: 40px;
    text-align: center;
    color: #333;
    font-weight: bold;
    transition: all 0.3s;
}

.proALeft-b .list .item .itemLink a:hover {
    background-color: #537f53;
    color: #fff;
}
.proARight{
    padding-left:30px;
}
.proARight-title {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 10px;
}

.proARight-desc {
    line-height: 30px;
    margin-bottom: 35px;
}

.proARight-list .item {
    margin-bottom: 35px;
}

.proARight-list .item a {
    display: block;
}

.proARight-list .item .itemImg {
    width: 100%;
    height: 195px;
    overflow: hidden;
}

.proARight-list .item .itemImg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s;
}

.proARight-list .item .itemText .itemTitle {
    font-size: 18px;
    font-weight: bold;
    padding: 15px 0;
}

.proARight-list .item .itemText .itemDesc {
    line-height: 26px;
}

.proARight-list .item:hover .itemImg img {
    transform: scale(1.1);
}

.proARight-list .item:hover .itemText .itemTitle {
    color: #537f53;
}

.proARight-paper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.proARight-paper .link a {
    font-size: 14px;
    color: #000;
    font-weight: bold;
}

.proARight-paper .link a:hover {
    color: #537f53;
}

.proARight-paper .link .disabled span {
    font-size: 14px;
    color: #000;
    font-weight: bold;
}



.proARight-paper .paper {
    display: flex;

}

.proARight-paper .paper span {
    display: block;
    border: solid 2px #537f53;
    width: 30px;
    text-align: center;
    height: 30px;
    line-height: 30px;
    margin: 0 2px;
    font-size: 14px;
    color: #000;
}

.proARight-paper .paper a {
    display: block;
    border: solid 2px #ececec;
    width: 30px;
    text-align: center;
    height: 30px;
    line-height: 30px;
    margin: 0 2px;
    font-size: 14px;
    color: #000;
}

.proARight-paper .paper a:hover {
    border: solid 2px #537f53;
}

.proB {
    padding: 50px 0;
    background-color: #ececec;
}

.proB .dl:nth-child(1) {
    margin-bottom: 25px;
}

.proB .dt {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 10px;
}

.proB .dd {
    line-height: 30px;
}

.proC {
    padding-top: 40px;
    padding-bottom: 30px;
}

.proC-title {
    font-size: 32px;
    color: #537f53;
    font-weight: bold;
    margin-bottom: 25px;
}

.proC .dl {
    margin-bottom: 25px;
}

.proC .dt {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 5px;
}

.proC .dd {
    line-height: 30px;
}

.proDA {
    background-color: #ececec;
    padding-top: 90px;
}

.proDA .container {
    display: flex;
    align-items: center;
    height: 65px;
    font-weight: bold;
}

.proDA .container a {
    /*font-weight: bold;*/
    color: #000;
    padding: 0 5px;
}

.proDA .container a:hover {
    color: #537f53;
}

.proDB {
    padding: 45px 0 65px 0;
}

.proDBInfo {
    padding-left: 30px;
}

.proDBInfo .title {
    font-size: 32px;
    font-weight: bold;
    border-bottom: solid 2px #000;
    margin-bottom: 20px;
    padding-bottom: 5px;
}

.proDBInfo .desc {
    line-height: 30px;
    margin-bottom: 30px;
}

.proDB .container a {
    color: #000;
    /*padding: 0 5px;*/
}

.proDB .container a:hover {
    color: #537f53;
}

.proDBInfo .Features {
    font-size: 30px;
    font-weight: bold;
    margin-bottom: 10px;
}

.proDBInfo .featureList .dl {
    margin-bottom: 15px;
    padding-left: 30px;
}

.proDBInfo .featureList .dt {
    position: relative;
    font-size: 20px;
    font-weight: bold;
}

.proDBInfo .featureList .dt::before {
    content: "";
    position: absolute;
    width: 14px;
    height: 14px;
    background-color: #537f53;
    left: -30px;
    top: 7px;
}

.proDBInfo .featureList .dd {
    line-height: 30px;
    color: #3b3b3b;
}

.proDBInfo .btns {
    padding-left: 30px;
    padding-top: 20px;
}

.proDBInfo .btns a {
    display: block;
    width: 235px;
    line-height: 50px;
    text-align: center;
    background-color: #537f53;
    color: #fff;
    transition: all 0.3s;
    font-weight: bold;
    font-size: 20px;
    padding: 0;
}

.proDBInfo .btns a:hover {
    background-color: #46603d;
}

.proDC {
    position: relative;
    background-color: #4f754b;
    padding: 20px 0 25px 0;
    /*box-shadow: inset 5px 10px 10px rgba(0, 0, 0, 0.5);*/
    background-image: url(../img/201.png);
    background-size: cover;
}
/*.proDC::after{*/
/*    content:'';*/
/*    position: absolute;*/
/*    left: 0;*/
/*    bottom: 0;*/
/*    width: 100%;*/
/*    height: 15px;*/
/*    box-shadow: inset 5px -5px 10px rgba(0, 0, 0, 0.5);*/
/*}*/

.proDC .img {
    display: flex;
    justify-content: center;
}

.proDC .dt {
    font-weight: bold;
    color: #fff;
    font-size: 20px;
    text-align: center;
}

.proDC .dd {
    color: #fff;
    font-size: 16px;
    text-align: center;
}

.proDD {
    padding: 30px 0;
}

.proDD .tab {
    display: flex;
    border-bottom: solid 1px #e1e1e1;
    margin-bottom: 30px;
}

.proDD .tab .tab-item {
    cursor: pointer;
    font-size: 32px;
    margin-right: 100px;
    font-weight: bold;
}

.proDD .tab .active {
    position: relative;
    color: #547f52;
}

.proDD .tab .active::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: #547f52;
    bottom: -1px;
    left: 0;
}

.proDD .tab .tab-item:hover {
    color: #547f52;
}

.proDD .tab .tab-item:last-child {
    margin-right: 0;
}

.proDD .tab-content .tab-content-item {
    display: none;
}

.proDD .tab-content .active {
    display: block;
}

.proDD .container a {
    color: #000;
    padding: 0 5px;
}

.proDD .container a:hover {
    color: #537f53;
}

.proDE {
    padding-bottom: 50px;
}

.proDE .container a {
    color: #000;
    padding: 0 5px;
}

.proDE .container a:hover {
    color: #537f53;
}

.proDE-title {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #547f52;
    text-transform: uppercase;
}

.proDE-desc {
    line-height: 30px;
    margin-bottom: 15px;
}

.proDE-text {
    line-height: 24px;
    font-style: italic;
    margin-bottom: 40px;
}
.proDE-parmas{
    display: flex;
    flex-direction: column;
}
.proDE-parmas .dl {
    display: flex;
    border-bottom: solid 1px #e1e1e1;
   /*width: 100%;*/
}

.proDE-parmas .dt {
    width: 300px;
    font-size: 20px;
    font-weight: bold;
     /*border-bottom: solid 1px #e1e1e1;*/
    padding: 10px 0;
}

.proDE-parmas .dd {
    flex: 1;
    line-height: 24px;
    padding-left: 20px;
    box-sizing: border-box;
     /*border-bottom: solid 1px #e1e1e1;*/
    padding: 10px 10px 10px 0;
}

.proDF {
    padding: 60px 0 5px 0;
    background-color: #ececec;
}

.proDF .container a {
    color: #000;
    padding: 0 5px;
}

.proDF .container a:hover {
    color: #537f53;
}

.proDF-title {
    font-weight: bold;
    font-size: 32px;
    color: #537f53;
    margin-bottom: 20px;
}

.proDF-list .proDF-item {
    margin-bottom: 35px;
}

.proDF-list .proDF-item .img img {
    width: 100%;
    height: auto;
}

.proDF-list .proDF-item:nth-child(odd) .row {
    flex-flow: row-reverse;
}

.proDF-list .proDF-item .text {
    margin-bottom: 50px;
}

.proDF-list .proDF-item .title {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 15px;
}

.proDF-list .proDF-item .desc {
    line-height: 30px;
}

.proDG {
    padding: 40px 0 0px 0;
}

.proDG .container a {
    color: #000;
    padding: 0 5px;
}

.proDG .container a:hover {
    color: #537f53;
}

.proDH {
    padding: 55px 0 55px 0;
    background-color: #242424;
}

.proDH-title {
    font-size: 32px;
    color: #fff;
    font-weight: bold;
    margin-bottom: 20px;
    text-transform: uppercase;
}


.proDH-swiper {
    position: relative;
}

.proDH-swiper .item {
    display: block;
    background-color: #fff;
    overflow: hidden;
    transition: all 0.3s;
}

.proDH-swiper .item .img {
    position: relative;
    width: 100%;
    height: 240px;
    overflow: hidden;
}

.proDH-swiper .item .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s;
}

.proDH-swiper .item .text {
    padding: 20px;
    transition: all 0.3s;
}

.proDH-swiper .item .text .title {
    font-weight: bold;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.4;
    max-height: 2.8em;
    margin-bottom: 10px;
    /* 确保两行高度一致 */
}

.proDH-swiper .item:hover .img img {
    transform: scale(1.1);
}

.proDH-swiper .item:hover .text {
    background-color: #537f53;
}

.proDH-swiper .item:hover .text .title {
    color: #fff;
}

.proDH-swiper .item:hover .text .info div {
    color: #fff;
}

.proDH-swiper .proDH-button-next,
.proDH-swiper .proDH-button-prev {
    position: absolute;
    z-index: 10;
    top: 110px;
    width: 35px;
    height: 35px;
    background-color: rgba(0, 0, 0, 0.5);
    background-size: cover;
    border-radius: 50%;
    cursor: pointer;
}

.proDH-swiper .proDH-button-next {
    right: 10px;
    background-image: url(../img/next.png);
}


.proDH-swiper .proDH-button-prev {
    left: 10px;
    background-image: url(../img/prev.png);
}

.proDH-swiper .proDH-button-next:hover {
    background-image: url(../img/nextb.png);
}

.proDH-swiper .proDH-button-prev:hover {
    background-image: url(../img/prevb.png);
}

.proDI {
    padding: 40px 0;
}

.proDI-title {
    font-size: 32px;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.proDI-list .proDI-item {
    border-bottom: solid 1px #e2e2e2;
    padding: 25px 15px;
}

.proDI-item-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.proDI-item-title .text {
    line-height: 25px;
    font-weight: bold;
}

.proDI-item-title .icon {
    width: 25px;
    height: 25px;
    background-image: url(../img/71.png);
    background-position: center;
    background-repeat: no-repeat;
}

.proDI-item-desc {
    display: none;
    padding-top: 15px;
}

.proDI-item-title.active .text {
    color: #537f53;
}

.proDI-item-title.active .icon {
    background-image: url(../img/72.png);
}

.faqs {
    padding-top: 70px;
}

.faqsBox {
    margin-bottom: 70px;
}

.faqsBox .title {
    position: relative;
    font-size: 30px;
    font-weight: bold;
    margin-bottom: 40px;
}

.faqsBox .title::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 135px;
    height: 2px;
    background-color: #547f52;
}

.gallery {
    padding: 0px 0 50px 0;
}

.gallery .tab {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
    border-bottom: solid 1px #e6e6e6;
}

.gallery .tab a {
    display: block;
    font-size: 26px;
    font-weight: bold;
    color: #000;
    margin: 0 50px;
    line-height: 80px;
}

.gallery .tab a.active {
    position: relative;
    color: #547f52;
}

.gallery .tab a.active::after {
    content: "";
    position: absolute;
    bottom: 0px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #547f52;
}
.galleryBox-item{
    display: none;
}
.galleryList .item {
    margin-bottom: 40px;
}

.galleryList .item .title {
    text-align: center;
    padding-top: 10px;
}

.galleryList .item .img {
    width: 100%;
    height: 295px;
    overflow: hidden;
}

.galleryList .item .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s;
}

.galleryList .item:hover .img img {
    transform: scale(1.1);
}

.solution {
    padding: 55px 0 90px 0;
}

.solution-title {
    font-size: 50px;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 10px;
    text-align: center;
}

.solution-desc {
    line-height: 30px;
    margin-bottom: 50px;
}

.solution-list {
    margin-bottom: 40px;
}

.solution-list .item {
    /* line-height: 140px; */
    background-color: #537f53;
    color: #fff;
    text-align: center;
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 40px;
    border-radius: 10px;
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 10px;
}

.solution-info .item:nth-child(odd) .row {
    flex-flow: row-reverse;
}

.solution-info .item .img {
    width: 100%;
    overflow: hidden;
}

.solution-info .item img {
    display: block;
    width: 100%;
    transition: all 0.3s;
}

.solution-info .item .img:hover img {
    transform: scale(1.1);
}

.solution-info .item .text {
    padding: 50px 30px;
}

.solution-info .item .title {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 15px;
}

.solution-info .item .desc {
    line-height: 30px;
}

.solution-info .item:nth-child(odd) .text {
    padding: 50px 30px 50px 0;
}

.video {
    padding-bottom: 65px;
}

.video .menuLink {
    display: flex;
    justify-content: center;
    border-bottom: solid 1px #e6e6e6;
    width: 100%;
}

.video .menuLink a {
    position: relative;
    display: block;
    line-height: 80px;
    font-weight: bold;
    color: #000;
    margin-right: 80px;
    font-size: 26px;
}

.video .menuLink a:hover {
    color: #547f52;
}

.video .menuLink .active::after {
    content: "";
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #547f52;
}

.video .menuLink .active {
    color: #547f52;
}
.menuLinkBox .menuLinkBox-item{
    display: none;
}

.video-title {
    padding: 50px 0;
    font-size: 50px;
    font-weight: bold;
    text-transform: uppercase;
    text-align: center;
}

.video-recommend .img {
    position: relative;
    width: 100%;
    height: 455px;
    cursor: pointer;
}

.video-recommend .img .bg {
    width: 100%;
    height: 100%;
}

.video-recommend .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-recommend .img .play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    cursor: pointer;
}

.video-recommend .title {
    font-size: 20px;
    font-weight: bold;
    text-align: center;
    padding: 25px 0;
}

.video-list .item {
    margin-bottom: 30px;
}

.video-list .item .img {
    position: relative;
    cursor: pointer;
}

.video-list .item .img .bg {
    width: 100%;
    height: 255px;
}

.video-list .item .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-list .item .img .play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    cursor: pointer;
}


.video-list .item .title {
    font-size: 18px;
    font-weight: bold;
    padding-top: 15px;
    line-height: 30px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.team {
    padding-top: 60px;
}

.team .title {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 10px;
}

.team .desc {
    line-height: 32px;
    padding-right: 50%;
    margin-bottom: 15px;
}

.team .imgList {
    margin-bottom: 40px;
}

.team .imgList .imgItem {
    width: 100%;
    height: 265px;
    margin-bottom: 35px;
    border-radius: 5px;
    overflow: hidden;
}

.team .imgList .imgItem img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.Exhibition-title {
    position: relative;
    font-size: 36px;
    font-weight: bold;
    border-bottom: solid 1px #6d6d6d;
    margin-bottom: 40px;
}

.Exhibition-title::after {
    content: "";
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 25%;
    height: 1px;
    background-color: #547f52;
}

.Exhibition-list .Exhibition-item {
    margin-bottom: 35px;
}

.Exhibition-list .Exhibition-item-img {
    width: 100%;
    height: 310px;
}

.Exhibition-list .Exhibition-item-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.Exhibition-list .Exhibition-item-title {
    font-size: 18px;
    font-weight: bold;
    text-align: center;
    padding-top: 15px;
}

.why {
    padding: 50px 0 0 0;
}

.why-title {
    font-size: 50px;
    text-align: center;
    font-weight: bold;
    margin-bottom: 20px;
}

.why-text {
    line-height: 32px;
    margin-bottom: 30px;
}

.why-img {
    margin-bottom: 90px;
}

.why-img .why-img-item {
    width: 100%;
    height: 330px;
    overflow: hidden;
}

.why-img .why-img-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s;
}

.why-img .why-img-item:hover img {
    transform: scale(1.1);
}

.why-list .why-list-item {
    display: flex;
    margin-bottom: 60px;
}

.why-list .why-list-item .img {
    width: 70px;
}

.why-list .why-list-item .dl {
    flex: 1;
    padding-left: 30px;
    box-sizing: border-box;
}

.why-list .why-list-item .dt {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 10px;
}

.why-list .why-list-item .dd {
    line-height: 28px;
}

.contact {
    padding: 50px 0 0 0;
}

.contactA {
    background-color: #ececec;
    padding: 45px 50px;
    margin-bottom: 100px;
}

.contactA .left {
    padding-right: 90px;
    box-sizing: border-box;
}

.contactA .left .title {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 10px;
}

.contactA .left .desc {
    line-height: 30px;
    margin-bottom: 40px;
}

.contactA .left .infoTitle {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 20px;
}

.contactA .left .dl {
    margin-bottom: 15px;
    padding-left: 30px;
    background-repeat: no-repeat;
    background-position: left 2px;
}

.contactA .left .dd a {
    color: #000;
}

.contactA .left .dd a:hover {
    color: #4f754b;
}

.contactA .left .info .i1 {
    background-image: url(../img/101.png);
}

.contactA .left .info .i2 {
    background-image: url(../img/102.png);
}

.contactA .left .info .i3 {
    background-image: url(../img/103.png);
}

.contactA .left .dt {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 5px;
}

.contactA .right .tips {
    line-height: 30px;
    margin-bottom: 25px;
}

.formBox .form-item {
    margin-bottom: 10px;
}

.formBox input {
    width: 100%;
    background-color: #dadfda;
    line-height: 45px;
    height: 45px;
    padding: 0 10px;
    box-sizing: border-box;
    border: none;
    /**margin-bottom: 10px;**/
}

.formBox .Upload {
    width: 100%;
    background-color: #dadfda;
    line-height: 45px;
    height: 45px;
    box-sizing: border-box;
    border: none;
    margin-bottom: 10px;
}

.formBox textarea {
    width: 100%;
    background-color: #dadfda;
    height: 130px;
    padding: 10px;
    box-sizing: border-box;
    border: none;
    /**margin-bottom: 10px;**/
}

.formBox button {
    width: 100%;
    background-color: #547f52;
    height: 45px;
    color: #fff;
    font-size: 16px;
    border: none;
    cursor: pointer;
    font-weight: bold;
}

.formBox button:hover {
    background-color: #466541;
    color: #fff;
}

/* 文件上传样式 */
.file-upload {
    display: none;
}

.file-upload-button {
    width: 100%;
    display: inline-block;
    border-radius: 4px;
    cursor: pointer;
    padding: 0 15px;
    transition: background-color 0.3s;
}

.file-list {
    margin-top: 10px;
    margin-bottom: 10px;
}

.file-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid #eee;
}

.file-item:last-child {
    border-bottom: none;
}

.file-name {
    flex-grow: 1;
    margin-right: 10px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.file-size {
    color: #666;
    font-size: 12px;
    margin-right: 10px;
}

.file-remove {
    color: #dc3545;
    cursor: pointer;
}

.file-remove:hover {
    text-decoration: underline;
}

.contarctB {
    padding-bottom: 100px;
}

.contarctB .left .img {
    width: 100%;
    height: 455px;
}

.contarctB .left .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contarctB .right .title {
    font-size: 32px;
    font-weight: bold;
    line-height: 45px;
    margin-bottom: 10px;
}

.contarctB .right .desc {
    line-height: 30px;
    margin-bottom: 40px;
}

.contarctB .right .dl {
    margin-bottom: 20px;
}

.contarctB .right .dt {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 5px;
    padding-left: 20px;
    position: relative;
}

.contarctB .right .dt::before {
    content: '';
    width: 8px;
    height: 8px;
    background-color: #547f52;
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%)
}

.mHeaderFixedMenu {
    position: fixed;
    left: -100%;
    top: 0px;
    width: 280px;
    height: 100%;
    background-color: #fafafa;
    padding: 20px;
    z-index: 950;
    transition: all 0.5s ease-in-out;
}

.mHeaderFixedMenu.show {
    left: 0;
}

.mHeaderFixedMenu .item {
    border-bottom: solid 1px rgba(0, 0, 0, 0.1);
}

.mHeaderFixedMenu .closeBtn {
    font-size: 30px;
    cursor: pointer;
    color: #000;
}

.mHeaderFixedMenu .itemF {
    display: flex;
    justify-content: space-between;
    align-items: center;
    line-height: 50px;
    color: #000;
    font-size: 16px;
    border-bottom: solid 1px rgba(255, 255, 255, 0.5);
}

.mHeaderFixedMenu .itemF a {
    display: block;
    line-height: 50px;
    color: #000;
    font-size: 16px;
}
.mHeaderFixedMenu .itemF span{
    font-size: 16px;
}

.mHeaderFixedMenu .item i {
    position: relative;
    display: block;
    width: 12px;
    height: 12px;
    margin-right: 5px;
}

.mHeaderFixedMenu .item i::after {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    display: block;
    background-color: #000;
    width: 12px;
    height: 2px;
}

.mHeaderFixedMenu .item i::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%) rotate(90deg);
    display: block;
    background-color: #000;
    width: 12px;
    height: 2px;
    transition: all 0.3s ease-in-out;
}

.mHeaderFixedMenu .itemF.on i::before {
    transform: translateY(-50%) rotate(0deg);
}

.mHeaderFixedMenu .itemS_Btn.on i::before {
    transform: translateY(-50%) rotate(0deg);
}

.mHeaderFixedMenu .itemS {
    display: none;
    color: #000;
    font-size: 14px;
    line-height: 40px;
    padding-left: 15px;
}

.mHeaderFixedMenu .itemS a {
    display: block;
    line-height: 40px;
    color: #000;
    font-size: 14px;
    border-bottom: solid 1px rgba(255, 255, 255, 0.5);
}

.mHeaderFixedMenu .itemS .itemS_Btn {
    display: flex;
    justify-content: space-between;
    align-items: center;
    line-height: 40px;
    color: #000;
    font-size: 14px;
    border-bottom: solid 1px rgba(255, 255, 255, 0.5);
}

.mHeaderFixedMenu .itemT {
    display: none;
    color: #000;
    font-size: 12px;
    line-height: 40px;
    padding-left: 15px;
}

.mHeaderFixedMenu .itemT a {
    display: block;
    line-height: 40px;
    color: #000;
    font-size: 12px;
    border-bottom: solid 1px rgba(255, 255, 255, 0.5);
}

.mNav {
    display: none;
}

.mNav .toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 40px;
    height: 40px;
    cursor: pointer;
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    text-indent: -9999em;
    line-height: 24px;
    font-size: 1px;
    background: #537f53;
}

.mNav .toggle span {
    display: block;
    width: 28px;
    background: #fff;
    transition: all .1s ease;
    height: 2px;
}

.mNav .toggle span:nth-child(2) {
    margin: 8px 0;
}

.mNav .active span:nth-child(1) {
    transform: translateY(10px) rotate(-45deg);
}

.mNav .active span:nth-child(2) {
    opacity: 0;
}

.mNav .active span:nth-child(3) {
    transform: translateY(-10px) rotate(45deg);
}

.tab-content-item img {
    display: block;
    width: 100%;
}

.rightBar {
    z-index: 99999;
    position: fixed;
    right: 0;
    top: 30%;
    width: 50px;
    margin-top: -90px;
    opacity: 0;
    transition: all .4s;
    transform: translateX(95px);
    -webkit-transform: translateX(95px);
    -moz-transform: translateX(95px);
}

.rightBar .item-list {
    border-radius: 20px 0 0 20px;
    overflow: hidden;
}

.rightBar:hover .rightBarDetail {
    left: -200px;
}

.rightBar.show {
    transform: none;
    opacity: 1;
}

.rightBarDetail {
    position: absolute;
    left: 50px;
    top: 0;
    width: 250px;
    padding-right: 50px;
    background: #537f53;
    padding-bottom: 30px;
    overflow: hidden;
    line-height: 50px;
    text-align: center;
    transition: all .4s;
    -webkit-transition: all .4s;
    -moz-transition: all .4s;
    border-radius: 30px 0 0 30px;
}

.rightBarDetail a {
    display: block;
    border-bottom: solid 1px rgba(255, 255, 255, 0.3);
    color: #fff;
}

.rightBarDetail a:last-child {
    border-bottom: none;
}

.rightBarDetail p {
    color: #fff;
}

.rightBarDetail img {
    width: 100px;
    height: 100px;
}

.rightBar li {
    position: relative;
    height: 50px;
    background: #537f53;
    overflow: hidden;
    transition: all .4s;
    list-style: none;
}

.rightBar li div {
    position: relative;
    z-index: 1000;
    display: block;
}

.rightBar li i {
    z-index: 1000;
    position: absolute;
    right: 0;
    display: block;
    width: 50px;
    height: 50px;
    transition: all .4s;
    background-color: #537f53;
    background-repeat: no-repeat;
    background-position: center center;
}

.rightBar .online_p i {
    background-image: url(../img/right_p.png);
}

.rightBar .online_e i {
    background-image: url(../img/right_e.png);
}

.rightBar .online_w i {
    background-image: url(../img/right_w.png);
}

.rightBar .online_s i {
    background-image: url(../img/right_s.png);
}

.rightBar .online_code i {
    background-image: url(../img/right_code.png);
}

.rightBar li a {
    position: absolute;
    top: 0;
    right: 0px;
    display: block;
    width: 190px;
    line-height: 110%;
    padding: 20px 0 0 30px;
    color: #fff;
    background: #537f53;
    white-space: nowrap;
    transition: all .4s;
    font-size: 14px;
    font-weight: normal;
    text-align: right;
}

.rightBar:hover a {
    background-color: #537f53;
    right: 0;
}

.backTop {
    width: 48px;
    height: 48px;
    text-align: center;
    position: fixed;
    right: 5px;
    bottom: 100px;
    z-index: 99999999;
    display: none;
    background: #537f53;
    background-size: cover;
    -moz-transition: all 0.5s;
    -o-transition: all 0.5s;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.1);
    background-image: url(../img/110.png);
    background-position: center;
    cursor: pointer;
}

.backTop:hover {
    background-color: #000;
}

.contactA .right .code {
    display: flex;
    align-items: center;
    background-color: #dadfda;
    margin-bottom: 20px;
}

.contactA .right .code .codeText {
    width: 100px;
    background-color: #dadfda;
    padding: 0 10px;
    line-height: 30px;
    color: #989898;
}

.contactA .right .code input {
    flex: 1;
    height: 32px;
    line-height: 30px;
    padding: 0 5px;
    margin-bottom: 0;
}

.contactA .right .code img {
    width: 100px;
    height: 30px;
}

@media (max-width: 1600px) {
    .header .right .menu ul li {
        margin: 0 10px;
    }

    .header .right .menu ul li .link {
        font-size: 16px;
    }


    .banner .swiper-text .title {
        font-size: 40px;
    }

    .banner .swiper-text .desc {
        font-size: 18px;
    }

    .solution-info .item:nth-child(odd) .text {
        padding: 10px 20px 10px 0;
    }

    .solution-info .item .text {
        padding: 10px 20px;
    }

    .msg .container {
        width: 1140px;
    }
    .footer-a {
        width: 100%;
        max-width: 100%;
    }
      .footer-info {
        flex-direction: column;
        padding: 0 0 0px 0;
    }

    .footer-info-r {
        padding: 40px 0 0 0;
    }
    .indexAContent .indexA-left-a{
       margin-bottom:20px;
    }
    .indexAContent .indexA-left-b .item{
        margin-bottom: 15px;
        font-size: 14px;
        line-height: normal;
    }
    .indexAContent .indexA-left-b .item::before{
        top: 6px;
    }
    .indexB-tab .item{
        font-size: 14px;
    }
    .indexB-tab .link{
        font-size: 14px;
    }
    .indexB-content-list .item .img{
        height: 234px;
    }
    .indexD-content .item .img img{
        height: 270px;
    }
    .indexE-swiper .news-item .img{
        height: 240px;
    }
    .indexC-left-a{
        height: 120px;
        overflow: hidden;
    }
    .proARight-list .item .itemImg{
        height: 150px;
    }
    .proALeft-b .list .item .itemImg{
        height: 64px;
    }
    .proDBInfo .title{
        font-size: 22px;
    }
    .proDBInfo .desc{
        margin-bottom: 15px;
    }
    .proDBInfo .Features{
        font-size: 22px;
    }
    .proDBInfo .featureList .dt{
        font-size: 18px;
    }
    .proDBInfo .featureList .dt::before{
        top: 5px;
    }
    .proDH-swiper .item .img{
        height: 186px;
    }

@media (max-width: 1200px) {
    .mNav {
        display: block;
    }

    .header .container {
        justify-content: flex-end !important;
    }

    .header .logo {
        left: 0;
    }

    .header .right {
        display: none;
    }

    .banner .swiper-text .title {
        font-size: 20px;
    }

    .banner .swiper-text .desc {
        font-size: 14px;
    }

    .banner .swiper-text .btn a {
        font-size: 14px;
    }

    .indexAContent .right .item {
        margin-bottom: 20px;
    }

    .indexC-left-b .item .num span {
        font-size: 24px;
    }

    .indexC-left-b .item .num {
        font-size: 24px;
    }

    .indexD-content .item .text .title {
        font-size: 16px;
    }

    .indexTitle {
        font-size: 30px;
    }

    .indexAContent .right {
        transform: translateX(0);
    }

    .indexB-tab {
        flex-wrap: wrap;
        justify-content: flex-start;
    }

    .indexB-tab .item {
        margin-bottom: 10px;
    }

    .pageBannerTitle {
        font-size: 40px;
        bottom: 50%;
        transform: translate(-50%, 50%);
    }

    .companyD-list .item {
        padding: 45px 20px;
        margin-bottom: 20px;
    }

    .companyE-list .item .title {
        margin-bottom: 20px;
    }

    .companyE-list .item .img {
        margin-bottom: 10px;
    }

    .contactA .left {
        padding-right: 15px;
    }

    .contactA .left .title {
        font-size: 20px;
    }

    .contarctB .right .title {
        font-size: 20px;
        line-height: 35px;
    }

    .contactA {
        margin-bottom: 30px;
    }

    .contarctB {
        padding-bottom: 50px;
    }

    .msg .right {
        padding-left: 15px;
    }

    .gallery .tab a {
        font-size: 20px;
        margin: 0 25px;
    }

    .news-title {
        padding: 25px 0;
        font-size: 30px;
    }

    .news-swiper .item .content .title {
        font-size: 20px;
    }

    .news-swiper .item .content {
        padding-left: 30px;
    }

    .proALeft {
        padding-right: 0;
    }

    .proB .dt {
        font-size: 22px;
    }

    .proC-title {
        font-size: 22px;
        margin-bottom: 25px;
    }

    .proC .dl {
        margin-bottom: 25px;
    }

    .proC .dt {
        font-size: 16px;
    }

    .proC {
        padding-top: 30px;
    }

    .proDBImg {
        margin-bottom: 20px;
    }

    .proDBInfo .title {
        font-size: 22px;
    }

    .proDBInfo .Features {
        font-size: 22px;
    }

    .proDD .tab .tab-item {
        font-size: 22px;
    }

    .proDE-title {
        font-size: 22px;
    }

    .proDE-parmas .dt {
        font-size: 18px;
    }

    .proDF-title {
        font-size: 22px;
    }

    .proDF-list .proDF-item .title {
        font-size: 16px;
    }

    .proDF-list .proDF-item .desc {
        font-size: 14px;
        line-height: 25px;
    }

    .proDH-title {
        font-size: 22px;
    }

    .proDI {
        padding: 30px 0;
    }

    .proDI-title {
        font-size: 22px;
    }

    .solution-title {
        font-size: 30px;
    }

    .solution-list .item {
        font-size: 18px;
    }

    .solution-info .item .title {
        font-size: 20px;
    }

    .solution-info .item {
        margin-bottom: 10px;
    }

    .solution-info .item .img {
        height: 100%;
    }

    .solution-info .item .img img {
        height: 100%;
    }

    .solution-desc {
        margin-bottom: 20px;
    }

    .solution-list .item {
        margin-bottom: 20px;
    }

    .solution-info .item:nth-child(odd) .row {
        flex-flow: column;
    }

    .solution-info .item .text {
        padding: 10px 0;
    }

    .solution-info .item:nth-child(odd) .text {
        padding: 10px 0;
    }

    .team .desc {
        padding-right: 0;
    }

    .video .menuLink {
        justify-content: space-between;
        flex-wrap: wrap;
        padding: 20px 0;
    }

    .video .menuLink .active::after {
        display: none;
    }

    .video .menuLink a {
        margin-right: 15px;
        line-height: 40px;
    }

    .video-title {
        padding: 25px 0;
        font-size: 30px;
    }

    .video-recommend .img {
        height: 300px;
    }

    .video-list .item .img .bg {
        height: 200px;
    }

    .why-title {
        font-size: 30px;
    }

    .why-img .why-img-item {
        margin-bottom: 15px;
        height: auto;
    }

    .why-img {
        margin-bottom: 20px;
    }
    .newsDetail .left{
        padding-right: 0;
    }
  
}

@media (max-width: 992px) {
    .indexC-left-b .item {
        margin-bottom: 15px;
    }

    .indexC-left-b {
        margin-bottom: 20px;
    }

    .indexC-left-c {
        margin-bottom: 40px;
    }

    .footer-a {
        margin-bottom: 30px;
    }

    .footer-b {
        margin-bottom: 20px;
    }

    .footer-info {
        padding-bottom: 40px;
    }

    .pageBannerTitle {
        font-size: 30px;
    }

    .companyC-title {
        font-size: 26px;
    }

    .companyA {
        padding: 30px 0;
    }

    .companyB {
        padding: 30px 0;
    }

    .companyC .container {
        padding: 30px 0;
    }

    .companyD {
        padding: 30px 0;
    }

    .companyE {
        padding-bottom: 30px;
    }

    .msg .right {
        padding-left: 15px;
    }

    .contact {
        padding: 20px 0 0 0;
        margin-bottom: 20px;
    }

    .contactA {
        padding: 20px;
    }

    .contarctB .left {
        margin-bottom: 20px;
    }

    .contarctB .right .desc {
        margin-bottom: 20px;
    }

    .contarctB .left .img {
        height: auto;
    }

    .faqs {
        padding-top: 35px;
    }

    .faqsBox {
        margin-bottom: 35px;
    }

    .faqsBox .title {
        font-size: 20px;
        margin-bottom: 20px;
    }

    .newsSwiper-pagination {
        padding-left: 30px;
    }

    .recommendation {
        width: 100%;
        margin-top: 40px;
    }

    .newsDetail .right .recommendationTitle {
        margin-bottom: 20px;
    }

    .newsDetail .right .item {
        padding: 15px 0;
    }

    .newsDetail {
        padding: 25px 0;
    }

    .proA {
        padding: 25px 0;
    }

    .proALeft-a {
        margin-bottom: 20px;
    }

    .proALeft-b {
        margin-bottom: 20px;
    }

    .proARight-title {
        font-size: 24px;
    }

    .proDC .item {
        padding: 10px 0;
    }

    .proDD .tab .tab-item {
        font-size: 16px;
    }

    .proDE-parmas .dl {
        width: 100% !important;
        flex-direction: column;
    }

    .proDE-parmas .dt {
        width: 100%;
        margin-bottom: 10px;
    }

    .proDE-parmas .dd {
        width: 100%;
        padding-left: 0;
    }

    .proDF-list .proDF-item {
        padding-bottom: 20px;
        margin-bottom: 0;
    }

    .proDF-list .proDF-item .text {
        margin-bottom: 0;
    }

    .proDG {
        padding-top: 30px;
    }

    .team {
        padding: 30px 0;
    }

    .team .title {
        font-size: 30px;
    }

    .Exhibition-title {
        font-size: 30px;
    }

    .why-title {
        font-size: 22px;
    }

    .footer-info-r {
        flex-wrap: wrap;
    }

    .footer-info-r .footer-b:last-child {
        flex: 100%;
        margin-top: 20px;
    }
    .indexC .right .video{
        height: auto;
    }
}

@media (max-width: 768px) {
    .footer{
        padding-bottom: 55px;
    }
    .footerNav{
        display: flex;
    }
    .rightBar {
        display: none;
    }

    .swiper-button-next,
    .swiper-button-prev {
        display: none;
    }

    .header {
        height: 70px;
    }

    .banner {
        margin-top: 70px;
    }
    .proA .col-md-12{
        padding-right: 15px !important;
    }
    .proDA{
        padding-top: 70px;
    }

    .header .logoImg {
        display: none !important;
    }

    .header .logoImgB {
        display: block !important;
    }

    .indexTitle {
        font-size: 24px;
    }

    * {
        font-size: 16px;
    }

    .indexB-tab .item {
        font-size: 16px;
    }

    .indexB-tab .link {
        font-size: 16px;
    }

    .indexD-desc {
        font-size: 16px;
    }

    .indexD-content .item .img {
        height: 150px;
        margin-bottom: 20px;
    }

    .pageBanner {
        padding-top: 70px;
    }

    .pageBannerTitle {
        font-size: 18px;
    }

    .companyB-swiper .tips {
        margin-bottom: 10px;
    }

    .companyA-title {
        font-size: 24px;
    }

    .companyB-title {
        font-size: 24px;
    }

    .companyC-title {
        font-size: 24px;
    }

    .companyD-title {
        font-size: 24px;
        margin-bottom: 20px;
    }

    .companyE-title {
        font-size: 24px;
        margin-bottom: 20px;
    }
.msg .container{
    width: 100%;
}
    .msg .left .title {
        font-size: 30px;
    }

    .msg .right .form-submit input {
        width: 100%;
    }

    .msg .right .form-submit {
        margin-top: 20px;
    }
    .msg .right .code .codeText{
        display: none;
    }

    .gallery .tab a {
        font-size: 16px;
    }

    .gallery {
        padding: 25px 0;
    }

    .news-swiper .item {
        flex-wrap: wrap;
    }

    .news-swiper .item .img {
        width: 100%;
        height: auto;
        margin-bottom: 15px;
    }

    .news-swiper .item .content {
        width: 100%;
        padding-left: 0;
    }

    .news-swiper .item .content .text {
        margin-bottom: 20px;
    }

    .newsSwiper-pagination {
        display: none;
    }

    .news-swiper {
        padding-bottom: 20px;
    }

    .news-list {
        padding: 30px 0;
    }

    .news-list .item {
        margin-bottom: 20px;
    }

    .newsDetail .left .title {
        font-size: 16px;
    }

    .newsDetail .left .time {
        padding: 10px 0;
    }

    .newsDetail .right .recommendationTitle {
        font-size: 16px;
    }

    .proALeft-a .title {
        font-size: 16px;
        margin-bottom: 10px;
    }

    .proALeft-b .title {
        font-size: 16px;
        margin-bottom: 10px;
    }

    .proARight-list .item .itemText .itemTitle {
        font-size: 16px;
    }

    .tb-pic a {
        height: 300px;
    }

    .proDF-list .proDF-item:nth-child(odd) .row {
        flex-flow: column;
    }

    .proDF-item .img {
        margin-bottom: 20px;
    }

    .proDF-list .proDF-item .text {
        margin-bottom: 10px;
    }

    .proDI-list .proDI-item {
        padding: 15px;
    }

    .team .title {
        font-size: 22px;
    }

    .video-title {
        font-size: 22px;
    }

    .video-recommend .title {
        font-size: 16px;
    }

    .video-recommend .img .play {
        width: 50px;
        height: 50px;
    }
    .banner .swiper-text{
        width: 90%;
    }
    .banner .swiper-text .title {
        font-size: 18px;
        margin-bottom: 10px;
    }
    .banner .swiper-text .btn a{
        line-height: 30px;
    }
    .banner .swiper-pagination-bullet{
        width: 6px;
        height: 6px;
    }
    .indexB-content-list .item .img {
        height: 150px;
    }
    .indexB{
        margin-bottom: 0;
    }
    .indexD-content .item .img img{
        height: 150px;
    }
    .indexD-content .item .text .title{
        margin-bottom:20px;
    }
    .indexD-content .item{
        margin-bottom: 0;
    }
    .indexD{
        padding: 30px 0 0 0;
    }
    .indexE{
        padding: 20px 0;
    }
    .indexE-desc{
        margin-bottom: 15px;
    }
    .proALeft-b{
        display: none;
    }
    .proARight{
        padding-left: 0;
    }
    .proDBInfo .featureList .dt{
        font-size: 16px;
    }
    .proDBInfo{
        padding-left: 0;
    }
    .proDBInfo .btns a{
        font-size: 14px;
        line-height: 35px;
    }
    .proDC .dt{
        font-size: 16px;
    }
    .proDC .dd{
        font-size: 12px;
    }
    .companyE-list .item .img{
        height: 150px;
    }
    .companyE-list .companyESwiper-button-next, .companyE-list .companyESwiper-button-prev{
        top: 60px;
    }
    .solution{
        padding: 20px 0;
    }
    .video .menuLink a{
        width: 50%;
        text-align: center;
        font-size: 16px;
        margin: 0;
        line-height: normal;
    }
    .video .menuLink{
        padding: 10px 0;
    }
    .video-title{
        padding: 15px 0;
        font-size: 16px;
    }
    .gallery .tab a{
        line-height: normal;
        margin-bottom: 10px;
        font-size: 16px;
    }
    .gallery{
        padding: 10px 0 25px 0;
    }
    .indexB-content-list .item .title{
       font-size:14px
    }
    .indexC .left{
        padding: 0 15px;
    }
    .indexC-content .col-lg-6{
        padding-left: 15px;
    }
}

@media (max-width: 576px) {
    * {
        font-size: 14px;
    }

    .indexA {
        padding-top: 30px;
        margin-bottom: 30px;
    }

    .indexTitle {
        font-size: 20px;
    }

    .indexAContent .indexA-left-a {
        margin-bottom: 20px;
    }

    .indexAContent .indexA-left-b .item {
        font-size: 14px;
        margin-bottom: 5px;
    }

    .indexAContent .indexA-left-b {
        margin-bottom: 20px;
    }

    .indexB-description {
        font-size: 14px;
    }

    .indexB-tab .item {
        font-size: 14px;
    }

    

    .indexD-desc {
        font-size: 14px;
    }

    .indexC {
        padding: 35px 0;
    }

    .indexE-desc {
        font-size: 14px;
    }

    .footer-a-text {
        line-height: normal;
    }

    .banner .swiper-text .desc {
        font-size: 12px;
        margin-bottom: 10px;
    }

    .banner .swiper-text .btn a {
        font-size: 12px;
    }

    .position {
        bottom: 5px;
    }

    .pageBannerTitle {
        transform: translate(-50%, 100%);
    }

    .companyBSwiper .item .item-year {
        font-size: 20px;
    }

    .companyBSwiper .item .item-text p {
        margin-bottom: 20px;
    }

    .companyA-title {
        font-size: 20px;
    }

    .companyB-title {
        font-size: 20px;
    }

    .companyC-title {
        font-size: 20px;
    }

    .companyD-title {
        font-size: 20px;
    }

    .companyE-title {
        font-size: 20px;
    }

    .msg .left .title {
        font-size: 20px;
    }

    .faqsBox .title {
        font-size: 16px;
    }

    .gallery .tab {
        flex-wrap: wrap;
        margin-bottom: 10px;
    }


    .gallery .tab a.active::after {
        display: none;
    }

    .newsDetail {
        padding: 25px 10px;
    }

    .newsDetail .right .item .title {
        line-height: normal;
    }

    .proDBInfo .btns {
        padding-top: 0;
        padding-left: 0;
    }

    .proDBInfo .btns a {
        width: 100%;
    }

    .proDB {
        padding: 25px 0;
    }

    .proDD .tab {
        overflow-x: scroll;
        overflow-y: hidden;
    }

    .proDH {
        padding: 25px 0;
    }

    .proDH-title {
        font-size: 18px;
    }

    .proDI-title {
        font-size: 18px;
    }

    .footer-info-r {
        padding: 0;
    }

    .footer-info-r .footer-b {
        flex: 100%;
        margin-top: 20px;
    }

    .footer-info {
        padding-bottom: 0;
    }
}