/* header */

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
    border-bottom: 1px solid rgba(255, 255, 255, .2);
    background-color: transparent;
}

.header .logo {
    display: table;
}

.header .logo>a {
    display: table-cell;
    line-height: 94px;
    vertical-align: middle;
}

.header .nav {
    width: 50%;
    margin: 0 auto;
}

.header .nav li {
    float: left;
    width: 14.28%;
    line-height: 94px;
    text-align: center;
}

.header .nav a {
    display: block;
    font-size: 18px;
    color: #fff;
    -webkit-transition: all .3s linear;
    -moz-transition: all .3s linear;
    transition: all .3s linear;
}

.header .nav li:hover>a {
    color: #E35811;
}

.header .nav .active>a {
    color: #E35811;
}

.header .search {
    position: relative;
    padding: 37px 20px;
    border-right: 1px solid rgba(255, 255, 255, .2);
    cursor: pointer;
    z-index: 9999;
}

.header .search .ic-search {
    display: block;
    width: 20px;
    height: 20px;
    margin: 0 auto;
    background: url("../images/ic_search.png") no-repeat right center/contain;
}

.header .search .search-field {
    position: absolute;
    top: 28px;
    right: 0;
    transform: scaleY(0);
    -webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}

.header .search .search-field input {
    line-height: 40px;
    background: #E35811;
    width: 350px;
    border: none;
    color: #fff;
    padding: 0 70px 0 25px;
    font-weight: 400;
}

.header .search .search-field .search-submit {
    width: 40px;
    height: 40px;
    border: none;
    background: transparent;
    cursor: pointer;
    position: absolute;
    top: 0;
    right: 0;
}

.header .search:hover .search-field {
    transform: scaleY(1) !important;
}

.header .login {
    overflow: hidden;
    padding-left: 12px;
    color: rgba(255, 255, 255, 0.4);
}

.header .login a {
    float: left;
    line-height: 94px;
    padding: 0 30px;
    font-size: 16px;
    color: #fff;
}


/* header end */

@media (min-width: 1600px) {
    .container-fluid {
        width: 100%;
        padding-right: 15px;
        padding-left: 15px;
        margin-right: auto;
        margin-left: auto;
    }
}