/* OriHose Banner 容器与文字浮层 */
.swiper-slide { 
    position: relative; 
}

.banner-text-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    background: rgba(0, 0, 0, 0.25); /* 保护文字清晰度的半透明遮罩 */
    z-index: 1; /* 文字层级 */
}

.banner-inner {
    max-width: 750px;
    color: #ffffff;
    text-align: left;
}

/* 主标题样式 */
.banner-inner h2 {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.5);
    text-transform: uppercase;
}

/* 副标题样式 */
.banner-inner p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 30px;
    padding-left: 15px;
    border-left: 4px solid #1757A7; /* 品牌蓝装饰线 */
    color: #f0f0f0;
}

/* 幻灯片按钮 - 静止状态：文字白色 */
.banner-btn {
    display: inline-block;
    padding: 12px 38px;
    background: #1757A7;    /* 品牌蓝 */
    color: #ffffff !important; /* 强制文字白色 */
    text-decoration: none;
    font-weight: 600;
    border: 1px solid #1757A7;
    transition: all 0.3s ease;
    border-radius: 2px;
}

/* 按钮悬停状态 */
.banner-btn:hover {
    background: #ffffff;
    color: #1757A7 !important;
    border-color: #ffffff;
}

/* 确保分页器和箭头在文字层之上 */
#swiper-banner .swiper-pagination,
#swiper-banner .swiper-button-prev,
#swiper-banner .swiper-button-next {
    z-index: 10 !important;
}

/* 箭头颜色美化 */
.swiper-button-prev, .swiper-button-next {
    color: #ffffff !important;
}

/* 移动端适配 */
@media (max-width: 768px) {
    .banner-inner h2 { font-size: 26px; margin-bottom: 10px; }
    .banner-inner p { font-size: 14px; margin-bottom: 15px; padding-left: 10px; }
    .banner-btn { padding: 8px 25px; font-size: 14px; }
    .banner-text-content { background: rgba(0,0,0,0.4); } /* 手机端遮罩加深 */
}