@charset "UTF-8";

.banenr_center {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    background: #000;
}

.banenr_center img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    min-height: 100%;
    object-fit: cover;
    transform: perspective(1200px) translate3d(0, 0, 100px);
    opacity: .75;
}

.h_swiper .swiper-slide-active .banner_Ele {
    transition: all 5s ease 0s;
    transform: perspective(1200px) translate3d(0, 0, 0px);
}


.h_swiper .ban_text {
    position: absolute;
    z-index: 2;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.h_swiper .ban_text .ban_sum {
    text-transform: uppercase;
    line-height: 167%;
    font-size: var(--f40);
    font-weight: 700;
    color: #fff;
}

.h_swiper .swiper-pagination-bullet {
    width: 59px;
    height: 2px;
    display: inline-block;
    border-radius: 0;
    background: #fff;
    opacity: .5;
    transition: all .5s ease;
}

.h_swiper .swiper-pagination-bullet-active {
    height: 4px;
    opacity: 1;
}

.mySwiper .swiper-horizontal>.swiper-pagination-bullets {
    bottom: 3%;
    left: 0;
    width: 100%;
    line-height: 0;
}

.ban_more {
    position: absolute;
    left: 50%;
    bottom: 85px;
    z-index: 2;
    transform: translateX(-50%);
    width: 95px;
    line-height: 34px;
    border-radius: 34px;
    background: #fff;
    text-align: center;
    font-weight: 700;
    color: #000;
    transition: all .5s ease;
}

.banner_ul {
    position: absolute;
    width: 100%;
    left: 50%;
    bottom: 0;
    display: flex;
    z-index: 1;
    align-items: flex-end;
    max-width: 1440px;
    transform: translateX(-50%);
}

.banner_ul li {
    flex: 1;
    position: relative;
    padding: 15px 0;
    text-align: center;
    background: rgba(255, 95, 2, 0.6);
    transition: all .5s ease;
    transform: translateY(100px);
}

.banner_ul li:nth-of-type(2n) {
    background: rgba(5, 3, 0, 0.7);
}

.banner_ul li .top {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
    font-size: var(--f20);
    color: #fff;
    font-weight: 700;
}

.banner_ul li .bottom {
    font-size: var(--f14);
    color: #fff;
    margin-top: 10px;
    line-height: 100%;
}

.banner_ul li p {
    font-size: var(--f14);
    color: #fff;
    font-weight: 300;
    line-height: 150%;
    padding: 15px 15px 0;
    min-height: 100px;
    display: -webkit-box;
    overflow: hidden;
    line-clamp: 4;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
}

.banner_ul li:hover {
    padding: 25px 0;
    transform: none;
}

.two {
    padding: 5% 0;
    height: 100%;
    display: flex;
    align-items: center;
    background: url(/src/img/two_bg.jpg) center center/cover;
}

.two .name {
    font-size: var(--f40);
    text-align: center;
    color: #fff;
    font-weight: 300;
    line-height: 100%;
}

.two .info {
    color: #fff;
    text-align: center;
    font-weight: 300;
    margin: 1% 0 0;
}

.two .pro_ul {
    display: flex;
    gap: 1vw;
    flex-wrap: wrap;
    margin: 3% 0;
}

.two .pro_ul li {
    flex: 1;
    background: rgba(66, 66, 66, 0.27);
    position: relative;
    backdrop-filter: blur(48px);
    padding: 1vw;
    transition: all .5s ease;
}

.two .pro_ul li .top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: var(--f14);
    color: #fff;
    font-weight: 300;
}

.two .pro_ul li .top .left {
    width: 96px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.two .pro_ul li .top .left img {
    width: 60px;
    height: auto;
    vertical-align: top;
}

.two .pro_ul li .Limg_con {
    padding-bottom: 100%;
    margin: 1vw 0;
}

.two .pro_ul li .tit {
    font-size: var(--f20);
    color: #fff;
    text-align: center;
    font-weight: 700;
}

.two .pro_ul li:hover {
    background: rgb(255 97 3 / 50%);
    transform: translateY(-5px);
}

.two .Comments {
    display: flex;
    align-items: center;
    color: #fff;
    font-weight: 700;
}

.two .Comments img {
    width: 75px;
    margin-right: 10px;
}

@media only screen and (max-width:768px) {
    .banner_ul li .top {
        font-size: 12px;
        color: #fff;
        font-weight: 300;
        flex-direction: column;
        gap: 5px;
        line-height: 100%;
    }

    .banner_ul li {
        padding: 10px 0;
        transform: none;
    }

    .two {
        padding: 80px 0;
    }

    .two .pro_ul {
        gap: 10px;
        margin: 15px 0;
    }

    .two .pro_ul li {
        width: calc((100% - 10px) / 2);
        flex: none;
        padding: 10px;
    }

    .two .name {
        margin-bottom: 10px;
    }

    .two .pro_ul li .top .left {
        width: 49px;
        height: 29px;
    }

    .two .pro_ul li .top .left img {
        width: 31px;
    }

    .two .pro_ul li .Limg_con {
        padding-bottom: 75%;
        margin: 10px 0;
    }

    .banner_ul {
        position: fixed;
    }

    footer {
        padding-bottom: 60px;
    }

}