.search-page {
    margin-top: 79px;
    padding-top: 0.42rem;
    background: linear-gradient(135deg, #f8f9fa 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;
}

.search-modle {
    --font-sise-title: max(0.5rem, min(26px));
    --theme-color1: #09377b;
    --icon-path: url(../images/icon-search.png);
    --shadow-light: 0 2px 20px rgba(0, 0, 0, 0.08);
    --shadow-medium: 0 8px 30px rgba(0, 0, 0, 0.12);

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

.search-content .common-h2 {
    text-align: center;
    color: var(--text-color);
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 30px;
    background: #f18300;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.5px;
}

.search-content .inupt-box {
    display: flex;
    align-items: center;
    width: 80%;
    max-width: 900px;
    background: #ffffff;
    height: 70px;
    border-radius: 70px;
    margin: 0 auto 20px;
    box-shadow: var(--shadow-light);
    border: 2px solid transparent;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

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

.search-content .s-input {
    padding: 0 30px;
    font-size: 18px;
    border-radius: 4px;
    height: 100%;
    width: 80%;
    background: none;
    border: none;
    color: #2c3e50;
    font-family: inherit;
    outline: none;
    transition: all 0.3s ease;
}

.search-content .s-input::placeholder {
    color: #95a5a6;
    font-weight: 300;
}

.search-content .s-input:focus {
    color: #34495e;
}

.search-content .icon-btn {
    width: 20%;
    height: 100%;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, #f18300 0%, #ffa726 100%);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.search-content .icon-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(241, 131, 0, 0.4);
}

.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.2), transparent);
    transition: left 0.5s ease;
}

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

.search-content .icon-sousuo1 {
    font-size: 24px;
    color: white;
    transition: transform 0.3s ease;
}

.search-content .icon-btn:hover .icon-sousuo1 {
    transform: scale(1.1);
}
.search-content .result-text {
    font-size: 18px;
    margin-bottom: 30px;
    text-align: center;
    color: #5d6d7e;
    font-weight: 400;
    line-height: 1.6;
}

.search-content .result-text .keyword {
    color: var(--text-color);
    font-weight: 600;
    background: linear-gradient(135deg, #e3f2fd 0%, #f3e5f5 100%);
    padding: 4px 12px;
    border-radius: 20px;
    margin: 0 5px;
}

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

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

.search-content .classify-tab .item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(241, 131, 0, 0.1), transparent);
    transition: left 0.5s ease;
}

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

.search-content .classify-tab .item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(241, 131, 0, 0.3);
}

.search-content .classify-tab .item.on {
    background: linear-gradient(135deg, #f18300 0%, #ffa726 100%);
    color: #fff;
    border-color: transparent;
    box-shadow: 0 4px 15px rgba(241, 131, 0, 0.4);
}

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

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

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

.search-content .result-list .info-box {
    display: flex;
    align-items: center;
    text-decoration: none;
    border: 1px solid #e8f4f8;
    margin-bottom: 20px;
    height: 120px;
    background: white;
    border-radius: 12px;
    box-shadow: var(--shadow-light);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    position: relative;
}

.search-content .result-list .info-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(9, 55, 123, 0.03), transparent);
    transition: left 0.6s ease;
}

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

.search-content .result-list .info-box:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-medium);
    border-color: var(--text-color);
}

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

.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: #f8fafc;
    transition: all 0.3s ease;
}

.search-content .result-list .info-box:hover .left .img {
    background: linear-gradient(135deg, #f8fafc 0%, #e3f2fd 100%);
}

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

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

.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;
}

.search-content .result-list .info-box .more {
    color: #7f8c8d;
    font-size: 14px;
    margin-left: auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.search-content .result-list .info-box .more::after {
    content: '→';
    font-size: 16px;
    transition: transform 0.3s ease;
}

.search-content .result-list .info-box:hover .more {
    color: var(--text-color);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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