@charset "UTF-8";
/*ul,li{*/
/*    padding: 0px;*/
/*    margin: 0px;*/
/*    list-style: none;*/
/*}*/
.search{
    height: 60px; margin:50px auto;position: relative;
}
.search_header{
    width: 100%; border-bottom: solid 1px #eaeaea;margin-bottom: 20px;
}
.search_nav{
    width: 1040px; margin: auto;
}


.search_nav .search{
    margin: 20px 0px;
}
.green_window{
    position: relative;
    left: 62px;
    height: 55px;
    border: 2px solid #eaeaea;
    -webkit-border-radius: 2px;
    border-radius: 2px;

}
.index .green_window{
    left: 0px;
}
.input_text{
    width: 100%;
    height: 51px;
    padding: 10px 80px 10px 15px;
    background-color: #fff;
    font-size: 15px;
    line-height: 24px;
    color: #000;
    font-weight: 500;
    outline: 0;
    -webkit-border-radius: 0;
    border-radius: 0;
    border: 0;
}
.btn_submit{
    position: absolute;
    top: 0;
    right: -62px;
    bottom: 0;
    width: 66px;
    height: 55px;
    background-color: #eaeaea;
    -webkit-border-radius: 0 2px 2px 0;
    border-radius: 0 2px 2px 0;
    cursor: pointer;
    border: 0;
    margin: 0px;
    padding: 0px;
}
.index .btn_submit{
    right: 0px;
}
.loader,
.loader:after {
    border-radius: 50%;
    width: 23px;
    height: 23px;
}
.loader {
    position: relative;
    border-top: 2px solid rgba(255,255,255, 0.2);
    border-right: 2px solid rgba(255,255,255,0.2);
    border-bottom: 2px solid rgba(255,255,255, 0.2);
    border-left: 2px solid gray;
    -webkit-transform: translateZ(0);
    -ms-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-animation: loadAnima 1.1s infinite linear;
    animation: loadAnima 1.1s infinite linear;
}
@-webkit-keyframes loadAnima {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}
@keyframes loadAnima {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

.nav-container {
    display: -webkit-flex;
    display: flex;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    height: 55px;
}

.nav-left {
    width: 65px;

}

.nav-right {
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
    -webkit-box-flex: 1;
    -moz-box-flex: 1;
    position: relative;
}