.header {
    background-color: rgba(0, 11, 23, 0.04);
    height: 64px;
    border-bottom-color: rgba(0, 11, 23, 0.04);
    position: absolute;
    top: 0;
    width: 100%;
    /* min-width: 1200px !important; */
    z-index: 2;
}

@media (min-width: 320px) and (max-width: 1200px) {
    .header {
        width: 1180px !important;
        /* background-color: #0071ef !important; */
    }
}

.header:hover {
    background-color: #fff;
}

.headers {
    background-color: rgba(0, 11, 23, 0.04);
    height: 64px;
    border-bottom-color: rgba(0, 11, 23, 0.04);
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 2;
}

@media (min-width: 320px) and (max-width: 1200px) {
    .headers {
        width: 1180px !important;
        /* background-color: #0071ef !important; */
    }
}

.logo {
    /* width: 150px; */
    height: 50px;
}

.nav {
    height: 100%;
    margin-left: 40px;
}

.nav ul {
    height: 100%;
}

.nav>ul>li {
    position: relative;
    margin-right: 28px;
    font-size: 14px;
    color: #17181b;
    line-height: 64px;
}

.nav>ul>li>span {
    /* height: 100%; */
    cursor: pointer;
}

.nav ul li i {
    font-size: 12px;
    margin-left: 4px !important;
}

.header .nav>ul>li:hover a {
    /* width: 20px; */
    color: rgb(0, 113, 239) !important;
}

.nav .actives a {
    color: rgb(0, 113, 239) !important;
}

.nav>ul>li:hover .none {
    display: flex;
}

.popover {
    position: absolute;
    /* top: 40px; */
    /* top: 0; */
    left: 0;
    line-height: 1;
    color: #17181b;
    background-color: #fff;
    border: 1px solid rgba(0, 11, 23, .04);
    animation: showPopup 0.2s linear both;
    z-index: 100;
}

.Inner_frame {
    padding: 28px 28px 40px;
    white-space: nowrap;
}

.Inner_frame ul {
    margin-top: 28px;
}

.Inner_frame>ul>li {
    margin-top: 28px;
}

.Inner_frame_title {
    color: #17181b;
    border-bottom: 1px solid rgb(229, 231, 235);
    font-size: 14px;
    padding-bottom: 12px;
}

.popover-left {
    background-color: #f8f9fc;
}

.product .imgs {
    width: 36px;
    height: 36px;
    margin-right: 10px;
    flex-shrink: 0;
}

.product .imgs img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product ul>a>li {
    display: flex;
}

.product ul>a {
    width: 48%;
}

.product ul>a:hover .title {
    color: rgb(0, 113, 239);
    font-size: 14px !important;
}

.product ul>a>li {
    margin-bottom: 20px;
}

.product ul>a>li .title {
    color: #17181b;
}

.product ul>a>li .subtitle {
    color: #808082;
    margin-top: 8px;
}

.apply ul>li>a {
    color: #17181b;
}

.apply ul>li {
    margin-right: 40px;
}

.apply ul {
    height: 20px;
    line-height: 1.3;
}

.apply a {
    color: #0071ef;
    margin-top: 28px;
    line-height: 1.3;
}

.textsli ul {
    line-height: 1.3;
    margin-top: 8px;
}

.textsli ul>li {
    width: 46%;
    display: block;
    margin-top: 20px;
}

.textsli ul>li>a {
    color: #17181b;
}

.textsli ul>li:hover a {
    color: #0071ef;
}

.login {
    color: rgb(23, 24, 27);
}

.register {
    border: 1px solid rgb(0, 113, 239);
    background-color: rgb(0, 113, 239);
    color: rgb(255, 255, 255);
    font-weight: 500;
    cursor: pointer;
    height: 40px;
    width: 104px;
    border-radius: 2px;
    text-align: center;
    line-height: 40px;
    font-size: 14px;
}

.register:hover {
    background-color: #107bf3;
}

.plain {
    border: 1px solid rgb(0, 113, 239);
    color: rgb(0, 113, 239);
    font-weight: 500;
    cursor: pointer;
    height: 40px;
    width: 104px;
    border-radius: 2px;
    text-align: center;
    line-height: 40px;
    font-size: 14px;
}

.bgfff {
    border: 1px solid #fff;
    color: #fff;
}


/* 经过顶部对应模块 展示 下拉弹窗 */

@keyframes showPopup {
    0% {
        top: 30px;
    }
    100% {
        top: 64px;
    }
}