.banner > img {
    width: 100%;
}


.lead-box {
    padding: 80px 0;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: stretch;
}

    .lead-box .img {
        width: 782px;
        min-height: 428px;
        border: 1px solid #4C9ED9;
        padding: 25px 0 40px 55px;
        flex-shrink: 0;
    }

        .lead-box .img > img {
            width: 393px;
            height: 393px;
        }


        .lead-box .img .video {
            display: flex;
            justify-content: center;
            align-items: center;
            position: relative;
            width: 393px;
            height: 393px;
            flex-shrink: 0;
        }

            .lead-box .img .video video {
                width: 393px;
                height: 393px;
                object-fit: fill;
            }

            .lead-box .img .video .btn-play {
                width: 48px;
                height: 48px;
                border-radius: 50%;
                display: flex;
                justify-content: center;
                align-items: center;
                z-index: 99;
                position: absolute;
                cursor: pointer;
                left: 50%;
                top: 50%;
                transform: translateX(-50%) translateY(-50%);
            }

    .lead-box .content-box {
        padding: 50px 0 40px 0;
        flex: 1;
    }

    .lead-box .content {
        background-color: #fff;
        width: 875px;
        margin-left: -255px;
        padding-bottom: 20px;
    }

        .lead-box .content .title {
            padding-left: 60px;
            position: relative;
        }

            .lead-box .content .title > label {
                font-size: 132px;
                color: #F6F5F7;
                position: absolute;
                left: -85px;
                top: -50px;
            }


            .lead-box .content .title > div {
                font-size: 30px;
                color: #4C9ED9;
            }

                .lead-box .content .title > div:first-letter {
                    font-size: 60px;
                }

        .lead-box .content .desc {
            background-color: #f6f5f7;
            padding: 30px 40px;
            margin-top: 20px;
            font-size: 16px;
            color: #333333;
            line-height: 30px;
            min-height: 170px;
        }

            .lead-box .content .desc .props {
                display: flex;
                align-items: center;
                padding: 15px 0;
            }

                .lead-box .content .desc .props .prop {
                    display: flex;
                    align-items: center;
                    font-size: 16px;
                    color: #666666;
                }

                    .lead-box .content .desc .props .prop + .prop {
                        margin-left: 60px;
                    }

                    .lead-box .content .desc .props .prop > img {
                        width: 16px;
                        height: 16px;
                        margin-right: 10px;
                    }


                    .lead-box .content .desc .props .prop label {
                        color: #4C9ED9;
                    }

    .lead-box .btn-online {
        position: absolute;
        width: 172px;
        height: 47px;
        background: #4C9ED9;
        border-radius: 4px;
        border: none;
        outline: none;
        display: flex;
        justify-content: center;
        align-items: center;
        bottom: 100px;
        right: 225px;
        font-size: 16px;
        color: #FFFFFF;
        cursor: pointer;
    }

        .lead-box .btn-online > span {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 15px;
            height: 15px;
            background-color: #fff;
            border-radius: 50%;
            margin-left: 10px;
        }

            .lead-box .btn-online > span:after {
                content: "";
                width: 4px;
                height: 4px;
                border-top: 2px solid #4C9ED9;
                border-right: 2px solid #4C9ED9;
                transform: rotate(45deg);
                margin-right: 2px;
            }

.passport-form {
    background-color: #f6f5f7;
    padding: 80px 0 0;
}

    .passport-form .form-box {
        padding: 50px 0 30px;
        background-color: #fff;
        border: 1px solid #4C9ED9;
        box-shadow: 0px 3px 10px 0px rgba(0, 0, 0, 0.14);
        border-radius: 8px;
    }

        .passport-form .form-box .form-title {
            font-size: 30px;
            font-weight: bold;
            color: #535353;
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 20px 0 0;
        }

        .passport-form .form-box .form-subdesc {
            font-size: 20px;
            color: #4C9ED9;
            padding: 20px 0 0;
            display: flex;
            justify-content: center;
            align-items: center;
        }

            .passport-form .form-box .form-subdesc:before {
                content: "";
                display: inline-block;
                width: 40px;
                height: 1px;
                background: #4C9ED9;
                border-radius: 1px;
                margin-right: 5px;
            }

            .passport-form .form-box .form-subdesc:after {
                content: "";
                display: inline-block;
                width: 40px;
                height: 1px;
                background: #4C9ED9;
                border-radius: 1px;
                margin-left: 5px;
            }

        .passport-form .form-box .form-inline {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 20px 40px;
        }

            .passport-form .form-box .form-inline .form-group > label {
                font-size: 14px;
                font-weight: 400;
                color: #333333;
                margin-right: 15px;
            }

                .passport-form .form-box .form-inline .form-group > label > span {
                    font-size: 14px;
                    font-weight: 400;
                    color: #4C9ED9;
                }

            .passport-form .form-box .form-inline .form-control {
                height: 44px;
                width: 290px;
                border: 1px solid #DCDCDC;
                border-radius: 8px;
                outline: none;
                padding: 0 1em;
            }

        .passport-form .form-box .form-tips {
            font-size: 15px;
            text-align: center;
            color: #D80922;
        }

        .passport-form .form-box .form-btns {
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 30px 0;
        }

            .passport-form .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;
            }


.suit {
    padding: 60px 0 70px;
    background-color: #f6f5f7;
    background-image: url(../img/reside/suit.png);
    background-position: center center;
    background-repeat: no-repeat;
}

    .suit .title {
        font-size: 30px;
        color: #535353;
        padding: 20px 0 10px;
        text-align: center;
        font-weight: bold;
    }

    .suit .subtitle {
        font-size: 16px;
        color: #BD986D;
        text-align: center;
    }

    .suit .subdesc {
        font-size: 14px;
        color: #999999;
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 10px 0 0;
    }

        .suit .subdesc:before {
            content: "";
            display: inline-block;
            width: 40px;
            height: 1px;
            background: #E5E5E5;
            border-radius: 1px;
            margin-right: 5px;
        }

        .suit .subdesc:after {
            content: "";
            display: inline-block;
            width: 40px;
            height: 1px;
            background: #E5E5E5;
            border-radius: 1px;
            margin-left: 5px;
        }

    .suit .list {
        padding: 30px 0 0px;
        display: flex;
        justify-content: space-between;
    }

        .suit .list .item {
            width: 338px;
            height: 118px;
            background: #EDECEC;
            border-radius: 8px;
            padding: 15px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

            .suit .list .item .name {
                font-size: 20px;
                font-weight: bold;
                color: #9F784B;
                display: flex;
                align-items: center;
            }

            .suit .list .item .desc {
                font-size: 16px;
                color: #666666;
                margin-top: 8px;
            }


.advantage {
    padding: 60px 0 70px;
}

    .advantage .title {
        font-size: 30px;
        color: #535353;
        padding: 20px 0 10px;
        text-align: center;
    }

    .advantage .subtitle {
        font-size: 16px;
        color: #BD986D;
        text-align: center;
    }

    .advantage .subdesc {
        font-size: 14px;
        color: #999999;
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 10px 0 0;
    }

        .advantage .subdesc:before {
            content: "";
            display: inline-block;
            width: 40px;
            height: 1px;
            background: #E5E5E5;
            border-radius: 1px;
            margin-right: 5px;
        }

        .advantage .subdesc:after {
            content: "";
            display: inline-block;
            width: 40px;
            height: 1px;
            background: #E5E5E5;
            border-radius: 1px;
            margin-left: 5px;
        }

    .advantage .list {
        display: flex;
        flex-wrap: wrap;
        padding: 40px 0 0;
    }

        .advantage .list .item {
            width: 344px;
            margin-right: 8px;
            margin-bottom: 10px;
            background-color: #f6f5f7;
            border-radius: 8px 8px 0 0;
        }

            .advantage .list .item:hover {
                background: #FFFFFF;
                box-shadow: 0px 3px 15px 0px rgba(0, 0, 0, 0.13);
            }

            .advantage .list .item:nth-child(4n) {
                margin-right: 0;
            }

            .advantage .list .item .img {
                overflow: hidden;
            }

                .advantage .list .item .img img {
                    width: 344px;
                    border-radius: 8px 8px 0 0;
                    transition: all .8s;
                }

            .advantage .list .item:hover .img img {
                transform: scale(1.1);
            }

            .advantage .list .item .name {
                display: flex;
                flex-direction: column;
                align-items: center;
                font-size: 18px;
                color: #B69065;
                padding: 30px 0 40px;
                position: relative;
            }

                .advantage .list .item .name:after {
                    content: "";
                    width: 17px;
                    height: 1px;
                    background: #D2D2D2;
                    bottom: 20px;
                    position: absolute;
                }

            .advantage .list .item .desc {
                text-align: center;
                line-height: 24px;
                font-size: 14px;
                color: #535353;
                padding: 0 20px 40px;
            }

.project-coupon {
    background-image: url(../img/reside/coupon.png);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 75px 0 80px;
}

    .project-coupon > div {
        background-color: rgba(255, 255, 255, 0.76);
        padding: 30px 35px;
    }

    .project-coupon .coupon-box {
        background-color: #fff;
        padding: 0 240px;
        border: 1px solid #4C9ED9;
        background-image: url(../img/airplane.png);
        background-position: left top;
        background-repeat: no-repeat;
    }

        .project-coupon .coupon-box .coupon-title {
            font-size: 30px;
            font-weight: bold;
            color: #4C9ED9;
            text-align: center;
            padding: 30px 0;
        }

        .project-coupon .coupon-box .list {
            display: flex;
            flex-wrap: wrap;
        }

            .project-coupon .coupon-box .list .item {
                width: 50%;
                border-bottom: 1px dashed #DCDCDC;
                padding: 25px 0;
                display: flex;
                align-items: center;
                font-size: 18px;
                color: #666666;
            }

                .project-coupon .coupon-box .list .item:nth-child(2n) {
                    text-align: right;
                }

                .project-coupon .coupon-box .list .item:before {
                    content: "";
                    width: 10px;
                    height: 10px;
                    border: 1px solid #4C9ED9;
                    border-radius: 50%;
                    margin-right: 10px;
                }

        .project-coupon .coupon-box .tips {
            padding: 15px 0;
            font-size: 16px;
            color: #DC5A2C;
        }

        .project-coupon .coupon-box .btn-action {
            padding: 15px 0 40px;
            display: flex;
            justify-content: center;
            align-items: center;
        }

            .project-coupon .coupon-box .btn-action a {
                margin: 0 40px;
                width: 160px;
                height: 47px;
                background: #4C9ED9;
                border-radius: 4px;
                font-size: 16px;
                color: #FFFFFF;
                display: flex;
                justify-content: center;
                align-items: center;
            }



.choice {
    background-color: #fff;
    padding: 0 0 60px;
}

    .choice .title {
        font-size: 30px;
        color: #535353;
        padding: 80px 0 10px;
        text-align: center;
    }

    .choice .subtitle {
        font-size: 16px;
        color: #BD986D;
        text-align: center;
    }

    .choice .subdesc {
        font-size: 14px;
        color: #999999;
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 10px 0 0;
    }

        .choice .subdesc:before {
            content: "";
            display: inline-block;
            width: 40px;
            height: 1px;
            background: #E5E5E5;
            border-radius: 1px;
            margin-right: 5px;
        }

        .choice .subdesc:after {
            content: "";
            display: inline-block;
            width: 40px;
            height: 1px;
            background: #E5E5E5;
            border-radius: 1px;
            margin-left: 5px;
        }


    .choice .quick-title {
        font-size: 30px;
        font-weight: bold;
        color: #4C9ED9;
        text-align: center;
        padding: 30px 0 0;
    }

    .choice .quick-desc {
        font-size: 20px;
        color: #535353;
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 10px 0 0;
    }

    .choice .list {
        display: flex;
        flex-wrap: wrap;
        padding: 60px 0 0;
    }

        .choice .list .item {
            display: flex;
            align-items: center;
            width: 462px;
            height: 166px;
            background-color: #ececec;
            padding: 10px 30px;
            margin-right: 7px;
            margin-bottom: 7px;
        }

            .choice .list .item:nth-child(3n) {
                margin-right: 0;
            }

            .choice .list .item > div {
                padding: 50px 30px 0;
                height: 192px;
            }

            .choice .list .item .name {
                font-size: 16px;
                color: #333333;
                padding: 10px 0;
            }

                .choice .list .item .name b {
                    font-size: 28px;
                    font-weight: bold;
                    color: #4C9ED9;
                }

            .choice .list .item .desc {
                font-size: 14px;
                color: #999;
                line-height: 20px;
            }

.case {
    background-color: #F6F5F7;
    padding-bottom: 70px;
}


    .case .title {
        border-bottom: 1px solid #E7E7E7;
        padding: 65px 0 15px;
        font-size: 24px;
        font-weight: bold;
        color: #535353;
        display: flex;
        flex-direction: column;
        align-items: center;
        position: relative;
    }

        .case .title:after {
            content: "";
            width: 93px;
            height: 2px;
            background: #4C9ED9;
            position: absolute;
            bottom: -1px;
            left: 50%;
            transform: translateX(-50%);
        }

    .case .swiper-container {
        padding: 90px 0 0;
    }

        .case .swiper-container .swiper-slide {
            background: #FFFFFF;
            box-shadow: 0px 3px 5px 0px rgba(0, 0, 0, 0.05);
            border-radius: 10px;
            padding: 15px 15px;
            transition: all .6s;
        }

            .case .swiper-container .swiper-slide.swiper-slide-active {
                transform: translateY(-55px);
            }

            .case .swiper-container .swiper-slide img {
                width: 100%;
                height: auto;
            }

            .case .swiper-container .swiper-slide .customer {
                display: flex;
                align-items: center;
                padding: 20px 0;
            }

                .case .swiper-container .swiper-slide .customer .avatar {
                    width: 45px;
                    height: 45px;
                    border-radius: 50%;
                }


                .case .swiper-container .swiper-slide .customer .nickname {
                    font-size: 16px;
                    color: #333333;
                    margin-left: 10px;
                }

            .case .swiper-container .swiper-slide .name {
                font-size: 20px;
                color: #333333;
                padding: 15px 0;
                overflow: hidden;
                text-overflow: ellipsis;
                white-space: nowrap;
            }

            .case .swiper-container .swiper-slide .desc {
                font-size: 14px;
                color: #666666;
                line-height: 22px;
                height: 66px;
            }


.hot-info {
    padding: 0 0 85px;
}

    .hot-info .section-title {
        font-size: 24px;
        font-weight: bold;
        color: #535353;
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 60px 0 45px;
    }

        .hot-info .section-title .title {
            display: flex;
            justify-content: center;
            align-items: center;
            position: relative;
        }

            .hot-info .section-title .title:after {
                content: "";
                position: absolute;
                left: 0;
                right: 0;
                bottom: -15px;
                height: 2px;
                background: #4C9ED9;
            }

    .hot-info .list {
        display: flex;
        flex-direction: column;
        flex-wrap: wrap;
        height: 405px;
    }

        .hot-info .list .item:first-child {
            width: 618px;
            height: 405px;
            position: relative;
            margin-right: 47px;
        }

            .hot-info .list .item:first-child img {
                width: 618px;
                height: 405px;
            }

            .hot-info .list .item:first-child .title {
                position: absolute;
                left: 0;
                right: 0;
                bottom: 0;
                height: 73px;
                background-color: rgba(0,0,0,0.5);
                font-size: 18px;
                color: #FFFFFF;
                padding: 0 40px;
                display: flex;
                align-items: center;
            }

        .hot-info .list .item {
            width: 737px;
            height: 50px;
            border-bottom: 1px dashed #D2D2D2;
            display: flex;
            align-items: center;
        }

            .hot-info .list .item > a {
                flex: 1;
                display: flex;
                align-items: center;
                justify-content: space-between;
                font-size: 16px;
                color: #333333;
            }

            .hot-info .list .item + .item > a:before {
                content: "\2022";
                color: #D2D2D2;
                margin-right: 20px;
            }

            .hot-info .list .item + .item > a .title {
                flex: 1;
            }

.projects {
    background-color: #F6F5F7;
    padding-bottom: 80px;
}

    .projects .section-title {
        font-size: 24px;
        font-weight: bold;
        color: #535353;
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 60px 0 45px;
    }

        .projects .section-title .title {
            display: flex;
            justify-content: center;
            align-items: center;
            position: relative;
        }

            .projects .section-title .title:after {
                content: "";
                position: absolute;
                left: 0;
                right: 0;
                bottom: -15px;
                height: 2px;
                background: #4C9ED9;
            }

    .projects .list {
        display: flex;
        justify-content: center;
    }

        .projects .list .item {
            width: 490px;
            box-shadow: 0px 3px 7px 0px rgba(0, 0, 0, 0.13);
            margin: 0 20px;
            background-color: #fff;
        }

            .projects .list .item:nth-child(3n) {
                margin-right: 0;
            }

            .projects .list .item .img {
                position: relative;
                display: flex;
                justify-content: center;
                align-items: center;
            }

                .projects .list .item .img > img {
                    width: 100%;
                    height: 220px;
                }

                .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 .info {
                display: flex;
                flex-direction: column;
                align-items: center;
                justify-content: center;
                padding-bottom: 20px;
                border-bottom: 1px dashed #D2D2D2;
            }

                .projects .list .item .info .name {
                    font-size: 20px;
                    font-weight: bold;
                    color: #4C9ED9;
                    padding: 20px 0 10px;
                }

                .projects .list .item .info .desc {
                    font-size: 16px;
                    color: #4C9ED9;
                }

            .projects .list .item .require {
                padding: 30px 30px 0;
            }

                .projects .list .item .require .name {
                    font-size: 16px;
                    color: #333333;
                    display: flex;
                    align-items: center;
                    flex-direction: column;
                }


                .projects .list .item .require .desc {
                    font-size: 14px;
                    color: #333333;
                    line-height: 22px;
                    white-space: pre-line;
                    padding: 0 15px;
                    overflow: hidden;
                    height: 110px;
                }

            .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;
                }


.passwort {
    padding: 60px 0 70px;
    background-color: #f6f5f7;
}

    .passwort .title {
        font-size: 30px;
        color: #535353;
        padding: 20px 0 10px;
        text-align: center;
    }

    .passwort .subtitle {
        font-size: 16px;
        color: #BD986D;
        text-align: center;
    }

    .passwort .subdesc {
        font-size: 14px;
        color: #999999;
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 10px 0 0;
    }

        .passwort .subdesc:before {
            content: "";
            display: inline-block;
            width: 40px;
            height: 1px;
            background: #E5E5E5;
            border-radius: 1px;
            margin-right: 5px;
        }

        .passwort .subdesc:after {
            content: "";
            display: inline-block;
            width: 40px;
            height: 1px;
            background: #E5E5E5;
            border-radius: 1px;
            margin-left: 5px;
        }

    .passwort .list {
        display: flex;
        justify-content: space-between;
    }

        .passwort .list .item {
            display: flex;
            flex-direction: column;
            align-items: center;
            width: 347px;
            background-color: #fff;
            margin-top: 85px;
            position: relative;
            padding-bottom: 30px;
        }

            .passwort .list .item .img {
                width: 124px;
                height: 124px;
                background: #4C9ED9;
                border: 1px solid #4C9ED9;
                box-shadow: 0px 3px 10px 0px rgba(0, 0, 0, 0.14);
                border-radius: 50%;
                position: absolute;
                top: -62px;
                left: 50%;
                transform: translateX(-50%);
                display: flex;
                justify-content: center;
                align-items: center;
            }

            .passwort .list .item .name {
                padding: 80px 0 30px;
                font-size: 24px;
                font-weight: bold;
                color: #4C9ED9;
                display: flex;
                flex-direction: column;
                align-items: center;
                position: relative;
            }

                .passwort .list .item .name:after {
                    content: "";
                    width: 21px;
                    height: 1px;
                    background: #4C9ED9;
                    bottom: 20px;
                    position: absolute;
                }

            .passwort .list .item .desc {
                font-size: 18px;
                color: #333333;
                width: 347px;
                padding: 0px 20px;
                line-height: 26px;
                text-align: center;
                /* overflow: hidden; */
                /* white-space: nowrap; */
                /* text-overflow: ellipsis; */
            }

    .passwort .tip {
        font-size: 18px;
        font-family: Microsoft YaHei;
        font-weight: 400;
        color: #4C9ED9;
        padding: 50px 0 25px;
        display: flex;
        justify-content: center;
        align-items: center;
    }

        .passwort .tip::before {
            content: "";
            height: 1px;
            flex: 1;
            background-color: #DCDCDC;
            margin-right: 1em;
        }

        .passwort .tip::after {
            content: "";
            height: 1px;
            flex: 1;
            background-color: #DCDCDC;
            margin-left: 1em;
        }

    .passwort .btn-box {
        display: flex;
        justify-content: center;
        align-items: center;
    }

        .passwort .btn-box .btn-online {
            display: flex;
            justify-content: center;
            align-items: center;
            width: 172px;
            height: 42px;
            background: #4C9ED9;
            border-radius: 4px;
            outline: none;
            font-size: 16px;
            font-family: Microsoft YaHei;
            font-weight: 400;
            color: #FFFFFF;
            border: none;
            cursor: pointer;
        }

            .passwort .btn-box .btn-online::after {
                content: "";
                width: 15px;
                height: 15px;
                background-image: url(../img/icon-msg.png);
                background-position: center;
                background-repeat: no-repeat;
                background-size: cover;
                margin-left: 12px;
            }

.coupon-group {
    padding: 60px 0 70px;
}

    .coupon-group .title {
        font-size: 30px;
        color: #535353;
        padding: 20px 0 10px;
        text-align: center;
    }

    .coupon-group .subtitle {
        font-size: 16px;
        color: #BD986D;
        text-align: center;
    }

    .coupon-group .subdesc {
        font-size: 14px;
        color: #999999;
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 10px 0 0;
    }

        .coupon-group .subdesc:before {
            content: "";
            display: inline-block;
            width: 40px;
            height: 1px;
            background: #E5E5E5;
            border-radius: 1px;
            margin-right: 5px;
        }

        .coupon-group .subdesc:after {
            content: "";
            display: inline-block;
            width: 40px;
            height: 1px;
            background: #E5E5E5;
            border-radius: 1px;
            margin-left: 5px;
        }

    .coupon-group .list {
        display: flex;
        flex-wrap: wrap;
        padding: 80px 0 0;
    }


        .coupon-group .list .item {
            width: 328px;
            height: 330px;
            background: #F5F5F5;
            border: 1px solid #EEEEEE;
            border-radius: 10px;
            margin-right: 29px;
            margin-bottom: 40px;
        }

            .coupon-group .list .item:nth-child(4n) {
                margin-right: 0;
            }

            .coupon-group .list .item:hover {
                background: #4C9ED9;
                border: 1px solid #4C9ED9;
            }


            .coupon-group .list .item .name {
                font-size: 30px;
                font-weight: bold;
                color: #4C9ED9;
                padding: 50px 0 30px;
                display: flex;
                flex-direction: column;
                align-items: center;
                text-align: center;
                position: relative;
                overflow: hidden;
                white-space: nowrap;
                text-overflow: ellipsis;
            }

                .coupon-group .list .item .name:after {
                    content: "";
                    width: 50px;
                    height: 3px;
                    background: #4C9ED9;
                    position: absolute;
                    bottom: 0;
                    left: 50%;
                    transform: translateX(-50%);
                }

            .coupon-group .list .item .desc {
                font-size: 18px;
                color: #333333;
                line-height: 28px;
                text-align: center;
                padding: 30px 45px 40px;
                height: 126px;
                overflow: hidden;
            }

            .coupon-group .list .item .btn-detail {
                width: 159px;
                height: 47px;
                border: 1px solid #4C9ED9;
                border-radius: 4px;
                display: flex;
                justify-content: center;
                align-items: center;
                font-size: 16px;
                color: #4C9ED9;
                margin: 0 auto;
            }

            .coupon-group .list .item:hover .name {
                color: #fff;
            }

                .coupon-group .list .item:hover .name:after {
                    background: #fff;
                }

            .coupon-group .list .item:hover .desc {
                color: #fff;
            }


            .coupon-group .list .item:hover .btn-detail {
                border: 1px solid #fff;
                background-color: #fff;
                color: #4C9ED9;
            }

.whitepaper-form {
    padding: 80px 0 0;
}

    .whitepaper-form .form-box {
        padding: 50px 0 30px;
        background-color: #fff;
        border: 1px solid #4C9ED9;
        box-shadow: 0px 3px 10px 0px rgba(0, 0, 0, 0.14);
        border-radius: 8px;
    }

        .whitepaper-form .form-box .form-title {
            font-size: 30px;
            font-weight: bold;
            color: #535353;
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 20px 0 0;
        }

        .whitepaper-form .form-box .form-subdesc {
            font-size: 20px;
            color: #4C9ED9;
            padding: 20px 0 0;
            display: flex;
            justify-content: center;
            align-items: center;
        }

            .whitepaper-form .form-box .form-subdesc:before {
                content: "";
                display: inline-block;
                width: 40px;
                height: 1px;
                background: #4C9ED9;
                border-radius: 1px;
                margin-right: 5px;
            }

            .whitepaper-form .form-box .form-subdesc:after {
                content: "";
                display: inline-block;
                width: 40px;
                height: 1px;
                background: #4C9ED9;
                border-radius: 1px;
                margin-left: 5px;
            }

        .whitepaper-form .form-box .form-inline {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 20px 40px;
        }

            .whitepaper-form .form-box .form-inline .form-group > label {
                font-size: 14px;
                font-weight: 400;
                color: #333333;
                margin-right: 15px;
            }

                .whitepaper-form .form-box .form-inline .form-group > label > span {
                    font-size: 14px;
                    font-weight: 400;
                    color: #4C9ED9;
                }

            .whitepaper-form .form-box .form-inline .form-control {
                height: 44px;
                width: 290px;
                border: 1px solid #DCDCDC;
                border-radius: 8px;
                outline: none;
                padding: 0 1em;
            }

        .whitepaper-form .form-box .form-tips {
            font-size: 15px;
            text-align: center;
            color: #D80922;
        }

        .whitepaper-form .form-box .form-btns {
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 30px 0;
        }

            .whitepaper-form .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;
            }



@media (max-width: 1480px) {
    .lead-box .img > img {
        width: 360px;
        height: 360px;
    }

    .passwort .list .item {
        width: 24.5%
    }

        .passwort .list .item .desc {
            width: 100%
        }

    .coupon-group .list .item {
        width: 23%;
        margin-right: 2%;
        margin-bottom: 2%
    }

        .coupon-group .list .item .name {
            font-size: 26px;
        }

        .coupon-group .list .item .desc {
            font-size: 16px;
        }


    .projects .list {
        overflow: hidden
    }

        .projects .list .item {
            margin: 0px 3%
        }

            .projects .list .item .img > img {
                height: 174px;
            }
}

@media (max-width: 1250px) {
    .lead-box .img > img {
        width: 62%;
        height: auto;
    }

    .advantage .layout .list .item {
        padding: 0px;
    }

        .advantage .layout .list .item .name {
            font-size: 18px;
            padding: 30px 0 40px;
        }

    .passwort .list .item {
        width: 24%
    }

        .passwort .list .item .desc {
            font-size: 16px;
        }

    .coupon-group .list .item .name {
        font-size: 20px;
    }

    .coupon-group .list .item .desc {
        font-size: 14px;
    }

    .coupon-group .list .item .btn-detail {
        width: 119px;
        height: 40px;
    }


    .projects .list .item .info .name {
        font-size: 18px;
    }

    .projects .list .item .require {
        padding: 15px 15px 0;
    }

    .projects .list .item .btn-actions {
        padding: 15px 15px
    }

    .projects .list .item .img > img {
        height: 13vw;
    }
}

@media (max-width: 1100px) {
    .lead-box .img > img {
        width: 52%;
        height: auto;
    }

    .advantage .layout .list .item {
        height: auto;
    }

        .advantage .layout .list .item .desc {
            font-size: 12px;
            height: 65px;
            padding: 0px 10px 30px;
        }

    .coupon-group .list .item .desc {
        padding: 30px 20px 38px
    }

    .coupon-group .list .item {
        height: 300px;
    }
}

.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 .news {
        width: 740px;
    }

        .article .flex-article .news .swiper-container {
            width: 740px;
            height: 438px;
        }

        .article .flex-article .news .swiper-slide {
            display: block;
            width: 740px;
            height: 438px;
        }

            .article .flex-article .news .swiper-slide a {
                display: block;
                cursor: pointer;
                width: 740px;
                height: 209px;
                background-color: #FFFFFF;
                border: 1px solid #DBDBDB;
                display: flex;
                padding: 22px 20px 23px 20px;
            }

                .article .flex-article .news .swiper-slide a + a {
                    margin-top: 20px;
                }

                .article .flex-article .news .swiper-slide a:hover {
                    box-shadow: 0px 3px 16px 0px rgba(0, 0, 0, 0.11);
                }

                .article .flex-article .news .swiper-slide a .img {
                    width: 250px;
                    height: 164px;
                    flex-shrink: 0;
                }

                    .article .flex-article .news .swiper-slide a .img > img {
                        width: 250px;
                        height: 164px;
                    }

                .article .flex-article .news .swiper-slide a .info {
                    padding: 0 0 0 20px;
                    overflow: hidden;
                }

                    .article .flex-article .news .swiper-slide a .info .name {
                        font-size: 18px;
                        font-weight: 500;
                        color: #333333;
                        overflow: hidden;
                        text-overflow: ellipsis;
                        white-space: nowrap;
                    }

                .article .flex-article .news .swiper-slide a:hover .info .name {
                    color: #4C9ED9;
                }

                .article .flex-article .news .swiper-slide a .info .pubdate {
                    font-size: 14px;
                    color: #999999;
                    margin-top: 8px;
                }

                .article .flex-article .news .swiper-slide a .info .desc {
                    font-size: 14px;
                    color: #999999;
                    line-height: 28px;
                    text-overflow: -o-ellipsis-lastline;
                    overflow: hidden;
                    text-overflow: ellipsis;
                    display: -webkit-box;
                    -webkit-line-clamp: 3;
                    line-clamp: 3;
                    -webkit-box-orient: vertical;
                    height: 84px;
                    margin-top: 30px;
                }


    .article .flex-article .clopedia {
        width: 632px;
    }

        .article .flex-article .clopedia .list {
            width: 632px;
            height: 438px;
            background-color: #FFFFFF;
            border: 1px solid #DBDBDB;
            padding: 10px 32px 0 37px;
        }

            .article .flex-article .clopedia .list .item {
                border-bottom: 1px dashed #D2D2D2;
            }

                .article .flex-article .clopedia .list .item > a {
                    height: 52px;
                    display: flex;
                    align-items: center;
                    font-size: 16px;
                    color: #333333;
                    overflow: hidden;
                }

                    .article .flex-article .clopedia .list .item > a:hover {
                        color: #4C9ED9;
                    }

                .article .flex-article .clopedia .list .item:nth-child(8) {
                    border-bottom: none;
                }

                .article .flex-article .clopedia .list .item > a .title {
                    overflow: hidden;
                    text-overflow: ellipsis;
                    white-space: nowrap;
                    flex: 1;
                }

                .article .flex-article .clopedia .list .item > a::before {
                    content: "";
                    width: 8px;
                    height: 8px;
                    background: #D2D2D2;
                    border-radius: 50%;
                    margin-right: 20px;
                }

                .article .flex-article .clopedia .list .item > a .time {
                    font-size: 14px;
                    color: #999999;
                }

                .article .flex-article .clopedia .list .item > a:hover .time {
                    color: #4C9ED9;
                }
