.hy-search-page {
    margin-top: 79px;
    padding-top: 0.42rem;
    background: linear-gradient(135deg, #f8fafc 0%, #e9ecef 100%);
    min-height: 100vh;
}

.crumbs-page a {
    color: #111 !important;
    transition: color 0.3s ease;
}

.crumbs-page a:hover {
    color: var(--text-color) !important;
}

.hy-search-module {
    --font-sise-title: max(0.5rem, min(26px));
    --theme-color1: #041e31;
    --primary-color: #041e31;
    --primary-hover: #0a2d4a;
    --text-dark: #2c3e50;
    --text-light: #7f8c8d;
    --bg-white: #ffffff;
    --border-light: #e8f4f8;
    --shadow-light: 0 4px 20px rgba(4, 30, 49, 0.08);
    --shadow-medium: 0 8px 40px rgba(4, 30, 49, 0.12);
    --shadow-hover: 0 12px 50px rgba(4, 30, 49, 0.15);

    padding-top: 60px;
    padding-bottom: 80px;
}

.hy-search-content .common-h2 {
    text-align: center;
    color: var(--text-dark);
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 30px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-hover) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.5px;
    position: relative;
}

.hy-search-content .common-h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-hover) 100%);
    border-radius: 2px;
}

.hy-search-content .inupt-box {
    display: flex;
    align-items: center;
    width: 80%;
    max-width: 900px;
    background: var(--bg-white);
    height: 75px;
    border-radius: 75px;
    margin: 0 auto 30px;
    box-shadow: var(--shadow-light);
    border: 2px solid transparent;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.hy-search-content .inupt-box:focus-within {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-medium);
    transform: translateY(-3px);
}

.hy-search-content .s-input {
    padding: 0 35px;
    font-size: 20px;
    border-radius: 4px;
    height: 100%;
    width: 85%;
    background: none;
    border: none;
    color: var(--text-dark);
    font-family: inherit;
    outline: none;
    transition: all 0.3s ease;
    font-weight: 400;
}

.hy-search-content .s-input::placeholder {
    color: var(--text-light);
    font-weight: 300;
    opacity: 0.7;
}

.hy-search-content .s-input:focus {
    color: var(--text-dark);
}

.hy-search-content .icon-btn {
    width: 15%;
    height: 100%;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-hover) 100%);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.hy-search-content .icon-btn:hover {
    transform: scale(1.02);
    box-shadow: 0 6px 20px rgba(4, 30, 49, 0.5);
}

.hy-search-content .icon-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.hy-search-content .icon-btn:hover::before {
    left: 100%;
}

.hy-search-content .icon-btn img {
    width: 28px;
    height: 28px;
    filter: brightness(0) invert(1);
    transition: all 0.3s ease;
}

.hy-search-content .icon-btn:hover img {
    transform: scale(1.1);
}
.hy-search-content .result-text {
    font-size: 20px;
    margin-bottom: 40px;
    text-align: center;
    color: var(--text-light);
    font-weight: 400;
    line-height: 1.6;
}

.hy-search-content .result-text .keyword {
    color: var(--primary-color);
    font-weight: 600;
    background: linear-gradient(135deg, rgba(4, 30, 49, 0.1) 0%, rgba(10, 45, 74, 0.1) 100%);
    padding: 8px 16px;
    border-radius: 25px;
    margin: 0 8px;
    border: 1px solid rgba(4, 30, 49, 0.2);
    position: relative;
    overflow: hidden;
}

.hy-search-content .result-text .keyword::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(4, 30, 49, 0.1), transparent);
    transition: left 0.5s ease;
}

.hy-search-content .result-text .keyword:hover::before {
    left: 100%;
}

.hy-search-content .classify-tab {
    margin-bottom: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.hy-search-content .classify-tab .item {
    width: 160px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 55px;
    cursor: pointer;
    font-size: 18px;
    font-weight: 500;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    background: white;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.hy-search-content .classify-tab .item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(4, 30, 49, 0.15), transparent);
    transition: left 0.6s ease;
}

.hy-search-content .classify-tab .item:hover::before {
    left: 100%;
}

.hy-search-content .classify-tab .item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(4, 30, 49, 0.3);
    border-color: var(--primary-hover);
    color: var(--primary-hover);
}

.hy-search-content .classify-tab .item.on {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-hover) 100%);
    color: #fff;
    border-color: transparent;
    box-shadow: 0 8px 25px rgba(4, 30, 49, 0.4);
    transform: translateY(-2px);
}

.hy-search-content .result-list {
    margin-top: 30px;
}

.hy-search-content .result-list .box {
    width: 100%;
    display: none;
    min-height: 500px;
}

.hy-search-content .result-list .box.on {
    width: 100%;
    display: block;
}

.hy-search-content .result-list .info-box {
    display: flex;
    align-items: center;
    text-decoration: none;
    border: 1px solid var(--border-light);
    margin-bottom: 25px;
    height: 140px;
    background: var(--bg-white);
    border-radius: 16px;
    box-shadow: var(--shadow-light);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    position: relative;
    backdrop-filter: blur(10px);
}

.hy-search-content .result-list .info-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(4, 30, 49, 0.05), transparent);
    transition: left 0.8s ease;
}

.hy-search-content .result-list .info-box:hover::before {
    left: 100%;
}

.hy-search-content .result-list .info-box:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary-color);
}

.hy-search-content .result-list .info-box .left {
    height: 100%;
    display: flex;
    align-items: center;
    flex: 1;
}

.hy-search-content .result-list .info-box .left .img {
    width: 200px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    border-right: 1px solid #f0f4f8;
    background: transparent;
    transition: all 0.3s ease;
}

.hy-search-content .result-list .info-box:hover .left .img {
    background: transparent;
}

.hy-search-content .result-list .info-box .left .img img {
    height: 80%;
    width: auto;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.hy-search-content .result-list .info-box:hover .left .img img {
    transform: scale(1.05);
}

.hy-search-content .result-list .info-box .tit {
    font-size: 20px;
    font-weight: 600;
    flex: 1;
    margin: 0 20px;
    display: -webkit-box;
    overflow: hidden;
    text-overflow: ellipsis;
    word-wrap: break-word;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    color: #2c3e50;
    line-height: 1.4;
}

.hy-search-content .result-list .info-box .more {
    color: var(--primary-color);
    font-size: 16px;
    font-weight: 600;
    margin-left: auto;
    padding: 12px 24px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: linear-gradient(135deg, rgba(4, 30, 49, 0.1) 0%, rgba(10, 45, 74, 0.1) 100%);
    border-radius: 25px;
    border: 1px solid rgba(4, 30, 49, 0.2);
    position: relative;
    overflow: hidden;
    min-width: 140px;
    justify-content: center;
}

.hy-search-content .result-list .info-box .more::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(4, 30, 49, 0.15), transparent);
    transition: left 0.6s ease;
}

.hy-search-content .result-list .info-box .more::after {
    content: '→';
    font-size: 18px;
    font-weight: 700;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    margin-left: 4px;
}

.hy-search-content .result-list .info-box:hover .more {
    color: white;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-hover) 100%);
    border-color: transparent;
    box-shadow: 0 6px 20px rgba(4, 30, 49, 0.4);
    transform: translateY(-2px);
}

.hy-search-content .result-list .info-box:hover .more::before {
    left: 100%;
}

.hy-search-content .result-list .info-box:hover .more::after {
    transform: translateX(6px);
    color: white;
}

@media screen and (max-width: 750px) {
    .hy-search-content .result-list .info-box .left .img {
        display: none;
    }

    .hy-search-content .result-list .info-box {
        height: auto;
        padding: 20px;
        flex-direction: column;
        text-align: center;
    }

    .hy-search-content .result-list .info-box .left {
        width: 100%;
        margin-bottom: 15px;
    }

    .hy-search-content .result-list .info-box .more {
        margin-left: 0;
    }

    .hy-search-content .inupt-box {
        height: 56px;
        width: 95%;
    }

    .hy-search-content .classify-tab {
        flex-wrap: wrap;
        gap: 10px;
    }

    .hy-search-content .classify-tab .item {
        height: 44px;
        width: 120px;
        font-size: 14px;
    }

    .hy-search-content .common-h2 {
        font-size: 32px;
    }
}

/* 加载动画 */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hy-search-content .result-list .info-box {
    animation: fadeInUp 0.6s ease forwards;
}

.hy-search-content .result-list .info-box:nth-child(odd) {
    animation-delay: 0.1s;
}

.hy-search-content .result-list .info-box:nth-child(even) {
    animation-delay: 0.2s;
}

/* 空状态样式 */
.hy-search-content .empty-state {
    text-align: center;
    padding: 60px 20px;
    color: #7f8c8d;
}

.hy-search-content .empty-state .icon {
    font-size: 64px;
    margin-bottom: 20px;
    opacity: 0.5;
}

.hy-search-content .empty-state h3 {
    font-size: 24px;
    margin-bottom: 10px;
    color: #5d6d7e;
}