
.swiper-container {
    width: 100%;
}

    .swiper-container .swiper-slide {
        height: auto;
    }

        .swiper-container .swiper-slide img {
            display: block;
            width: 100%;
            height: auto;
        }

    .swiper-container .swiper-pagination {
        bottom: 19px;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .swiper-container .swiper-pagination-customs {
        height: 30px;
        padding: 0 15px;
        display: flex;
        align-items: center;
        background: rgba(255,255,255,.9);
        margin: 0 18px;
        cursor: pointer;
        font-size: 14px;
        color: #4C9ED9;
    }

.section-title {
    padding: 60px 0 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

    .section-title .en {
        position: absolute;
        font-size: 60px;
        color: #D0D0D0;
        z-index: 1;
        opacity: 0.34;
        left: 50%;
        transform: translateX(-50%);
    }

    .section-title .cn {
        position: absolute;
        z-index: 2;
        font-size: 36px;
        font-weight: bold;
        color: #535353;
        top: 84px;
        left: 50%;
        transform: translateX(-50%);
    }

    .section-title:after {
        content: "";
        width: 52px;
        height: 1px;
        background-color: #535353;
        margin-top: 100px;
    }

.who-we-are {
    background-image: url(../img/apearth.png);
    background-repeat: no-repeat;
    background-position: center bottom 200px;
}

    .who-we-are .section-desc {
        padding: 0px 140px 30px;
        text-align: center;
        font-size: 14px;
        color: #666666;
        line-height: 24px;
    }


    .who-we-are .list-box {
        background-image: url(../img/who-we-are.png);
        background-repeat: no-repeat;
        background-position: center bottom;
        background-color: #fff;
    }

        .who-we-are .list-box .more {
            display: flex;
            justify-content: center;
            padding: 10px 0 20px;
        }

            .who-we-are .list-box .more > a {
                width: 142px;
                height: 40px;
                background-color: #4C9ED9;
                font-size: 13px;
                font-weight: 400;
                color: #FFFFFF;
                display: flex;
                justify-content: center;
                align-items: center;
            }

                .who-we-are .list-box .more > a > span {
                    width: 15px;
                    height: 15px;
                    background: #FFFFFF;
                    border-radius: 50%;
                    margin-left: 10px;
                    display: flex;
                    justify-content: center;
                    align-items: center;
                }

                    .who-we-are .list-box .more > a > span:after {
                        content: "";
                        width: 3px;
                        height: 3px;
                        border-top: 2px solid #4C9ED9;
                        border-right: 2px solid #4C9ED9;
                        transform: rotate(45deg);
                    }

    .who-we-are .list {
        display: flex;
        justify-content: space-between;
        padding: 40px 0 0 0;
    }

        .who-we-are .list .item {
            height: 242px;
            flex: 1;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

            .who-we-are .list .item .qty {
                font-size: 80px;
                font-weight: 400;
                color: #535353;
            }

                .who-we-are .list .item .qty sub {
                    font-size: 14px;
                }

                .who-we-are .list .item .qty:after {
                    content: "";
                    display: block;
                    width: 27px;
                    height: 1px;
                    background-color: #383838;
                    margin: 13px auto 0;
                }

            .who-we-are .list .item .cn {
                font-size: 16px;
                color: #333333;
                margin-top: 20px;
            }

            .who-we-are .list .item .en {
                font-size: 14px;
                color: #999;
                margin-top: 10px;
                text-align: center;
                line-height: 18px;
                padding: 0 50px;
            }

        .who-we-are .list .divider {
            width: 9px;
            height: 160px;
            background-color: #eee;
        }

    .who-we-are .simple {
        padding: 60px 0 30px;
        display: flex;
        justify-content: center;
    }

    .who-we-are .content {
        display: flex;
    }

    .who-we-are .text {
        width: 700px;
        height: 406px;
        box-shadow: 0px 3px 7px 0px rgba(0, 0, 0, 0.13);
        background-color: #fff;
        padding: 90px 30px;
    }

        .who-we-are .text > p {
            font-size: 14px;
            color: #666666;
            line-height: 27px;
        }

    .who-we-are .video {
        width: 700px;
        height: 406px;
        position: relative;
    }

        .who-we-are .video > video {
            width: 700px;
            height: 406px;
            object-fit: fill;
        }

        .who-we-are .video .btn-play {
            width: 70px;
            height: 70px;
            border-radius: 50%;
            position: absolute;
            z-index: 1;
            left: 50%;
            top: 50%;
            margin-left: -35px;
            margin-top: -35px;
            cursor: pointer;
        }

.projects .list {
    display: flex;
    flex-wrap: wrap;
}

    .projects .list .item {
        width: 440px;
        height: 330px;
        box-shadow: 0px 3px 7px 0px rgba(0, 0, 0, 0.13);
        margin-right: 40px;
        margin-bottom: 30px;
        cursor: pointer;
    }

        .projects .list .item:nth-child(3n) {
            margin-right: 0;
        }

        .projects .list .item .img {
            width: 440px;
            height: 200px;
            position: relative;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .projects .list .item .img-box {
            overflow: hidden;
        }

        .projects .list .item .img img {
            width: 440px;
            height: 200px;
            transition: all .5s;
        }

        .projects .list .item:hover .img img {
            transform: scale(1.1);
        }

        .projects .list .item .img .tag {
            width: 156px;
            height: 42px;
            background-image: url(../img/tag.png);
            background-size: 156px 42px;
            background-repeat: no-repeat;
            position: absolute;
            left: -6px;
            top: 7px;
            padding: 8px 15px 0;
            font-size: 18px;
            color: #4C9ED9;
            overflow: hidden;
            white-space: nowrap;
            text-overflow: ellipsis;
        }

        .projects .list .item .img .info {
            width: 325px;
            height: 87px;
            background-color: rgba(0,0,0,.49);
            position: absolute;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            top: 50%;
            left: 50%;
            transform: translateX(-50%) translateY(-50%);
        }

            .projects .list .item .img .info .name {
                font-size: 20px;
                font-weight: bold;
                color: #FFFFFF;
            }

            .projects .list .item .img .info .desc {
                font-size: 14px;
                color: #FFFFFF;
                margin-top: 10px;
            }

        .projects .list .item .props {
            display: flex;
            justify-content: space-between;
            padding: 30px 0 15px;
        }

            .projects .list .item .props .prop {
                flex: 1;
                display: flex;
                align-items: center;
                flex-direction: column;
            }


            .projects .list .item .props .divider {
                width: 1px;
                flex-shrink: 0;
                height: 15px;
                background-color: #666;
            }

            .projects .list .item .props .prop .prop-key {
                font-size: 16px;
                color: #666666;
            }

            .projects .list .item .props .prop .prop-value {
                font-size: 14px;
                color: #999;
                margin-top: 5px;
            }

        .projects .list .item .reasons {
            padding: 0 30px;
            display: flex;
            line-height: 24px;
        }

            .projects .list .item .reasons > label {
                font-size: 16px;
                font-weight: bold;
                color: #333;
                flex-shrink: 0;
            }

            .projects .list .item .reasons > div {
                font-size: 14px;
                color: #666;
            }

        .projects .list .item .btn-actions {
            display: flex;
            justify-content: space-between;
            padding: 30px 30px;
        }

            .projects .list .item .btn-actions > a {
                display: flex;
                justify-content: center;
                align-items: center;
                width: 116px;
                height: 37px;
                border: 1px solid #535353;
                font-size: 14px;
                color: #535353;
            }

.form-box {
    padding: 30px 0 60px;
}

    .form-box .form-title {
        font-size: 24px;
        color: #4C9ED9;
        display: flex;
        justify-content: center;
        align-items: center;
    }

        .form-box .form-title:before {
            content: "";
            display: inline-block;
            width: 62px;
            height: 1px;
            background: #4C9ED9;
            border-radius: 1px;
            margin-right: 5px;
        }

        .form-box .form-title:after {
            content: "";
            display: inline-block;
            width: 62px;
            height: 1px;
            background: #4C9ED9;
            border-radius: 1px;
            margin-left: 5px;
        }

    .form-box .form-subtitle {
        font-size: 16px;
        color: #535353;
        text-align: center;
        padding: 10px 0 0;
    }

    .form-box .form-inline {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 20px 40px;
    }

        .form-box .form-inline .form-group > label {
            font-size: 14px;
            font-weight: 400;
            color: #333333;
            margin-right: 15px;
        }

            .form-box .form-inline .form-group > label > span {
                font-size: 14px;
                font-weight: 400;
                color: #4C9ED9;
            }

        .form-box .form-inline .form-control {
            height: 44px;
            width: 290px;
            border: 1px solid #DCDCDC;
            border-radius: 8px;
            outline: none;
            padding: 0 1em;
        }


    .form-box .form-tips {
        font-size: 15px;
        text-align: center;
        color: #D80922;
    }

    .form-box .form-btns {
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 30px 0;
    }

        .form-box .form-btns > button {
            width: 160px;
            height: 47px;
            background: #4C9ED9;
            border-radius: 4px;
            display: flex;
            justify-content: center;
            align-items: center;
            font-size: 16px;
            font-weight: 400;
            color: #FFFFFF;
            margin: 0 50px;
            outline: none;
            border: none;
            cursor: pointer;
        }

.activity {
    background-color: #f2f2f2;
    padding: 0 0 90px;
}

    .activity .list {
        display: flex;
        justify-content: space-between;
    }

        .activity .list .item {
            width: 337px;
            height: 330px;
            box-shadow: 0px 2px 18px 0px rgba(22, 53, 81, 0.24);
        }

            .activity .list .item .img {
                width: 337px;
                height: 156px;
                position: relative;
                display: flex;
                justify-content: center;
                align-items: center;
                overflow: hidden;
            }

                .activity .list .item .img > img {
                    width: 337px;
                    height: 156px;
                    transition: all .5s;
                }

            .activity .list .item:hover .img > img {
                transform: scale(1.1);
            }

            .activity .list .item .img .info {
                width: 228px;
                height: 86px;
                background-color: rgba(0,0,0,.49);
                position: absolute;
                display: flex;
                flex-direction: column;
                align-items: center;
                justify-content: center;
                left: 50%;
                top: 50%;
                transform: translateX(-50%) translateY(-50%);
            }

                .activity .list .item .img .info .name {
                    font-size: 20px;
                    font-weight: bold;
                    color: #FFFFFF;
                }

                .activity .list .item .img .info .desc {
                    font-size: 14px;
                    color: #FFFFFF;
                    margin-top: 10px;
                }

            .activity .list .item .activity-title {
                font-size: 18px;
                color: #333333;
                padding: 20px 0 15px;
                text-align: center;
            }

            .activity .list .item .activity-subtitle {
                font-size: 14px;
                color: #666666;
                line-height: 24px;
                text-align: center;
                padding: 0 40px;
            }

            .activity .list .item .activity-next {
                display: flex;
                justify-content: center;
                padding: 30px 0 0;
            }

                .activity .list .item .activity-next > a {
                    font-size: 12px;
                    color: #535353;
                    text-decoration: underline;
                    display: flex;
                    align-items: center;
                }

                    .activity .list .item .activity-next > a:after {
                        content: "";
                        width: 5px;
                        height: 5px;
                        border-top: 2px solid #535353;
                        border-right: 2px solid #535353;
                        transform: rotate(45deg);
                    }

            .activity .list .item .btn-action {
                display: flex;
                justify-content: center;
                padding: 30px 0 0;
            }

                .activity .list .item .btn-action > a {
                    font-size: 13px;
                    color: #535353;
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    width: 142px;
                    height: 40px;
                    border: 1px solid #535353;
                }

                    .activity .list .item .btn-action > a:hover {
                        background-color: #4C9ED9;
                        border: 1px solid #4C9ED9;
                        color: #fff;
                    }

                    .activity .list .item .btn-action > a > span {
                        display: flex;
                        align-items: center;
                        justify-content: center;
                        width: 15px;
                        height: 15px;
                        background-color: #535353;
                        border-radius: 50%;
                        margin-left: 10px;
                    }

                    .activity .list .item .btn-action > a:hover > span {
                        background-color: #fff;
                    }

                    .activity .list .item .btn-action > a > span:after {
                        content: "";
                        width: 4px;
                        height: 4px;
                        border-top: 2px solid #fff;
                        border-right: 2px solid #fff;
                        transform: rotate(45deg);
                        margin-right: 2px;
                    }

                    .activity .list .item .btn-action > a:hover > span:after {
                        border-top: 2px solid #4C9ED9;
                        border-right: 2px solid #4C9ED9;
                    }


.article .flex-article {
    display: flex;
    justify-content: space-between;
    padding: 60px 0;
}


    .article .flex-article .article-title {
        position: relative;
        display: flex;
        justify-content: space-between;
        align-items: center;
        height: 105px;
    }

        .article .flex-article .article-title .en {
            position: absolute;
            left: -12px;
            top: 5px;
            font-size: 56px;
            color: #D0D0D0;
            opacity: 0.34;
            z-index: 1;
        }

        .article .flex-article .article-title .cn {
            font-size: 30px;
            font-weight: bold;
            color: #535353;
            position: absolute;
            z-index: 2;
        }

        .article .flex-article .article-title .more {
            position: absolute;
            right: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 14px;
            color: #999999;
        }

        .article .flex-article .article-title .arrow:after {
            content: "";
            width: 5px;
            height: 5px;
            border-top: 2px solid #535353;
            border-right: 2px solid #535353;
            transform: rotate(45deg);
            margin-right: 2px;
        }

    .article .flex-article .case {
        width: 363px;
    }

        .article .flex-article .case .list {
            padding: 0;
            margin: 0;
        }

            .article .flex-article .case .list .item > a {
                display: flex;
                justify-content: space-between;
                align-items: center;
                height: 128px;
                background: #FFFFFF;
                border: 1px solid #F2F2F2;
                padding: 30px 0;
            }

            .article .flex-article .case .list .item + .item {
                margin-top: 10px;
            }

            .article .flex-article .case .list .item > a .date {
                width: 105px;
                border-right: 1px solid #F0F0F0;
                flex-shrink: 0;
                display: flex;
                flex-direction: column;
                justify-content: center;
                padding-left: 25px;
            }

                .article .flex-article .case .list .item > a .date .day {
                    font-size: 26px;
                    color: #999999;
                    padding-bottom: 10px;
                    position: relative;
                }

                    .article .flex-article .case .list .item > a .date .day::after {
                        content: "";
                        position: absolute;
                        left: 5px;
                        bottom: 0;
                        width: 19px;
                        height: 1px;
                        background-color: #CCCCCC;
                    }

                .article .flex-article .case .list .item > a .date .year-month {
                    font-size: 12px;
                    color: #999999;
                    margin-top: 10px;
                }


            .article .flex-article .case .list .item > a .info {
                flex: 1;
                overflow: hidden;
                padding: 0 20px 0 30px;
                position: relative;
            }


                .article .flex-article .case .list .item > a .info .title {
                    font-size: 16px;
                    color: #333;
                    overflow: hidden;
                    text-overflow: ellipsis;
                    white-space: nowrap;
                }


            .article .flex-article .case .list .item > a:hover .info .title {
                color: #4C9ED9;
            }

            .article .flex-article .case .list .item > a .info .desc {
                font-size: 14px;
                color: #666;
                overflow: hidden;
                text-overflow: ellipsis;
                white-space: nowrap;
                margin-top: 10px;
            }

            .article .flex-article .case .list .item > a .info::after {
                content: "\2794";
                margin-top: 15px;
                display: block;
                color: #CCCCCC;
            }

    .article .flex-article .news {
        width: 618px;
    }

        .article .flex-article .news .swiper-container {
            width: 618px;
            height: 403px;
        }

        .article .flex-article .news a.swiper-slide {
            display: block;
            cursor: pointer;
        }

            .article .flex-article .news a.swiper-slide .img {
                position: relative;
                width: 618px;
                height: 403px;
            }

                .article .flex-article .news a.swiper-slide .img > img {
                    width: 618px;
                    height: 403px;
                    object-fit: cover;
                }

                .article .flex-article .news a.swiper-slide .img .alt {
                    position: absolute;
                    left: 0;
                    bottom: 0;
                    right: 0;
                    height: 50px;
                    line-height: 50px;
                    overflow: hidden;
                    text-overflow: ellipsis;
                    white-space: nowrap;
                    font-size: 16px;
                    color: #D0D0D0;
                    background-color: rgba(0,0,0,.5);
                    padding: 0 120px 0 10px;
                    /* z-index: 1; */
                }

        .article .flex-article .news .swiper-container .swiper-pagination {
            justify-content: flex-end;
            padding: 0 20px;
            height: 50px;
            bottom: 0;
            width: auto;
            right: 0;
            left: auto;
        }

            .article .flex-article .news .swiper-container .swiper-pagination .swiper-pagination-bullet {
                background-color: #fff;
                width: 10px;
                height: 10px;
                opacity: 1;
            }

                .article .flex-article .news .swiper-container .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
                    background-color: #4C9ED9;
                }


    .article .flex-article .clopedia {
        width: 364px;
    }

        .article .flex-article .clopedia .list {
            height: 403px;
            border: 1px solid #F2F2F2;
            padding: 5px 25px 25px;
        }

            .article .flex-article .clopedia .list .item {
                max-height: 51px;
                overflow: hidden;
                border-bottom: 1px dashed #D2D2D2;
                transition: all .5s linear;
            }

                .article .flex-article .clopedia .list .item:last-child {
                    border-bottom: none;
                }

                .article .flex-article .clopedia .list .item.active {
                    max-height: 180px;
                }

                .article .flex-article .clopedia .list .item > a {
                    display: flex;
                    padding-bottom: 30px;
                }

                    .article .flex-article .clopedia .list .item > a .info {
                        padding: 0;
                        overflow: hidden;
                    }

                        .article .flex-article .clopedia .list .item > a .info .title {
                            font-size: 16px;
                            color: #333;
                            padding: 20px 0 10px;
                            overflow: hidden;
                            text-overflow: ellipsis;
                            white-space: nowrap;
                        }

                    .article .flex-article .clopedia .list .item > a:hover .info .title {
                        color: #4C9ED9;
                    }

                    .article .flex-article .clopedia .list .item > a .info .desc {
                        font-size: 14px;
                        line-height: 24px;
                        overflow: hidden;
                        text-overflow: ellipsis;
                        display: -webkit-box;
                        -webkit-line-clamp: 2;
                        -webkit-box-orient: vertical;
                        height: 48px;
                        margin-top: 20px;
                    }

                    .article .flex-article .clopedia .list .item > a .info .time {
                        font-size: 14px;
                        color: #999999;
                        padding-top: 25px;
                        display: flex;
                        align-items: center;
                        justify-content: space-between;
                    }

                        .article .flex-article .clopedia .list .item > a .info .time::after {
                            content: "\2794";
                            color: #CCCCCC;
                        }

.publicity {
    background-color: #f2f2f2;
    padding: 0 0 90px;
}

    .publicity .list {
        display: flex;
        justify-content: space-between;
    }

        .publicity .list .item {
            width: 337px;
            height: 418px;
            box-shadow: 0px 2px 18px 0px rgba(22, 53, 81, 0.24);
            cursor: pointer;
        }

            .publicity .list .item .video {
                width: 337px;
                height: 318px;
                position: relative;
                display: flex;
                justify-content: center;
                align-items: center;
            }

                .publicity .list .item .video > .poster {
                    width: 337px;
                    height: 318px;
                }

                .publicity .list .item .video .info {
                    background-color: rgba(0,0,0,.49);
                    position: absolute;
                    display: flex;
                    flex-direction: column;
                    align-items: center;
                    justify-content: center;
                    top: 0;
                    left: 0;
                    right: 0;
                    bottom: 0;
                    color: #fff;
                }

                    .publicity .list .item .video .info .type {
                        font-size: 18px;
                        text-decoration: underline;
                    }

                    .publicity .list .item .video .info .name {
                        font-size: 20px;
                        margin-top: 10px;
                    }

                    .publicity .list .item .video .info .btn-play {
                        margin-top: 30px;
                    }

            .publicity .list .item .activity-title {
                font-size: 18px;
                color: #333333;
                padding: 20px 0 15px;
                text-align: center;
            }

            .publicity .list .item .activity-next {
                display: flex;
                justify-content: center;
            }

                .publicity .list .item .activity-next > a {
                    font-size: 12px;
                    color: #535353;
                    text-decoration: underline;
                    display: flex;
                    align-items: center;
                }

                    .publicity .list .item .activity-next > a:after {
                        content: "";
                        width: 5px;
                        height: 5px;
                        border-top: 2px solid #535353;
                        border-right: 2px solid #535353;
                        transform: rotate(45deg);
                    }

.branches {
    position: relative;
    margin: 0 auto;
    padding: 60px 0 60px;
}

    .branches .section-title::after {
        display: none;
    }


    .branches .swiper-box .swiper-items {
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 40px 0;
    }

        .branches .swiper-box .swiper-items .swiper-item {
            display: flex;
            justify-content: center;
            align-items: center;
            font-size: 16px;
            color: #666666;
            height: 35px;
            border-radius: 4px;
            padding: 0 15px;
            cursor: pointer;
            margin: 0 15px;
        }

            .branches .swiper-box .swiper-items .swiper-item.active {
                background: #4C9ED9;
                color: #fff;
            }

    .branches .swiper-box .tab-content .content {
        display: none;
    }

        .branches .swiper-box .tab-content .content.active {
            display: block;
        }

    .branches .swiper-box .tab-content .swiper-container {
        width: 100%;
    }

    .branches .swiper-container {
        padding-bottom: 60px;
    }

        .branches .swiper-container .swiper-slide {
            width: 600px !important;
            background: #fff;
            box-shadow: 0px 3px 43px 0px rgba(0, 0, 0, 0.13);
        }

            .branches .swiper-container .swiper-slide img {
                display: block;
                max-width: 100%;
                width: 100%;
                height: 274px;
            }

            .branches .swiper-container .swiper-slide .slide-title {
                font-size: 22px;
                font-weight: bold;
                color: #333;
                padding: 30px 20px 10px;
            }

            .branches .swiper-container .swiper-slide .slide-desc {
                font-size: 16px;
                color: #333333;
                padding: 0 20px;
                line-height: 32px;
            }

            .branches .swiper-container .swiper-slide .slide-address {
                font-size: 16px;
                color: #333333;
                padding: 0 20px;
                line-height: 32px;
                white-space: pre-line;
            }

        .branches .swiper-container .swiper-button-prev {
            left: 0;
            width: 44px;
            height: 74px;
            background: #F8F8F8;
            color: #666;
            display: flex;
            justify-content: center;
            align-items: center;
        }

            .branches .swiper-container .swiper-button-prev:before {
                content: "";
                width: 18px;
                height: 18px;
                border-top: 2px solid #666;
                border-left: 2px solid #666;
                transform: rotate(-45deg);
                margin-left: 10px;
            }

        .branches .swiper-container .swiper-button-next {
            right: 0;
            width: 44px;
            height: 74px;
            background: #F8F8F8;
            color: #666;
            display: flex;
            justify-content: center;
            align-items: center;
        }

            .branches .swiper-container .swiper-button-next:before {
                content: "";
                width: 18px;
                height: 18px;
                border-top: 2px solid #666;
                border-right: 2px solid #666;
                transform: rotate(45deg);
                margin-right: 10px;
            }
