.banner {
    width: 100%;
}
.banner img {
    width: 100%;
}

.content {
    margin: 115px auto 40px auto;
}
.content .content_title {
    width: fit-content;
    height: 103px;
    margin: 0 auto;
    /* overflow: hidden; */
    text-align: center;
}
.content_title::before {
    display: inline-block;
    content: '';
    width: 5px;
    height: 25px;
    margin-right: 7px;
    background-color: #3052F9;
    line-height: 103px;
    border-radius: 12px;

}
.content_title span{
    width: fit-content;
    height: 50px;
    font-family: PingFangSC-Medium;
    font-weight: 500;
    font-size: 30px;
    color: #444444;
    letter-spacing: 0;
    line-height: 50px;
    text-align: center;
}
.content_title img{
    margin-left: 7px;
}
.content_title p {
    width: 304px;
    height: 33px;
    margin-top: 20px;
    font-family: PingFangSC-Regular;
    font-weight: 400;
    font-size: 24px;
    color: #999999;
    text-indent: -2rem;
}
.con_image {
    width: 100%;
    margin: 42px 0 130px 0;
}
.con_image img {
    width: 100%;
}

/* 展会活动 */
.image_list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.image_list .img_item {
    width: 48%;
    height: 408px;
    margin-bottom: 25px;
}
.img_item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* 轮播图 */
.swiper_y {
    height: auto;
    background-color: #0642f8;
    margin-bottom: 100px;
}
.swiper {
    width: 100%;
    height: 817px;
    min-width: 1200px;
}  
.swiper .swiper-pagination {
    position: absolute;
    bottom: 0 !important;
    left: 0;
    height: 90px;
    padding-left: 67px;
    opacity: 0.5;
    text-align: left;
    line-height: 90px;
    color: #FFF !important;
    background: #000000;
}
.swiper-pagination-bullet {
    border-radius: 8px  !important;
    background-color: #FFF !important;
    opacity: 1 !important;
}
.swiper-pagination-bullet-active {
    width: 20px !important;
    opacity: 1 !important;
    background-color: #0642f8 !important;
}
.swiper-button-prev, .swiper-button-next {
    color: #faeaea !important;
}
.swiper .swiper-slide img{
    width: 100%;
    height: 100%;
}




/* 移动端区域样式 */
@media screen and (max-width: 992px) {
    .container {
        align-items: center;
    }

    .banner {
        padding-top: 52px;
    }
    .image_list .img_item {
        height: 124px;
    }
    .content {
        margin: 40px auto;
    }
    .content .content_title {
        width: 100%;
        height: auto;
    }
    .content_title::before {
        height: 15px;
    }
    .content_title span {
        font-size: 18px;
        font-weight: 600;
    }
    .content_title img {
        width: 25px;
    }
    .content_title p {
        width: 100%;
        font-size: 16px;
        margin: 0 0 0 10px;
    }

    .swiper {
        margin-top: 52px;
        height: auto;
        min-width: 100%;
        background-color: #000000;
    }
    .swiper .swiper-pagination  {
        height: 40px;
        padding-left: 15px;
        line-height: 40px;
    }
    .swiper .swiper-slide img{
        width: 100%;
        height: auto;
    }
    .con {
        flex: 1;
        width: 100%;
        background-color: #fff;
    }
    
}