.app-header {
    width: 1920px;
    height: 72px;
    position: fixed;
    top: 0;
    left: 50%;
    z-index: 9999;
    transform: translateX(-50%);
    background-color: #FFFFFF;
    box-shadow: 0 0 12px rgba(0, 0, 0, .07);
    transition: background-color .3s;
}

.app-header .pc-wrap {
    align-items: center;
    height: 100%;
}

.app-header .app-logo {
    width: 188px;
    height: 70px;
    margin-right: 36px;
}

.app-header .app-logo img {
    object-fit: contain;
}

.app-header .show-city-box {
    width: 60px;
    height: 28px;
    border: 1px solid #FFFFFF;
    color: #FFFFFF;
    text-align: center;
    line-height: 26px;
    border-radius: 14px;
    margin-left: 10px;
    margin-right: 42px;
}

.nav-item-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap;
    flex: 1;
    height: 40px;
}

.nav-item-wrapper > li {
    width: auto;
    position: relative;
    margin-right: 12px;
}

.nav-item-wrapper > li > a {
    display: block;
    height: 70px;
    line-height: 70px;
    text-align: center;
    padding: 0 15px;
    font-size: 14px;
    color: #1a1a1a;
    transition: background-color .3s;
}

.nav-item-wrapper > li.active > a, .nav-item-wrapper > li:hover > a {
    color: #FFFFFF;
    background-color: #00a2ff;
}

.nav-item-wrapper > li.active:after, .nav-item-wrapper > li:hover:after {
    display: none;
    content: '';
    width: 28px;
    height: 2px;
    background-color: #FFFFFF;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
}

.nav-item-wrapper > li {

}

.nav-item-wrapper > li .inner-nav {
    min-width: 140px;
    position: absolute;
    top: 70px;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
}

.nav-item-wrapper > li:hover .inner-nav {
    display: block;
    opacity: 1;
    visibility: visible;
}

.nav-item-wrapper .inner-nav ol {
    background-color: #fff;
    padding: 12px 0;
    border-radius: 0 0 4px 4px;
    border: 1px solid #e6e7e7;
}

.nav-item-wrapper .inner-nav ol li {
    padding: 0 12px;
    margin: 4px 0;
}

.nav-item-wrapper .inner-nav ol li a {
    display: block;
    width: auto;
    padding: 6px;
    /*height: 32px;*/
    /*line-height: 32px;*/
    text-align: center;
    margin: 0 auto;
    font-size: 14px;
    color: #9da7a9;
    border-radius: 4px;
}

.nav-item-wrapper .inner-nav ol .active a, .nav-item-wrapper .inner-nav ol li:hover a {
    color: #ffffff;
    background-color: var(--theme-color);
}

.nav-item-wrapper .inner-nav .triangle-top:before {
    top: -12px;
    left: 64px;
}

.user-handle-module {
    min-width: 270px;
    height: 100%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    flex-wrap: nowrap;
    margin-left: auto;
}

.user-handle-module .search-icon {
    font-size: 22px;
    color: #fff1cc;
    margin-right: 20px;
}

.user-handle-module .search-icon:hover {
    color: var(--theme-color);
}

.login-module {
    display: flex;
    justify-content: space-between;
    align-items: center;
    /*width: 228px;*/
    height: 40px;
}

.login-module .user-login {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 104px;
    height: 40px;
    font-size: 14px;
    color: #333333;
    background-color: #FFFFFF;
    border-radius: 4px;
    border: 1px solid #00a2ff;
}

.login-module .icon-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #FFFFFF;
}

.user-login a {
    color: var(--theme-color);
}

.user-login span {
    margin: 0 4px;
}

.login-module .enterprise-login {
    display: block;
    width: 104px;
    height: 40px;
    border-radius: 20px;
    text-align: center;
    line-height: 40px;
    font-size: 16px;
    color: #333333;
    font-weight: 700;
    background-image: linear-gradient(#ffeb41, #ffda06);
    box-shadow: 2px 2px 6px #ffeb41;
}

.user-module {
    /*width: 40px;*/
    position: relative;
    display: flex;
    align-items: center;
}

.user-module > a {
    color: var(--text-color);
    font-size: 14px;
    margin-left: 6px;
}

.user-head-img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.user-module .user-menu-wrapper {
    width: 186px;
    height: auto;
    border-radius: 0 0 4px 4px;
    position: absolute;
    top: 60px;
    right: 0;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
    background-color: #fff;
    box-shadow: 0 5px 5px rgba(0, 0, 0, .1);
}

.user-module:hover .user-menu-wrapper {
    opacity: 1;
    visibility: visible;
}

.user-module .user-menu-wrapper li:first-child {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 60px;
    line-height: unset;
    border-bottom: 1px solid #e6e7e7;
    box-sizing: border-box;
    margin: 0;
}

.user-module .user-menu-wrapper li.triangle-top:before {
    top: -11px;
    left: 162px;
}

.user-module .user-menu-wrapper li {
    margin: 12px 0;
    width: 186px;
    height: 32px;
    line-height: 32px;
    text-align: center;
    position: relative;
}

.user-module .user-menu-wrapper a {
    display: block;
    width: 148px;
    height: 34px;
    line-height: 34px;
    margin: 0 auto;
    font-size: 14px;
    color: #444444;
    border-radius: 4px;
}

.user-module .user-menu-wrapper li:hover a {
    color: #ffffff;
    background-color: var(--theme-color);
}

.user-module .info-num {
    display: inline-block;
    width: 18px;
    height: 18px;
    line-height: 18px;
    text-align: center;
    font-size: 12px;
    color: #FFFFFF;
    background-color: #ff5e5e;
    border-radius: 50%;
    position: absolute;
    top: 8px;
    right: 38px;
    z-index: 9;
}

.app-header .search-input-wrapper {
    position: relative;
    margin-right: 24px;
}

.app-header .search-input-wrapper input {
    width: 140px;
    background-color: #f5f5f5;
}

.app-header .search-input-wrapper .search-btn {
    position: absolute;
    right: 4px;
    top: 1px;
    color: #666666;
    height: 36px;
    line-height: 36px;
    text-align: center;
    padding-right: 12px;
    background-color: #f5f5f5;
}
