@import url("topheader.css"); 
 



 /* 品牌头部信息优化样式 */
        .brand-hero {
            background: linear-gradient(135deg, #fef6f0 0%, #fdf2e9 50%, #f5e6d3 100%);
            border-radius: 12px;
            padding: 40px;
            margin-bottom: 24px;
            box-shadow: 0 2px 12px rgba(0,0,0,0.06);
            position: relative;
        }
        .brand-hero-badge {
            position: absolute;
            top: 20px;
            right: 20px;
        }
        .brand-hero-badge img {
            width: 80px;
            height: auto;
        }
        .brand-hero-content {
            display: flex;
            flex-direction: column;
            gap: 30px;
        }
        .brand-header-main {
            display: flex;
            align-items: center;
            gap: 50px;
        }
        .brand-pic {
            flex-shrink: 0;
            width: 280px;
            height: 180px;
            background: #fff;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 6px 24px rgba(0,0,0,0.1);
            overflow: hidden;
            padding: 15px 25px;
            display: none;
        }
        .brand-pic img {
            max-width: 100%;
            max-height: 100%;
            object-fit: contain;
        }
        .brand-info {
            flex: 1;
            display: flex;
            flex-direction: column;
            justify-content: center;
            gap: 20px;
        }
        .brand-title-row {
            display: flex;
            align-items: center;
            gap: 24px;
            flex-wrap: wrap;
        }
        .brand-title-row h1 {
            margin: 0;
            font-size: 36px;
            font-weight: 700;
            color: #2c3e50;
            letter-spacing: 2px;
        }
        .brand-tags {
            display: flex;
            gap: 10px;
        }
        .brand-tag {
            background: linear-gradient(135deg, #ff6b35 0%, #ff6b35 100%);
            color: #fff;
            padding: 6px 14px;
            border-radius: 20px;
            font-size: 13px;
            font-weight: 500;
        }
        .brand-products {
            display: flex;
            align-items: center;
            gap: 12px;
            flex-wrap: wrap;
        }
        .products-label {
            font-size: 14px;
            color: #666;
            font-weight: 500;
        }
        .product-tag {
            background: #fff;
            color: #3498db;
            padding: 5px 12px;
            border-radius: 6px;
            font-size: 13px;
            border: 1px solid #b8e0f0;
        }
        .brand-meta-grid {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 16px;
            padding-top: 24px;
            border-top: 1px solid #dee2e6;
        }
        .brand-meta-item {
            display: flex;
            flex-direction: column;
            gap: 6px;
            padding: 14px 18px;
            background: #fff;
            border-radius: 10px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.04);
        }
        .brand-meta-item-wide {
            grid-column: span 1;
        }
        .brand-meta-label {
            font-size: 12px;
            color: #2c6280;
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
        .brand-meta-value {
            font-size: 14px;
            color: #2c6280;
            font-weight: 600;
        }
        .brand-meta-value a {
            color: #3498db;
            text-decoration: none;
            transition: color 0.3s;
        }
        .brand-meta-value a:hover {
            color: #2980b9;
            text-decoration: underline;
        }

        /* 响应式适配 */
        @media (max-width: 768px) {
            .mobile-menu-btn {
                display: flex !important;
                flex-direction: column;
                gap: 5px;
                padding: 8px;
                cursor: pointer;
                background: rgba(255,255,255,0.9);
                border-radius: 8px;
                border: 1px solid #eef2f8;
            }

            .mobile-menu-btn span {
                display: block;
                width: 22px;
                height: 2px;
                background: #5a6e7c;
                border-radius: 2px;
            }

            .navbar {
                display: none !important;
            }
            .brand-hero {
                padding: 24px;
            }
            .brand-hero-badge {
                position: static;
                margin-bottom: 16px;
            }
            .brand-hero-badge img {
                width: 60px;
            }
            .brand-header-main {
                flex-direction: column;
                align-items: center;
                text-align: center;
                gap: 24px;
            }
            .brand-pic {
                width: 240px;
                height: 150px;
            }
            .brand-title-row {
                justify-content: center;
                flex-direction: column;
                gap: 12px;
            }
            .brand-title-row h1 {
                font-size: 26px;
            }
            .brand-products {
                justify-content: center;
            }
            .brand-meta-grid {
                display: none;
            }
            .news-grid {
                grid-template-columns: repeat(2, 1fr) !important;
            }
            .news-card {
                flex-direction: column;
            }
            .news-card-img {
                width: 100%;
                height: 120px;
            }
        }

        /* 侧边栏新闻资讯样式 */
        .sidebar-news {
            padding: 10px 0;
        }
        .sidebar-news-item {
            display: flex;
            align-items: flex-start;
            padding: 10px 15px;
            text-decoration: none;
            border-bottom: 1px solid #f0f0f0;
            transition: background-color 0.3s;
        }
        .sidebar-news-item:last-child {
            border-bottom: none;
        }
        .sidebar-news-item:hover {
            background-color: #f9f9f9;
        }
        .sidebar-news-pic {
            width: 60px;
            height: 60px;
            flex-shrink: 0;
            margin-right: 12px;
            border-radius: 4px;
            overflow: hidden;
            background-color: #eee;
            display: none;
        }
        .sidebar-news-pic img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        .sidebar-news-content {
            flex: 1;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }
        .sidebar-news-title {
            font-size: 14px;
            color: #1e4a6b;
            line-height: 1.4;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
            margin-bottom: 6px;
        }
        .sidebar-news-item:hover .sidebar-news-title {
            color: #e53935;
        }
        .sidebar-news-date {
            font-size: 12px;
            color: #1e4a6b;
        }
        .sidebar-more-link {
            display: block;
            text-align: center;
            padding: 12px 15px;
            color: #1e4a6b;
            font-size: 14px;
            text-decoration: none;
            border-top: 1px solid #eee;
            transition: color 0.3s;
        }
        .sidebar-more-link:hover {
            color: #e53935;
        }
        

 
      

         /* ========== 底部 ========== */
        .footer {
            max-width: 1352px;
            margin: 3rem auto 0;
            padding: 2rem 0 3rem;
            border-top: 1px solid #eef2f8;
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 2rem;
        }
        .footer-col p {
            color: #8aa2b8;
            font-size: 0.8rem;
            margin-top: 0.5rem;
        }
        .footer-links {
            display: flex;
            gap: 2rem;
        }
        .footer-links a {
            text-decoration: none;
            color: #5a6e7c;
            font-size: 0.8rem;
        }

/* 手机端 550px */
@media (max-width: 550px) {
    /* 页脚：纵向居中 */
    .footer {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 1.2rem;
        padding: 1.5rem 1rem;
    }

    .footer-links {
        flex-wrap: wrap;
        gap: 12px 18px;
        justify-content: center;
    }

    .footer-links a {
        font-size: 0.75rem;
    }
}
