@media screen and (max-height: 800px) {

}

@keyframes blockGuideBut {
    0% {
        transform: scale(0.9);
        opacity: 0;
    }
}

 @property --guide-but-start-color {
    syntax: '<color>';
    initial-value: #18377C;
    inherits: false;
}

@property --guide-but-end-color {
    syntax: '<color>';
    initial-value: #18377C;
    inherits: false;
}

.block-guide{
    margin-top: 72px;
    min-height: 400px;
    background: #FAFCFF;
    position: relative;
    overflow: hidden;
    .left{
        height: 590px;
        .cont{
            padding-top: 80px;
            .title-1{
                font-size: 14px;
                color: #18377C;
                letter-spacing: 0.08em;
            }
            .title-2{
                color: #18377C;
                font-weight: bold;
                margin-top: 20px;
            }
            .title-3{
                color: #18377C;
                opacity: .7;
                margin-top: 20px;
            }
            .cont-input{
                padding-right: 40px;
                .top{
                    display: flex;
                    gap: 20px;
                    .list{
                        flex: 1;
                        margin-top: 26px;
                        background: #E5EEFF;
                        border-radius: 16px;
                        width: 100%;
                        height: 100px;
                        .checkbox{
                            width: 20px;
                            height: 20px;
                            accent-color: #18377C;
                            margin-top: 14px;
                            margin-left: 14px;
                        }
                        .icon-cont{
                            margin-top: -22px;
                            text-align: center;
                            >div{
                                color: #18377C;
                                margin-top: 10px;
                            }
                        }
                    }
                }
                .bottom{
                    display: flex;
                    gap: 20px;
                    .list{
                        background: #E5EEFF;
                        border-radius: 16px;
                        width: 100%;
                        height: 100px;
                        margin-top: 20px;
                        .icon-cont{
                            .checkbox{
                                width: 20px;
                                height: 20px;
                                accent-color: #18377C;
                                margin-top: 26px;
                            }
                            text-align: center;
                            >div{
                                color: #18377C;
                                margin-top: 10px;
                            }
                        }
                    }
                }
            }
        }
        .start{
            width: 100%;
            .but{
                border-radius: 60px;
                width: 320px;
                height: 40px;
                text-align: center;
                line-height: 40px;
                color: #ffffff;
                margin-top: 60px;
                text-decoration: none;
                cursor:pointer;
                display: block;
                background: linear-gradient(90deg, var(--guide-but-start-color) 0%, var(--guide-but-end-color) 100%);
                transition: --guide-but-start-color 0.8s ease, --guide-but-end-color 0.8s ease, transform 0.8s ease;
                &:hover{
                    --guide-but-start-color: #18377C;
                    --guide-but-end-color: #111111;
                    filter: brightness(1.2);
                }
                animation: blockGuideBut 1.0s cubic-bezier(0.18, 0.89, 0.32, 1.28) forwards;
            }
        }
    }
    .right{
        position: absolute;
        right: 100px;
        top: 0;
        height: 100%;
        .cont{
            width: 580px;
            height: 590px;
            position: relative;
            padding-top: 40px;
            .bg{
                width: 100%;
                height: 100%;
                background-image: url(/webasset/hypd/images/index/block-guide-03.webp);
                background-repeat: no-repeat;
                background-size:100% 100%;
            }
            .report{
                position: absolute;
                left: -100px;
                bottom: 240px;
                box-shadow: 0px 4px 24px 0px rgba(97, 153, 255, 0.2);
                border-radius: 20px;
                >img{
                    width: 220px;
                    height: 220px;
                }
            }
            .amount{
                box-shadow: 0px 4px 24px 0px rgba(97, 153, 255, 0.2);
                border-radius: 20px;
                position: absolute;
                left: -50px;
                bottom: 40px;
                >img{
                    width: 260px;
                    height: 170px;
                }
            }
        }
    }
}

.block-scenes{
    background: #FAFCFF;
    padding-top: 100px;
    .title{
        color: #18377C;
        text-align: center;
    }
    .desc{
        color: #777777;
        text-align: center;
        padding-top: 30px;
        line-height: 26px;
    }
    overflow: hidden;
    .scene-cards-box{
        position: relative;
        margin: auto;
        padding-top: 60px;
        overflow-x: clip;
        .scene-cards {
            width: 100%;
            display: flex;
            justify-content: space-between;
            flex-wrap: nowrap;
            .scene-card {
                display: flex;
                flex-direction: column;
                gap: 20px;
                transition: transform 0.05s ease-out;
                will-change: transform;
                transform: translate3d(0, 0, 0);
                backface-visibility: hidden;
                >img {
                    width: calc((100vw - 6 * 20px) / 7);
                    height: auto;
                    border-radius: 15px;
                    /* 添加底部阴影效果 */
                    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12),
                        0 4px 16px rgba(0, 0, 0, 0.08),
                        0 2px 8px rgba(0, 0, 0, 0.06);
                    transition: box-shadow 0.3s ease, transform 0.3s ease-out;
                    &:hover{
                        box-shadow: 0 16px 48px rgba(0, 0, 0, 0.15),
                            0 8px 24px rgba(0, 0, 0, 0.12),
                            0 4px 12px rgba(0, 0, 0, 0.08);
                        transform: translateY(-6px);
                    }
                }
            }
        }
    }

    .scene-responsive-layout{
            margin-top: 40px;
            .swiper {
              width: 100%;
              height: 100%;
              overflow: visible;
            }
            .swiper-slide {
              text-align: center;
              display: flex;
              justify-content: center;
              align-items: center;
              width: 33.33333%;
              .img-magnify{
                border-radius: 24px;
                >img {
                  display: block;
                  width: 100%;
                  height: 100%;
                  object-fit: cover;
                  border-radius: 24px;
                }
              }
            }
        }
        .pagination{
            margin-top: 6px;
            display: flex;
            justify-content: end;
            padding-right: 20px;
            .disabled{
                background: rgba(24, 55, 124,0.3);
            }
            .usable{
                background: #18377C;
                cursor: pointer;
            }
            .prev,
            .next{
                width: 40px;
                height: 40px;
                border-radius: 20px;
                box-shadow: 0px 0px 24px 0px rgba(165,189,251,0.24);
                line-height: 40px;
                text-align: center;
                color: #fff;
            }
            .next{
                margin-left: 24px;
            }
    }
}
.block-equity{
    background: #ffffff;
    padding-top: 100px;
    .title{
        font-weight: bold;
        color: #18377C;
        text-align: center;
        padding-bottom: 20px;
    }
    .item{
        margin-top: 40px;
        background: #F5F8FF;
        border-radius: 16px;
        padding-top: 60px;
        .left-text, .right-text{
            padding-top: 60px;
            padding-left: 90px;
            .cont{
                width: 380px;
                .tip{
                    color: #486FC6;
                }
                .sub{
                    margin-top: 20px;
                    color: #18377C;
                }
                .desc{
                    margin-top: 20px;
                    color: #18377C;
                    text-align: justify;
                    line-height: 26px;
                    padding-right: 10px;
                }
                .know{
                    .but{
                        border: 1px solid rgba(24,55,124,0.23);
                        border-radius: 162px;
                        width: 310px;
                        height: 40px;
                        text-align: center;
                        line-height: 40px;
                        color: #18377C;
                        margin-top: 50px;
                        text-decoration: none;
                        cursor:pointer;
                        display: block;
                        &:hover{
                            background: #E5EEFF;
                        }
                    }
                }
            }
        }
        .right-text{
            display: flex;
            justify-content: end;
            padding-right: 90px;
            .cont{
                .know{
                    display: flex;
                    justify-content: end;
                }
            }
        }
        .right-img, .left-img{
            text-align: right;
            .cont{
                .img{
                    max-width: 100%;
                    height: 420px;
                }
            }
        }
        .left-img{
            text-align: left;
        }
    }
}

.block-solution{
    background: #FAFCFF;
    margin-top: 100px;
    padding-bottom: 80px;
    .title{
        padding-top: 100px;
        color: #18377C;
        text-align: center;
    }
    .solution-row{
        .solution-card.flipped .card-inner {
            transform: rotateY(180deg);
        }
        .solution-card {
            margin-top: 80px;
            width: 100%;
            height: 460px;
            perspective: 1000px;
            cursor: pointer;
            .card-inner {
                position: relative;
                width: 100%;
                height: 100%;
                text-align: center;
                transition: transform 0.8s;
                transform-style: preserve-3d;
                border-radius: 18px;
                box-shadow: 0px 4px 23px 0px rgba(185, 207, 255, 0.78);
                background-color: #ffffff;
                .card-front,
                .card-back {
                    position: absolute;
                    width: 100%;
                    height: 100%;
                    backface-visibility: hidden;
                    background: #fff;
                    border-radius: 18px;
                    box-shadow: 0 2px 8px rgba(26, 63, 166, 0.06);
                    display: flex;
                    flex-direction: column;
                    align-items: center;
                    box-sizing: border-box;
                }
                .card-back {
                    transform: rotateY(180deg);
                    padding: 0;
                    justify-content: flex-start;
                    box-sizing: border-box;
                    .solution-title {
                        color: #18377C;
                        height: 88px;
                        line-height: 88px;
                        text-align: center;
                        width: 100%;
                        margin: 0;
                    }
                    .solution-content {
                        display: flex;
                        flex-direction: column;
                        justify-content: space-between;
                        flex: 1;
                        width: 100%;
                        padding: 20px 12px 12px;
                        box-sizing: border-box;
                        .solution-item {
                            text-align: left;
                            display: flex;
                            align-items: center;
                            gap: 8px;
                            margin-bottom: 25px;
                            padding: 0 4px;
                            >p {
                                margin: 0;
                                color: #000000;
                                line-height: 26px;
                            }
                        }
                        .solution-btn {
                            width: 220px;
                            margin: 0 auto 30px;
                            padding: 6px 24px;
                            background: #F5F8FF;
                            color: #18377C;
                            border: 1px solid #18377C;
                            border-radius: 30px;
                            cursor: pointer;
                            transition: all 0.3s;
                            text-decoration: none;
                            &:hover{
                                background: #18377C;
                                color: #fff;
                                transform: translateY(-2px);
                            }
                        }
                    }
                }
                .card-front{
                    .solution-title {
                        color: #18377C;
                        height: 88px;
                        text-align: center;
                        line-height: 88px;
                        width: 100%;
                    }
                    .solution-img {
                        flex: 1;
                        width: 100%;
                        overflow: hidden;
                        >img{
                            width: 100%;
                            height: 100%;
                            object-fit: cover;
                            border-radius: 0 0 18px 18px;
                        }
                    }
                    .solution-img-arrow {
                        position: absolute;
                        bottom: 10px;
                        right: 14px;
                    }
                }
            }
        }
    }
}
.block-control{
    background: #ffffff;
    .title{
        padding-top: 100px;
        color: #18377C;
        text-align: center;
    }
    .sub{
        color: #18377C;
        text-align: center;
        margin-top: 30px;
    }
    .control-row {
        display: flex;
        justify-content: center;
        margin-top: 60px;
        .control-card {
            border-radius: 18px;
            display: flex;
            flex-direction: column;
            align-items: center;
            .control-img{
                border-radius: 24px;
                position: relative;
                overflow: hidden;
                .mask-layer{
                    z-index: 10;
                    background: linear-gradient(180deg, rgba(255, 255, 255, 0.3) 0%, rgba(0,0,0, 0.7) 100%);position: absolute; left:0;bottom:0;width:346px;height:290px;
                    &:hover ~ .img-layer {
                        transform: scale(1.1);
                    }
                }
                .img-layer {
                    transition: all 0.5s;
                }
                .img-layer:hover {
                    transform: scale(1.1);
                }
            }
            .control-content {
                display: flex;
                margin: 20px 28px 28px;
                gap:15px;
                .control-num {
                    font-size: 74px;
                    color: #18377C;
                }
                .control-title {
                    color: #18377C;
                    margin: 20px 0 8px;
                    text-align: left;
                }

                .control-text {
                    color: #777777;
                    margin-bottom: 12px;
                    text-align: left;
                    line-height: 26px !important;
                }
            }
        }
    }
}
.block-budget{
    background: #FAFCFF;
    padding-bottom: 60px;
    .title{
        color: #18377C;
        text-align: center;
        padding: 100px 0 40px 0;
    }
    .budget-row {
        margin-bottom: 40px;
        .budget-card {
            overflow: hidden;
            background: #fff;
            border-radius: 18px;
            padding: 30px 0 30px 0;
            box-shadow: 0 2px 8px rgba(26, 63, 166, 0.06);
            display: flex;
            align-items: center;
            gap: 50px;
            .budget-left {
                padding: 0 50px 0 50px;
                display: flex;
                flex-direction: column;
                justify-content: center;
                align-items: center;
                flex: 1;
                gap: 16px;
                .budget-content{
                    .budget-title {
                        text-align: center;
                        color: #18377C;
                        margin-bottom: 16px;
                    }
                    .budget-desc {
                        color: #18377C;
                        line-height: 26px;
                        text-align: justify;
                    }
                }
            }
            .budget-left-special{
                padding: 0 105px 0 60px;
            }

            .budget-right {
                padding: 0 110px;
                display: flex;
                align-items: end;
                justify-content: end;
                gap: 60px;
                .img-magnify{
                    border-radius: 24px;
                }
                .right-item{
                    margin-left: 10px;
                    >p{
                        margin: 10px 0;
                        padding: 5px 15px;
                        background: #FFFFFF;
                        box-shadow: 0px 1px 7px 0px rgba(0, 0, 0, 0.13);
                        border-radius: 15px 15px 15px 15px;
                        color: #18377C;
                    }
                    .one{
                         transform: translateX(100%);
                         opacity: 0;
                         transition: transform 1.2s ease 1.4s, opacity 0.8s ease 1.4s;
                    }
                    .two{
                         transform: translateX(100%);
                         opacity: 0;
                         transition: transform 1.2s ease 1.8s, opacity 0.8s ease 1.8s;
                    }
                    .three{
                         transform: translateX(100%);
                         opacity: 0;
                         transition: transform 1.2s ease 2.4s, opacity 0.8s ease 2.4s;
                    }
                    .four{
                         transform: translateX(100%);
                         opacity: 0;
                         transition: transform 1.2s ease 2.8s, opacity 0.8s ease 2.8s;
                    }
                    .animate{
                        transform: translateX(0);
                        opacity: 1;
                    }
                }
                .seach-alipay{
                    margin-bottom: 75px;
                    margin-left: 20px;
                }
            }
            .budget-right-special{
                display: flex;
                justify-content: left;
                gap:0px;
                padding: 0 0 0 50px;
            }
            &:hover{
                box-shadow: 0px 8px 20px 0px rgba(165,189,251,0.24);
            }
        }
    }
}

.block-slogan{
    background: #ffffff;
    padding-bottom: 90px;
    .title{
        padding-top: 90px;
        color: #18377C;
        text-align: center;
    }
    .deduce{
        display: flex;
        justify-content: center;
        .but{
            border-radius: 60px;
                width: 320px;
                height: 40px;
                text-align: center;
                line-height: 40px;
                color: #ffffff;
                font-size: 20px;
                margin-top: 60px;
                text-decoration: none;
                cursor:pointer;
                display: block;
                background: linear-gradient(90deg, var(--guide-but-start-color) 0%, var(--guide-but-end-color) 100%);
                transition: --guide-but-start-color 0.8s ease, --guide-but-end-color 0.8s ease, transform 0.8s ease;
                &:hover{
                    --guide-but-start-color: #18377C;
                    --guide-but-end-color: #111111;
                    filter: brightness(1.2);
                }
                animation: blockGuideBut 1.0s cubic-bezier(0.18, 0.89, 0.32, 1.28) forwards;
        }
    }
}


@media (max-width: 1024px) {
    .block-guide{
        margin-top: 56px;
        .left{
            height: 624px;
            margin-top: 440px;
            .cont{
                padding-top: 40px;
                .cont-input{
                    padding-right: 0px;
                    .top, .bottom{
                        gap:10px;
                    }
                }
            }
            .start{
                display: flex;
                justify-content: center;
            }
        }
        .right{
            height: 400px;
            .cont{
                height: 400px;
                padding-top: 0px;
                .report{
                    left: 150px;
                    bottom: -40px;
                    >img{
                        width: 160px;
                        height: 160px;
                    }
                }
                .amount{
                    left: 320px;
                    bottom: -26px;
                    >img{
                        width: 190px;
                        height: 130px;
                    }
                }
            }
        }
    }
    .block-scenes {
        padding-top: 40px;
        .desc{
            text-align: justify;
        }
        .scene-responsive-layout {
            box-shadow: 0px 8px 20px 0px rgba(165, 189, 251, 0.24);
            .swiper-slide{
                width: 60%;
            }
        }
   }
   .block-equity{
    padding-top: 40px;
     .item{
        padding: 0px 10px 10px 10px;
        .left-text{
            padding-top: 30px;
            padding-left: 10px;
            .cont{
                width: 100%;
                .desc{
                    padding-right: 0px;
                }
                .know{
                    width: 100%;
                    display: flex;
                    justify-content: center;
                }
            }
        }
        .right-img{
            margin-top: 20px;
            padding-right: 15px !important;
            .cont{
                .img{
                    width: 100%;
                    height: auto;
                }
            }
        }
        .left-img{
            .cont{
                padding-top: 10px;
                .img{
                    width: 100%;
                    height: auto;
                }
            }
        }
        .right-text{
            padding: 10px;
            .cont{
                .tip{
                    margin-top: 10px;
                }
                .desc{
                    padding-left: 0px;
                    padding-right: 0px;
                }
                .know{
                    width: 100%;
                    display: flex;
                    justify-content: center;
                }
            }
        }
     }
   }
   .block-solution{
        margin-top: 60px;
        .solution-row{
            .solution-card{
                margin-top: 40px;
            }
        }
        .title{
            padding-top: 40px;
        }
    }
    .block-control{
        .title{
            padding-top: 60px;
        }
    }
    .block-budget{
        padding-bottom: 30px;
        .title{
            padding-top: 40px;
        }
        .budget-row{
            .budget-card{
                .budget-left{
                    padding: 10px;
                }
                .budget-right{
                    padding: 10px;
                    gap: 10px;
                    justify-content: center;
                    .img-magnify{
                        >img{
                            width: 210px;
                            height: auto;
                        }
                    }
                }
                .budget-left-special{
                    padding: 10px;
                }
                .budget-right-special{
                    display: flex;
                    flex-direction: column;
                    align-items: center;
                    .seach-alipay{
                        margin-bottom: 20px;
                    }
                }
            }
        }
    }
    .block-slogan{
        .title{
            padding-top: 40px;
        }
    }
}

@media screen and (max-width: 1500px) {
    .block-guide{
        .right{
            right: 0;
            .cont{
                width: 530px;
                .bg{
                    background-size: cover;
                    background-position: left center;
                    overflow: hidden;
                }
            }
        }
    }
    .block-scenes{
        .scene-cards-box{
            height: 560px;
        }
    }
}


