



.recommend-item{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-self: center;
    margin: 15px 0px;
    position: relative;
}
.recommend-item a {
    align-items: center;
    justify-self: center;
    text-decoration: none;

}
.recommend-item img {
    width: 100%;
    object-fit: contain;
    border-radius: 10px;
}

.recommend-item-info{
    display: flex;
    flex-direction: column;
    padding: 15px;
    align-items:flex-start;
    flex-wrap: wrap;
    position: relative;
    background-color: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    margin-top: -10px;
    z-index: 1;
}

.recommend-item-info h3 {
    color: #264653;
    font-size: 1.1rem;
    margin: 5px 0 10px 0;
    font-weight: bold;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}
.recommend-item-info p {
    display: flex;
    color: #2A9D8F;
    font-size: 0.9rem;
    margin: 5px 0 15px 0;
    font-weight: 500;
    text-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
}

.recommend-item-btn a {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;

}
.recommend-item-btn {
    display: flex;
    width: 100%;
    height: 35px;
    background: linear-gradient(45deg, #FFBE0B 0%, #FB5607 100%);
    border-radius: 30px;
    right: 0px;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    margin: 10px 0;
}

.recommend-item-btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 5px 18px rgba(0, 0, 0, 0.3);
}
.recommend-item-btn img {
    width: 32px;
    height: 20px;
    transition: transform 0.3s ease;
}

.recommend-item-btn:hover img {
    transform: scale(1.1) rotate(5deg);
}

.bvgtiob-recommend-content{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin: 15px;
}

/* 添加卡片样式 */
.recommend-item {
    background: linear-gradient(135deg, #ffffff 0%, #f1faee 100%);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid #e6f7ff;
}

.recommend-item:hover {
    transform: translateY(-8px) rotate(1deg);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border-color: #4CC9F0;
}

.bvgtiob-recommend-content img {
    width: 100%;
}

.bvgtiob-recommend-content-hot{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin: 15px 20px;
}

/* 为热门游戏添加特殊样式 */
.bvgtiob-recommend-content-hot .bvgtiob-game-item {
    background: linear-gradient(135deg, #ffffff 0%, #e6f7ff 100%);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #c3f73a;
}

.bvgtiob-recommend-content-hot .bvgtiob-game-item:hover {
    transform: translateY(-5px) rotate(-1deg);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    border-color: #ffd166;
}

/* 为热门游戏标签添加特殊样式 */
.bvgtiob-game-mark {
    background: linear-gradient(45deg, #FFBE0B, #FB5607);
    color: white;
    padding: 5px 12px;
    border-radius: 0 15px 15px 0;
    font-weight: bold;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.bvgtiob-game-new {
    background: linear-gradient(45deg, #06D6A0, #118AB2);
    color: white;
    padding: 5px 12px;
    border-radius: 0 15px 15px 0;
    font-weight: bold;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.bvgtiob-recommend-content-hot img {
    width: 100%;
}




