/* 市场分类归档样式 */
.market-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: left;
    width: 100%;
}

.market-cat-banner {
    position: relative;
    background-image: var(--market-banner-bg, none);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #fff;
    min-height: 350px;
    display: flex;
    align-items: center;
    margin-bottom: 30px;
    text-align: left;
}

/* 渐变遮罩确保文字可读性并匹配风格 */
.market-cat-banner-inner {
    width: 100%;
    height: 100%;
    min-height: 350px; /* 匹配 Banner 高度 */
    background: linear-gradient(to right, rgba(10, 30, 60, 0.8) 0%, rgba(10, 30, 60, 0.2) 100%);
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.market-breadcrumbs {
    font-size: 16px;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.8);
    text-transform: capitalize;
    text-align: left;
}

.market-breadcrumbs a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s;
}

.market-breadcrumbs a:hover {
    color: #fff;
}

.market-cat-title {
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #fff;
    line-height: 1.2;
    text-align: left;
}

.market-cat-subtitle {
    font-size: 24px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.9);
}

.market-content-container {
    padding-bottom: 50px;
}
