/* bootstrap与导航有冲突 */
:after, :before {
    -webkit-box-sizing:content-box;
}
body {
    width: 100%;
    height: auto;
    min-height: 1080px;
    font-size: 18px;
    background-image: url(../img/common/bg.png) ;
    background-size: cover; /* 背景图片覆盖整个页面 */
    background-repeat: no-repeat; /* 背景图片不重复 */
}
.header {
    width: 100%;
    height: 64px;
    background-color: #FFFFFF;
}
.header-content {
    width: 1178px;
    height: 64px;
    margin: auto;
    display: flex;
    justify-content: space-around;
    align-items: center;
}
.logo {
    width: 86px;
    height: 52px;
}
.logo img {
    width: 100%;
    height: auto;
}
.nav-list {
    width: 600px;
    height: 64px;
    line-height: 64px;
    margin-left: 40px;
    display: flex;
    font-size: 20px;
    justify-content: flex-start;
    align-items: center;
}
.nav-list .nav-li {
    width: 128px;
    color: #AB5D3A;
    text-align: center;
    position: relative;
    z-index: 0;
    cursor: pointer;
    transform:skew(0);   
    -webkit-transform: skew(0);   
    -moz-transform: skew(0);   
    -o-transform:skew(0);   
    -ms-transform:skew(0);  
}
.nav-li i::after {
    margin-top: 12px;
    content:"";
    position: absolute;
    left: 0;
    top: 0;
    width: 128px;
    height: 39px;
    line-height: 39px;
    border-right: #DFC7A2 2px solid;
    transform:skew(-20deg);   
    -webkit-transform: skew(-20deg);   
    -moz-transform: skew(-20deg);   
    -o-transform:skew(-20deg);   
    -ms-transform:skew(-20deg);  
}
.nav-li:last-child i::after {
    border: none;
}
.nav-li a {
    width: 100%;
    height: 100%;
    display: block;
}

.nav-li:hover, .nav-list .on {
    color: #FFFFFF;
}
.nav-li:hover i::after,.nav-list .on i::after {
    z-index: -1;
    border: none;
    content:"";
    margin-top: 0;
    height: 64px;
    line-height: 64px;
    background-color: #DFBBA3; 
    transform:skew(-20deg);   
    -webkit-transform: skew(-20deg);   
    -moz-transform: skew(-20deg);   
    -o-transform:skew(-20deg);   
    -ms-transform:skew(-20deg);    
}
.nav-li .wait-a {
    position: relative;
}
.nav-li .wait-i {
    font-size: 12px;
    color: gray;
    position: absolute;
    top: 20px;
    left: 35px;
}


.login {
    display: flex;
    justify-content: end;
}
.login img {
    width: 103px;
    height: 51px;
    cursor: pointer;
    margin-right: 2px;
}
.login a:last-child img {
    width: 141px;
}