.home-banner{
    width: 1920px;
    height: 400px;
    margin: 0 auto;
    position: relative;
}
.home-banner .banner-img{
    width: 1920px;
    height: 400px;
    position: absolute;
    z-index: 0;
    top: 0;
    left: 0;
}

.home-banner .home-menu{
    z-index: 999;
    width: 1430px;
    height: 80px;
    margin: 0 auto;
    line-height: 80px;
    display: flex;
    align-items: center;
}

.home-activate{
    margin-top: 60px;
    text-align: center;
    font-size: 40px;
    font-weight: 500;
    color: #222222;
    line-height: 56px;
}
.home-activate-sub{
    margin-top: 16px;
    text-align: center;
    font-weight: 400;
    font-size: 24px;
    color: #545B66;
    line-height: 33px;
}
.cards{
    margin-top: 30px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: first baseline;
    gap: 24px;
}
.cards .card{
    width: 598px;
    display: flex;
    justify-content: center;
    flex-direction: column;
}
.card.vip,.card.svip{
    position: relative;
}
.card.vip .arc{
    width: 100%;
    height: 30px;
    background-color:#3377FF;
    border-radius: 24px 24px 0 0;
}
.card.svip .arc{
    width: 100%;
    height: 30px;
    background-color:#FFCB77;
    border-radius: 24px 24px 0 0;
}
.card .card-main{
    width: 100%;
    height: 500px;
    background-color: #ffffff;
    border: 1px solid #E8E9EB;
    border-radius: 24px;
    margin-top: -20px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.card .card-icon{
    width: 80px;
    height: 32px;
    position: absolute;
    right: 0px;
    top: 10px;
}
.card-main .zhuanshi{
    margin-top: 48px;
    width: 84px;
    height: 66px;
}
.cart-title{
    font-weight: 600;
    font-size: 20px;
    color: #252525;
    line-height: 25px;
    margin-top: 8px;
}
.cart-subtitle{
    font-weight: 400;
    font-size: 14px;
    color: #181818;
    line-height: 25px;
    margin-top: 8px;
}
.card-btn{
    width: 300px;
    height: 34px;
    text-align: center;
    line-height: 34px;
    font-weight: 500;
    color: #FFFFFF;
    border-radius: 8px;
    font-size: 12px;
    margin-top: 16px;
    transition: all 0.5s ease;
    cursor: pointer;
}
.card-btn:hover{
    border-radius: 16px;
}
.vip .card-btn{
    border: 1px solid #D4D6D9;
    background: #3377FF;
}
.svip .card-btn{
    background: #FFCB77;
    border: 1px solid #FDD785;
}
.card-line{
    margin: 30px 0;
    width: 300px;
    height: 2px;
    border-top: 2px dashed #dddddd;
}
.card-item{
    width: 300px;
    display: flex;
    text-align: left;
    margin-bottom: 14px;
    font-size: 12px;
    font-weight: 500;
    color: #272727;
    line-height: 13px;
}
.home-why{
    margin-top: 60px;
    text-align: center;
    font-weight: 500;
    font-size: 40px;
    color: #222222;
    line-height: 56px;
    margin-bottom: 40px;
}
.home-why-items{
    width: 1220px;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    gap: 20px;
}

.why-item{
    height: 490px;
    flex: 1;
    background: #F5F9FF;
    padding:60px 30px;
    border-radius: 32px;
    cursor: pointer;
    transition: all 1s ease;
    display: flex;
    flex-direction: column;
}
.why-img{
    width: 60px;
    height: 60px;
    margin-bottom: 24px;
}
.why-title{
    font-weight: 500;
    font-size: 36px;
    color: #282C33;
    line-height: 50px;
    margin-bottom: 24px;
}
.why-subtitle{
    font-weight: 500;
    font-size: 20px;
    color: #282C33;
    line-height: 28px;
}
.why-desc{
    margin-top: 20px;
    font-weight: 500;
    font-size: 20px;
    color: #848B99;
    line-height: 28px;
}
.why-item:hover{
    flex: 2;
    background: url(../images/home-why.png);
    background-size: cover;
    background-repeat: no-repeat;
}
.why-item:hover .why-title,.why-item:hover .why-subtitle,.why-item:hover .why-desc{
    color: #ffffff;
}