* {
    margin: 0;
    padding: 0;
}

ul {
    list-style: none;
}

a {
    color: #000;
    text-decoration: none;
}

.more:hover {
    transform: scale(1.05);
    transition: all .5s;
}

a :hover {
    color: #743523;
}

header {
    position: relative;
    margin: auto;
    max-width: 1920px;
    height: 536px;
    
    /* z-index: 1; */
}

header .headerback{
    margin: auto;
    max-width: 1920px;
    height: 322px;
    background: url(../images/headerBack.jpg) 100% 100%;
}

header .mid {
    position: relative;
    display: flex;
    align-items: center;
    margin: auto;
    max-width: 1200px;
    height: 322px;
}

header .logo {
    width: 598px;
    height: 58px;
}

header .logo img {
    width: 100%;
    height: 100%;
}

header .helloTxt {
    position: absolute;
    top: 20px;
    left: 0;
    font-size: 13px;
}

nav {
    position: relative;
    margin: auto;
    max-width: 1920px;
    height: 86px;
    background-color: #743523;
    z-index: 2;
}

nav .navMid {
    display: flex;
    justify-content: space-between;
    margin: auto;
    max-width: 1200px;
    height: 100%;
}

nav .menu {
    width: 860px;
}

nav .menu>ul {
    display: flex;
    justify-content: space-between;
    width: 100%;
    height: 100%;
}

nav .menu>ul>li {
    position: relative;
    line-height: 86px;
    width: 12.5%;
}

nav .menu>ul>li>a {
    display: block;
    color: #fff;
    font-size: 17px;
    text-align: left;
}

/* nav .menu>ul>li>a:hover{
    background-color: #7B0C0C;
} */

nav .searchbox {
    display: flex;
    align-items: center;
    width: 347px;
    box-sizing: border-box;
}

nav .searchbox form {
    display: flex;
    align-items: center;
    width: 100%;
    height: 42px;
    border-radius: 20px;
    background-color: #fff;
    box-sizing: border-box;
}

nav .searchbox form input[type="text"] {
    padding: 0 20px;
    width: 295px;
    border: none;
    border-right: 2px solid #d9c8c3;
    outline: none;
    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;
    box-sizing: border-box;
}

nav .searchbox form input[type="text"]::placeholder {
    color: #9c9c9c;
    font-size: 14px;
}

nav .searchbox form input[type="submit"] {
    margin-left: 12px;
    width: 22px;
    height: 22px;
    border: 1px solid #9a6c5f;
    border-radius: 50%;
    background-color: #fff;
    background-image: url(../images/search.png);
    background-repeat: no-repeat;
    background-position: center center;
    cursor: pointer;
}

.secondaryMenu {
    position: absolute;
    top: 86px;
    left: 0%;
    width: 140%;
    background-color: #743523;
    display: none;
}

.secondaryMenu li {
    line-height: 50px;
    width: 100%;
}

.secondaryMenu a {
    display: block;
    width: 100%;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    text-align: center;
}

.secondaryMenu a:hover {
    background-color: #7B0C0C;
}