.video-list{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.video-item{
    margin-bottom: 50px;
}
.video-item .text{
    margin-top: 20px;
}
.video-item .text p:nth-child(1){
    font-size: 16px;
    color: #333;
}
.video-item:hover .text p:nth-child(1){
    color: var(--blue);
}
.video-item .text p:nth-child(2){
    font-size: 14px;
    color: #707070;
}
/*新闻标题*/
.video-title{
    padding-bottom: 2rem;
    border-bottom: 1px solid #ccc;
}
.video-title p:first-child{
    font-size: 24px;
    font-weight: bold;
    color: #333;
}
.video-title p:last-child{
    margin-top: 15px;
    color: #707070;
}
@media (max-width: 576px) {
    .video-title{
        padding-bottom: 10px;
    }
    .video-title p:first-child{
        font-size: 16px;
    }
}
.video-title p span{
    padding: 0 10px;
}
.video-content{
}
.video-content video{
    width: 100%;
}
.view-description{
    font-size: 16px;
    color: #626262;
}
.solution-swiper{
    position: relative;
    padding-bottom: 60px;
}
.solution-swiper .swiper-pagination{
    bottom: 0;
}
.solution-swiper .swiper-pagination-bullet {
    width: 100px;
    height: 4px;
    border-radius: 4px;
}
.solution-swiper .swiper-pagination-bullet-active {
}

.solution-item{
    display: grid;
    grid-template-columns: 40% 60%;
    height: 330px;
    background: #FFF;
    border: solid 1px #FFF;
}
.solution-item .image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.solution-item .text{
    display: grid;
    align-items: center;
    justify-content: left;
    padding-left: 60px;
}
.solution-item .text p:nth-child(1){
    font-size: 24px;
    color: #333333;
}
.solution-item .text p:nth-child(2){
    padding: 30px 0;
    color: #535353;
}
.btn-view{
    width: 148px;
    line-height: 42px;
    background: #eee;
    border-radius: 21px;
    text-align: center;
    color: #000;
}
.btn-view:hover{
    background: var(--blue);
    color: #FFF;
}