html.act{overflow: hidden;width: 100%;height: 100vh;}

@media (max-width: 580px) {
    .list-tit {
        font-size: 30px !important;
    }
}
.list-tit {
    position: relative;
    top: 8vh;
    color: #FFFFFF;
    font-size: 40px;
    font-weight: 600;
}
.list-banner {
    width: 100%;
    min-height: 500px;
    z-index: 0;
    background-color: #5555;
    background-image: url("https://picsum.photos/1920/500");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}
.breadcrumb {
    padding: 0;
}

.green_button{
    background-color: #479C37;
    border: solid 1px #479C37;
    padding: 14px 70px;
    margin: 8px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    color: white;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;

}
.green_button:hover {
    background-color: #FFFFFF; /* Green */
    border: solid 1px #479C37;
    color: #479C37;
}
@media (max-width: 992px) {
    .solid-xs {
        border-left: 0;
    }
}
@media (min-width: 992px) {
    .solid-xs {
        border-left: #000 1px solid;
    }
}

/* 企业简介和视频--------------- */
.au1_layout_wra{
    /*width: 100%;*/
    padding-top: 50px;
}
.au1_wrapper{
    position: relative;
}

.wrapper_item_default{

    max-height: 350px;
    min-height: 300px;
    overflow-y: scroll;
}
.wrappre_item_default_video{
    position: absolute;
    bottom:  50%;
    right: -25px;
    width: 50px;
    height: 50px;
    background-color: #fff;
    overflow: hidden;
    cursor: pointer;
    border-radius: 50%;
}
.wrappre_item_default_bg{
    width: 100%;
    height: 100%;
    background-color: #4BAD37;
    display: flex;
    justify-content: center;
    align-items: center;
}
.wrappre_item_default_video .icon{
    display: block;
    width: 29px;
    height: 29px;
    background: url(../img/aboutus/videPlay.png) center no-repeat;
    background-size: 19px 23px;
    margin: 10% auto;
    border-radius: 50%;
}
.wrapper_item_absolute{
    position: absolute;
    background: #fff;
    /*border: 1px solid #b2dba1;*/
    top: 60px;
    z-index: 2;
}
.wrapper_item_left_title{
    font-size: 36px;
    font-weight: 500;
    color: #45AD30;
}
.wrapper_item_right{
    position: relative;
    object-fit: cover;
    height: 500px;
    width:70%;
    left: 25%;
    overflow: hidden;
    margin-bottom: 50px;
}
@media (max-width: 576px) {
    .au1_wrapper{
        margin: 0 auto;
    }
    .wrapper_item_right{
        width: 100%;
        height: auto;
        min-height: 500px;
        left:0
    }
    .wrappre_item_default_video{
        bottom: -25px ;
        right: 50%;
    }

}

.alltime,.alltime *{-webkit-transition: all .4s cubic-bezier(.4,0,.2,1); -moz-transition: all .4s cubic-bezier(.4,0,.2,1); transition: all .4s cubic-bezier(.4,0,.2,1);}

/* 弹窗 */
.z_tanchuang {
    position: fixed;
    display: table;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    transform: scale(0);
    -webkit-transform: scale(0);
    /* 比导航栏高10 */
    z-index: 1040;
}

.z_tanchuang .tbox {
    display: table-cell;
    background: rgba(0, 0, 0, 0.8);
    text-align: center;
    vertical-align: middle;
}

/* 弹窗内容 */
.z_tanchuang .tbox .modal {
    background: white;
    padding: 50px;
    display: block;
    border-radius: 5px;
    position: relative;
    width: 90%;
    max-width: 1200px;
    max-height: 90%;
    margin: 0 auto;
}

.z_tanchuang .tbox .modal .out {
    position: absolute;
    width: 40px;
    height: 40px;
    line-height: 40px;
    background: #fff url(../img/aboutus/out.png) center no-repeat;
    background-size: 20px;
    color: #000;
    font-size: 30px;
    text-align: center;
    border-radius: 50%;
    top: 0;
    right: 5px;
    cursor: pointer;
}

.z_tanchuang .tbox .modal .img {
    width: 100%;
    max-height: 600px;
    margin: 0 auto;
    height: 60vh;
}

.z_tanchuang .tbox .modal .img video {
    display: block;
    width: 100%;
    max-height: 100%;
    object-fit: cover;
}

.z_tanchuang .tbox .modal .img img {
    margin: 0 auto;
}

.z_tanchuang .tbox .modal .out:hover {
    background: #fff url(../img/aboutus/out2.png) center no-repeat;
    background-size: 20px;
    transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
}

.z_tanchuang .tbox .modal2 {
    padding: 20px;
}

.z_tanchuang .tbox .modal .img {
    max-width: 1200px;
}

/* 弹窗选中 */
.z_tanchuang.one {
    transform: scaleY(0.01) scaleX(0);
    animation: unfoldIn 1s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
    -webkit-transform: scaleY(0.01) scaleX(0);
    -webkit-animation: unfoldIn 1s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}

.z_tanchuang.one .tbox .modal {
    transform: scale(0);
    animation: zoomIn 0.5s 0.8s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
    -webkit-transform: scale(0);
    -webkit-animation: zoomIn 0.5s 0.8s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}

.z_tanchuang.one.out {
    transform: scale(1);
    animation: unfoldOut 1s 0.3s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
    -webkit-transform: scale(1);
    -webkit-animation: unfoldOut 1s 0.3s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}

.z_tanchuang.one.out .tbox .modal {
    animation: zoomOut 0.5s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
    -webkit-animation: zoomOut 0.5s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}

/* 弹窗动画 */
@keyframes unfoldIn {
    0% {
        transform: scaleY(0.005) scaleX(0);
    }

    50% {
        transform: scaleY(0.005) scaleX(1);
    }

    100% {
        transform: scaleY(1) scaleX(1);
    }
}

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

    100% {
        transform: scale(1);
    }
}

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

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

@keyframes unfoldOut {
    0% {
        transform: scaleY(1) scaleX(1);
    }

    50% {
        transform: scaleY(0.005) scaleX(1);
    }

    100% {
        transform: scaleY(0.005) scaleX(0);
    }
}

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

    100% {
        transform: scale(1);
    }
}

@-webkit-keyframes zoomOut {
    0% {
        transform: scale(1);
    }

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

@-webkit-keyframes unfoldOut {
    0% {
        transform: scaleY(1) scaleX(1);
    }

    50% {
        transform: scaleY(0.005) scaleX(1);
    }

    100% {
        transform: scaleY(0.005) scaleX(0);
    }
}

@-webkit-keyframes unfoldIn {
    0% {
        transform: scaleY(0.005) scaleX(0);
    }

    50% {
        transform: scaleY(0.005) scaleX(1);
    }

    100% {
        transform: scaleY(1) scaleX(1);
    }
}

.img_tanchuang .tbox .modal,
.img_tanchuang .tbox .modal .img {
    max-width: 1600px;
}

@keyframes big {
    0% {
        transform: scale(1);
        -webkit-transform: scale(1);
        opacity: 1;
    }

    80% {
        opacity: 1;
    }

    100% {
        transform: scale(1.2);
        -webkit-transform: scale(1.2);
        opacity: 0.3;
    }
}

@-webkit-keyframes big {
    0% {
        transform: scale(1);
        -webkit-transform: scale(1);
        opacity: 1;
    }

    80% {
        opacity: 1;
    }

    100% {
        transform: scale(1.2);
        -webkit-transform: scale(1.2);
        opacity: 0.3;
    }
}


/*  计数区域 -左边  */
.au2_layout_container{
    background-color: #F7FCF4;
    width: 100% ;
    padding-top: 100px;
    padding-bottom: 100px;
}
.count_main{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.count_wrapper{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.count_item_left-wrapper{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 72px;
}

.count_item_left-wrapper .left_wrapper{
    width: 100%;
    display: flex;
    /*align-items: center;*/
    /*justify-content: center;*/
}
.left_wrapper .left_icon{
    width: 100%;
    flex:1;
    display: flex;
    justify-content: end;
}
.left_wrapper .left_dsc{
    flex:1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 150px;
    gap: 3px;
}
.left_dsc .left_dsc_bottom{
    /*不换行*/
    white-space: nowrap;
    margin-left: 20px;
}
.left_dsc .left_dsc_title{
    width: 100%;
    display: flex;
    justify-content: center;
    font-size: 36px;
    font-weight: 500;
    color: #45AD30;
    margin-left: 20px;
}
.left_dsc_title .number{
    margin-left: 8px;
    margin-right: 8px;
    display: inline-block;
    min-width: 50px;
    width: auto;
}

/* 计数区域 -右边的图片  */

.count_item_right_grid{
    width: 100%;
    display: grid;
    /* 3列 3行 */
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(3, 1fr);
    grid-template-areas:
    "picture1 picture2 picture2"
    ". picture2 picture2"
    "picture3 . picture4";
}

.count_item_right_grid .pic_item{
    width: 100%;
    /* todo 图片高度是否需要自适应  */
    height: 100%;
    object-fit: cover;
}

/*.picture1 {*/
/*    grid-area: 1 / 1 / 2 / 2;*/
/*}*/
/*.picture2 {*/
/*    grid-area: 1 / 2 / 3 / 4;*/
/*    width: 100%;*/
/*    height: 100%;*/
/*}*/
/*.picture3 {*/
/*    grid-area: 3 / 1 / 4 / 2;*/
/*}*/
/*.picture4 {*/
/*    grid-area: 3 / 3 / 4 / 4;*/
/*}*/

.count_item_right_grid .picture1{
    grid-area: picture1;

}
.count_item_right_grid .picture2{
    grid-area: picture2;
    height: 100%;

}
.count_item_right_grid .picture3{
    grid-area: picture3;
}

.count_item_right_grid .picture4{
    grid-area: picture4;
}

@media (max-width: 576px) {
    .count_wrapper{
        flex-direction: column;
    }
    .count_item_right_grid {
        margin-top: 40px;
    }

    .left_wrapper .left_icon{
        width: 75px;
    }
    .left_wrapper .left_icon img{
        width: 100%;
    }
    .left_dsc .left_dsc_title {
        font-size: 28px;
    }
}

/*  足迹区域 */
.au3_footprint_layout{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.au3_footprint_layout .map_layout{
    max-height: 654px;
    overflow: hidden;
    margin-bottom: 50px;
}
.au3_footprint_layout img{
    width: 100%;
    object-fit: cover;
}
.au3_footprint_layout .title h3{
    color:#45AD30;font-size: 44px;
    margin-bottom: 25px;
}
.au3_footprint_layout .content{font-size: 18px;}
.au3_footprint_layout .content p{margin-bottom: 30px}

.our-certifications .row{
    background: #F7FCF4;
    box-sizing: border-box;
    border: 1px solid #BFBFBF;
    padding: 15px 0;
    margin-bottom: 44px;
    box-sizing: border-box;
}
.our-certifications .h-title{
    color:#45AD30;
    font-size: 44px;
    text-align: center;
    padding: 80px 0;
    font-weight: 500;
}
.our-certifications .col{
    height: 360px;
    position: relative;
    border-right: 1px solid #e6e6e6;
}
.our-certifications .title{
    align-items: center;
    backface-visibility: hidden;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    height: 100%;
    left: 0;
    padding: 35px;
    position: absolute;
    top: 0;
    transition: transform 1s ease;
    width: 100%;
    font-size: 18px;
    color: #45AD30;
    white-space:normal;
    word-break:break-all;
    word-wrap: break-word;
}
.our-certifications .img{
    width: 119px;
    height: 119px;
    margin-bottom: 50px;
}
.our-certifications .content img{
    display: block;
    max-width: 100%;
    max-height: 100%;
}
.our-certifications .content{
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    transform:perspective(600px) rotateY(-180deg);
    backface-visibility: hidden;
    box-sizing: border-box;
    flex-direction: column;
    left: 0;
    padding: 15px;
    position: absolute;
    top: 0;
    transition: transform 1s ease;
}
.our-certifications .col:hover .content{
    transform:perspective(600px) rotateY(0deg);
}
.our-certifications .col:hover .title{
    transform:perspective(600px) rotateY(-180deg);
}
.our-certifications .col.active .title{
    transform:perspective(600px) rotateY(-180deg);
}
.our-certifications .col.active .content{
    transform:perspective(600px) rotateY(0deg);
}

.our-service .title h3{
    font-size: 44px;
    color: #479C37;
    font-weight: 500;
}
.our-service .content{
    padding-top: 40px;
    font-size: 18px;
    color: #479C37;
    margin-bottom: 85px;
}
.our-service .title-h{font-size: 24px;color: #45AD30;font-weight: 500;margin-bottom: 15px;text-align: center }
.our-service .text{font-size: 16px;color: #45AD30;margin-bottom: 45px;}
.our-service .col-margin{padding-left: 50px}

/* 公司简介 */
.selectionbar{
    height: 231px;
    background: #EAEAEA;
    padding-top: 27px;
}
.selectionbar-title{
    /*color: #164A94;*/
    color: var(--title-color);
    font-size: 30px;
    font-weight: bold;
    text-align: center;
}
.selectionbar-corporation{
    height: 80px;
    background: #FFFFFF;
    border-top: 1px solid #164A94;
    margin: 27px auto 0;
}
.corporation-box{
    margin-top: 27px;
    /* margin-left: 73px; */
    display: flex;
    justify-content: space-between;
}
.corporation-box-highlight{
    font-size: 16px;
    font-weight: 400;
    /* margin-right: 82px; */
    color: #164A94;
    width: 16.6666%;
    display: inline-block;
    text-align: center;
}
.corporation-box-title{
    font-size: 16px;
    font-weight: 400;
    width: 16.6666%;
    display: inline-block;
    text-align: center;
    /* margin-right: 82px; */
}

.corporation-article{
    margin: 60px auto 70px;
}
.corporation-article-banner{
    height: 491px;
    background: #D8D8D8;
    width: 100%;
}
.corporation-article-title{
    color: #164A94;
    font-size: 24px;
    font-weight: 500;
    margin-top: 60px;
}
.corporation-article-content{
    margin-top: 20px;
    font-size: 16px;
    line-height: 2;
    text-indent: 2em;
    color:#3D3D3D;
    font-weight: 400;
}

/* 品牌诠释 */
.brand-article-h1Title{
    text-align: center;
    color: #3D3D3D;
    font-weight: 700;
    font-size: 30px;
}
.brand-article-introduce{
    display: flex;
    margin-top: 40px;
    margin-bottom: 70px;
}
.brand-article-introduce-left{
    flex: 1;
    /* margin-right: 56px; */
}
.brand-article-introduce-leftTitle{
    font-size: 24px;
    color:#3D3D3D;
    font-weight: 500;
    margin-bottom: 25px;

}
.brand-article-introduce-leftText{
    font-size: 16px;
    line-height: 2;
    /*text-indent: 2em;*/
    color:#3D3D3D;
}
.brand-article-introduce-right{
    width: 100%;
    height: 480px;
    flex: 1;
}
.brand-article-title{
    color: #164A94;
    font-size: 24px;
    font-weight: 500;
    margin-top: 60px;
}
.brand-article-content{
    margin-top: 15px;
    font-size: 16px;
    line-height: 2;
    /*text-indent: 2em;*/
    color:#3D3D3D;
    font-weight: 400;
}

/* 与我们联系 */
.connection-article-introduce{
    display: flex;
    margin-top: 58px;
    margin-bottom: 60px;
}
.connection-article-introduce-left{
    flex: 1;
    /* margin-right: 53px; */
}
.connection-article-introduce-leftT1{
    /*padding-top: 52px;*/
}
.connection-article-introduce-leftT1Highlight{
    font-size: 24px !important;
    color: #164A94;
    font-weight: 500;
}
.connection-article-introduce-leftT1Text{
    font-size: 16px !important;
    color: #3D3D3D;
    margin-left: 20px;
}
.connection-article-introduce-leftT2{
    font-size: 16px !important;
    margin-top: 16px;
    color: #3D3D3D;
}
.connection-article-introduce-leftT3{
    margin-top: 24px;
}
.connection-article-introduce-right{
    width: 100%;
    height: 391px;
    flex: 1;
}
.connection-article-line{
    background: #D8D8D8;
    height: 1px;
    margin-bottom: 60px;
}
.connection-article-office{
    margin-bottom: 40px;
}
.connection-article-officeName{
    font-size: 24px !important;
    color: #164A94;
    font-weight: 500;
}
.connection-article-officeAddress{
    font-size: 16px !important;
    color: #3D3D3D;
    margin-top: 19px;
}
.connection-article-officePeople{
    font-size: 16px !important;
    color: #3D3D3D;
    margin-top: 5px;
}

/* 发展历程 */
.develop-article{
    /* width: 1200px; */
    margin: 95px auto 79px;
}
.develop-article-text{
    font-size: 18px;
    color: #164A94;
    font-weight: 500;
    margin-top: 40px;
    margin-bottom: 33px;
}
.develop-article-li{
    margin-bottom: 10px;
}
.develop-article-liYearBox{
    text-align: right;
}
.develop-article-liLog{
    background: #164A94;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    margin-bottom: -3px;
    display: inline-block;
}
.develop-article-liYear{
    color: #164A94;
    font-size: 16px;
    margin-left: 10px;
    display: inline-block;
}
.develop-article-liText{
    color: #3D3D3D;
    font-size: 16px;
    /* margin-left: 30px; */
    display: inline-block;
    max-width: 1056px;
}

/* 资质证书 */
.aptitude-article-h1Title{
    margin-top: 70px;
    text-align: center;
    color: #3D3D3D;
    font-weight: 700;
    font-size: 40px;
}
.aptitude-article-flex{
    display: flex;
    flex-wrap: wrap;
    margin-top: 40px;
}

.aptitude-article-flexBox{
    margin-right: 1.25%;
    width: 19%;
}
.aptitude-article-flexPicture{
    width: 100%;
    height: 300px;
    background: #D8D8D8;
}
.aptitude-article-flexText{
    margin-top: 20px;
    text-align: center;
}
.aptitude-article-flexBox:last-child{
    margin-right: 0px;
}

/* 法律声明 */
.law-article-listOne{
    margin-top: 40px;
}
.law-article-list{
    margin-top: 30px;
}
.law-article-listTitle{
    color: #164A94;
    font-size: 16px;
}
.law-article-listText{
    color: #3D3D3D;
    font-size: 16px;
    line-height: 2;
    text-indent: 2em;
    margin-top: 14px;
}

.col-md-8{
    float: none;
}

@media (max-width: 750px) {
    .selectionbar{
        height: 130px;
        padding-top: 12px;
    }
     .selectionbar-title{
        font-size: 20px;
    }
    
    .selectionbar-corporation{
        height: 60px;
        margin: 10px auto 0;
    }
    
    .corporation-box{
        margin-top: 18px;
        margin-left: 0px;
    }
    
    .corporation-article{
        margin: 30px auto 35px;
    }
   .corporation-article-banner{
        height: 241px;
        width: 100%;
    }
     .corporation-article-title{
        font-size: 20px;
        margin-top: 30px;
    }
    .corporation-article-content{
        margin-top: 10px;
        font-size: 16px;
    }
    .corporation-box-highlight,.corporation-box-title{
        font-size: 14px;
        margin-right: 1px;
    }
    .corporation-box-title:last-child{
        margin-right: 0px !important;
    }
    .aptitude-article-flex{
        justify-content: center;
    }
    /* .aptitude-article-flexBox{
        margin-right: 0px;
        margin-bottom: 10px;
    } */
    /* 品牌诠释 */
    .brand-article-h1Title{
        font-size: 30px;
    }
    .brand-article-introduce{
        margin-top: 15px;
        margin-bottom: 15px;
    }
    .brand-article-introduce-left{
        margin-right: 5px;
    }
    .brand-article-introduce-leftTitle{
        font-size: 18px;
        margin-bottom: 10px;
    }
    .brand-article-introduce-leftText{
        font-size: 14px;
    }
    .brand-article-introduce-right{
        width: 200px;
        height: 180px;
    }
    .brand-article-title{
        font-size: 18px;
        margin-top: 10px;
    }
    .brand-article-content{
        margin-top: 5px;
        font-size: 16px;
    } 

    /* 与我们联系 */
    .connection-article-introduce{
        margin-top: 20px;
        margin-bottom: 25px;
    }
    .connection-article-introduce-left{
        margin-right: 0px;
    }
    .connection-article-introduce-right{
        width: 200px;
        height: 200px;
    }
    .connection-article-introduce-leftT1{
        padding-top: 5px;
    }
    .connection-article-introduce-leftT1Highlight{
        font-size: 16px;
    }
    .connection-article-introduce-leftT1Text{
        font-size: 14px;
        margin-left: 0px;
    }
    .connection-article-introduce-leftT2{
        font-size: 12px;
        margin-top: 0px;
    }
    .connection-article-introduce-leftT3{
        margin-top: 5px;
    }
    .connection-article-line{
        height: 1px;
        margin-bottom: 20px;
    }
    .connection-article-office{
        margin-bottom: 10px;
    }
    .connection-article-officeName{
        font-size: 18px;
    }
    .connection-article-officeAddress{
        font-size: 16px;
        margin-top: 5px;
    }
    .connection-article-officePeople{
        font-size: 16px !important;
        margin-top: 5px;
    }
    /* 发展历程 */
    .develop-article{
        margin: 20px auto 35px;
    }
    .develop-article-text{
        font-size: 18px;
        margin-top: 10px;
        margin-bottom: 10px;
    }
    .develop-article-li{
        margin-bottom: 10px;
    }
    .develop-article-liYearBox{
        text-align: left;
    }
    .develop-article-liLog{
        width: 8px;
        height: 8px;
        margin-bottom: 1px;
    }
    .develop-article-liYear{
        font-size: 16px;
        margin-left: 3px;
    }
    .develop-article-liText{
        font-size: 14px;
        margin-left: 6px;
        max-width: 268px;
    }
    /* 资质证书 */
    .aptitude-article-h1Title{
        margin-top: 20px;
        font-size: 20px;
    }
     .aptitude-article-flex{
        margin-top: 10px;
    }
    .aptitude-article-flexText{
        margin-top: 5px;
    }
    .aptitude-article-flexBox{
        margin-right: 1.25%;
        width: 50%;
    }
    /* 法律声明 */
    .law-article-listOne{
        margin-top: 10px;
        margin-left: 5px;
        margin-right: 5px;
    }
    .law-article-list{
        margin-top: 5px;
        margin-left: 5px;
        margin-right: 5px;
    }
    .law-article-listTitle{
        font-size: 16px;
    }
    .law-article-listText{
        font-size: 16px;
        margin-top: 5px;
    }
}
