/* 列表页全屏banner样式 */
.list_banner_fullwidth_wrapper {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    height: 400px;
    background-image: url('../images/未标题-1_23.jpg');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    margin-top: 20px;
    margin-bottom: 20px;
}

.list_banner_container {
    max-width: 1200px;
    margin: 0 auto;
    height: 100%;
    position: relative;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.list_banner_content {
    text-align: center;
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.list_banner_title {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 15px;
}

.list_banner_subtitle {
    font-size: 18px;
    opacity: 0.9;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .list_banner_fullwidth_wrapper {
        height: 300px;
        margin-top: 15px;
        margin-bottom: 15px;
    }
    
    .list_banner_container {
        padding: 0 20px;
    }
    
    .list_banner_title {
        font-size: 28px;
        margin-bottom: 10px;
    }
    
    .list_banner_subtitle {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .list_banner_fullwidth_wrapper {
        height: 250px;
    }
    
    .list_banner_title {
        font-size: 24px;
    }
    
    .list_banner_subtitle {
        font-size: 14px;
    }
}
