#header {
    height: 100px;
    /*margin-top: 44px;*/
}

.header-container {
    position: fixed;
    left: 0;
    right: 0;
    z-index: 199;
    width: 100%;
    /*top: 44px;*/
}

.header-wrapper {
    position: relative;
    height: 100%;
}

.header-top {
    position: relative;
    z-index: 2;
    height: 41px;
    border-bottom: solid 1px rgba(255, 255, 255, .1);
    margin-bottom: -1px;
    background-color: #252b3a;
    font-size: 14px;
    color: #A0A2A8;
    transition: top .3s ease-out, background-color .3s;
}


@media (max-width: 768px) {
    #header {
        height: 44px;
    }
    .header-top {
        height: 44px;
        border-bottom: none;
        margin-bottom: 0;
    }
}

.header-logo {
    float: left;
    width: 114px;
    height: 40px;
    margin-left: 15px;
}

.header-tools {
    float: right;
    height: 100%;
}

.header-tools-list {
    height: 100%;
}

.header-tools-list > li {
    float: left;
    height: 100%;
    padding: 0 10px;
    font-size: 0;
    line-height: 40px;
    cursor: pointer;
}

.header-tools-list > li > a {
    display: block;
    padding: 0 10px;
    margin: 0 -10px;
    font-size: 14px;
    line-height: 40px;
}

.header-tools-list > li > a:hover {
    color: #F66F6A;
}

.header-search {
    position: relative;
    width: 180px;
    padding: 0 !important;
    margin-right: 10px;
    cursor: default !important;
}

.header-search-inner {
    position: relative;
    float: right;
    width: 180px;
    height: 40px;
    background: #252b3a;
    transition: 0.35s;
}

#header[data-theme="transparent-light"]:not(:hover):not(.show-search) .header-top {
    border-color: rgba(255, 255, 255, .2);
    background-color: transparent;
}

#header[data-theme="transparent-light"]:not(:hover):not(.show-search) .header-search-inner {
    background-color: transparent;
}

#header[data-theme="transparent-light"]:not(:hover):not(.show-search) .header-bottom {
    background: transparent;
}

.header-search input {
    position: absolute;
    height: 100%;
    width: 100%;
    padding-left: 15px;
    padding-right: 44px;
    border: none;
    outline: none;
    background: rgba(160, 162, 168, 0.2);
    font-size: 14px;
    line-height: 20px;
    color: #fff;
}

.header-search-submit {
    position: absolute;
    right: 15px;
    top: 50%;
    width: 18px;
    height: 18px;
    margin-top: -9px;
    border: none;
    outline: none;
    background-color: transparent;
    background-image: url(../image/index/header-search.png);
    transition: 0.2s;
    cursor: pointer;
}

.header-search-close {
    display: none;
    width: 18px;
    height: 18px;
    background-image: url(../image/index/header-search-close.png);
    cursor: pointer;
    transition: 0.2s;
}

.header-search-close:hover,
.header-search-close:before {
    content: "";
    background-image: url(../image/index/header-search-close-hover.png);
}

.header-search-close:after {
    content: "";
    position: absolute;
    height: 16px;
    border-left: solid 1px #666A75;
    left: 100%;
    top: 50%;
    margin-top: -8px;
    margin-left: 7px;
}

.header-search.active .header-search-inner {
    width: 280px;
}

.header-search.active input {
    padding-right: 82px;
}

.header-search.active input.inputted ~ .header-search-close {
    display: inline-block;
    position: absolute;
    right: 58px;
    top: 50%;
    margin-top: -9px;
}

/*搜索下拉*/

.header-search-droplist {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #212634;
    cursor: default;
}

.header-search-droplist li.to-page + li:not(.to-page) {
    border-top: solid 1px rgba(255, 255, 255, .1)
}

.header-search-droplist.show {
    display: block;
}

.header-search-droplist h2 {
    padding: 0 15px;
    font-size: 12px;
    color: #A0A2A8;
    line-height: 37px;
}

.header-search-droplist a {
    display: block;
    padding: 0 15px;
    font-weight: bold;
    font-size: 14px;
    line-height: 32px;
    color: #fff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: .2s;
}

.header-search-droplist a span {
    font-weight: normal;
    opacity: .9;
}

.header-search-droplist a[href] {
    background-color: rgba(0, 0, 0, .05);
}

.header-search-droplist a[href]:before {
    content: "";
    width: 0;
    height: 0;
    /*background-image: url(images/arrow-hover.svg);*/
}

.header-search-droplist a[href]:after {
    content: "";
    display: inline-block;
    vertical-align: middle;
    width: 14px;
    height: 14px;
    margin-top: -2px;
    margin-left: 5px;
    /*background-image: url(images/arrow.svg);*/
    transition: .2s;
}

.header-search-droplist li:first-child a {
    padding-top: 5px;
}

.header-search-droplist li:last-child a {
    padding-bottom: 5px;
}

.header-search-droplist h2 + ul li:first-child a {
    padding-top: 0;
}

.header-search-droplist a.hover,
.header-search-droplist a:hover {
    color: #F66F6A;
    cursor: pointer;
}

.header-search-droplist a:not([href]).hover,
.header-search-droplist a:not([href]):hover {
    background: rgba(160, 162, 168, .09);
}

.header-search-droplist a[href].hover:after,
.header-search-droplist a[href]:hover:after {
    /*background-image: url(images/arrow-hover.svg);*/
}

.header-tools-list > li.header-login {
    margin-left: 10px;
}

.header-tools-list > li.header-login, .header-tools-list > li.header-register {
    padding-left: 20px;
    padding-right: 20px;
}

.header-tools-list > li.header-login > a {
    border-left: solid 1px rgba(255, 255, 255, 0.1);
    color: #F66F6A;
}

.header-tools-list > li.header-login > a, .header-tools-list > li.header-register > a {
    padding-left: 20px;
    padding-right: 20px;
    margin-left: -20px;
    margin-right: -20px;
}

.header-tools-list > li.header-register > a {
    background-color: #F66F6A;
    color: white;
    transition: 0.2s;
}

.header-user {
    display: none;
    font-size: 0;
    border-left: solid 1px rgba(255, 255, 255, 0.1);
    margin-left: 10px;
}

.header-user-avator {
    display: inline-block;
    position: relative;
    width: 24px;
    height: 24px;
    margin-left: 5px;
    vertical-align: middle;
}

.account-pic {
    display: inline-block;
    vertical-align: middle;
    height: 25px;
    width: 25px;
    border-radius: 13px;
}

.header-tool-user-avator-img {
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 50%;
}

.header-user-name {
    display: inline-block;
    vertical-align: middle;
    margin-left: 5px;
    margin-right: 10px;
}

.header-user-name span {
    display: inline-block;
    vertical-align: middle;
    min-width: 20px;
    max-width: 85px;
    font-size: 14px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.header-user-name i {
    margin-left: 5px;
}

.header-icon-dropdown {
    display: inline-block;
    vertical-align: middle;
    border-style: solid;
    border-width: 6px 4px 0 4px;
    border-color: #A0A2A8 transparent transparent transparent;
}

.header-user-info {
    display: none;
    cursor: default;
    overflow: hidden;
    position: absolute;
    top: 100%;
    right: 0;
    width: 250px;
    z-index: 10;
    background: #212634;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    line-height: 1;
}

.header-user-info * {
    box-sizing: content-box;
}

.header-user-info-list {
    font-size: 14px;
}

.header-user-info-list > li {
    position: relative;
    line-height: 20px;
    color: #fff;
}

.header-user-info-list > li:after {
    content: none;
}

.header-user-info-list > li > a {
    display: block;
    padding: 6px 20px 6px 20px;
    -webkit-transition: .2s;
    transition: .2s;
}

.header-user-info-list > li:hover > a {
    color: #F66F6A;
}

.header-user-info-split {
    padding: 10px 20px;
}

.header-user-info-split:before {
    content: "";
    display: block;
    border-top: solid 1px #4a4a4a;
}

.header-user-info-item-account {
    overflow: hidden;
}

.header-user-info-item-account > a {
    float: left;
    width: 50%;
}

.header-user-info-list .header-verification {
    padding-left: 0;
    line-height: 20px;
    text-align: right;
}

.header-verification i {
    margin-right: 5px;
    line-height: 20px;
}

.header-verification p {
    display: none;
    vertical-align: middle;
    font-size: 12px;
}

.header-verification:not(.active) p.state-unactive {
    display: inline-block;
    color: #ff8833;
}

.header-verification.active .header-icon-verification {
    background-position: 0px -64px;
}

.header-verification.active p.state-active {
    display: inline-block;
    color: #3dcaa6;
}

.header-user:hover .header-user-name {
    color: #F66F6A;
}
.header-user:hover .header-user-name i {
    border-top-color: #F66F6A;
}
.header-user:hover .header-user-info {
    display: block;
}

.header-user-info-list > li.message span {
    width: auto;
    min-width: 16px;
    background-color: #F66F6A;
    float: right;
    padding: 0px 4px;
    border-radius: 10px;
    font-size: 12px;
    line-height: 16px;
    color: #ffffff !important;
    margin-top: 3px;
}

/* 登录态 */
.logined .header-user {
    display: block;
}

.logined .header-login-mobile,
.logined .header-login,
.logined .header-register {
    display: none !important;
}

@media (max-width: 768px) {
    .header-tools-list > li {
        display: none;
        line-height: 44px;
    }

    .header-tools-list > li > a {
        line-height: 44px;
    }

    .header-tools-list > .header-login-mobile {
        display: block;
    }

    .header-user {
        border-left: 0;
        margin-left: 0;
    }

    .header-ad-mb.load-ad ~ .header-tools .header-user-name {
        margin-right: 0;
    }
}



/*头底部*/

.header-bottom {
    position: relative;
    z-index: 1;
    padding-left: 5px;
    background-color: #252b3a;
    transition: background-color 0.3s;
}


.header-nav {
    position: relative;
    float: left;
    width: 100%;
    height: 60px;
    overflow: hidden;
    margin: 0;
}

.header-nav.overflow-visible {
    overflow: visible;
}

.header-nav-list:after {
    clear: both;
}

.header-nav-list {
    position: relative;
    z-index: 1;
}

.header-nav-list > li {
    float: left;
}

.header-nav-list > li > a {
    display: block;
    padding: 15px;
    font-size: 14px;
    line-height: 30px;
    color: white;
    cursor: default;
    -webkit-transition: color .3s;
    transition: color .3s;
}

.header-nav-list > li > a[href] {
    cursor: pointer;
}

.header-nav-list > li > a[href^="javascript:"] {
    cursor: default;
}

.header-nav-list > li:hover > a {
    color: #F66F6A;
}

.header-nav-list > li.header-nav-hot a {
    position: relative;
}

.header-nav-list > li.header-nav-hot a:after {
    content: "";
    display: inline-block;
    position: absolute;
    top: 20px;
    width: 6px;
    height: 6px;
    margin-left: 2px;
    border-radius: 50%;
    background: #F66F6A;
}

.header-nav-list > li.header-nav-item-hide {
    display: none;
}

.header-nav-hover-line {
    position: absolute;
    z-index: 0;
    height: 3px;
    width: 0;
    padding: 0;
    background-color: #F66F6A;
    bottom: 0;
    -webkit-transition: .3s cubic-bezier(.4, 0, .2, 1);
    transition: .3s cubic-bezier(.4, 0, .2, 1);
}

.header-nav-item-more {
    position: relative;
}

@media (max-width: 768px) {
    .header-bottom {
        display: none;
    }
}
.tips {
    position: absolute;
    top: 27px;
    left: 220px;
    background-color: #FFFF00;
    padding: 1px 3px 2px;
    border-radius: 3px;
    z-index: 1000;
}
.tips:after {
    content: "";
    display: block;
    position: absolute;
    bottom: -8px;
    left: 30px;
    width: 0;
    height: 0;
    border: 4px solid;
    border-color: #FFFF00 transparent transparent;
}
.tips2 {
    position: absolute;
    top: 27px;
    left: 328px;
    background-color: #91cdff;
    padding: 1px 6.5px 2px;
    border-radius: 3px;
    z-index: 1000;
    color: #002e55;
}
.tips2:after {
    content: "";
    display: block;
    position: absolute;
    bottom: -8px;
    left: 30px;
    width: 0;
    height: 0;
    border: 4px solid;
    border-color: #91cdff transparent transparent;
}
