/* Banner Swiper begin */
.banner-swiper {
    width: 100%;
    height: 100vh;
    position: relative;
}

.banner-slide {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}
.banner-slide .txtInfo{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    z-index: 9;
}
.banner-slide .txtInfo .tag,
.banner-slide .txtInfo .txt{
    opacity: 0;
    transform: translateY(40px);
}
.banner-slide .txtInfo .tag{
    font-size: 1.125rem;
    border: 1px solid white;
    padding: 0.5rem 2rem;
    border-radius: 4rem;
}
.banner-slide .txtInfo .txt{
    font-size: 3.375rem;
    font-weight: bold;
}

.banner-swiper .swiper-pagination {
    position: absolute;
    left: 10vw;
    bottom: 3rem;
    right: auto;
    top: auto;
    width: auto;
    color: white;
    font-family: 'Misan-Medium';
}

.banner-swiper .swiper-pagination .swiper-pagination-current {
    font-size: 2.5rem;
}

.swiper-button-prev,
.swiper-button-next {
    width: 3rem;
    height: 3rem;
    background: rgba(0, 0, 0, 0.8);
    border-radius: 50%;
    color: white;
    top: auto;
    bottom: 3rem;
}

.swiper-button-prev {
    left: auto;
    right: 14vw;
}

.swiper-button-next {
    right: 10vw;
}

.swiper-button-next:after,
.swiper-rtl .swiper-button-prev:after,
.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 1rem;
}

.banner-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    transform: scale(1);
    will-change: transform;
}

.banner-swiper .swiper-slide-active .banner-bg {
    animation: bannerZoom 5s ease-out forwards;
}

.banner-swiper .swiper-button-tips {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 4rem;
    z-index: 9;
    font-size: 0.875rem;
    color: white;
    font-family: 'Misan-Regular';
}

.banner-swiper .swiper-button-tips .more{
    width: 2px;
    height: 3rem;
    border-radius: 4px;
    background: linear-gradient(rgba(255, 255, 255, 1), rgba(255, 255, 255, 0));
    position: absolute;
    left: 50%;
    top: 2rem;
    transform: translateX(-50%);
    overflow: hidden;
}
.banner-swiper .swiper-button-tips .more::before{
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 2px;
    height: 1.5rem;
    background: linear-gradient(rgba(172, 20, 9, 0), rgba(172, 20, 9, 1));
    z-index: 9;
    animation: rotate 1s linear infinite;
}


@keyframes rotate {
    0% {
        top: -1.5rem;
    }

    100% {
        top: 100%;
    }
}

@keyframes bannerZoom {
    from {
        transform: scale(1.1)
    }

    to {
        transform: scale(1)
    }
}

/* Banner Swiper end */

/*home_pro begin*/
.base_title .tag{
    font-size: 0.875rem;
    background: #AC1409;
    border-radius: 4rem;
    padding: 0.75rem 2.5rem;
    color: white;
}
.base_title .title{
    font-size: 2.25rem;
    color: #012B82;
    margin: 0;
    font-weight: 600;
    text-align: center;
}
.base_title .info{
    color: #666;
    font-size: 1.125rem;
    margin: 0;
    text-align: center;
}
.base_title.txt-white .title,.base_title.txt-white .info{
    color: white;
}

.home_pro{
    background: url(../images/pro_bg.jpg) no-repeat center top/cover;
    height: 100vh;
}
.home_pro .item{
    border-radius: 0.25rem;
    grid-column: span 3;
    cursor: pointer;
    overflow: hidden;
}
.home_pro .item .pic img{
    transition: all 0.5s;
}
.home_pro .item .txt{
    font-size: 1.25rem;
    padding: 1rem;
    text-align: center;
    background: white;
    transition: all 0.5s;
}
.home_pro .item:hover .pic img{
    transform: scale(1.1);
}
.home_pro .item:hover .txt{
    background: #3973ED;
    color: white;
}
/*home_pro end*/

/*home_application begin*/
.home_application{
    background: url(../images/soul_bg.jpg) no-repeat center center/cover;
    height: 100vh;
}
.app-swiper{
    padding-top: 1rem;
}
.app-swiper .swiper-slide{
    background: white;
    border-radius: 0.25rem;
    padding:2rem 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 4rem;
    transition: all 0.5s;
    position: relative;
    top: 0;
}
.app-swiper .swiper-slide:hover{
    top: -1rem;
}
.app-swiper .tag{
    border: 1px solid #ddd;
    color: #012B82;
    font-size: 0.875rem;
    border-radius: 4rem;
    padding: 0.5rem 1.5rem;
}
.app-swiper .title{
    font-size: 1.75rem;
    text-align: center;
    height: 4rem;
    margin: 0;
}
.app-swiper .more{
    font-size: 0.875rem;
    color: #999;
}
.app-swiper .more .pic{
    width: 1rem;
}
.app-swiper .swiper-slide:hover .tag{
    background: #3973ED;
    border-color: #3973ED;
    color: white;
}
.app-swiper .swiper-slide:hover .title{
    color: #012B82;
}
.app-swiper .swiper-slide:hover .more{
    color: #AC1409;
}
/*home_application end*/

/*home_about begin*/
.home_about{
    background: url(../images/aboutBg.jpg) no-repeat center bottom/cover;
    height: 100vh;
}
.home_about .pic img{
    max-width: 94%;
    display: block;
    margin: 0 auto;
}
.home_about .txt{
    text-align: center;
    padding: 1rem;
    line-height: 2;
}
/*home_about end*/

@media (max-width: 1200px) {
   .banner-swiper {
        margin-top: 60px;
        height: 80vh;
    }
    .swiper-button-prev{
        right: 16vw;
    }
    .home_pro,.home_application,.home_about{
        height: auto;
    }
    .base_title .title{
        font-size: 1.75rem;
    }
    .base_title .info{
        font-size: 0.875rem;
    }
    .home_pro .item .txt{
        font-size: 1rem;
    }
    .home_about .pic img{
        max-width: 100%;
    }
    .home_about .txt{
        padding: 1rem 0;
        text-align: left;
    }
}

@media (max-width: 768px) {
    .banner-swiper{
        margin-top: 50px;
        height: 32vh;
    }
    .banner-slide .txtInfo .tag{
        font-size: 0.75rem;
        padding: 0.25rem 1rem;
    }
    .banner-slide .txtInfo .txt{
        font-size: 1.5rem;
    }

    .banner-swiper .swiper-pagination {
        bottom: 1rem;
        font-size: 1rem;
        left: 50%;
        transform: translateX(-50%);
    }

    .banner-swiper .swiper-pagination .swiper-pagination-current {
        font-size: 1rem;
    }

    .swiper-button-prev,
    .swiper-button-next {
        display: none;
    }

    .base_title .tag{
        padding: 0.5rem 1.5rem;
    }
    .base_title .title{
        font-size: 1.25rem;
    }

    .home_pro .item{
        grid-column: span 6;
    }
    .home_pro .item .txt{
        padding: 0.5rem;
    }

    .app-swiper .swiper-slide{
        margin-bottom: 2rem;
    }
    .app-swiper .title{
        font-size: 1.5rem;
    }
    
}