﻿@charset "utf-8";

a {
    display: block;
}

.banner {
    position: relative;
    overflow: hidden;
}

.banner video,
.banner img {
    object-fit: cover;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    display: block;
}

.banner a {
    display: block;
    position: relative;
    padding-top: 18.22%;
    overflow: hidden;
}

.banner .slick {
    position: relative;
    z-index: 9;
}

.banner .slick-slide a {
    display: block;
    position: relative;
}

.banner .slick-prev {
    width: .23rem;
    height: .41rem;
    background: url(../images/banner-l.png) no-repeat;
    background-size: 100% 100%;
    left: 1.2rem;
}

.banner .slick-next {
    width: .23rem;
    height: .41rem;
    background: url(../images/banner-r.png) no-repeat;
    background-size: 100% 100%;
    right: 1.2rem;
}

.banner .slick-dots {
    padding-bottom: .25rem;
}

.banner .slick-dots li {
    width: .12rem;
    height: .12rem;
    background: #ffffff;
    border-radius: 50%;
}

.banner .slick-dots li.slick-active {
    opacity: 1;
    background: #FF2500;
}

/* .banner .slick-slide.slick-current a img {
    animation: img_scale 8s linear;
} */

@keyframes img_scale {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
    }
}

/* s1 */

.s1-c {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
}

.s1-l {
    background: #F5F5FE;
    padding: .45rem;
    position: relative;
}

.s1-l::before {
    content: '';
    position: absolute;
    right: 100%;
    top: 0;
    bottom: 0;
    width: 4rem;
    background: #F5F5FE;
}

.tit {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin-bottom: .15rem;
}

.tit h3 {
    font-size: .46rem;
    color: #2458D6;
}

.more {
    border-radius: .3rem;
    border: .01rem solid #2458D6;
    color: #2458D6;
    font-size: .18rem;
    line-height: .35rem;
    padding: 0 .2rem;
}

.more:hover {
    color: #ffffff;
    background: #2458D6;
}

.s1-ltx p {
    font-size: .2rem;
    text-align: justify;
    color: #0C274D;
    line-height: .32rem;
    height: 5.76rem;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 18;
}

.s1-l {
    width: 66%;
}

.s1-r {
    width: 34%;
    padding: 0 .4rem;
}

.s1-rt ul li a h3 {
    font-size: .2rem;
    line-height: .3rem;
    color: #0C274D;
    height: .6rem;
    margin-bottom: .1rem;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.s1-rt ul li a p {
    font-size: .18rem;
    color: #B5B9FA;
}

.s1-rt ul li a {
    padding: .19rem 0;
    border-bottom: .01rem solid #B2B5C5;
}
.s1-rt ul li a span {
    color: #333;
}


.index {
    padding-top: .6rem;
    padding-bottom: 1rem;
}



@media screen and (max-width: 1024px) {
    .index {
        padding-top: .3rem;
        padding-bottom: .5rem;
    }
    .s1-l {
        width: 100%;
        margin-bottom: .2rem;
        padding: .3rem;
    }
    .s1-ltx p {
        height: auto;
        max-height: 5.76rem;
    }
    .s1-l::before {
        display: none;
    }

    .s1-r {
        width: 100%;
        padding: 0 .2rem;
    }
}

@media screen and (max-width: 768px) {
    .tit h3{
        font-size: .3rem;
    }
}

@media screen and (max-width: 480px) {
    .tit h3{
        font-size: .26rem;
        margin: .1rem 0;
    }
    .more {
        font-size: .16rem;
        padding: 0 .1rem;
        line-height: .3rem;
    }


}