/* 首页容器 */
.indexWrapper {
    width: 100%;
    overflow: hidden;
}

/* Banner轮播区域样式在base.css中定义，这里只保留移动端特殊样式 */

/* Banner轮播按钮位置调整：显示在分页器上方60px左右 */
.indexWrapper .bannerWrapper .swiper-wrapper .swiper-slide .textContent .textbox {
    position: relative;
}

.indexWrapper .bannerWrapper .swiper-wrapper .swiper-slide .textContent .textbox .button {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 128px;
    margin-top: 0;
    z-index: 10;
    width: 100%;
    text-align: center;
}

/* 1200px媒体查询中的productLineWrapper样式在base.css中定义 */

@media screen and (max-width: 1200px) {
    .indexWrapper .bannerWrapper .swiper-wrapper .swiper-slide .textContent .textbox .button {
        bottom: 84px;
        margin-top: 0;
    }
}

@media screen and (max-width: 991px) {
    .indexWrapper .productLineWrapper {
        margin: 60px 0
    }
}

@media screen and (max-width: 768px) {
    .indexWrapper .bannerWrapper {
        height: 30vh;
    }

    .indexWrapper .bannerWrapper .swiper-wrapper {
        height: 100%;
    }

    .indexWrapper .bannerWrapper .swiper-wrapper .swiper-slide {
        position: relative;
        overflow: hidden;
        height: 100%;
    }

    .indexWrapper .bannerWrapper .swiper-wrapper .swiper-slide .bg {
        min-height: 100%;
        height: 100%;
    }

    .indexWrapper .bannerWrapper .swiper-wrapper .swiper-slide .textContent .textbox {
        flex-direction: column;
        align-items: center;
    }

    .indexWrapper .bannerWrapper .swiper-wrapper .swiper-slide .textContent .textbox .button {
        bottom: 84px;
        margin-left: 0;
        margin-top: 0;
    }

    .indexWrapper .bannerWrapper .swiper-wrapper .swiper-slide .textContent .textbox .button a {
        width: 120px;
        height: 36px;
        line-height: 36px;
        font-size: 14px;
    }

    .indexWrapper .productLineWrapper .title .txt h1 {
        line-height: 26px;
        font-size: 26px
    }

    .indexWrapper .productLineWrapper .title .txt p {
        margin-top: 10px
    }

    .indexWrapper .productLineWrapper .title .button {
        display: none
    }

    /* 确保移动端产品一行显示两个 */
    .indexWrapper .productLineWrapper .productLine .swiper-slide {
        width: calc((100% - 12px) / 2) !important;
        margin-right: 12px !important;
    }

    .indexWrapper .productLineWrapper .productLine .swiper-slide:last-child {
        margin-right: 0 !important;
    }
}

/* 产品线展示区域样式在base.css中定义，这里只保留移动端特殊样式 */

/* 展会预告列表内容居中显示 */
.indexWrapper .productLineWrapper .productLine .swiper-wrapper {
    justify-content: center;
}

/* 首页新季上新产品遮罩效果 - 与lookbook保持一致 */
.indexWrapper .productLineWrapper .productLine .swiper-slide .pic {
    position: relative;
    overflow: hidden;
    display: block;
}

.indexWrapper .productLineWrapper .productLine .swiper-slide .pic img {
    display: block;
    width: 100%;
    transition: transform 0.3s ease;
}

.indexWrapper .productLineWrapper .productLine .swiper-slide .pic:hover img {
    transform: scale(1.05);
}

.indexWrapper .productLineWrapper .productLine .swiper-slide .pic .mask {
    opacity: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.2s linear;
    z-index: 1;
    pointer-events: none;
}

.indexWrapper .productLineWrapper .productLine .swiper-slide .pic:hover .mask {
    opacity: 1;
}

.indexWrapper .productLineWrapper .productLine .swiper-slide .pic .mask i {
    font-size: 14px;
    color: #fff;
    padding: 8px 16px;
    border-radius: 2px;
    border: 1px solid #fff;
    white-space: nowrap;
    font-style: normal;
    font-weight: normal;
    line-height: 1.5;
}

/* 关于我们和店铺链接区域样式已在base.css中定义，此处删除重复样式 */

/* 响应式设计样式在base.css中定义，这里只保留必要的特殊样式 */

/* ============================================
   品牌资讯区域样式 - 与"新季上新"保持一致
   ============================================ */

.brandNewsWrapper {
    width: 100%;
    margin: 0 0 30px 0;
}

.brandNewsWrapper .title {
    margin-bottom: 48px;
    position: relative;
}

.brandNewsWrapper .title .txt {
    text-align: center;
    color: #666;
}

.brandNewsWrapper .title .txt h1 {
    line-height: 46px;
    font-size: 46px;
}

.brandNewsTabs {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 48px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eaeaea;
    gap: 0;
}

.brandNewsTab {
    display: inline-block;
    padding: 12px 40px;
    font-size: 16px;
    color: #666;
    text-decoration: none;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    margin: 0 10px;
    margin-bottom: -21px;
}

.brandNewsTab:hover {
    color: #333;
}

.brandNewsTab.active {
    color: #333;
    border-bottom-color: #bdbdbd;
    font-weight: 500;
}

.brandNewsContainer {
    width: 100%;
    margin: 0 auto;
    padding: 0 60px;
}

.brandNewsListWrapper {
    width: 100%;
}

.brandNewsList {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    width: 100%;
}

.brandNewsListItem {
    flex: 0 0 calc((100% - 30px) / 2);
    max-width: calc((100% - 30px) / 2);
    display: block;
    text-decoration: none;
    color: inherit;
    padding: 20px;
    background-color: #fff;
    border-bottom: 1px solid #e8e8e8;
    transition: all 0.3s ease;
}

.brandNewsListItem:hover {
    background-color: #f8f8f8;
    border-radius: 3px;
}

.brandNewsListItemContent {
    display: flex;
    flex-direction: column;
}

.brandNewsListItemDate {
    font-size: 14px;
    color: #999;
    margin-bottom: 8px;
}

.brandNewsListItemTitle {
    font-size: 16px;
    color: #333;
    margin: 0 0 8px 0;
    font-weight: normal;
    line-height: 1.5;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.brandNewsListItem:hover .brandNewsListItemTitle {
    color: #000;
}

.brandNewsListItemDesc {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.brandNewsEmpty {
    text-align: center;
    padding: 60px 20px;
    color: #999;
    font-size: 16px;
}

/* 响应式设计 - 文本列表模式 */
@media screen and (max-width: 1200px) {
    .brandNewsWrapper {
        margin: 0 0 50px 0;
    }
    
    .brandNewsWrapper .title {
        margin-bottom: 30px;
    }
    
    .brandNewsWrapper .title .txt h1 {
        line-height: 32px;
        font-size: 32px;
    }
    
    .brandNewsContainer {
        padding: 0 24px;
    }
    
    .brandNewsList {
        gap: 20px;
    }
    
    .brandNewsListItem {
        flex: 0 0 calc((100% - 20px) / 2);
        max-width: calc((100% - 20px) / 2);
    }
}

@media screen and (max-width: 991px) {
    .brandNewsWrapper {
        margin: 0 0 30px 0;
    }
    
    .brandNewsContainer {
        padding: 0 24px;
    }
    
    .brandNewsList {
        gap: 15px;
    }
    
    .brandNewsListItem {
        flex: 0 0 calc((100% - 15px) / 2);
        max-width: calc((100% - 15px) / 2);
        padding: 15px;
    }
    
    .brandNewsListItemTitle {
        font-size: 15px;
    }
    
    .brandNewsListItemDesc {
        font-size: 13px;
    }
}

@media screen and (max-width: 768px) {
    .brandNewsWrapper .title .txt h1 {
        line-height: 26px;
        font-size: 26px;
    }
    
    .brandNewsContainer {
        padding: 0 20px;
    }
    
    .brandNewsList {
        flex-direction: column;
        gap: 0;
    }
    
    .brandNewsListItem {
        flex: 0 0 100%;
        max-width: 100%;
        padding: 15px 0;
    }
    
    /* 移动端：最后一条行业资讯不显示下边框 */
    .brandNewsListItem:last-child {
        border-bottom: none;
    }
    
    .brandNewsListItemTitle {
        font-size: 15px;
    }
    
    .brandNewsListItemDesc {
        font-size: 13px;
    }
}