@charset "utf-8";
/* CSS Document */
*{
    margin: 0;
    padding: 0;
    list-style: none;
    border: none;
    box-sizing: border-box;
}
body{
    width:100%;
    height: 100vh;
    font-size: 16px;
}
.search-bg{
    width: 100%;
    height: 100vh;
    background-image: url("../images/banner-bg2.jpg");
    background-size: cover;
    background-position: center;
    color: #FFF;
    text-align: center;
   
}
.search{
    width: 100%;
    height: 100vh;
    background: rgba(2,13,22,0.3);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
#search{
    width: 600px;
    height: auto;
    margin-top: 30px;
}
.search h1 span{
    display: block;
}
.search h1 span.name1{
    font-size: 24px;
    margin: 20px 
}
.search h1 span.name2{
    font-size: 48px;
    font-weight: bold
}

.form-div{
    position: relative;
}
.sbt{
    position: absolute;
    right: 30px; 
    top: 38px;
    width:50px;
    height: 50px;
    font-size: 36px;
    color: rgba(23,58,97,1.00)
}
.sbt i{
    position: absolute;
    z-index: 1;
}
.sbt input{
    position: absolute;
    z-index: 222;
    width: 50px;
    height: 50px;
    background: #000;
    opacity: 0;
    cursor: pointer
}
