.bbs{
    margin-top: 45px;
    height: 60px;
    border-radius: 20px;
    background: #F5F5F5;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.bbs-icon{
    width: 140px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: bold;
    color: #ffffff;
}
.bbs-icon img{
    margin-right: 10px;
}
.bbs-main{
    flex: 1;
    text-align: center;
    font-size: 20px;
    font-weight: 300;
    color: #666666;
    height: 100%;
    margin-left: 30px;
    margin-right: 30px;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
    line-height: 60px;
}
.bbs-main span{
    margin-right: 100px;
}

.cards{
    margin-top: 30px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}
.card-left{
    width: 800px;
    height: 450px;
    background: linear-gradient(180deg, #FFEEBB, #FFE084);
    border-radius: 30px;
    transition: all 0.5s ease;
    cursor: pointer;
}
.card-left:hover{
    box-shadow: 5px 5px 20px 5px #FFE084;
}

.card-right{
    width: 700px;
    display: flex;
    flex-direction: column;
}
.card-right-top{
    height: 220px;
    background: linear-gradient(180deg, #FFEEBB, #FFE084);
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.5s ease;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}
.card-right-top:hover{
    box-shadow: 5px 5px 20px 5px #FFE084;
}

/*  */
.card-right-bottom{
    margin-top: 20px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}
.card-right-bottom-left{
    width: 340px;
    height: 210px;
    background: linear-gradient(180deg, #FFEEBB, #FFE084);
    border-radius: 30px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    color: #FF8E21;
    cursor: pointer;
    transition: all 0.5s ease;
}
.card-right-bottom-left:hover{
    box-shadow: 5px 5px 20px 5px #FFE084;
}

.card-right-bottom-left img{
    width: 340px;
    height: 210px;
}
/*  */
.card-right-bottom-right{
    width: 340px;
    height: 210px;
    background: linear-gradient(180deg, #FFEEBB, #FFE084);
    border-radius: 30px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    color: #FF2121;
    cursor: pointer;
    transition: all 0.5s ease;
}
.card-right-bottom-right:hover{
    box-shadow: 5px 5px 20px 5px #FFE084;
}

.card-right-bottom-right img{
    width: 340px;
    height: 210px;
}
/*  */
.cateitem{
    display: flex;
    position: relative;
    margin-top: 30px;
    transition: all 0.5s ease;
}
.cateitem:hover{
    box-shadow: 5px 5px 20px 5px rgba(12, 108, 254, 0.2);
    border-radius: 20px;
    overflow: hidden;
}
.cateitem .text{
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #188EF6;
}
.cateitem .text p{
    font-weight: bold;
    font-size: 50px;
    transition: all 0.5s ease;
}
.cateitem:hover .text p{
    transform: scale(1.2);
}
.cateitem .text span{
    margin-top: 25px;
    font-weight: 300;
    font-size: 20px;
    transition: all 0.5s ease;
}
.cateitem:hover .text span{
    transform: scale(1.2);
}

/*************/
.vip-container{
    display: grid;
    margin-top:60px;
    justify-content: space-between;
    align-items: center;
    box-sizing: border-box;
    grid-template-columns: repeat(5, 1fr);
    grid-template-rows: repeat(2, auto);
    gap: 30px;
}


.box {
    font-size: 24px;
    color: #188EF6;
    height: 150px;
    aspect-ratio: 16/9;
    border-radius: 10px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: all 1s ease;
    font-weight: bold;
}
.box:hover{
    font-size: 26px;
    background: #409EFF;
}
@property --deg {
    syntax: '<angle>';
    inherits: true;
    initial-value: 0deg;
}
.box::before,
.box::after {
    content: "";
    position: absolute;
    height: 100%;
    width: 100%;
    background: conic-gradient(from var(--deg) at center,
        #00c3ff,
        #188EF6,
        #6300c6,
        #009dcd);
    border-radius: inherit;
    z-index: -2;
    padding: 2px;
    animation: autoRotate 4s linear infinite;
}
@keyframes autoRotate {
    to {
        --deg: 360deg;
    }
}

.box::after {
    filter: blur(20px);
}
.box a{
    color: #188EF6;
}
.box span{
    font-weight: 500;
    text-align: center;
    box-sizing: border-box;
    margin-top: 16px;
    font-size: 14px;
    padding: 0 20px;
}