.head-container {
    width: 100%;
    height: 160px;
}

.head-top {
    width: 100%;
    height: 40px;
    background: #F5F5F5;
}

.head-top-middle {
    display: flex;
    font-size: 14px;
    justify-content: space-between;
    align-items: center;
    width: 1200px;
    height: 40px;
    margin: 0 auto;
}

.head-top-middle .left a {
    font-weight: 400;
    color: #999999;
}

.head-top-middle .left a:hover {
    color: #D6000F;
}

.head-top-middle .right a:hover {
    color: #D6000F;
}

.head-top-middle .right a {
    font-weight: 400;
    color: #999999;
}


.head-top-middle .right a:nth-child(1) {
    color: #D7000F;
}


.nav-container {
    width: 100%;
    height: 120px;
    background: #FFFFFF;
    border-bottom: 1px solid #eee;
}

.nav-middle {
    display: flex;
    justify-content: space-between;
    width: 1200px;
    margin: 0 auto;
}

.nav-middle .logo {
    margin-top: 30px;
}

.nav-middle .logo h1{
    display: flex;
    align-items: center;
}

.nav-middle .logo h1 img{
    margin-right: 10px;
}

.nav-middle .logo h1 .logo-title{
    letter-spacing: 7.5px;
    font-size: 40px;
    font-weight: bold;
    color: #333333;
}

.nav-middle .logo h1 .sub-title{
    margin-top: 5px;
    font-size: 12px;
    font-weight: 400;
    color: #999999;
}

.nav-right-container {
    margin-top: 67px;
    display: flex;
    position: relative;
}

.nav-right-container .search{
    padding-left: 25px;
    position: relative;
}

.nav-right-container ul li {
    display: inline-block;
    position: relative;
    padding: 0 15px;
}

.nav-right-container ul li a{
    font-size: 16px;
    color: #333333;
}


.nav-right-container ul li i{
    position: absolute;
    left: 50%;
    top: 27px;
    content: '';
    display: none;
    width: 70%;
    transform: translateX(-50%);
    height: 6px;
    background: #D7000F;
}

.nav-right-container ul li:hover i,.nav-right-container ul li.hover i{
    display: block;
}

.search .wrapper {
    display: none;
}

.search .wrapper.show {
    display: block;
}

#searchBox {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: absolute;
    height: 40px;
    padding: 0 15px;
    background-color: #fff;
    border: 1px solid #ddd;
    top: 55px;
    right: 10px;
    z-index: 999;
}

#searchBox input{
    max-width: 85%;
}

.search img {
    cursor: pointer;
}

.search:hover .wrapper {
    display: block;
}
.trigger {
    position: absolute;
    right: 0;
    bottom: -30px;
    width: 87px;
    height: 33px;
    background: transparent;
    z-index: 999;
}