.head_box {
    width: 100%;
    /* height: 80px; */
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 9999998;
    opacity: 0;
}

.head_left {
    width: 20%;
    height: 80px;
    /* border-bottom-right-radius: 10px; */
    /* background: linear-gradient(-135deg, transparent 52px, rgba(0, 0, 0, 0.2) 0) top right; */
    /* background: linear-gradient(-135deg, transparent 52px, #fff 0) top right; */
    background-color: #fff;
    display: flex;
    align-items: center;
    border-bottom-right-radius: 10px;
}

.head_left img {
    width: 80%;
}

.head_right {
    width: 100%;
    height: 80px;
    border-top-left-radius: 10px;
    /* background: linear-gradient(45deg, transparent 52px, rgba(0, 0, 0, 0.2) 0) bottom left; */
    /* background: linear-gradient(45deg, transparent 52px, #fff 0) bottom left; */
    background-color: #fff;
    margin-left: -20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-left: 2%;
    padding-right: 1.5%;
    box-sizing: border-box;
    border-top-left-radius: 10px;
}

.nav_list {
    display: flex;
    align-items: center;
    height: 100%;
    justify-content: center;
}

.login {
    height: 80px;
    /* line-height: 80px; */
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}


.login a,
.phone_num p {
    font-size: 18px;
    color: #fff !important;
    text-decoration: none !important;
    font-family: 'FangZhengBold', sans-serif;
    font-weight: bold;
}

.nav_item a {
    font-size: 18px;
    color: #333 !important;
    text-decoration: none !important;
    font-family: 'FangZhengBold', sans-serif;
    font-weight: bold;
}

.nav_item a:hover {
    color: var(--lordColor) !important;
    text-decoration: none !important;
}

.nav_index_icon a img {
    width: 30px;
}

.nav_item {
    margin-left: 55px;
    /* width: 8cw; */
    position: relative;
    cursor: pointer;
    /* height: 100%; */
    display: flex;
    align-items: center;
}

.nav_item::after {
    content: '';
    width: 0;
    height: 2px;
    background-color: var(--lordColor);
    margin: 0 auto;
    position: absolute;
    left: 50%;
    bottom: -8px;
    transform: scaleX(0);
}

.nav_item:hover::after {
    width: 100% !important;
    transform: scaleX(1) !important;
    left: 0 !important;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
}

.nav_item_after::after {
    content: '';
    width: 100%;
    height: 2px;
    background-color: var(--lordColor);
    margin: 0 auto;
    position: absolute;
    left: 0;
    bottom: -8px;
    transform: scaleX(1) !important;
}

.slideContent {
    position: absolute;
    top: 80px;
    left: 0;
    width: 100vw;
    line-height: 60px;
    /* background: #424242; */
    background-color: #d2e8f6;
    z-index: 2;
    font-size: 14px;
    display: none;
}

.slideMenu {
    width: 80vw;
    height: 100%;
    display: none;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.slideMenu_scroll {
    justify-content: flex-start;
    overflow-x: scroll;
}

/*滚动条整体样式*/
.slideMenu_scroll::-webkit-scrollbar {
    /*高宽分别对应横竖滚动条的尺寸*/
    width: 10px;
    height: 6px;
}

/*滚动条里面小方块*/
.slideMenu_scroll::-webkit-scrollbar-thumb {
    border-radius: 10px;
    -webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
    background: var(--lordColor);
}

/*滚动条里面轨道*/
.slideMenu_scroll::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    background: #EDEDED;
}

.slideMenu-item {
    /* color: #fff; */
    color: #000;
    font-weight: bold;
    padding: 0 20px;
    box-sizing: border-box;
    font-size: 13px;
    opacity: .7;
    cursor: pointer;
    display: flex;
    align-items: center;
    flex: 0 0 auto;
}

.slideMenu-item:hover {
    opacity: 1;
}

.slideMenu-item>img {
    width: 24px;
    height: 24px;
    margin-right: 5px;
    display: block;
}

/* 悬浮菜单 */
.other_fixed {
    position: fixed;
    right: 0;
    top: 0;
    width: 100px;
    height: 100%;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

.other_fixed>ul {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 45px;
}

.other_fixed>ul>li:hover {
    transform: translateX(-5px);
    -webkit-transform: translateX(-5px);
    -moz-transform: translateX(-5px);
    -o-transform: translateX(-5px);
    -ms-transform: translateX(-5px);
}

.other_fixed>ul>li {
    margin: 10px 0;
    width: 100%;
    transition: transform 0.3s ease-in-out;
    -webkit-transition: transform 0.3s ease-in-out;
    -moz-transition: transform 0.3s ease-in-out;
    -o-transition: transform 0.3s ease-in-out;
    -ms-transition: transform 0.3s ease-in-out;
    position: relative;
    pointer-events: all;
}

.other_fixed>ul>li>a.iconfont {
    color: #fff;
    font-size: 20px;
    padding: 10px 0;
    width: 100%;
    text-align: center;
    transition: color 0.5s ease-in-out;
    -webkit-transition: color 0.5s ease-in-out;
    -moz-transition: color 0.5s ease-in-out;
    -o-transition: color 0.5s ease-in-out;
    -ms-transition: color 0.5s ease-in-out;
    display: block;
    z-index: 10;
    position: relative;
    cursor: pointer;
}

.other_fixed.navWc>ul>li>a.iconfont {
    color: #666;
}

/* 搜索 */
.other_fixed>ul>li:hover .searchIn {
    transform: none;
    -webkit-transform: none;
    -moz-transform: none;
    -o-transform: none;
    -ms-transform: none;
    opacity: 1;
    pointer-events: auto;
}

.other_fixed>ul>li .searchIn {
    position: absolute;
    height: 100%;
    z-index: 5;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 50px;
    padding-left: 25px;
    background-color: var(--lordColor);
    border-radius: 100px;
    transform: translate3d(5px, 0, 0);
    -webkit-transform: translate3d(5px, 0, 0);
    -moz-transform: translate3d(5px, 0, 0);
    -o-transform: translate3d(5px, 0, 0);
    -ms-transform: translate3d(5px, 0, 0);
    opacity: 0;
    pointer-events: none;
    transition: all 0.7s ease-in-out;
    -webkit-transition: all 0.7s ease-in-out;
    -moz-transition: all 0.7s ease-in-out;
    -o-transition: all 0.7s ease-in-out;
    -ms-transition: all 0.7s ease-in-out;
}

.other_fixed>ul>li .searchIn input {
    border: none;
    color: #fff;
    background: transparent;
    line-height: 24px;
    text-indent: 0px;
}

.other_fixed>ul>li .searchIn input::placeholder {
    color: #fff;
}

/* 微信号 */
.other_fixed>ul>li:hover .wxBox {
    transform: none;
    -webkit-transform: none;
    -moz-transform: none;
    -o-transform: none;
    -ms-transform: none;
    opacity: 1;
    pointer-events: auto;
}

.other_fixed>ul>li .wxBox {
    position: absolute;
    height: 100%;
    z-index: 5;
    right: 100%;
    bottom: 0;
    padding-right: 20px;
    width: 1.5rem;
    transform: translate3d(5px, 0, 0);
    -webkit-transform: translate3d(5px, 0, 0);
    -moz-transform: translate3d(5px, 0, 0);
    -o-transform: translate3d(5px, 0, 0);
    -ms-transform: translate3d(5px, 0, 0);
    opacity: 0;
    pointer-events: none;
    transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
}

.other_fixed>ul>li .wxBox>span {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    right: 20px;
    background-color: var(--lordColor);
    padding: 10px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.other_fixed>ul>li .wxBox>span>img {
    width: 120px;
    margin-right: 10px;
}

.other_fixed>ul>li .wxBox>span>img:last-of-type {
    margin-right: 0px;
}

/* 链接 */
.other_fixed>ul>li:hover .add {
    transform: none;
    -webkit-transform: none;
    -moz-transform: none;
    -o-transform: none;
    -ms-transform: none;
    opacity: 1;
    pointer-events: auto;
}

.other_fixed>ul>li .add {
    position: absolute;
    height: 100%;
    width: auto;
    z-index: 5;
    right: 0;
    bottom: 0;
    color: #fff;
    white-space: nowrap;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-right: 55px;
    padding-left: 25px;
    background-color: var(--lordColor);
    border-radius: 100px;
    transform: translate3d(5px, 0, 0);
    -webkit-transform: translate3d(5px, 0, 0);
    -moz-transform: translate3d(5px, 0, 0);
    -o-transform: translate3d(5px, 0, 0);
    -ms-transform: translate3d(5px, 0, 0);
    opacity: 0;
    pointer-events: none;
    transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
}

/* .suspension_menu_box {
    width: 58px;
    position: fixed;
    top: 45%;
    right: 1.2%;
    z-index: 70;
}

.menu_item {
    width: 100%;
    height: 58px;
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #ddd;
    position: relative;
    cursor: default;
}

.menu_item img {
    width: 28px;
    height: 28px;
}

.menu_item span {
    width: 58px;
    height: 58px;
    font-size: 12px;
    background: #3E3874;
    color: #fff;
    text-align: center;
    line-height: 14px;
    padding: 15px;
    box-sizing: border-box;
    position: absolute;
    left: 0;
    top: 0;
    display: none;
}

.tel_menu:hover .tel_popup {
    display: block;
}

.qr_popup,
.tel_popup {
    width: 160px;
    background-color: #fff;
    border: 1px solid #ddd;
    padding: 10px;
    box-sizing: border-box;
    position: absolute;
    top: 0;
    right: 56px;
    display: none;
}

.tel_popup {
    width: max-content;
}

.qr_popup p,
.tel_popup p {
    width: 100%;
    text-align: center;
    font-size: 12px;
    color: #555;
    margin-top: 6px;
}

.qr_popup img {
    width: 100%;
    height: 138px;
    margin-top: 6px;
} */


/* 返回顶部 */

.pull_up_box {
    width: 50px;
    height: 50px;
    display: none;
}

.pull_up {
    width: 50px;
    height: 50px;
    background-color: rgba(0, 0, 0, 0.2);
    border: 2px solid #b4b6b8;
    border-radius: 5px;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    right: 1.2%;
    bottom: 20px;
    z-index: 999999;
    display: none;

}

.pull_up img {
    width: 20px;
}

.phones {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    font-family: 'FangZhengBold', sans-serif;
    font-weight: bold;
    color: #fff;
}

.phones .iconfont {
    font-size: 16px;
    margin-right: 10px;
}

/* 移动端 */
.tabList {
    position: fixed;
    display: flex;
    z-index: 9999999;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100vw;
    height: 100vh;
    transition: all 0.4s;
    transform: translate3d(100%, 0, 0);
    -webkit-transform: translate3d(100%, 0, 0);
    -moz-transform: translate3d(100%, 0, 0);
    -ms-transform: translate3d(100%, 0, 0);
    -o-transform: translate3d(100%, 0, 0);
}

.tabList-selce {
    transform: translate3d(0, 0, 0);
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
}

.list-item {
    border-top: 1px rgba(8, 32, 56, 0.3) solid;
    box-shadow: inset 0 0 0 rgb(0 0 0 / 0%);
    text-shadow: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    color: #fff;
    height: 44px;
    line-height: 44px;
    font-family: 'FangZhengBold', sans-serif;
    font-weight: bold;
    font-size: 14px;
    padding: 0 24px;
    overflow: hidden;
}

.list-item p {
    line-height: 44px;
    font-family: 'FangZhengBold', sans-serif;
    font-weight: bold;
    color: #fff;

    font-size: 14px;
}

.list-tab {
    display: none;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.3);
}

.list-tab li a {
    width: 100%;
    display: inline-block;
    color: #fff;
    height: 38px;
    line-height: 38px;
    padding: 0 24px;
    opacity: 0.9;
}

.top_search_input_box {
    width: 100%;
    margin: 10px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.top_search_input {
    width: 90%;
    height: 34px;
    background-color: #f1f2f2;
    border-radius: 50px;
    font-size: 14px;
    color: #666;
    display: flex;
    align-items: center;
    padding: 0 10px;
    box-sizing: border-box;
}

.tabzzz {
    height: calc(100vh - 82px);
    overflow-y: auto;
}

.tab {
    width: 40px !important;
    height: 40px !important;
}

.top-search input {
    margin-left: 10px;
    height: 100%;
    background: rgba(243, 242, 242, 1);
}

.hidden {
    display: none;
}

.h100 {
    height: 100%;
}

.pt100 {
    padding-top: 48px;
    box-sizing: border-box;
}

.w65 {
    width: 75%;
}

.column {
    display: flex;
    flex-direction: column;
}

.position-r {
    position: relative;
}

.flex-between {
    display: flex;
    align-items: center;
    justify-content: space-between;
}


.plr30 {
    padding: 0 20px;
    box-sizing: border-box;
}

.arrowRight {
    width: 15px !important;
    height: 15px !important;
    display: block;
}

.app-nav {
    position: fixed;
    width: 100%;
    left: 0;
    top: 0;
    z-index: 99999999;
    display: none;

}

.app-nav-con {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    pointer-events: all;
    position: relative;
}

.app-nav-img {
    height: 48px;
    width: 50%;
    border-bottom-right-radius: 10px;
    background: linear-gradient(-135deg, transparent 52px, #fff 0) top right;
    display: flex;
    align-items: center;

}

.app-nav-img img {
    width: 61%;
    margin-left: 3%;
}

.app-nav-right {
    flex: 1;
    display: flex;
    justify-content: space-around;
    align-items: center;
    height: 48px;
    position: relative;
    width: 50%;
    border-top-left-radius: 10px;
    background: linear-gradient(45deg, transparent 52px, var(--lordColor) 0) bottom left;
    margin-left: -90px;
    padding-left: 5%;
    box-sizing: border-box;
}

.app-nav-right>a {
    width: 35px;
    margin-left: -5px;
    text-align: center;
    position: relative;
    z-index: 10;
    display: inline-block;
    height: 40px;
    line-height: 40px;
    transition: color 0.5s ease-in-out;
    -webkit-transition: color 0.5s ease-in-out;
    -moz-transition: color 0.5s ease-in-out;
    -o-transition: color 0.5s ease-in-out;
    -ms-transition: color 0.5s ease-in-out;
}

.app-nav-right>a:hover>.wxBox {
    opacity: 1;
}

.wxBox>span>img {
    width: 75px;
    margin-right: 10px;
}

.wxBox>span>img:last-of-type {
    margin-right: 0px;
}

.wxBox:after {
    position: absolute;
    right: 10px;
    margin: auto 0;
    top: -2px;
    content: "";
    width: 0;
    height: 0;
    border-width: 8px;
    border-style: solid;
    border-color: transparent transparent var(--lordColor) transparent;
}

.app-nav-right>a .wxBox {
    position: absolute;
    z-index: 5;
    right: 0;
    top: 100%;
    width: 175px;
    padding-top: 10px;
    box-sizing: border-box;
    opacity: 0;
    pointer-events: none;
    transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
}

.wxBox>span {
    right: 20px;
    background-color: var(--lordColor);
    padding: 10px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.app-nav-mask {
    /* width: calc(100% + 38px);
    position: absolute;
    height: 100%;
    right: 0;
    top: 0;
    z-index: 6;
   
    background-color: var(--lordColor); */
}

.ham {
    cursor: pointer;
    margin-left: -5px;
    -webkit-tap-highlight-color: transparent;
    transition: transform 400ms;
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
    position: relative;
    z-index: 10;
}

.ham .line.top {
    stroke-dasharray: 40 139;
}

.ham .line.bottom {
    stroke-dasharray: 40 180;
}

.ham .line {
    fill: none;
    transition: stroke-dasharray 400ms, stroke-dashoffset 400ms, stroke 500ms;
    stroke: #fff;
    stroke-width: 5.5;
    stroke-linecap: round;
}

.app-nav-icon {
    font-size: 16px !important;
}

.ham.active {
    transform: rotate(45deg);
}

.ham.active .line.top {
    stroke-dashoffset: -98px;
}

.ham.active .line.bottom {
    stroke-dashoffset: -138px;
}

@media screen and (max-width: 1600px) {

    .nav_item a,
    .login a,
    .phone_num p {
        font-size: 15px;
    }

    .nav_item {
        margin-left: 45px;
    }
}

@media screen and (max-width: 1500px) {
    .nav_item {
        /* margin-left: 40px; */
    }

    .nav_item a,
    .login a,
    .phone_num p {
        font-size: 14px;
    }

    .head_right {
        height: 60px;
    }

    .head_left {
        height: 60px;
    }

    .head_left img {
        width: 70%;
        margin-left: 3%;
    }

    .nav_index_icon a img {
        width: 25px;
    }

    .phones {
        font-size: 16px;
    }

    .slideContent {
        top: 60px;
    }

    .top_menu_search_popup {
        top: 60px !important;
    }
}

@media screen and (max-width: 1400px) {
    .nav_item {
        /* margin-left: 35px; */
    }

    .nav_item a,
    .login a,
    .phone_num p {
        font-size: 14px;
    }

    .line {
        margin: 0 15px !important;
    }
}

@media screen and (max-width: 1300px) {
    .nav_item {
        /* margin-left: 25px; */
    }

    .nav_item a,
    .login a,
    .phone_num p {
        font-size: 14px;
    }

    .line {
        margin: 0 10px !important;
    }

    .other_fixed>ul>li>a.iconfont {
        font-size: 16px;
    }
}

@media screen and (max-width: 1230px) {
    .nav_item {
        /* margin-left: 20px; */
    }

    .nav_index_icon a img {
        width: 25px;
    }

    .nav_item a,
    .login a,
    .phone_num p {
        font-size: 12px;
    }

    .head_left img {
        width: 65%;
    }

    .top_menu_search_popup {
        padding: 20px 25% 30px 25% !important;
    }
}

@media screen and (max-width: 1000px) {
    .head_left img {
        width: 60%;
    }

    .top_menu_search_popup {
        padding: 20px 20% 30px 20% !important;
    }

    .hot_search_box_title {
        font-size: 16px !important;
    }

    .hot_search_item {
        font-size: 18px !important;
    }
}

@media screen and (max-width: 700px) {
    .app-nav {
        display: block;
    }

    .pull_up {
        width: 35px;
        height: 35px;
    }

    .pull_up img {
        width: 15px;
    }

    .other_fixed {
        display: none;
    }

    .head_box {
        display: none;
    }
}

.login_phone {
    display: flex;
    align-items: center;
}

.line {
    width: 1px;
    height: 20px;
    background-color: #fff;
    margin: 0 20px;
    opacity: 0.7;
}

.lines {
    width: 1px;
    height: 21px;
    background: rgba(255, 255, 255, 0.2);
    margin: 0 28px;
}

.phone_num {
    display: flex;
    align-items: center;
}

.phone_num img {
    width: 25px;
    margin-right: 10px;
}

.top_menu_search {
    cursor: pointer;
}

.top_menu_search_img {
    width: 30px !important;
    display: block;
    margin-right: 30px;
}

.top_menu_search_popup {
    width: 100%;
    background-color: #fff;
    padding: 20px 30% 30px 30%;
    box-sizing: border-box;
    position: absolute;
    left: 0;
    top: 80px;
    z-index: 3;
    display: none;
}

.top_menu_search_popup_top {
    width: 100%;
    display: flex;
    align-items: center;
}

.top_menu_search_popup_img {
    width: 24px !important;
    display: block;
    cursor: pointer;
    flex: 0 0 auto;
}

#topSearchValue {
    width: 100%;
    margin: 0 15px;
    font-size: 16px;
}

.hot_search_box {
    width: 100%;
    margin-top: 20px;
}

.hot_search_box_title {
    font-size: 18px;
    color: #cccecf;
    font-weight: bold;
}

.hot_search_list {
    width: 100%;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.hot_search_item {
    width: 33%;
    font-size: 20px;
    color: #333;
    margin-top: 20px;
    cursor: pointer;
    font-weight: bold;
}

.hot_search_item:hover {
    color: var(--lordColor);
}

/* 加载样式 */

.load_style {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 99999999;
    width: 100%;
    height: 100%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mask_screenTwo {
    z-index: -9999;
    opacity: 0;
}

.mask_screenImg {
    display: flex;
    align-items: flex-end;
    position: relative;
}

.mask_screenImg img {
    width: 260px;
    height: auto;
    display: block;
}

.mask_screenIcon {
    display: none;
    /* display: flex; */
    align-items: center;
}

.mask_screenIcon_cen {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #2a6fb3;
    margin-left: 15px;
}

.mask_screenBg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    animation: loading 2.5s 0.3s ease-in-out infinite;
}

@keyframes loading {
    0% {
        opacity: 1;
        transform: translateX(0%);
    }

    100% {
        opacity: 0.8;
        transform: translateX(100%);
    }
}