



.recommend-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-self: center;
    margin: 20px 0px;
    position: relative;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 15px;
    padding: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.recommend-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}
.recommend-item a {
    align-items: center;
    justify-self: center;
    text-decoration: none;
    color: inherit;
}

.recommend-item a:hover,
.recommend-item a:visited,
.recommend-item a:active {
    text-decoration: none;
}

/* 确保推荐内容区域的所有链接都没有下划线 */
.cieevy-recommend-content a,
.cieevy-recommend-content a:hover,
.cieevy-recommend-content a:visited,
.cieevy-recommend-content a:active,
.cieevy-recommend-content-hot a,
.cieevy-recommend-content-hot a:hover,
.cieevy-recommend-content-hot a:visited,
.cieevy-recommend-content-hot a:active {
    text-decoration: none;
    color: inherit;
}
.recommend-item img {    width: 100%;    object-fit: contain;    border-radius: 12px;    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);    transition: transform 0.3s ease;}

.recommend-item img:hover {
    transform: scale(1.02);
}

.recommend-item-info{
    display: flex;
    flex-direction: column;
    padding: 10px;
    /* align-items:flex-start; */
    flex-wrap: wrap;
    position: relative;
}

.recommend-item-info h3 {    color: #341f97;    font-size: 1.1rem;    margin: 8px 10px 4px;    font-weight: bold;    text-align: center;    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1);}
.recommend-item-info p {    display: flex;    color: #57606f;    font-size: 0.9rem;    margin: 4px 10px 8px;    justify-content: center;    align-items: center;    line-height: 1.2;}

.recommend-item-btn a {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #ffffff;
    font-weight: bold;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.recommend-item-btn {
    display: flex;
    width: 100%;
    height: 35px;
    background: linear-gradient(135deg, #ff6b6b, #ee5a24);
    border-radius: 8px;
    right: 0px;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.recommend-item-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
    background: linear-gradient(135deg, #ee5a24, #ff6b6b);
}
.recommend-item-btn img {
    width: 28px;
    height: 16px;
    margin-right: 8px;
}

.cieevy-recommend-content{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin: 20px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.85);
    border-radius: 15px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.cieevy-recommend-content img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.cieevy-recommend-content img:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
}

.cieevy-recommend-content-hot{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    margin: 15px 20px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.85);
    border-radius: 15px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.cieevy-recommend-content-hot img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.cieevy-recommend-content-hot img:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
}




