@import "./common.less";

body {
    font-size: var(--ft16);
    color: #000;
    .d-flex;

    .flex-column;
    min-height: 100vh;

    @media (max-width: 768px) {}
}

main {
    flex: 1;
}

.top_box {
    width: 100%;
    position: relative;
    color: #fff;
    display: flex;
    align-items: center;
    aspect-ratio: 1920/530;
    min-height: 300px;

}

.Child {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(36, 97, 53, 0.4);

    .main {
        .d-flex;
    }

    .item {
        font-size: vaR(--ft24);
        display: inline-block;
        color: #fff;
        text-align: center;
        white-space: nowrap;
        padding: var(--p15) var(--p20);
        position: relative;
        z-index: 1;
        width: 300px;

        &:before {
            display: block;
            content: '';
            .bgc;
            position: absolute;
            top: 0;
            left: 0;
            bottom: 0;
            width: 0;
            transform: skewX(-10deg);
            z-index: -1;
            opacity: 0;
            transition: all 0.3s
        }

        &:hover,
        &.active {
            &:before {
                width: 100%;
                opacity: 1;
                right: auto;
            }
        }
    }
}

.pagenum {

    a,
    span {
        font-size: var(--ft14);
        color: #999999;
        background: rgba(255, 255, 255, 1);
        border-radius: 3px;
        border: 1px solid rgba(153, 153, 153, 1);
        min-width: 2.1em;
        padding: 0 0.6em;
    }
}

.top_box .img {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.top_box .block {
    .flex-column-center;
    position: relative;
    z-index: 1;

}

.top_box h1 {
    font-weight: normal;
    text-align: center;
    font-size: var(--ft36);
}

.top_box .t2 {
    margin-top: var(--p20);
    font-size: var(--ft20);

}

.top_box .img img {

    // animation: clearUp 1s ease-out forwards;
}

// @keyframes clearUp {
//     0% {
//         scale: 1.2;
//         filter: blur(15px) brightness(0.9);
//     }

//     100% {
//         scale: 1;
//         filter: blur(0) brightness(1.1);
//     }
// }

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: var(--p15) var(--p15);
    border: 1px solid #dcdfe6;
    font-size: var(--p14);
    color: #000;
    background-color: #fff;
    border-radius: 5px;
    transition: border-color 0.3s, box-shadow 0.3s;

}

&.must {
    position: relative;

    .form-input,
    .form-select,
    .form-textarea {

        padding-left: vaR(--p25);
    }

    &:before {
        top: 5px;
        position: absolute;
        display: inline-block;
        content: '*';
        padding-left: var(--p10);
        color: rgba(226, 36, 36, 1);
    }

}

.form-input::placeholder,
.form-textarea::placeholder {
    color: #c0c4cc;
    transition: color 0.3s ease;
}

.form-input:focus::placeholder,
.form-textarea:focus::placeholder {
    color: #86909c;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--ftc);
    box-shadow: 0 0 0 2px #24613514;
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
    line-height: 1.6;
}

.option-group {
    display: flex;
    gap: var(--p20);
    flex-wrap: wrap;
    margin-top: 8px;
}

.option-item {
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    color: #4e5969;
}

.option-item input[type="radio"],
.option-item input[type="checkbox"] {
    appearance: none;
    width: 1.5em;
    height: 1.5em;
    border: 1px solid var(--ftc);
    border-radius: 50%;
    /* 单选框圆形 */
    position: relative;
    transition: all 0.3s;
}

.option-item input[type="checkbox"] {
    border-radius: 4px;
    /* 复选框方形 */
}

/* 选中状态样式 */
.option-item input:checked {
    border-color: var(--ftc);
    background-color: var(--ftc);
}

/* 单选框选中时的圆点 */
.option-item input[type="radio"]:checked::after {
    content: "";
    position: absolute;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #fff;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* 复选框选中时的对勾 */
.option-item input[type="checkbox"]:checked::after {
    content: "✓";
    position: absolute;
    color: #fff;
    font-size: 12px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.backtop {
    opacity: 0;
    width: 40px;
    aspect-ratio: 1/1;
    background: linear-gradient(var(--ftc));
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    cursor: pointer;
    position: relative;
    border: none;
    position: fixed;
    right: var(--p20);
    box-shadow: 0 5px 8px rgba(0, 0, 0, 0.3);
    bottom: vaR(--p50);
    transition: all 0.3s;
    visibility: hidden;

    .arrow path {
        fill: white;
    }



    &:hover .arrow {
        animation: slide-in-bottom .7s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
    }

    @keyframes slide-in-bottom {
        0% {
            transform: translateY(10px);
            opacity: 0;
        }

        100% {
            transform: translateY(0);
            opacity: 1;
        }
    }

}

.NavTop {
    border-radius: 0px 0px 0px 0px;
    padding: var(--p20);
    color: #999999;
    font-size: vaR(--ft14);

    a:hover {
        .ftc;
    }

    span {
        margin: 0 0.05em;
    }
}

header {
    white-space: nowrap;

    form {
        position: relative;
    }

    .right {
        .d-flex;
        .al-c;
        .jc-fe;
        gap: var(--p60);
    }

    .drown {
        display: inline-flex;
        .al-c;
        gap: var(--p10);
        cursor: pointer;
        position: relative;

        dl {
            width: max-content;
            display: none;
            background: #ffffff;
            position: absolute;
            overflow: hidden;
            top: 100%;
            transition: auto;
            padding: 15px 30px;
            left: 50%;
            transform: translateX(-50%);
            box-shadow: 0px 0px 10px 5px #00000010;
            border-radius: 5px;
            z-index: 999;
        }

        .item {
            .d-grid;
            gap: var(--p10);

            &:hover {
                .ftc;
            }
        }
    }

    .input-container {
        position: relative;
        display: flex;
        align-items: center;

        &::before {
            position: absolute;
            left: 0;
            right: 0;
            top: 0;
            bottom: 0;
            .bgc;
            display: block;
            content: '';
            z-index: -2;
        }
    }

    .input {
        width: 35px;
        height: 35px;
        border-radius: 0;
        outline: none;
        background-color: #fff;
        background: var(--bgc);
        color: #fff;
        padding: 18px 16px;
        background-color: transparent;
        cursor: pointer;
        transition: all .5s ease-in-out;
        border-top: 1px solid rgba(0, 0, 0, 0);
        border-bottom: 1px solid rgba(0, 0, 0, 0);
    }

    .input::placeholder {
        color: transparent;
    }


    .input:focus::placeholder {
        color: rgba(255, 255, 255, 0.6);
    }

    .input:focus,
    .input:not(:placeholder-shown) {
        height: 35px;
        border-bottom: 1px solid var(--color);
        width: 145px;
        font-size: var(--ft14);
        cursor: none;
        padding: 8px 16px 8px 36px;
    }

    .icon {
        top: 50%;
        transform: translateY(-50%);
        position: absolute;
        left: 5px;
        height: 24px;
        width: 24px;
        border-radius: 99px;
        z-index: -1;

        path {
            fill: #fff;

        }
    }

    .input:focus+.icon,
    .input:not(:placeholder-shown)+.icon {
        z-index: 0;
        background-color: transparent;
        border: none;
    }

    .logo {
        display: inline-block;
        max-width: 50vw;

    }

    top: 0;
    padding: vaR(--p15) 0;
    z-index: 999;
    position: fixed;
    background: rgba(255, 255, 255, 0.8);
    width: 100%;
    transition: all 0.5s;

    .logo {
        img {
            max-height: 50px;
        }
    }


    .hnav {
        .d-flex;
        .jc-s;
        gap: var(--p60);
        .al-c;

        .nav-child {
            position: absolute;
            left: 50%;
            top: 100%;
            font-size: vaR(--ft14);
            text-align: center;
            width: max-content;
            display: block;
            transform: translateX(-50%);
            border-radius: 5px;
            background: rgba(255, 255, 255, 0.8);
            box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.16);

            dl {
                padding: vaR(--p20) 0;
                display: block;
                width: 100%;
                white-space: nowrap;
                .d-grid;
                gap: 5px;
            }

            dd {

                padding: 5px var(--p20);
            }

            a {
                position: relative;

                &::after {
                    content: "";
                    display: block;
                    width: 0;
                    height: 1px;
                    background-color: var(--color);
                    position: absolute;
                    bottom: 0;
                    left: 0;
                    background-color: var(--ftc);
                    transition: all 0.3s;

                }

                &.active,
                &:hover {
                    .ftc;

                    &::after {
                        width: 100%;
                    }
                }
            }
        }

        li {
            position: relative;

            .flex-center;


            &::after {
                content: "";
                display: block;
                width: 0;
                height: 1px;
                background-color: var(--color);
                position: absolute;
                bottom: 0;
                left: 0;
                background-color: var(--ftc);
                transition: all 0.3s;

            }

            &:hover {
                .nav-child {
                    height: auto;
                    opacity: 1;
                }
            }

            &:hover,
            &.active {

                >.item {
                    .ftc;
                }

                &::after {
                    width: 100%;
                }
            }
        }

        .item {
            position: relative;
            overflow: hidden;

            * {
                transition: all 0.5s;
            }

            .t1 {
                position: relative;
                bottom: 0;

            }

            .t2 {
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
            }


        }
    }

    &.bgcolor {
        .backtop {
            visibility: visible;
            opacity: 1;
        }
    }

}

.NavTop+section {
    padding-top: vaR(--p60);
}

.titleCom {
    margin-bottom: var(--p40);
    .flex-column-center;
    gap: 0.4em;

    h1 {
        font-size: vaR(--ft36);
        font-weight: normal;
        text-align: center;

    }

    h2 {
        font-weight: bold;
        .ftc;
        font-size: vaR(--ft36);
        text-align: center;
        .d-flex;
        .al-c;
        gap: var(--p10);
    }

    hr {
        width: 70px;
        height: 5px;
        .bgc;
    }

    &.left {
        .al-fs;
    }
}

.Banner_swiper {
    height: 100vh !important;

    video {
        object-fit: cover;
    }

    .video {
        height: 100%;
    }

    .img {
        height: 100%;
    }

    .img1 {
        height: 100%;
        display: none;
    }

    .item {
        height: 100%;
        position: relative;

    }

    .block {
        .flex-column-center;
        gap: vaR(--p20);
        color: #fff;
        height: 100%;
        position: relative;
        z-index: 4;
        text-align: center;
    }

    h1 {
        transition: all 0.5s;
        opacity: 0;
        transform: translateY(60px);
        border-radius: 5px;
        color: #fff;
        line-height: 1.7em;
        position: relative;
        z-index: 4;
        width: 700px;
        max-width: 100%;
        padding: var(--p50);
        font-size: vaR(--ft24);
        background: rgba(0, 0, 0, 0.5);
    }





    .bg {
        left: 0;
        right: 0;
        top: 0;
        bottom: 0;
        position: absolute;
        z-index: 0;
    }

    .zhenshangyin-slide-active {
        h1 {
            transition-delay: 0.5s;
            opacity: 1;
            transform: translateY(0);
        }
    }
}

footer {
    background: #000000;
    color: #fff;

    .footerUl {
        .d-grid;
        grid-template-columns: 55% 35%;
        gap: 10%;
        .al-fs;
        .jc-s;

    }

    .priend {
        margin-top: vaR(--p40);
        .d-flex;
        .al-fs;
        gap: var(--p20);

        .item {
            width: 1.5em;

            &:hover {
                animation: sh0 0.5s ease-in-out both;
            }

            @keyframes sh0 {
                0% {
                    transform: rotate(0deg) translate3d(0, 0, 0);
                }

                25% {
                    transform: rotate(7deg) translate3d(0, 0, 0);
                }

                50% {
                    transform: rotate(-7deg) translate3d(0, 0, 0);
                }

                75% {
                    transform: rotate(1deg) translate3d(0, 0, 0);
                }

                100% {
                    transform: rotate(0deg) translate3d(0, 0, 0);
                }
            }
        }

    }

    .info {
        .d-grid;
        gap: var(--p10);

        li {
            .al-fs;
            .d-grid;
            grid-template-columns: 1.5em 1fr;
            gap: var(--p10);
        }
    }

    nav {
        .d-flex;
        .al-fs;
        .jc-s;
        flex-wrap: wrap;
        gap: var(--p10) var(--p60);

        .t1 {
            font-size: vaR(--ft20);
        }

        a:hover {
            opacity: 0.8;
        }

        dl {
            color: rgba(238, 238, 238, 1);
            .d-grid;
            gap: 0.5em;
            margin-top: vaR(--p20);

        }
    }

    .footerLogo {
        margin-bottom: vaR(--p40);

        img {
            max-height: 60px;
        }

    }

    .foot1 {

        padding: var(--p60) 0 vaR(--p80);
    }

    .foot2 {
        padding: var(--p15) 0;
        border-top: 1px solid #555555;
        .flex-center;
        gap: 5px var(--p20);

        a[href]:hover {
            opacity: 0.8;
        }
    }
}

.ContactPage {
    .bg_img;

    .title {
        font-weight: bold;
        color: #fff;
        .d-flex;
        .al-c;
        .jc-c;
        gap: var(--p10);
        font-size: var(--ft36);
        margin-bottom: var(--p50);

        img {
            max-height: 1.5em;
        }
    }

    .Info1 {
        padding: vaR(--p30);
        .bg_img;
        .d-grid;
        grid-template-columns: 0.9fr 1fr;
        gap: var(--p50);
    }

    form {
        gap: var(--p15) var(--p20);
    }

    .desc {
        color: #666;
        margin-bottom: vaR(--p10);
    }

    .btn {

        font-size: vaR(--ft20);
        --btn: 50px;
        color: #fff;
        width: 100%;
        display: flex;
        align-items: center;
        .jc-c;
        border: none;
        overflow: hidden;
        transition: all 0.2s;
        cursor: pointer;
        border-radius: 5px;

        span {
            display: block;
            margin-left: 0.3em;
            transition: all 0.3s ease-in-out;
        }

        svg {
            display: block;
            transform-origin: center center;
            transition: transform 0.3s ease-in-out;
        }

        &:hover {
            opacity: 1;
        }

        &:hover .svg-wrapper {
            animation: fly-1 0.6s ease-in-out infinite alternate;
        }

        &:hover svg {
            transform: translateX(-0.5em) rotate(45deg) scale(1.1);
        }

        &:hover span {
            transform: translateX(0.5em);
        }

        &:active {
            transform: scale(0.95);
        }

        @keyframes fly-1 {
            from {
                transform: translateY(0.1em);
            }

            to {
                transform: translateY(-0.1em);
            }
        }
    }

    form {

        border-radius: 5px;
        background: rgba(255, 255, 255, 1);
        box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.16);
        padding: var(--p40) var(--p30);
    }

    .info {
        margin-top: vaR(--p30);
        .d-grid;
        gap: var(--p10);

        li {
            .al-fs;
            .d-grid;
            grid-template-columns: 1.5em 1fr;
            gap: var(--p10);
        }
    }

    &.com {
        .Info1 {
            background: rgba(255, 255, 255, 1);
        }
    }
}

h1,
h2,
h3,
h5,
h4 {
    font-weight: normal;
}

.ProDetailsS {
    h4 {
        font-size: var(--ft24);
        margin-bottom: var(--p35);
    }
}

.pager1 {
    display: flex !important;
    .flex-center;
    position: unset;
    transform: unset;
    margin-top: vaR(--p20);

    .zhenshangyin-pager-bullets-bullet {

        background-color: #F2F2F2;

        &.active {
            .bgc;
        }
    }
}

.ProductSwiper {
    width: 100%;


}

.ProDetailsMain {
    --main: 1200px;
}

.ProDetails {

    .con {
        color: #333;
        line-height: 1.8em;
    }

    .thead {
        .d-flex;
        .al-fs;
        gap: var(--p60);
        font-size: vaR(--ft20);
        margin-bottom: var(--p30);

        .item {
            cursor: pointer;

            &.active {
                font-weight: bold;
                .ftc;
            }
        }
    }

    .tbody {
        .item {
            display: none;

            &.active {
                display: block;
            }
        }
    }

    .Content {
        margin-top: vaR(--p60);
        padding: var(--p35) var(--p25);

        background: #FEFEFE;
        box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.16);
    }

    .Product_top {

        border: 1px solid rgba(221, 221, 221, 1);

        aspect-ratio: 1/1;
        margin-bottom: var(--p40);

    }

    .Product_thumb {
        width: 100%;

        .Item {
            cursor: pointer;
            aspect-ratio: 1/1;
            border: 1px solid rgba(221, 221, 221, 1);

        }
    }

    .Product_thumb_box {
        position: relative;
        .d-flex;
        .al-c;
        padding: 0 var(--p30);

        .zhenshangyin-prev,
        .zhenshangyin-next {
            background: initial;
            width: auto;
        }

        .zhenshangyin-slide-active {
            border-color: #000;
        }
    }

    .Info {
        .d-grid;
        grid-template-columns: 0.7fr 1fr;
        gap: var(--p80);

        .Text {
            padding: var(--p50) 0;
            line-height: 1.7em;
        }

        h3 {
            font-size: var(--ft24);
        }

        .sub {
            margin-top: 0.3em;
        }

        .sub1 {}

        hr {
            margin: vaR(--p25);
            height: 1px;
            width: 100%;
            background: rgba(236, 236, 236, 1);
        }

        .tips {
            color: #999;
            font-size: vaR(--ft14);
        }
    }
}

.ProductList {
    .d-grid;
    .grid4;
    gap: var(--p40) vaR(--p25);
}

.ProducItem {
    display: block;

    .img {
        aspect-ratio: 330/440;
    }

    .con {
        padding-top: vaR(--p10);
    }

    h5 {
        font-size: vaR(--ft20);
        .line-clamp1;
        color: #333;
    }

    .sub {
        margin-top: 0.4em;
        .line-clamp1;
        color: #666666;
    }
}

.SerivePic {
    .bg_img;
    color: #fff;
    padding: var(--p180) 0;
    text-align: center;

    h1 {
        font-size: var(--ft40);
    }

    .desc {
        margin-top: var(--p20);
        font-size: var(--ft60);

    }
}

.SeriveCard {
    padding: 0;

    .main {
        .d-grid;
        gap: var(--p100);
        grid-template-columns: 0.6fr 1fr;
    }

    .Text {
        padding: var(--p100) 0;
    }

    .desc {}
}

.descCom {
    text-align: center;
    font-size: var(--ft20);
    color: #333333;

    &.Left {
        text-align: left;
    }
}

.SeriveTime {
    background: #FAFAFA;

    .descCom {
        margin-bottom: var(--p80);

    }

    ul {
        .d-grid;
        gap: var(--p50);
        padding: var(--p40) 0;
        position: relative;

        &::before {
            display: block;
            content: '';
            position: absolute;
            .bgc;
            left: 50%;
            transform: translateX(-50%);
            top: 0;
            width: 4px;
            bottom: 0;

        }

        &::after {
            display: block;
            content: '';
            position: absolute;
            .bgc;
            left: 50%;
            transform: translateX(-50%);
            top: 0;
            height: 1.2em;
            width: 1.2em;
            border-radius: 50%;

        }

        li {
            .d-grid;
            .grid2;
            gap: 4px;

            .text {
                direction: ltr;

            }

            .sub {
                margin-top: vaR(--p20);
            }

            h5 {
                font-size: vaR(--ft20);

                .num {
                    font-weight: normal;
                    font-size: var(--ft30);
                    .ftc;
                }
            }

            .con {
                .d-grid;
                gap: vaR(--p30);
                grid-template-columns: 110px 1fr;
            }

            &:nth-child(even) {
                direction: rtl;

                .img {
                    transform: scaleX(-1);

                }
            }
        }
    }

}

.SeriveInfo {
    ul {
        .d-grid;
        .grid2;
        gap: var(--p50) var(--p80);
        margin-top: vaR(--p80);
        text-align: center;

        .img {
            aspect-ratio: 660/440;
        }

        h5 {
            margin-top: vaR(--p10);
            font-size: var(--ft24);

        }
    }
}

.moreBtn {
    --bg: var(--bgc);
    background: #fff;
    .ftc;
    display: block;
    padding: var(--p10) var(--p30);
    border: 1px solid var(--ftc);
    border-radius: 5px;

    &:hover {
        color: #fff;
        scale: 1.1;
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    }
}

@keyframes bounceIn {

    0%,
    20%,
    40%,
    60%,
    80%,
    to {
        -webkit-animation-timing-function: cubic-bezier(.215, .61, .355, 1);
        animation-timing-function: cubic-bezier(.215, .61, .355, 1)
    }

    0% {
        opacity: 0;
        -webkit-transform: scale3d(.3, .3, .3);
        transform: scale3d(.3, .3, .3)
    }

    20% {
        -webkit-transform: scale3d(1.1, 1.1, 1.1);
        transform: scale3d(1.1, 1.1, 1.1)
    }

    40% {
        -webkit-transform: scale3d(.9, .9, .9);
        transform: scale3d(.9, .9, .9)
    }

    60% {
        opacity: 1;
        -webkit-transform: scale3d(1.03, 1.03, 1.03);
        transform: scale3d(1.03, 1.03, 1.03)
    }

    80% {
        -webkit-transform: scale3d(.97, .97, .97);
        transform: scale3d(.97, .97, .97)
    }

    to {
        opacity: 1;
        -webkit-transform: scaleX(1);
        transform: scaleX(1)
    }
}

.Yewu {
    .foot {
        .flex-center;
        margin-top: vaR(--p60);

    }

    ul {
        li {
            .d-grid;
            .grid2;
            text-align: center;

            &:nth-child(even) {
                direction: rtl;
            }

            &:hover {
                .img2 img {
                    animation: 1s 0.2s bounceIn both;
                }
            }
        }

        .img {
            height: 100%;
        }

        .img2 {
            img {
                max-height: 100px;
            }
        }

        h5 {
            margin-top: vaR(--p30);
            font-size: vaR(--ft30);
        }

        .sub {
            margin-top: vaR(--p10);
            font-size: vaR(--ft20);
        }

        .con {
            padding: vaR(--p60) 0;
            .flex-column-center;
            direction: ltr;
        }
    }
}

.History {

    .zhenshangyin-prev,
    .zhenshangyin-next {
        background: initial;
    }

    .Info {
        padding: vaR(--p100) 0;
        .bg_img;
        background-size: contain;
        min-height: 60vh;
    }

    .History_top {

        font-size: var(--ft20);
        position: relative;

        &::after {
            display: block;
            content: '';
            position: absolute;
            left: 0;
            right: 0;
            top: 10px;
            height: 2px;
            .bgc;
        }

        i {
            display: block;
            margin: 0 auto 10px;
            width: 1px;
            height: 20px;
            .bgc;
        }

        .Item {
            text-align: center;
            cursor: pointer;
        }

        .zhenshangyin-slide-active {
            font-size: var(--ft30);
            font-weight: bold;

            i {
                width: 4px;
            }
        }
    }

    .History_text {
        .Item {
            padding: vaR(--p100) 0;
            text-align: center;
            min-height: 40vh;
        }

        h5 {
            opacity: 0;
            transition: all 0.5s;
            transform: translateY(60px);
            .ftc;
            font-size: var(--ft60);
        }

        .sub {
            margin: var(--p15) auto;
            opacity: 0;
            transition: all 0.5s;
            transform: translateY(60px);
            font-size: var(--ft24);
        }

        .zhenshangyin-slide-active {

            .sub,
            h5 {
                opacity: 1;
                transform: translateY(0);
            }

            .sub {
                width: 800px;
                max-width: 100%;
                transition-delay: 0.5s;
            }
        }
    }
}

.About {
    background: #F6F6F6;

}

.HonerList {
    .d-grid;
    .grid4;
    gap: var(--p25);
    margin-top: vaR(--p70);

    .img {
        cursor: pointer;
        border: 1px solid var(--ftc);

        img {
            transition: all 0.3s;
        }

        &:hover {
            box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);

            img {
                scale: 0.95;
            }
        }
    }
}

.HonerNav {
    .flex-center;
    flex-wrap: wrap;
    gap: var(--p80);

    .item {
        text-align: center;
        border: 1px solid var(--ftc);
        .ftc;
        border-radius: 4px;
        padding: vaR(--p10) var(--p30);
        min-width: 6em;
        font-size: vaR(--ft20);
        cursor: pointer;
        display: block;

        &.active {
            .bgc;
            color: #fff;
        }
    }
}

.AboutPics {
    background: #fff;

    .thead {
        .flex-center;
        gap: var(--p80);
        margin-bottom: var(--p60);

        .item {
            cursor: pointer;

            flex-wrap: wrap;
            text-align: center;
            border: 1px solid var(--ftc);
            .ftc;
            border-radius: 4px;
            padding: vaR(--p10) var(--p30);
            min-width: 7em;
            font-size: vaR(--ft20);
            cursor: pointer;
            display: block;

            &.active {
                .bgc;
                color: #fff;
            }
        }
    }

    .tbody {
        .item {
            display: none;
            transform: translateY(30px);
            transition: all 0.3s;

            &.active {
                display: block;
                transform: translateY(0);
            }
        }

        .img {
            aspect-ratio: 335/225;
            cursor: pointer;
            margin-bottom: vaR(--p20);
        }
    }
}

.AboutInfo {
    .con {
        font-size: var(--ft20);
        color: #333;
        line-height: 1.6em;
    }
}

.AboutTextSwiper {
    width: 100%;
     .next,.prev{
        background-color: rgba(0, 0, 0, 0.5);
        svg path{
        stroke: #fff;
        }
    }

}

.pager2 {
    display: flex !important;
    width: auto;
    bottom: var(--p30);

    .zhenshangyin-pager-bullets-bullet {
        background: #fff;

        &.active {
            .bgc;
        }
    }
}

.AboutText {
    background: #F6F6F6;

    ul {
        .d-grid;
        gap: var(--p80);

        li {
            .d-grid;
            .grid2;
            gap: var(--p35);

            h5 {
                .d-flex;
                .al-c;
                gap: 5px;

                .img_box {
                    width: 1em;
                    display: inline-flex;
                }

                line-height: 1em;
                .ftc;
                font-size: vaR(--ft44);
            }

            .sub {
                margin-top: vaR(--p20);
                font-size: var(--ft22);
            }

            .AboutTextSwiper {
                direction: ltr;
            }

            video {

                object-fit: cover;
            }

            &:nth-child(even) {
                direction: rtl;
                grid-template-columns: 0.7fr 1fr;

                .AboutTextSwiper {
                    aspect-ratio: 800/425;
                }

                h5 {
                    color: #333;
                    font-size: var(--ft24);

                    .img_box {
                        display: none;
                    }
                }

                .sub {
                    margin-top: vaR(--p30);
                    line-height: 1.8em;
                    font-size: var(--ft16);
                }

                .con {
                    .d-flex;
                    .flex-column;
                    .jc-c;
                    direction: ltr;
                }
            }
        }
    }
}

.IndexYoushi {
    .Info {
        .d-grid;
        .grid2;
        gap: var(--p40);
        margin-top: vaR(--p40);
    }

    .Text {

        .d-flex;
        .flex-column;
        .jc-s;
        .al-fs;
    }

    .con {
        line-height: 1.7em;

        h5 {
            font-size: vaR(--ft20);
            margin-bottom: var(--p10);
        }
    }

    .moreBtn {
        padding: var(--p15) var(--p40);
        display: inline-flex;
        background: initial;
    }
}

.IndexProduct {
    .moreBtn {
        --bg: #fff;
        padding: var(--p15) var(--p40);
        display: inline-flex;
        background: initial;
        .bgc;
        color: #fff;

        &:hover {
            .ftc;
        }
    }

    .foot {
        margin-top: vaR(--p60);
        .flex-center;

    }
}

@media only screen and (max-width: 1400px) {
    footer .footerUl {
        grid-template-columns: 58% 38%;
        gap: 4%;
    }
}

@media only screen and (max-width: 990px) {
    header .drown {
        gap: 0;

        img {

            width: 1em;
        }
    }

    header {}

    header .input,
        {
        padding: 5px;
        width: 20px;
        height: 20px;
        padding-right: 20px;
    }

    header .icon {
        width: 15px;
        height: 15px;
        margin-right: 3px;
    }

    header .main {
        max-width: 95%;
    }

    .titleCom {
        h2 img {
            width: 1em;
        }
    }

    .Banner_swiper {
        height: 50vh !important;

        .img1 {
            display: block;
        }

        .video {
            display: none;
        }
    }

    footer nav {
        flex-wrap: wrap;
    }

    footer .footerUl {
        .d-flex;
        .flex-column;
        gap: vaR(--p30);

    }

    .AboutPics .thead {
        flex-wrap: wrap;

        .item {
            min-width: 3em;
        }
    }

    .menu_button .line {
        stroke: var(--ftc);
    }

    .Yewu ul .img2 img {
        width: 3em;
    }

    .SeriveTime ul li .con {

        grid-template-columns: 0 1fr;
    }

    .SeriveCard .main {
        max-width: 100%;
    }

    .Yewu ul li,
    .AboutText ul li:nth-child(even),
    .ContactPage .Info,
    .IndexYoushi .Info,
    .AboutText ul li {
        .grid1;
    }

    .HonerList,
    .ProductList {
        .grid2;
    }

    header {
        .logo {
            max-width: 50vw;

            img {
                max-height: 30px;
            }
        }
    }

    footer {
        .footerLogo {

            img {
                max-height: 30px;
            }
        }
    }
}

@media only screen and (max-width: 768px) {}

@media only screen and (min-width: 751px) and (max-width: 1400px) {}

@media only screen and (min-width: 751px) {}