



.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;
    transition: transform 0.3s ease;
}

.recommend-item img:hover {
    transform: translateY(-5px);
}

.recommend-item-info{
    display: flex;
    flex-direction: column;
    padding: 10px;
    /* align-items:flex-start; */
    flex-wrap: wrap;
    position: relative;
}

.recommend-item-info h3 {
    color: #333;
    font-size: 1rem;
    margin: 0px 10px;
    font-weight: bold;
}
.recommend-item-info p {
    display: flex;
    color: #666;
    font-size: 0.8rem;
    margin: 10px 10px;
}

.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(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 5px;
    right: 0px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    transition: transform 0.2s ease;
}

.recommend-item-btn:hover {
    transform: scale(1.05);
}
.recommend-item-btn img {
    width: 28px;
    height: 16px;

}

.dirghv-recommend-content{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    /* Two columns layout */
    gap: 15px;
    /* Gap between items */
    /* padding: 0.5rem 1rem; */
    margin: 10px;
}

.dirghv-recommend-content img {
    width: 100%;
}

.dirghv-recommend-content-hot{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    /* Three columns layout */
    gap: 12px;
    /* Gap between items */
    /* padding: 0.5rem 1rem; */
    margin: 10px 20px;
}

/* 热门推荐区域容器样式 */
.dirghv-recommend-content-hot-container {
    margin: 0px 10px;
    border-radius: 15px;
    /* padding: 15px; */
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.dirghv-recommend-content-hot img {
    width: 100%;
}

/* 网站宣传介绍文章样式 */
.dirghv-about-section {
    margin: 30px 10px;
    border-radius: 15px;
    padding: 30px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.dirghv-about-content {
    max-width: 800px;
    margin: 0 auto;
}

.dirghv-about-content h2 {
    color: #333;
    font-size: 2rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 20px;
    font-family: 'Arial Black', sans-serif;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.dirghv-about-content h3 {
    color: #555;
    font-size: 1.3rem;
    font-weight: bold;
    margin: 20px 0 10px 0;
    font-family: 'Arial Bold', sans-serif;
}

.dirghv-about-content p {
    color: #666;
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 15px;
    text-align: justify;
}

.dirghv-about-content ul {
    list-style-type: disc;
    padding-left: 25px;
    margin-bottom: 20px;
}

.dirghv-about-content li {
    color: #666;
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 8px;
}

/* 特色部分样式 */
.dirghv-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 20px 0;
}

.dirghv-feature-item {
    background: rgba(102, 126, 234, 0.1);
    padding: 15px;
    border-radius: 10px;
    border: 1px solid rgba(102, 126, 234, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.dirghv-feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
}

.dirghv-feature-item h4 {
    color: #667eea;
    font-size: 1.1rem;
    margin: 0 0 10px 0;
    font-weight: bold;
}

/* 标语样式 */
.dirghv-tagline {
    text-align: center;
    font-style: italic;
    color: #764ba2;
    font-size: 1.1rem;
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid rgba(118, 75, 162, 0.2);
}

/* 响应式设计 */
@media (max-width: 768px) {
    .dirghv-about-section {
        padding: 20px;
        margin: 20px 10px;
    }
    
    .dirghv-about-content h2 {
        font-size: 1.5rem;
    }
    
    .dirghv-about-content h3 {
        font-size: 1.2rem;
    }
    
    .dirghv-about-content p,
    .dirghv-about-content li {
        font-size: 0.9rem;
    }
    
    .dirghv-features {
        grid-template-columns: 1fr;
    }
}




