.forminfo{
    width: 600px;margin: 0 auto;position: relative;
}
.list_item{
    margin-top: 3px;
    position: absolute;
    z-index: 1;
    background: #ffffff;
    width: 100%;
    border-radius: 5px;
    display: none;
    OVERFLOW-Y: auto;
    OVERFLOW-X: hidden;
    max-height: 400px;
}
.list_item p.p {
    font-size: 14px;
    display: flex;
    justify-content: flex-start;
    color: #333333;
    height: 30px;
    line-height: 30px;
    padding-left: 10px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.search-bg{
    height: 60vh;
    background:url(/assets/homepage/home_bg.jpg) no-repeat center;
    background-size: cover;
}
.search-top{
    text-align: center;
    padding-top: 20vh;
}
.search-top input{
    width: 400px;
    padding-left: 20px;
    height: 44px;
    background: rgba(242, 242, 242, 1);
    border-radius: 25px;
    border: none;
    box-shadow: none;
}
.search-top input:focus{
    outline: none;
}
.helper-list{
    margin-top: 80px;
}
.helper-list-item{
    display: flex;
    align-items: center;
    padding: 20px 0;
    border-bottom: dashed 1px rgb(229, 229, 229);
}
.helper-list-item:hover{
    cursor: pointer;
}
.helper-list-item .image{
    width: 300px;
    overflow: hidden;
    margin-right: 20px;
    height: 150px;
}
.helper-list-item img{
    width: 300px;
    height: 150px;
    object-fit: cover;
    transition: transform 0.5s ease; /* 平滑过渡效果 */
}

.helper-list-item:hover .image img{
    object-fit: cover;
    transform: scale(1.2); /* 鼠标悬停时放大1.5倍 */
}
.helper-list-item .desc{
    flex: 1;
    text-align: left;
}
.helper-list-item .desc .title{
    color: rgba(31, 37, 38, 0.75);
    font-size: 18px;
    margin-bottom: 10px;
}
.helper-list-item .desc .detail{
    color: rgb(136, 136, 136);
    font-size: 14px;
    line-height: 20px;
}
.helper-list-item .desc .time{
    color: rgb(136, 136, 136);
    font-size: 13px;
    margin-top: 10px;
}
/* 手机屏幕 */
@media screen and (max-width: 767px) {
    .forminfo{
        width:100%;
    }
    .search-top input{
        width: 200px;
    }
    .helper-list-item{
        display: block;
        padding: 20px 10px;
    }
    .helper-list-item img,
    .helper-list-item .image{
        width: 100%;
    }
    .helper-list-item .image{
        margin-bottom: 20px;
    }
    .search-bg{
        height: 30vh;
    }
    .search-top{
        padding-top: 10vh;
    }
}
