/* 主题色变量定义 */
:root {}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    /* 标准语法 */
    font-family: inherit;
}

body {
    top: 0 !important;
    width: 100vw;
    overflow-x: hidden;
}

body::-webkit-scrollbar {
    display: none;
}

p {
    font-size: 16px;
    line-height: 25px;
    color: #333333;
    word-break: break-all;
}

a {
    text-decoration: none;
    word-break: break-all;
}

span {
    word-break: break-all;
}

input {
    outline: none;
    border: none;
}

img {
    width: 100%;
    height: auto;
    vertical-align: middle;
}

li {
    list-style: none;
}

.skiptranslate {
    display: none;
}

.flex_center {
    display: flex;
    align-items: center;
    justify-content: center;
}

.container {
    width: 1400px;
    margin: 0 auto;
}

.nav_top_menu {
    font-size: 12px;
    width: 100%;
    height: 35px;
    background-color: #000000;
    color: #ffffff;
}

.nav_top_menu .menu_box {
    position: relative;
    height: 100%;
    padding: 0 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav_top_menu .link_list {
    height: 100%;
    display: flex;
    align-items: center;
}

.nav_top_menu .link_item {
    height: 100%;
    padding: 0 7px;
    overflow: hidden;
    color: #fff;
    font-size: 14px;
    display: flex;
    align-items: center;
}

.nav_top_menu .link_item:hover {
    opacity: 0.8;
}

.nav_top_menu .link_item img {
    width: 16px;
}

.nav_top_menu .operation_list {
    height: 100%;
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav_top_menu .operation_list .operation_item:nth-child(1) .iconfont {
    font-size: 12px;
}

.nav_top_menu .operation_item {
    height: 100%;
}

.nav_top_menu .operation_item .item_box {
    height: 100%;
    gap: 5px;
    cursor: pointer;
}

.nav_top_menu .operation_item .text {
    font-size: 14px;
}

.nav_top_menu .operation_item img {
    width: 27px;
    height: 18px;
    object-fit: cover;
}

.nav_top_menu .operation_item:hover .lang_body {
    display: block;
}

.nav_top_menu .lang_body {
    display: none;
    position: absolute;
    top: 100%;
    right: 15px;
    z-index: 100;
    background-color: #ffffff;
    border-radius: 5px;
    padding: 5px 10px;
    width: 330px;
    visibility: visible;
    transition: all 0.3s ease-in-out;
    border: 1px solid #eee;
    z-index: 9999;
}

.nav_top_menu .lang_body .lang_list {
    display: grid;
    grid-column-gap: 10px;
    grid-row-gap: 0;
    grid-template-columns: 1fr 1fr 1fr;
    font-size: 16px;
    line-height: 30px;
}

.nav_top_menu .lang_body .lang_list a {
    color: #333333;
    cursor: pointer;
    -webkit-line-clamp: 1;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.nav_top_menu .lang_body .lang_list a:hover {
    color: var(--primary-color);
}


.nav_top {
    position: fixed;
    top: 35px;
    left: 0;
    width: 100%;
    z-index: 999;
    background-color: rgba(0, 0, 0, 0.7);
}

.nav_top_fff {
    top: 0 !important;
    background-color: #ffffff !important;
    box-shadow: rgba(225, 225, 225, 0.5) 0px 3px 10px;
}

.nav_top_fff .list_box .item .item_text a,
.nav_top_fff .list_box .item .item_text {
    color: #333333 !important;
}

.nav_top_fff .list_box .item .item_text:hover,
.nav_top_fff .list_box .item .item_text:hover a {
    color: #333333 !important;
    /* color: var(--primary-color) !important; */
}

.nav_top_fff .list_box .item .item_text:hover::after {
    /* background-color: #333 !important; */
}

.nav_top .nav_box {
    position: relative;
    padding: 0 15px;
    gap: 40px;
}

.nav_top .nav_logo img {
    width: auto;
    height: 40px;
}

.nav_top .list_box {
    flex: 1;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.nav_top .list_box .iconfont {
    cursor: pointer;
}

.nav_top .list_box .item {
    position: relative;
    height: 64px;
    color: #ffffff;
    display: flex;
    align-items: center;
}

/* 我修改 */
.nav_top .nav_box {
    display: block;
}

.nav_top .nav_logo {
    float: left;
    padding-top: 13px;
    /* margin: 4px 0; */
    margin-right: 20px;
}

.nav_top .search_box {
    float: right;
    margin: 13px 15px;
    margin-right: 0;
}

.nav_top .list_box {
    float: left;
}

/* 我修改 */
.nav_top .list_box .item .item_text {
    position: relative;
    padding: 10px 15px;
    text-transform: uppercase;
    /*border-right: 1px solid var(--primary-color);*/
    font-size: 16px;
    /* display: flex; */
}


.nav_top .list_box .item .item_text a {
    color: #ffffff;
    /* vertical-align: sub; */
}

.nav_top .list_box .item:last-child .item_text {
    border-right: none;
}

.nav_top .list_box .item .item_text:hover,
.nav_top .list_box .item .item_text:hover a {
    /* color: var(--primary-color); */
}

.nav_top .list_box .item .item_text:hover::after {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    width: 70%;
    height: 2px;
    background-color: var(--primary-color);
}

.nav_top .list_box .item .item_hide_box {
    display: none;
    justify-content: center;
    position: absolute;
    left: 0;
    top: 100%;
    width: 200px;
    z-index: 2;
}

.nav_top .list_box .item:hover .item_hide_box {
    display: block;
}

.nav_top .list_box .item .item_hide_box .hide_box {
    width: 100%;
    background-color: #ffffff;
    padding: 5px 0;
    border-radius: 4px;
    box-shadow: rgba(0, 0, 0, 0.176) 0px 6px 12px;
    animation: hideBoxAnime 0.8s;
    /* overflow: hidden; */
}

.nav_top .list_box .item .item_hide_box .hide_box a {
    display: block;
}

/* 动画 */
@keyframes hideBoxAnime {
    from {
        opacity: 0;
        max-height: 0;
    }

    to {
        opacity: 1;
        max-height: 600px;
    }
}

.nav_top .list_box .item .item_hide_box .son_list .son_item_title:hover {
    background-color: rgba(225, 225, 225, 0.5);
}


.nav_top .list_box .item .item_hide_box .son_list .son_item_title .a {
    display: flex;
    align-items: center;
    padding: 0 15px;
    line-height: 40px;
    font-size: 14px;
    color: #333333;
}

.nav_top .list_box .item .item_hide_box .son_list .son_item_title .text {
    flex: 1;
    color: #333333;
    -webkit-line-clamp: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
}

.nav_top .list_box .item .item_hide_box .son_list .son_item {
    position: relative;
}

.nav_top .list_box .item .item_hide_box .son_list .son_item .son_children {
    display: none;
    position: absolute;
    left: 100%;
    top: 0;
    width: 200px;
    background-color: var(--primary-color);
}

.nav_top .list_box .item .item_hide_box .son_list .son_item:hover .son_children {
    display: block;
}

.nav_top .list_box .item .item_hide_box .son_list .son_item .son_children_item:hover {
    background-color: var(--primaryHover-color);
}


.nav_top .list_box .item .item_hide_box .son_list .son_item .son_children_item a {
    color: #ffffff;
    border-bottom: 1px solid #ffffff;
    display: flex;
    align-items: center;
    padding: 0 15px;
    line-height: 40px;
    font-size: 14px;
    -webkit-line-clamp: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;

}

.nav_top .list_box .item .item_hide_box .son_list .son_children .son_children_item:last-child a {
    border: none;
}

.nav_top .list_box .list_nav {
    display: none;
    align-items: center;
    justify-content: space-between;
    height: 70px;
    padding: 0 15px;
    margin-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav_top .list_box .list_nav img {
    width: auto;
    height: 35px;
}

.nav_top .list_box .list_nav .close_btn .iconfont {
    font-size: 26px;
    color: #e6e4e1;
    cursor: pointer;
}

.nav_top .search_box {
    height: 40px;
    border: 1px solid #e8e8e8;
}

.nav_top .search_box input {
    width: 180px;
    height: 100%;
    padding: 0 15px;
    font-size: 16px;
    background: #f5f7f9;
}

.nav_top .search_box .search_btn {
    width: 40px;
    height: 100%;
    color: #fff;
    background-color: var(--primary-color);
    cursor: pointer;
    border: none;
}

.nav_top .search_box .search_btn:hover {
    background-color: var(--primaryHover-color);
}

.nav_top .menu_btn {
    display: none;
    width: 44px;
    height: 34px;
    border-radius: 4px;
    cursor: pointer;
    margin-top: 15px;
    float: right;
}

.nav_top .menu_btn:hover {
    /* border: 1px solid var(--primary-color); */
}

.nav_top .menu_btn:hover span {
    color: var(--primary-color);
}

.nav_top .menu_btn span {
    font-size: 26px;
    color: #e6e4e1;
}

.footer {}

.footer .link_box {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 38px;
    background-color: var(--primary-color);
}

.footer .link_box * {
    color: #fff;
    font-size: 14px;
}

.footer .footer_body {
    display: flex;
    padding: 0 10px;
}

.footer .footer_body .contact_us {
    width: 34%;
    padding: 50px;
    background-color: var(--primary-color);
    /* font-size: #ffffff; */
}

.footer .footer_body .contact_us .title {
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 30px;
    color: #fdc623;
}

.footer .footer_body .contact_us .contact_us_item {}

.footer .footer_body .contact_us .contact_us_item * {
    color: #ffffff;
    font-size: 16px;
    line-height: 50px;
}

.footer .footer_body .contact_us .contact_us_item .iconfont {
    font-size: 18px;
    line-height: 50px;
}

.footer .footer_body .contact_us .contact_us_item .icon-phone1 {
    font-size: 16px;
}

.footer .footer_body .right {
    width: 66%;
    padding: 50px 40px 40px 90px;
}

.footer .footer_body .right .right_top {
    display: flex;
    gap: 60px;
}

.footer .footer_body .right .title {
    display: block;
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 30px;
    color: #fdc623;
}

.footer .footer_body .right .nav_body {
    flex: 3;
    display: flex;
    gap: 30px;
}

.footer .footer_body .right .nav_list {
    flex: 1;
}

.footer .footer_body .right .nav_list .item {
    display: block;
    margin-bottom: 20px;
    font-size: 16px;
    color: #ffffff;
    -webkit-line-clamp: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
}

.footer .footer_body .right .nav_list .item:hover {
    color: var(--primary-color);
}

.footer .footer_body .right .inquiry_body {
    flex: 2.1;
}

.footer .footer_body .row {
    margin-bottom: 20px;
}

.footer .footer_body input {
    display: block;
    width: 100%;
    height: 44px;
    padding: 6px 12px;
    font-size: 14px;
    line-height: 1.42857143;
    color: #555;
    background-color: #fff;
    background-image: none;
    border: 1px solid #ccc;
    border-radius: 4px;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
}

.footer .footer_body input::placeholder {
    color: #ccc;
}

.footer .footer_body input:focus {
    border: 1px solid var(--primary-color);
}

.footer .footer_body textarea {
    outline: none;
    display: block;
    width: 100%;
    max-width: 300px;
    min-width: 100%;
    min-height: 60px;
    height: auto;
    padding: 6px 12px;
    font-size: 14px;
    line-height: 1.42857143;
    color: #555;
    background-color: #fff;
    background-image: none;
    border: 1px solid #ccc;
    border-radius: 4px;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
}

.footer .footer_body textarea::placeholder {
    color: #ccc;
}

.footer .footer_body textarea:focus {
    border: 1px solid var(--primary-color);
}

.footer .footer_body .btn_list {
    margin-top: 20px;
    display: flex;
    gap: 20px;
}

.footer .footer_body .btn_item {
    padding: 4px 25px;
    background-color: #E8E8E8;
    color: #333;
    font-size: 14px;
    line-height: 30px;
    cursor: pointer;
}

.footer .footer_body .btn_item:hover {
    background-color: #cccccc;
}

.footer .footer_body .btn_item:first-child {
    color: #ffffff;
    background-color: var(--primary-color);
}

.footer .footer_body .btn_item:first-child:hover {
    background-color: var(--primaryHover-color);
}

.footer .footer_bar {
    padding: 10px 0;
    margin-top: 20px;
    border-top: #d8d8d8 solid 1px;
    color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer .footer_bar * {
    font-size: 16px;
    color: #ffffff !important;
}

.footer_bar img {
    height: 16px;
    width: 17px;
    margin-right: 5px;
}

.footer_bar span {
    margin-right: 5px;
    margin-left: 5px;
}

#page_scroll_top {
    display: none;
    width: 44px;
    height: 44px;
    margin-top: 1px;
    background: #ffffff;
    color: #757373;
    line-height: 45px;
    text-align: center;
    cursor: pointer;
    font-size: 14px;
    border-radius: 5px;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, .15);
    border-radius: 24px;
    z-index: 999;
}

#page_scroll_top .iconfont {
    font-size: 24px;
    color: #757373;
}

.ui__alert .ui__alert_content .ui__content_foot {
    flex-direction: row-reverse;
}

.ui__alert .ui__alert_content .ui__content_foot a {
    cursor: pointer;
}

.ui__alert .ui__alert_content .ui__content_foot .btn_cancel {
    border: none;
    color: #333;
}

.ui__alert .ui__alert_content .ui__content_foot .btn_done {
    border-left: 1px solid #eee !important;
    color: var(--primary-color) !important;
}

#page_service_box {
    position: fixed;
    top: 200px;
    right: -230px;
    z-index: 99;
    width: auto;
    display: flex;
    transition: all 0.3s;
}

.page_service_box_no {
    right: 0 !important;
}

.page_service_box_no .page_service_box_ce {
    position: static !important;
}

.page_service_box_no #page_scroll_top {
    margin-top: 200px;
}

#page_service_box .page_service_box_ce {
    position: absolute;
    top: 0;
    left: -44px;
}

#page_service_box .service_img {
    background: url(../image/material/service.png) no-repeat;
    background-color: #ffffff;
    border-radius: 24px;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, .15);
    height: 180px;
    width: 44px;
    cursor: pointer;
}

#page_service_box .body {
    width: 230px;
    background-color: #ffffff;
    border: 1px solid #eee;
    border-radius: 8px;
    overflow: hidden;
}

#page_service_box .body .title {
    height: 50px;
    background: var(--primary-color);
    text-align: center;
    font-size: 14px;
    color: #fff;
    text-transform: uppercase;
    gap: 5px;
}

#page_service_box .body .title .iconfont {
    font-size: 24px;
}

#page_service_box .body .item_row {
    border-bottom: 1px solid #eee;
}

#page_service_box .body .item_a {
    height: 39px;
    padding: 0 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

#page_service_box .body .item_a .text {
    flex: 1;
    color: #666;
    font-size: 14px;
    -webkit-line-clamp: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
}

#page_service_box .body .item_a .iconfont {
    color: #666;
    font-size: 16px;
}

#page_service_box .body .item_a:hover span {
    color: var(--primary-color) !important;
}

#page_service_box .body .item_row .hide_body {
    display: none;
    border-top: 1px solid #eee;
}

#page_service_box .body .item_row:hover .hide_body {
    display: block;
}

#page_service_box .body .item_row .hide_body .img_body {
    position: relative;
    padding-bottom: 100%;
}

#page_service_box .body .item_row .hide_body .img_body img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#page_message_box {
    max-width: 320px;
    position: fixed;
    bottom: 0;
    right: 15px;
    background-color: #ffffff;
    box-shadow: rgba(0, 0, 0, .35) 0 0 1.5em;
    z-index: 100;
    transition: all 0.3s;
    transform: translateY(calc(100% - 35px));
}

.page_message_box_show {
    transform: translateY(0) !important;
}

.page_message_box_show .body {
    width: 320px !important;
}

.page_message_box_show .top .last_icon {
    transform: rotate(180deg) !important;
}

#page_message_box .body {
    width: 210px;
    transition: all 0.3s;
}

#page_message_box .body .top {
    width: auto;
    height: 36px;
    display: flex;
    align-items: center;
    background-color: var(--primary-color);
    color: #ffffff;
    cursor: pointer;
}

#page_message_box .body .top .icons {
    width: 36px;
    height: 36px;
    background-color: var(--primaryHover-color);
}

#page_message_box .body .top .last_icon {
    width: 36px;
    height: 36px;
    transition: all 0.3s;
}

#page_message_box .body .top .iconfont {
    color: #ffffff;
}

#page_message_box .body .top .icons .iconfont {
    font-size: 24px;
}

#page_message_box .body .top .title {
    flex: 1;
    padding: 0 12px;
    line-height: 36px;
    font-size: 14px;
    -webkit-line-clamp: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
}

#page_message_box .page_message_body {
    padding: 15px;
}

#page_message_box .page_message_body .row {
    margin-bottom: 15px;
}

#page_message_box .page_message_body input {
    display: block;
    width: 100%;
    height: 34px;
    padding: 6px 12px;
    font-size: 14px;
    line-height: 1.42857143;
    color: #555;
    background-color: #fff;
    background-image: none;
    border: 1px solid #ccc;
    border-radius: 4px;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
}

#page_message_box .page_message_body input::placeholder {
    color: #ccc;
}

#page_message_box .page_message_body input:focus {
    border: 1px solid var(--primary-color);
}

#page_message_box .page_message_body textarea {
    outline: none;
    display: block;
    width: 100%;
    max-width: 100%;
    min-width: 100%;
    min-height: 60px;
    height: auto;
    padding: 6px 12px;
    font-size: 14px;
    line-height: 1.42857143;
    color: #555;
    background-color: #fff;
    background-image: none;
    border: 1px solid #ccc;
    border-radius: 4px;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
}

#page_message_box .page_message_body textarea::placeholder {
    color: #ccc;
}

#page_message_box .page_message_body textarea:focus {
    border: 1px solid var(--primary-color);
}

#page_message_box .page_message_body .send_btn {
    height: 34px;
    background-color: var(--primary-color);
    color: #ffffff;
    font-size: 16px;
    cursor: pointer;
}

#page_message_box .page_message_body .send_btn:hover {
    background-color: var(--primaryHover-color);
}

#page_tabbar {
    display: none;
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    background-color: #fafafa;
    z-index: 998;
    /* padding-bottom: constant(safe-area-inset-bottom);
  padding-bottom: env(safe-area-inset-bottom); */
}

#page_tabbar .body {
    flex: 1;
    height: 48px;
    display: flex;
}

#page_tabbar .tabbar_item {
    flex: 1;
    height: 100%;
    text-align: center;
}

#page_tabbar .tabbar_item:hover {
    background-color: #e4e4e4;
}

#page_tabbar .tabbar_item .icon {
    padding-top: 6px;
}

#page_tabbar .tabbar_item .icon .iconfont {
    color: #898989;
    font-size: 20px;
}

#page_tabbar .tabbar_item .name {
    font-size: 14px;
    color: #898989;
}

#page_tabbar .tabbar_item .dropdown_menu {
    display: none;
    position: absolute;
    left: 2px;
    bottom: calc(100% + 2px);
    min-width: 200px;
    padding: 5px;
    border: 1px solid rgba(0, 0, 0, .15);
    border-radius: 4px;
    background-color: #ffffff;
}

#page_tabbar .tabbar_item.item_show .dropdown_menu {
    display: block;
}

.son_banner {
    margin-bottom: 0;
    position: relative;
}

.son_banner .son_banner_img {
    position: relative;
    height: 500px;
    overflow: hidden;
}

.son_banner .son_banner_img img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.son_banner .container_body {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.son_banner .container {
    position: relative;
    height: 100%;
}

.son_banner .banner_tip_body {
    position: absolute;
    left: 45px;
    bottom: -1px;
    width: calc(100% - 90px);
    background-color: #fff;
    z-index: 3;
}

.son_banner .banner_tip_body::before {
    content: "";
    position: absolute;
    z-index: -1;
    background: #fff;
    width: 50%;
    height: 100%;
    left: 0;
    top: 0;
    transform-origin: top;
    transform: skewX(-30deg);
}

.son_banner .banner_tip_body::after {
    content: "";
    position: absolute;
    z-index: -1;
    background: #fff;
    width: 50%;
    height: 100%;
    right: 0;
    top: 0;
    transform-origin: top;
    transform: skewX(30deg);
}

.son_banner .banner_tip_body .tip_body {
    height: 40px;
    padding: 0 10px;
    padding-left: 15px;
    padding-top: 4px;
    display: flex;
    align-items: flex-end;
    gap: 10px;
}

.son_banner .banner_tip_body .tip_body * {
    font-size: 18px;
}

.son_banner .banner_tip_body .tip_body a {
    display: flex;
    align-items: center;
    gap: 5px;
}

.son_banner .banner_tip_body .tip_body a span {
    color: #000000;
}

.son_banner .banner_tip_body .tip_body a:hover span {
    color: var(--primary-color);
}

.son_banner .banner_tip_body .tip_body span {
    color: #333333;
}

.son_banner .banner_title {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    text-align: center;
    font-size: 48px;
    color: #ffffff;
}

.son_banner .banner_title span {
    position: relative;
}

.son_banner .banner_title span::after {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -10px;
    width: 50%;
    height: 5px;
    background-color: var(--primary-color);
}

.public_side_panel {
    width: 320px;
}

.public_side_panel .classify_body {
    border: 1px solid #DCDCDE;
}

.public_side_panel .classify_body .title {
    height: 40px;
    background: var(--primary-color);
    color: #fff;
    width: 100%;
    padding: 0px 15px;
    line-height: 40px;
    font-size: 24px;
    font-weight: normal;
    text-transform: uppercase;
}

.public_side_panel .classify_body .item {
    border-top: 1px solid #DCDCDE;
}

.public_side_panel .classify_body .item .item_cont {
    padding: 20px 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}

.public_side_panel .classify_body .item .item_cont a {
    font-size: 16px;
    color: #656464;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.public_side_panel .classify_body .item .item_cont span {
    font-size: 24px;
    color: #656464;
    cursor: pointer;
}

.public_side_panel .classify_body .item .item_cont a:hover {
    color: var(--primary-color) !important;
}

.public_side_panel .classify_body .item .item_cont span:hover {
    color: var(--primary-color) !important;
}

.public_side_panel .classify_body .item .hide_box {
    display: none;
}

.public_side_panel .classify_body .show_box .hide_box {
    display: block;
}

.public_side_panel .classify_body .show_box .item_cont span {
    transition: all 0.3s;
    transform: rotate(90deg);
}

.public_side_panel .classify_body .item .hide_body {
    width: 100%;
    border-top: 1px solid #DCDCDE;
    padding: 5px 0;
    animation: hideBoxAnime 0.8s;
}

.public_side_panel .classify_body .item .hide_body .son_item {
    display: block;
    padding: 0 15px;
    padding-left: 30px;
    line-height: 36px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    color: #656464;
    font-size: 14px;
}

.public_side_panel .classify_body .item .hide_body .son_item:hover {
    background-color: rgba(225, 225, 225, 0.5);
    color: var(--primary-color);
}

.side_panel_input {
    display: flex;
    align-items: center;
    height: 40px;
    margin-top: 40px;
    margin-bottom: 30px;
}

.side_panel_text {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    /* 限制行数 */
    overflow: hidden;
    text-overflow: ellipsis;
    /* 超出部分显示省略号 */
    word-break: break-word;
    /* 避免长单词/URL撑破布局 */
}

.side_panel_input input {
    display: block;
    flex: 1;
    width: 0;
    height: 100%;
    padding: 6px 12px;
    font-size: 14px;
    line-height: 1.42857143;
    color: #555;
    background-color: #ececec;
    background-image: none;
    border: none;
}

.side_panel_input .search_btn {
    width: 48px;
    height: 100%;
    background-color: var(--primary-color);
    cursor: pointer;
    flex-shrink: 0;
    border: none;
}

.side_panel_input .search_btn span {
    color: #fff;
    font-size: 22px;
}

.side_panel_input .search_btn:hover {
    background-color: var(--primaryHover-color);
}

.public_side_panel .new_list .new_item {
    display: block;
    padding: 20px;
    border-bottom: 1px solid #DCDCDE;
    box-sizing: border-box;
}

.public_side_panel .new_list .new_item:last-child {
    border-bottom: none;
}

.public_side_panel .new_list .new_item .name {
    margin-bottom: 10px;
    font-size: 17px;
    color: #333;
    display: inline-block;
    cursor: pointer;
}

.public_side_panel .new_list .new_item .name span {
    cursor: pointer;
    word-break: break-all;
}

.public_side_panel .new_list .new_item .name:hover {
    color: var(--primary-color);
}

.public_side_panel .new_list .new_item p {
    font-size: 14px;
}

.more_btn {
    display: block;
    width: 142px;
    height: 42px;
    background: var(--primary-color);
    font-size: 16px;
    color: #fff;
    text-align: center;
    line-height: 42px;
    text-transform: capitalize;
    border-radius: 3px;
}

.more_btn:hover {
    background-color: var(--primaryHover-color);
}

.nav_box .nav_logo_black {
    display: none;
}

.nav_top_fff .nav_logo_white {
    display: none;
}

.nav_top_fff .nav_logo_black {
    display: block;
}

.page_404 .title {
    color: #000000;
    font-size: 32px;
    font-weight: 800;
    text-transform: capitalize;
    letter-spacing: -2px;
    position: relative;
    margin-bottom: 30px;
}

.page_404 .tip {}

@media screen and (max-width: 1450px) {
    .container {
        width: 1280px;
    }
}

@media screen and (max-width: 1300px) {
    .container {
        padding: 0 15px;
        width: 100%;
    }
}

@media screen and (max-width: 1100px) {
    .nav_top .nav_logo {
        padding: 10px 0;
    }

    .nav_top .nav_logo img {
        height: 35px;
    }

    .nav_top .search_box {
        display: none;
    }

    .nav_top .nav_box {
        justify-content: space-between;
    }

    .nav_top .list_box .list_nav {
        display: flex;
    }


    .nav_top .menu_btn {
        display: flex;
    }

    .nav_top .list_box {
        position: fixed;
        left: 0;
        top: 0;
        width: 100vw;
        height: 100vh;
        transform: translateX(100%);
        background-color: rgba(0, 0, 0, 0.55);
        -webkit-backdrop-filter: blur(50px);
        backdrop-filter: blur(50px);
        display: block;
        overflow-y: scroll;
        z-index: 9999999999;

    }

    .nav_top .list_box::-webkit-scrollbar {
        display: none;
    }

    .nav_top .list_box_active {
        transform: translateX(0) !important;
        transition: all 0.2s;
    }

    .nav_top .list_box .item {
        display: block;
        height: auto;
    }

    .nav_top .list_box .item .item_text {
        flex: 1;
        display: flex;
        align-items: center;
        gap: 20px;
        border: none;
        color: #ffffff !important;
    }

    .nav_top .list_box .item .item_text a {
        flex: 1;
        color: #ffffff !important;
    }

    .nav_top .list_box .item .item_text .iconfont {
        font-size: 20px;
        transform: rotate(0);
        transition: all 0.3s;
    }

    .nav_top .list_box .item .item_text .iconfont_show {
        transform: rotate(-180deg);
    }

    .nav_top .list_box .item .item_hide_box .son_list .son_item_title .a .iconfont_show {
        transition: all 0.2s;
        transform: rotate(90deg);
    }

    .nav_top_fff .list_box .item .item_text:hover,
    .nav_top_fff .list_box .item .item_text:hover a {
        color: #ffffff !important;
    }

    .nav_top .list_box .item .item_hide_box {
        display: none;
        position: sticky;
        width: 100%;
    }

    .nav_top .list_box .item .item_hide_box_show {
        display: block !important;
    }

    .nav_top .list_box .item:hover .item_hide_box {
        display: none;
    }

    .nav_top .list_box .item .item_hide_box .hide_box {
        box-shadow: none;
        padding: 0;
        background-color: rgba(0, 0, 0, 0.3);
    }

    .nav_top .list_box .item .item_hide_box .son_list .son_item_title {
        padding-right: 5px;
    }

    .nav_top .list_box .item .item_hide_box .son_list .son_item_title .a {
        line-height: 34px;
        gap: 20px;
    }

    .nav_top .list_box .item .item_hide_box .son_list .son_item_title .a .iconfont {
        color: #ffffff;
        font-size: 20px;
    }

    .nav_top .list_box .item .item_hide_box .son_list .son_item_title .text {
        padding-left: 20px;
        color: rgba(225, 225, 225, 0.8);
    }

    .nav_top .list_box .item .item_hide_box .son_list .son_item:hover .son_children {
        display: none;
    }

    .nav_top .list_box .item .item_hide_box .son_list .son_item .son_children {
        display: none;
        position: sticky;
        width: 100%;
        background-color: transparent !important;
    }

    .nav_top .list_box .item .item_hide_box .son_list .son_item .son_children_show {
        display: block !important;
    }

    .nav_top .list_box .item .item_hide_box .son_list .son_item .son_children_item {
        /* padding-right: 45px; */
    }

    .nav_top .list_box .item .item_hide_box .son_list .son_item .son_children_item a {
        padding-left: 60px;
        padding-right: 0;
        color: rgba(225, 225, 225, 0.8);
        border: none;
        line-height: 34px;
    }

    .nav_top .list_box .item .item_hide_box .son_list .son_item .son_children_item:hover {
        background-color: rgba(225, 225, 225, 0.2);
    }

    .nav_top .list_box .item .item_text:hover::after {
        display: none;
    }

    /* .nav_top .list_box .item .item_hide_box .son_list .son_item:hover .son_item_title .iconfont {
    transform: rotate(90deg);
    transition: all 0.3s;
  } */
    .footer .footer_body .contact_us {
        padding: 30px;
    }

    .footer .footer_body .right {
        padding: 30px 40px 40px 50px;
    }

    .footer .footer_body {
        padding: 0;
    }

    .nav_top .menu_btn {
        margin-top: 11px;
    }

    .public_side_panel {
        width: 210px;
    }
}

/* @media screen and (max-width: 1000px) {
  .nav_top .nav_box {
    height: 54px;
  }
} */

@media screen and (max-width: 770px) {
    body {
        padding-bottom: 48px;
        /* padding-bottom: calc(48px + constant(safe-area-inset-bottom));
    padding-bottom: calc(48px + env(safe-area-inset-bottom)); */
    }

    .nav_top_fff {
        background-color: rgba(255, 255, 255, 0.9) !important;
    }

    .container {
        padding: 0 15px;
        width: 100%;
    }

    .nav_top_menu .menu_box {
        justify-content: flex-end;
    }

    .nav_top_menu .link_list {
        display: none;
    }

    .nav_top_menu .operation_item:nth-child(1) {
        display: none;
    }

    .footer .link_box {
        display: none !important;
        padding: 5px 0;
        display: block;
        text-align: center;
    }

    .footer .link_box * {
        display: block;
        line-height: 30px;
    }

    .footer .footer_body {
        display: block;
    }

    .footer .footer_body .contact_us {
        width: 100%;
    }

    .footer .footer_body .right {
        display: none;
    }

    #page_scroll_top {
        display: none !important;
    }

    #page_service_box {
        top: 120px;
    }

    #page_message_box {
        display: none !important;
    }

    #page_tabbar {
        display: flex;
    }

    .public_side_panel {
        width: 100%;
    }
}