.search-page{
     margin-top: 79px;
  padding-top: 0.42rem;
  
}
.crumbs-page a{
   color: #111 !important;
  }
  .crumbs-page a:hover{
    color: #09377b !important;
  }

.search-modle {
    --font-sise-title: max(0.5rem, min(26px)); /* 大标题字号 */
    --theme-color1: #09377b;                 /* 主题颜色 */
    --icon-path: url(../images/icon-search.png);

    padding-top: 32px;   /* 2rem => 32px */
    padding-bottom: 16px; /* 1rem => 16px */
}

.search-content .common-h2 {
    text-align: center;
    color: #09377b;
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 25px; /* 0.35rem => 5.6px */
}

.search-content .inupt-box {
    display: flex;
    align-items: center;
    width: 80%;
    max-width: 900px;
    background-color: #f5f5f5;
    height: 70px;
    border-radius: 70px;
    margin: 0 auto 8px; /* 0.5rem => 8px */
}

.search-content .s-input {
    padding: 0 30px;
    font-size: 16px;
    border-radius: 4px;
    height: 100%;
    width: 80%;
    background: none;
    border: none;
    color: inherit;
    font-family: inherit;
    outline: none;
}

.search-content .icon-btn {
    width: 20%;
    height: 100%;
    /* background: url(../images/icon-search.png) no-repeat right 30px center; */
    cursor: pointer;
    display: flex;
    justify-content: right;
    align-items: center;
}
.search-content .icon-sousuo{
    font-size: var(--font-size-22);
    margin-right: .4rem;
}
.search-content .result-text {
    font-size: 18px;
    margin-bottom: 20px;
    text-align: center;
    color: #333;
}

.search-content .result-text .keyword {
    color: var(--theme-color1);
}

.search-content .classify-tab {
    margin-bottom: 6.4px; /* 0.4rem => 6.4px */
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-content .classify-tab .item {
    width: 130px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    margin-right: 20px;
    cursor: pointer;
    font-size: 16px;
    border: 1px solid var(--theme-color1);
    color: var(--theme-color1);
}

.search-content .classify-tab .item.on {
    background: var(--theme-color1);
    color: #fff;
}

.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 #e0e0e0;
    margin-bottom: 15px;
    height: 100px;
}

.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: 190px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    border-right: 1px solid #e0e0e0;
}

.search-content .result-list .info-box .left .img img {
    height: 100%;
    width: auto;
}

.search-content .result-list .info-box .tit {
    font-size: 18px;
    font-weight: bold;
    flex: 1;
    margin: 0 6.4px; /* 0.4rem => 6.4px */
    display: -webkit-box;
    overflow: hidden;
    text-overflow: ellipsis;
    word-wrap: break-word;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
}

.search-content .result-list .info-box .more {
    color: #666;
    font-size: 14px;
    margin-left: auto;
    padding: 0 6.4px; /* 0.4rem => 6.4px */
}

.search-content .result-list .info-box:hover * {
    color: var(--theme-color1);
}

@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: 15px 0;
    }

    .search-content .inupt-box {
        height: 46px;
    }

    .search-content .classify-tab .item {
        height: 40px;
    }
}