/** 首页样式 */
.index-page {
    background: rgb(248, 250, 252);
}

.services {
    padding-top: 0;
    display: none;
 }

.products {
    padding-top: 0;
}


.stats, .partners {
    display: none;
}

/* News List Styles */
.news-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.news-list-item {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #f1f5f9;
}

.news-list-item:hover {
    transform: translateX(5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.news-list-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: inherit;
    padding: 1rem;
    gap: 1rem;
}

.news-list-link:hover {
    text-decoration: none;
    color: inherit;
}

.news-list-image {
    flex-shrink: 0;
    width: 120px;
    height: 80px;
    border-radius: 8px;
    overflow: hidden;
    background: #f1f5f9;
}

.news-list-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.news-list-item:hover .news-list-image img {
    transform: scale(1.05);
}

.news-list-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0.75rem;
}

.news-list-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1f2937;
    line-height: 1.5;
    margin: 0;
    transition: color 0.3s ease;
}

.news-list-item:hover .news-list-title {
    color: #2563eb;
}

.news-list-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.news-list-category {
    background: #e0e7ff;
    color: #3730a3;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
}

.news-more {
    display: none;
}

/* Responsive Design */
@media (max-width: 768px) {
    .news-list-link {
        flex-direction: column;
        padding: 1rem;
    }
    
    .news-list-image {
        width: 100%;
        height: 200px;
    }
    
    .news-list-title {
        font-size: 1.1rem;
    }
}

/* Contact Section Styles */
.contact-content {
    display: flex;
    justify-content: center;
    max-width: 800px;
    margin: 0 auto;
}

.contact-form {
    width: 100%;
    background: transparent;
    padding: 0;
    border-radius: 0;
    box-shadow: none;
}

.contact-form .form-group textarea {
    min-height: 200px;
    resize: vertical;
}

.contact-form button[type="submit"] {
    display: block;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .contact-content {
        max-width: 100%;
    }
}

.footer-link {
    color: #9ca3af;
    text-decoration: none;
}

.icp-link {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.3s ease;
}

.icp-link:hover {
    color: #2563eb;
}

