
        /* 企业品牌标题 */
        .brand-title {
            text-align: center;
            color: #003366; /* 企业深蓝 */
            font-size: 42px;
            font-weight: bold;
            margin-bottom: 40px;
            letter-spacing: 2px;
        }

        /* 信息模块样式 */
        .info-section {
            margin-bottom: 30px;
            padding: 20px;
            border-left: 5px solid #003366;
            background-color: #f9fafc;
        }

        /* 模块小标题 */
        .section-title {
            color: #003366;
            font-size: 20px;
            font-weight: bold;
            margin-bottom: 10px;
            text-align: left;
        }

        /* 模块内容 */
        .section-content {
            font-size: 16px;
            color: #444;
        }

        /* 口号特殊样式 */
        .slogan {
            font-size: 18px;
            font-weight: 500;
            color: #003366;
        }
        
        /* 内容卡片 */
        .card {
            background: #fff;
            border-radius: 12px;
            padding: 35px;
            margin-bottom: 25px;
            box-shadow: 0 2px 15px rgba(0,0,0,0.08);
            transition: transform 0.2s ease;
        }

        .card:hover {
            transform: translateY(-3px);
        }

        /* 卡片标题 */
        .card-title {
            font-size: 24px;
            color: #003366;
            font-weight: bold;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid #003366;
            display: inline-block;
        }

        /* 正文内容 */
        .card-content {
            font-size: 16px;
            color: #444;
            text-align: justify;
            margin-bottom: 15px;
        }

        /* 产品列表 */
        .product-list {
            padding-left: 25px;
            margin: 15px 0;
        }

        .product-list li {
            margin-bottom: 10px;
            line-height: 1.8;
        }

        /* 高亮强调 */
        .highlight {
            color: #003366;
            font-weight: bold;
        }

        /* 企业文化重点样式 */
        .culture-text {
            font-size: 17px;
            color: #003366;
            font-weight: 600;
        }