﻿html {
    @media screen and (max-width: 1500px) {
        overflow-x: scroll;
    }

    @media screen and (min-width: 1500px) {
        overflow-x: hidden;
    }

    padding: 0;
    margin: 0;
    background-color: #fff !important;
}


/*定义滚动条高宽及背景
    高宽分别对应横竖滚动条的尺寸*/
::-webkit-scrollbar {
    width: 4px;
    height: 8px;
    background-color: rgba(0,0,0,.2);
}

/*定义滚动条轨道
    内阴影+圆角*/
::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
    border-radius: 10px;
    background-color: #F5F5F5;
}
/*定义滑块
        内阴影+圆角*/
::-webkit-scrollbar-thumb {
    border-radius: 10px;
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,.3);
    background-color: #b3b3b3;
}

section {
    min-width: 1500px;
    margin: 0 auto;
    padding: 0;
}

.bannerTop_fixed {
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

.banner {
    width: 100vw;
    height: 100vh;
    min-height: 600px;
    background-color: #000;
    position: relative;
}

    .banner .bannerTop {
        position: fixed;
        width: 100vw;
        top: 0px;
        color: #fff;
        z-index: 999;
        -webkit-transition: all 0.8s cubic-bezier(0.22, 0.61, 0.36, 1);
        -moz-transition: all 0.8s cubic-bezier(0.22, 0.61, 0.36, 1);
        -ms-transition: all 0.8s cubic-bezier(0.22, 0.61, 0.36, 1);
        -o-transition: all 0.8s cubic-bezier(0.22, 0.61, 0.36, 1);
    }

.head {
    width: 100vw;
    height: 150px;
    max-width: 1500px;
    margin: 0 auto;
}

    .head .welcome, .head .welcome a {
        text-align: right;
        height: 32px;
        line-height: 32px;
        font-size: 16px;
        color: #9A9A9A;
    }

    .head .head-nav {
        padding: 30px 0;
    }

        .head .head-nav .logo {
            width: 434px;
            height: 52px;
            background: url(/Content/img/2023/logo.png);
        }

        .head .head-nav .menu ul {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

            .head .head-nav .menu ul li {
                position: relative;
                margin: 0 30px;
            }

                .head .head-nav .menu ul li:last-child {
                    margin-left: 50px;
                    margin-right: 10px;
                }

                .head .head-nav .menu ul li a {
                    font-size: 16px;
                    color: #fff;
                    line-height: 37px;
                    font-weight: 400;
                    transition: all .3s;
                }

.bannerTop_fixed .head .welcome, .bannerTop_fixed .head .welcome a {
    color: #000;
}

.bannerTop_fixed .head .head-nav .menu ul li a {
    color: #000;
}

.bannerTop_fixed .head .head-nav .menu ul li .nav-child {
    background: rgba(0,0,0,0.8);
}

    .bannerTop_fixed .head .head-nav .menu ul li .nav-child dd a {
        color: #fff;
    }

.bannerTop_fixed .head .head-nav .menu ul li .vipCenter {
    border: 1px solid #C9C9C9;
    color: #000;
}

.bannerTop_fixed .head .head-nav .logo {
    background: url(/Content/img/2023/logo2.png);
}

.head .head-nav .menu ul li a:hover {
    position: relative;
    color: #B59B6D !important;
    transition: all .3s;
}

.head .head-nav .menu ul li .active {
    position: relative;
    transition: all .3s;
}

    .head .head-nav .menu ul li .active:after {
        content: '';
        position: absolute;
        width: 65px;
        height: 3px;
        border-radius: 3px;
        bottom: -5px;
        left: 50%;
        transform: translateX(-50%);
    }

.head .head-nav .menu ul li .vipCenter {
    border: 1px solid #fff;
    border-radius: 22px;
    width: 135px;
    height: 44px;
    color: #fff;
    font-size: 16px;
    font-weight: 400;
    line-height: 44px;
    text-align: center;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .head .head-nav .menu ul li .vipCenter img {
        margin-right: 5px;
    }

.head .head-nav .menu ul li .nav-child {
    display: none;
    position: absolute;
    min-width: 100%;
    line-height: 36px;
    box-shadow: 0 2px 4px #0000001f;
    background: rgba(0,0,0,0.5);
    z-index: 100;
    border-radius: 2px;
    white-space: nowrap;
    animation-duration: 0.3s;
    animation-fill-mode: both;
    left: -37px;
    top: 36px;
    padding: 5px 20px;
    text-align: center;
}

    .head .head-nav .menu ul li .nav-child dd {
        position: relative;
        margin-inline-start: 0;
    }

        .head .head-nav .menu ul li .nav-child dd a {
            display: block;
            padding: 0 20px;
            transition: all .3s;
            -webkit-transition: all .3s;
        }

    .head .head-nav .menu ul li .nav-child:hover {
        display: block;
    }

.head .head-nav .menu ul li:hover .nav-child {
    display: block;
}




.banner .bannerBottom {
    width: 100%;
    position: absolute;
    bottom: 0px;
    color: #fff;
    z-index: 9;
    height: 146px;
    background: rgba(0,0,0,0.5);
}

    .banner .bannerBottom .nav {
        width: 1500px;
        height: 146px;
        margin: 0 auto;
    }

        .banner .bannerBottom .nav .box {
            width: 33.33333333%;
        }

            .banner .bannerBottom .nav .box .img {
                width: 40px;
                height: 46px;
                display: flex;
                align-items: center;
            }

                .banner .bannerBottom .nav .box .img img {
                    width: 100%;
                }

            .banner .bannerBottom .nav .box .des {
                font-size: 14px;
                color: #9A9A9A;
            }

.banner .layui-carousel-ind {
    top: -200px;
}

    .banner .layui-carousel-ind ul {
        background: none !important;
    }

        .banner .layui-carousel-ind ul li {
            width: 50px !important;
            height: 6px !important;
            background: rgba(255,255,255,0.5) !important;
            border-radius: 3px !important;
        }

            .banner .layui-carousel-ind ul li.layui-this {
                background: #FFFFFF !important;
            }

.banner .layui-carousel-arrow {
    width: 38px !important;
    height: 72px !important;
    background: rgba(0,0,0,0.5) !important;
    border-radius: inherit !important;
}

.banner .bannerBg {
    background-size: cover !important;
}

    .banner .bannerBg div {
        position: relative;
        top: calc(50% - 80px);
    }

        .banner .bannerBg div p {
            width: 100%;
            text-align: center;
        }

            .banner .bannerBg div p:first-child {
                color: #fff;
                font-size: 64px;
            }

            .banner .bannerBg div p:last-child {
                font-size: 32px;
                color: #9A9A9A
            }


.financing {
    width: 100vw;
    height: calc(100vh - 150px);
    min-height: 800px;
    background-color: #fff;
}

    .financing .main {
        width: 1500px;
        margin: 0 auto;
    }

        .financing .main .nav {
            padding-top: 80px;
            text-align: center;
        }

            .financing .main .nav i {
                width: 100px;
                height: 5px;
                background: #D1AB66;
                border-radius: 3px;
                display: inline-block;
            }

            .financing .main .nav div {
                font-size: 32px;
                line-height: 32px;
            }

                .financing .main .nav div.p1 {
                    color: #333;
                }

                .financing .main .nav div.p2 {
                    color: #ECECEC;
                }

        .financing .main .list {
            padding-top: 110px;
        }

            .financing .main .list .item {
                width: 25%;
                text-align: center;
                cursor: pointer;
            }

                .financing .main .list .item .title {
                    color: #333;
                    font-size: 26px;
                    padding-top: 15px;
                }

                .financing .main .list .item .des {
                    color: #939599;
                    font-size: 14px;
                    padding-top: 20px;
                }

        .financing .main .btn-div {
            padding-top: 110px;
            text-align: center;
        }

            .financing .main .btn-div input {
                width: 360px;
                height: 58px;
                background: #D1AB66;
                border-radius: 29px;
                border: none;
                color: #fff;
                font-size: 24px;
                cursor: pointer;
            }


.financial {
    width: 100vw;
    height: calc(100vh - 150px);
    background: url(/Content/img/2023/jrcs-beijing.png) no-repeat center;
    background-size: cover;
    min-height: 800px;
}

    .financial .main {
        width: 1500px;
        margin: 0 auto;
    }

        .financial .main .nav {
            padding-top: 80px;
            text-align: center;
        }

            .financial .main .nav i {
                width: 100px;
                height: 5px;
                background: #D1AB66;
                border-radius: 3px;
                display: inline-block;
            }

            .financial .main .nav div {
                font-size: 32px;
                line-height: 32px;
            }

                .financial .main .nav div.p1 {
                    color: #fff;
                }

                .financial .main .nav div.p2 {
                    color: #aeaeae;
                }

        .financial .main .content {
            padding-top: 110px;
        }

        .financial .main .list {
            width: 1156px;
            height: 464px;
        }

            .financial .main .list .menu {
                width: 221px;
                height: 464px;
                background: url(/Content/img/2023/jrcs-beiin2.png) no-repeat center;
                background-size: cover;
            }

                .financial .main .list .menu ul {
                    width: 160px;
                    float: right;
                }

                    .financial .main .list .menu ul li {
                        font-size: 18px;
                        color: #fff;
                        height: 46px;
                        line-height: 46px;
                        padding-left: 18px;
                        margin-top: 10px;
                    }

                        .financial .main .list .menu ul li.li {
                            cursor: pointer;
                        }

                        .financial .main .list .menu ul li:first-child {
                            margin-top: 50px;
                        }

                        .financial .main .list .menu ul li.active {
                            background-color: #fff;
                            color: #B59B6D;
                            border-radius: 23px 0 0 23px;
                        }

                            .financial .main .list .menu ul li.active:before {
                                content: ">";
                                float: right;
                                padding-right: 8px;
                                font-family: fangsong;
                                font-weight: 700;
                            }

                        .financial .main .list .menu ul li.flow {
                            font-size: 16px;
                            margin-top: 50px;
                            height: auto;
                            line-height: 36px;
                        }

            .financial .main .list .product {
                padding: 26px 27px;
                width: 881px;
                height: 412px;
                background-color: #fff;
            }

                .financial .main .list .product .item {
                    width: 279px;
                    height: 410px;
                    border: 1px solid #EFD484;
                    background-color: #FFFCF4;
                }

                    .financial .main .list .product .item .type {
                        width: 279px;
                        height: 34px;
                        line-height: 34px;
                        background-color: #B59B6D;
                        color: #fff;
                        text-align: center;
                        font-size: 16px;
                        overflow: hidden;
                        white-space: nowrap;
                        text-overflow: ellipsis;
                        -o-text-overflow: ellipsis;
                    }

                    .financial .main .list .product .item .title {
                        width: 259px;
                        height: 104px;
                        background: url(/Content/img/2023/jrcs-beijing3.png) no-repeat center;
                        background-size: cover;
                        font-size: 16px;
                        color: #413206;
                        display: inline-grid;
                        text-align: center;
                        align-items: center;
                        padding: 10px;
                        overflow: hidden;
                    }

                    .financial .main .list .product .item .info {
                        padding: 36px 23px;
                    }

                        .financial .main .list .product .item .info p {
                            font-size: 16px;
                            color: #686868;
                            line-height: 32px;
                            overflow: hidden;
                            white-space: nowrap;
                            text-overflow: ellipsis;
                            -o-text-overflow: ellipsis;
                        }

                            .financial .main .list .product .item .info p label {
                                color: #413206;
                            }

                    .financial .main .list .product .item .btn {
                        width: 100%;
                        text-align: center;
                    }

                        .financial .main .list .product .item .btn a {
                            width: 229px;
                            height: 58px;
                            line-height: 58px;
                            background: #D1AB66;
                            border-radius: 29px;
                            color: #fff;
                            font-size: 16px;
                            cursor: pointer;
                            display: block;
                            margin: 0 auto;
                        }

.financial-item-logo {
    height: 78px;
    background: #FFFFFF;
    border: 1px solid #ECECEC;
    text-align: center;
    margin: 22px 23px;
}

.financial .main .apply {
    width: 272px;
    height: 392px;
    padding: 36px;
    background: url(/Content/img/2023/bwzzj-beijing.png) no-repeat center;
    background-size: cover;
}

    .financial .main .apply .applyNav {
        color: #fff;
        font-size: 20px;
    }

    .financial .main .apply .applyTel {
        color: #fff;
        font-size: 28px;
        text-align: right;
        line-height: 50px;
    }

    .financial .main .apply .applyForm {
        margin-top: 10px;
    }

        .financial .main .apply .applyForm p {
            padding: 9px 0;
        }

        .financial .main .apply .applyForm label {
            color: #fff;
            font-size: 16px;
        }

        .financial .main .apply .applyForm input {
            width: 169px;
            height: 32px;
            line-height: 32px;
            margin-left: 10px;
            padding: 0 10px;
        }

    .financial .main .apply .btn {
        margin-top: 20px;
        text-align: center;
    }

        .financial .main .apply .btn input {
            width: 271px;
            height: 50px;
            color: #fff;
            border: none;
            background-color: #D1AB66;
            font-size: 16px;
            cursor: pointer;
        }

    .financial .main .apply .tips {
        color: #989CA4;
        padding: 5px 0;
    }


.bank {
    width: 100vw;
    height: calc(100vh - 150px);
    background: url(/Content/img/index/37.png) no-repeat center;
    background-color: #fff;
}

    .bank .main {
        width: 1500px;
        margin: 0 auto;
    }

        .bank .main .nav {
            padding-top: 80px;
            text-align: center;
        }

            .bank .main .nav i {
                width: 100px;
                height: 5px;
                background: #D1AB66;
                border-radius: 3px;
                display: inline-block;
            }

            .bank .main .nav div {
                font-size: 32px;
                line-height: 32px;
            }

                .bank .main .nav div.p1 {
                    color: #333;
                }

                .bank .main .nav div.p2 {
                    color: #ECECEC;
                }

        .bank .main .banks-body {
            margin-top: 72px;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
        }

            .bank .main .banks-body .img-div {
                width: 274px;
                height: 135px;
                background: #FFFFFF;
                border-radius: 5px;
                border: 1px solid rgba(189, 189, 189, 0.35);
                box-shadow: 0px 2px 10px 6px rgba(189, 189, 189, 0.35);
                margin-bottom: 39px;
                transition: all 0.6s;
            }

                .bank .main .banks-body .img-div:hover {
                    transform: scale(1.06);
                    border: 1px solid #ADC7FF;
                }

                .bank .main .banks-body .img-div img {
                    width: 100%;
                    height: 100%;
                }
