/* 动画类 */
.p_i_animate_banner_text {
    animation: backInDown; /* referring directly to the animation's @keyframe declaration */
    animation-duration: 1s; /* don't forget to set a duration! */
}
/* 动画类 end */

.c_swiper {
    height: 440px;
    background-color: rgba(0, 0, 0, 0.4);
    width: 100%;
    z-index: 0;
    position: relative;
    overflow: hidden;
}
.c_swiper .swiper-wrapper {
    width: 100%;
    height: 100%;
}

.c_swiper .swiper-slide {
    text-align: center;
    font-size: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}
.p_i_banner_content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 500px;
    /* padding: 20px;
    box-sizing: border-box; */
    /* color: #fff;
    background-color: rgba(0, 0, 0, 0.3); */
}
.p_i_banner_content_left {
    position: absolute;
    left: 600px;
}
.p_i_banner_content_left .p_i_banner_content_text_describe {
    color: #fff;
}
.p_i_banner_content_text {
    padding: 20px 30px;
    box-sizing: border-box;
    color: #fff;
    background-color: rgba(0, 0, 0, 0.3);
    position: relative;
}
.p_i_banner_content_text::after {
    position: absolute;
    width: 40px;
    height: 40px;
    content: "";
    left: -20px;
    bottom: -20px;
    border-bottom: 2px #fff solid;
    border-left: 2px #fff solid;
}
.p_i_banner_content_text::before {
    position: absolute;
    width: 40px;
    height: 40px;
    content: "";
    right: -20px;
    top: -20px;
    border-top: 2px #fff solid;
    border-right: 2px #fff solid;
}
.p_i_banner_content_text_title {
    width: 100%;
    font-weight: 700;
    font-size: 30px;
    color: #ffffff;
    line-height: 43px;
    text-align: center;
    font-style: normal;
    text-transform: none;
}
.p_i_banner_content_text_describe {
    width: 100%;
    /* 超出四行省略号 */
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    font-size: 14px;
    font-weight: 400;
    font-size: 14px;
    color: #cdd8de;
    line-height: 20px;
    text-align: center;
    font-style: normal;
    text-transform: none;
}
.p_i_banner_content_text_buttons {
    margin-top: 20px;
}
.p_i_banner_content_text_buttons_view,
.p_i_banner_content_text_buttons_kf {
    border: none;
    border-radius: 30px;
}
.p_i_banner_content_text_buttons_view {
    padding: 10px 20px;
    background-color: #108cda;
    color: #fff;
    margin-right: 30px;
}
.p_i_banner_content_text_buttons_kf {
    padding: 10px 20px;
    background-color: #fff;
    color: #3d3d3d;
}
.c_swiper .s_sw_image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
