#ven {
    transition: all 0.5s ease;
    background: rgba(255, 255, 255, 0.8);
}

#ven:hover {
    background: rgba(255, 255, 255, 1);
}

.ventricle {
    box-shadow: 0 4px 10px 0 rgb(0 0 0 / 36%);
}

#navsp38,
#navsp39 {
    position: relative;
    top: -140px;
}

/*  */
.hea-box {
    position: relative;
    transition: all 0.5s ease;
    display: flex;
    justify-content: space-between;
    align-items: stretch;
}

/* .ventricle .hea-box {
    box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.05);
} */
.ven1-lo {
    display: flex;
    align-items: flex-end;
    padding: 21px 0 27px;
}

.ven1-lo>div {
    margin-left: 15px;
}

.ven1-loim {
    position: relative;
}

.ven1-a {
    padding-bottom: 3px;
}

.ven1-loim img {
    width: 126px;
    height: auto;
    transition: all 0.5s ease;
}

.ven1-ate {
    display: block;
}

.ven1-ate p {
    color: #222;
    font-family: 'FZDaHei-B02S';
    font-size: var(--zj-con2la);
    font-style: normal;
    font-weight: normal;
    line-height: var(--zj-con2la);
    letter-spacing: -1px;
    opacity: 0.9;
}

/* .ven1-ate p:nth-child(1) {
    margin-bottom: 2px;
} */

#footer .ven1-ate p {
    color: #FFF;
}

/*  */
.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 25px;
}

.ven2-l:last-child:after {
    margin: 0 47px;
}

.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: #C1DA68;
    transition: all 0.5s ease;
}

.ven2-lsa:hover .ven2-la::after {
    width: 100%;
}

/* .ven2-l.on .ven2-la::after {
    width: 100%;
} */

.ven2-la span {
    color: #222;
    font-size: var(--zj-ven2-la);
    font-style: normal;
    font-weight: 700;
    line-height: calc(var(--zj-ven2-la) * 1.11);
    transform: translateY(3px);
    opacity: 0.9;

    --size: 0px;
    --color: #C1DA68;
    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: #C1DA68;
    background-size: 100% var(--size);
    background-position-x: 0%;
    opacity: 1;
}

.ven2-l.on .ven2-la span {
    /* color: #C1DA68; */
    /* background-size: 100% var(--size);
    background-position-x: 0%;
    opacity: 1; */
}

.ven2-la i {
    font-size: 14px;
    line-height: normal;
    color: rgba(255, 255, 255, 1);
    margin-left: 6px;
    transition: all 0.5s ease;
}

.ven2-la:hover i {
    color: #F96F13;
}

.ven2-l.on .ven2-la i {
    color: #F96F13;
}

/*  */

.ven-seh {
    position: relative;
}

.vensesv {
    cursor: pointer;
    transition: all 0.5s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.5s ease;
    padding-left: 30px;
}

.vensesv i {
    font-size: 20px;
    color: rgb(255, 255, 255);
    color: #222;
    transition: all 0.5s ease;
    margin-left: 6px;
    opacity: 0.9;   
}

.vensesv:hover i {
    color: #C1DA68;
    animation: vensesv 1s ease-in-out;
    animation-iteration-count: 1;
}

.vensesv span {
    color: #FFF;
    font-size: var(--zj-ven2-la);
    font-style: normal;
    font-weight: normal;
    line-height: calc(var(--zj-ven2-la) * 1.25);
    text-transform: capitalize;
}

/*  */
.ven-inqury {
    display: flex;
    align-items: center;
}

.ven-inqury .ven-inqurya {
    display: flex;
    display: none;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all 0.5s ease;
}

.ven-inqury .ven-inqurya i {
    font-size: 25px;
    line-height: normal;
    color: rgba(255, 255, 255, 1);
    display: block;
    transition: all 0.5s ease;
}

.ven-inqury:hover .ven-inqurya i {
    color: #2FA19B;
    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 {
    color: #FFF;
    font-size: var(--zj-ven2-la);
    font-style: normal;
    font-weight: normal;
    line-height: calc(var(--zj-ven2-la) * 1.25);
    text-transform: capitalize;
    transition: all 0.5s ease;
}

.ven-inqury .ven-inqurya span {
    color: #FFF;
    font-size: 12px;
    font-style: normal;
    font-weight: normal;
    line-height: 100%;
    text-transform: capitalize;
    position: absolute;
    right: -22%;
    top: -9%;
    --w: 14px;
    width: var(--w);
    height: var(--w);
    border-radius: 50%;
    background: #2FA19B;
    display: flex;
    align-items: center;
    justify-content: center;
}

/*  */
.ven-line {
    width: 1px;
    height: 15px;
    margin: 0 35px 0 30px;
    background: #222;
}

/*  */
.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;
    height: 100%;
}

.ven2-langbt {
    display: flex;
    align-items: center;
    transition: all 0.5s ease;
    position: relative;
    overflow: hidden;
    border-radius: 50px;
    background: #1A1A1A;
    padding: 6px 18px 6px 7px;
    transition: all 0.5s ease;
}

.ven2-langbt:hover {
    background: #EA580C;
}

.ven2-langi1 {
    border-radius: 50px;
    background: #FFF;
    padding: 2px;
    margin-right: 12px;
}

.ven2-langi1 img {
    width: 40px;
    height: auto;
    object-fit: cover;
    object-position: center;
}

.ven2-langbt i {
    font-size: 10px;
    color: #FFF;
    display: block;
    margin-left: 12px;
}

.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 {
    position: relative;
    display: flex;
    align-items: center;
    transition: all 0.5s ease;
    color: #222;
    font-size: var(--zj-subnav);
    font-style: normal;
    font-weight: 700;
    line-height: calc(var(--zj-subnav) * 0.93);
    letter-spacing: -0.48px;
    opacity: 0.9;
    text-transform: capitalize;
}

@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 {
    /* border: 1px solid rgba(255, 255, 255, 0.25);
    background: #F96F13; */
    color: #C1DA68;
}

.menu-language .select-name::before {
    font-size: 20px;
    content: '\e66b';
    color: rgba(255, 255, 255, 1);
    font-family: 'iconfont' !important;
    margin-right: 15px;
    transition: all 0.5s ease;
    display: none;
}

.menu-language .select-name:hover:before {
    color: #2FA19B;
}

@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: 18px;
        margin-right: 8px;
    }
}

.menu-language .select-name::after {
    font-size: 10px;
    color: rgba(255, 255, 255, 1);
    content: '\e650';
    font-family: 'iconfont' !important;
    display: inline-block;
    margin-left: 10px;
    transition: all 0.5s ease;
    display: none;
}

.menu-language .select-name:hover::after {
    color: #2FA19B;
}

@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: 1800px) {
    .ven2-l::after {
        margin: 0 12px;
    }

    .ven2-l:last-child:after {
        margin: 0 22px;
    }
}

@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;
    }

    /* .ven2-l {
        margin-right: 2.14vw;
    } */

    /* .ven2-l:last-child {
        margin-right: 11.2vw;
    } */
    .ven2-l::after {
        margin: 0 12px;
    }

    .ven2-l:last-child:after {
        margin: 0 12px;
    }

    .ven2-langi1 img {
        width: 30px;
    }

    .ven2-con {
        margin: 0 20px 0 30px;
    }

    .ven2-line {
        margin: 0 10px;
    }

    .ven2-3a span {
        margin: 0 6px;
    }

    .ven-inqury a i {
        font-size: 20px;
    }

    .vensesv span {
        display: none;
    }

    .vensesv i {
        margin-left: 0;
    }

    .ven-line {
        margin: 0 20px 0 15px;
    }

    .vensesv {
        padding-left: 15px;
    }

    .ven1-lo {
        padding: 15px 0 21px;
    }
}

@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;
    }

    .ven-inqury .ven-inqurya p {
        display: none;
    }

    .ven-inqury .ven-inqurya i {
        margin-left: 0;
    }
}

@media (max-width: 499px) {
    .ven1-loim img {
        width: 90px;
    }

    .ven-line {
        margin: 0 10px;
    }

    .vensesv {
        border: none;
    }

    .vensesv i {
        margin-right: 0;
    }

    .vensesv span {
        display: none;
    }

    .ven-inqury .ven-inqurya {
        --w: 32px;
    }

    .menu-language .select-name::before {
        font-size: 18px;
    }
}

/* --- */
/* phone three line */
/* phone */
/*  */


/* houmjiade erji */
.ven2-ler {
    position: absolute;
    width: 168px;
    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-l:nth-child(2) .ven2-ler,
.ven2-l:nth-child(4) .ven2-ler {
    width: 140%;
} */

.ven2-lsa:hover .ven2-ler {
    max-height: 600px;
    opacity: 1;
    overflow: visible;
}

.ven2-lerbo {
    background: rgba(255, 255, 255, 1);
    background: #C1DA68;
    /* 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: #453737;
    font-size: var(--zj-subnav);
    font-style: normal;
    font-weight: normal;
    line-height: 140%;
    text-align: center;
    --size: 1px;
    --color: #2FA19B;
    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: #2FA19B;
    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: #2FA19B;
    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: #2FA19B;
    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: 168px;
    left: 100%;
    background: rgba(255, 255, 255, 0.90);
    background: #C1DA68;
    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: 140%;
    text-align: center;
    --size: 1px;
    --color: #2FA19B;
    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: #2FA19B;
    background-size: 100% var(--size);
    background-position-x: 0%;
    opacity: 1;
}

/*  */
.ven-sehinp {
    position: absolute;
    right: 0;
    top: 328%;
    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: #004844;
    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: 273%;
    }

    .ven-sehfo {
        width: 208px;
        padding: 4px 12px;
    }
}

@media (max-width: 1199.9px) {
    .ven-sehinp {
        top: 282%;
    }
}

@media (max-width: 992px) {
    .ven2-con {
        display: none;
    }
}

@media (max-width: 499px) {
    .ven-sehinp {
        top: 234%;
        right: -134px;
    }

    .ven-sehfo {
        width: 308px;
        padding: 7px 12px;
    }

    .ven2-langi1 img {
        width: 24px;
    }

    .ven2-langbt {
        padding: 4px 10px 4px 4px;
    }

    .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: #222;
    transition: all .5s;
}

.headersp #venPho .venPhoSack::before,
.headersp #venPho .venPhoSack::after {
    background: #222;
}

.ventricle #venPho .venPhoSack::before,
.ventricle #venPho .venPhoSack::after {
    background: #222;
}

#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: #222;
}

.headersp #venPho .venPhoSack.on::before {
    background: #222;
}

.ventricle .venPhoSack::before {
    background: #222 !important;
}

#venPho .venPhoSack.on::after {
    margin-top: -2px;
    transform: translateY(0%) rotate(-46deg);
    background: #222;
}

.headersp #venPho .venPhoSack.on::after {
    background: #222;
}

.ventricle .venPhoSack::after {
    background: #222 !important;
}

#venPho .venPhoSack span {
    height: 2px;
    display: block;
    position: absolute;
    left: 0;
    top: 50%;
    width: 100%;
    transform: translateY(-50%);
    background: #222;
    transition: all .5s;
}

.headersp #venPho .venPhoSack span {
    background: #222;
}

.ventricle .venPhoSack span {
    background: #222 !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: 88px;
    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: #453737;
    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: #2FA19B;
}

.xiantiao>a {
    color: #2FA19B;
}

.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: #453737;
    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: #2FA19B;
}

@media (max-width: 992px) {}

@media (max-width: 499px) {
    #venPhoSec {
        top: 53px;
    }

    #venPhoSec ul li i {
        font-size: 14px;
    }

    #venPhoSec ul li .xiaopingsanji {
        height: 42px;
    }

    #venPho {
        margin-bottom: 5px;
    }
}

/* gg */
.sub {
    position: relative;
    z-index: 14;
}

.sub-show {
    padding-top: 90px;
}

.sub-im {
    position: relative;
    overflow: hidden;
}

.sub-im::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.20);
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    display: none;
}

.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: 768px) {}

@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;
    }
}

@media (max-width: 768px) {
    .sub-im img {
        min-height: 300px;
    }
}

@media (max-width: 499px) {
    .sub-im img {
        min-height: 224px;
    }
}

/*  */
.sub-te {
    position: absolute;
    left: 50%;
    bottom: 17%;
    transform: translateX(-50%);
    z-index: 12;
}

.sub-h h2 {
    color: #FFF;
    font-family: 'Sora';
    font-size: var(--zj-news-h);
    font-style: normal;
    font-weight: 600;
    line-height: calc(var(--zj-news-h) * 1.25);
    text-transform: uppercase;
}

/*  */
.subnav-box {
    position: relative;
    z-index: 12;
}

.subnav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 40px;
}

.subnav i {
    font-size: 22px;
    line-height: normal;
    color: rgba(102, 102, 102, 1);
    margin-right: 15px;
    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: #004844;
    font-size: calc(var(--zj-subnav) - 1px);
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    --size: 1px;
    --color: #C1DA68;
    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: #004844;
    --size: 1px;
    --color: #C1DA68;
    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: #C1DA68;
    background-size: 100% var(--size);
    background-position-x: 0%;
    opacity: 1;
}

.breadcrumb-item:last-child a span {
    color: #C1DA68;
    background-size: 100% var(--size);
    background-position-x: 0%;
    opacity: 1;
}

.breadcrumb-item+.breadcrumb-item::before {
    color: #004844;
    font-size: var(--zj-subnav);
    font-style: normal;
    font-weight: normal;
    line-height: 100%;
    text-transform: capitalize;
    padding-bottom: 3px;
}

/*  */
.nav-abox {
    display: flex;
    align-items: center;
    flex: 0 0 auto;
}

.nav-a {
    display: block;
    margin-left: 75px;
    position: relative;
}

.nav-a::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 2px;
    background: #006FC1;
    left: 50%;
    bottom: -15px;
    transform: translateX(-50%);
    transition: all 0.5s ease;
    opacity: 0;
}

.nav-a:hover::after {
    opacity: 1;
}

.nav-a.on::after {
    opacity: 1;
}

.nav-a:first-child {
    margin-left: 0;
}

.nav-a p {
    color: #666;
    font-size: var(--zj-ven2-la);
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    text-transform: capitalize;
    transition: all 0.5s ease;
}

.nav-a:hover p {
    color: #006FC1;
}

.nav-a.on p {
    color: #006FC1;
}

/*  */
.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: #006FC1;
}

@media (max-width: 1536px) {
    .subnav-l::after {
        margin: 0 20px;
    }

    .sub-te {
        bottom: 12%;
    }

    .nav-a {
        margin-left: 35px;
    }

    .nav-a::after {
        bottom: -10px;
    }

    .subnav {
        padding-top: 20px;
    }
}

@media (max-width: 992px) {
    .subnav-u {
        display: none;
    }

    .nav-abox {
        overflow: scroll;
        width: 30%;
    }

    .nav-a {
        margin-left: 12px;
    }

    .pro-11a {
        width: max-content;
    }
}

@media (max-width: 499px) {


    .breadcrumb-item::before,
    .breadcrumb-item a span {
        font-size: 14px;
    }

    .breadcrumb-item+.breadcrumb-item::before {
        font-size: 14px;
    }

    .ven1-lo {
        padding: 6px 0 11px;
    }
}

/*  */
/* 分页按钮 */
.sub-page {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.sub-pageu {
    display: flex;
    align-items: center;
    justify-content: center;
}

.sub-pagel a {
    --w: 45px;
    width: var(--w);
    height: var(--w);
    border-radius: 50%;
    border: 1px dashed #CCC;
    color: #000;
    font-size: var(--zj-ven2cona);
    font-style: normal;
    font-weight: normal;
    line-height: normal;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 0 0 10px;
    transition: all 0.5s ease;
}

.sub-pagel:last-child a,
.sub-pagel:first-child a {
    border: 1px dashed #C1DA68;
    background: #C1DA68;
}

.sub-pagel:last-child a {
    margin-left: 30px;
}

.sub-pagel:first-child a {
    margin-right: 25px;
}

.sub-pagel a:hover {
    color: #FFF;
    background: #004844;
    border: 1px dashed #004844;
}

.sub-pagel.on a {
    color: #FFF;
    background: #004844;
    border: 1px dashed #004844;
}

.sub-pagel i {
    color: #FFF;
    font-size: var(--zj-subnav);
    font-style: normal;
    font-weight: normal;
    line-height: calc(var(--zj-subnav) * 1.25);
}

@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"] {
    margin-top: 100px;
    margin-top: 0;
}

[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"] {
        margin-top: 74px;
        margin-top: 0;
    }

    [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"] {
        margin-top: 64px;
        margin-top: 0;
    }

    [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: 18px;
        margin-right: 6px;
    }
}

/* contact */
.con1 {
    position: relative;
}

.con1::after {
    position: absolute;
    content: "";
    width: 50%;
    height: calc(100% + 100px);
    left: 0;
    bottom: 0;
    background: #FFFDED;
}

.con1::before {
    position: absolute;
    content: "";
    width: 50%;
    height: calc(100% + 100px);
    right: 0;
    bottom: 0;
    background: #E6EEE6;
    background: #FFFDED;
}

.con1-box {
    position: relative;
    z-index: 12;
}

.con1-u {
    margin-right: calc(-.5 * 6rem);
    margin-left: calc(-.5 * 6rem);
}

.con1-l {
    padding-right: calc(6rem * .5);
    padding-left: calc(6rem * .5);
    position: relative;
}

.con1-l:last-child {
    display: none;
}

.con1-l:nth-child(2)::after {
    position: absolute;
    content: "";
    width: 100%;
    height: calc(100% + 100px);
    left: 0;
    bottom: 0;
    background: #E6EEE6;
}

.con1-l:nth-child(3)::after {
    position: absolute;
    content: "";
    width: 100%;
    height: calc(100% + 100px);
    left: 0;
    bottom: 0;
    background: #FFFDED;
}

.con1-lbox {
    padding: 80px 0 62px 0;
    position: relative;
    z-index: 12;
}

.con1-li {
    display: flex;
    align-items: center;
    justify-content: center;
    --w: 50px;
    width: var(--w);
    height: var(--w);
    border-radius: 10px;
    background: #00958D;
    margin-bottom: 30px;
}

.con1-l:nth-child(2n) .con1-li {
    background: #004844;
}

.con1-li i {
    font-size: 20px;
    color: #FFF;
    line-height: normal;
}

.con1-lh {
    margin-bottom: 15px;
}

.con1-lh p {
    color: #004844;
    font-size: var(--zj-con2la);
    font-style: normal;
    font-weight: 700;
    line-height: calc(var(--zj-con2la) * 0.9);
}

.con1-lp {
    margin-bottom: 25px;
}

.con1-lp:last-child {
    margin-bottom: 0;
}

.con1-lp p {
    color: #222;
    font-size: var(--zj-ven2-la);
    font-style: normal;
    font-weight: normal;
    line-height: calc(var(--zj-ven2-la) * 1.44);
}

/*  */
.con1-la {
    display: block;
}

.con1-la p span {
    color: #222;
    font-size: var(--zj-ven2-la);
    font-style: normal;
    font-weight: normal;
    line-height: calc(var(--zj-ven2-la) * 1.44);
    --size: 1px;
    --color: #C1DA68;
    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-la:hover p span {
    color: #C1DA68;
    background-size: 100% var(--size);
    background-position-x: 0%;
    opacity: 1;
}

.con1-labox {
    display: flex;
}

/*  */
.con2-box {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding: 100px 0 90px;
}

.con2-h {
    flex: 0 0 auto;
}

.con2-h p {
    color: #004844;
    font-size: var(--zj-prode1-2h);
    font-style: normal;
    font-weight: 700;
    line-height: calc(var(--zj-prode1-2h) * 1.625);
    max-width: 280px;
}

/*  */
.con2-form {
    width: 60%;
    flex: 0 0 auto;
}

.con2-fou {
    margin-right: calc(-.5 * 1rem);
    margin-left: calc(-.5 * 1rem);
}

.con2-fol {
    margin-bottom: 15px;
    padding-right: calc(1rem * .5);
    padding-left: calc(1rem * .5);
}

.con2-fol:last-child {
    margin-bottom: 0;
}

.con2-fol input,
.con2-fol textarea {
    color: #444;
    font-size: var(--zj-subnav);
    font-style: normal;
    font-weight: normal;
    line-height: calc(var(--zj-subnav) * 1.25);

    width: 100%;
    border: 1px solid #FFFDED;
    border-radius: 5px;
    background: #FFFDED;

    transition: all 0.5s ease;
    padding: 12px 16px;
}

.con2-fol input:focus,
.con2-fol textarea:focus {
    border: 1px solid #C1DA68;
}

.con2-fol input::-webkit-input-placeholder {
    color: #444;
}

.con2-fol input::-moz-placeholder {
    color: #444;
}

.con2-fol input::-ms-input-placeholder {
    color: #444;
}

.con2-fol textarea::-webkit-input-placeholder {
    color: #444;
}

.con2-fol textarea::-moz-placeholder {
    color: #444;
}

.con2-fol textarea::-ms-input-placeholder {
    color: #444;
}

/*  */
.con2-fobt {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-top: 30px;
}

.con2-fobt button {
    padding: 15px 53px;
    position: relative;
    overflow: hidden;
    border-radius: 5px;
    background: #C1DA68;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.5s ease;
}

.con2-fobt button span {
    color: #004844;
    font-size: var(--zj-ven2cona);
    font-style: normal;
    font-weight: normal;
    line-height: normal;
}

.con2-fobti {
    --w: 20px;
    width: var(--w);
    height: var(--w);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-left: 8px;
    position: relative;
}

.con2-fobti i {
    line-height: normal;
    transition: all 0.5s ease;
    font-size: 16px;
    line-height: 1;
    color: #004844;
}

.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);
    }
}

@media (max-width: 1536px) {
    .con1-u {
        margin-right: calc(-.5 * 2rem);
        margin-left: calc(-.5 * 2rem);
    }

    .con1-l {
        padding-right: calc(2rem * .5);
        padding-left: calc(2rem * .5);
        position: relative;
    }

    .con1-lbox {
        padding: 40px 0 42px 0;
    }

    .con1-li {
        --w: 42px;
        margin-bottom: 20px;
    }

    .con2-box {
        padding: 70px 0 60px;
    }

    .con2-h p {
        max-width: 235px;
    }
}

@media (max-width: 992px) {
    .con1-l {
        width: 50%;
    }

    .con2-box {
        flex-direction: column;
    }

    .con2-h {
        margin-bottom: 20px;
    }

    .con2-form {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .con1-l {
        width: 100%;
    }

    .con1-l:nth-child(2)::after,
    .con1-l:nth-child(3)::after {
        display: none;
    }

    .con1-l:nth-child(2n) .con1-lbox {
        position: relative;
    }

    .con1-l:nth-child(2n) .con1-lbox::after {
        position: absolute;
        content: "";
        width: 100vw;
        height: 100%;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        background: #E6EEE6;
    }

    .con1-lbox>div {
        position: relative;
        z-index: 12;
    }

    .con1::before {
        display: none;
    }

    .con1::after {
        width: 100%;
    }

    .con2-fol {
        width: 100%;
    }

    .ven1-lo>div {
        display: none;
    }
}

@media (max-width: 499px) {
    .con1-lbox {
        padding: 30px 0 32px 0;
    }

    .con1-li {
        --w: 36px;
        margin-bottom: 18px;
    }

    .con2-box {
        padding: 30px 0 40px;
    }
}

/* 表单验证吗 ------------------------- */
.con2-fol {
    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;
}

.ft1 {
    display: flex;
    align-items: flex-end;
    padding: 80px 0 50px;
}

.ft1>div {
    margin-left: 15px;
}

.ft2 {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 45px;
}

.ft2-1l {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.ft2-1l:last-child {
    margin-bottom: 0;
}

.ft2-1i i {
    font-size: 25px;
    color: rgba(255, 255, 255, 1);
    line-height: normal;
}

.ft2-1line {
    width: 1px;
    height: 15px;
    opacity: 0.2;
    background: #DDD;
    margin: 0 26px;
}

.ft2-1h p {
    color: #FFF;
    font-size: var(--zj-ven2cona);
    font-style: normal;
    font-weight: normal;
    line-height: calc(var(--zj-ven2cona) * 1.85);
}

.ft2-1abox {
    display: flex;
}

.ft2-1a {
    display: block;
}

.ft2-1a p span {
    color: #FFF;
    font-size: var(--zj-ven2cona);
    font-style: normal;
    font-weight: normal;
    line-height: calc(var(--zj-ven2cona) * 1.85);
    --size: 1px;
    --color: #C1DA68;
    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-1a:hover p span {
    color: #C1DA68;
    background-size: 100% var(--size);
    background-position-x: 0%;
    opacity: 1;
}

.ft2-2 {
    width: 67%;
    flex: 0 0 auto;
}

.ft2-2u {
    display: flex;
    justify-content: space-between;
}

.ft2-2lh {
    margin-bottom: 32px;
}

.ft2-2lh p {
    color: #FFF;
    font-size: var(--zj-oem3-1l1p);
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

.ft2-2la {
    display: flex;
    align-items: center;
}

.ft2-2la p span {
    color: #FFF;
    font-size: var(--zj-ven2-la);
    font-style: normal;
    font-weight: normal;
    line-height: calc(var(--zj-ven2-la) * 1.88);
    --size: 1px;
    --color: #C1DA68;
    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 p span {
    color: #C1DA68;
    background-size: 100% var(--size);
    background-position-x: 0%;
    opacity: 1;
}

.ft2-2la i {
    --w: 40px;
    width: var(--w);
    height: var(--w);
    border-radius: 5px;
    background: #00605B;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    line-height: normal;
    margin-right: 25px;
    transition: all 0.5s ease;
    color: #FFF;
}

.ft2-2la:hover i {
    color: #C1DA68;
}

.ft2-2lsp .ft2-2la {
    margin-bottom: 15px;
}

.ft2-2lsp .ft2-2la:last-child {
    margin-bottom: 0;
}

.ft3 {
    display: flex;
    justify-content: space-between;
    padding: 30px 0 36px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    align-items: center;
}

.ft3-1,
.ft3-3 {
    width: 36%;
    flex: 0 0 auto;
}

.ft3-1 {
    display: flex;
    align-items: center;
}

.ft3-1copy span {
    color: #FFF;
    font-size: var(--zj-ven2cona);
    font-style: normal;
    font-weight: normal;
    line-height: normal;
}

.ft2-1cnzz {
    margin-left: 20px;
    padding-bottom: 2px;
}

.ft3-2a {
    display: block;
}

.ft3-2a p span {
    color: #C1DA68;
    font-size: var(--zj-ven2cona);
    font-style: normal;
    font-weight: normal;
    line-height: normal;
    --size: 1px;
    --color: #C1DA68;
    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.ft3-2a:hover p span {
    color: #C1DA68;
    background-size: 100% var(--size);
    background-position-x: 0%;
    opacity: 1;
}

.ft3-3 {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.ft3-3a {
    display: block;
}

.ft3-3a span {
    color: #FFF;
    font-size: var(--zj-ven2cona);
    font-style: normal;
    font-weight: normal;
    line-height: normal;
    --size: 1px;
    --color: #C1DA68;
    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.ft3-3a:hover span {
    color: #C1DA68;
    background-size: 100% var(--size);
    background-position-x: 0%;
    opacity: 1;
}

.ft3-3>span {
    width: 1px;
    height: 15px;
    opacity: 0.2;
    background: #FFF;
    margin: 0 30px;
}

@media (max-width: 1536px) {
    .ft1 {
        padding: 40px 0 50px;
    }

    .ft2 {
        margin-bottom: 35px;
    }

    .ft3 {
        padding: 15px 0 18px;
    }

    .ft3-3>span {
        margin: 0 15px;
    }

    .ft2-2la i {
        --w: 36px;
        margin-right: 8px;
    }

    .ft2-2 {
        width: 62%;
    }
}

@media (max-width: 1199.9px) {

    .ft3-1,
    .ft3-3 {
        width: auto;
    }
}

@media (max-width: 992px) {
    .ft2 {
        flex-direction: column;
    }

    .ft2-2 {
        margin-top: 30px;
        width: 100%;
    }

    .ft2-2lh {
        margin-bottom: 16px;
    }

    .ft3 {
        justify-content: space-between;
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 768px) {
    .ft2-2 {
        display: none;
    }

    .ft1>div {
        display: none;
    }

    .ft3-1 {
        align-items: flex-start;
        flex-direction: column;
    }

    .ft2-1cnzz {
        margin-left: 0;
    }
}

@media (max-width: 499px) {
    .ft1 {
        padding: 30px 0 20px;
    }

    .ft2-1line {
        margin: 0 12px;
    }

    .ft2 {
        margin-bottom: 25px;
    }

    .ft3-3>span {
        margin: 0 12px;
    }

    .ft1 .ven1-loim img {
        width: 130px;
    }
}

/* 青岛红星化工集团天然色素有限公司（生产基地） */
.base-box {
    padding: 40px 0 130px;
}

.base-l {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
}

.base-l:last-child {
    margin-bottom: 0;
}

.base-l1 {
    width: 49.8%;
    flex: 0 0 auto;
    border-radius: 5px;
    position: relative;
    overflow: hidden;
}

.base-l1img {
    height: 100%;
}

.base-l1img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: all 0.5s ease;
}

.base-l:hover .base-l1img img {
    transform: scale(1.08);
}

.base-l1te {
    position: absolute;
    width: 100%;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    z-index: 12;
    padding: 40px 45px;
    background: rgba(0, 0, 0, 0.20);
}

.base-l1h {
    margin-bottom: 10px;
}

.base-l1h p {
    color: #FFF;
    font-size: var(--zj-oem3-1l1p);
    font-style: normal;
    font-weight: 700;
    line-height: calc(var(--zj-oem3-1l1p) * 1.25);
}

.base-l1p p {
    color: #FFF;
    font-size: var(--zj-ven2-la);
    font-style: normal;
    font-weight: normal;
    line-height: calc(var(--zj-ven2-la) * 1.44);
}

.base-l2 {
    width: calc(100% - 49.8% - 20px);
    flex: 0 0 auto;
    background: #E8F2EE;
    position: relative;
    border-radius: 5px;
    overflow: hidden;
    padding: 70px 60px;
}

.base-l2::after {
    position: absolute;
    content: "";
    --w: 90px;
    width: var(--w);
    height: var(--w);
    border-radius: 50%;
    background: #C1DA68;
    right: -45px;
    top: -45px;
    z-index: 12;
    pointer-events: none;
}

.base-l2h {
    margin-bottom: 20px;
}

.base-l2h p {
    color: #004844;
    text-align: center;
    font-size: var(--zj-proseh);
    font-style: normal;
    font-weight: 700;
    line-height: calc(var(--zj-proseh) * 0.93);
}

.base-l2p p {
    color: #111;
    font-size: var(--zj-subnav);
    font-style: normal;
    font-weight: normal;
    line-height: calc(var(--zj-subnav) * 2);
    text-align: justify;
}

@media (max-width: 1536px) {
    .base-box {
        padding: 40px 0 70px;
    }
}

@media (max-width: 992px) {
    .base-l {
        flex-direction: column;
    }

    .base-l1 {
        width: 100%;
        margin-bottom: 12px;
    }

    .base-l2 {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .base-l1te {
        padding: 20px 25px;
    }

    .base-l2 {
        padding: 40px 25px;
    }
}

@media (max-width: 499px) {
    .base-box {
        padding: 40px 0 40px;
    }

    .base-l1te {
        padding: 12px 15px;
    }

    .base-l2 {
        padding: 20px 15px;
    }
}

/* 青岛红星化工集团天然色素有限公司（新闻） */
.news-nav {
    background: #FFFDED;
}

.news-navu {
    display: flex;
    align-items: center;
    justify-content: center;
}

.news-navl {
    margin-right: 132px;
}

.news-navl:last-child {
    margin-right: 0 !important;
}

.news-nava {
    display: block;
    padding: 20px 44px;
    transition: all 0.5s ease;
}

.news-navl.on .news-nava {
    background: #C1DA68;
}

.news-nava:hover {
    background: #C1DA68;
}

.news-nava p span {
    color: #222;
    font-size: var(--zj-ven2-la);
    font-style: normal;
    font-weight: normal;
    line-height: calc(var(--zj-ven2-la) * 1.1111);
}

/*  */
.ne-box {
    padding: 50px 0 148px;
}

.ne-u {
    margin-bottom: 70px;
}

.ne-l {
    margin-bottom: 50px;
}

.ne-l:last-child {
    margin-bottom: 0;
}

.ne-la {
    display: flex;
    justify-content: space-between;
}

.ne-l:nth-child(2n) .ne-la {
    flex-direction: row-reverse;
}

.ne-limg {
    width: 48.4%;
    flex: 0 0 auto;
    border-radius: 5px;
    overflow: hidden;
}

.ne-limg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: all 0.5s ease;
}

.ne-la:hover .ne-limg img {
    transform: scale(1.08);
}

.ne-lte {
    width: calc(100% - 48.4% - 60px);
    flex: 0 0 auto;
    padding: 80px 40px 80px 60px;
}

.ne-l:nth-child(2n) .ne-lte {
    padding: 80px 60px 80px 40px;
}

.ne-lnum {
    margin-bottom: 20px;
}

.ne-lnum p {
    color: #666;
    font-size: var(--zj-ven2-la);
    font-style: normal;
    font-weight: 700;
    line-height: calc(var(--zj-ven2-la) * 1.111);
    transition: all 0.5s ease;
}

.ne-la:hover .ne-lnum p {
    color: #C1DA68;
}

.ne-lh {
    margin-bottom: 50px;
}

.ne-lh p {
    color: #333;
    font-size: var(--zj-ft1-2uh);
    font-style: normal;
    font-weight: 700;
    line-height: calc(var(--zj-ft1-2uh) * 1.23);
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: all 0.5s ease;
}

.ne-la:hover .ne-lh p {
    color: #C1DA68;
}

.ne-lbtn {
    display: flex;
}

.ne-lbtnbox {
    border-radius: 5px;
    border: 1px solid #C1DA68;
    background: #FFF;
    padding: 16px 66px;
    transition: all 0.5s ease;
}

.ne-la:hover .ne-lbtnbox {
    background: #C1DA68;
}

.ne-lbtnbox p {
    color: #004844;
    font-size: var(--zj-ven2cona);
    font-style: normal;
    font-weight: normal;
    line-height: normal;
    transition: all 0.5s ease;
}

@media (max-width: 1536px) {
    .ne-box {
        padding: 50px 0 78px;
    }
}

@media (max-width: 992px) {
    .ne-la {
        flex-direction: column;
    }

    .ne-l:nth-child(2n) .ne-la {
        flex-direction: column;
    }

    .ne-limg {
        width: 100%;
    }

    .ne-lte,
    .ne-l:nth-child(2n) .ne-lte {
        width: 100%;
        padding: 20px 20px 20px 20px;
    }

    .ne-u {
        margin-bottom: 0;
    }

    .ne-l {
        margin-bottom: 30px;
    }

    .news-navl {
        margin-right: 32px;
    }
}

@media (max-width: 499px) {
    .news-navl {
        margin-right: 16px;
    }

    .ne-box {
        padding: 40px 0 38px;
    }

    .ne-lte,
    .ne-l:nth-child(2n) .ne-lte {
        padding: 12px;
    }

    .ne-lh {
        margin-bottom: 20px;
    }

    .ne-lbtnbox {
        padding: 8px 34px;
    }

    .ne-u {
        margin-bottom: 30px;
    }

    .sub-pagel:first-child a {
        margin-right: 15px;
    }

    .sub-pagel:last-child a {
        margin-left: 15px;
    }
}

/* 青岛红星化工集团天然色素有限公司（研发中心） */
.rd-nav .news-navl {
    margin-right: 32px;
}

.rdc-box {
    padding: 50px 0 80px;
}

.rdc-h {
    margin-bottom: 20px;
}

.rdc-h p {
    text-align: center;
    color: #004844;
    font-size: calc(var(--zj-prode1-2h) + 2px);
    font-style: normal;
    font-weight: 700;
    line-height: calc((var(--zj-prode1-2h) + 2px) * 1.19);
}

.rdc-p {
    margin-bottom: 50px;
}

.rdc-p p {
    color: #111;
    text-align: center;
    font-size: calc(var(--zj-subnav) - 1px);
    font-style: normal;
    font-weight: normal;
    line-height: calc((var(--zj-subnav) - 1px) * 2.13);
}

.rdc-u {
    margin-right: calc(-.5 * 4rem);
    margin-left: calc(-.5 * 4rem);
}

.rdc-l {
    padding-right: calc(4rem * .5);
    padding-left: calc(4rem * .5);
    margin-bottom: 20px;
}

.rdc-la {
    cursor: pointer;
}

.rdc-limg .img-box {
    padding-bottom: 54%;
    margin-bottom: 20px;
    border-radius: 5px;
}

.rdc-limg .img-box img {
    transition: all 0.5s ease;
}

.rdc-la:hover .rdc-limg .img-box img {
    transform: scale(1.08);
}

.rdc-lh p {
    color: #111;
    text-align: center;
    font-size: var(--zj-ven2-la);
    font-style: normal;
    font-weight: 700;
    line-height: calc(var(--zj-ven2-la) * 1.111);
    transition: all 0.5s ease;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
    text-overflow: ellipsis;
}

.rdc-la:hover .rdc-lh p {
    color: #C1DA68;
}

@media (max-width: 1536px) {
    .rdc-u {
        margin-right: calc(-.5 * 2rem);
        margin-left: calc(-.5 * 2rem);
    }

    .rdc-l {
        padding-right: calc(2rem * .5);
        padding-left: calc(2rem * .5);
    }
}

@media (max-width: 992px) {
    .rdc-l {
        width: 50%;
    }
}

@media (max-width: 768px) {
    .rdc-l {
        width: 100%;
    }
}

@media (max-width: 499px) {
    .rdc-box {
        padding: 30px 0 30px;
    }

    .rdc-p {
        margin-bottom: 30px;
    }
}

/* 青岛红星化工集团天然色素有限公司（荣誉资质） */
.hon1-box {
    padding: 60px 0 70px;
}

.hon1-h {
    margin-bottom: 50px;
}

.hon1-h p {
    text-align: center;
    color: #004844;
    font-size: calc(var(--zj-prode1-2h) + 2px);
    font-style: normal;
    font-weight: 700;
    line-height: calc((var(--zj-prode1-2h) + 2px) * 1.19);
}

/*  */
.hon1-sw {
    position: relative;
}

#hon1-sw {
    overflow: hidden;
}

.hon1-swbox {
    cursor: pointer;
}

.hon1-swimg {
    padding: 35px;
    border: 1px solid #EEE;
    border-bottom: 4px solid #C1DA68;
    margin-bottom: 10px;
}

.hon1-swimg .img-box {
    padding-bottom: 66%;
}

.hon1-swimg .img-box img {
    transition: all 0.5s ease;
}

.hon1-swbox:hover .hon1-swimg .img-box img {
    transform: scale(1.08);
}

.hon1-swh p {
    color: #000;
    text-align: center;
    font-size: calc(var(--zj-subnav) - 1px);
    font-style: normal;
    font-weight: normal;
    line-height: normal;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: all 0.5s ease;
}

.hon1-swbox:hover .hon1-swh p {
    color: #C1DA68;
}

.hon1-swchan {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 50px;
}

.hon1-swchan>div {
    position: relative;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    margin: 0 !important;
    opacity: 1 !important;
    --w: 45px;
    width: var(--w);
    height: var(--w);
    border-radius: 100px;
    background: #C1DA68;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 5px !important;
    transition: all 0.5s ease;
}

.hon1-swchan>div:hover {
    background: #004844;
}

.hon1-swchan>div::after {
    font-size: 16px;
    color: #FFF;
    line-height: normal;
}

/*  */
.hon2 {
    background: #F9F9F9;
    padding: 80px 0 90px;
}

.hon2-h {
    margin-bottom: 45px;
}

.hon2-h p {
    color: #004844;
    text-align: center;
    font-size: calc(var(--zj-prode1-2h) + 2px);
    font-style: normal;
    font-weight: 700;
    line-height: calc((var(--zj-prode1-2h) + 2px) * 1.19);
}

/*  */
.hon2-sw {
    position: relative;
}

.hon2-swid {
    overflow: hidden;
}

.hon2-swbox {
    cursor: pointer;
}

.hon2-swimg {
    overflow: hidden;
    border: 3px solid #CCC;
    border-radius: 10px;
    margin-bottom: 20px;
}

.hon2-swimg .img-box {
    padding-bottom: 140%;
}

.hon2-swimg .img-box img {
    transition: all 0.5s ease;
}

.hon2-swbox:hover .hon2-swimg .img-box img {
    transform: scale(1.08);
}

.hon2-swh p {
    color: #000;
    text-align: center;
    font-size: calc(var(--zj-subnav) - 1px);
    font-style: normal;
    font-weight: normal;
    line-height: normal;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: all 0.5s ease;
}

.hon2-swbox:hover .hon2-swh p {
    color: #C1DA68;
}

.hon2-swchan {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 50px;
}

.hon2-swchan>div {
    position: relative;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    margin: 0 !important;
    opacity: 1 !important;
    --w: 45px;
    width: var(--w);
    height: var(--w);
    border-radius: 100px;
    background: #C1DA68;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 5px !important;
    transition: all 0.5s ease;
}

.hon2-swchan>div:hover {
    background: #004844;
}

.hon2-swchan>div::after {
    font-size: 16px;
    color: #FFF;
    line-height: normal;
}

/*  */
.hon3-box {
    padding: 70px 0 110px;
}

@media (max-width: 1536px) {
    .hon1-swimg {
        padding: 10px;
    }

    .hon1-h {
        margin-bottom: 30px;
    }

    .hon1-swchan {
        margin-top: 30px;
    }

    .hon1-swchan>div {
        --w: 36px;
    }

    .hon2 {
        padding: 70px 0 70px;
    }

    .hon2-h {
        margin-bottom: 30px;
    }

    .hon2-swchan {
        margin-top: 30px;
    }

    .hon2-swchan>div {
        --w: 36px;
    }

    .hon3-box {
        padding: 70px 0 70px;
    }
}

@media (max-width: 499px) {
    .hon1-box {
        padding: 30px 0 40px;
    }

    .hon1-h {
        margin-bottom: 20px;
    }

    .hon1-swchan {
        margin-top: 20px;
    }

    .hon2 {
        padding: 40px 0;
    }

    .hon2-h {
        margin-bottom: 20px;
    }

    .hon2-swchan {
        margin-top: 20px;
    }

    .hon3-box {
        padding: 40px 0;
    }
}

/* 青岛红星化工集团天然色素有限公司（企业文化） */
.cul-box {
    padding: 60px 0 140px;
}

.cul-l {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
}

.cul-l:last-child {
    margin-bottom: 0;
}

.cul-l:nth-child(2n) {
    flex-direction: row-reverse;
}

.cul-l1 {
    width: 48.4%;
    flex: 0 0 auto;
    border-radius: 5px;
    overflow: hidden;
}

.cul-l1 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: all 0.5s ease;
}

.cul-l:hover .cul-l1 img {
    transform: scale(1.08);
}

.cul-l2 {
    width: calc(100% - 48.4% - 15px);
    flex: 0 0 auto;
    background: url(../img/culbg.png) no-repeat;
    background-size: cover;
    background-position: center;
    padding: 75px 100px 75px 45px;
    border-radius: 5px;
    overflow: hidden;
}

.cul-l:nth-child(2n) .cul-l2 {
    padding: 75px 45px 75px 100px;
}

.cul-l2i {
    margin-bottom: 20px;
}

.cul-l2i i {
    font-size: 35px;
    color: rgba(193, 218, 104, 1);
    line-height: normal;
}

.cul-l2h {
    margin-bottom: 10px;
}

.cul-l2h p {
    color: #004844;
    font-size: var(--zj-oem3-1l1p);
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

.cul-l2p p {
    color: #444;
    font-size: var(--zj-subnav);
    font-style: normal;
    font-weight: normal;
    line-height: calc(var(--zj-subnav) * 1.62);
}

@media (max-width: 1536px) {
    .cul-box {
        padding: 60px 0 70px;
    }

    .cul-l2 {
        padding: 35px 30px 35px 28px;
    }

    .cul-l:nth-child(2n) .cul-l2 {
        padding: 35px 28px 35px 30px;
    }
}

@media (max-width: 992px) {
    .cul-l {
        flex-direction: column-reverse;
    }

    .cul-l:nth-child(2n) {
        flex-direction: column-reverse;
    }

    .cul-l1 {
        width: 100%;
    }

    .cul-l2 {
        width: 100%;
        margin-bottom: 12px;
    }
}

@media (max-width: 499px) {
    .cul-box {
        padding: 30px 0 40px;
    }

    .cul-l2i {
        margin-bottom: 12px;
    }

    .cul-l2i i {
        font-size: 26px;
    }
}

/* 青岛红星化工集团天然色素有限公司（关于我们） */
.about {
    position: relative;
}

.about>img {
    position: absolute;
    width: 100%;
    height: auto;
    object-fit: cover;
    object-position: center;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    z-index: -1;
    pointer-events: none;
}

.ab1-box {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    padding: 42px 0 96px;
}

.ab1-img {
    width: 36.6%;
    flex: 0 0 auto;
    position: relative;
}

.ab1-img::after {
    position: absolute;
    content: "";
    border-radius: 5px;
    background: #C1DA68;
    width: 140px;
    height: 73%;
    top: 50%;
    transform: translateY(-50%);
    right: -15px;
}

.ab1-img img {
    overflow: hidden;
    border-radius: 5px;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    position: relative;
    z-index: 12;
}

.ab1-2 {
    width: calc(100% - 36.6% - 120px);
    flex: 0 0 auto;
}

.ab1-h {
    margin-bottom: 20px;
}

.ab1-h p {
    color: #222;
    font-size: calc(var(--zj-so1top1) - 3px);
    font-style: normal;
    font-weight: 700;
    line-height: calc((var(--zj-so1top1) - 3px) * 0.88);
}

.ab1-smh {
    margin-bottom: 25px;
}

.ab1-smh p {
    color: #004844;
    font-size: var(--zj-ven2-la);
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

.ab1-p {
    margin-bottom: 126px;
}

.ab1-p p {
    color: #111;
    font-size: calc(var(--zj-subnav) - 1px);
    font-style: normal;
    font-weight: normal;
    line-height: calc((var(--zj-subnav) - 1px) * 2.13);
    text-indent: 2em;
    text-align: justify;
}

.ab1-u {
    max-width: 780px;
    margin-right: calc(-.5 * 7.5rem);
    margin-left: calc(-.5 * 7.5rem);
    margin-bottom: -30px;
}

.ab1-l {
    margin-bottom: 56px;
    padding-right: calc(7.5rem * .5);
    padding-left: calc(7.5rem * .5);
    position: relative;
}

.ab1-l:nth-child(2n-1):after {
    position: absolute;
    content: "";
    width: 1px;
    height: 35px;
    top: 50%;
    transform: translateY(-50%);
    right: 0;
    border-left: 1px dashed #222;
    opacity: 0.7;
}

.ab1-lbox {
    display: flex;
    align-items: flex-start;
}

.ab1-li {
    flex: 0 0 auto;
    margin-right: 25px;
}

.ab1-li i {
    font-size: 35px;
    line-height: normal;
    color: rgba(193, 218, 104, 1);
}

.ab1-lh {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.ab1-lh p {
    color: #222;
    font-family: "Montserrat";
    font-size: var(--zj-proseh);
    font-style: normal;
    font-weight: 700;
    line-height: 1.25;
}

.ab1-lh span {
    color: #222;
    font-size: var(--zj-ft1-1h);
    font-style: normal;
    font-weight: normal;
    line-height: var(--zj-ft1-1h);
    margin-left: 10px;
}

.ab1-lp p {
    color: #222;
    font-size: var(--zj-ven2cona);
    font-style: normal;
    font-weight: normal;
    line-height: normal;
}

/*  */
.ab2-box {
    padding-bottom: 80px;
}

/* ab2 video */
.ab2-img {
    position: relative;
    display: block;
}

.ab2-img .img-box {
    padding-bottom: 34%;
    border-radius: 5px;
}

.ab2-img .img-box img {
    transition: all 0.5s ease;
}

.ab2-img:hover .img-box img {
    transform: scale(1.08);
}

.ab2-i {
    --w: 76px;
    width: var(--w);
    height: var(--w);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    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: 60px;
    width: var(--w);
    height: var(--w);
    border-radius: 50%;
    background: #C1DA68;
    font-size: 30px;
    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;
    display: none;
}

.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-box {
    padding-bottom: 124px;
    position: relative;
}

#ab3-sw {
    overflow: hidden;
}

.ab3-swbox {
    cursor: pointer;
}

.ab3-swimg .img-box {
    padding-bottom: 54%;
    border-radius: 5px;
    margin-bottom: 20px;
}

.ab3-swimg .img-box img {
    transition: all 0.5s ease;
}

.hon2-swbox:hover .ab3-swimg .img-box img {
    transform: scale(1.08);
}

.ab3-swh p {
    color: #111;
    text-align: center;
    font-size: var(--zj-ven2-la);
    font-style: normal;
    font-weight: 700;
    line-height: calc(var(--zj-ven2-la) * 1.11);
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: all 0.5s ease;
}

.ab3-swbox:hover .ab3-swh p {
    color: #C1DA68;
}

#ab3-sw .swiper-button-prev,
#ab3-sw .swiper-button-next {
    --w: 40px;
    width: var(--w);
    height: var(--w);
    border-radius: 50px;
    background: #C1DA68;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1 !important;
    pointer-events: auto !important;
    transition: all 0.5s ease;
    cursor: pointer !important;
    top: 35%;
}

#ab3-sw .swiper-button-prev {
    left: -70px;
}

#ab3-sw .swiper-button-next {
    right: -70px;
}

#ab3-sw .swiper-button-prev:hover,
#ab3-sw .swiper-button-next:hover {
    background: #004844;
}

#ab3-sw .swiper-button-prev::after,
#ab3-sw .swiper-button-next::after {
    font-size: 14px;
    color: #FFF;
}

/* ab4 */
.ab4-top {
    position: relative;
}

.ab4-smh {
    position: absolute;
    left: 50%;
    top: -30px;
    transform: translateX(-50%);
}

.ab4-smh p {
    color: #EFEFEF;
    font-family: "Inter";
    font-size: var(--zj-news-h);
    font-style: normal;
    font-weight: 700;
    line-height: var(--zj-news-h);
    text-transform: uppercase;
}

.ab4-h {
    margin-bottom: 86px;
    position: relative;
    z-index: 12;
}

.ab4-h p {
    color: #004844;
    text-align: center;
    font-size: calc(var(--zj-prode1-2h) + 2px);
    font-style: normal;
    font-weight: 700;
    line-height: calc((var(--zj-prode1-2h) + 2px) * 1.19);
}

/*  */
.ab4-sw2 {
    position: relative;
}

#ab4-sw2 {
    overflow: hidden;
    position: relative;
    padding-bottom: 30px;
}

#ab4-sw2::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 2px;
    background: #C1DA68;
    left: 50%;
    bottom: 9px;
    transform: translateX(-50%);
}

.ab4-sw1 {
    position: relative;
    margin-top: 67px;
}

#ab4-sw1 {
    overflow: hidden;
}

.ab4-sw1h {
    position: relative;
}

.ab4-sw1h::after {
    position: absolute;
    content: "";
    --w: 16px;
    width: var(--w);
    height: var(--w);
    border-radius: 50%;
    border: 1px solid #C1DA68;
    background: #FFF;
    left: 50%;
    bottom: -28px;
    transform: translateX(-50%);
}

.swiper-slide.on .ab4-sw1h::after {
    background: #C1DA68;
}

.ab4-sw1h p {
    color: #222;
    text-align: center;
    font-size: var(--zj-ven2-la);
    font-style: normal;
    font-weight: normal;
    line-height: calc(var(--zj-ven2-la) * 1.111);
}

.ab4-sw2h {
    margin-bottom: 10px;
}

.ab4-sw2h p {
    color: #004844;
    text-align: center;
    font-family: "Montserrat";
    font-size: calc(var(--zj-prode1-2h) + 2px);
    font-style: normal;
    font-weight: 700;
    line-height: calc((var(--zj-prode1-2h) + 2px) * 1.19);
}

.ab4-sw1p p {
    color: #222;
    text-align: center;
    font-size: calc(var(--zj-subnav) - 1px);
    font-style: normal;
    font-weight: normal;
    line-height: calc((var(--zj-subnav) - 1px) * 1.86);
}

#ab4-sw1 .swiper-button-prev,
#ab4-sw1 .swiper-button-next {
    --w: 40px;
    width: var(--w);
    height: var(--w);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    background: #C1DA68;
    opacity: 1 !important;
    pointer-events: auto !important;
    transition: all 0.5s ease;
    cursor: pointer !important;
    top: -75px;
}

#ab4-sw1 .swiper-button-prev {
    left: 0;
}

#ab4-sw1 .swiper-button-next {
    right: 0;
}

#ab4-sw1 .swiper-button-prev:hover,
#ab4-sw1 .swiper-button-next:hover {
    background: #004844;
}

#ab4-sw1 .swiper-button-prev::after,
#ab4-sw1 .swiper-button-next::after {
    font-size: 14px;
    color: #FFF;
}

/* ab5 */
.ab5-box {
    padding: 120px 0 140px;
}

.ab5-u {
    margin-right: calc(-.5 * 4rem);
    margin-left: calc(-.5 * 4rem);
}

.ab5-l {
    padding-right: calc(4rem * .5);
    padding-left: calc(4rem * .5);
}

.ab5-limg .img-box {
    padding-bottom: 55%;
    border-radius: 5px;
    margin-bottom: 35px;
}

.ab5-lh {
    margin-bottom: 15px;
}

.ab5-lh p {
    color: #004844;
    text-align: center;
    font-size: var(--zj-oem3-1l1p);
    font-style: normal;
    font-weight: 700;
    line-height: calc(var(--zj-oem3-1l1p) * 0.83);
}

.ab5-lp p {
    color: #333;
    text-align: center;
    font-size: var(--zj-ven2-la);
    font-style: normal;
    font-weight: normal;
    line-height: calc(var(--zj-ven2-la) * 1.77);
}

@media (max-width: 1536px) {
    .ab1-2 {
        width: calc(100% - 36.6% - 60px);
    }

    .ab1-u {
        margin-right: calc(-.5 * 3.5rem);
        margin-left: calc(-.5 * 3.5rem);
    }

    .ab1-l {
        padding-right: calc(3.5rem * .5);
        padding-left: calc(3.5rem * .5);
    }

    .ab1-p {
        margin-bottom: 66px;
    }

    .ab1-box {
        padding: 42px 0 46px;
    }

    .ab2-box {
        padding-bottom: 40px;
    }

    .ab3-box {
        padding-bottom: 84px;
    }

    .ab4-h {
        margin-bottom: 46px;
    }

    .ab5-box {
        padding: 70px 0 70px;
    }
}

@media (max-width: 992px) {
    .ab1-box {
        flex-direction: column-reverse;
    }

    .ab1-2 {
        width: 100%;
        margin-bottom: 30px;
    }

    .ab1-img {
        width: 100%;
    }

    .ab5-u {
        margin-right: calc(-.5 * 2rem);
        margin-left: calc(-.5 * 2rem);
    }

    .ab5-l {
        padding-right: calc(2rem * .5);
        padding-left: calc(2rem * .5);
    }

    .news-navu {
        overflow: auto;
        justify-content: flex-start;
    }

    .news-navu::-webkit-scrollbar {
        display: none;
    }

    .news-nava {
        width: max-content;
    }
}

@media (max-width: 768px) {
    .ab5-l {
        width: 100%;
        margin-bottom: 20px;
    }

    .ab5-l:last-child {
        margin-bottom: 0;
    }

    .ab2-img .img-box {
        height: 300px;
    }

    .ab1-l {
        width: 100%;
    }

    .ab1-l:nth-child(2n-1):after {
        display: none;
    }
}

@media (max-width: 499px) {
    .news-nava {
        padding: 14px 22px 12px;
    }

    .rd-nav .news-navl {
        margin-right: 16px;
    }

    .ab1-p {
        margin-bottom: 32px;
    }

    .ab1-l {
        margin-bottom: 26px;
    }

    .ab1-box {
        padding: 42px 0 30px;
    }

    .ab2-box {
        padding-bottom: 30px;
    }

    .ab4-smh {
        top: -10px;
    }

    .ab3-box {
        padding-bottom: 44px;
    }

    #ab4-sw1 .swiper-button-prev,
    #ab4-sw1 .swiper-button-next {
        --w: 30px;
        top: -70px;
    }

    .ab5-box {
        padding: 40px 0 40px;
    }

    .ab5-limg .img-box {
        margin-bottom: 20px;
    }


}

/* 搜索无结果 */
.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%;
}

/* 青岛红星化工集团天然色素有限公司（产品） */
.product {
    padding-bottom: 94px;
}

.prode1 {
    padding: 52px 0 80px;
}

.pro-l {
    background-image: none;
}

.pro-la {
    display: flex;
    justify-content: space-between;
    padding: 150px 0 110px;
    max-width: calc(1651px - 58px - 58px);
    /* max-width: calc(1651px - 208px - 208px); */
    padding-left: 10%;
}

.pro-l:nth-child(2n) .pro-la {
    flex-direction: row-reverse;
    padding-left: 0;
}

.pro-la1 {
    padding-top: 23px;
    width: 44%;
    flex: 0 0 auto;
}

.pro-la1h {
    margin-bottom: 10px;
}

.pro-la1h p {
    color: #004844;
    font-size: calc(var(--zj-ser-fth) + 2px);
    font-style: normal;
    font-weight: 700;
    line-height: calc((var(--zj-ser-fth) + 2px) * 1.18);
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
    text-overflow: ellipsis;
}

.pro-la1p {
    margin-bottom: 40px;
}

.pro-la1p p {
    color: #444;
    font-size: var(--zj-subnav);
    font-style: normal;
    font-weight: normal;
    line-height: calc(var(--zj-subnav) * 1.75);
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
    text-overflow: ellipsis;
}

.pro-la1btn {
    display: flex;
    display: none;
}

.pro-la1btn p {
    border-radius: 5px;
    border: 1px solid #C1DA68;
    background: #FFF;
    color: #004844;
    font-size: var(--zj-ven2cona);
    font-style: normal;
    font-weight: normal;
    line-height: normal;
    padding: 16px 67px;
    transition: all 0.5s ease;
}

.pro-la:hover .pro-la1btn p {
    background: #C1DA68;
}

.pro-la2 {
    width: 44%;
    max-width: 591px;
    flex: 0 0 auto;
}

.pro-la2 .img-box {
    padding-bottom: 68%;
}

.pro-la2 .img-box img {
    background: none;
}

@media (max-width: 1536px) {
    .product {
        padding-bottom: 70px;
    }
}

@media (max-width: 992px) {


    .pro-la {
        padding: 70px 0 60px;
    }

    .pro-la,
    .pro-l:nth-child(2n) .pro-la {
        flex-direction: column;
    }

    .pro-la1 {
        width: 100%;
        padding-top: 0;
        margin-bottom: 30px;
    }

    .pro-la2 {
        width: 100%;
    }
}

@media (max-width: 499px) {
    .pro-la {
        padding: 40px 0 30px;
    }

    .pro-la1p {
        margin-bottom: 20px;
    }

    .pro-la1btn p {
        padding: 8px 24px;
    }

    .product {
        padding-bottom: 40px;
    }

}

/*  */
/* 青岛红星化工集团天然色素有限公司（产品详情） */
.prode-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.slider-navbox {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.prode-swbtn {
    display: flex;
    align-items: center;
}

.slider-navbox button {
    background: transparent;
    --w: 40px;
    width: var(--w);
    height: var(--w);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.5s ease;

    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    border-radius: 50%;
    background: #C1DA68;
}

.slider-navbox button:hover {
    background: #004844;
}

.slider-navbox .slider-prev {
    left: 13px;
}

.slider-navbox .slider-next {
    right: 13px;
}

.slider-navbox button i {
    font-size: 16px;
    color: rgb(255, 255, 255);
    transition: all 0.5s ease;
}

.slider-navbox button:hover i {
    color: rgba(255, 255, 255, 1);
}

/*  */
.prode1-2 {
    width: calc(100% - 42% - 107px);
    flex: 0 0 auto;
}

.prode1-2h {
    margin-bottom: 15px;
}

.prode1-2h p {
    color: #222;
    font-size: calc(var(--zj-prode1-2h) - 2px);
    font-style: normal;
    font-weight: 700;
    line-height: calc((var(--zj-prode1-2h) - 2px) * 1.18);
}

.prode1-2smh {
    margin-bottom: 20px;
}

.prode1-2smh p {
    color: #004844;
    font-size: var(--zj-ft1-1h);
    font-style: normal;
    font-weight: 700;
    line-height: var(--zj-ft1-1h);
}

.prode1-2te p {
    color: #444;
    font-size: var(--zj-ven2-la);
    font-style: normal;
    font-weight: normal;
    line-height: calc(var(--zj-ven2-la) * 2);
}

.prode1-2abox {
    display: flex;
    align-items: center;
    margin-top: 79px;
}

.prode1-2a {
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
    background: #C1DA68;
    min-width: 190px;
    padding: 12px;
    min-height: 50px;
    margin-right: 20px;
    transition: all 0.5s ease;
}

.prode1-2a:hover {
    background: #004844;
}

.prode1-2a:last-child {
    margin-right: 0;
}

.prode1-2a p {
    color: #004844;
    font-size: var(--zj-ven2cona);
    font-style: normal;
    font-weight: normal;
    line-height: normal;
    transition: all 0.5s ease;
}

.prode1-2a:hover p {
    color: #FFF;
}

/* prode2 */
.prode2 {
    background: #F9F9F9;
    padding: 105px 0 140px;
}

.prode2-h {
    position: relative;
    margin-bottom: 60px;
}

.prode2-h span {
    color: #EFEFEF;
    text-align: center;
    display: block;
    font-family: "Inter";
    font-size: var(--zj-news-h);
    font-style: normal;
    font-weight: 700;
    line-height: var(--zj-news-h);
    text-transform: uppercase;
    position: absolute;
    left: 50%;
    top: -35px;
    transform: translateX(-50%);
}

.prode2-h p {
    color: #004844;
    text-align: center;
    font-size: calc(var(--zj-prode1-2h) + 2px);
    font-style: normal;
    font-weight: 700;
    line-height: calc((var(--zj-prode1-2h) + 2px) * 1.07);
    position: relative;
    z-index: 12;
}

/*  */
.prode2-l {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 44px;
}

.prode2-l:nth-child(2n) {
    flex-direction: row-reverse;
}

.prode2-l:last-child {
    margin-bottom: 0;
}

.prode2-l1 {
    width: calc(100% - 48.4% - 140px);
    flex: 0 0 auto;
}

.prode2-l1h {
    width: max-content;
    display: flex;
    position: relative;
    margin-bottom: 16px;
}

.prode2-l1h p {
    color: #111;
    font-size: var(--zj-pro2-1h);
    font-style: normal;
    font-weight: 700;
    line-height: calc(var(--zj-pro2-1h) * 1.5);
    position: relative;
    z-index: 12;
}

.prode2-l1h::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 10px;
    background: #C1DA68;
    left: 50%;
    bottom: 3px;
    transform: translateX(-50%);
    z-index: 1;
}

.prode2-l1p p {
    color: #444;
    font-size: var(--zj-subnav);
    font-style: normal;
    font-weight: normal;
    line-height: calc(var(--zj-subnav) * 1.75);
    margin-bottom: 20px;
    text-indent: 2em;
    text-align: justify;
}

.prode2-l1p p:last-child {
    margin-bottom: 0;
}

.prode2-l2 {
    width: 48.4%;
    flex: 0 0 auto;
    border-radius: 5px;
    overflow: hidden;
}

.prode2-l2 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/*  */
.prode3-box {
    padding: 115px 0 0;
}

.prode3-limg {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    position: relative;
}

.prode3-limg::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    max-width: 320px;
    max-height: 320px;
    background: url(../img/prode3-bg.png) no-repeat;
    background-size: cover;
    background-position: center;
    z-index: -1;
}

.prode3-limg img {
    width: 100%;
    height: auto;
    max-width: 300px;
    object-fit: cover;
    object-position: center;
    border-radius: 300px;
    border: 3px solid #C1DA68;
}

.prode3-lh p {
    color: #222;
    text-align: center;
    font-size: var(--zj-oem3-1l1p);
    font-style: normal;
    font-weight: 700;
    line-height: calc(var(--zj-oem3-1l1p) * 0.83);
}

.prode4 {
    padding: 165px 0 95px;
}

.prode4-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 50px;
}

.prode4-h {
    position: relative;
}

.prode4-h span {
    color: #EFEFEF;
    text-align: center;
    font-family: "Inter";
    font-size: var(--zj-news-h);
    font-style: normal;
    font-weight: 700;
    line-height: var(--zj-news-h);
    text-transform: uppercase;
    position: absolute;
    left: 0;
    top: -35px;
}

.prode4-h p {
    color: #004844;
    font-size: calc(var(--zj-prode1-2h) + 2px);
    font-style: normal;
    font-weight: 700;
    line-height: calc((var(--zj-prode1-2h) + 2px) * 1.07);
    position: relative;
    z-index: 12;
}

.prode4-a {
    display: block;
    border-radius: 5px;
    background: #FFFDED;
    padding: 10px 10px 40px;
    transition: all 0.5s ease;
}

.prode .prode4-a:hover {
    background: #004844;
}

.prode4-img .img-box {
    padding-bottom: 68%;
    border-radius: 5px;
    margin-bottom: 20px;
    background: #FFF;
}

.prode4-img .img-box img {
    transition: all 0.5s ease;
    background: none;
    transform: scale(0.8);
}

.prode4-a:hover .prode4-img .img-box img {
    transform: scale(1);
}

.prode4-swh {
    position: relative;
    padding-left: 40px;
}

.prode4-swh::after {
    position: absolute;
    content: "";
    --w: 7px;
    width: var(--w);
    height: var(--w);
    border-radius: 50%;
    background: rgba(0, 72, 68, 1);
    top: 50%;
    transform: translateY(-50%);
    left: 15px;
    z-index: 1;
    transition: all 0.5s ease;
}

.prode4-a:hover .prode4-swh::after {
    background: #C1DA68;
}

.prode4-swh p {
    color: #222;
    font-size: var(--zj-ft1-1h);
    font-style: normal;
    font-weight: 700;
    line-height: var(--zj-ft1-1h);
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: all 0.5s ease;
}

.prode4-a:hover .prode4-swh p {
    color: #C1DA68;
}

.prode4-sw {
    position: relative;
}

#prode6-u {
    overflow: hidden;
}

.prode4-chan {
    display: flex;
    align-content: center;
}

.prode4-chan>div {
    position: relative;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    margin: 0;
    opacity: 1 !important;
    transition: all 0.5s ease;
    --w: 40px;
    width: var(--w);
    height: var(--w);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #C1DA68;
    transition: all 0.5s ease;
    margin-left: 10px;
}

.prode4-chan>div:hover {
    background: #004844;
}

.prode4-chan>div::after {
    font-size: 12px;
    line-height: normal;
    color: #FFF;
}

@media (max-width: 1536px) {
    .prode1-2abox {
        margin-top: 39px;
    }

    .prode1-2 {
        width: calc(100% - 42% - 37px);
    }

    .prode2 {
        padding: 75px 0 70px;
    }

    .prode2-h span {
        top: -20px;
    }

    .prode2-l1 {
        width: calc(100% - 48.4% - 70px);
    }

    .prode3-box {
        padding: 75px 0 0;
    }

    .prode4 {
        padding: 75px 0 65px;
    }

    .prode4-h span {
        top: -20px;
    }

    .prode4-top {
        margin-bottom: 30px;
    }
}

@media (max-width: 992px) {
    .prode-top {
        flex-direction: column;
    }

    .prode1-1 {
        width: 100%;
        margin-bottom: 20px;
    }

    .prode1-2 {
        width: 100%;
    }

    .prode2-l,
    .prode2-l:nth-child(2n) {
        flex-direction: column;
    }

    .prode2-l1 {
        width: 100%;
        margin-bottom: 20px;
    }

    .prode2-l2 {
        width: 100%;
    }

    .prode3-l {
        width: 50%;
        margin-bottom: 30px;
    }

    .prode4-chan>div {
        --w: 34px;
    }
}

@media (max-width: 768px) {
    .prode3-l {
        width: 100%;
    }

    .prode3-l:last-child {
        margin-bottom: 0;
    }

    .prode1-2a {
        width: 100%;
        margin-right: 0;
        margin-bottom: 14px;
    }

    .prode1-2abox {
        flex-wrap: wrap;
    }

    .prode1 {
        padding: 42px 0 40px;
    }
}

@media (max-width: 499px) {
    .prode1 {
        padding: 32px 0 30px;
    }

    .slider-for {
        margin-bottom: 0;
    }

    .prode1-2abox {
        margin-top: 29px;
    }

    .prode1-2a {
        min-height: 42px;
    }

    .prode2 {
        padding: 45px 0 40px;
    }

    .prode2-h span {
        top: -15px;
    }

    .prode2-h {
        margin-bottom: 30px;
    }

    .prode3-box {
        padding: 45px 0 0;
    }

    .prode4 {
        padding: 45px 0 35px;
    }

    .prode4-h span {
        top: -15px;
    }

    .prode4-chan {
        display: none;
    }
}

/* 青岛红星化工集团天然色素有限公司（首页） */
/* -------------------------------------------- */

/* index */
/* ind-ban */
.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: 47%;
}

.banner-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.banner.hide-arrow .swiper-pagination {
    display: none !important;
}

.banner.hide-arrow .slick-arrow {
    display: none !important;
}

.banner.hide-video video {
    display: none !important;
}

.banner-video-box {
    position: relative;
    display: block;
    padding-bottom: 47%;
    -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: '\e611';
    -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) {}

@media (max-width: 1199.2px) {}

@media (max-width: 991px) {
    .banner .item a {
        padding-bottom: 50%;
    }

    .banner-video-box {
        padding-bottom: 50%;
    }

    .banner .mobile-video:before {
        font-family: 'iconfont' !important;
        font-size: 30px;
    }
}

@media (max-width: 499px) {
    .banner .item a {
        padding-bottom: 52%;
    }

    .banner-video-box {
        padding-bottom: 52%;
    }
}


@media (max-width: 499px) {}

/* banner按键改版 */
.banner-chan {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 90px;
    z-index: 12;
}

.banner-chan .swiper-pagination {
    position: relative;
    left: 0;
    bottom: 0;
    right: 0;
    top: 0;
    width: auto;
    display: flex;
    align-items: center;
    /* border-bottom: 1px solid rgba(255, 255, 255, 0.30); */
    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-family: 'Archivo';
    font-size: calc(var(--zj-ven2cona) + 1px);
    font-style: normal;
    font-weight: normal;
    line-height: 1;
    text-transform: capitalize;
    margin: 0;
    transition: all 0.5s ease;
    cursor: pointer;
    position: relative;
    /* border-bottom: 1px solid #ffffff00; */
}

.banner-chan .swiper-pagination .swiper-pagination-bullet-active {
    /* color: rgba(255, 255, 255, 1); */
    /* border-bottom: 1px solid #FFF; */
}

.banner-chan .swiper-pagination .swiper-pagination-bullet::after {
    position: absolute;
    content: "";
    width: 2px;
    height: 2px;
    background: #FFF;
    left: 0;
    bottom: -1px;
    display: none;
}

.banner-chan .swiper-pagination .swiper-pagination-bullet:last-child:before {
    position: absolute;
    content: "";
    width: 2px;
    height: 2px;
    background: #FFF;
    right: 0;
    bottom: -1px;
    display: none;
}


@media (max-width: 1536px) {
    .banner-chan {
        bottom: 30px;
    }

    .banner-chan .swiper-pagination .swiper-pagination-bullet {
        /* margin: 0 9px; */
        /* width: 70px; */
        /* padding-bottom: 5px; */
    }
}

@media (max-width: 499px) {
    .banner-chan {
        bottom: 12px;
    }

    .banner-chan .swiper-pagination .swiper-pagination-bullet {
        font-size: 14px;
    }

    .banner-chan {
        bottom: 17px !important;
    }
}

/* 按钮 */
.banner-chan .swiper-pagination {
    /* border-radius: 50px; */
    /* overflow: hidden; */
}

.banner-chan .swiper-pagination .swiper-pagination-bullet span {
    --w: 10px !important;
    width: var(--w);
    height: var(--w);
    border-radius: 50px;
    /* border: 1px solid #D9D9D9; */
    background: rgba(255, 255, 255, 0.69);
    display: block;
    /* margin: 0 8px; */
    position: relative;
    transition: all 0.5s ease;
}

.banner-chan .swiper-pagination .swiper-pagination-bullet-active span {
    background: #BA021A;
}

.banner-chan .swiper-pagination .swiper-pagination-bullet span::after {
    position: absolute;
    content: "";
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    --w: 24px;
    width: var(--w);
    height: var(--w);
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.43);
    opacity: 0;
    transition: all 0.5s ease;
}

.banner-chan .swiper-pagination .swiper-pagination-bullet-active span::after {
    animation: indban 500ms ease-in-out;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
}

@keyframes indban {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

/* end------xxxxxxx------ */
.banner-chan .swiper-pagination {
    position: relative;
    left: 0;
    bottom: 0;
    right: 0;
    top: 0;
    width: auto;
    display: flex;
    align-items: center;
    /* border-bottom: 1px solid rgba(255, 255, 255, 0.30); */
    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-family: 'Archivo';
    font-size: calc(var(--zj-ven2cona) + 1px);
    font-style: normal;
    font-weight: normal;
    line-height: 1;
    text-transform: capitalize;
    margin: 0;
    transition: all 0.5s ease;
    cursor: pointer;
    position: relative;
    /* border-bottom: 1px solid #ffffff00; */
}

.banner-chan .swiper-pagination .swiper-pagination-bullet-active {
    /* color: rgba(255, 255, 255, 1); */
    /* border-bottom: 1px solid #FFF; */
}

.banner-chan .swiper-pagination .swiper-pagination-bullet::after {
    position: absolute;
    content: "";
    width: 2px;
    height: 2px;
    background: #FFF;
    left: 0;
    bottom: -1px;
    display: none;
}

.banner-chan .swiper-pagination .swiper-pagination-bullet:last-child:before {
    position: absolute;
    content: "";
    width: 2px;
    height: 2px;
    background: #FFF;
    right: 0;
    bottom: -1px;
    display: none;
}


@media (max-width: 1536px) {
    .banner-chan {
        bottom: 30px;
    }

    .banner-chan .swiper-pagination .swiper-pagination-bullet {
        /* margin: 0 9px; */
        /* width: 70px; */
        /* padding-bottom: 5px; */
    }
}

@media (max-width: 499px) {
    .banner-chan {
        bottom: 12px;
    }

    .banner-chan .swiper-pagination .swiper-pagination-bullet {
        font-size: 14px;
    }

    .banner-chan {
        bottom: 17px !important;
    }
}

/* 按钮 */
.banner-chan .swiper-pagination {
    border-radius: 10px;
    overflow: hidden;
    margin-left: 50px;
}

.banner-chan .swiper-pagination .swiper-pagination-bullet span {
    --w: 44px !important;
    width: var(--w);
    height: 4px;
    /* border-radius: 50px; */
    /* border: 1px solid #D9D9D9; */
    background: #FFF;
    display: block;
    /* margin: 0 8px; */
    position: relative;
    border-radius: 0;
}

.banner-chan .swiper-pagination .swiper-pagination-bullet span::after {
    position: absolute;
    content: "";
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    --w: 8px;
    width: 100%;
    height: 100%;
    /* border-radius: 50px; */
    background: #C1DA68;
    opacity: 0;
    transition: all 0.5s ease;
}

.banner-chan .swiper-pagination .swiper-pagination-bullet-active span::after {
    animation: indban 500ms ease-in-out;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
}

@keyframes indban {
    0% {
        opacity: 0;
        width: 0;
    }

    100% {
        opacity: 1;
        width: 100%;
    }
}

/* banner-swiper-scrollbar */
.banner-swiper-scrollbar {
    position: absolute;
    width: 120px;
    height: 6px;
    left: 50%;
    transform: translateX(-50%);
    bottom: 60px;
    z-index: 12;
    background: rgba(249, 249, 248, 1);
    border-radius: 50px;
}

.banner-swiper-scrollbar .swiper-scrollbar-drag {
    background: rgba(34, 34, 34, 1);
}

.banner-chan {
    display: flex;
    align-items: center;
    flex-direction: row;
    justify-content: flex-start;
}

.banner-chan .slick-arrow {
    margin-right: 10px;
}

.banner-chan .slick-arrow i {
    --w: 40px;
    width: var(--w);
    height: var(--w);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.30);
    font-size: 20px;
    line-height: normal;
    color: #FFF;
    transition: all 0.5s ease;
}

.banner-chan .slick-arrow:hover i {
    color: rgba(0, 72, 68, 1);
    border: 1px solid #C1DA68;
    background: #C1DA68;
}

/* banner-end */

/* so1 */
.so1 {
    padding: 140px 0 130px;
}

.so1-h {
    margin-bottom: 70px;
    position: relative;
}

.so1-h span {
    color: #EFEFEF;
    font-family: "Inter";
    font-size: var(--zj-news-h);
    font-style: normal;
    font-weight: 700;
    line-height: var(--zj-news-h);
    text-transform: uppercase;
    position: absolute;
    left: 50%;
    top: -35px;
    transform: translateX(-50%);
}

.so1-h p {
    color: #004844;
    text-align: center;
    font-size: calc(var(--zj-prode1-2h) + 2px);
    font-style: normal;
    font-weight: 700;
    line-height: calc((var(--zj-prode1-2h) + 2px) * 1.19);
    position: relative;
    z-index: 12;
}

/*  */
.so1-sw {
    position: relative;
}

#so1-sw {
    overflow: hidden;
}

.so1-swbox {
    display: block;
}

.so1-swtop {
    background: #FFFDED;
    padding: 10px 10px 40px;
    border-radius: 10px;
    transition: all 0.5s ease;
}

.so1-swbox:hover .so1-swtop {
    background: #004844;
    box-shadow: 5px 5px 10px 0 rgba(0, 0, 0, 0.15);
}

/* .so1-swimg {
    background: #FFF;
} */

.so1-swimg .img-box {
    border-radius: 10px;
    padding-bottom: 68%;
    margin-bottom: 30px;
    background: #FFF;
}

.so1-swimg .img-box img {
    transition: all 0.5s ease;
    background: none;
    transform: scale(0.8);
}

.so1-swbox:hover .so1-swimg .img-box img {
    transform: scale(1);
}

.so1-swh p {
    color: #111;
    text-align: center;
    font-size: var(--zj-ft1-1h);
    font-style: normal;
    font-weight: 700;
    line-height: var(--zj-ft1-1h);
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: all 0.5s ease;
}

.so1-swbox:hover .so1-swh p {
    color: #FFF;
}

.so1-swu {
    margin-top: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    max-height: 0;
    overflow: hidden;
    transition: all 0.5s ease;
}

.so1-swbox:hover .so1-swu {
    max-height: 140px;
}

.so1-swl {
    border-radius: 50px;
    background: #C1DA68;
    padding: 5px 28px;
    margin: 0 8px;
    margin-bottom: 10px;
}

.so1-swl p {
    color: #111;
    text-align: center;
    font-size: var(--zj-ven2cona);
    font-style: normal;
    font-weight: normal;
    line-height: calc(var(--zj-ven2cona) * 1.42);
}

.so1-swbtn {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: -17px;
}

.so1-swa {
    position: relative;
}

.so1-swa::after {
    position: absolute;
    content: "";
    --w: 51px;
    width: var(--w);
    height: var(--w);
    border-radius: 50%;
    background: #FFF;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.so1-swa i {
    position: relative;
    z-index: 12;
    display: flex;
    align-items: center;
    justify-content: center;
    --w: 35px;
    width: var(--w);
    height: var(--w);
    border-radius: 50px;
    background: #C1DA68;
    color: #004844;
    font-size: 20px;
    line-height: normal;
    transition: all 0.5s ease;
}

.so1-swbox:hover .so1-swa i {
    background: #004844;
    color: #fff;
}

#so1-sw .swiper-button-prev,
#so1-sw .swiper-button-next {
    --w: 40px;
    width: var(--w);
    height: var(--w);
    border-radius: 50px;
    background: #C1DA68;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1 !important;
    transition: all 0.5s ease;
    top: 10vw;
}

#so1-sw .swiper-button-prev {
    left: -60px;
}

#so1-sw .swiper-button-next {
    right: -60px;
}

#so1-sw .swiper-button-prev:hover,
#so1-sw .swiper-button-next:hover {
    background: #004844;
}

#so1-sw .swiper-button-prev::after,
#so1-sw .swiper-button-next::after {
    font-size: 14px;
    line-height: normal;
    color: #FFF;
}

/* so2 */
.so2 {
    padding: 176px 0 172px;
    display: flex;
    justify-content: space-between;
}

.so2-1 {
    width: 58%;
    flex: 0 0 auto;
}

.so2-h {
    margin-bottom: 25px;
}

.so2-h p {
    color: #111;
    font-size: calc(var(--zj-so1top1) - 3px);
    font-style: normal;
    font-weight: 700;
    line-height: calc((var(--zj-so1top1) - 3px) * 0.57);
}

.so2-smh {
    margin-bottom: 20px;
}

.so2-smh p {
    color: #004844;
    font-size: var(--zj-ven2-la);
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

.so2-p {
    margin-bottom: 20px;
}

.so2-p p {
    color: #111;
    font-size: calc(var(--zj-subnav) - 1px);
    font-style: normal;
    font-weight: normal;
    line-height: calc((var(--zj-subnav) - 1px) * 2.13);
}

.so2-btn {
    display: flex;
    justify-content: flex-end;
}

.so2-a {
    display: flex;
    align-items: center;
}

.so2-a p {
    color: #111;
    font-size: var(--zj-ven2cona);
    font-style: normal;
    font-weight: normal;
    line-height: calc(var(--zj-ven2cona) * 2);
    transition: all 0.5s ease;
}

.so2-a:hover p {
    color: #C1DA68;
}

.so2-a i {
    margin-left: 10px;
    color: #111;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
    transition: all 0.5s ease;
}

.so2-a:hover i {
    color: #C1DA68;
}

.so2-u {
    display: flex;
    justify-content: space-between;
    max-width: 900px;
    margin-top: 50px;
}

.so2-l {
    position: relative;
}

.so2-l>span {
    position: absolute;
    content: "";
    width: 1px;
    height: 35px;
    opacity: 0.7;
    border-left: 1px dashed #333;
    left: 50%;
    bottom: 11px;
    transform: translateX(-50%);
}

.so2-l1 {
    margin-bottom: 15px;
}

.so2-l1 i {
    font-size: 35px;
    line-height: normal;
    color: rgba(0, 72, 68, 1);
}

.so2-l .ab1-lh p {
    color: #004844;
}

.so2-l .ab1-lp p {
    color: #111;
}

/*  */
.so2-2 {
    width: calc(100% - 58% - 160px);
    position: relative;
}

.so2-img {
    position: relative;
}

.so2-img::after {
    position: absolute;
    content: "";
    background: #C1DA68;
    border-radius: 50%;
    --w: 100px;
    width: var(--w);
    height: var(--w);
    right: 30px;
    bottom: 30px;
}

.so2-img .img-box {
    border-radius: 50%;
}

.so2-img .img-box img {
    transition: all 0.5s ease;
}

.so2-img:hover .img-box img {
    transform: scale(1.08);
}

.so2-i {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 12;
}

.so2-i i {
    font-size: 68px;
    color: #FFF;
    line-height: normal;
    display: none;
}

/* so3 */
.so3 .vr-box iframe {
    aspect-ratio: 1920 / 700;
    width: 100%;
    height: auto;
}

/* so4 */
.so4 {
    padding-top: 160px;
}

.so4-h {
    position: relative;
    margin-bottom: 30px;
}

.so4-h span {
    color: #EFEFEF;
    font-family: "Inter";
    font-size: var(--zj-news-h);
    font-style: normal;
    font-weight: 700;
    line-height: var(--zj-news-h);
    text-transform: uppercase;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: -35px;
}

.so4-h p {
    color: #004844;
    text-align: center;
    font-size: calc(var(--zj-prode1-2h) + 2px);
    font-style: normal;
    font-weight: 700;
    line-height: calc((var(--zj-prode1-2h) + 2px) * 1.19);
    position: relative;
    z-index: 12;
}

.so4-p {
    margin-bottom: 60px;
}

.so4-p p {
    color: #666;
    text-align: center;
    font-size: var(--zj-ven2-la);
    font-style: normal;
    font-weight: normal;
    line-height: calc(var(--zj-ven2-la) * 1.44);
}

/*  */
.ab1-sw {
    position: relative;
    overflow: hidden;
}

.ab1-sw .swiper-wrapper {
    -webkit-transition-timing-function: linear !important;
    -o-transition-timing-function: linear !important;
    transition-timing-function: linear !important;
}

.ab1swimg {
    padding-bottom: 52%;
}

/* so5 */
.ind-marke {
    position: relative;
    overflow: hidden;
}

.ind-marke>img {
    position: absolute;
    width: 100%;
    height: auto;
    object-fit: cover;
    object-position: center;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.so5 {
    padding: 165px 0 130px;
    position: relative;
    z-index: 12;
}

.so5-h {
    position: relative;
    margin-bottom: 43px;
}

.so5-h span {
    color: #EFEFEF;
    font-family: "Inter";
    font-size: var(--zj-news-h);
    font-style: normal;
    font-weight: 700;
    line-height: var(--zj-news-h);
    text-transform: uppercase;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: -30px;
}

.so5-h p {
    color: #004844;
    text-align: center;
    font-size: calc(var(--zj-prode1-2h) + 2px);
    font-style: normal;
    font-weight: 700;
    line-height: calc((var(--zj-prode1-2h) + 2px) * 1.19);
    position: relative;
    z-index: 12;
}

.so5-img {
    display: flex;
    align-items: center;
    justify-content: center;
}

.so5-img img {
    background-image: none;
    width: 100%;
    height: auto;
    object-fit: cover;
    object-position: center;
    max-width: 1562px;
}

/* so6 */
.so6 {
    padding: 130px 0 150px;
}

.so6-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 50px;
}

.so6-h {
    position: relative;
    width: 50%;
}

.so6-h span {
    color: #EFEFEF;
    text-align: center;
    font-family: "Inter";
    font-size: var(--zj-news-h);
    font-style: normal;
    font-weight: 700;
    line-height: var(--zj-news-h);
    text-transform: uppercase;
    position: absolute;
    left: 0;
    top: -35px;
}

.so6-h p {
    color: #004844;
    font-size: calc(var(--zj-prode1-2h) + 2px);
    font-style: normal;
    font-weight: 700;
    line-height: calc((var(--zj-prode1-2h) + 2px) * 1.07);
    position: relative;
    z-index: 12;
}

.so6-chan {
    display: flex;
    align-content: center;
}

.so6-chan>div {
    position: relative;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    margin: 0;
    opacity: 1 !important;
    transition: all 0.5s ease;
    --w: 40px;
    width: var(--w);
    height: var(--w);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #C1DA68;
    transition: all 0.5s ease;
    margin-left: 10px;
}

.so6-chan>div:hover {
    background: #004844;
}

.so6-chan>div::after {
    font-size: 12px;
    line-height: normal;
    color: #FFF;
}

.so6-swimg .img-box {
    padding-bottom: 54%;
    border-radius: 5px;
}

.so6-swimg .img-box img {
    transition: all 0.5s ease;
}

.so6-swa:hover .so6-swimg .img-box img {
    transform: scale(1.08);
}

.so6-swte {
    padding: 35px 18px 0;
}

.so6-swnum {
    margin-bottom: 15px;
}

.so6-swnum p {
    color: #666;
    font-family: "Montserrat";
    font-size: var(--zj-ven2-la);
    font-style: normal;
    font-weight: 700;
    transition: all 0.5s ease;
    line-height: calc(var(--zj-ven2-la) * 1.11);
}

.so6-swa {
    display: block;
}

.so6-swa:hover .so6-swnum p {
    color: #C1DA68;
}

.so6-swp p {
    color: #333;
    font-size: var(--zj-ft1-1h);
    font-style: normal;
    font-weight: 700;
    line-height: calc(var(--zj-ft1-1h) * 1.6);
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: all 0.5s ease;
}

.so6-swa:hover .so6-swp p {
    color: #C1DA68;
}

/* so7 */
.ind-end {
    background: #FFFDED;
    padding: 75px 0;
    display: none;
}

.so7-h {
    margin-bottom: 15px;
}

.so7-h p {
    text-align: center;
    color: #004844;
    font-size: var(--zj-ser-fth);
    font-style: normal;
    font-weight: 700;
    line-height: calc(var(--zj-ser-fth) * 1.38);
}

.so7-p {
    margin-bottom: 45px;
}

.so7-p p {
    text-align: center;
    color: #444;
    font-size: var(--zj-proseh);
    font-style: normal;
    font-weight: normal;
    line-height: calc(var(--zj-proseh) * 0.93);
}

.so7-form .con2-fo {
    display: flex;
    align-items: flex-start;
    width: 100%;
}

.so7-form .con2-fou {
    flex: 1;
    margin-right: calc(-.5 * 0.65rem);
    margin-left: calc(-.5 * 0.65rem);
}

.so7-form .con2-fol {
    margin-bottom: 0 !important;
    padding-right: calc(0.65rem * .5);
    padding-left: calc(0.65rem * .5);
}

.so7-form .con2-fobt {
    margin-top: 0;
    flex: 0 0 auto;
    margin-left: 10px;
}

.so7-form .con2-fobt button {
    height: 46px;
    padding: 4px 53px;
}

.so7-form .con2-fol input,
.so7-form .con2-fol textarea {
    border: 1px solid #F4F3E7;
    background: #FFF;
}

@media (max-width: 1536px) {
    .so1-sw {
        padding: 0 70px;
    }

    .so1 {
        padding: 70px 0 60px;
    }

    .so1-h span {
        top: -15px;
    }

    .so1-h {
        margin-bottom: 30px;
    }

    .so2 {
        padding: 76px 0 72px;
    }

    .so4 {
        padding-top: 60px;
    }

    .so4-h span {
        top: -15px;
    }

    .so4-p {
        margin-bottom: 30px;
    }

    .so5 {
        padding: 65px 0 70px;
    }

    .so5-h span {
        top: -15px;
    }

    .so6 {
        padding: 65px 0 70px;
    }

    .so6-h span {
        top: -15px;
    }

    .so2-2 {
        width: calc(100% - 58% - 40px);
    }

    .ind-end {
        padding: 45px 0;
    }

    #so1-sw .swiper-button-prev {
        left: 20px;
    }

    #so1-sw .swiper-button-next {
        right: 20px;
    }

    .ven1-ate p {
        font-size: 21px;
        line-height: 21px;
    }

    #footer .ven1-ate p {
        font-size: 21px;
        line-height: 21px;
    }
}

@media (max-width: 1199.9px) {

    #so1-sw .swiper-button-prev,
    #so1-sw .swiper-button-next {
        top: 16vw;
    }
}

@media (max-width: 992px) {
    .so2 {
        flex-direction: column;
    }

    .so2-1 {
        width: 100%;
        margin-bottom: 20px;
    }

    .so2-2 {
        width: 100%;
    }

    .so3 .vr-box iframe {
        height: 400px;
    }

    .so7-form .con2-fol {
        width: 100%;
        margin-bottom: 10px !important;
    }

    .so7-form .con2-fo {
        flex-direction: column;
    }

    .so7-form .con2-fobt {
        margin-left: 0;
    }

    .so7-form .con2-fou {
        width: 100%;
    }

    .so2-u {
        flex-wrap: wrap;
    }
}

@media (max-width: 768px) {
    .so2-l {
        width: 50%;
        margin-bottom: 20px;
    }

    .so2-l:nth-child(2n) {
        display: none;
    }

    .so2-l>span {
        display: none;
    }

    .so6-chan {
        display: none;
    }
}

@media (max-width: 499px) {
    .banner-chan .swiper-pagination {
        display: none;
    }

    .banner-chan .slick-arrow i {
        --w: 28px;
    }

    .so1-h span {
        width: max-content;
    }

    .so1 {
        padding: 40px 0 30px;
    }

    .so1-h {
        margin-bottom: 20px;
    }

    .so2 {
        padding: 46px 0 42px;
    }

    .so4 {
        padding-top: 40px;
    }

    .so4-h span {
        top: -10px;
    }

    .so5 {
        padding: 45px 0 40px;
    }

    .so5-h {
        margin-bottom: 23px;
    }

    .so4-h {
        margin-bottom: 20px;
    }

    .so6 {
        padding: 45px 0 30px;
    }

    .so6-top {
        margin-bottom: 20px;
    }

    .ind-end {
        padding: 40px 0;
    }

    .so7-p {
        margin-bottom: 25px;
    }


    #so1-sw .swiper-button-prev {
        left: 0;
    }

    #so1-sw .swiper-button-next {
        right: 0;
    }

    #so1-sw .swiper-button-prev,
    #so1-sw .swiper-button-next {
        top: 50%;
    }
}

/* ab4 */
.ab4sp-box {
    padding-top: 30px;
    padding-bottom: 60px;
}

/*  */
.ab4sp-sw1 {
    margin-bottom: 10px;
    position: relative;
}

#ab4sp-sw1 {
    overflow: hidden;
}

#ab4sp-sw1 .swiper-button-prev,
#ab4sp-sw1 .swiper-button-next {
    --w: 34px;
    width: var(--w);
    height: var(--w);
    border-radius: 50%;
    background: #C1DA68;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1 !important;
    pointer-events: auto !important;
    cursor: pointer !important;
    top: auto;
    transition: all 0.5s ease;
    bottom: -11.5%;
}

#ab4sp-sw1 .swiper-button-prev:hover,
#ab4sp-sw1 .swiper-button-next:hover {
    background: #004844;
}

#ab4sp-sw1 .swiper-button-prev::after,
#ab4sp-sw1 .swiper-button-next::after {
    font-size: 14px;
    color: #FFF;
    opacity: 1;
}

.ab4sp-sw1box {
    position: relative;
    cursor: pointer;
}

.ab4sp-sw1img .img-box {
    padding-bottom: 64%;
}

.ab4sp-sw1img .img-box img {
    transition: all 0.5s ease;
}

.ab4sp-sw1box:hover .ab4sp-sw1img .img-box img {
    transform: scale(1.08);
}

.ab4sp-sw1h {
    position: absolute;
    left: 0;
    bottom: 0;
    background: rgba(0, 0, 0, .3);
    width: 100%;
    padding: 25px 5%;
    z-index: 12;
}

.ab4sp-sw1h p {
    color: #fff;
    font-weight: normal;
    font-size: var(--zj-subnav);
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
    text-overflow: ellipsis;
}

.ab4sp-sw2 {
    position: relative;
}

#ab4sp-sw2 {
    overflow: hidden;
}

#ab4sp-sw2 .swiper-slide .ab4sp-sw1img {
    padding: 4.2px;
    transition: all 0.5s ease;
    border: 1px solid #fff;
}

#ab4sp-sw2 .swiper-slide .ab4sp-sw1box:hover .ab4sp-sw1img {
    border: 1px solid #C1DA68;
}

@media (max-width: 1199.9px) {

    #ab4sp-sw1 .swiper-button-prev,
    #ab4sp-sw1 .swiper-button-next {
        bottom: -13.5%;
    }
}

@media (max-width: 992px) {

    #ab4sp-sw1 .swiper-button-prev,
    #ab4sp-sw1 .swiper-button-next {
        bottom: -16.5%;
    }
}

@media (max-width: 768px) {

    #ab4sp-sw1 .swiper-button-prev,
    #ab4sp-sw1 .swiper-button-next {
        bottom: -22.5%;
    }
}

@media (max-width: 499px) {

    #ab4sp-sw1 .swiper-button-prev,
    #ab4sp-sw1 .swiper-button-next {
        bottom: -27.5%;
        --w: 28px;
    }

    #ab4sp-sw1 .swiper-button-prev::after,
    #ab4sp-sw1 .swiper-button-next::after {
        font-size: 12px;
    }

    .ab4sp-box {
        padding-top: 20px;
        padding-bottom: 40px;
    }
}

#ab4sp-sw2 .swiper-button-prev,
#ab4sp-sw2 .swiper-button-next {
    --w: 40px;
    width: var(--w);
    height: var(--w);
    border-radius: 50px;
    background: #C1DA68;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1 !important;
    transition: all 0.5s ease;
}

#ab4sp-sw2 .swiper-button-prev {
    left: -60px;
}

#ab4sp-sw2 .swiper-button-next {
    right: -60px;
}

#ab4sp-sw2 .swiper-button-prev:hover,
#ab4sp-sw2 .swiper-button-next:hover {
    background: #004844;
}

#ab4sp-sw2 .swiper-button-prev::after,
#ab4sp-sw2 .swiper-button-next::after {
    font-size: 14px;
    line-height: normal;
    color: #FFF;
}

@media (max-width: 1536px) {
    .ab4sp-sw2 {
        padding: 0 70px;
    }

    #ab4sp-sw2 .swiper-button-prev {
        left: 20px;
    }

    #ab4sp-sw2 .swiper-button-next {
        right: 20px;
    }

    #ab3-sw .swiper-button-prev {
        left: 0;
    }

    #ab3-sw .swiper-button-next {
        right: 0;
    }

    #ab3-sw {
        overflow: hidden;
        max-width: 90%;
        margin: auto;
    }

}