      /* 独享CSS - 内容页 */
        
        /* 页面标题区域 */
        .page-header {
            background: linear-gradient(135deg, var(--primary-color), #152642);
            color: white;
            padding: 80px 0 60px;
            position: relative;
            overflow: hidden;
        }
        
        .page-header::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, var(--secondary-color), #ffd700);
        }
        
        .page-header h1 {
            font-size: 42px;
            margin-bottom: 15px;
            position: relative;
            display: inline-block;
        }
        
        .page-header h1::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background: linear-gradient(90deg, var(--secondary-color), #ffd700);
            box-shadow: 0 0 8px var(--secondary-color);
        }
        
        .page-header p {
            font-size: 18px;
            max-width: 700px;
            margin: 0 auto;
            color: rgba(255,255,255,0.8);
        }
        
        /* 面包屑导航 */
        .breadcrumb {
            background: rgba(255,255,255,0.1);
            padding: 15px 0;
            margin-bottom: 40px;
        }
        
        .breadcrumb .container {
            display: flex;
            align-items: center;
        }
        
        .breadcrumb a {
            color: rgba(255,255,255,0.8);
            text-decoration: none;
            transition: var(--transition);
        }
        
        .breadcrumb a:hover {
            color: var(--secondary-color);
        }
        
        .breadcrumb span {
            margin: 0 10px;
            color: rgba(255,255,255,0.5);
        }
        
        .breadcrumb .current {
            color: var(--secondary-color);
        }
        
        /* 公司详情内容 */
        .company-detail {
            padding: 60px 0;
        }
        
        .company-info-card {
            background: white;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 10px 25px rgba(0,0,0,0.08);
            margin-bottom: 40px;
            position: relative;
        }
        
        .company-info-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, var(--secondary-color), #ffd700);
        }
        
        .company-header {
            background: linear-gradient(135deg, var(--primary-color), #152642);
            color: white;
            padding: 30px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 20px;
        }
        
        .company-title h2 {
            font-size: 32px;
            margin-bottom: 10px;
        }
        
        .company-id {
            font-size: 18px;
            color: var(--secondary-color);
            font-weight: 600;
        }
        
        .company-price {
            font-size: 36px;
            font-weight: 700;
            color: var(--secondary-color);
            text-align: right;
        }
        
        .company-body {
            padding: 40px;
        }
        
        .info-section {
            margin-bottom: 40px;
        }
        
        .info-section:last-child {
            margin-bottom: 0;
        }
        
        .section-title {
            font-size: 24px;
            color: var(--primary-color);
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid rgba(212, 175, 55, 0.2);
            position: relative;

        }
        
        .section-title::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 80px;
            height: 2px;
            background: linear-gradient(90deg, var(--secondary-color), #ffd700);
        }
        
        .info-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 20px;
        }
        
        .info-item {
            display: flex;
            justify-content: space-between;
            padding: 15px 0;
            border-bottom: 1px solid #e2e8f0;
        }
        
        .info-label {
            font-weight: 600;
            color: #4a5568;
            flex: 1;
        }
        
        .info-value {
            color: #718096;
            text-align: right;
            flex: 1;
        }
        
        .license-section {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            align-items: start;
        }
        
        .license-image {
            text-align: center;
        }
        
        .license-image img {
            max-width: 100%;
            border-radius: 8px;
            box-shadow: 0 10px 25px rgba(0,0,0,0.1);
            border: 1px solid #e2e8f0;
            transition: var(--transition);
        }
        
        .license-image img:hover {
            transform: scale(1.02);
            box-shadow: 0 15px 30px rgba(0,0,0,0.15);
        }
        
        .license-details {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }
        
        .business-scope {
            background: rgba(212, 175, 55, 0.05);
            padding: 20px;
            border-radius: 8px;
            border-left: 4px solid var(--secondary-color);
        }
        
        .business-scope h4 {
            color: var(--primary-color);
            margin-bottom: 10px;
        }
        
        .advantage-list {
            list-style: none;
        }
        
        .advantage-list li {
            margin-bottom: 10px;
            padding-left: 25px;
            position: relative;
        }
        
        .advantage-list li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: var(--secondary-color);
            font-weight: 700;
        }
        
        .contact-section {
            background: linear-gradient(135deg, var(--primary-color), #152642);
            color: white;
            padding: 40px;
            border-radius: 12px;
            text-align: center;
            margin-top: 40px;
        }
        
        .contact-section h3 {
            font-size: 28px;
            margin-bottom: 15px;
            color: var(--secondary-color);
        }
        
        .contact-section p {
            margin-bottom: 25px;
            font-size: 18px;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .contact-buttons {
            display: flex;
            justify-content: center;
            gap: 20px;
            flex-wrap: wrap;
        }
        
        .btn {
            display: inline-flex;
            align-items: center;
            padding: 14px 30px;
            background: linear-gradient(135deg, var(--secondary-color), #ffd700);
            color: var(--primary-color);
            text-decoration: none;
            border-radius: 30px;
            font-weight: 600;
            transition: var(--transition);
            box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
        }
        
        .btn:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(212, 175, 55, 0.5);
        }
        
        .btn-outline {
            background: transparent;
            border: 2px solid var(--secondary-color);
            color: var(--secondary-color);
        }
        
        .btn-outline:hover {
            background: var(--secondary-color);
            color: var(--primary-color);
        }
        
        .btn i {
            margin-right: 8px;
        }
        
        /* 响应式设计 */
        @media (max-width: 992px) {
            .license-section {
                grid-template-columns: 1fr;
            }
            
            .company-header {
                flex-direction: column;
                align-items: flex-start;
            }
            
            .company-price {
                text-align: left;
            }
        }
        
        @media (max-width: 768px) {
            .page-header h1 {
                font-size: 32px;
            }
            
            .company-title h2 {
                font-size: 26px;
            }
            
            .company-price {
                font-size: 28px;
            }
            
            .company-body {
                padding: 25px;
            }
            
            .info-grid {
                grid-template-columns: 1fr;
            }
            
            .contact-buttons {
                flex-direction: column;
                align-items: center;
            }
            
            .btn {
                width: 100%;
                max-width: 300px;
                justify-content: center;
            }
        }
        
        @media (max-width: 576px) {
            .company-header {
                padding: 20px;
            }
            
            .company-body {
                padding: 20px;
            }
            
            .contact-section {
                padding: 30px 20px;
            }
        }