/* Banner容器 */
.about-banner {
    margin-top: 180px;
    width: 100%;
    /*height: 420px;*/
    position: relative;
    display: flex;
    border-radius: 46px;
    overflow: hidden;
    margin-bottom: 64px;
}

/* 左侧内容区域 */
.about-banner-content {
    width: 100%;
    height: 100%;
    position: relative;
    background: linear-gradient(90deg, #002F49 18%, rgba(0, 47, 73, 0.80) 100%);
    padding: 143px 85px;
    box-sizing: border-box;
}
.about-banner-text{
    position: relative;
    z-index: 9;
}

/* 标题样式 */
.banner-title {
    color: white;
    font-family: "Basic", sans-serif;
    font-weight: 400;
    margin-bottom: 37px;
}

/* 面包屑导航 */
.banner-breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;

}

.breadcrumb-item {
    color: rgba(255, 255, 255, 0.70);
    font-size: 20px;
    font-family: "Basic", sans-serif;
    font-weight: 400;
    text-decoration: none;
    white-space: nowrap;
}

.breadcrumb-arrow {
    width: 20px;
    height: 21px;
}

/* 右侧图片区域 */
.about-banner-image {
    width: 803px;
    height: 420px;
    position: absolute;
    right: 85px;
    top: 0;
}
.about-banner-image  .xpc_xs{
    display: none;
}
@media (max-width: 1681px) {
    .about-banner-image {
    width: 453px;
    }
    .about-banner-image  .pc_xs{
        display: none;
    }

    .about-banner-image  .xpc_xs{
        display: block;
    }

}



.about-banner-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
@media (max-width: 1440px) {
.about-banner-image{
    right: 0;

}}
/* 响应式设计 */
@media (max-width: 1200px) {
    .about-banner-image {
        width: 50%;
    }
}

@media (max-width: 768px) {

    .banner-breadcrumb{
        display: none;
    }
    .about-banner {
        margin-top: 100px;
    }
    .about-banner-image {
        width: auto;
    }
    .breadcrumb-item{
        font-size: 16px;
    }
    .about-banner-image .xpc_xs{
        width: auto;
        margin: 0 auto;
    }
    .about-banner {
        height: auto;
        flex-direction: column;
    }

    .about-banner-content {
        padding: 60px 40px 60px;
    }

    .banner-title {
        font-size: 36px;
    }

    .about-banner-image {
        position: relative;
        width: 100%;
        height: 300px;
    }
}
/* Banner容器 */
