.vip-banner{
    width: 1920px;
    height: 400px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}
.vip-banner img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.bbs{
    margin-top: 24px;
    height: 40px;
    display: flex;
    flex-direction: row;
    background: #F5F9FF;
    border-radius: 12px;
}
.bbs-laba{
    height: 40px;
    width: 120px;
    background-color: #2468F2;
    opacity: 0.6;
    border-radius: 12px 0px 35px 12px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    font-size: 16px;
    color: #FFFFFF;
}
.bbs-laba-img{
    width: 26px;
    height: 22px;
    margin-right: 6px;
}
.bbs-msg{
    display: flex;
    align-items: center;
    padding: 0 20px;
    box-sizing: border-box;
}
.bbs-msg span{
    margin-right: 100px;
}

.vip-types{
    display: flex;
    flex-direction: row;
    margin-top: 40px;
    gap: 20px;
}
.vip-type{
    flex: 1;
    height: 200px;
    background: url(../images/vip-type-bg.jpg);
    background-size: cover;
    background-repeat: no-repeat;
}
.vip-type a{
    margin-top: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.vip-type-icon{
    width: 66px;
    height: 66px;
    margin-bottom: 8px;
}
.vip-type-title{
    font-weight: 500;
    font-size: 24px;
    color: #282C33;
    line-height: 33px;
    margin-bottom: 12px;
}
.vip-type-desc{
    font-weight: 500;
    font-size: 16px;
    color: #848B99;
    line-height: 22px;
}
.vip-title{
    font-weight: 500;
    font-size: 24px;
    color: #282C33;
    line-height: 36px;
    margin: 40px auto 20px auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.vip-title a.more{
    font-weight: 500;
    font-size: 16px;
    color: #848B99;
    line-height: 24px;
}
.vip-classes{
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 20px;
}
.vip-class{
    height: 120px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.vip-class:nth-child(1),.vip-class:nth-child(4),.vip-class:nth-child(6),.vip-class:nth-child(9){
    background: radial-gradient( 99% 86% at 92% 13%, #D1D1FF 0%, #FFFFFF 100%);
    border: 1px solid #F1F1FF;
}

.vip-class:nth-child(2),.vip-class:nth-child(5),.vip-class:nth-child(7),.vip-class:nth-child(10){
    background: radial-gradient( 99% 86% at 92% 13%, #FFDED6 0%, #FFFFFF 100%);
    border: 1px solid #FFF2EF;
}

.vip-class:nth-child(3),.vip-class:nth-child(8){
    background: radial-gradient( 99% 86% at 92% 13%, #C4F5FF 0%, #FFFFFF 100%);
    border: 1px solid #EAFBFF;
}
.vip-class-left{
    flex: 1;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    box-sizing: border-box;
    padding: 0 0 0 30px;
    align-items: flex-start;
}
.vip-class-title{
    display: flex;
    font-weight: 600;
    font-size: 24px;
    color: #282C33;
    line-height: 33px;
    align-items: center;
}
.vip-class-title img{
    width: 18px;
    height: 18px;
}
.vip-class-desc{
    display: flex;
    font-weight: 500;
    font-size: 16px;
    color: #848B99;
    line-height: 22px;
    align-items: center;
    margin-top: 8px;
}
.vip-class-desc img{
    width: 12px;
    height: 14px;
    margin-left: 6px;
}
.vip-class-right{
    width: 110px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.vip-class-right img{
    max-width: 91px;
    max-height: 86px;
}

.vip-main{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}
.vip-item{
    height: 196px;
    border-radius: 16px;
    overflow: hidden;
}
.vip-item a{
    display: inline-block;
    height: 100%;
    width: 100%;
    position: relative;
}
.vip-item span{
    bottom: -50px;
    left: 0px;
    right: 0px;
    transition: all 0.5s ease-out;
    background: rgba(0,0,0,0.5);
    text-align: center;
}
.vip-item:hover span{
    display: block;
    width: 100%;
    position: absolute;
    left: 0px;
    right: 0px;
    bottom: 0px;
    z-index: 999;
    font-weight: 500;
    font-size: 18px;
    color: #FFFFFF;
    line-height: 28px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}
.vip-item img{
    width:100%;
    height: 196px;
    object-fit: cover;
    transition: all 0.5s ease-out;
}
.vip-item:hover img{
    transform: scale(1.2);
}