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

}
@keyframes blockGuideBut {
    0% {
        transform: scale(0.9);
        opacity: 0;
    }
}
 @property --but-start-color {
    syntax: '<color>';
    initial-value: #18377C;
    inherits: false;
}

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

.block-visual{
    margin-top: 72px;
    position: relative;
    background-color: #FAFCFF;
    min-height: 500px;
    .visual-bg{
        position: absolute;
        left: 0;
        top: 3px;
        width: 100%;
        height: 460px;
        background-image: url(/webasset/hypd/images/about/block-visual-01.webp);
        background-repeat: no-repeat;
        background-size:100% 100%;
    }
    .visual-content{
        height: 100%;
        position: relative;
        .visual-left {
            min-height: 500px;
            display: flex;
            align-items: center;
            color: #18377C;
            .item{
                .visual-title {
                    margin-bottom: 18px;
                }
                .visual-desc {
                    margin-bottom: 18px;
                    width: 520px;
                    line-height: 26px;
                    text-align: justify;
                }
                .start{
                    width: 100%;
                    .but{
                        border-radius: 60px;
                        width: 220px;
                        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(--but-start-color) 0%, var(--but-end-color) 100%);
                        transition: --guide-but-start-color 0.8s ease, --guide-but-end-color 0.8s ease, transform 0.8s ease;
                        &:hover{
                            --but-start-color: #18377C;
                            --but-end-color: #111111;
                            filter: brightness(1.2);
                        }
                        animation: blockGuideBut 1.0s cubic-bezier(0.18, 0.89, 0.32, 1.28) forwards;
                    }
                }
            }
        }
        .visual-right{
            min-height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            >img{
                height: 310px;
                width: auto;
                border-radius: 18px;
            }
        }
    }
}

.block-travel{
    padding-top: 20px;
    padding-bottom: 80px;
    .cont{
        .item{
            margin-top: 80px;
            .left-cont,.right-cont{
                display: flex;
                align-items: center;
                height: 100%;
                .left-text{
                    .text-title{
                        color: #18377C;
                        margin: 12px 0;
                    }
                    .text-desc{
                        color: #18377C;
                        opacity: .7;
                        line-height: 26px;
                        text-align: justify;
                    }
                    .text-ul{
                        color: #18377C;
                        opacity: .7;
                        padding-left: 20px;
                        line-height: 26px;
                        margin-top: 12px;
                    }
                }
            }
            .right-img, .left-img{
                text-align: right;
                >img{
                    height: 380px;
                }
            }
            .left-img{
                text-align: left;
            }
        }
    }
}

@keyframes blockPayRotateIn {
    0% {
        transform: rotate(0deg);
        opacity: 0;
    }
    2% {
        opacity: .6;
    }
    3% {
        opacity: .7;
    }
    4% {
        opacity: .8;
    }
    5% {
        opacity: 1;
    }
    100% {
        transform: rotate(1080deg);
        opacity: 1;
    }
}

.block-pay{
    background: #F2F8FF;
    padding-top: 100px;
    padding-bottom: 80px;
    .title{
        color: #18377C;
        text-align: center;
        margin-bottom: 30px;
    }
    .desc{
        color: #18377C;
        text-align: center;
        margin-bottom: 40px;
    }
    .cont{
        margin-top: 40px;
        .row{
            padding-left: 60px;
            padding-right: 60px;
        }
        position: relative;
        .line-img{
            position: absolute;
            top: 210px;
            >img{
                width: 100%;
            }
        }
        .top{
            display: flex;
            align-items: flex-end;
            height: 438px;
        }
        .bottom{
            display: flex;
            align-items: flex-start;
            height: 436px;
            .item{
                padding-top: 40px;
            }
        }
        .item{
            .item-title{
                color: #18377C;
            }
            .item-desc{
                color: #18377C;
                line-height: 26px;
                margin-top: 12px;
                width: 240px;
            }
            .icon.animate{
                animation: blockPayRotateIn 5s forwards;
                animation-delay: .8s;
            }
            .item-top-imgs{
                .icon{
                    opacity: 0;
                    width: 72px;
                    height: 72px;
                    background: #fff;
                    border-radius: 50%;
                    box-shadow: 0 2px 8px rgba(26, 63, 166, 0.08);
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    >img{
                        width: 48px;
                    }
                }
                .line{
                    padding-bottom: 10px;
                    width: 72px;
                    text-align: center;
                    >img{
                        height: 72px;
                    }
                }
            }
            .item-bottom-imgs{
                .line{
                    width: 72px;
                    text-align: center;
                    padding-top: 10px;
                    >img{
                        height: 36px;
                    }
                }
            }
            .icon{
                opacity: 0;
                width: 72px;
                height: 72px;
                background: #fff;
                border-radius: 50%;
                box-shadow: 0 2px 8px rgba(26, 63, 166, 0.08);
                display: flex;
                align-items: center;
                justify-content: center;
                >img{
                    width: 48px;
                }
            }
        }
    }
}
.block-comp{
    margin-top: 100px;
    padding: 80px 0 80px 0;
    background: #3a5999;
    .img-cont{
        text-align: right;
            >img{
                height: 320px;
                width: auto;
            }
        }
    .comp-content{
        margin-top: 20px;
        .comp-title{
            color: #ffffff;
        }
        .comp-desc{
            line-height: 26px;
            text-align: justify;
            margin-top: 20px;
            color: #ffffff;
            opacity: .7;
        }
        .know{
            display: flex;
            justify-content: center;
            .but{
                border: 1px solid rgba(255,255,255,0.23);
                border-radius: 162px;
                width: 180px;
                height: 36px;
                text-align: center;
                line-height: 36px;
                color: #ffffff;
                margin-top: 30px;
                text-decoration: none;
                cursor:pointer;
                display: block;
                &:hover{
                    color: #18377C;
                    background: #E5EEFF;
                }
            }
        }
    }
}


@media (max-width: 1024px) {
    .block-visual{
        margin-top: 53px;
        .visual-bg{
            height: 80px;
        }
        .visual-content{
            .visual-left {
                min-height: 400px;
                .item {
                    .visual-desc {
                        margin-bottom: 18px;
                        width: 100%;
                        line-height: 26px;
                        text-align: justify;
                    }
                }
            }
            .visual-right{
                >img{
                    width: 100%;
                    height: auto;
                }
            }
        }
    }
    .block-travel {
         .cont {
             .item {
                margin-top: 40px;
                .right-img, .left-img {
                    >img{
                        width: 100%;
                        height: auto;
                    }
                }
            }
        }
    }

    .block-pay {
        padding-top: 40px;
         .cont {
            .row{
                padding: 0;
            }
            .top, .bottom{
                height: 110px;
            }
            .item{
                padding-top: 20px !important;
                .item-top-imgs{
                    display: none;
                }
                .item-bottom-imgs{
                    display: none;
                }
            }
            .line-img {
                display: none;
            }
        }
    }

    .block-comp{
        margin-top: 40px;
        padding: 40px 0 40px 0;
        .img-cont{
            >img{
                height: auto;
                width: 100%;
                margin-top: 20px;
            }
        }
    }



}

@media screen and (max-width: 1500px) {

}





















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

}


@media (max-width: 1024px) {

}

@media screen and (max-width: 1500px) {

}


*/