/* 导航页面布局 */
.card-link {
    text-decoration: none;
    color: inherit;
}

.card-link:hover .card {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.card-icon {
    width: 2rem;
    height: 2rem;
}

.section-title {
    margin: 1rem 0 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #dee2e6;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.section-more {
    color: #0d6efd;
    text-decoration: none;
    font-size: 0.9rem;
}

.section-more:hover {
    text-decoration: underline;
}


/* 工具页面布局 */
.tool-container {
    padding: 1rem;
    padding-bottom: 0rem;
}

.tool-form {
    margin: auto;
}

@media (min-width: 992px) {
    .tool-form {
        max-width: 800px;
    }
}

/* 搜索栏 */
#searchResults ul li:hover {
    background-color: #dcdcdc !important;
    cursor: pointer;
}