.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;
    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 {
    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;
    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);
    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;
}

.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;
    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%;
    height: 100%;
    object-fit: cover;
}

.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;
}

.corporation-article {
    margin: 60px auto 70px;
    text-align: center;
}

.corporation-article-banner {
    height: 491px;
    background: #D8D8D8;
    width: 100%;
}

.corporation-article-title {
    margin-top: 64px;
    font-family: PingFangSC, PingFang SC;
    font-weight: 600;
    font-size: 40px;
    color: #333333;
    line-height: 40px;
    text-align: center;
    font-style: normal;
}

.corporation-article-content {
    margin-top: 48px;
    margin-bottom: 88px;
}

.corporation-article-content p {
    text-indent: 2em;
    font-family: PingFangSC, PingFang SC;
    font-weight: 400;
    font-size: 1.15rem;
    color: #6A6E73;
    line-height: 32px;
    text-align: left;
    font-style: normal;
}

.corporation-article-tip {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.corporation-article-tip .box {
    padding: 46px;
    width: 25%;
    height: 286px;
    aspect-ratio: 3 / 2;
    padding-left: 3.5vw;
    background-color: #fff;
    background-size: cover;
    background-repeat: no-repeat;
}

.corporation-article-tip .box h2 {
    font-family: AlimamaShuHeiTi, AlimamaShuHeiTi;
    font-weight: bold;
    font-size: 2.2rem;
    color: #0B3098;
    line-height: 39px;
    text-align: left;
}

.corporation-article-tip .box p {
    margin-top: 1.5vw;
    font-family: PingFangSC, PingFang SC;
    font-weight: 400;
    font-size: 1rem;
    color: #6A6E73;
    line-height: 22px;
    text-align: left;
}

@media (max-width: 1650px) {
    .corporation-article-tip .box {
        height: 200px;
    }

    .corporation-article-tip .box h2 {
        margin-top: 0;
    }
}



.corporation-article-tip .box:nth-child(2n+1) {
    margin-bottom: 4.5rem;
}

.corporation-article-tip .box:nth-child(2n) {
    margin-top: 4.5rem;
}

.corporation-service {
    padding-bottom: 80px;
    background-size: cover;
    background-repeat: no-repeat;
}

.corporation-service-title {
    margin: 64px auto;
    font-family: PingFangSC, PingFang SC;
    font-weight: 600;
    font-size: 40px;
    color: #333333;
    line-height: 40px;
    text-align: center;
    font-style: normal;
}

.corporation-service-content {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

.corporation-service-content .corporation-service-tip {
    margin-bottom: 25px;
    position: relative;
    width: 18.75%;
    background-size: cover;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
}

.corporation-service-content .corporation-service-tip img {
    width: 100%;
}

.corporation-service-content .corporation-service-tip .box {
    width: 100%;
    padding: 0 1.4vw;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.corporation-service-content .corporation-service-tip .box h3 {
    margin-top: 4rem;
    font-family: PingFangSC, PingFang SC;
    font-weight: 600;
    font-size: 32px;
    color: #333333;
    line-height: 32px;
    text-align: center;
    font-style: normal;
}

.corporation-service-content .corporation-service-tip .box .minibox {
    margin-top: 0.9rem;
    width: 40px;
    height: 6px;
    background: #0B3098;
    border-radius: 1px;
    z-index: 999;
}

.corporation-service-content .corporation-service-tip .box p {
    margin-top: 2.5rem;
    font-family: PingFangSC, PingFang SC;
    font-weight: 400;
    font-size: 16px;
    color: #6A6E73;
    line-height: 32px;
    text-align: left;
    font-style: normal;
}

@media (max-width: 1650px) {
    .corporation-service-content {
        height: auto;
    }

    .corporation-service-content .corporation-service-tip .box h3 {
        margin-top: 20px;
    }

    .corporation-service-content .corporation-service-tip .box p {
        margin-top: 10px;
    }
}

@media (max-width: 1200px) {
    .corporation-service-content {
        justify-content: space-evenly;
        gap: 50px;
    }

    .corporation-service-content .corporation-service-tip {
        width: 26%;
    }

    .corporation-service-content .corporation-service-tip .box h3 {
        margin-top: 20px;
    }

    .corporation-service-content .corporation-service-tip .box p {
        margin-top: 10px;
    }
}

@media (max-width: 990px) {
    .corporation-article-tip {
        flex-wrap: wrap;
        justify-content: center;
    }

    .corporation-article-tip .box {
        width: 50%;
        height: auto;
        aspect-ratio: 3 / 2;
        margin-top: -2rem;
        padding-left: 60px;
    }

    .corporation-article-tip .box:nth-child(2n) {
        margin-top: 2rem;
    }

    .corporation-service-content {
        height: auto;
    }

    .corporation-service-content .corporation-service-tip {
        width: 45%;
    }

    .corporation-service-content .corporation-service-tip .box {
        padding: 0 5vw;
    }
}

@media (max-width: 650px) {
    .corporation-article-content {
        margin-bottom: 0px;
    }

    .corporation-article-tip {
        flex-direction: column;
        justify-content: center;
    }

    .corporation-article-tip .box {
        width: 80%;
    }

    .corporation-article-tip .box:nth-child(n) {
        margin: 0;
    }

    .corporation-service-content {}

    .corporation-service-content .corporation-service-tip {
        width: 45%;
    }

    .corporation-service-content .corporation-service-tip .box h3 {
        font-size: 2rem;
    }

    .corporation-service-title {
        font-size: 1.8rem;
    }
}

@media (max-width: 550px) {
    .corporation-service-content {
        flex-direction: column;
        gap: 0;
    }

    .corporation-service-content .corporation-service-tip {
        width: 55%;
    }

    .corporation-service-content .corporation-service-tip .box h3 {
        margin-top: 15px;
        margin-bottom: 0px;
        font-size: 1.5rem;
    }

    .corporation-service-content .corporation-service-tip .box .minibox {
        margin-top: 0;
    }

    .corporation-service-content .corporation-service-tip .box p {
        margin-top: 10px;
        font-size: 1.3rem;
        line-height: 1.8rem;
    }

    .corporation-article-tip .box h2 {
        font-size: 1.8rem;
    }
}

@media (max-width: 425px) {
    .corporation-article-tip .box {
        padding: 40px 30px 0 40px;
        width: 80%;
    }

    .corporation-article-tip .box h2 {
        margin-top: 0;
    }
}

@media (max-width: 400px) {
    .corporation-service-content .corporation-service-tip {
        width: 50%;
    }

    .corporation-service-content .corporation-service-tip .box h3 {
        margin-top: 10px;
    }

    .corporation-service-content .corporation-service-tip .box .minibox {
        margin-top: 0;
    }

    .corporation-service-content .corporation-service-tip .box p {
        margin-top: 15px;
        font-size: 1rem;
    }

    .corporation-article-tip .box {
        /* padding: 26px; */
        padding-left: 35px;
    }
}

@media (max-width: 350px) {
    .corporation-service-content .corporation-service-tip {
        /* 原代码未完成，可根据实际需求补充 */
    }
}

.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;
}

.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;
    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;
    color: #3D3D3D;
    font-weight: 400;
}

/* 与我们联系 */
.connection-article-introduce {
    display: flex;
    margin-top: 58px;
    margin-bottom: 60px;
}

.connection-article-introduce-left {
    flex: 1;
}

.connection-article-introduce-leftT1 {
    /*padding-top: 52px;*/
}

.connection-article-introduce-leftT1Highlight {
    font-size: 24px;
    color: #164A94;
    font-weight: 500;
}

.connection-article-introduce-leftT1Text {
    font-size: 16px;
    color: #3D3D3D;
    margin-left: 20px;
}

.connection-article-introduce-leftT2 {
    font-size: 16px;
    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;
    color: #164A94;
    font-weight: 500;
}

.connection-article-officeAddress {
    font-size: 16px;
    color: #3D3D3D;
    margin-top: 19px;
}

.connection-article-officePeople {
    font-size: 16px;
    color: #3D3D3D;
    margin-top: 5px;
}

@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-left: 0px;
    }

    .corporation-article {
        margin: 30px auto 35px;
    }

    .corporation-article-banner {
        height: 241px;
        width: 100%;
    }

    .corporation-article-title {
        font-size: 1.8rem;
        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;
    }

    /* 与我们联系 */
    .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;
        margin-top: 5px;
    }
}

/*证书*/
.swiper-slide.aptitude-swiper-item {
    width: calc(100% / 4 - 15px);
    /*background-color: #45AD30;*/
    height: 400px;
    display: flex;
    flex-direction: column;
}

.aptitude-swiper-item .aptitude-img-layout {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.aptitude-swiper-item .aptitude-swiper-dec {
    padding: 10px;
    height: 100px;
    text-align: center;
}

.aptitude-img-layout .aptitude-swiper-picture {
    max-height: 300px;
    height: auto;
    width: auto;
    max-width: 80%;
}

.title-padding {
    margin: 20px 0;
}

@media (max-width: 768px) {
    .swiper-slide.aptitude-swiper-item {
        width: calc(100% / 2 - 15px);
    }
}