* {
    margin: 0;
    padding: 0;
}

a {
    text-decoration: none
}

a:hover {
    text-decoration: none
}
p{
    font-size: 14px;
}
ul,
li {
    list-style: none
}

.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: rgba(255, 255, 255, 0.8);
    transition: 1s;
    left: 0;
    right: 0;
    position: relative;

    z-index: 9999;
}

.navbar>div {
    display: -ms-flex;
    display: flex;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
    justify-content: space-between;
}

.navbar-brand {
    width: 90px;
    display: block;
}

.navbar-brand>img {
    width: 100%;
}

.navbar-nav {
    display: -ms-flex;
    display: flex;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
}

.navbar-nav>li {
    padding: 0 10px;
    line-height: 60px;
}

.navbar-nav>li>a {
    color: #333;
    transition: .5s;
    padding: 10px 30px;
}
.navbar-nav>li.active>a{
    background: #016568;
    color: #fff;
}
.navbar-nav>li:hover>a{
    background: #11d655;
    color: #fff;
}
.navbar>div>i {
    display: none;
}
.top-right{
    display: none;
}

.navbar>div>p{
    line-height: 60px;
}
.navbar>div>p>a{
    padding: 10px 5px;
    color: #000;
}
/* language */
.language{
    position: relative;
    padding: 16px 0;
    text-transform: Capitalize;
    cursor: pointer;
    display: inline-block;
}
.language>p{
    background: #005694;
    color: #fff;
    padding: 5px 10px;
    border-radius: 5px;
}
.language .top-right{
    position: absolute;
    left: 0;
    top: 66px;
    width: 100%;
    background: #224275;
}
.top-right a{
    display: inline-block;
    text-align: center;
    width: 100%;
    color: #fff;
    padding: 5px 0;
    border-bottom: 1px solid #fff;
    font-size: 14px;
}
@media all and (max-width:768px) {
    .navbar {
        position: relative;
    }

    .navbar>div>i {
        display: block !important;
        font-size: 26px;
        padding: 20px 30px;
    }

    .navbar-nav {
        display: none;
        position: absolute;
        left: 0;
        top: 67px;
        text-align: center;
        width: 100%;
        background: #333;
    }

    .navbar-nav>li {
        line-height: 40px;

    }

    .navbar-nav>li>a {
        color: #fff;
    }

    .search {
        right: 76px;
        bottom: -102px;
    }
}




.foot{
    background: #333;
    color: #fff;
    text-align: center;
    padding: 10px 0;
}
.foot>div{
    padding: 50px 0;
}
.foot>div>h3{
    font-size: 26px;
    font-weight: bold;
}
.foot>div>p{
    padding: 10px 0;
    font-size: 14px;
    color: #ddd;
}
.foot>div>a{
    font-size: 20px;
    color: #fff;
}
.foot>div>ul{
    display: -ms-flex;
    display: flex;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
    justify-content: space-between;
    margin-top: 50px;
}
.foot>div>ul>li{
    width: 19%;
    border: 1px solid #ccc;
    display: -ms-flex;
    display: flex;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
    justify-content: space-between;
    padding: 30px 30px;
}
.foot>div>ul>li>.foot-i{
    width: 12%;
    padding-top: 10px;
}
.foot>div>ul>li>.foot-i>i{
    font-size: 33px;
}
.foot>div>ul>li:first-of-type>.foot-i{
    padding-top: 5px;
}
.foot>div>ul>li:first-of-type>.foot-i>i{
    font-size: 40px;
}
.foot>div>ul>li>.foot-con{
    width: 77%;
    text-align: left;
}
.foot-ewm{
    margin-top: 20px;
    padding: 40px 0;
    background: url(../img/foot-bg.png) no-repeat  center 110px;
}
.foot-ewm>img{
    width: 120px;
}
@media all and (max-width:768px) {
    .foot{
        padding: 10px 10px;
    }
    .foot>div{
        padding: 10px 0;
    }
    .foot>div>ul{
        margin-top: 5px;
    }
    .foot>div>ul>li{
        width: 100%;
        margin: 5px 0;
    }
    .foot-ewm{
        margin-top: 0;
    }
}