body {
    background: #f9faff;
    font-family: PingFang SC,Verdana,Helvetica Neue,Microsoft Yahei,Hiragino Sans GB,"Microsoft Sans Serif",WenQuanYi Micro Hei,"sans-serif";
}

* {
    padding: 0;
    margin:0 auto; /*解决inline、lineblock默认间距问题*/
}
/*::-webkit-scrollbar {*/
/*    display: none; !* Chrome Safari *!*/
/*}*/
/*头部*/
.header-warp {
    position: fixed;
    width: 100%;
    z-index: 100;
    top: 0;
}

.header {
    height: 200px;
    position: relative;
    text-align: center;
}
.top-with-header {
    top: 200px
}
.margin-top-with-header {
    margin-top: 200px;
}
.header-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    text-align: center;
    background: url(../images/header-bg-2.jpg) no-repeat;
    background-size: cover;
}

.header-background__logo {
    top: 25px;
    position: relative;
    right: 495px;
    display: inline-block;
    width:200px;
    max-width:200px;
    border:none;
}

.header-search {
    margin: auto;
    width: 420px;
    box-shadow: 0 4px 10px 3px rgba(22,105,235,0.60);
    top: 60px;
    left: 0;
    position: relative;
    display: flex;
    display: -webkit-flex;
    background: transparent;
    border-radius: 20px
}

.header-search__inputwrap {
    padding: 13px 20px;
    background: #FFFFFF;
    border-radius: 20px 0 0 20px;
    flex: 1;
    -webkit-flex: 1;
    width: 0;
    font-size: 0;
}
.header-search__input {
    width: 100%;
    font-size: 14px;
    line-height: 1;
    height: 14px;
    text-align: left;
    border: none;
    outline: none;
    vertical-align: middle;
}

.header-search__safari {
    padding: 10px 20px;
}

.header-search__safari .header-search__input {
    height: auto;
}


.header-search__input::-webkit-input-placeholder{
    color: #AFB2BD;
}
.header-search__input::-moz-placeholder{   /* Mozilla Firefox 19+ */
    color: #AFB2BD;
}
.header-search__input:-moz-placeholder{    /* Mozilla Firefox 4 to 18 */
    color: #AFB2BD;
}
.header-search__input:-ms-input-placeholder{  /* Internet Explorer 10-11 */
    color: #AFB2BD;
}

.header-search__button {
    width: 70px;
    height: 40px;
    background: #38A5FF;
    border: none;
    border-radius: 0 20px 20px 0;
    cursor: pointer;
    border: none;
    outline: none;
}

.header-search__button:hover {
    background: #3294e5;
}

.header-search__icon {
    color: #EEF1FA;
    font-size: 37px;
    position: relative;
    left: -4px;
    top: 1px;
}

.search-history {
    width: 350px;
    background: #FFFFFF;
    box-shadow: 0 4px 10px 3px rgba(0,0,0,0.03);
    border-radius: 6px;
    position: absolute;
    top: 48px;
    left: 0;
    z-index: 10;
}

.search-history__list {
    list-style-type:none;
    padding: 6px 0 9px 0;
}

.search-history__item {
    font-size: 14px;
    color: #5C5F6A;
    letter-spacing: 0;
    line-height: 20px;
    padding: 5px 20px;
    text-align: left;
    cursor: pointer;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.search-history__item:hover {
    color: #1568EA;
    background: #EEF0F7;
}

/*导航*/
.nav {
    text-align: center;
    position: absolute;
    top: 140px;
    left: 0;
    right: 0;
}
.nav-list {
    box-sizing: border-box;
    background: #FFFFFF;
    box-shadow: 0 1px 20px 3px rgba(8,62,146,0.05);
    border-radius: 4px 4px 0 0;
    font-size: 0px;
    margin: 0px auto;
    display: flex;
    display: -webkit-flex;
    /*overflow-x: hidden;*/
    /*overflow-y: visible;*/
}

.nav-list__item {
    box-sizing: border-box;
    display: inline-block;
    text-align: center;
    cursor: pointer;
    position: relative;
    font-size: 16px;
    line-height: 60px;
    word-break: keep-all;
}

.nav-list__item a {
    text-decoration: none;
    color: #404552;
    display: block;
    cursor: pointer;
}

.nav-list__item a:hover {
    color: #1669EB;
    background: transparent;
}

.nav-list__item.active a {
    color: #1669EB;
    background: transparent;
}

.nav-list_badge {
    display: block;
    position: absolute;
    font-size: 12px;
    color: #FFFFFF;
    text-align: center;
    line-height: 20px;
    background: #F57D59;
    border-radius: 10px 10px 10px 0;
    width: 46px;
    height: 20px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    right: -28px;
    top: 9px;
}
.nav-slider {
    display: block;
    height: 4px;
    background: #1669EB;
    bottom: 0;
    transform: translateX(394px);
    position: absolute;
}

/*导航子菜单*/
.nav-sub {

}

.nav-sub .nav-sub__arrow {
    display: inline-block;
    pointer-events: none;
    font-size: 22px;
    color: #605E78;
}

.nav-sublist {
    padding: 10px 0;
    min-width: 193px;
    background: #FFFFFF;
    box-shadow: 0 2px 7px 0 rgba(0,0,0,0.08);
    border-radius: 0 0 4px 4px;
    position: absolute;
    list-style: none;
    display: none;
    left: -18px;
}

.nav-sub.nav-sub__opened .nav-sublist {
    display: block;
}

.nav-sublist__item {

    padding: 17px 20px;
    text-align: left;
}
.nav-sublist__item:hover {
    background: #F5F6FA;
    color: #404552;
}
.nav-sublist__item a
{
    font-size: 16px;
    color: #404552 !important;
    line-height: 16px;
    /*display: inline-block;*/
    max-width: 188px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.nav-sublist__item.nav-sublist__itemselected a {
    color: #1669EB !important;
}

/*底部*/
.footer {
    background: #091633;
    width: 100%;
    height: 140px;
    position: relative;
    text-decoration: none;
}
.footer-warp {
    width: 1200px;
    padding-top: 28px;
}
.footer-left {
    float: left;
    /*display: flex;*/
    align-items: center;
}
.footer-code-box {
    display: flex;
    align-items: center;
}
.footer-code-box:first-child {
    margin-right: 50px;
}
.footer-code-img {
    width: 86px;
    height: 86px;
    border-radius: 5px;
}
.footer-code-text {
    margin-left: 12px;
    text-align: center;
}
.code-text {
    font-size: 14px;
    color: #BCCBE6;
    margin-bottom: 3px;
}
.code-title {
    font-size: 14px;
    color: #717B8E;
}
.footer-left__logo {

}
.footer-left__service {
    font-size: 14px;
    color: #717B8E;
    line-height: 18px;
    position: relative;
    top: 5px;
}

.footer-right {
    float: right;
}

.footer-right__links {
    /*margin-top: 22px;*/
    font-size: 0px;
}

.footer-right__links a {
    font-size: 14px;
    color: #BCCBE6;
    text-decoration: none;
    cursor: pointer;
    line-height: 20px;
    display: inline-block;
}
.footer-right__links a:hover {
    color: #FFFFFF;
}

.footer-right__links a:nth-child(n+2) {
    margin-left: 40px;
}
.footer-right__copyright {
    font-size: 0;
    margin-top: 8px;
}

.footer-right__copyright .footer-right__text, .footer-right__copyright a {
    font-size: 12px;
    color: #717B8E;
    line-height: 18px;
    position: relative;
}

.footer-right__copyright a {
    text-decoration: none;
    color: #717B8E;
}

.footer-right__copyright a:hover {
    color: #717B8E;
}

.empty-view {
    width: 100%;
    text-align: center;
    padding-top: 98px;
    padding-bottom: 40px;
}

.empty-view__img {
    vertical-align: middle;
}

.empty-view__msg {
    font-size: 16px;
    color: #5C5F6A;
    text-align: center;
    padding-top: 18px;
}


/*中间部分宽度*/
.content-width {
    width: 1200px;
}

@media screen and (max-width: 1600px) {
    .content-width {
        width: 1000px;
    }
    .footer-warp {
        width: 1000px;
    }
    .nav-list {
        padding: 0 8px;
    }
}

@media screen and (min-width: 1920px) {
    .header-background {
        background: url(../images/header-bg-2.jpg) no-repeat;
        background-size: 100%;
    }
}
