



.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: 10px;
    /* align-items:flex-start; */
    flex-wrap: wrap;
    position: relative;
}

.recommend-item-info h3 {
    color: #0066cc;
    font-size: 1rem;
    margin: 0px 10px;
    font-weight: bold;
    text-shadow: 0 1px 3px rgba(0, 102, 204, 0.2);
}
.recommend-item-info p {
    display: flex;
    color: #4a4a4a;
    font-size: 0.8rem;
    margin: 10px 10px;
    font-weight: 500;
}

.recommend-item-btn a {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;

}
.recommend-item-btn {
    display: flex;
    width: 100%;
    height: 25px;
    background: linear-gradient(45deg, #43e97b 0%, #fee140 100%);
    border-radius: 5px;
    right: 0px;
    box-shadow: 0 3px 15px rgba(67, 233, 123, 0.4);
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.recommend-item-btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 6px 20px rgba(254, 225, 64, 0.6);
    background: linear-gradient(45deg, #fee140 0%, #43e97b 100%);
}
.recommend-item-btn img {
    width: 28px;
    height: 16px;

}

.gfoivha-recommend-content{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    /* Two columns layout */
    gap: 15px;
    /* Gap between items */
    /* padding: 0.5rem 1rem; */
    margin: 10px;
    padding: 15px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 249, 250, 0.9) 100%);
    border-radius: 0 0 15px 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border: 2px dashed #4facfe;
    position: relative;
}

.gfoivha-recommend-content img {
    width: 100%;
}

.gfoivha-recommend-content-hot{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    /* Two columns layout */
    gap: 12px;
    /* Gap between items */
    /* padding: 0.5rem 1rem; */
    margin: 10px 20px;
    padding: 15px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 249, 250, 0.9) 100%);
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
    border: 2px dashed #43e97b;
    position: relative;
    overflow: hidden;
}

.gfoivha-recommend-content-hot::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #4facfe, #00f2fe, #43e97b, #fee140);
}

.gfoivha-recommend-content-hot img {
    width: 100%;
}

/* 网站介绍文章样式 */
.gfoivha-website-introduction {
    max-width: 660px;
    margin: 30px auto;
    padding: 20px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 249, 250, 0.9) 100%);
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    border: 2px dashed #fee140;
    position: relative;
}

.gfoivha-website-introduction::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #4facfe, #00f2fe, #43e97b, #fee140);
}

.gfoivha-intro-title {
    text-align: center;
    margin-bottom: 20px;
}

.gfoivha-intro-title h2 {
    color: #4facfe;
    font-size: 1.5rem;
    margin: 0;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(79, 172, 254, 0.3);
    letter-spacing: 0.5px;
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gfoivha-intro-content {
    padding: 0 10px;
}

.gfoivha-intro-content p {
    color: #2D3436;
    font-size: 1rem;
    line-height: 1.6;
    margin: 15px 0;
    text-align: justify;
}

.gfoivha-intro-content h3 {
    color: #43e97b;
    font-size: 1.2rem;
    margin: 25px 0 15px 0;
    font-weight: 600;
    text-shadow: 0 1px 3px rgba(67, 233, 123, 0.2);
}

.gfoivha-intro-content ul {
    list-style-type: disc;
    padding-left: 25px;
    margin: 15px 0;
}

.gfoivha-intro-content li {
    color: #2D3436;
    font-size: 1rem;
    line-height: 1.8;
    margin: 8px 0;
}

.gfoivha-intro-footer {
    text-align: center;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(254, 225, 64, 0.3);
}

.gfoivha-intro-footer p {
    color: #636E72;
    font-size: 1.1rem;
    margin: 0;
    font-style: italic;
}

/* 响应式设计 */
@media (max-width: 600px) {
    .gfoivha-website-introduction {
        padding: 15px;
        margin: 20px 10px;
    }
    
    .gfoivha-intro-title h2 {
        font-size: 1.3rem;
    }
    
    .gfoivha-intro-content h3 {
        font-size: 1.1rem;
    }
    
    .gfoivha-intro-content p,
    .gfoivha-intro-content li {
        font-size: 0.95rem;
    }
}




