@import "./common.less";

body {
    font-size: var(--ft16);
    color: #000;
    .d-flex;

    .flex-column;
    min-height: 100vh;

    @media (max-width: 768px) {}
}

.layui-btn {
    border-radius: 6px;

    &:hover {
        opacity: 1;
    }
}

.splitting {
    --delay: 0s;
    overflow: hidden;
    line-height: 1.2em;
}

.splitting .char {
    display: inline-block;
    visibility: visible;
    opacity: 0;
    transform: translateY(100%);
    transition: all 0.4s;
    transition-delay: calc(var(--delay) + (.9s * var(--char-index) / var(--char-total)));
}

.animate__animated .char {
    opacity: 1;
    transform: translateY(0);
}
 :root {
            --loader-bg-color: #E5E7EB;
            /* 加载背景色 */
            --loader-shine-color: rgba(255, 255, 255, 0.2);
            /* 光效颜色 */
            --loader-animation-duration: 1.5s;
            /* 动画持续时间 */
        }

        .image-container {
            position: relative;
            background: #e6e5e53b;
        }

        /* 关键修改：使用::before伪元素替代原来的.loader-shine元素 */
        .image-container::before {
            content: '';
            /* 伪元素必须有content属性 */
            position: absolute;
            top: 0;
            left: 0;
            width: 50%;
            height: 100%;
            background: linear-gradient(to right,
                    rgba(255, 255, 255, 0) 0%,
                    var(--loader-shine-color) 50%,
                    rgba(255, 255, 255, 0) 100%);
            animation: pulseLoader var(--loader-animation-duration) infinite;
            /* 加载完成后隐藏伪元素 */
            opacity: 1;
            transition: opacity 0.3s ease;
        }

        .image-container::after {
            background: border-radius;
        }

        /* 图片加载完成后隐藏伪元素动画 */
        .image-container.loaded::before {
            opacity: 0;
            display: none;
        }

        .image-container.loaded {
            background: initial;
        }

        .image-loading {
            opacity: 0;
            transition: opacity 0.5s ease-in-out;
        }

        .image-loaded {
            opacity: 1;
        }

        @keyframes pulseLoader {
            0% {
                transform: translateX(-100%);
            }

            100% {
                transform: translateX(150%);
            }
        }
.fill-circle {
    --x: 0%;
    --y: 0%;
    display: none;
}

.capsule {
    z-index: 1;
    position: relative;
    overflow: hidden;
}

.capsule:before {
    z-index: -1;
    content: "";
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}


.fill-circle {
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    border-radius: inherit;
    overflow: hidden
}

.fill-circle:before {
    z-index: -1;
    content: "";
    position: absolute;
    display: block;
    top: var(--y);
    left: var(--x);
    aspect-ratio: 1/1;
    border-radius: 50%;
    background: #fff;
    width: 100%;
    opacity: .15;
    transform: translate(-50%, -50%) scale(0)
}


.fill-circle1:hover:before {
    animation: fill-circle-aniamtion .65s ease-out;
    animation-fill-mode: forwards;
}

.fill-circle1:hover:before {
    animation: fill-circle-aniamtionx .65s ease-out;
    animation-fill-mode: none;
}

@keyframes fill-circle-aniamtion {
    0% {
        transform: translate(-50%, -50%) scale(0);
        opacity: .15
    }

    to {
        transform: translate(-50%, -50%) scale(1.5);
        opacity: 1
    }
}

@keyframes fill-circle-aniamtionx {
    0% {
        transform: translate(-50%, -50%) scale(0);
        opacity: .15
    }

    to {
        transform: translate(-50%, -50%) scale(1.5);
        opacity: 0
    }
}

main {
    flex: 1;
}

.backtop {
    opacity: 0;
    width: 40px;
    aspect-ratio: 1/1;
    background: linear-gradient(var(--ftc), #008ec7b5);
    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;
        }
    }

}

header {
    position: sticky;
    background: #fff;
    padding: var(--p15) 0;

    .logo {
        flex: 1;

        img {
            max-height: 60px;
        }
    }

    .layui-nav .layui-nav-more {
        display: none;
    }

    .layui-nav .layui-nav-item {
        margin-left: var(--p40);
    }

    .layui-nav .layui-nav-item>a {
        color: #000;
        padding: 0;
        font-size: var(--ft20);

        &:hover {
            color: #000;
        }
    }

    &.bgcolor {
        padding: 0;
        .backtop {
            visibility: visible;
            opacity: 1;
        }
    }
}

footer {
    color: #fff;
    background: #0066CB;

    .foot1 {
        padding: var(--p60) 0;

        .t1 {
            font-size: vaR(--ft20);

            margin-bottom: var(--p30);
        }

        dl {
            .d-grid;
            gap: var(--p20);
        }

        ul {
           display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 40%;
        }

        a[href] {
            span {
                position: relative;

                &::before {
                    display: block;
                    content: '•';
                    opacity: 0;
                    position: absolute;
                    right: 110%;
                    bottom: 100%;
                    transition: all 0.3s;
                }
            }

            &:hover {
                opacity: 0.9;

                span {

                    &::before {
                        opacity: 1;
                        bottom: 0;
                        line-height: 1em;
                    }
                }

            }
        }

        .qrcode {
            .d-flex;
            flex-wrap: flex-wrap;
            gap: var(--p20);
        }

        .item {
            position: relative;

            &:hover {
                .img {
                    opacity: 1;
                    transform: translateX(-50%) scale(1);
                    bottom: 100%;
                }
            }
        }

        .img {
            transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            width: 8em;
            aspect-ratio: 1/1;
            position: absolute;
            padding: var(--p10);
            opacity: 0;
            left: 50%;
            transform: translateX(-50%) scale(0.5);
            bottom: 0%;
            background: #fff;
            z-index: 2;
            border-radius: 8px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        }
    }

    .foot2 {
        text-align: center;
        padding: vaR(--p20) 0;
        font-size: vaR(--ft12);
        border-top: 1px solid #ADD6FF;
    }
}

.titleCom {
    font-size: var(--ft36);
    text-align: center;
    margin-bottom: var(--p50);
    line-height: 1em;
}

.ContactInfo {
    .Info {
        .d-grid;
        border-radius: 6px;
        overflow: hidden;
        grid-template-columns: 0.8fr 1fr;
    }

    form {
        overflow: hidden;
        .d-grid;
        gap: var(--p10);
        background: #F4F4F4;
        padding: var(--p40) var(--p30);

        .label {
            font-size: vaR(--ft18);
            color: #A9A9A9;
        }

        .layui-input,
        .layui-select,
        .layui-textarea {
            border: none !important;
            padding: 0;
            box-shadow: none;
        }

        .form_item {
            .d-grid;
            .al-c;
            gap: vaR(--p10);
            grid-template-columns: 5em 1fr;

            padding: var(--p10) var(--p35);
            background: #FFFFFF;
            border-radius: 6px;

            &.textarea {
                .grid1;
            }

        }

        .foot {
            margin-top: vaR(--p30);
            .flex-center;
        }

        .layui-btn {
            --btn: 66px;
            --btn_size: var(--ft24);
            padding: 0 var(--p90);
        }
    }

    .Text {
        padding: var(--p90) var(--p70);
        .bgc;
        color: #fff;

        .con {
            font-size: var(--ft24);
            line-height: 2em;
        }

        ul {
            font-size: vaR(--ft22);
            margin-top: vaR(--p100);
            .d-grid;
            gap: vaR(--p40);

            li {
                transition: all 0.8s;
                position: relative;
                .d-grid;
                grid-template-columns: 1.5em 1fr;
                gap: var(--p20);

                &.animate__animated {
                    left: 0 !important;
                }
            }
        }
    }
}

.JoinList {
    .d-grid;
    .grid3;
    gap: var(--p30) var(--p25);

    .item {
        width: 100%;
        color: #191919;
        padding: vaR(--p25) var(--p20);
        display: block;
        border-radius: 4px;
        border: 1px solid #0062B5;
        background: #fff;
        transition: all 0.3s;

        &:hover {
            box-shadow: 3px 3px 5px 0px rgba(1, 12, 52, 0.15);
        }

        .t1 {
            .d-flex;
            .al-c;
            .jc-s;

        }

        h5 {
            font-size: vaR(--ft22);
            font-weight: normal;
            .line-clamp1;
        }

        .add {
            font-size: vaR(--ft14);

        }

        dl {
            margin-top: vaR(--p15);
            .d-flex;
            .al-fs;
            .jc-fs;
            gap: vaR(--p15);
            flex-wrap: wrap;

            dd {
                padding: 5px var(--p20);
                background: #F3F8FB;
                border-radius: 4px;
            }
        }

        .job {
            margin-top: vaR(--p15);
        }

        .sub {
            color: #3F3F3F;
            .line-clamp2;
            margin-top: vaR(--p10);
            font-size: vaR(--ft14);
        }
    }
}

.JoinDetails {
    .layui-main {
        >* {
            padding-left: var(--p40);
            padding-right: var(--p40);
        }

    }

    h1 {
        text-align: left;
    }

    .Card {
        padding: var(--p40);
        background: #F3F8FB;
        border-radius: 4px;
        margin-bottom: var(--p30);
    }

    dl {

        .d-grid;
        .grid2;
        gap: var(--p20);
    }

    .con {
        color: #383838;
    }

    h5 {
        line-height: 1em;
        font-size: var(--ft24);
        margin-bottom: vaR(--p25);
    }

    .Info {
        font-size: var(--ft24);
        .ftc;
    }

}

.NewList {
    .d-grid;

    .item {
        padding: var(--p40) 0;
        border-bottom: 1px solid #E0E3E5;
        .d-grid;
        grid-template-columns: 0.4fr 1fr;
        gap: var(--p50);

        &:hover {}
    }

    dl {
        margin-top: var(--p50);
        color: #4D4D4D;
        font-size: var(--ft14);
        .d-flex;
        .jc-fe;
        gap: vaR(--p30);

        i {
            margin-right: 0.3em;
        }
    }

    .img {
        height: 100%;
    }

    .con {
display: flex;
    justify-content: flex-start;
    flex-direction: column;
    padding: var(--p30) 0;
    }

    h5 {
        .line-clamp1;
        font-size: vaR(--ft20);
    }

    .sub {
        margin-top: var(--p30);
        color: #414141;
        .line-clamp4;
        height: 6em;
        line-height: 1.5em;
        margin-bottom: var(--p10);
        font-size: vaR(--ft18);
    }



}

.NeweDetailsMain {


    hr {
        border-color: #E8E8E8;
    }

    h1 {
        font-size: var(--ft22);
        text-align: center;
        margin-bottom: var(--p30);
    }

    .other {
        padding: var(--p20) 0;
        margin-top: vaR(--p15);
        border-top: 1px solid #D2D2D2;
        border-bottom: 1px solid #D2D2D2;
        .flex-center;
        gap: var(--p20);
        color: #7A7A7A;
    }

    .Info {
        .d-grid;
        grid-template-columns: 1fr 0.4fr;
        gap: var(--p100);




    }

    .right {
        .box {
            position: sticky;
            top: 0;
        }


        h1 {
            font-size: vaR(--ft26);
            text-align: center;
            color: #fff;
            .bgc;
            line-height: 2em;

        }

        dl {
            margin-top: 10px;
            .d-grid;
            gap: vaR(--p10);

            a {
                padding: vaR(--p10) var(--p25);
                font-size: vaR(--ft18);
                background: #F6F6F6;
                .d-flex;
                gap: 10px;

                &::before {
                    display: inline-block;
                    content: '•';
                    .ftc;
                }

                &:hover {
                    .ftc;
                }
            }

            p {
                .line-clamp1;
            }
        }



    }

    .con {
        margin: var(--p40) 0;
        min-height: 20vh;
    }

    .foot {
        margin-top: vaR(--p100);
        .d-grid;
        .grid3;
        border-top: 1px solid #D2D2D2;
        ;
        padding-top: vaR(--p30);
        gap: var(--p10) var(--p50);

        a {
            .line-clamp1;

            &:hover {
                color: vaR(--ftc);
            }
        }

        .right {
            text-align: right;
        }

        .back {
            gap: 5px;
            .flex-center;
        }



    }
}

.pagenum {
    margin-top: var(--p60);

    a,
    span {
        .flex-center;
        min-width: 2em;
        height: 2em;
        border: none;
    }

    .prev-page,
    .next-page {
        .ftc;
        font-weight: bold;
        border: 2px solid var(--ftc);
    }

    .page-number.active {
        background: initial;
        .ftc;

    }
}

.NavTop {
    background: #fff;
z-index: 999;
    position: sticky;
    top: 0;
    border-bottom: 1px solid #C7C7C7;
    .flex-center;

    nav {
        line-height: normal;
        margin: 0 auto;
        .flex-center;
        border-left: 1px solid #C7C7C7;
        border-right: 1px solid #C7C7C7;

    }

    .item {
        display: block;
        text-align: center;
        padding: var(--p20);
        min-width: 8em;
        border-right: 1px solid #C7C7C7;

        &::before {
            .bgc;
        }

        &:hover,
        &.active {

            color: #fff;

            &::before {
                transform: scaleY(1);
            }
        }

        &:last-child {
            border: none;
        }
    }
}

.Guoji {
    .layui-main {
        .d-grid;
        grid-template-columns: 0.7fr 1fr;
        gap: vaR(--p60);
    }

    .thead {
        .d-grid;
        gap: var(--p35);

        li {
            cursor: pointer;
            transition: all 0.3s ease;
            font-weight: bold;

            &:hover,
            &.active {
                .ftc;
            }

        }
    }

    .tbody {

        overflow: hidden;
        position: relative;

        .bodyItem {
            opacity: 0;
            visibility: hidden;
            transform: translateX(50px);
            height: 0;
            width: 0;
            transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            pointer-events: none;

            &.active {
                opacity: 1;
                visibility: visible;
                transform: translateX(0);
                height: auto;
                width: auto;
                pointer-events: auto;
            }

            .img_box {
                overflow: hidden;


            }
        }
    }

    .foot {
        .d-flex;
        .al-c;
        gap: vaR(--p20);
        margin-top: vaR(--p40);
        ;


    }
}

.benl,
.benr {
    width: 2.3em;
    height: 2.3em;
    border: 2px solid var(--bgc);
    .flex-center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: bold;
    font-size: var(--ft16);
    color: vaR(--bgc);
    flex-shrink: 0;

    &:hover {
        .bgc;
        color: #fff;

    }

    &.disabled {
        opacity: 0.5;

    }
}

.ProductList {
    .d-grid;
    .grid4;
    gap: var(--p50) vaR(--p80);
    text-align: center;

    .item:hover {
        .img {
            img {
                scale: 0.95;
            }
        }
    }

    h5 {
        text-align: center;
        padding: var(--p20);
    }

    .img {
        ascent-override: 370/220;

        img {
            transition: all 0.3s;
        }
    }
}
.ProductItem{
    background: #fff;
     &:hover {
        .img {
           
        }
    }

    h5 {
        text-align: center;
        padding: var(--p20);
    }

    .img {
    aspect-ratio: 370 / 220;

        img {
            transition: all 0.3s;
        }
    }
}
.IndexProduct{
  
    background: linear-gradient(180deg, var(--ftc) 50%,  #F8F8F8 50%);
    ul{
        .d-grid;
        .grid3;
        gap: var(--p30);
    }
    .ProductItem{
        border-radius: 6px;
        &:hover{
            box-shadow: 0px 2px 6px 0px rgba(130,130,130,0.39);
        }
    }
}
.Jishu {
    .Info {
        .d-grid;
        grid-template-columns: 0.2fr 1fr;
        gap: vaR(--p120);
        height: 100vh;
    }

    .headbox {
        overflow-y: auto;

        &::-webkit-scrollbar {
            width: 0;
            height: 0;
            background: initial;
        }
    }

    .thead {
        min-height: 100%;
        .d-flex;
        .flex-column;
        gap: var(--p35);
        .al-fs;
        padding-left: var(--p20);
        border-left: 6px solid #F9F9F9;

        li {

            aspect-ratio: 220/180;
            cursor: pointer;
            position: relative;
            overflow:visible;

            &::before {
                display: block;
                content: '';
                position: absolute;
                left: 0;
                right: 0;
                top: 0;
                bottom: 0;
                background: rgba(0, 0, 0, 0.5);
                transition: all 0.3s ease;
            }
              &::after {
                display: block;
                content: '';
                position: absolute;
                width: 6px;
                top: 50%;
                transform: translateY(-50%);
                left: -26px;
                height: 0;
                background: #D4D4D4;
                border-radius: 3px;
                transition: all 0.3s ease;
            }
            &:hover,
            &.active {
                &::before {
                    background: rgba(0, 0, 0, 0.0);
                }
            
                &::after {
                    
                height: 80px;
                }
            }

        }
    }

    .tbody {

        overflow: hidden;
        position: relative;

        .bodyItem {
            opacity: 0;
            visibility: hidden;
            transform: translateX(50px);
            height: 0;
            width: 0;
            transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            pointer-events: none;

            &.active {
                opacity: 1;
                visibility: visible;
                transform: translateX(0);
                height: auto;
                width: auto;
                pointer-events: auto;
            }

            .img_100 {
                height: 100%;


            }
        }
    }

}
.AboutInfo{
    .Info{
        margin-top: vaR(--p60);
        .d-grid;
        grid-template-columns: 1fr 0.6fr ;
        gap: vaR(--p60);
    }
    .img{
        .bgc;
        &:hover{
            .pic{
                   top: 0;
       left: 0;
            }
        }
    }
    .pic{
       position: relative;
       top: 0;
       left: 0;
       transition: all 0.5s;
       
        height: 100%;
    }
    .animate__animated .pic{
        top: -10px;
        left: -10px;
    }
    .ft20{
        font-size: vaR(--ft20);
        margin-bottom: 10px;
    }
}
.HonerList {

    .flex-center;
flex-wrap: wrap;
    gap: var(--p50);
    text-align: center;

    .item:hover {
        .img {
           box-shadow: 3px 3px 2px 0px rgba(0,33,61,0.29);
        }
    }
  h5 {
      font-size: vaR(--ft24);
        margin-top: vaR(--p20);
    }
 

    .img {
        transition: all 0.3s;
        ascent-override: 370/520;

        img {
            transition: all 0.3s;
        }
    }
}
.CheJian{
    .mySwiper2 {
        aspect-ratio: 1640/876;
    }

    .swiperBox {
        --swiper-navigation-size: var(--ft20);
        --swiper-navigation-color: var(--ftc);
        --swiper-pagination-color: var(--ftc);
        position: relative;
        margin-top: var(--p40);
        position: relative;
        
    }
    .benr,
    .benl{
        position: absolute;
        top: 50%;
        z-index: 10;
        transform: translateY(-50%);
        
    }

    .benl {
        left: -4em;
    }

    .benr {
        right: -4em;
    }

    .img1 {
        cursor: pointer;
       height: 10em;
        border: 1px solid #fff;
        transition: all 0.3s;
       
         &::before {
                display: block;
                content: '';
                position: absolute;
                left: 0;
                right: 0;
                top: 0;
                bottom: 0;
                background: rgba(0, 0, 0, 0.5);
                transition: all 0.3s ease;
            }
    }

    .swiper-slide-thumb-active {

        border-color: var(--ftc);
        opacity: 1;
        
         &::before {
                background: rgba(0, 0, 0, 0);
  }
    }
}
.YeWu{
    background: #FAFAFA;
    h3{
        font-weight: normal;
        text-align: center;
        font-size: var(--ft28);
        margin-bottom: var(--p40);
        .desc{
            margin: var(--p10);
        font-size: var(--ft20);
        }
    }
    h2{
        text-align: center;
        font-size: var(--ft28);
        margin-bottom: var(--p40);    
    }
    section +section{
        padding-top: var(--p20) ;
    }
}
.YeWuProduct{
    .foot{
        margin-top: vaR(--p60);
        .flex-center;
        gap: var(--p10);
        .swiper-pagination{
            width: auto;
            position: unset;
        }
        .swiper-pagination-bullet{
        
            height: auto !important;
            background: initial;
            width: 2em !important;
        }
       .swiper-pagination-bullet-active{
            .ftc;
        }
    }
}

.YeWuHexin{
    --main:1200px;
    ul{
        .d-grid;
        .grid2;
        gap: var(--p100);
        text-align: center;
       .item {
            background: #F3F3F3;
            box-shadow: 0px 2px 8px 0px rgba(58,58,58,0.1);
            border-radius:  6px;
            .flex-column-center;
            gap: var(--p20);
            padding: var(--p50) var(--p20);
            transition: background 0.5s ease; 
            &:hover {
                color: #fff;
                background: linear-gradient(-48deg, #1159C4, #2383EA);
                background-size: 200% 200%;
                animation: gradientShift 3s ease;
            }
        }
        
        @keyframes gradientShift {
            0% {
                background-position: 0% 50%;
            }
            50% {
                background-position: 100% 50%;
            }
            100% {
                background-position: 0% 50%;
            }
        }
        
        h5{
            font-size: vaR(--ft26);
            font-weight: normal;
        }
        .sub{
            font-size: vaR(--ft20);
        }
    }
}
.YeWuNengli{
    ul{
        .d-grid;
        .grid3;
        gap: var(--p50);
        text-align: center;
       .item {
            background: #F3F3F3;
            box-shadow: 0px 2px 8px 0px rgba(58,58,58,0.1);
            border-radius:  6px;
            .flex-column-center;
            gap: var(--p20);
            padding: var(--p30) var(--p20);
            transition: background 0.5s ease; 
            &:hover {
                color: #fff;
                background: linear-gradient(-48deg, #1159C4, #2383EA);
                background-size: 200% 200%;
                animation: gradientShift 3s ease;
            }
        }
        
        @keyframes gradientShift {
            0% {
                background-position: 0% 50%;
            }
            50% {
                background-position: 100% 50%;
            }
            100% {
                background-position: 0% 50%;
            }
        }
        
        h5{
            font-size: vaR(--ft22);
            font-weight: normal;
        }
        .sub{
            font-size: vaR(--ft16);
        }
    }
}
.YeWuJieGou{
    --swiper-navigation-sides-offset:-2.5em;
    --swiper-navigation-size:var(-ft30);
    --swiper-theme-color:#8E8E8E;
    .box{
        position: relative;
    }
    .swiper-slide{
        height: auto;
    }
    .Item{
        text-align: center;
       
            .bgc;
        overflow: hidden;
        height: 100%;
        .con{
            padding:var(--p15) var(--p20);
        }
         .img{
            aspect-ratio: 500/390;
        }
        h5{
            color: #fff;
            font-weight: normal;
            font-size: vaR(--ft18);
        }
        &:hover{
            box-shadow: 0px 2px 8px 0px rgba(58,58,58,0.1);
        }
    }
}
.YeWuBanner{
  
    --swiper-navigation-sides-offset:-2.5em;
    --swiper-navigation-size:var(-ft30);
    --swiper-theme-color:#8E8E8E;
    .box{
        position: relative;
    }
    .swiper-slide{
        height: auto;
    }
    .Item{
        text-align: center;
       
        background: #F3F3F3;
        border-radius: 6px 6px;
        overflow: hidden;
        height: 100%;
        .con{
            padding: var(--p20);
        }
         .img{
            aspect-ratio: 1/1;
        }
        h5{
            margin-bottom: 5px;
            font-weight: normal;
            font-size: vaR(--ft22);
        }
        &:hover{
            box-shadow: 0px 2px 8px 0px rgba(58,58,58,0.1);
        }
    }
}
.YeWuJishu{
    .item{
        .d-grid;
        .grid2;
     &:nth-child(even){
            
    direction: rtl;
        }
        &:hover{
            background: linear-gradient(90deg, #87C8F210, #006BDE10);
        }
    }
    .img{
        height: 100%;
    }
    .con{
        .d-flex;
        .flex-column;
        gap: vaR(--p30);
        padding:var(--p80) vaR(--p120) ;
        direction: ltr;
        
    }
    h5{
        .d-grid;
        gap: vaR(--p15);
        grid-template-columns: 3em 1fr;
        p{
            
         font-size: vaR(--ft22);
        }
    }
    dl{
        .d-grid;
        gap: var(--p35);
        span{
            
         font-size: vaR(--ft18);
        }
    }
    dd{
        position: relative;
        
        .d-grid;
        gap: vaR(--p15);
        grid-template-columns: 3em 1fr;
        transition: all 0.5s;
        &.animate__animated{
            left: 0 !important;
        }
    }
}
.YeWuJinshu{
    h2{
        margin-bottom: vaR(--p15);
    }
    .desc{
        text-align: center;
         font-size: vaR(--ft20);
        margin-bottom: vaR(--p30);
    }
    ul{
        .d-grid;
        .grid4;
        gap: vaR(--p20);
        .item{
            border-radius: 6px;
        }
    }
}
.YeWu3{
 section + section{
        padding-top: vaR(--p80);
    }
}
.YeWuCaiLiao{
    .bg_fixed;
    color: #fff;
     --swiper-navigation-sides-offset:-2.5em;
    --swiper-navigation-size:var(-ft30);
    --swiper-theme-color:#fff;
    .box{
        position: relative;
    }
    .swiper-slide{
        height: auto;
    }
    .Item{
       padding: vaR(--p100) var(--p30);
        background: rgba(2, 26, 44, 0.7);
        overflow: hidden;
        height: 100%;
            // .d-grid;
            // grid-template-columns: auto 1fr;
            
   
     
        h5{
            margin-bottom: 5px;
            font-weight: normal;
            font-size: vaR(--ft26);
        }
        .sub{
            font-size: vaR(--ft24);
            
        }
        &:hover{
            background: rgba(38, 143, 213, 0.7);
            box-shadow: 0px 2px 8px 0px rgba(58,58,58,0.1);
        }
    }
}
.YeWu2{
    .YeWuBanner .Item .img{
        aspect-ratio: 5/4;
    }
}
.YeWuZhiliang{

    ul{
        .d-grid;
        .grid2;
        gap: 1px;
    position: relative;
        &::before{
            display: block;
            content: '';
            position: absolute;
            left: 50%;
            top: 0;
            bottom: 0;
        
            background: var(--ftc);
            width: 1px;
            
        }
    }
    .item{
        text-align: center;
        font-size: vaR(--ft22);
        padding: 0 vaR(--p60);
        h5{
            font-weight: normal;
            margin-top: vaR(--p20);
        }
    }
}
.YeWuChanYe{
    --main:1140px;
    .pic{
        margin-bottom: var(--p60);
    }
    ul{
        .d-grid;
        gap: vaR(--p20);
    }
    .item{
        aspect-ratio: 1140/440;
        position: relative;
    }
    .con{
        bottom: 0;
        left: 0;
        right: 0;
        color: #fff;
        position: absolute;
        padding: var(--p10);
        text-align: center;
        font-size: vaR(--ft22);
        background: rgba(10, 66, 118, 0.8);
        h5{
            font-weight: normal;
        }
    }
}
.YeWuJiaGong{
    ul{
        .d-grid;
        
    }
    .item{
        .d-grid;
        .grid2;
        &:nth-child(even){
            
        direction: rtl;
        }
    }
    .con{
        padding: vaR(--p80) var(--p100);
        .d-flex;
        .al-c;
        background: #F4F8FF;
        direction: ltr;
    }
    h5{
        line-height: 2em;
        font-weight: normal;
        font-size: var(--ft18);
    }
}
.YeWuJiaGong1{
    ul{
        .d-grid;
        gap: var(--p50);
        
    }
    .item{
        .d-grid;
        .grid2;
        &:nth-child(even){
            
        direction: rtl;
        }
    }
    .con{
        padding: vaR(--p80) var(--p100);
        .d-flex;
        .al-c;
        direction: ltr;
    }
    .sub{
    }
}
.IndexNew {


	.more {
		padding: 1em;
		flex-shrink: 0;
		.flex-center;
		aspect-ratio: 1/1;
		border-radius: 50%;
		border: 1px solid #999999;
		transition: all 0.3s;
	}

	.data {
		color: #666666;
	}

	.Info {
		a {
			display: block;
		}

		.d-grid;
		.grid2;
		gap: var(--p40);

		ul {
			background-color: #fff;
			.d-grid;
			gap: var(--p10);

			.item {
			    border-radius: 0;
				.d-grid;
				.al-c;
				gap: vaR(--p20);
				grid-template-columns: 4em 1px 1fr auto;
                border: 1px solid #fff;
                border-bottom-color: var(--ftc);
                padding:var(--p30) vaR(--p20);
				&:hover {
				.ftc;
			
			    border-radius: 6px;
                border-color: var(--ftc);
					
				}

			}

			h5 {
				font-size: var(--ft18);
				.line-clamp1;
				margin-bottom: vaR(--p10);

			}

			.sub {
			    line-height: 1.3em;
				.line-clamp2;
			}

			.hr {
				background-color: var(--ftc);
				width: 100%;
				height: 100%;
			}

			.day {
				line-height: 1.2em;
				text-align: center;
				font-size: vaR(--ft54);
			}

			.date {
				text-align: center;
			}
		}

		.ItemPic {
		
			position: relative;
			.img {
			
				height: 100%;
			}

			.con {
			    color: #fff;
			     bottom: 0;
			     left: 0;
			     right: 0;
			    position: absolute;
			    background: rgba(0, 97, 181, 0.9);
				margin-top: vaR(--p10);
				padding: var(--p20) var(--p30);

			}

		

			h5 {
			    font-weight: normal;
				font-size: var(--ft18);
				.line-clamp1;

			}
			.sub{
			    margin-top: vaR(--p10);
				.line-clamp1;
			    
			}

			&:hover {
				.more {
					background: #FFC600;
					border-color: #FFC600
				}
			}


		}
	}
}
.titleEn{
        text-align: center;
        position: relative;
        .flex-column-center;
        margin-bottom: vaR(--p40);
    h1{
        position: relative;
        z-index: 2;
        font-size: vaR(--ft36);
        
    }
    .en{
        top: 0.3em;
        width: 100%;
        z-index: 0;
        opacity: 0.2;
        text-align: center;
        font-size: var(--ft36);
        position: absolute;
        text-transform: uppercase;
          color: transparent;
              background-image: linear-gradient(180deg, #fff, #000);
              -webkit-background-clip: text;
              background-clip: text;
              background-repeat: no-repeat;
              background-size: 100% 100%
    }
    .hr{margin-top: var(--p20);
        width: 4em;
        .bgc;
        height: 4px;
        border-radius: 4px;
    }
    .desc{
        margin-top: var(--p30);
    }
    &.white{
        color: #fff;
        .en{
            
              background-image: linear-gradient(0deg, #fff, rgba(255,255,255,0.1));
        }
    }
}
.IndexAbout{
    .Info{
        .d-grid;
        grid-template-columns: 0.8fr 1fr;
        gap: var(--p70);
        h1{
            padding-top: vaR(--p40);
           text-align: left; 
        }
        .sub{
            margin-top: vaR(--p50);
            font-size: vaR(--ft18);
            padding-bottom: 38vh;
        }
    }
    .layui-main{
        position: relative;
    }
    .numList{
        position: absolute;
        bottom: var(--p40);
        left: 0;
        .d-grid;
        .grid4;
        width: 70%;
        text-align: center;
        .title{
            white-space: nowrap;
            .ftc;font-size: vaR(--ft40);
            font-weight: bold;
        }
        .item{
         background: #F8F8F8;
            padding: var(--p60) var(--p30);
          &:hover{
              *{
                  color: #fff;
                  
              }
              .bgc;
          }
            
        }
        .sub{
            font-weight: normal;
            margin-top: vaR(--p30);
            font-size: vaR(--ft20);
        }
        
    }
}
.IndexIntnial {

    .swiper-slide{
        padding: var(--p10);
        
    }
    .swiper-3d .swiper-slide-shadow-right,
    .swiper-3d .swiper-slide-shadow-left{
        background: none;
    }
  .Item {
      box-shadow: 0px 2px 6px 0px #151515;
    position: relative;
    border-radius: 6px;
    overflow: hover;
    .img {
      width: 100%;
      height: 100%;
    }
    h5{
        font-weight: normal;
        text-align: center;
    }
    .con {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      padding: var(--p20);
      background: rgba(0,0,0,0.8);
      color: #fff;
    }
  }
}

.IndexBanner{
    height: calc(100vh - 90px);
    position: relative;
    .swiper{
        height: 100%;
    }
    .swiper-pagination {
  text-align: center;
  margin-top: 20px;
}

.swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;

  margin: 0 6px !important;
  transition: transform 0.3s ease;
  transform: scale(0.5);
}

.swiper-pagination-bullet-active {
  background-color: #fff;
  transform: scale(1);
}

.swiper-pagination-bullet-active + .swiper-pagination-bullet {
  transform: scale(0.7);
}

.swiper-pagination-bullet + .swiper-pagination-bullet-active {
  transform: scale(0.7);
}
}
    .dropdown {
        .d-flex;
        .al-c;
        gap: 6px;
        white-space: nowrap;
        font-size: var(--ft18);
        margin-left: vaR(--p10);
        font-weight: bold;
        letter-spacing: 0.1em;
        position: relative;
        margin-left: 2em;

        ul {
            transition: all 0.3s;
            height: 0;
            overflow: hidden;
            display: none;
            width: auto;
            position: absolute;
            top: 100%;
            background: #fff;
            box-shadow: 0 8px 16px rgba(0, 0, 0, 0.5);
            .d-grid;

            width: max-content;

            a {
                font-size: var(--ft14);
                display: block;
                padding: vaR(--p10) var(--p20);
            }
        }

        &:hover {
            ul {
                height: auto;
            }
        }

        i {
            transition: all 0.3s;
            font-size: var(--ft12);

        }

        &:hover {
            i {
                transform: rotate(-180deg);
            }
        }
    }
@media only screen and (max-width: 1400px) {}

@media only screen and (max-width: 990px) {
    .swiper-button-next,  .swiper-button-prev{
        color: #fff;
            --swiper-navigation-size: 18px;
            --swiper-navigation-sides-offset: 1em;
    }
    :root{
        --input:36px;
    }
    header {
        z-index: 9999;
        &.bgcolor{
        padding: 10px 0;
            
        }
        
    }
    .NavTop{
        top: 50px;
    }
    .navMobile{
        color: #000;
        font-size: 16px;
        text-align: left;
        li{
            padding: 0;
        }
        li >a{
            
        padding: var(--p10) 1em;
        }
        dl{
            margin-top: 0;
            .bgc;
            padding: vaR(--p10) 3em;
      
        color: #fff;
        }
    }
     .top_box{
         min-height: 200px;
     }
    .top_box h1{
        font-size: 16px;
    }
    .JoinList{
        .grid1;
       .item dl dd{
           padding: 2px 5px;
       }
    }
    .NeweDetailsMain .Info{
        .grid1;
        .right{
            display: none;
        }
    }
        .Jishu .Info{
        height: auto;
    }
    .Guoji {.layui-main{
        .grid1;
    }

    .thead{
        .d-flex;
        flex-wrap: wrap;
    }
    }
    .ProductList{
        .grid2;
    }
    .NewList{
        dl{
            display: none;
        }
        .img{
            border-radius: 6px;
        }
        .con{
            padding: 0; ;
        }
        .sub{
            height: 3em;
        }
    }
    .ContactInfo form .layui-btn{
        --btn:36px;
    }
    .ContactInfo form .form_item{
        padding: 0 var(--p10);
    }
      footer .foot1 .qrcode {
          width: 100%;
      }
    footer .foot1 .qrcode .item{
        width: 100%;
    }
    header .logo img{
        max-height: 30px;
    }
    .IndexBanner{
        height: 40vh;
    }
    .NavTop nav{
        border: none;
        flex-wrap: wrap;
        .item{
            border: none;
        }
    }
    .AboutInfo .img{
        margin: 20px;
    }
    .HonerList{
        .d-grid;
        .grid2;
    }
    .AboutInfo .Info,
    .YeWuNengli ul,
    .YeWuJishu .item,
    .YeWuJiaGong .item,
    .YeWuJiaGong1 .item,
    .ContactInfo .Info,
    .IndexProduct ul,
    .IndexNew .Info,
    .IndexAbout .Info{
        .grid1;
    }
    .YeWuJinshu ul{
        .grid2;
    }
    .IndexAbout .Info .sub{
        padding-bottom: 0;
    }
    .IndexAbout .numList{
        position: unset;
        width: 100%;
        .grid2;
    }
    .menu_button .line{
        stroke: #000;
    }
}

@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) {}