body,html{
    overflow-x: hidden;
}
.container{
    width: 1920px;
    margin: 0 auto;
}
.home-banner{
    width: 100%;
    height: 700px;
    position: relative;
}
.mainbox{
    position: absolute;
    width: 100%;
    height: 700px;
    display: flex;
    flex-direction: column;
}
.mainimg{
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: -1;
}
.main-banner{
    width: 1440px;
    margin: 0 auto;
    flex: 1;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}
.main-banner-left{ 
    flex: 1;
}
.main-banner-right{ 
width: 650px;
}
.home-banner-top{
    flex:1
}
.home-banner-left{
    width: 540px;
    height: 100%;
}
.home-banner-left img{
    width: 100%;
}
.home-banner-btn{
    margin-top: 30px;
    width: 200px;
    height: 60px;
    background: #0C6CFE;
    border-radius: 10px;
    color: #ffffff;
    font-weight: bold;
    font-size: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: all 0.5s ease;
}
.home-banner-btn:hover{
    transform: scale(1.1);
    box-shadow: 2px 2px 10px 0px #409EFF;
}
.home-banner-bottom{
    display: flex;
    height: 160px;
    background: rgba(9, 95, 207, 0.1);
    flex-direction: row;
    align-items: center;
    justify-content: center;
}
.home-banner-bottom-item{
    flex: 1;
    text-align: center;
    border-right: 1px solid rgba(117, 178, 255, 0.6);
    cursor: pointer;
}
.home-banner-bottom-item:last-child{
    border-right:none
}
.home-banner-bottom-item p{
    font-weight: bold;
    font-size: 40px;
    color: #000000;
}
.home-banner-bottom-item span{
    font-weight: 300;
    font-size: 20px;
    color: #666666;
}
.home-title{
    font-weight: bold;
    font-size: 50px;
    text-align: center;
    margin-top: 50px;
}
.home-subtitle{
    font-weight: 300;
    font-size: 32px;
    text-align: center;
}
.home-cards{
    width: 1440px;
    margin: 75px auto 0 auto;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}
.home-cards .home-card{
    width: 660px;
    height: 710px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.home-cards .home-card.left{
    transform: scale(1);
    background: linear-gradient(152deg, #409EFF, #3FDDFF);
    box-shadow: 2px 2px 10px 0px #79D6FF;
    transition: all 0.5s ease;
    backface-visibility: hidden;
}

.home-cards .home-card.left:hover{
    background: linear-gradient(152deg, #3FDDFF,#409EFF);
    box-shadow: 2px 2px 50px -10px #79D6FF;
    transform: scale(1.1) translateZ(0);
}

.home-cards .home-card.right{
    transform: scale(1);
    background: linear-gradient(152deg, #FFE79F, #DEC886);
    box-shadow: 2px 2px 10px 0px #CCC0AE;
    transition: all 0.5s ease;
    backface-visibility: hidden;
}

.home-cards .home-card.right:hover{
    background: linear-gradient(152deg, #DEC886,#FFE79F);
    box-shadow: 2px 2px 50px -10px #CCC0AE;
    transform: scale(1.1) translateZ(0);
}
.home-card-title{
    margin-top: 60px;
    font-size: 40px;
    font-weight: 800;
}
.home-card.left .home-card-title{
    color: #ffffff;
}
.home-card.right .home-card-title{
    color: #6B362C;
}
.home-card-remark{
    margin-top: 30px;
    font-size: 18px;
    font-weight: 300;
}
.home-card.left .home-card-remark{
    color: #ffffff;
}
.home-card.right .home-card-remark{
    color: #6B362C;
}
.home-card-main{
    background: #ffffff;
    width: 480px;
    height: 380px;
    margin-top: 35px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.home-card-main-title{
    font-size: 24px;
    color: #333333;
    font-weight: bold;
    display: flex;
    flex-direction: row;
    margin-top: 20px;
    align-items: center;
    justify-content: center;
}
.home-card-main-title img{
    width: 36px;
    height: 36px;
}
.home-card-main-line{
    width: 400px;
    height: 1px;
    margin-top: 20px;
    background-color: #eeeeee;
}
.home-card-main-item{
    margin-top: 18px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}
.home-card-main-item img{ 
    margin-right: 5px;
}
.home-card-btn{
    width: 200px;
    height: 60px;
    margin-top: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    font-weight: bold;
    font-size: 24px;
    cursor: pointer;
}
.home-card.left .home-card-btn{
    background-color: #ffffff;
    color: #6794FF;
}
.home-card.right .home-card-btn{
    background-color: #000000;
    color: #FFE597;
}