main.search_main{
    background: #000000;
}
/* 搜索框 */
.header_search svg,.header_language svg{
	transition: all ease-out .1s;
}
.header_search svg:hover,.header_language svg:hover{
    cursor: pointer;
    transform: scale(1.1);
	transition: all ease-out .1s;
}
.header_search .w_main{
    justify-content: space-between;
}
.header_search .w_main .pc{
    width: auto;
}
.searchShow{
    display: none;
    width: 70%;
    height: 100%;
    align-items: center;
}
.searchform{
    height: 70%;
    width: 100%;
}
.searchform_box{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    background: #141414;
}
.searchform_box input{
    width: 91%;
    border: none;
    background: none;
    color: rgba(255,255,255,0.7);
    padding-left: 15px;
    box-sizing: border-box;
    font-size: 16px;
}
.searchform_box input::placeholder{
    color: rgba(255,255,255,0.7);
}
.searchform_box>*{
    height: 100%;
}
.searchform_box strong{
    display: flex;
    align-items: center;
}
.search-submit{
    background: none;
    border: none;
}
/* .header .searchShow svg path{
    fill: var(--second-bgColor);
} */
.header .searchform_box{
    background: none;
    border: 1px solid var(--second-bgColor);
}
.header .searchform_box input,.header .searchform_box input::placeholder{
    color: var(--second-bgColor);
}

/* 搜索页 */
.search_page{
    padding: 40px 0 120px 0;
    box-sizing: border-box;
    min-height: 40vw;
}
.search_page .searchform_box{
    padding: 15px 20px 15px 15px;
    box-sizing: border-box;
    width: 65%;
    margin: auto;
}
.search_page .searchform_box input{
    width: 100%;
}
.search_page .searchError_box{
    text-align: center;
    margin-top: 7vw;
}
.searchError_box .search_error{
    color: #fff;
    font-family: Gotham-Medium;
    font-size: 2.83rem;
    margin: 15px 0 30px 0;
}
.searchError_box a{
    font-size: 1.25rem;
    color: #fff;
    opacity: 0.8;
    /* font-family: Gotham-Book; */
}
.search_page .search_box{
    background: #141414;
    margin-top: 20px
}
.search_page .search_box:first-child{
    margin-top: 60px;
}
.search_page .search_box a{
    display: flex;
    align-items: center;
}
.search_page .search_text{
    padding: 15px 60px 15px 30px;
    box-sizing: border-box;
}
.search_page .search_text h3{
    margin-bottom: 20px;
    font-size: 1.5rem;
    color: #fff;
    font-weight: normal;
}
.search_page .search_text p{
    display: -webkit-box;
    -webkit-box-orient: vertical;        
    -webkit-line-clamp: 2;
    overflow: hidden;
    color: var(--second-textColor);
    font-size: 0.875rem;
    margin-bottom: 25px;
}
.search_page .search_text span{
    color: var(--red-color);
}
.search_page .search_box:hover span{
    opacity: 0.8;
}
.search_page .search_box .coll_img{
    max-width: 22%;
}
@media only screen and (max-width: 1024px) {
    .search_page{
        padding: 20px 0 80px 0;
    }
    .search_page .search_box a{
        display: block;
    }
    .search_page .search_box .coll_img{
        max-width: 100%;
    }
    .search_page .search_text{
        padding: 10px 20px 20px 20px;
    }
    .search_page .search_text h3{
        font-size: 22px;
        font-weight: bold;
        margin-bottom: 15px;
    }
    .search_page .search_text p{
        font-size: 14px;
    }
    .search_page .search_text span{
        font-size: 16px;
    }
    .searchform_box input{
        padding-left: 0;
    }
    .search_page .searchform_box{
        width: 80%;
        padding: 12px 15px 12px 15px;
    }
    .search_page .search_box:first-child{
        margin-top: 40px;
    }
    .searchShow{
        width: 86%;
        margin-left: 7%;
    }
    .searchform_box{
        padding: 0 10px;
        box-sizing: border-box;
    }
    .searchform_box .search-submit{
        margin-right: 10px;
    }
    .searchShow svg path{
        fill: var(--second-bgColor);
    }
}