#header {
    padding: 1.4vw 1.4vw 2vw 1.4vw;
}
#header ul{
    position: relative;
    right: 20px;
    top: 20px;
}
#header li {
    list-style: none;
    display: inline;
}
#header li a {
text-decoration: none;
width: 50px;
height: 50px;
line-height: 40px;
display: inline-block;
border-radius: 50%;
text-align: center;
color: #000000;
border: 5px solid #fff;
}
#header li:nth-child(3n+1) a {
    background-color: #b55aff;
}
#header li:nth-child(3n+2) a {
    background-color: #fff04e;
}
#header li:nth-child(3n+3) a {
    background-color: #ff87db;
}

/* main */
#main {}
/* search__wrap */
.search__wrap {
    width: 90%;
    margin: 5% auto;
    background-color: #fff;
    border: 0.3vw solid #000;
    border-top-left-radius: 3vw;
    border-bottom-right-radius: 3vw;
    box-shadow: 1vw 1vw 0px #000;
    transition: box-shadow 0.3s;
    overflow: hidden;
}
.search__wrap:hover {
    box-shadow: 0.5vw 0.5vw 0px #000;
}
.search__header {
    border-bottom: 0.3vw solid #000;
    padding: 0 0 0 3vw;
    background-color: #AF6EE3;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.search__header::before {
    content: "";
    width: 90%;
    height: 0.3vw;
    background: #000;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-10px);
    border-radius: 5px;
}
.search__header::after {
    content: "";
    width: 90%;
    height: 0.3vw;
    background: #000;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(4px);
    border-radius: 5px;
}
.search__header .title {
    position: relative;
    background: #AF6EE3;
    position: relative;
    z-index: 10;
    padding-right: 35px;
    color: #000000;
    padding: 0.6vw 8vw 0.6vw 5vw;
}
.search__header .btn {
    display: flex;
}
.search__header .btn span {
    display: block;
    width: 3vw;
    height: 3vw;
    line-height: 3,9;
    position: relative;
    z-index: 10;
    border-left: 0.3vw solid #000;
    box-sizing: content-box;
    text-align: center;
    font-size: 2vw;
}
.search__header .btn span:nth-child(3n+1){
    background-color: #AF6EE3;
}
.search__header .btn span:nth-child(3n+2){
    background-color: #FFEF4A;
}
.search__header .btn span:nth-child(3n+3){
    background-color: #F76ECE;
}
.search__conts hgroup {
    text-align: center;
    padding: 5vw;
    border-bottom: 2px solid ;
}
.search__conts hgroup h3 {
    color: #FFEF4A;
    font-size: 8vw;
    text-shadow: 0.4px 0.4px 0px #000;
    -webkit-text-stroke: 0.3vw rgb(0, 0, 0)
}
.search__conts hgroup h4 {
    color: #af6ee3;
    font-size: 6vw;
    text-shadow: 0.4px 0.4px 0px #000;
    -webkit-text-stroke: 0.2vw rgb(0, 0, 0)
}
.search__box {
    text-align: center;
    padding: 3vw 2vw;
}
.search__box label {
    padding: 1vw;
    font-family: 'CookieRun';
    font-size: 2vw;
}
.search__box input {
    border: 0.3vw solid #000;
    box-shadow: 3px 3px 0 #000;
    width: 80%;
    padding: 1vw 2vw;
    border-radius: 50px;
    font-size: 20px;
    font-family: 'CookieRun';
    outline: none;

}
.search__info {
    text-align: right;
    padding: 0.3vw 2vw;
    border-bottom: 0.3vw dashed #000;
    border-top: 0.3vw dashed #000;
}
.search__list ul {
    padding: 3vw;
}
.search__list li {
    list-style: none;
    line-height: 2;
}
.search__list li.hide {
    display: none;
}
/* footer */
#footer {
    text-align: center;
    padding: 3vw;
}
#footer a {
    color: #000;
}
@media (max-width: 1200px){
    .search__header .btn span {
        width: 4vw;
        height: 4vw;
    }
    .search__header .title {
        font-size: 20px;
    }
}
@media (max-width: 960px){
    .search__header .btn span {
        width: 50px;
        height: 50px;
    }
}
@media (max-width: 600px){
    .search__wrap,
    .search__header,
    .search__header .btn span {
        border-width: 3px;
    }
    .search__header::before,
    .search__header::after {
        display: none;
    }
}