@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: 500px;
        background-image: url(/webasset/hypd/images/saas/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: end;
            color: #18377C;
            padding-bottom: 40px;
            .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;
                    }
                }
            }
        }
    }
}

.block-matrix{
    padding-top: 100px;
    .title{
        color: #18377C;
        text-align: center;
        margin-bottom: 60px;
    }
    .cont{
        .item{
            &:hover {
                box-shadow: 0px 8px 20px 0px rgba(24, 55, 124, 0.1);
            }
            margin-bottom: 30px;
            background: #F2F8FF;
            height: 480px;
            border-radius: 16px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            .top{
                padding: 40px 30px;
                .item-title{
                    color: #18377C;
                }
                .item-desc{
                    margin-top: 12px;
                    line-height: 26px;
                    color: #18377C;
                    opacity: .7;
                }
            }
            .bottom{
                padding: 0 30px 30px 30px;
                .item-img{
                    >img{
                        width: 100%;
                    }
                }
            }
        }
    }
}
.block-server{
    padding-top: 100px;
    .title{
        color: #18377C;
        text-align: center;
        margin-bottom: 60px;
    }
    .cont{
        .item{
            &:hover {
                box-shadow: 0px 8px 20px 0px rgba(24, 55, 124, 0.1);
            }
            margin-bottom: 30px;
            background: #F2F8FF;
            height: 480px;
            border-radius: 16px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            .top{
                padding: 40px 30px;
                .item-title{
                    color: #18377C;
                }
                .item-desc{
                    margin-top: 12px;
                    line-height: 26px;
                    color: #18377C;
                    opacity: .7;
                }
            }
            .bottom{
                padding: 0 30px 30px 30px;
                .item-img{
                    >img{
                        width: 100%;
                    }
                }
            }
        }
    }
}

.block-feature{
    margin-top: 100px;
    height: 320px;
    background-image: url(/webasset/hypd/images/saas/block-feature-01.webp);
    background-repeat: no-repeat;
    background-size:100% 100%;
    display: flex;
    align-items: center;
    .cont{
        .icon-img{
            text-align: center;
            >img{
                width: 100px;
            }
        }
        .title{
            margin-top: 40px;
            color: #ffffff;
            text-align: center;
        }
        .desc{
            color: #ffffff;
            text-align: center;
            opacity: .7;
            margin-top: 12px;
        }
    }
}

.block-manage{
    padding-top: 100px;
    .title{
        color: #18377C;
        text-align: center;
        margin-bottom: 60px;
    }
    .cont{
        .item{
            &:hover {
                box-shadow: 0px 8px 20px 0px rgba(24, 55, 124, 0.1);
            }
            margin-bottom: 30px;
            background: #F2F8FF;
            height: 480px;
            border-radius: 16px;
            .top{
                padding: 30px 30px 0px 30px;
                .item-img{
                    >img{
                        width: 100%;
                    }
                }
            }
            .bottom{
                padding: 70px 30px;
                .item-title{
                    color: #18377C;
                }
                .item-desc{
                    margin-top: 12px;
                    line-height: 26px;
                    color: #18377C;
                    opacity: .7;
                }
            }
        }
    }
}

.block-capacity{
    padding-top: 100px;
    padding-bottom: 40px;
    .title{
        color: #18377C;
        text-align: center;
        margin-bottom: 60px;
    }
    .cont{
        .item{
            &:hover {
                box-shadow: 0px 8px 20px 0px rgba(24, 55, 124, 0.1);
            }
            margin-bottom: 30px;
            background: #F2F8FF;
            height: 450px;
            border-radius: 16px;
            .top{
                padding: 30px 30px 0px 30px;
                .item-img{
                    >img{
                        width: 100%;
                    }
                }
            }
            .bottom{
                padding: 70px 30px;
                .item-title{
                    color: #18377C;
                }
                .item-desc{
                    margin-top: 12px;
                    line-height: 26px;
                    color: #18377C;
                    opacity: .7;
                }
            }
        }
    }
}
.block-welcome{
    padding-top: 100px;
    .cont{
        .left{
            >img{
                height: 320px;
            }
        }
        .right{
            .title{
                color: #18377C;
            }
            .desc{
                margin-top: 12px;
                line-height: 26px;
                color: #18377C;
                opacity: .7;
            }
        }
    }
}

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

            }
        }
    }
    .block-feature{
        margin-top: 40px;
    }
    .block-manage{
        padding-top: 40px;
    }
    .block-welcome {
         .cont {
            .left {
                >img{
                    width: 100%;
                    height: auto;
                    margin-bottom: 10px;
                }
            }
        }
    }



}

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

}





















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

}


@media (max-width: 1024px) {

}

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

}


*/