* {
    padding: 0;
    margin: 0;
}
html, body {
    width: 100%;
}
.header-search-input {
    border-right: 1px solid #999999 !important;
}
.header-search-input:focus{
    border-right: 1px solid #1865de !important;
}
.header-container {
    width: 100%;
    height: 348px;
    min-width: 1200px;
}
.header-search {
    width: 100%;
    height: 44px;
    background-color: #739AE3;
    display: flex;
    justify-content: right;
    padding-right: 100px;
    box-sizing: border-box;
}
.search-top {
    height: 100%;
    width: 200px;
    height: 30px;
    border: 1px solid #e3e4e5;
    box-sizing: border-box;
    border-radius: 5px 0 0 5px;
    padding-left: 10px;
    outline: none;
    background: #FFFFFF;
}
.search-icon {
    width: 50px;
    height: 30px;
    background-color: #EEEEEE;
    color: #dddddd;
    font-size: 25px !important;
    cursor: pointer;
    border-radius: 0 5px 5px 0;
    text-align: center;
    line-height: 30px;
}
.search-container {
    display: flex;
    align-items: center;
}
.header-images {
    width: 100%;
    height: 248px;
    background: url('/image/header_bg.png');
    background-size: 100% 100%;
    background-repeat: no-repeat;
}
.header-images .logo img {
    margin-left: auto;
    margin-right: auto;
    /*width: 1350px;*/
    left: 15%;
    top: 60px;
    /*height: 148px;*/
    position: relative;
}
.header-nav {
    margin-top: 1px;
    background: #49A8F0;
    height: 50px;
}
.nav-list {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    width: 1200px;
    height: 50px;
    font-weight: 600;
    font-size: 19px;
    line-height: 48px;
}
.nav-list > a{
    display: inline-block;
    flex: 1;
    text-align: center;
    text-decoration: none;
    color: #FFFFFF;
    height: 100%;
    line-height: 50px;
}
.nav-list > a:hover {
    background-color: #2B66BE;
}
.header-active {
    background: #2B66BE;
}
.m-header {
    display: none;
}
._search {
    width: 1200px;
    margin: auto;
}
._divMain{
    margin-bottom: 30px!important;
}
/** 移动端 **/
@media screen and (max-width: 768px) {
    .header-container {
        height: auto !important;
        width: 100% !important;
        min-width: 100%;
    }
    .header-search {
        display: none;
    }
    .header-images {
        display: none;
    }
    .header-nav {
        display: block;
        height: auto !important;
    }
    .nav-list {
        display: block;
        background-color: #49A8F0;
        height: 0;
        overflow: hidden;
        transition: all 0.3 linear;
        width: 100%;
    }
    .nav-list > a {
        display: block;
        height: 50px;
        text-align: left;
        padding-left: 20px;
        font-weight: bold;
        box-sizing: border-box;
    }
    .m-header {
        display: flex;
        height: 50px;
        background: #49A8F0;
        align-items: center;
        padding: 0 20px;
        box-sizing: border-box;
        justify-content: space-between;
        position: relative;
    }
    .m-header > img {
        width: 35px;
    }
    .m-header > span {
         font-weight: bold;
         color: #FFFFFF;
         display: inline-block;
         flex: 1;
         text-align: left;
         padding-left: 10px;
         box-sizing: border-box;
    }
    .m-header  > .icon-box {
        width: 44px;
        height: 34px;
        border: 1px solid #FFFFFF;
        border-radius: 5px;
        height: 40px;
        box-sizing: border-box;
        display: flex;
        flex-wrap: wrap;
        padding: 10px;
        align-content: space-between;
        cursor: pointer;
    }
    .icon-bar {
        width: 100%;
        height: 2px;
        background-color: #FFFFFF;
    }
    .icon-box:hover {
        background-color: #0567c4;
    }
}