* {
    margin: 0;
    padding: 0;
}

a {
    text-decoration: none
}

a:hover {
    text-decoration: none
}
p{
    font-size: 14px;
}
ul,
li {
    list-style: none;
    margin-bottom: 0;
}

.fl {
    float: left
}

.fr {
    float: right
}

.clear {
    clear: both
}

input {
    outline: none
}

.container {
    width: 1270px;
    margin: 0 auto;
}

body,
html {
    background: #fff;
}

body {
    font-family: "微软雅黑";
    box-sizing: border-box;
}



@media all and (max-width:768px) {
    .container {
        width: 100%;
    }

    .top-left {
        width: 100%;
        text-align: center;
    }
    
    .top-header {
        display: block;
        background: #F2963F
    }

}



/*导航*/
.navbar {
    background: #3D5BA3;
    transition: 1s;
    left: 0;
    right: 0;
    position: relative;
    margin-bottom: 0;
    z-index: 9999;
    border-radius: 0;
    display: -ms-flex;
    display: flex;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
    justify-content: space-between;
}

.navbar>div {
    display: -ms-flex;
    display: flex;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
    justify-content: space-between;
}

.navbar-brand {
    width: 500px;
    display: block;
    padding: 15px 0;
}

.navbar-brand>img {
    width: 100%;
    display: block;
}

.navbar-nav {
    display: -ms-flex;
    display: flex;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
}

.navbar-nav>li {
    padding: 0 10px;
    line-height: 90px;
}

.navbar-nav>li>a {
    color: #fff;
    transition: .5s;
    padding: 10px 15px;
}
.navbar-nav>li>a:hover{
    background: #F2963F;
}
.navbar-nav>li.active>a{
    background: #F2963F;
}
.navbar>i {
    display: none;
}
.top-right{
    display: none;
}

@media all and (max-width:768px) {
    .navbar {
        position: relative;
    }

    .navbar>div>i {
        display: block !important;
        font-size: 26px;
        padding: 30px 30px;
    }

    .navbar-nav {
        display: none;
        position: absolute;
        left: 0;
        top: 102px;
        text-align: center;
        width: 100%;
        background: #333;
        margin: 0;
    }

    .navbar-nav>li {
        line-height: 40px;

    }

    .navbar-nav>li>a {
        color: #fff;
    }

    
}
/* search */
.search{
    margin: 27px 0;
    position: relative;
}
.search input{
    border-radius: 50px;
    border: solid 1px #ccc;
    padding: 5px 10px;
}
.search input::placeholder{
    
}
.search button{
    border: transparent;
    background: transparent;
    position: absolute;
    right: 10px;
    top: 20%;
}




.contact{
    position: relative;
}
.con-map{
    position: absolute;
    top: 0;
    z-index: 8;
    right: 0;
    width: 35%;
    clip-path: polygon(30% 0,100% 0, 100% 100%, 0 100%);
    background: #034377;
    height: 100%;
    text-align: right;
}
.con-map1{
    position: absolute;
    top: 50%;
    z-index: 9;
    width: 25%;
    text-align: right;
    right: 80px;
    transform: translateY(-50%)
}
.con-map1>span{
    display: block;
    padding: 5px 0;
    color: #fff;
}
.con-map1>h3{
    font-size: 24px;
    height: 60px;
    color: #fff;
    padding: 20px 0;
}
.con-map1>h3>span{
    display: block;
    font-size: 18px;
    display: inline-block;
    border-top: 1px solid #ccc;
    color: #fff;
    font-weight: normal;
    margin: 10px 0;
    padding: 10px 0;
}
.con-add{
    padding: 15px 0;
    margin: 20px 0;
    border-bottom: 1px solid #fff;
}


/* footer */
.footer {
    background: #540705;
    padding: 40px 0;
}
.footer>div{
    border-top: 1px solid #814948;
    border-bottom: 1px solid #814948;
    padding: 30px 0;
}
.footer h4 {
    color: #fff;
    font-size: 20px;
    padding: 20px 0;

}

.footer ul {
    display: -ms-flex;
    display: flex;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
    justify-content: space-between;
}

.footer ul>li {
    width: 23%;
    padding: 0 10px;

}


.foot-ab img {
    width: 100px;
    margin-bottom: 20px;
}

.foot-ab p {
    text-align: justify;
    color: #fff;
    font-size: 14px;
    text-indent: 2em;
    padding-bottom: 10px;
}


.foot-pro {
    margin-left: 10px;
    width: 15% !important;
}



.foot-pro>p {
    display: -ms-flex;
    display: flex;
    -ms-flex-flow: row wrap;
    flex-flow: column wrap;
   
}

.foot-pro>p>a {
    color: #fff;
    line-height: 32px;
    font-size: 14px;
}

.foot-pro>p>a>i {
    color: #fff;
    padding-right: 5px;
}
.foot-contact{
    width: 26% !important;
}
.foot-contact span {
    display: block;
    color: #fff;
    line-height: 33px;
    font-size: 14px;
}

.foot-contact>span>i {
    color: #fff;
    width: 30px;
}
.foot-ewm>span{
    display: inline-block;
    text-align: center;
    color: #fff;
    font-size: 14px;
}
.foot-ewm img{
    width: 100px;
    display: block;
    margin-bottom: 5px;
}
.foot {
    background: #540705;
    color: #fff;
    text-align: center;
    padding: 15px 0;
}

.foot a {
    color: #fff;
}

@media all and (max-width:768px) {
    body{
        overflow-x: hidden;
    }
    .navbar>i{
        display: block;
        float: left;
        font-size: 30px;
        color: #fff;
        padding: 18px 20px;
    }
    .navbar-brand{
        width: 290px;
    }
    .navbar{
        display: block;
    }
    .navbar>div{
        display: inline-block;
    }
    .search {
        right: 0;
        left: 25%;
        top: 0px;
        margin: 0 auto;
        text-align: center;
        margin: 0 0 5px;
    }
    .search button{
        right: 10px;
        top: 5px;
    }
    .black-bg{
        display: none;
    }
    .footer ul>li{
        width: 100% !important;
    }
    .foot-pro,.foot-ewm{
        display: none;
    }
    .footer{
        padding: 0;
    }
    .footer>div{
        padding: 0;
    }
    .foot{
        padding: 10px 10px;
    }
}