.search {
    padding-bottom: 120px;
}

.search_box {
    height: 52px;
    padding: 0 16px;
    border-radius: 10px;
    background: rgba(0, 0, 0, 0.50);
    backdrop-filter: blur(30px);
    box-sizing: border-box;
}
.search_box input {
    flex: 1;
    width: 100%;
    background: transparent;
    font-size: 1.6rem;
    color: var(--white);
}
.search_box input::-webkit-input-placeholder {
	color: var(--strock);
}
.search_box input:-moz-placeholder {
	color: var(--strock);
}
.search_box input::-moz-placeholder {
	color: var(--strock);
}
.search_box input:-ms-input-placeholder {
    color: var(--strock);
}
.search_box .del_btn {
    display: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--white);
    justify-content: center;
}

.keyword_box button {
    height: 36px;
    background: rgba(255, 255, 255, 0.16);
    backdrop-filter: blur(30px);
    border-radius: 50px;
    color: var(--white);
    padding: 0 16px;
    font-size: 1.6rem;
    font-weight: 500;
    box-sizing: border-box;
}

.result_box .item button {
    color: var(--white);
}
.result_box .item .thumb {
    position: relative;
    width: 76px;
    height: 76px;
    border-radius: 10px;
    overflow: hidden;
}
.result_box .item .thumb img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.result_box .item .title strong {
	font-size: 1.6rem;
	font-weight: 500;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 1;
	overflow: hidden;
}
.result_box .item .title p {
	font-size: 1.3rem;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 1;
	overflow: hidden;
}
.result_box .item .min {
    font-size: 1.3rem;
}



@media screen and (max-width: 480px) {
}
@media screen and (max-width: 380px) {
}