#ven {
    transition: all 0.5s ease;
    background: #FFF;
    border-bottom: 1px solid #F0F0F0;
}

.ventricle {
    /* box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.05); */
}

.headersp {
    background: #FFF !important;
}

/*  */
.hea-box {
    position: relative;
    transition: all 0.5s ease;
    display: flex;
    justify-content: space-between;
}

.ven-spbox {
    display: flex;
    justify-content: space-between;
    flex: 1;
    margin-right: 6px;
    border-radius: 6px;
    background: #FFF;
    padding: 0 39px 0 30px;
}

.ven1-loim {
    padding: 18px 0;
    position: relative;
}

.ven1-loim img {
    width: 176px;
    height: auto;
    transition: all 0.5s ease;
}

.ven2 {
    display: flex;
    align-items: center;
}

.ven2-lis {
    height: 100%;
}

.ven2-u {
    display: flex;
    align-items: center;
    height: 100%;
}

.ven2-l {
    height: 100%;
    display: flex;
    align-items: center;
    position: relative;
}

.ven2-l::after {
    content: "";
    width: 1px;
    height: 10px;
    background: rgba(255, 255, 255, 0);
    margin: 0 22px;
}

.ven2-l:last-child:after {
    margin: 0 100px;
}

.ven2-lsa {
    height: 100%;
    position: relative;
}

.ven2-la {
    display: flex;
    align-items: center;
    height: 100%;
    overflow: hidden;
    position: relative;
}

.ven2-la::after {
    position: absolute;
    content: "";
    width: 0;
    height: 2px;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    background: rgba(20, 92, 197, 1);
    transition: all 0.5s ease;
    display: none;
}

.ven2-lsa:hover .ven2-la::after {
    width: 100%;
}

.ven2-l.on .ven2-la::after {
    width: 100%;
}

.ven2-la span {
    color: #32312F;
    font-size: var(--zj-subnav);
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    text-transform: capitalize;

    --size: 1px;
    --color: #32312F;
    text-decoration: none;
    background-image: linear-gradient(var(--color), var(--color));
    background-size: 0% var(--size);
    background-position: 100% 100%;
    background-repeat: no-repeat;
    transition-property: background-size, color, opacity;
    transition-duration: 0.5s;
    transition-timing-function: cubic-beizer(0.4, 0, 0.2, 1);
}

.ven2-la:hover span {
    color: #32312F;
    background-size: 100% var(--size);
    background-position-x: 0%;
    opacity: 1;
}

.ven2-l.on .ven2-la span {
    color: #32312F;
    background-size: 100% var(--size);
    background-position-x: 0%;
    opacity: 1;
}

/*  */
.ven2-lai {
    position: relative;
    --w: 20px;
    width: var(--w);
    height: var(--w);
    margin-left: 4px;
    /* overflow: hidden; */
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.ven2-lai i {
    color: rgba(0, 0, 0, 1);
    font-size: 12px;
    font-style: 1;
    font-weight: bolder;
    line-height: 100%;
    text-transform: capitalize;
    transition: all 0.5s ease;
}

.ven2-lai i:nth-child(2) {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-150%, 150%);
}

.ven2-la:hover .ven2-lai i:nth-child(2) {
    transform: translate(-50%, -50%);
}

.ven2-la:hover .ven2-lai i:nth-child(1) {
    transform: translate(150%, -150%);
}

.ven2-la:hover i {
    color: #EA580C;
}

.ven2-l.on .ven2-la i {
    color: #EA580C;
}

/*  */

.ven-seh {
    position: relative;
}

.vensesv {
    cursor: pointer;
    transition: all 0.5s ease;
    position: relative;
    overflow: hidden;
    border-radius: 50px;
    background: #FFF;
    /* --w: 44px; */
    width: var(--w);
    height: var(--w);
    display: flex;
    align-items: center;
    justify-content: center;
}

.vensesv i {
    font-size: 20px;
    color: rgba(0, 0, 0, 1);
    transition: all 0.5s ease;
}

.vensesv:hover i {
    animation: vensesv 1s ease-in-out;
    animation-iteration-count: 1;
}

.vensesv span {
    color: #FFF;
    font-family: 'Inter Tight';
    font-size: var(--zj-subnav);
    font-style: normal;
    font-weight: 400;
    line-height: calc(var(--zj-subnav) * 1.18);
}

.headersp .vensesv span {
    color: rgba(34, 34, 34, 1);
}

/*  */
.ven-inqury {
    display: flex;
    align-items: center;
}

.ven-inqury .ven-inqurya {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.5s ease;
}

.ven-inqury .ven-inqurya i {
    font-size: 20px;
    line-height: normal;
    color: rgba(0, 0, 0, 1);
    display: block;
    transition: all 0.5s ease;
}

.ven-inqury:hover .ven-inqurya i {
    animation: vensesv 1s ease-in-out;
    animation-iteration-count: 1;
}

@keyframes vensesv {
    0% {
        transform: rotate(0deg);
    }

    25% {
        transform: rotate(-15deg);
    }

    50% {
        transform: rotate(15deg);
    }

    100% {
        transform: rotate(0deg);
    }
}

.ven-inqury .ven-inqurya p,
.ven-inqury .ven-inqurya p span {
    color: #32302F;
    font-size: var(--zj-subnav);
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    transition: all 0.5s ease;
}

.ven-inqury .ven-inqurya p {
    margin-left: 6px;
}

.ven-inqury .ven-inqurya:hover p,
.ven-inqury .ven-inqurya:hover p span {
    color: #32302F;
}

/*  */
.ven-line {
    width: 1px;
    height: 14px;
    margin: 0 12px;
    background: #e5e5e500;
}

/*  */
.ven2-con {
    display: flex;
    margin: 0 30px 0 130px;
}

.ven2-cona {
    display: flex;
    align-items: center;
    border-radius: 54px;
    background: rgba(255, 255, 255, 0.20);
    padding: 4px 20px 4px 4px;
}

.ven2-conimg img {
    width: 34px;
    height: auto;
    object-fit: cover;
    object-position: center;
    margin-right: 8px;
}

.ven2-conh p {
    color: #FFF;
    text-align: center;
    font-feature-settings: 'liga' off, 'calt' off;
    font-family: 'TASA Orbiter Display';
    font-size: var(--zj-subnav);
    font-style: normal;
    font-weight: 500;
    line-height: 100%;
    transition: all 0.5s ease;
}

.ven2-cona:hover .ven2-conh p {
    color: #EA580C;
}

/*  */
.ven2-lang {
    position: relative;
}

.ven2-langbt {
    display: flex;
    align-items: center;
    transition: all 0.5s ease;
    position: relative;
    overflow: hidden;
}

.ven2-langbt img {
    background: #F5F5F5;
    border-radius: 50px;
    padding: 3px;
    width: 30px;
    height: auto;
    object-fit: cover;
    object-position: center;
}

.ven2-langbt i {
    font-size: 10px;
    flex: 0 0 auto;
    color: rgba(50, 48, 47, 1);
    display: block;
    margin-left: 8px;
}

.ven2-langbt span {
    color: #FFF;
    font-family: 'Manrope3';
    font-size: var(--zj-ven2-la);
    font-style: normal;
    font-weight: 500;
    line-height: 1.2;
    text-transform: capitalize;
    transition: all 0.5s ease;
}

.ven2-lanerbox {
    position: absolute;
    width: 120%;
    left: 50%;
    transform: translateX(-50%);
    top: 100%;
    box-shadow: rgba(0, 0, 0, 0.15) 0px 2px 10px 1px;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: all 0.5s ease;
    background: #FFF;
}

.ven2-lang:hover .ven2-lanerbox {
    max-height: 300px;
    opacity: 1;
    overflow: visible;
}

.ven2-laner {
    padding: 8px 4px;
}

.ven2-laner>a {
    display: block;
    margin: 8px 0;
}

.ven2-laner>a p {
    text-align: center;
}

.ven2-laner>a span {
    color: #453737;
    text-align: center;
    font-size: var(--zj-subnav);
    font-style: normal;
    font-weight: normal;
    line-height: 120%;
    text-align: center;
    --size: 1px;
    --color: #EA580C;
    text-decoration: none;
    background-image: linear-gradient(var(--color), var(--color));
    background-size: 0% var(--size);
    background-position: 100% 100%;
    background-repeat: no-repeat;
    transition-property: background-size, color, opacity;
    transition-duration: 0.5s;
    transition-timing-function: cubic-beizer(0.4, 0, 0.2, 1);
    text-transform: capitalize;
}

.ven2-laner>a:hover span {
    color: #EA580C;
    background-size: 100% var(--size);
    background-position-x: 0%;
    opacity: 1;
}

/* yuyan */
.ven2-3sec {
    position: absolute;
    width: 140%;
    left: 50%;
    transform: translateX(-50%);
    top: 120%;
    background: #fff;
    box-shadow: rgba(0, 0, 0, 0.15) 0px 2px 10px 1px;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: all 0.5s ease;
    z-index: 14;
}

.ven2-lang:hover .ven2-3sec {
    max-height: 600px;
    opacity: 1;
    overflow: visible;
}

.ven2-3sec a {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 4px 0;
    padding: 6px 12px;
}

.ven2-3sec a span {
    color: #222;
    font-size: var(--zj-subnav);
    font-style: normal;
    font-weight: 500;
    line-height: 1;
    transition: all 0.5s ease;
}

/* 语言新 */
.menu-language {
    position: relative;
    height: 100%;
}

@media (max-width: 1199px) {
    /* .menu-language {
        padding: 0 10px;
    } */
}

.menu-language::before {
    content: '';
    position: absolute;
    width: 1px;
    height: 16px;
    background: #D9D9D9;
    top: 50%;
    transform: translateY(-50%);
    left: 15px;
    display: none;
}

.menu-language:hover .drop-select {
    opacity: 1;
    pointer-events: auto;
}

.menu-language .select-name {
    color: #000;
    font-family: 'Sora';
    font-size: var(--zj-ven2-la);
    font-style: normal;
    font-weight: normal;
    line-height: 100%;
    height: 100%;
    border-radius: 6px;
    background: #FFF;
    padding: 0 30px;
    /* 18px */
    letter-spacing: -0.36px;
    text-transform: capitalize;
    position: relative;
    display: flex;
    align-items: center;
    transition: all 0.5s ease;
}

@media (max-width: 1400px) {
    .menu-language .select-name {
        font-size: 14px;
    }
}

@media (max-width: 1199px) {
    .menu-language .select-name {
        font-size: 14px;
        letter-spacing: normal;
    }
}

@media (max-width: 767px) {
    .menu-language .select-name {
        font-size: 0;
    }
}

.menu-language .select-name:hover {
    color: #EA580C;
}

.menu-language .select-name::before {
    font-size: 20px;
    content: '\e607';
    color: rgba(0, 0, 0, 1);
    font-family: 'iconfont' !important;
    margin-right: 6px;
    transition: all 0.5s ease;
}

.menu-language .select-name:hover:before {
    color: #EA580C;
}

@media (max-width: 1199px) {
    .menu-language .select-name::before {
        font-size: 20px;
    }
}

@media (max-width: 767px) {
    .menu-language .select-name::before {
        margin-right: 0;
        font-size: 24px;
    }
}

.menu-language .select-name::after {
    font-size: 10px;
    color: rgba(0, 0, 0, 1);
    content: '\e6bd';
    font-family: 'iconfont' !important;
    display: inline-block;
    margin-left: 15px;
    transition: all 0.5s ease;
}

.menu-language .select-name:hover::after {
    color: #EA580C;
}

@media (max-width: 767px) {
    .menu-language .select-name::after {
        display: none;
    }
}

.menu-language .drop-select {
    position: absolute;
    content: '';
    right: 0;
    top: calc(100%);
    z-index: 2;
    min-width: 400px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    background: #fff;
    display: flex;
    flex-wrap: wrap;
    padding: 10px;
    transition: all 0.3s ease;
    opacity: 0;
    pointer-events: none;
}

@media (max-width: 991px) {
    .menu-language .drop-select {
        min-width: 100%;
        width: auto;
        height: 300px;
        overflow: auto;
        padding: 10px;
    }
}

.menu-language .drop-select li {
    font-size: 16px;
    display: inline-block;
    width: calc(100%/3);
    vertical-align: top;
}

@media (max-width: 991px) {
    .menu-language .drop-select li {
        width: 100%;
        font-size: 14px;
    }
}

.menu-language .drop-select li:hover a {
    color: #777777;
}

.menu-language .drop-select li a {
    display: flex;
    align-items: center;
    padding: 6px;
    font-size: 14px;
}

.menu-language .drop-select li a:hover {
    background: #eee;
}

.menu-language .drop-select li a img {
    max-height: 20px;
    display: block;
    margin-right: 10px;
}

/* 语言-end */

@media (max-width: 1750px) {
    .ven2-l::after {
        margin: 0 12px;
    }

    .ven2-l:last-child:after {
        margin: 0 30px;
    }
}

@media (max-width: 1536px) {

    /* .ven1-loim {
        padding: 12px 0;
    } */
    .ven-spbox {
        padding: 0 12px 0 12px;
    }

    .menu-language .select-name {
        padding: 0 12px;
    }

    .hea-box {
        width: calc(100% - 30px);
    }

    .ven2-l:last-child:after {
        margin: 0 24px;
    }

    .ven1-loim img {
        width: 116px;
    }

    .ven1-loim {
        padding: 12px 0;
    }

    /* .ven2-l {
        margin-right: 2.14vw;
    } */

    /* .ven2-l:last-child {
        margin-right: 11.2vw;
    } */
    .ven2-l::after {
        margin: 0 8px;
    }

    .ven2-l:last-child:after {
        margin: 0 12px;
    }

    .ven-line {
        margin: 0 8px;
    }

    .ven2-langi1 img {
        width: 30px;
    }

    .ven2-con {
        margin: 0 20px 0 30px;
    }

    .ven2-line {
        margin: 0 10px;
    }

    .ven2-3a span {
        margin: 0 6px;
    }

    .vensesv i {
        font-size: 16px;
    }

    .ven-inqury a i {
        font-size: 20px;
    }
}

@media (max-width: 1199.9px) {
    #ven::after {
        display: none;
    }

    .hea-box {
        border-radius: 0;
        top: 0;
        width: 100%;
    }

    .ven2-line {
        margin: 0 6px;
    }

    .ven2-lis {
        display: none;
    }

    .ven2-3a img {
        width: 24px;
    }
}

@media (max-width: 499px) {
    .ven1-loim img {
        width: 90px;
    }

    .ven2-langbt img {
        width: 26px;
    }

    .vensesv i {
        margin-right: 0;
    }

    .vensesv span {
        display: none;
    }

    .ven-inqury .ven-inqurya {
        --w: 32px;
    }

    .menu-language .select-name::before {
        margin-right: 0;
        font-size: 18px;
    }
}

/* --- */
/* phone three line */
/* phone */
/*  */


/* houmjiade erji */
.ven2-ler {
    position: absolute;
    width: 220%;
    left: 50%;
    transform: translateX(-50%);
    top: 100%;
    box-shadow: rgba(0, 0, 0, 0.15) 0px 2px 10px 1px;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: all 0.5s ease;
}

.ven2-lsa:hover .ven2-ler {
    max-height: 600px;
    opacity: 1;
    overflow: visible;
}

.ven2-lang:hover .ven2-ler {
    max-height: 600px;
    opacity: 1;
    overflow: visible;
}

.ven2-lerbo {
    background: rgba(255, 255, 255, 1);
    box-shadow: rgba(0, 0, 0, 0.15) 0px 2px 10px 1px;
    padding: 10px 0;
}

.ven2-lera {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px 12px;
}

.ven2-lera span {
    color: #32312F;
    font-size: var(--zj-subnav);
    font-style: normal;
    font-weight: normal;
    line-height: 120%;
    text-align: center;
    --size: 1px;
    --color: #000;
    text-decoration: none;
    background-image: linear-gradient(var(--color), var(--color));
    background-size: 0% var(--size);
    background-position: 100% 100%;
    background-repeat: no-repeat;
    transition-property: background-size, color, opacity;
    transition-duration: 0.5s;
    transition-timing-function: cubic-beizer(0.4, 0, 0.2, 1);
    text-transform: capitalize;
}

.ven2-lera:hover span {
    color: #000;
    background-size: 100% var(--size);
    background-position-x: 0%;
    opacity: 1;
}

/* 山海路特殊二级 */
.ven2-lersp {
    padding: 50px 10.5%
}

.ven2-leru {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.ven2-lerl {
    margin-right: 6.8%;
}

.ven2-lerl:last-child {
    margin-right: 0;
}

.ven2-lerla {
    display: block;
    margin-bottom: 10px;
}

.ven2-lerla:last-child {
    margin-bottom: 0;
}

.ven2-lerlah {
    margin-bottom: 24px;
}

.ven2-lerla span {
    color: #E5E5E5;
    font-size: var(--zj-ven2cona);
    font-style: normal;
    font-weight: normal;
    line-height: 16px;
    text-transform: capitalize;
    --size: 1px;
    --color: #EA580C;
    text-decoration: none;
    background-image: linear-gradient(var(--color), var(--color));
    background-size: 0% var(--size);
    background-position: 100% 100%;
    background-repeat: no-repeat;
    transition-property: background-size, color, opacity;
    transition-duration: 0.5s;
    transition-timing-function: cubic-beizer(0.4, 0, 0.2, 1);
}

.ven2-lerla:hover span {
    color: #EA580C;
    background-size: 100% var(--size);
    background-position-x: 0%;
    opacity: 1;
}

.ven2-lerlah span {
    color: #FFF;
    font-family: 'Manrope3';
    font-size: var(--zj-ven2-la);
    font-style: normal;
    font-weight: 600;
    line-height: 1;
    text-transform: capitalize;
}

/*  */
@media (max-width: 1536px) {
    .ven2-lersp {
        padding: 40px 2.5%;
    }

    .ven2-lerl {
        margin-right: 1.8%;
    }

    /* .ven2-ler {
        top: 45px;
    } */
}

/*  */
.ven2-lerabb {
    position: relative;
}

.ven2-lerathr {
    position: absolute;
    width: 100%;
    left: 100%;
    background: rgba(255, 255, 255, 0.90);
    opacity: 0;
    transition: all 0.3s ease;
    top: 0;
    right: 0;
    padding: 4px 0;
    pointer-events: none;
}

.ven2-lerabb:hover .ven2-lerathr {
    opacity: 1;
    pointer-events: auto;
}

.ven2-lerathra {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px 12px;
}

.ven2-lerathra span {
    color: #453737;
    font-size: var(--zj-subnav);
    font-style: normal;
    font-weight: normal;
    line-height: 100%;
    text-align: center;
    --size: 1px;
    --color: #EA580C;
    text-decoration: none;
    background-image: linear-gradient(var(--color), var(--color));
    background-size: 0% var(--size);
    background-position: 100% 100%;
    background-repeat: no-repeat;
    transition-property: background-size, color, opacity;
    transition-duration: 0.5s;
    transition-timing-function: cubic-beizer(0.4, 0, 0.2, 1);
}

.ven2-lerathra:hover span {
    color: #EA580C;
    background-size: 100% var(--size);
    background-position-x: 0%;
    opacity: 1;
}

/*  */
.ven-sehinp {
    position: absolute;
    right: 0;
    top: 342%;
    transform: translateY(-50%);
    z-index: 12;
    pointer-events: none;
    opacity: 0;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

.ven-sehinp.on {
    pointer-events: auto;
    opacity: 1;
}

.ven-sehinp>i {
    display: block;
    color: rgb(0, 0, 0);
    margin-left: 12px;
    transform: rotate(45deg);
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 20px;
    font-weight: 200;
}

.ven-sehinp>i:hover {
    transform: rotate(225deg);
}

.ven-sehfo {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 50px;
    border: 1px solid #999;
    width: 390px;
    padding: 10px 16px;
    background: #FFF;
}

.ven-sehfo input {
    color: #000;
    font-weight: normal;
    font-size: var(--zj-ven2cona);
    font-style: normal;
    line-height: 100%;
    width: 86%;
    background: transparent;
    transition: all 0.3s ease;
    border: none;
}

.ven-sehfo input::-webkit-input-placeholder {
    color: rgba(51, 78, 113, 0.5);
}

.ven-sehfo input:-moz-placeholder {
    color: rgba(51, 78, 113, 0.5);
}

.ven-sehfo input::-moz-placeholder {
    color: rgba(51, 78, 113, 0.5);
}

.ven-sehfo input:-ms-input-placeholder {
    color: rgba(51, 78, 113, 0.5);
}

.ven-sehfo>span button {
    background: transparent;
}

.ven-sehfo>span i {
    color: rgba(68, 68, 68, 1);
    font-size: 16px;
}

@media (max-width: 1536px) {
    .ven-sehinp {
        top: 320%;
    }

    .ven-sehfo {
        width: 208px;
        padding: 4px 12px;
    }
}

@media (max-width: 1199.9px) {
    .ven-sehinp {
        top: 326%;
    }
}

@media (max-width: 992px) {
    .ven2-con {
        display: none;
    }
}

@media (max-width: 499px) {
    .ven-sehinp {
        top: 288%;
        right: -176px;
    }

    .ven-sehfo {
        width: 308px;
        padding: 7px 12px;
    }

    .ven-line {
        margin: 0 4px;
    }

    .ven1-loim {
        padding: 8px 0;
    }

    .menu-language .select-name {
        padding: 0px 6px;
    }

    .ven2-langi1 img {
        width: 24px;
    }

    .ven-inqury .ven-inqurya i {
        font-size: 18px;
    }

    .ven2-langi1 {
        margin-right: 6px;
    }

    .ven2-langbt i {
        margin-left: 6px;
    }
}

/* venPho */
/* phone */
/*  */
#venPho {
    display: none;
    margin-bottom: 2px;
}

#venPho .venPhoSack {
    display: inline-block;
    vertical-align: middle;
    position: relative;
    width: 26px;
    height: 100%;
    margin-left: 12px;
}

#venPho .venPhoSack::before,
#venPho .venPhoSack::after {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    top: 50%;
    width: 100%;
    height: 2px;
    transform: translateY(-50%);
    background: #000;
    transition: all .5s;
}

.headersp #venPho .venPhoSack::before,
.headersp #venPho .venPhoSack::after {
    background: #000;
}

.ventricle #venPho .venPhoSack::before,
.ventricle #venPho .venPhoSack::after {
    background: #000;
}

#venPho .venPhoSack::before {
    margin-top: -7px;
}

#venPho .venPhoSack::after {
    margin-top: 7px;
}

#venPho .venPhoSack.on::before {
    margin-top: -3px;
    transform: translateY(50%) rotate(46deg);
    background: #000;
}

.headersp #venPho .venPhoSack.on::before {
    background: #000;
}

.ventricle .venPhoSack::before {
    background: #000 !important;
}

#venPho .venPhoSack.on::after {
    margin-top: -2px;
    transform: translateY(0%) rotate(-46deg);
    background: #000;
}

.headersp #venPho .venPhoSack.on::after {
    background: #000;
}

.ventricle .venPhoSack::after {
    background: #000 !important;
}

#venPho .venPhoSack span {
    height: 2px;
    display: block;
    position: absolute;
    left: 0;
    top: 50%;
    width: 100%;
    transform: translateY(-50%);
    background: #000;
    transition: all .5s;
}

.headersp #venPho .venPhoSack span {
    background: #000;
}

.ventricle .venPhoSack span {
    background: #000 !important;
}

#venPho .venPhoSack.on span {
    opacity: 0 !important;
}

@media (max-width: 1199.9px) {
    #venPho {
        display: block;
    }
}

#venPhoSec {
    /* display: none; */
    position: fixed;
    right: -100%;
    opacity: 0;
    top: 72px;
    width: 100%;
    height: 100vh;
    background: #FFF;
    transition: all 0.8s ease;
    /* animation-name: fadeInUp11t; */
    /* animation-duration: 0.8s; */
    z-index: 9999;
}

@keyframes fadeInUp11t {
    0% {
        opacity: 0;
        /* -webkit-transform: translate3d(0, 10%, 0); transform: translate3d(0, 10%, 0) */
        -webkit-transform: translate3d(0, 10%, 0);
        transform: translate3d(0, 10%, 0)
    }

    to {
        opacity: 1;
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}

#venPhoSec ul li .xiaopingsanji {
    display: flex;
    height: 45px;
    align-items: center;
}

#venPhoSec .menu-list li {
    border-bottom: 1px solid #33333330;
}

#venPhoSec .menu-list li .xiaopingsanji a {
    width: 100%;
}

#venPhoSec ul li i {
    /* color: #fff; */
    color: #222;
    padding-left: 15px;
    cursor: pointer;
}

#venPhoSec ul li i img {
    width: 20px;
}

.menu-head {
    height: 46px;
    line-height: 46px;
    /* padding: 0 38px; */
    /* margin: auto; */
    /* border-bottom: 1px solid #33333330; */
    display: flex;
    justify-content: space-between;
}

.menu-head a {
    color: #32312F;
    font-size: var(--zj-ft1-1h);
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    /* text-transform: uppercase; */

    width: 100%;
    margin: auto;
    display: block;
    transition: all 0.3s ease;
}

.menu-head a:hover {
    color: #000;
}

.xiantiao>a {
    color: #000;
}

.menu_body {
    line-height: 38px;
    display: none;
    /* border-bottom: 1px solid #33333330; */
    margin-bottom: 10px;
}

.menu_body a {
    display: block;
    /* height: 38px; */
    line-height: 32px;
    padding-left: 10px;
    /* color: #fff; */
    color: #32312F;
    font-size: var(--zj-ft1-1h);
    font-style: normal;
    font-weight: 400;
    line-height: calc(var(--zj-ft1-1h) * 1.6);
    /* text-transform: uppercase; */
    transition: all 0.5s ease;
}

.menu_body a:last-child {
    margin-bottom: 10px;
}

.menu_body h2 {
    padding-left: 53px;
    font-size: 16px;
    color: #333;
    font-weight: bold;
    line-height: 28px;
}

.menu_body a:hover {
    color: #000;
}

@media (max-width: 992px) {
    #venPhoSec {
        top: 70px;
    }
}

@media (max-width: 499px) {
    #venPhoSec {
        top: 53px;
    }

    #venPhoSec ul li i {
        font-size: 14px;
    }

    #venPhoSec ul li .xiaopingsanji {
        height: 42px;
    }
}

/* gg */
.sub {
    position: relative;
}

.sub-show {
    padding-top: 90px;
}

.sub-im {
    position: relative;
    overflow: hidden;
}

.sub-im img {
    width: 100%;
    height: auto;
    object-fit: cover;
    object-position: center;
}

@media (max-width: 1536px) {

    .breadcrumb-item {
        display: flex;
        align-items: center;
    }
}

@media (max-width: 499px) {}

/*  */
.sub-list {
    position: absolute;
    width: 100%;
    left: 50%;
    transform: translateX(-50%);
    bottom: 36px;
    z-index: 12;
}

.sub-liu {
    display: flex;
    align-items: center;
}

.sub-lila {
    display: block;
    padding: 10.5px 16px;
    border-radius: 2px;
    border: 1px solid rgba(255, 255, 255, 0.20);
    background: rgba(255, 255, 255, 0.20);
    backdrop-filter: blur(5px);
    margin-right: 10px;
    transition: all 0.5s ease;
}

.sub-lil:last-child .sub-lila {
    margin-right: 0;
}

.sub-lila:hover {
    background: #012F6B;
    border: 1px solid #012F6B;
}

.sub-lil.on .sub-lila {
    background: #012F6B;
    border: 1px solid #012F6B;
}

.sub-lila span {
    color: #FFF;
    font-family: 'DM Sans';
    font-size: var(--zj-subnav);
    font-style: normal;
    font-weight: normal;
    line-height: 1;
    text-transform: capitalize;
}

@media (max-width: 1536px) {
    .sub-im img {
        min-height: 356px;
    }

    .sub-about .sub-im img {
        max-height: 660px;
    }

    /*  */
    .sub-list {
        bottom: 16px;
    }

    .sub-lila {
        padding: 4.5px 12px;
    }
}

@media (max-width: 768px) {
    .sub-listbox {
        overflow: scroll;
    }

    .sub-listbox::-webkit-scrollbar {
        display: none;
    }

    .sub-liu {
        max-width: 700px;
    }

    .sub-lila span {
        width: max-content;
        display: block;
    }
}

@media (max-width: 992px) {
    .sub-im img {
        min-height: 195px;
    }
}

/*  */
.subnav-box {
    background: #F5F5F5;
    padding: 20px 0;
}

.sub-show .subnav-box {
    background: #00000000;
}

.subnav-boxctm {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.subnav {
    display: flex;
    align-items: center;
}

.subnav i {
    font-size: 24px;
    line-height: normal;
    color: rgba(30, 58, 138, 1);
    margin-right: 20px;
    line-height: normal;
}

.sub-show .subnav i {
    color: rgba(34, 34, 34, 1);
}

.breadcrumb-item {
    align-items: center;
}

.breadcrumb-item::before,
.breadcrumb-item a span {
    color: #000;
    font-size: var(--zj-subnav);
    font-style: normal;
    font-weight: 500;
    line-height: 100%;
    text-transform: capitalize;
    padding-bottom: 2px;
    --size: 1px;
    --color: #1E3A8A;
    text-decoration: none;
    background-image: linear-gradient(var(--color), var(--color));
    background-size: 0% var(--size);
    background-position: 100% 100%;
    background-repeat: no-repeat;
    transition-property: background-size, color, opacity;
    transition-duration: 0.5s;
    transition-timing-function: cubic-beizer(0.4, 0, 0.2, 1);
}

.sub-show .breadcrumb-item::before,
.sub-show .breadcrumb-item a span {
    color: #000;
    --size: 1px;
    --color: #1E3A8A;
    text-decoration: none;
    background-image: linear-gradient(var(--color), var(--color));
    background-size: 0% var(--size);
    background-position: 100% 100%;
    background-repeat: no-repeat;
    transition-property: background-size, color, opacity;
    transition-duration: 0.5s;
    transition-timing-function: cubic-beizer(0.4, 0, 0.2, 1);
}

.breadcrumb-item:hover a span {
    color: #1E3A8A;
    background-size: 100% var(--size);
    background-position-x: 0%;
    opacity: 1;
}

.breadcrumb-item:last-child a span {
    color: #1E3A8A;
    background-size: 100% var(--size);
    background-position-x: 0%;
    opacity: 1;
}

.breadcrumb-item+.breadcrumb-item::before {
    color: #000;
    font-size: var(--zj-subnav);
    font-style: normal;
    font-weight: normal;
    line-height: 100%;
    text-transform: capitalize;
}

.sub-show .breadcrumb-item+.breadcrumb-item::before {
    color: #222;
}

/*  */
.subnav-u {
    display: flex;
    align-items: center;
}

.subnav-l {
    position: relative;
    display: flex;
    align-items: center;
}

.subnav-l::after {
    content: "";
    width: 1px;
    height: 16px;
    background: #D9D9D9;
    margin: 0 50px;
}

.subnav-l:last-child:after {
    display: none;
}

.subnav-la {
    display: block;
}

.subnav-la p span {
    color: #000;
    font-size: var(--zj-subnav);
    font-style: normal;
    font-weight: normal;
    line-height: 100%;
    text-transform: capitalize;
    transition: all 0.5s ease;
}

.subnav-la:hover p span {
    color: #EB562B;
}

@media (max-width: 1536px) {
    .subnav-l::after {
        margin: 0 20px;
    }
}

@media (max-width: 992px) {
    .subnav-u {
        display: none;
    }
}

@media (max-width: 499px) {

    .breadcrumb-item::before,
    .breadcrumb-item a span {
        font-size: 14px;
    }

    .breadcrumb-item+.breadcrumb-item::before {
        font-size: 14px;
    }
}

/*  */
/* 分页按钮 */
.sub-page {
    display: flex;
    align-items: center;
    justify-content: center;
}

.sub-pageu {
    display: flex;
    align-items: center;
    justify-content: center;
}

.sub-pagel a {
    color: #000;
    font-size: var(--zj-subnav);
    font-style: normal;
    font-weight: 500;
    line-height: var(--zj-subnav);
    letter-spacing: -0.48px;
    --w: 44px;
    width: var(--w);
    height: var(--w);
    border-radius: 50%;
    background: #f2f2f200;
    border: 1px solid #EEE;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 3px;
    transition: all 0.5s ease;
}

.sub-pagel a:hover {
    background: rgba(50, 49, 47, 1);
    border: 1px solid rgba(50, 49, 47, 1);
    color: #FFF;
}

.sub-pagel.on a {
    background: rgba(50, 49, 47, 1);
    border: 1px solid rgba(50, 49, 47, 1);
    color: #FFF;
}

.sub-pagel a i {
    font-size: 14px;
    line-height: normal;
    color: #505966;
    transition: all 0.5s ease;
}

.sub-pagel a:hover i {
    color: #FFF;
}

.sub-pagel.on a i {
    color: #FFF;
}

@media (max-width: 1536px) {
    .sub-pagel a {
        --w: 34px;
    }
}

@media (max-width: 499px) {
    .sub-pagel a {
        --w: 26px;
        margin: 0 4px;
    }

    .sub-pagel a i {
        --w: 26px;
    }
}


[data-sub-pad="header100"] {
    padding-top: 230px;
}

[data-sub-bottom="100"] {
    margin-bottom: 100px;
}

[data-sub-padding="100"] {
    padding: 100px 0 130px;
}

[data-sub-padding="120"] {
    padding: 120px 0 120px;
}

@media (max-width: 1536px) {
    [data-sub-pad="header100"] {
        padding-top: 170px;
    }

    [data-sub-padding="100"] {
        padding: 60px 0 70px;
    }

    [data-sub-padding="110"] {
        padding: 60px 0 70px;
    }

    [data-sub-padding="120"] {
        padding: 60px 0 70px;
    }

    [data-sub-bottom="100"] {
        margin-bottom: 70px;
    }
}

@media (max-width: 499px) {
    [data-sub-pad="header100"] {
        padding-top: 100px;
    }

    [data-sub-padding="100"] {
        padding: 30px 0 40px;
    }

    [data-sub-padding="110"] {
        padding: 30px 0 40px;
    }

    [data-sub-padding="120"] {
        padding: 40px 0 40px;
    }

    [data-sub-bottom="100"] {
        margin-bottom: 40px;
    }

    .subnav i {
        font-size: 22px;
        margin-right: 10px;
    }
}

/* contact */
.contact {
    padding-bottom: 120px;
    position: relative;
}

.con1-box {
    max-width: 1410px;
}

.con1-h {
    margin-bottom: 80px;
}

.con1-h h2 {
    color: #32312F;
    font-family: 'Barlow';
    font-size: var(--zj-news-h);
    font-style: normal;
    font-weight: 600;
    line-height: var(--zj-news-h);
    text-transform: capitalize;
}

.con1-end {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
}

.con1-1 {
    width: 32%;
    flex: 0 0 auto;
    display: none;
}

.fancybox-content {
    min-height: 400px !important;
}

.con1-1 img {
    width: 100%;
    height: auto;
    object-fit: cover;
    object-position: center;
    border-radius: 5px;
}

.con1-2 {
    width: calc(68% - 40px);
    flex: 0 0 auto;
    border-radius: 5px;
    border: 1px solid #EEE;
    background: #FFF;
    padding: 30px 18px 26px 40px;
}

.con1-2h {
    margin-bottom: 40px;
}

.con1-2h p {
    color: #32312F;
    font-family: 'Barlow';
    font-size: var(--zj-prode1-2h);
    font-style: normal;
    font-weight: 600;
    line-height: var(--zj-prode1-2h);
}

.con1-2l {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}

.con1-2l:last-child {
    margin-bottom: 0;
}

.con1-2la {
    margin-right: 30px;
}

.con1-2la:last-child {
    margin-right: 0;
}

.con1-2la p {
    color: #32302F;
    font-family: 'Barlow';
    font-size: calc(var(--zj-oem3-1l1p) + 1px);
    font-style: normal;
    font-weight: 600;
    line-height: calc(var(--zj-oem3-1l1p) * 1.36);
}

.con1-2la p span {
    color: #524F4C;
    font-family: 'Manrope';
    font-size: var(--zj-ven2-la);
    font-style: normal;
    font-weight: normal;
    --size: 1px;
    --color: #32312F;
    text-decoration: none;
    background-image: linear-gradient(var(--color), var(--color));
    background-size: 0% var(--size);
    background-position: 100% 100%;
    background-repeat: no-repeat;
    transition-property: background-size, color, opacity;
    transition-duration: 0.5s;
    transition-timing-function: cubic-beizer(0.4, 0, 0.2, 1);
}

a.con1-2la:hover p span {
    color: #32312F;
    background-size: 100% var(--size);
    background-position-x: 0%;
    opacity: 1;
}

.con2 {
    margin-top: 120px;
}

.con2-box {
    max-width: 1410px;
}

.con2-h {
    margin-bottom: 40px;
}

.con2-h p {
    color: #32312F;
    font-family: 'Barlow';
    font-size: var(--zj-prode1-2h);
    font-style: normal;
    font-weight: 600;
    line-height: var(--zj-prode1-2h);
}

/*  */
.con2-fou {
    margin-right: calc(-.5 * 1.25rem);
    margin-left: calc(-.5 * 1.25rem);
}

.con2-fol {
    margin-bottom: 20px;
    padding-right: calc(1.25rem * .5);
    padding-left: calc(1.25rem * .5);
}

.con2-fol:last-child {
    margin-bottom: 0;
}

.con2-fol input,
.con2-fol textarea {
    color: #524F4C;
    font-size: var(--zj-subnav);
    font-style: normal;
    font-weight: 500;
    line-height: var(--zj-subnav);

    width: 100%;
    border-radius: 6px;
    border: 1px solid #E5E5E5;
    background: #F5F5F5;

    transition: all 0.5s ease;
    padding: 13px 23px;
}

.con2-fol input:focus,
.con2-fol textarea:focus {
    border: 1px solid #32312F;
}

.con2-fol input::-webkit-input-placeholder {
    color: #524F4C;
}

.con2-fol input::-moz-placeholder {
    color: #524F4C;
}

.con2-fol input::-ms-input-placeholder {
    color: #524F4C;
}

.con2-fol textarea::-webkit-input-placeholder {
    color: #524F4C;
}

.con2-fol textarea::-moz-placeholder {
    color: #524F4C;
}

.con2-fol textarea::-ms-input-placeholder {
    color: #524F4C;
}

.con2-fobt {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin-top: 26px;
}

.con2-fobt button {
    padding: 11px 39px;
    position: relative;
    overflow: hidden;
    border-radius: 3px;
    background: #32312F;
    backdrop-filter: blur(2px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.5s ease;
}

.con2-fobt button::after,
.con2-fobt button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    -webkit-transition: all 0.6s;
    -moz-transition: all 0.6s;
    -o-transition: all 0.6s;
    transition: all 0.6s;
    opacity: 1;
    -webkit-transform: translate(-16%, -198%) rotate(-30deg);
    transform: translate(-16%, -198%) rotate(-30deg);
    border-bottom-width: 1px;
    border-bottom-style: solid;
    border-bottom-color: rgba(255, 255, 255, 1);
    background-color: rgba(255, 255, 255, 0.25);
}

.con2-fobt button::after {
    -webkit-transition-delay: 0.2s;
    transition-delay: 0.2s;
}

.con2-fobt button:hover:before,
.con2-fobt button:hover:after {
    opacity: 0;
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
}

.con2-fobt button span {
    color: #FFF;
    font-family: 'Barlow';
    font-size: var(--zj-ven2-la);
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    text-transform: capitalize;
}

.con2-fobti {
    /* --w: 20px; */
    width: var(--w);
    height: var(--w);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 16px;
    position: relative;
}

.con2-fobti i {
    line-height: normal;
    transition: all 0.5s ease;
    font-size: 14px;
    line-height: 1;
    color: #FFF;
}

.con2-fobti i:nth-child(2) {
    position: absolute;
    /* transform: translate3d(-150%, 150%, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg); */
}

.con2-fobt button:hover i {
    animation: trax 1s ease-in-out;
    animation-iteration-count: 1;
    /* transform: translate3d(150%, -150%, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg); */
}

.con2-fobt button:hover i:nth-child(2) {
    /* animation: trax 1s ease-in-out;
    animation-iteration-count: 1; */
    /* transform: translate3d(0px, 0px, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg); */
}

@keyframes trax {
    0% {
        transform: translateX(0);
    }

    50% {
        transform: translateX(4px);
    }

    100% {
        transform: translateX(0);
    }
}

/* 表单验证吗 ------------------------- */
.con2-fol {
    position: relative;
}

.con2-fol>div {
    position: relative;
}

.spam_code_img {
    position: absolute;
    top: 50%;
    right: 5px;
    display: block;
    width: 90px;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

.spam_code_img img {
    max-width: 100%;
    height: auto !important;
}

/* 公共图片 */
.subbg1 {
    position: absolute;
    width: 100%;
    max-width: 770px;
    height: auto;
    top: 0;
    right: 0;
    background: transparent !important;
    z-index: -1;
}

.subbg2 {
    position: absolute;
    width: 100%;
    max-width: 650px;
    height: auto;
    bottom: 0;
    left: 0;
    background: transparent !important;
    z-index: -1;
}

@media (max-width: 1536px) {
    .contact {
        padding-bottom: 70px;
    }

    .con1-h {
        margin-bottom: 40px;
    }

    .con1-2h {
        margin-bottom: 20px;
    }

    .con1-2l {
        margin-bottom: 15px;
    }

    .con2 {
        margin-top: 70px;
    }
}

@media (max-width: 992px) {
    .con1-end {
        flex-direction: column-reverse;
    }

    .con1-1 {
        width: 100%;
    }

    .con1-2 {
        width: 100%;
        margin-bottom: 20px;
    }

    .con2-fol {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .con1-2l {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 499px) {
    .contact {
        padding-bottom: 40px;
    }

    .con1-h {
        margin-bottom: 20px;
    }

    .con1-2 {
        padding: 12px;
    }

    .con2 {
        margin-top: 40px;
    }

    .con2-h {
        margin-bottom: 20px;
    }

    .con2-fol {
        margin-bottom: 14px;
    }

    .con2-fol input,
    .con2-fol textarea {
        padding: 8px 12px;
    }

    .con2-fobt {
        margin-top: 14px;
    }
}

/* foot */
#footer {
    background: #32312F;
}

.ft-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding: 100px 0 88px;
}

.ft-box {
    max-width: 1650px;
}

.ft1 {
    flex: 1;
}

.ft1-h {
    margin-bottom: 33px;
}

.ft1-h p {
    color: #FFF;
    font-family: 'Barlow';
    font-size: var(--zj-ab2end1-h);
    font-style: normal;
    font-weight: 600;
    line-height: calc(var(--zj-ab2end1-h) * 1.2);
    text-transform: uppercase;
}

/*  */
.ft1-from {
    max-width: 552px;
}

.ft1-from .con2-fou {
    margin-right: calc(-.5 * 0.75rem);
    margin-left: calc(-.5 * 0.75rem);
}

.ft1-from .con2-fol {
    margin-bottom: 12px;
    padding-right: calc(0.75rem * .5);
    padding-left: calc(0.75rem * .5);
}

.ft1-from .con2-fol:last-child {
    margin-bottom: 0;
}

.ft1-from .con2-fol input,
.ft1-from .con2-fol textarea {
    color: #FFF;
    font-size: var(--zj-ven2cona);
    font-style: normal;
    font-weight: normal;
    line-height: normal;
    border: 1px solid #4F4F4F;
    background: #32312F;
    padding: 12px 17px;
}

.ft1-from .con2-fol input:focus,
.ft1-from .con2-fol textarea:focus {
    border: 1px solid #FFF;
}

.ft1-from .con2-fol input::-webkit-input-placeholder {
    color: #FFF;
}

.ft1-from .con2-fol input::-moz-placeholder {
    color: #FFF;
}

.ft1-from .con2-fol input::-ms-input-placeholder {
    color: #FFF;
}

.ft1-from .con2-fol textarea::-webkit-input-placeholder {
    color: #FFF;
}

.ft1-from .con2-fol textarea::-moz-placeholder {
    color: #FFF;
}

.ft1-from .con2-fol textarea::-ms-input-placeholder {
    color: #FFF;
}

.ft1-from .con2-fobt {
    justify-content: flex-start;
    margin-top: 22px;
}

.ft1-from .con2-fobt button {
    background: #FFF;
    border-radius: 0;
    padding: 9px 25px;
}

.ft1-from .con2-fobt button span {
    color: #32312F;
    font-family: 'Barlow';
    font-size: var(--zj-ven2-la);
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    text-transform: uppercase;
}

.ft1-from .con2-fobti {
    margin-left: 6px;
}

.ft1-from .con2-fobti i {
    color: rgba(50, 49, 47, 1);
    line-height: normal;
    padding-top: 3px;
}

/*  */
.ft2 {
    width: 52.4%;
    flex: 0 0 auto;
    display: flex;
    justify-content: space-between;
}

.ft2-1 {
    flex: 1;
}

.ft2-1h {
    margin-bottom: 34px;
}

.ft2-1h p {
    color: #FFF;
    font-family: 'Barlow';
    font-size: var(--zj-ft1-2uh);
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    text-transform: uppercase;
}

/*  */
.ft2-1la {
    display: flex;
    width: max-content;
}

.ft2-1la p span {
    color: #FFF;
    font-size: var(--zj-subnav);
    font-style: normal;
    font-weight: 400;
    line-height: calc(var(--zj-subnav) * 2.36);
    text-transform: capitalize;

    --size: 1px;
    --color: #FFF;
    text-decoration: none;
    background-image: linear-gradient(var(--color), var(--color));
    background-size: 0% var(--size);
    background-position: 100% 100%;
    background-repeat: no-repeat;
    transition-property: background-size,
        color,
        opacity;
    transition-duration: 0.5s;
    transition-timing-function: cubic-beizer(0.4, 0, 0.2, 1);
}

.ft2-1la:hover p span {
    color: #FFF;
    background-size: 100% var(--size);
    background-position-x: 0%;
    opacity: 1;
}

.ft2-2 {
    max-width: 385px;
    flex: 0 0 auto;
}

.ft2-2u {
    margin-bottom: 40px
}

.ft2-2l {
    margin-bottom: 26px;
}

.ft2-2l:last-child {
    margin-bottom: 0;
}

.ft2-2l p {
    color: #868686;
    font-family: 'Barlow';
    font-size: var(--zj-subnav);
    font-style: normal;
    font-weight: 400;
    line-height: var(--zj-subnav);
    text-transform: uppercase;
    margin-bottom: 12px;
}

.ft2-2la {
    display: flex;
}

.ft2-2la span {
    color: #FFF;
    font-size: var(--zj-ven2-la);
    font-style: normal;
    font-weight: 400;
    line-height: calc(var(--zj-ven2-la) * 1.22);
    --size: 1px;
    --color: #FFF;
    text-decoration: none;
    background-image: linear-gradient(var(--color), var(--color));
    background-size: 0% var(--size);
    background-position: 100% 100%;
    background-repeat: no-repeat;
    transition-property: background-size,
        color,
        opacity;
    transition-duration: 0.5s;
    transition-timing-function: cubic-beizer(0.4, 0, 0.2, 1);
}

a.ft2-2la:hover span {
    color: #FFF;
    background-size: 100% var(--size);
    background-position-x: 0%;
    opacity: 1;
}

/*  */
.ft2-2share {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.ft2-2share>a {
    --w: 40px;
    width: var(--w);
    height: var(--w);
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 50%;
    margin-right: 15px;
    transition: all 0.5s ease;
}

.ft2-2share>a:last-child {
    margin-right: 0;
}

.ft2-2share>a:hover {
    background: #FFF;
}

.ft2-2share>a i {
    font-size: 18px;
    line-height: normal;
    color: rgb(255, 255, 255);
    transition: all 0.5s ease;
}

.ft2-2share>a:hover i {
    color: rgba(50, 48, 47, 1);
}

/*  */
.ft3 {
    background: #FFF;
}

.ft3-box {
    max-width: 1650px;
    padding: 26px 0;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.ft3-lf {
    display: flex;
    align-items: center;
}

/*  */
/*  */

.ft3-1 {
    display: flex;
    align-items: center;
}

.ft3-1copy {
    margin-right: 4px;
}

.ft3-1copy span {
    color: #999;
    font-size: var(--zj-subnav);
    font-style: normal;
    font-weight: 500;
    line-height: var(--zj-subnav);
    text-transform: capitalize;
}

.ft3-1cnzz {
    padding-bottom: 2px;
}

.ft3-1pow {
    margin-right: 12px;
}

.ft3-1pow span {
    color: #999;
    font-size: var(--zj-subnav);
    font-style: normal;
    font-weight: 500;
    line-height: var(--zj-subnav);
    text-transform: capitalize;
    --size: 1px;
    --color: #32312F;
    text-decoration: none;
    background-image: linear-gradient(var(--color), var(--color));
    background-size: 0% var(--size);
    background-position: 100% 100%;
    background-repeat: no-repeat;
    transition-property: background-size, color, opacity;
    transition-duration: 0.5s;
    transition-timing-function: cubic-beizer(0.4, 0, 0.2, 1);
}

.ft3-1pow:hover span {
    color: #32312F;
    background-size: 100% var(--size);
    background-position-x: 0%;
    opacity: 1;
}

.ft3-2 {
    display: flex;
    align-items: center;

}

.ft3-2>span {
    width: 1px;
    height: 10px;
    background: #D9D9D9;
    margin: 0 20px 0;
}

.ft3-2a {
    display: block;
}

.ft3-2a span {
    color: #999;
    font-size: var(--zj-subnav);
    font-style: normal;
    font-weight: 500;
    line-height: var(--zj-subnav);
    text-transform: capitalize;
    --size: 1px;
    --color: #32312F;
    text-decoration: none;
    background-image: linear-gradient(var(--color), var(--color));
    background-size: 0% var(--size);
    background-position: 100% 100%;
    background-repeat: no-repeat;
    transition-property: background-size, color, opacity;
    transition-duration: 0.5s;
    transition-timing-function: cubic-beizer(0.4, 0, 0.2, 1);
}

.ft3-2a:hover span {
    color: #32312F;
    background-size: 100% var(--size);
    background-position-x: 0%;
    opacity: 1;
}

@media (max-width: 1536px) {
    .ft-top {
        padding: 70px 0 68px;
    }

    .ft2 {
        width: 47.4%;
    }

    .ft2-2 {
        max-width: 298px;
    }

    .ft2-2share>a {
        --w: 34px;
        margin-right: 8px;
    }

    .ft3-2>span {
        margin: 0 10px 0;
    }

    .ft3-box {
        padding: 13px 0;
    }
}

@media (max-width: 1199.9px) {
    .ft1-from {
        max-width: 506px;
    }

    #footer {
        padding-bottom: 49px;
    }

    .ft3-box {
        align-items: flex-start;
        flex-direction: column;
    }

    .ft3-lf {
        margin-bottom: 4px;
    }
}

@media (max-width: 992px) {
    .ft-top {
        flex-direction: column;
    }

    .ft1 {
        width: 100%;
        margin-bottom: 40px;
    }

    .ft1-from {
        max-width: 100%;
    }

    .ft2 {
        width: 100%;
    }

    .ft3-1 {
        align-items: flex-start;
        flex-direction: column;
    }

    .ft3-lf {
        align-items: flex-start;
        flex-direction: column;
    }

    .ft3-2>span:nth-of-type(1) {
        display: none;
    }
}

@media (max-width: 642px) {
    .ft2-1 {
        display: none;
    }
}

@media (max-width: 499px) {
    .ft-top {
        padding: 40px 0 38px;
    }

    .ft1-h {
        margin-bottom: 23px;
    }

    .ft1-from .con2-fol {
        margin-bottom: 8px;
    }

    .ft1-from .con2-fol input,
    .ft1-from .con2-fol textarea {
        padding: 8px 12px;
    }

    .ft1-from .con2-fobt {
        margin-top: 12px;
    }

    .ft2-1h {
        margin-bottom: 24px;
    }

    .ft2-2l {
        margin-bottom: 16px;
    }

    .ft2-2l p {
        margin-bottom: 8px;
    }

    .ft2-2u {
        margin-bottom: 20px;
    }
}

/* news */
.news {
    position: relative;
    padding-bottom: 120px;
}

.ne-box {
    max-width: 1410px;
}

.ne-h {
    margin-bottom: 26px;
}

.ne-h h2 {
    color: #32312F;
    font-family: 'Barlow';
    font-size: var(--zj-news-h);
    font-style: normal;
    font-weight: 600;
    line-height: var(--zj-news-h);
    text-transform: capitalize;
}

.ne-p {
    margin-bottom: 80px;
}

.ne-p p {
    color: #524F4C;
    font-size: var(--zj-ven2-la);
    font-style: normal;
    font-weight: 500;
    line-height: calc(var(--zj-ven2-la) * 1.88);
    max-width: 1131px;
}

.ne-u {
    margin-right: calc(-.5 * 1.88rem);
    margin-left: calc(-.5 * 1.88rem);
    margin-bottom: 40px;
}

.ne-l {
    padding-right: calc(1.88rem * .5);
    padding-left: calc(1.88rem * .5);
    margin-bottom: 40px;
}

.ne-lbox {
    border-radius: 6px;
    overflow: hidden;
    background: #EEE;
    transition: all 0.5s ease;
}

.ne-lbox:hover {
    background: #32312F;
}

.ne-limg .img-box {
    padding-bottom: 74%;
}

.ne-limg .img-box img {
    transition: all 0.5s ease;
}

.ne-lbox:hover .ne-limg .img-box img {
    transform: scale(1.08);
}

.ne-lte {
    padding: 20px;
}

.ne-lh {
    display: block;
    margin-bottom: 15px;
}

.ne-lh p {
    color: #32312F;
    font-family: 'Barlow';
    font-size: calc(var(--zj-oem3-1l1p) + 1px);
    font-style: normal;
    font-weight: 600;
    line-height: calc(var(--zj-oem3-1l1p) * 1.2);
    transition: all 0.5s ease;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
    text-overflow: ellipsis;
}

.ne-lbox:hover .ne-lh p {
    color: #FFF;
}

.ne-lp {
    margin-bottom: 30px;
}

.ne-lp p {
    color: #524F4C;
    font-size: var(--zj-ven2-la);
    font-style: normal;
    font-weight: 500;
    line-height: calc(var(--zj-ven2-la) * 1.44);
    transition: all 0.5s ease;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipsis;
}

.ne-lbox:hover .ne-lp p {
    color: #FFF;
}

.ne-lnum {
    display: flex;
    align-items: center;
}

.ne-lnum i {
    margin-right: 8px;
    font-size: 20px;
    line-height: normal;
    color: rgba(204, 204, 204, 1);
    padding-bottom: 4px;
}

.ne-lnum p {
    color: #CCC;
    font-size: calc(var(--zj-ven2cona) + 1px);
    font-style: normal;
    font-weight: 500;
    line-height: calc(var(--zj-ven2cona) * 1.6);
}

@media (max-width: 1536px) {
    .news {
        padding-bottom: 70px;
    }

    .ne-h {
        margin-bottom: 14px;
    }

    .ne-p {
        margin-bottom: 40px;
    }

    .ne-u {
        margin-bottom: 20px;
    }
}

@media (max-width: 992px) {
    .ne-l {
        width: 50%;
    }

    .ne-lte {
        padding: 12px;
    }
}

@media (max-width: 499px) {
    .ne-l {
        width: 100%;
    }

    .ne-p {
        margin-bottom: 20px;
    }

    .ne-l {
        margin-bottom: 20px;
    }

    .news {
        padding-bottom: 40px;
    }
}

/* news-show */
.news-show {
    padding-bottom: 120px;
    position: relative;
}

.nede-box {
    max-width: 1410px;
}

.nede-h {
    margin-bottom: 80px;
}

.nede-h h2 {
    color: #32312F;
    font-family: 'Barlow';
    font-size: var(--zj-news-h);
    font-style: normal;
    font-weight: 600;
    line-height: var(--zj-news-h);
}

@media (max-width: 1536px) {
    .nede-h {
        margin-bottom: 40px;
    }
}

@media (max-width: 499px) {
    .nede-h {
        margin-bottom: 20px;
    }

    .news-show {
        padding-bottom: 40px;
    }
}

/* service */
.service {
    position: relative;
    padding-bottom: 120px;
}

.ser-box {
    max-width: 1410px;
}

.ser-h {
    margin-bottom: 26px;
}

.ser-h p {
    color: #32312F;
    font-family: 'Barlow';
    font-size: var(--zj-news-h);
    font-style: normal;
    font-weight: 600;
    line-height: var(--zj-news-h);
}

.ser-p {
    margin-bottom: 40px;
}

.ser-p p {
    color: #524F4C;
    font-size: var(--zj-ven2-la);
    font-style: normal;
    font-weight: 500;
    line-height: calc(var(--zj-ven2-la) * 1.88);
    max-width: 1131px;
}

.ser-l {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 40px 0;
    position: relative;
}

.ser-l:last-child {
    padding-bottom: 0;
}

.ser-l::after {
    position: absolute;
    content: "";
    width: 117%;
    height: 1px;
    background: #EEE;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
}

.ser-l:last-child::after {
    display: none;
}

.ser-l1 {
    flex: 1;
    margin-right: 20px;
}

.ser-l1i {
    margin-bottom: 20px;
}

.ser-l1i i {
    font-size: 25px;
    line-height: normal;
}

.ser-l1p p {
    color: #32302F;
    font-family: 'Barlow';
    font-size: var(--zj-pro2-1h);
    font-style: normal;
    font-weight: 600;
    line-height: calc(var(--zj-pro2-1h) * 1.2);
    max-width: 240px;
}

.ser-l2 {
    width: 68%;
    flex: 0 0 auto;
}

.ser-l2>ul li {
    display: flex;
}

.ser-l2>ul li::before {
    content: "";
    display: block;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: #524F4C;
    flex: 0 0 auto;
    margin-right: 11px;
    margin-top: 15px;
}

.ser-l2>ul li p {
    color: #524F4C;
    font-size: var(--zj-ven2-la);
    font-style: normal;
    font-weight: 400;
    line-height: calc(var(--zj-ven2-la) * 1.88);
}

.ser-l2>ul li span {
    font-weight: 600;
    color: #000;
}

@media (max-width: 1536px) {
    .ser-p {
        margin-bottom: 20px;
    }

    .ser-l {
        padding: 20px 0;
    }
}

@media (max-width: 992px) {
    .ser-l {
        align-items: flex-start;
        flex-direction: column;
    }

    .ser-l1 {
        margin-right: 0;
        margin-bottom: 20px;
    }

    .ser-l2 {
        width: 100%;
    }
}

@media (max-width: 499px) {
    .ser-h {
        margin-bottom: 12px;
    }

    .ser-l1i {
        margin-bottom: 10px;
    }

    .ser-l1 {
        margin-bottom: 10px;
    }

    .ser-l2>ul li::before {
        border-radius: 50%;
    }

    .ser-l2>ul li::before {
        margin-top: 13px;
    }

    .service {
        padding-bottom: 40px;
    }
}

/* application */
.application {
    padding-bottom: 90px;
    position: relative;
}

.apl {
    max-width: 1410px;
}

.apl-h {
    margin-bottom: 26px;
}

.apl-h h2 {
    color: #32312F;
    font-family: 'Barlow';
    font-size: var(--zj-news-h);
    font-style: normal;
    font-weight: 600;
    line-height: var(--zj-news-h);
}

.apl-p {
    margin-bottom: 80px;
}

.apl-p p {
    color: #524F4C;
    font-size: var(--zj-ven2-la);
    font-style: normal;
    font-weight: 500;
    line-height: calc(var(--zj-ven2-la) * 1.88);
    max-width: 1080px;
}

.apl-u {
    margin-right: calc(-.5 * 1.88rem);
    margin-left: calc(-.5 * 1.88rem);
}

.apl-l {
    padding-right: calc(1.88rem * .5);
    padding-left: calc(1.88rem * .5);
    margin-bottom: 30px;
}

.apl-la {
    display: block;
}

.apl-limg {
    margin-bottom: 15px;
}

.apl-limg .img-box {
    padding-bottom: 102%;
    border-radius: 6px;
}

.apl-limg .img-box img {
    transition: all 0.5s ease;
}

.apl-la:hover .apl-limg .img-box img {
    transform: scale(1.08);
}

.apl-lh p {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipsis;
}

.apl-lh p span {
    color: #32302F;
    font-family: 'Barlow';
    font-size: var(--zj-oem3-1l1p);
    font-style: normal;
    font-weight: 500;
    line-height: calc(var(--zj-oem3-1l1p) * 1.16);
    --size: 1px;
    --color: #000;
    text-decoration: none;
    background-image: linear-gradient(var(--color), var(--color));
    background-size: 0% var(--size);
    background-position: 100% 100%;
    background-repeat: no-repeat;
    transition-property: background-size, color, opacity;
    transition-duration: 0.5s;
    transition-timing-function: cubic-beizer(0.4, 0, 0.2, 1);
}

.apl-la:hover .apl-lh p span {
    color: #000;
    background-size: 100% var(--size);
    background-position-x: 0%;
}

@media (max-width: 1536px) {
    .apl-h {
        margin-bottom: 13px;
    }

    .apl-p {
        margin-bottom: 40px;
    }

    .apl-u {
        margin-right: calc(-.5 * 1.2rem);
        margin-left: calc(-.5 * 1.2rem);
    }

    .apl-l {
        padding-right: calc(1.2rem * .5);
        padding-left: calc(1.2rem * .5);
        margin-bottom: 20px;
    }

    .application {
        padding-bottom: 40px;
    }
}

@media (max-width: 992px) {
    .apl-l {
        width: 33.333%;
    }
}

@media (max-width: 768px) {
    .apl-l {
        width: 50%;
    }
}

@media (max-width: 499px) {
    .apl-l {
        width: 100%;
    }

    .apl-p {
        margin-bottom: 20px;
    }

    .application {
        padding-bottom: 20px;
    }
}

/* application-show */
.application-show {
    padding-bottom: 90px;
    position: relative;
}

.aplde-box {
    max-width: 1410px;
}

.aplde1 {
    position: relative;
    padding-bottom: 120px;
    margin-bottom: 120px;
}

.aplde1::after {
    position: absolute;
    content: "";
    width: 117%;
    height: 1px;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    background: #EEE;
}

.aplde1-h {
    margin-bottom: 26px;
}

.aplde1-h p {
    color: #32312F;
    font-family: 'Barlow';
    font-size: var(--zj-news-h);
    font-style: normal;
    font-weight: 600;
    line-height: var(--zj-news-h);
}

.aplde1-smh {
    margin-bottom: 80px;
}

.aplde1-smh p {
    color: #32312F;
    font-family: 'Barlow';
    font-size: var(--zj-prode1-2h);
    font-style: normal;
    font-weight: 600;
    line-height: var(--zj-prode1-2h);
}

.aplde1-end {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.aplde1-1 {
    width: 53.2%;
    flex: 0 0 auto;
}

.aplde1-1 p {
    color: #524F4C;
    font-size: var(--zj-ven2-la);
    font-style: normal;
    font-weight: normal;
    line-height: calc(var(--zj-ven2-la) * 1.88);
    margin-bottom: 30px;
}

.aplde1-1 p:last-child {
    margin-bottom: 0;
}

.aplde1-2 {
    width: calc(100% - 53.2% - 40px);
    flex: 0 0 auto;
}

.aplde1-2 .img-box {
    padding-bottom: 38%;
}

.aplde1-2 .img-box img {
    transition: all 0.5s ease;
}

.aplde1-2:hover .img-box img {
    transform: scale(1.08);
}

/*  */
.aplde2-h p {
    color: #32302F;
    font-family: 'Barlow';
    font-size: var(--zj-prode1-2h);
    font-style: normal;
    font-weight: 600;
    line-height: var(--zj-prode1-2h);
    text-transform: capitalize;
}

/*  */
.aplde2-l {
    margin-top: 80px;
    position: relative;
    padding-bottom: 50px;
}

.aplde2-l:last-child {
    padding-bottom: 0;
}

.aplde2-l::after {
    position: absolute;
    content: "";
    width: 117%;
    height: 1px;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    background: #EEE;
}

.aplde2-l:last-child:after {
    display: none;
}

.aplde2-lbox>ul {
    margin-right: calc(-.5 * 1.88rem);
    margin-left: calc(-.5 * 1.88rem);
}

.aplde2-lbox>ul li {
    margin-bottom: 30px;
    padding-right: calc(1.88rem * .5);
    padding-left: calc(1.88rem * .5);
}

.aplde2-lbox>ul li h2 {
    color: #32302F;
    font-family: 'Barlow';
    font-size: var(--zj-pro2-1h);
    font-style: normal;
    font-weight: 600;
    line-height: var(--zj-pro2-1h);
    text-transform: capitalize;
    margin-bottom: 20px;
}

.aplde2-lbox>ul li p {
    color: #524F4C;
    font-size: var(--zj-subnav);
    font-style: normal;
    font-weight: 500;
    line-height: calc(var(--zj-subnav) * 1.62);
}

@media (max-width: 1536px) {
    .aplde1 {
        padding-bottom: 70px;
        margin-bottom: 70px;
    }

    .aplde2-l {
        margin-top: 40px;
        position: relative;
        padding-bottom: 30px;
    }
}

@media (max-width: 992px) {
    .aplde1-end {
        flex-direction: column;
    }

    .aplde1-1 {
        width: 100%;
        margin-bottom: 20px;
    }

    .aplde1-2 {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .aplde2-lbox>ul li {
        width: 100%;
    }
}

@media (max-width: 499px) {
    .aplde1-h {
        margin-bottom: 14px;
    }

    .aplde1-smh {
        margin-bottom: 40px;
    }

    .aplde1-1 p {
        margin-bottom: 12px;
    }

    .aplde1-2 .img-box {
        padding-bottom: 42%;
    }

    .aplde1 {
        padding-bottom: 40px;
        margin-bottom: 40px;
    }

    .aplde2-l {
        margin-top: 20px;
        padding-bottom: 10px;
    }

    .aplde2-lbox>ul li h2 {
        margin-bottom: 10px;
    }

    .application-show {
        padding-bottom: 20px;
    }
}

/* 产品一级页面 */
.product {
    position: relative;
    padding-bottom: 90px;
    overflow: hidden;
}

.pro1-box {
    max-width: 1410px;
}

.pro1-1 {
    padding-bottom: 53px;
    margin-bottom: 70px;
    position: relative;
}

.pro1-1::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 1px;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    background: #EEE;
}

.pro1-1h {
    margin-bottom: 26px;
}

.pro1-1h p {
    color: #32312F;
    font-family: 'Barlow';
    font-size: var(--zj-news-h);
    font-style: normal;
    font-weight: 600;
    line-height: var(--zj-news-h);
}

.pro1-1p p {
    color: #32312F;
    font-family: 'Barlow';
    font-size: var(--zj-prode1-2h);
    font-style: normal;
    font-weight: 600;
    line-height: var(--zj-prode1-2h);
}

.pro1-2 {
    margin-bottom: 120px;
}

.pro1-2p {
    margin-bottom: 40px;
}

.pro1-2p p {
    color: #524F4C;
    font-size: var(--zj-subnav);
    font-style: normal;
    font-weight: 500;
    line-height: calc(var(--zj-subnav) * 1.62);
}

.pro1-2btn {
    display: flex;
}

.pro1-2a {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #32312F;
    padding: 10px 22px;
    transition: all 0.5s ease;
}


.pro1-2a:hover {
    background: #32312fe3;
}

.pro1-2a i {
    margin-right: 12px;
    font-size: 22px;
    line-height: normal;
    color: rgba(255, 255, 255, 1);
}

.pro1-2a p {
    color: #FFF;
    font-size: var(--zj-ven2-la);
    font-style: normal;
    font-weight: 600;
    line-height: var(--zj-ven2-la);
    text-transform: capitalize;
    transition: all 0.5s ease;
}

/*  */
.pro1-u {
    margin-right: calc(-.5 * 1.88rem);
    margin-left: calc(-.5 * 1.88rem);
}

.pro1-l {
    padding-right: calc(1.88rem * .5);
    padding-left: calc(1.88rem * .5);
    margin-bottom: 30px;
}

.pro1-limg .img-box {
    padding-bottom: 66%;
}

.pro1-limg .img-box img {
    transition: all 0.5s ease;
}

.pro1-la:hover .pro1-limg .img-box img {
    transform: scale(1.08);
}

.pro1-la {
    position: relative;
    display: block;
    border-radius: 6px;
    overflow: hidden;
}

.pro1-lte {
    position: absolute;
    width: 100%;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    z-index: 12;
    padding: 30px;
}

.pro1-lte::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    border-radius: 6px;
    background: linear-gradient(180deg, rgba(50, 49, 47, 0.00) 0%, #32312F 100%);
    transition: all 0.5s ease;
}

.pro1-la:hover .pro1-lte::after {
    opacity: 0;
}

.pro1-lte::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    border-radius: 6px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.00) 0%, rgba(255, 255, 255, 0.60) 100%);
    backdrop-filter: blur(2px);
    opacity: 0;
    transition: all 0.5s ease;
}

.pro1-la:hover .pro1-lte::before {
    opacity: 1;
}

.pro1-lte p {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    position: relative;
    z-index: 12
}

.pro1-lte p span {
    color: #FFF;
    font-family: 'Barlow';
    font-size: var(--zj-ft1-1h);
    font-style: normal;
    font-weight: 600;
    line-height: var(--zj-ft1-1h);
    --size: 1px;
    --color: #FFF;
    text-decoration: none;
    background-image: linear-gradient(var(--color), var(--color));
    background-size: 0% var(--size);
    background-position: 100% 100%;
    background-repeat: no-repeat;
    transition-property: background-size, color, opacity;
    transition-duration: 0.5s;
    transition-timing-function: cubic-beizer(0.4, 0, 0.2, 1);
}

.pro1-la:hover .pro1-lte p span {
    color: #FFF;
    background-size: 100% var(--size);
    background-position-x: 0%;
    opacity: 1;
}

.pro1-li {
    position: absolute;
    left: 0;
    top: 0;
    --w: 60px;
    width: var(--w);
    height: var(--w);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 12;
    background: #EEE;
    transition: all 0.5s ease;
}

.pro1-la:hover .pro1-li {
    background: #32312F;
}

.pro1-li i {
    font-size: 30px;
    line-height: normal;
    color: rgba(50, 49, 47, 1);
    transition: all 0.5s ease;
}

.pro1-la:hover .pro1-li i {
    color: rgb(255, 255, 255);
}

/*  */
.prosubbg {
    position: absolute;
    width: 100%;
    max-width: 720px;
    height: auto;
    top: 410px;
    left: -44px;
    background: transparent !important;
    z-index: -1;
}

/* 搜索无结果 */
.nores-h {
    margin-top: 20px;
    margin-bottom: 10px;
}

.nores-h p {
    color: #32312F;
    font-size: var(--zj-subnav);
    font-style: normal;
    line-height: calc(var(--zj-subnav) * 1.5);
}

.nores-p {
    border: 1px solid #32312F;
    border-radius: 8px;
    padding: 4px 12px;
    margin-bottom: 20px;
}

.nores-p p {
    color: #32312F;
    font-size: var(--zj-subnav);
    font-style: normal;
    line-height: calc(var(--zj-subnav) * 1.5);
}

.nores-p2 {
    margin-bottom: 30px;
}

.nores-p2 p {
    color: #32312F;
    font-weight: 600;
    font-size: var(--zj-prode1-2h);
    font-style: normal;
    line-height: 100%;
}

@media (max-width: 1536px) {
    .pro1-1 {
        padding-bottom: 33px;
        margin-bottom: 50px;
        position: relative;
    }

    .pro1-2p {
        margin-bottom: 20px;
    }

    .pro1-2 {
        margin-bottom: 80px;
    }
}

@media (max-width: 992px) {
    .pro1-l {
        width: 50%;
    }
}

@media (max-width: 499px) {
    .pro1-1h {
        margin-bottom: 13px;
    }

    .pro1-1 {
        padding-bottom: 23px;
        margin-bottom: 40px;
    }

    .pro1-2 {
        margin-bottom: 40px;
    }

    .pro1-l {
        width: 100%;
    }

    .pro1-lte {
        padding: 12px;
    }

    .product {
        padding-bottom: 20px;
    }
}

/* 产品二级页面 */

/* 产品详情 */
.prode {
    position: relative;
    padding-bottom: 120px;
}

.prode-box {
    max-width: 1410px;
}

.prode-h {
    margin-bottom: 64px;
}

.prode-h p {
    color: #32312F;
    font-family: 'Barlow';
    font-size: var(--zj-ab2end1-h);
    font-style: normal;
    font-weight: 600;
    line-height: var(--zj-ab2end1-h);
    text-transform: capitalize;
}

/*  */
.prode-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 100px;
}

.slider-navbox {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    flex-direction: column;
}

.slider-navbox button {
    background: #EEE;
    --w: 40px;
    width: var(--w);
    height: var(--w);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    transition: all 0.5s ease;
    margin: 20px 0;
}

.slider-navbox button:hover {
    background: #32312F;
}

.slider-navbox button:first-of-type {
    transform: rotate(90deg);
}

.slider-navbox button:last-of-type {
    transform: rotate(90deg);
}

.slider-navbox>button i {
    font-size: 14px;
    color: rgba(82, 79, 76, 1);
    transition: all 0.5s ease;
}

.slider-navbox>button:hover i {
    color: rgb(255, 255, 255);
}

/*  */
.prode1-2 {
    width: calc(100% - 37.25% - 45px);
    flex: 0 0 auto;
}

.prode1-2p p {
    color: #000;
    font-size: var(--zj-subnav);
    font-style: normal;
    font-weight: 600;
    line-height: calc(var(--zj-subnav) * 1.62);
}

.prode1-2u {
    margin-top: 40px;
}

.prode1-2l {
    margin-bottom: 24px;
    position: relative;
    padding-left: 22px;
}

.prode1-2l:last-child {
    margin-bottom: 0;
}

.prode1-2l::after {
    position: absolute;
    content: "";
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: #524F4C;
    left: 7px;
    top: 10px;
}

.prode1-2l p {
    color: #524F4C;
    font-size: var(--zj-subnav);
    font-style: normal;
    font-weight: 500;
    line-height: calc(var(--zj-subnav) * 1.62);
}

/*  */
.prode1-2end {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 65px;
}

.prode1-2btn {
    display: flex;
    align-items: center;
}

.prode1-2a {
    display: flex;
    align-items: center;
    background: rgba(235, 235, 235, 1);
    backdrop-filter: blur(2px);
    padding: 7px 46px;
    transition: all 0.5s ease;
    margin-right: 12px;
}

.prode1-2a:last-child {
    margin-right: 0;
}

.prode1-2a:hover {
    background: #32312F;
}

.prode1-2a span {
    color: #FFF;
    font-family: 'Barlow';
    font-size: var(--zj-ven2-la);
    font-style: normal;
    font-weight: 500;
    line-height: var(--zj-ven2-la);
    text-transform: uppercase;
}

.prode1-2a i {
    font-size: 24px;
    color: rgba(255, 255, 255, 1);
    margin-left: 16px;
}

.prode1-2share {
    display: flex;
    align-items: center;
}

.prode1-2share p {
    color: #32302F;
    font-size: var(--zj-ven2-la);
    font-style: normal;
    font-weight: 500;
    line-height: var(--zj-ven2-la);
    text-transform: uppercase;
    margin-right: 20px;
}

/*  */

.prode-con {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 10px;
    border: 1px solid #EEE;
    background: #FFF;
    padding: 9px 40px;
}

.prode-con1>ul {
    margin-top: 30px;
}

.prode-con1>ul li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    padding-left: 12px;
    margin-bottom: 30px;
}

.prode-con1>ul li::after {
    position: absolute;
    content: "";
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: #32302F;
    left: 0;
    top: 14px;
}

.prode-con1>ul li:nth-child(2) .prode-con1a {
    width: calc(50% - calc(var(--bs-gutter-x) * .5));
}

.prode-con1a p {
    color: #32302F;
    font-family: 'Barlow';
    font-size: var(--zj-ven2-la);
    font-style: normal;
    font-weight: normal;
    line-height: calc(var(--zj-ven2-la) * 1.66);
}

.prode-con1a p span {
    --size: 1px;
    --color: #32312F;
    text-decoration: none;
    background-image: linear-gradient(var(--color), var(--color));
    background-size: 0% var(--size);
    background-position: 100% 100%;
    background-repeat: no-repeat;
    transition-property: background-size, color, opacity;
    transition-duration: 0.5s;
    transition-timing-function: cubic-beizer(0.4, 0, 0.2, 1);
}

a.prode-con1a:hover p span {
    color: #32312F;
    background-size: 100% var(--size);
    background-position-x: 0%;
    opacity: 1;
}

/*  */
.prode-con2 {
    flex: 0 0 auto;
}

.prode-con2a {
    display: block;
    background: #32312F;
    backdrop-filter: blur(2px);
    padding: 20px 34px;
    transition: all 0.5s ease;
}

.prode-con2a:hover {
    background: #32312fe3;
}

.prode-con2a p {
    color: #FFF;
    font-size: var(--zj-prode1-2h);
    font-style: normal;
    font-weight: 600;
    line-height: var(--zj-prode1-2h);
    text-transform: capitalize;
}

/*  */
.prode3h {
    margin-bottom: 40px;
    margin-top: 120px;
}

.prode3h p {
    color: #32302F;
    font-family: 'Barlow';
    font-size: var(--zj-prode1-2h);
    font-style: normal;
    font-weight: 600;
    line-height: var(--zj-prode1-2h);
    text-transform: capitalize;
}

/*  */
.prode5h {
    border-radius: 6px;
    background: #32312F;
    padding: 17px 23px;
    margin-bottom: 20px;
}

.prode5h p {
    color: #FFF;
    font-size: var(--zj-subnav);
    font-style: normal;
    font-weight: 500;
    line-height: var(--zj-subnav);
    text-transform: capitalize;
}

/*  */
.prode .prosubbg {
    top: 1037px;
}

@media (max-width: 1536px) {
    .prode-h {
        margin-bottom: 44px;
    }

    .prode-con2a {
        padding: 10px 17px;
    }

    .prode-top {
        margin-bottom: 70px;
    }

    .prode3h {
        margin-bottom: 30px;
        margin-top: 70px;
    }

    .prode {
        padding-bottom: 70px;
    }

    .prode1-2a {
        padding: 7px 26px;
    }
}

@media (max-width: 992px) {


    .prode-top {
        flex-direction: column;
    }

    .prode1-2 {
        width: 100%;
    }

    .prode1-1 {
        width: 100%;
    }

    .slider-for {
        width: calc(100% - 100px);
    }

    .slider-navbox button:last-of-type {
        transform: rotate(360deg);
    }

    .slider-navbox button:first-of-type {
        transform: rotate(360deg);
    }

    .slider-navbox {
        flex-direction: row;
    }

    .prode-con1>ul li {
        width: 100%;
    }

    .prode1-2a {
        padding: 4px 12px !important;
        margin-right: 4px;
    }

}

@media (max-width: 768px) {
    .prode1-2end {
        align-items: flex-start;
        flex-direction: column;
    }

    .prode1-2btn {
        margin-bottom: 20px;
    }

    .prode-con {
        align-items: flex-start;
        flex-direction: column;
    }

    .prode-con {
        padding: 9px 20px;
    }
}

@media (max-width: 499px) {
    .slider-navbox button {
        --w: 28px;
    }

    .slider-for {
        width: calc(100% - 28px - 28px - 5px);
    }

    .prode-h {
        margin-bottom: 22px;
    }

    .prode1-2u {
        margin-top: 20px;
    }

    .prode1-2l {
        margin-bottom: 12px;
    }

    .prode1-2end {
        margin-top: 35px;
    }

    .prode-con1>ul li {
        align-items: flex-start;
        flex-direction: column;
    }

    .prode-con1>ul li {
        margin-bottom: 10px;
    }

    .prode-con1>ul li:nth-child(2) .prode-con1a {
        width: 100%;
    }

    .prode-con1>ul {
        margin-top: 0;
    }

    .prode-top {
        margin-bottom: 30px;
    }

    .prode3h {
        margin-bottom: 20px;
        margin-top: 30px;
    }

    .prode {
        padding-bottom: 40px;
    }
}

/* 淄博银轩碳素技术有限公司（关于我们） about */
.ab1 {
    position: relative;
    padding-bottom: 90px;
}

.ab1-box {
    max-width: 1410px;
}

.ab1-smh {
    margin-bottom: 26px;
    display: flex;
    align-items: center;
}

.ab1-smh::before {
    content: "";
    display: block;
    --w: 14px;
    width: var(--w);
    height: var(--w);
    background: #999;
    border-radius: 50%;
    margin-right: 15px;
}

.ab1-smh p {
    color: #999;
    font-family: 'Barlow';
    font-size: var(--zj-oem3-1l1p);
    font-style: normal;
    font-weight: 600;
    line-height: var(--zj-oem3-1l1p);
    text-transform: uppercase;
}

.ab1-h {
    margin-bottom: 40px;
}

.ab1-h p {
    color: #32312F;
    font-family: 'Barlow';
    font-size: var(--zj-ab2end1-h);
    font-style: normal;
    font-weight: 600;
    line-height: calc(var(--zj-ab2end1-h) * 1.08);
    max-width: 740px;
}

.ab1-p p {
    color: #524F4C;
    font-size: var(--zj-ven2-la);
    font-style: normal;
    font-weight: 500;
    line-height: calc(var(--zj-ven2-la) * 1.88);
    max-width: 1170px;
}

/* ab2 video */
.ab2-img {
    position: relative;
    display: block;
}

.ab2-img .img-box {
    padding-bottom: 34%;
}

.ab2-img .img-box img {
    transition: all 0.5s ease;
}

.ab2-img:hover .img-box img {
    transform: scale(1.08);
}

.ab2-i {
    --w: 94px;
    width: var(--w);
    height: var(--w);
    border-radius: 50%;
    background: #ffffff;
    position: absolute;
    z-index: 12;
    display: flex;
    align-items: center;
    justify-content: center;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    cursor: pointer;
}

.ab2-i i {
    --w: 72px;
    width: var(--w);
    height: var(--w);
    border-radius: 50%;
    background: #32312F;
    font-size: 36px;
    color: rgb(255, 255, 255);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 12;
    transition: all 0.5s ease;
}

.ab2-i:hover i {
    animation: vensesv 0.6s ease-in-out;
    animation-iteration-count: 1;
}

.ab2-i>span {
    background-color: rgba(255, 255, 255, 0.4);
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    opacity: 0;
    -webkit-opacity: 0;
    z-index: -1;
    top: 0;
    left: 0;
    animation: scalej2 2s infinite;
    -webkit-animation: scalej2 2s infinite;
}

.ab2-i>span:nth-of-type(2) {
    background-color: rgba(255, 255, 255, 0.6);
    animation: scalej3 2s infinite;
    -webkit-animation: scalej3 2s infinite;
}

/* ab3 */
.ab3 {
    position: relative;
    padding: 120px 0;
}

.ab3-box {
    max-width: 1410px;
}

.ab3-h {
    margin-bottom: 26px;
}

.ab3-h p {
    color: #32312F;
    text-align: center;
    font-family: 'Barlow';
    font-size: var(--zj-news-h);
    font-style: normal;
    font-weight: 600;
    line-height: var(--zj-news-h);
    text-transform: capitalize;
}

.ab3-p {
    margin-bottom: 70px;
}

.ab3-p p {
    color: #999;
    text-align: center;
    font-family: 'Barlow';
    font-size: var(--zj-ft1-2uh);
    font-style: normal;
    font-weight: 500;
    line-height: var(--zj-ft1-2uh);
}

/*  */
.ab3-u {
    margin-right: calc(-.5 * 3rem);
    margin-left: calc(-.5 * 3rem);
}

.ab3-l {
    padding-right: calc(3rem * .5);
    padding-left: calc(3rem * .5);
}

.ab3-lbox {
    background: #FFF;
    box-shadow: 0 6px 20px 10px rgba(0, 0, 0, 0.03);
    height: 100%;
}

.ab3-limg .img-box {
    padding-bottom: 76%;
}

.ab3-limg .img-box img {
    transition: all 0.5s ease;
}

.ab3-lbox:hover .ab3-limg .img-box img {
    transform: scale(1.08);
}

.ab3-lh {
    padding: 36px 36px 52px;
}

.ab3-lh p {
    color: #524F4C;
    text-align: center;
    font-size: var(--zj-ft1-1h);
    font-style: normal;
    font-weight: 500;
    line-height: calc(var(--zj-ft1-1h) * 1.4);
}

/* ab4 */
.ab4 {
    background: #F5F5F5;
    padding: 94px 0;
    position: relative;
    overflow: hidden;
}

.ab4 .subbg1,
.ab4 .subbg2 {
    z-index: 12;
    pointer-events: none;
}

.ab4-box {
    max-width: 1410px;
    position: relative;
    z-index: 14;
}

.ab4-h {
    margin-bottom: 26px;
}

.ab4-h p {
    color: #32312F;
    text-align: center;
    font-family: 'Barlow';
    font-size: var(--zj-news-h);
    font-style: normal;
    font-weight: 600;
    line-height: var(--zj-news-h);
    text-transform: capitalize;
}

.ab4-p {
    margin-bottom: 80px;
}

.ab4-p p {
    color: #999;
    text-align: center;
    font-family: 'Barlow';
    font-size: var(--zj-ft1-2uh);
    font-style: normal;
    font-weight: 500;
    line-height: var(--zj-ft1-2uh);
}

.ab4-u {
    margin-right: calc(-.5 * 3.25rem);
    margin-left: calc(-.5 * 3.25rem);
}

.ab4-l {
    padding-right: calc(3.25rem * .5);
    padding-left: calc(3.25rem * .5);
}

.ab4-lbox {
    background: #FFF;
    box-shadow: 0 6px 20px 10px rgba(0, 0, 0, 0.03);
    height: 100%;
}

.ab4-limg .img-box {
    padding-bottom: 46%;
}

.ab4-limg .img-box img {
    transition: all 0.5s ease;
}

.ab4-lbox:hover .ab4-limg .img-box img {
    transform: scale(1.08);
}

.ab4-lh {
    padding: 28px 53px;
}

.ab4-lh p {
    color: #524F4C;
    text-align: center;
    font-size: var(--zj-ft1-1h);
    font-style: normal;
    font-weight: 400;
    line-height: calc(var(--zj-ft1-1h) * 1.4);
}

/* ab5 */
.ab5 {
    position: relative;
    padding: 120px 0;
}

.ab5-box {
    max-width: 1410px;
}

.ab5-h {
    margin-bottom: 26px;
}

.ab5-h p {
    color: #32312F;
    text-align: center;
    font-family: 'Barlow';
    font-size: var(--zj-news-h);
    font-style: normal;
    font-weight: 600;
    line-height: var(--zj-news-h);
    text-transform: capitalize;
}

.ab5-p {
    margin-bottom: 80px;
}

.ab5-p p {
    color: #999;
    text-align: center;
    font-family: 'Barlow';
    font-size: var(--zj-ft1-2uh);
    font-style: normal;
    font-weight: 500;
    line-height: var(--zj-ft1-2uh);
}

/*  */
.ab5-end {
    position: relative;
}

.ab5-u {
    margin-right: calc(-.5 * 3.15rem);
    margin-left: calc(-.5 * 3.15rem);
}

.ab5-l {
    padding-right: calc(3.15rem * .5);
    padding-left: calc(3.15rem * .5);
}

.ab5-limg {
    max-width: 160px;
    margin: auto;
    box-shadow: 0 6px 20px 10px rgba(0, 0, 0, 0.03);
    border-radius: 50%;
}

.ab5-limg .img-box {
    margin-bottom: 40px;
    border-radius: 50%;
}

.ab5-limg .img-box img {
    transition: all 0.5s ease;
}

.ab5-lbox:hover .ab5-limg .img-box img {
    transform: scale(1.08);
}

.ab5-lte p {
    color: #524F4C;
    text-align: center;
    font-size: var(--zj-ft1-1h);
    font-style: normal;
    font-weight: 500;
    line-height: calc(var(--zj-ft1-1h) * 1.4);
}

.ab5-fly {
    position: absolute;
    width: calc(100% - 70px);
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    top: 70px;
    left: 50%;
    transform: translateX(-50%);
    pointer-events: none;
}

.ab5-line img {
    width: 130px;
    height: auto;
    object-fit: cover;
    object-position: center;
}

/* ab6 */
.ab6 {
    background: #F5F5F5;
    position: relative;
    overflow: hidden;
    padding: 96px 0 66px;
}

.ab6 .subbg1,
.ab6 .subbg2 {
    z-index: 12;
    pointer-events: none;
}

.ab6-box {
    position: relative;
    z-index: 14;
    max-width: 1410px;
}

.ab6-h {
    margin-bottom: 26px;
}

.ab6-h p {
    text-align: center;
    color: #32312F;
    font-family: 'Barlow';
    font-size: var(--zj-news-h);
    font-style: normal;
    font-weight: 600;
    line-height: var(--zj-news-h);
    text-transform: capitalize;
}

.ab6-p {
    margin-bottom: 80px;
}

.ab6-p p {
    color: #999;
    text-align: center;
    font-family: 'Barlow';
    font-size: var(--zj-ft1-2uh);
    font-style: normal;
    font-weight: 500;
    line-height: var(--zj-ft1-2uh);
}

.ab6-u {
    margin-right: calc(-.5 * 1.88rem);
    margin-left: calc(-.5 * 1.88rem);
}

.ab6-l {
    padding-right: calc(1.88rem * .5);
    padding-left: calc(1.88rem * .5);
    margin-bottom: 30px;
}

.ab6-lbox {
    box-shadow: 0 6px 20px 10px rgba(0, 0, 0, 0.03);
    height: 100%;
    min-height: 240px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
}

.ab6-lp p {
    color: #32312F;
    text-align: center;
    font-size: var(--zj-ft1-1h);
    font-style: normal;
    font-weight: 500;
    line-height: calc(var(--zj-ft1-1h) * 1.4);
    max-width: 420px;
}

.ab6-lp p span {
    font-weight: 800;
}

@media (max-width: 1536px) {
    .ab1 {
        padding-bottom: 70px;
    }

    .ab3 {
        position: relative;
        padding: 70px 0;
    }

    .ab3-h {
        margin-bottom: 16px;
    }

    .ab3-u {
        margin-right: calc(-.5 * 1.88rem);
        margin-left: calc(-.5 * 1.88rem);
    }

    .ab3-l {
        padding-right: calc(1.88rem * .5);
        padding-left: calc(1.88rem * .5);
    }

    .ab3-lh {
        padding: 18px 18px 26px;
    }

    .ab3-p {
        margin-bottom: 40px;
    }

    .ab4 {
        padding: 64px 0;
    }

    .ab4-h {
        margin-bottom: 13px;
    }

    .ab4-p {
        margin-bottom: 40px;
    }

    .ab4-u {
        margin-right: calc(-.5 * 1.88rem);
        margin-left: calc(-.5 * 1.88rem);
    }

    .ab4-l {
        padding-right: calc(1.88rem * .5);
        padding-left: calc(1.88rem * .5);
    }

    .ab4-lh {
        padding: 14px 26px;
    }

    .ab5 {
        padding: 70px 0;
    }

    .ab5-h {
        margin-bottom: 13px;
    }

    .ab5-p {
        margin-bottom: 40px;
    }

    .ab5-u {
        margin-right: calc(-.5 * 1.88rem);
        margin-left: calc(-.5 * 1.88rem);
    }

    .ab5-l {
        padding-right: calc(1.88rem * .5);
        padding-left: calc(1.88rem * .5);
    }

    .ab6 {
        padding: 66px 0 56px;
    }

    .ab6-h {
        margin-bottom: 13px;
    }

    .ab6-p {
        margin-bottom: 40px;
    }

    .ab1-h {
        margin-bottom: 20px;
    }
}

@media (max-width: 992px) {
    .ab2-img .img-box {
        padding-bottom: 40%;
    }

    .ab3-l {
        width: 50%;
        margin-bottom: 30px;
    }

    .ab4-l {
        width: 100%;
        margin-bottom: 30px;
    }

    .ab4-l:last-child {
        margin-bottom: 0;
    }

    .ab5-fly {
        display: none;
    }

    .ab5-l {
        width: 50%;
        margin-bottom: 30px;
    }

    .ab6-l {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .ab3-l {
        width: 100%;
    }

    .ab5-l {
        width: 100%;
    }
}

@media (max-width: 499px) {
    .ab1 {
        padding-bottom: 40px;
    }

    .ab1-smh {
        margin-bottom: 13px;
    }

    .ab1-smh::before {
        --w: 10px;
        margin-right: 10px;
    }

    .ab1-h {
        margin-bottom: 10px;
    }

    .ab2-i {
        --w: 66px;
    }

    .ab2-i i {
        --w: 52px;
    }

    .ab2-img .img-box {
        padding-bottom: 50%;
    }

    .ab3 {
        padding: 40px 0 30px;
    }

    .ab3-h {
        margin-bottom: 8px;
    }

    .ab3-p {
        margin-bottom: 20px;
    }

    .ab3-lh {
        padding: 12px 12px 20px;
    }

    .ab3-l {
        margin-bottom: 20px;
    }

    .ab4 {
        padding: 44px 0;
    }

    .ab4-p {
        margin-bottom: 20px;
    }

    .ab4-l {
        margin-bottom: 20px;
    }

    .ab4-lh {
        padding: 12px 12px;
    }

    .ab5 {
        padding: 40px 0 20px;
    }

    .ab5-limg .img-box {
        margin-bottom: 20px;
    }

    .ab6 {
        padding: 46px 0 36px;
    }

    .ab6-p {
        margin-bottom: 20px;
    }

    .ab6-lbox {
        min-height: 140px;
    }

    .ab6-l {
        margin-bottom: 18px;
    }
}

/* index */
/* ind-ban */
.ind-ban {
    margin-top: 106px;
}

.banner {
    font-size: 0;
    position: relative;
    z-index: 8;
    clear: both;
    overflow: hidden;
    width: 100%;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.banner img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.banner .swiper-slide {
    overflow: hidden;
}

.banner .item {
    position: relative;
    display: block;
    overflow: hidden;
}

.banner .item a {
    padding-bottom: 44.5%;
}

.banner-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.banner.hide-arrow .slick-arrow,
.banner.hide-arrow .swiper-pagination {
    display: none !important;
}

.banner.hide-video video {
    display: none !important;
}

.banner-video-box {
    position: relative;
    display: block;
    padding-bottom: 44.5%;
    -webkit-transform: translateZ(10px);
    transform: translateZ(10px);
}

.banner-video-box .fluid_video_wrapper {
    position: absolute;
    z-index: 10;
}

#video-id_fluid_controls_container {
    display: none !important;
}

.banner-video-box .fluid_initial_play {
    background-color: #152c5f !important;
}

.banner .mobile-video {
    position: relative;
    display: block;
}

.banner .mobile-video:after {
    z-index: 2;
    content: '';
    background-color: rgba(0, 0, 0, .1);
}

.banner .mobile-video:before {
    font-family: 'iconfont' !important;
    font-size: 50px;
    font-style: normal;
    position: absolute;
    z-index: 3;
    top: 50%;
    left: 50%;
    content: '\ea82';
    -webkit-transform: translateY(-50%) translateX(-50%);
    -ms-transform: translateY(-50%) translateX(-50%);
    transform: translateY(-50%) translateX(-50%);
    color: #fff;
    text-shadow: 0 0 20px rgba(0, 0, 0, .3);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

@media (max-width: 1536px) {
    /* .ind-ban {
        margin-top: 78px;
    } */
}

@media (max-width: 991px) {
    .banner .slick-arrow {
        /* width: 20px;
        height: 50px; */
    }

    .banner .item a {
        padding-bottom: 42%;
    }

    .banner-video-box {
        padding-bottom: 42%;
    }

    .banner .mobile-video:before {
        font-family: 'iconfont' !important;
        font-size: 30px;
    }
}

@media (max-width: 499px) {
    .banner .item a {
        padding-bottom: 48%;
    }

    .banner-video-box {
        padding-bottom: 48%;
    }
}


@media (max-width: 499px) {
    /* .ind-ban {
        margin-top: 66px;
    } */
}

/* banner按键改版 */
.banner-chan {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 32px;
    z-index: 12;
}

.banner-chan .swiper-pagination {
    position: relative;
    left: 0;
    bottom: 0;
    right: 0;
    top: 0;
    width: auto;
    display: flex;
    align-items: center;
}

.banner-chan .swiper-pagination::before {
    content: '';
    position: absolute;
    right: 0;
    bottom: 0;
    width: 2px;
    height: 2px;
    background: #FFF;
    z-index: 12;
    transition: all 0.5s ease;
}

.banner-chan .swiper-pagination .swiper-pagination-bullet {
    opacity: 1;
    width: auto;
    height: auto;
    border-radius: 0;
    background: transparent;
    display: block;
    color: rgba(255, 255, 255, 0.30);
    font-size: calc(var(--zj-ven2cona) + 1px);
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    text-transform: capitalize;
    padding: 0 46px 10px;
    transition: all 0.5s ease;
    cursor: pointer;
    border-bottom: 1px solid rgba(255, 255, 255, 0.30);
    position: relative;
}

.banner-chan .swiper-pagination .swiper-pagination-bullet-active {
    color: rgba(255, 255, 255, 1);
    border-bottom: 1px solid rgba(255, 255, 255, 1);
}

.banner-chan .swiper-pagination .swiper-pagination-bullet::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 1px;
    height: 1px;
    background: #FFF;
    z-index: 12;
    transition: all 0.5s ease;
}

.banner-chan .swiper-pagination .swiper-pagination-bullet-active::after {
    height: 4px;
}

.banner-chan .swiper-pagination .swiper-pagination-bullet::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 2px;
    height: 2px;
    background: #FFF;
    z-index: 12;
    transition: all 0.5s ease;
}

.banner-chan .slick-prev {
    transform: rotate(180deg);
}

.banner-chan .slick-arrow {
    position: relative;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: 0 16px;
}

.banner-chan .slick-arrow i {
    font-size: 20px;
    font-weight: bold;
    color: rgba(255, 255, 255, 0.60);
    transition: all 0.5s ease;
}

.banner-chan .slick-arrow:hover i {
    color: rgba(255, 255, 255, 1);
}

@media (max-width: 1536px) {

    .banner-chan .slick-arrow i {
        font-size: 16px;
    }

    .banner-chan .slick-arrow {
        margin: 0 8px;
    }
}

@media (max-width: 499px) {
    .banner-chan {
        bottom: 12px;
    }

    .banner-chan .swiper-pagination .swiper-pagination-bullet {
        font-size: 14px;
    }

    .banner-chan .slick-arrow i {
        font-size: 14px;
    }
}

/* ind-story */
.ind-story {
    position: relative;
}

.so1 {
    max-width: 1650px;
    padding: 100px 0 110px;
}

.so1-h {
    margin-bottom: 10px;
}

.so1-h p {
    color: #32302F;
    font-family: 'Barlow';
    font-size: var(--zj-ft1h);
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    text-transform: uppercase;
}

.so1-p p {
    color: #999;
    font-family: 'Barlow';
    font-size: var(--zj-ft1-2uh);
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

.so1-end {
    margin-top: 53px;
    padding-top: 73px;
    border-top: 1px solid #EEE;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.so1-1btn {
    display: flex;
}

.so1-1a {
    padding: 11px 39px;
    position: relative;
    overflow: hidden;
    border-radius: 3px;
    background: #32312F;
    backdrop-filter: blur(2px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.5s ease;
}

.so1-1a::after,
.so1-1a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    -webkit-transition: all 0.6s;
    -moz-transition: all 0.6s;
    -o-transition: all 0.6s;
    transition: all 0.6s;
    opacity: 1;
    -webkit-transform: translate(-16%, -198%) rotate(-30deg);
    transform: translate(-16%, -198%) rotate(-30deg);
    border-bottom-width: 1px;
    border-bottom-style: solid;
    border-bottom-color: rgba(255, 255, 255, 1);
    background-color: rgba(255, 255, 255, 0.25);
}

.so1-1a::after {
    -webkit-transition-delay: 0.2s;
    transition-delay: 0.2s;
}

.so1-1a:hover:before,
.so1-1a:hover:after {
    opacity: 0;
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
}

.so1-1a span {
    color: #FFF;
    font-family: 'Barlow';
    font-size: var(--zj-ven2-la);
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    text-transform: capitalize;
}

.so1-1i {
    /* --w: 20px; */
    width: var(--w);
    height: var(--w);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 16px;
    position: relative;
}

.so1-1i i {
    line-height: normal;
    transition: all 0.5s ease;
    font-size: 14px;
    line-height: 1;
    color: #FFF;
}

.so1-1a:hover .so1-1i i {
    animation: trax 1s ease-in-out;
    animation-iteration-count: 1;
    /* transform: translate3d(150%, -150%, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg); */
}

.so1-2 {
    width: 68%;
    flex: 0 0 auto;
}

.so1-2 p {
    color: #524F4C;
    font-size: var(--zj-ven2-la);
    font-style: normal;
    font-weight: 500;
    line-height: calc(var(--zj-ven2-la) * 1.88);
    margin-bottom: 40px;
}

.so1-2 p:last-child {
    margin-bottom: 0;
}

/* so2 */
.so2 {
    max-width: 1650px;
    padding: 80px 0;
}

.so2-sw {
    position: relative;
}

.so2-sw::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 3px;
    border-radius: 17px;
    background: rgba(255, 255, 255, 0.30);
    left: 0;
    top: 478px;
}

#so2-sw {
    padding-top: 478px;
}

/*  */
#so2-sw .swiper-slide:nth-child(2n-1) .so2-swbox {
    position: absolute;
    left: 0;
    bottom: 0;
}

.so2-swnum {
    margin-bottom: 14px;
}

.so2-swnum p {
    color: #999;
    font-family: 'Barlow';
    font-size: var(--zj-ab2end1-h);
    font-style: normal;
    font-weight: 500;
    line-height: var(--zj-ab2end1-h);
    transition: all 0.5s ease;
}

#so2-sw .swiper-slide-active .so2-swnum p {
    color: #FFF;
}

.so2-swbox:hover .so2-swnum p {
    color: #FFF;
}

.so2-swp p {
    color: #FFF;
    font-size: var(--zj-ven2-la);
    font-style: normal;
    font-weight: 500;
    line-height: calc(var(--zj-ven2-la) * 1.38);
    min-width: 290px;
}

/*  */
.so2-swimg {
    width: 229px;
    /* max-width: 100%; */
}

#so2-sw .swiper-slide:nth-child(2n-1) .so2-swimg {
    margin-top: 30px;
    padding: 0 0 44px;
    border-left: 1px dashed rgba(255, 255, 255, 0.40);
    position: relative;
}

#so2-sw .swiper-slide:nth-child(2n-1) .so2-swimg::after {
    position: absolute;
    content: "";
    width: 11px;
    height: 11px;
    background: #FFF;
    border-radius: 50%;
    bottom: -8px;
    left: -6px;
}

#so2-sw .swiper-slide:nth-child(2n-1) .so2-swimg::before {
    position: absolute;
    content: "";
    width: 23px;
    height: 23px;
    background: rgba(255, 255, 255, 0.50);
    border-radius: 50%;
    bottom: -14px;
    left: -12px;
    opacity: 0;
    transition: all 0.5s ease;
}

#so2-sw .swiper-slide-active:nth-child(2n-1) .so2-swimg::before {
    opacity: 1;
}


#so2-sw .swiper-slide:nth-child(2n) .so2-swimg {
    margin-bottom: 30px;
    padding: 44px 0 0;
    border-left: 1px dashed rgba(255, 255, 255, 0.40);
    position: relative;
}

#so2-sw .swiper-slide:nth-child(2n) .so2-swimg::after {
    position: absolute;
    content: "";
    width: 11px;
    height: 11px;
    background: #FFF;
    border-radius: 50%;
    top: -4px;
    left: -6px;
}

#so2-sw .swiper-slide:nth-child(2n) .so2-swimg::before {
    position: absolute;
    content: "";
    width: 23px;
    height: 23px;
    background: rgba(255, 255, 255, 0.50);
    border-radius: 50%;
    top: -10px;
    left: -12px;
    opacity: 0;
    transition: all 0.5s ease;
}

#so2-sw .swiper-slide-active:nth-child(2n) .so2-swimg::before {
    opacity: 1;
}

.so2-swimg .img-box {
    padding-bottom: 60%;
}

.so2-swimg .img-box img {
    transition: all 0.5s ease;
}

.so2-swbox:hover .so2-swimg .img-box img {
    transform: scale(1.08);
}

/* so3 */
.ind-te {
    padding: 36px 0;
}

.so3 {
    max-width: 1650px;
}

.so3-h {
    margin-bottom: 16px;
}

.so3-h p {
    color: #FFF;
    font-family: 'Barlow';
    font-size: var(--zj-pro2-1h);
    font-style: normal;
    font-weight: 600;
    line-height: var(--zj-pro2-1h);
    text-transform: capitalize;
}

.so3-p p {
    color: #FFF;
    font-size: var(--zj-ven2-la);
    font-style: normal;
    font-weight: 600;
    line-height: calc(var(--zj-ven2-la) * 1.44);
    max-width: 1090px;
}

/* ind-pro so4 */
.ind-pro {
    position: relative;
    padding: 120px 0;
}

.so4 {
    max-width: 1650px;
}

.so4-h {
    margin-bottom: 20px;
}

.so4-h p {
    color: #32312F;
    font-family: 'Barlow';
    font-size: var(--zj-ft1h);
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    text-transform: uppercase;
}

.so4-p {
    width: 46%;
    margin-bottom: 80px;
}

.so4-p p {
    color: #999;
    font-size: var(--zj-ven2-la);
    font-style: normal;
    font-weight: 500;
    line-height: calc(var(--zj-ven2-la) * 1.66);
}

/*  */
.so4-end {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.so4-1 {
    width: 46%;
    flex: 0 0 auto;
}

.so4-1img img {
    width: 100%;
    height: auto;
    object-fit: cover;
    object-position: center;
    border-radius: 6px;
}

.so4-2 {
    width: calc(54% - 134px);
    flex: 0 0 auto;
}

.so4-2la {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 0;
    position: relative;
}

.so4-2la::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 1px;
    left: 0;
    bottom: 0;
    background: #EEE;
}

.so4-2la::after {
    position: absolute;
    content: "";
    width: 0;
    height: 1px;
    left: 0;
    bottom: 0;
    background: #32302F;
    transition: all 0.8s ease;
}

.so4-2la:hover:after {
    width: 100%;
}

.so4-2lh p {
    color: #32312F;
    font-family: 'Barlow';
    font-size: var(--zj-ft1-2uh);
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    transition: all 0.5s ease;
}

.so4-2la:hover .so4-2lh p {
    color: #32302F;
}

.so4-2li {
    --w: 44px;
    width: var(--w);
    height: var(--w);
    background: #EEE;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.5s ease;
}

.so4-2la:hover .so4-2li {
    background: #32312F;
}

.so4-2li i {
    font-size: 16px;
    color: rgba(50, 49, 47, 1);
    transition: all 0.5s ease;
}

.so4-2la:hover .so4-2li i {
    color: #FFF;
}

/* ind-corp so5 */
.ind-corp {
    position: relative;
    overflow: hidden;
    background: #F5F5F5;
    padding: 93px 0;
}

.ind-corp .subbg1,
.ind-corp .subbg2 {
    z-index: 12;
    pointer-events: none;
}

.so5 {
    max-width: 1650px;
    position: relative;
    z-index: 14;
}

.so5-h {
    margin-bottom: 20px;
}

.so5-h p {
    color: #32312F;
    font-family: 'Barlow';
    font-size: var(--zj-ft1h);
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    text-transform: uppercase;
}

.so5-p {
    margin-bottom: 80px;
}

.so5-p p {
    color: #999;
    font-size: var(--zj-ven2-la);
    font-style: normal;
    font-weight: 500;
    line-height: calc(var(--zj-ven2-la) * 1.66);
    max-width: 810px;
}

/*  */
.so5-u {
    margin-right: calc(-.5 * 1.88rem);
    margin-left: calc(-.5 * 1.88rem);
}

.so5-l {
    padding-right: calc(1.88rem * .5);
    padding-left: calc(1.88rem * .5);
}

.so5-lbox {
    position: relative;
}

.so5-limg {
    position: relative;
    border-radius: 6px;
    overflow: hidden;
}

.so5-limg::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.10) 0%, rgba(0, 0, 0, 0.10) 100%), linear-gradient(180deg, rgba(0, 0, 0, 0.00) 0%, rgba(0, 0, 0, 0.80) 100%);
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 12;
}

.so5-limg .img-box {
    border-radius: 6px;
    padding-bottom: 108%;
}

.so5-limg .img-box img {
    transition: all 0.5s ease;
}

.so5-lbox:hover .so5-limg .img-box img {
    transform: scale(1.08);
}

.so5-lte {
    position: absolute;
    width: 100%;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    z-index: 14;
    padding: 0 56px 50px;
}

.so5-lh {
    margin-bottom: 22px;
}

.so5-lh p {
    color: #FFF;
    font-family: 'Barlow';
    font-size: calc(var(--zj-ser-fth) + 2px);
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

.so5-lp p {
    color: #FFF;
    font-size: var(--zj-ven2-la);
    font-style: normal;
    font-weight: 500;
    line-height: calc(var(--zj-ven2-la) * 1.55);
}

/* ind-they so6 */
.ind-they {
    position: relative;
    padding: 120px 0;
}

.so6 {
    max-width: 1650px;
}

.so6-top {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 80px;
}

.so6-1h {
    margin-bottom: 20px;
}

.so6-1h p {
    color: #32312F;
    font-family: 'Barlow';
    font-size: var(--zj-ft1h);
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    text-transform: uppercase;
}

.so6-1p p {
    color: #999;
    font-size: var(--zj-ven2-la);
    font-style: normal;
    font-weight: 500;
    line-height: calc(var(--zj-ven2-la) * 1.66);
    max-width: 929px;
}

.so6-u {
    margin: 0;
}

.so6-l {
    padding: 0;
}

.so6-lbox {
    border: 0.5px solid #F5F5F5;
    background: #FFF;
    transition: all 0.5s ease;
}

.so6-lbox:hover {
    border: 0.5px solid rgba(50, 49, 47, 0.20);
    box-shadow: 6px 6px 20px 0 rgba(50, 49, 47, 0.08);
}

.so6-lbox .img-box {
    padding-bottom: 36%;
}

.so6-lbox .img-box img {
    transition: all 0.5s ease;
}

.so6-lbox:hover .img-box img {
    transform: scale(1.08);
}

/*  */
.index {
    overflow: hidden;
}

@media (max-width: 1536px) {
    .ind-ban {
        margin-top: 70px;
    }

    .so1 {
        padding: 70px 0 70px;
    }

    .so1-end {
        margin-top: 33px;
        padding-top: 53px;
    }

    .so2 {
        padding: 40px 0;
    }

    .ind-pro {
        padding: 70px 0;
    }

    .so4-p {
        margin-bottom: 40px;
    }

    .so4-1 {
        width: 52%;
    }

    .so4-2la {
        padding: 12px 0;
    }

    .ind-corp {
        padding: 73px 0;
    }

    .so5-lte {
        padding: 0 26px 20px;
    }

    .ind-they {
        padding: 70px 0;
    }

    .so6-top {
        margin-bottom: 40px;
    }
}

@media (max-width: 992px) {
    .so1-end {
        flex-direction: column;
    }

    .so1-1 {
        margin-bottom: 20px;
    }

    .so1-2 {
        width: 100%;
    }

    .so4-end {
        flex-direction: column-reverse;
    }

    .so4-1 {
        width: 100%;
    }

    .so4-2 {
        width: 100%;
        margin-bottom: 20px;
    }

    .so5-l {
        width: 100%;
        margin-bottom: 20px;
    }

    .so6-l {
        width: 50%;
    }

    .so4-p.so4-p {
        width: 100%;
    }

    .so6-1 {
        margin-bottom: 20px;
    }

    .so6-top {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 499px) {
    .ind-ban {
        margin-top: 54px;
    }

    .so1 {
        padding: 40px 0;
    }

    .so1-end {
        margin-top: 13px;
        padding-top: 33px;
    }

    .so1-2 p {
        margin-bottom: 20px;
    }

    .so2 {
        padding: 20px 0 40px;
    }

    .ind-te {
        padding: 18px 0;
    }

    .ind-pro {
        padding: 40px 0;
    }

    .so4-p {
        margin-bottom: 20px;
    }

    .so4-2li {
        --w: 36px;
    }

    .ind-corp {
        padding: 43px 0 33px;
    }

    .so5-h {
        margin-bottom: 14px;
    }

    .so5-p {
        margin-bottom: 40px;
    }

    .ind-they {
        padding: 40px 0;
    }

    .so6-1h {
        margin-bottom: 10px;
    }
}

/* liebiao */
.ven2-lsa .ven2-ler {
    position: fixed;
    top: 108px;
    width: 100vw;
    height: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.20);
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);

}

.ven2-ler.hidden {
    max-height: 0 !important;
    opacity: 0 !important;
    overflow: hidden !important;
}

.ven2-lsa:hover .ven2-ler {


    max-height: 100%;
    opacity: 1;
    overflow: visible;
}

.ve-box {
    border: 1px solid #EEE;
    background: #FFF;
    max-width: 1084px;
    margin: auto;
}

.ve-close {
    background: #F5F5F5;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 18px 26px;
}

.ve-close i {
    font-size: 24px;
    color: rgba(50, 49, 47, 1);
    line-height: normal;
    transform: rotate(45deg);
    display: block;
    cursor: pointer;
}

.ve1-row {
    margin: 0;
}

.ve1 {
    padding: 22px 26px;
    border-right: 1px solid #EEE;
}

.ve2 {
    border-right: 1px solid #EEE;
}

/*  */
.ve-ap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 22px;
}

.ve-ap:last-child {
    margin-bottom: 0;
}

.ve2 {
    position: relative;
}

.ve2-abox .ve-ap {
    margin-bottom: 22px;
    padding: 0 26px;
}

.ve2-abox:last-child .ve-ap {
    margin-bottom: 0;
}

.ve-ap span {
    color: #32312F;
    font-size: calc(var(--zj-subnav) - 1px);
    font-style: normal;
    font-weight: normal;
    line-height: calc(var(--zj-subnav) - 1px);
    /* transition: all 0.5s ease; */
}

.ve-ap.on span {
    color: #000;
    font-weight: 700;
}

.ve-ap:hover span {
    color: #000;
}

.ve-ap i {
    font-size: 12px;
    color: rgba(134, 134, 134, 1);
    line-height: normal;
    /* transition: all 0.5s ease; */
}

.ve-ap.on i {
    color: #000;
}

.ve-ap:hover i {
    color: #000;
}

/*  */
.ve2-box {
    display: none;
    opacity: 0;
    transition: all 0.5s ease;
}

.ve2-box.on {
    display: block;
    opacity: 1;
}

.ve2 {
    padding: 22px 0;
}

.ve2-h {
    margin-bottom: 20px;
}

.ve2-h p {
    padding: 0 26px;
    color: #000;
    font-size: var(--zj-ven2-la);
    font-style: normal;
    font-weight: 700;
    line-height: var(--zj-ven2-la);
}

/*  */
.ve3 {
    position: absolute;
    left: 100%;
    top: 0;
    padding: 22px 0;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: all 0.5s ease;
}

.ve2-abox:hover .ve3 {
    max-height: 100%;
    opacity: 1;
    overflow: visible;
}

.ve3-h {
    margin-bottom: 20px;
}

.ve3-h p {
    padding: 0 26px;
    color: #000;
    font-size: var(--zj-ven2-la);
    font-style: normal;
    font-weight: 700;
    line-height: var(--zj-ven2-la);
    text-transform: capitalize;
}