.filter-section{
    border-bottom: 1px solid #eee;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .1);
    font-size: 14px;
}

.filter-row{

}

.filter-label{
    font-size: 16px;
    font-weight: 700;
    color: #333;
    margin-right: 15px;
    min-width: 60px;
}

.filter-tags{
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    flex: 1;
}

.filter-tag{
    text-decoration: none;
    color: #666;
    background-color: #E9ECEF;
    padding: 8px 16px;
    border-radius: 20px;
    display: inline-block;
}

.filter-tag.active {
    background: #dc3545;
    color: #fff;
    border-color: #dc3545;
}

.content-list{
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .1);
}

.content-card{
    padding: 20px;
    border-bottom: 1px solid #eee;
    cursor: pointer;
    transition: all .3s ease;
    background: #fff;
    margin-bottom: 2px;
    position: relative;
}

.content-header{
    margin-bottom: 15px;
    font-size: 18px;
    font-weight: 700;
    color: #333;
    line-height: 1.4;
    display: block;
    padding: 0;
}

.content-body{
    margin-bottom: 15px;
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    display: block;
}

.content-footer{
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.content-meta{
    display: flex;
    align-items: center;
    gap: 12px;
}

.content-category{
    font-size: 12px;
    color: #dc3545;
    background: #f8f9fa;
    padding: 4px 8px;
    border-radius: 4px;
}

.content-date{
    font-size: 12px;
    color: #999;
}

@media (max-width: 768px) {
    .factory-card{
        flex-direction: column;
    }
    .factory-image {
        width: 100%;
        height: 200px;
        object-fit: cover;
        margin-right: 0;
        margin-bottom: 15px;
    }
    .factory-price {
        text-align: left;
        margin-left: 0;
        margin-top: 10px;
    }
}

/* detial */
.detail-page{
    background: #fff;
    border-radius: 8px;
    margin-top: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .1);
    overflow: hidden;
}

.policy-detail{
    padding: 15px;
    background: #f8f9fa;
    min-height: 100%;
}

.content-detail{
    /*margin-top: 15px;*/
}

.detail-card{
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
}

.breadcrumb-wrapper{
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.breadcrumb-wrapper .item{
    cursor: pointer ;
    padding: 4px 8px;
    color: rgb(13, 110, 253) ;
    font-size: 14px;
}

.detail-header-nav{
    padding: 10px 20px ;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-bottom: 1px solid #f0f0f0;
}

.detail-header {
    padding: 20px 20px 16px 20px;
    border-bottom: 1px solid #f0f0f0;
}

.detail-header .title {
    display: block;
    font-size: 22px;
    font-weight: 700;
    color: #333;
    margin-bottom: 12px;
    line-height: 1.4;
}

.meta-row{
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 24px;
    color: #666;
}

.meta-item{
    font-size: 13px;
}

.introduction{
    padding: 20px;
    border-bottom: 1px solid #f0f0f0;
}

.contents{
    color: #333;
    font-size: 15px;
    max-width: 100%;
}

.contact-info{
    padding: 20px;
}

.contact-item{
    display: flex;
    align-items: center;
    margin-bottom: 8px;
}

.contact-label{
    font-size: 14px;
    color: #333;
    margin-right: 8px;
}

.contact-value{
    font-size: 14px;
    color: #666;
}

.qr-code-section{
    margin-top: 20px;
    text-align: center;
}

.qr-code{
    width: 120px;
    height: 120px;
    background: #f0f0f0;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 8px;
    overflow: hidden;
}

.qr-code img{
    width: 100%;
    height: 100%;
}

.qr-label{
    font-size: 12px;
    color: #666;
}


















