.main-content {
    min-height: 624px;
    min-height: 564px;
    padding-bottom: 60px;
}
.main .search-h1 {
    font-size: 48px;
    font-size: var(--page-h1);
    color: #181D23;
    line-height: 64px;
    font-weight: 600;
    margin: 120px 0 40px;
    width: 100%;
    text-align: center;
}

.main .search-input {
    width: 800px;
    height: 80px;
    margin: 0 auto;
}

.main .search-input input {
    width: 100%;
    height: 80px;
    background: #F5F9FC;
    background: var(--bgcolor);
    border-radius: 40px;
    border: 2px solid #181D23;
    font-size: 24px;
    font-size: 18px;
    color: #181D23;
    line-height: 40px;
    text-indent: 32px;
}
.main .search-input input::placeholder {
    color: #636160;
    opacity: 1;
}

.main .search-input .search-btn {
    width: 96px;
    height: 64px;
    border-radius: 32px;
    top: 8px;
    right: 8px;
    background: url("../imgfolder/search-24.png") no-repeat center;
    background-color: #3E007D;
}


.main .hot-search {
    text-align: center;
    padding-top: 16px;
    display: flex;
    justify-content: center;
    gap: 24px;
}

.main .hot-search div{
    display: flex;
    gap: 24px;
}
.main .hot-search span{
    font-size: 16px;
    font-size: var(--page-text);
    color: #3E007D;
    line-height: 30px;
    font-weight: 600;
    user-select:none;cursor:pointer;
}
.main .hot-search .text{
    font-size: 16px;
    font-size: var(--page-text);
    line-height: 30px;
    color: #636160;
}


.main .search-result .search-h2{
    text-align: center;
    font-size: 18px;
    color: #251715;
    line-height: 40px;
    margin-top: 48px;
    font-weight: 400;
}

.main .results {
    margin-top: 24px;
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}

.main .product-card {
    width: 302px;
    /*height: 366px;*/
    background: #F5F9FC;
    background: var(--bgcolor);
    border-radius: 8px;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    flex-direction: column;
    user-select:none;cursor:pointer;
    padding-bottom: 28px;
}

.main .product-card-image img {
    width: 100%;
}
.main .product-card-image {
    /*width: 240px;*/
    /*height: 240px;*/
    margin: 24px 31px 0;
}

.main .product-name {
    font-size: 16px;
    color: #181D23;
    line-height: 24px;
    margin-top: 20px;
    font-weight: 600;
}
.main .product-name span {
    color: #3E007D;
}

.main .product-val {
    font-size: 14px;
    color: #606266;
    line-height: 22px;
    margin-top: 8px;
}


.main .search-none {
    text-align: center;
}
.main .search-none-img {
    margin: 80px auto 0;
    width: 160px;
    height: 160px;
    background: url("../imgfolder/search-none.png");
}
.main .search-none .text{
    margin-top: 8px;
    font-size: 24px;
    font-size: 18px;
    color: #606266;
    line-height: 40px;
}
.main .search-none span{
    color: #3E007D;
}




@media (max-width: 1024px) {
    .main .main-content {
        min-height: 284px;
        padding-bottom: 60px;
    }

    .main .search-h1 {
        margin: 44px 0 28px;
        line-height: 32px;
        font-size: var(--page-p);
    }

    .main .search-input {
        width: 100%;
    }

    .main .search-input input {
        height: 48px;
        border: 1px solid #181D23;
        text-indent: 16px;
        font-size: var(--page-text-p);
    }

    .main .search-input .search-btn {
        width: 48px;
        height: 36px;
        top: 6px;
        right: 6px;
        background-image: url("../imgfolder/search-20.png");
        background-size: 20px;
    }

    .main .hot-search {
        white-space: nowrap;
        padding: 0 16px;
        gap: 12px;
    }

    .main .hot-search div {
        gap: 2px 10px;
        gap: 0;
        flex-wrap: wrap;
    }
    .main .hot-search span {
        margin: 0 8px 2px 0;
    }

    .main .search-none-img {
        margin: 40px auto 0;
        width: 120px;
        height: 120px;
        background-size: 100%;
    }

    .main .search-none .text {
        margin: 0;
        font-size: var(--page-text-p);
        line-height: 22px;
    }

    .main .search-result .search-h2 {
        font-size: 16px;
        line-height: 24px;
        margin-top: 24px;
    }

    .main .results {
        gap: 1vh 1%;
        gap: 0;
        justify-content: center;
    }

    .main .product-card {
        width: 47%;
        padding-bottom: 12px;
        margin: 0px 4px 8px;
    }

    .main .product-name {
        font-size: var(--title-p);
        line-height: 22px;
        margin-top: 12px;
    }

    .main .product-val {
        font-size: var(--content-p);
        line-height: 20px;
        margin-top: 4px;
    }


    .main .product-card-image {
        margin: 8px 8px 0;
    }

}