
           /* 自定义字体引入 */
        @font-face {
            font-family: 'ZiHunDaHei';
            src: url('../font/ZiHunDaHei-Regular(ShangYongXuShouQuan)-2.ttf') format('truetype');
            font-weight: normal;
            font-style: normal;
        }
        
        @font-face {
            font-family: 'ZiHunDaHei';
            src: url('../font/ZiHunDaHei-Bold(ShangYongXuShouQuan)-2.ttf') format('truetype');
            font-weight: bold;
            font-style: normal;
        }
        
      
        /* 自定义样式 */
        body {
           font-family: 'ZiHunDaHei', 'Arial', 'AlibabaPuHuiTi';
            color: #333;
            margin: 0 auto;
        }
        .view-container{
             -webkit-font-smoothing: antialiased;
            max-width: 1920px;
            background-color: #f5f5f5;
            margin: 0 auto;
        }
        /* 导航栏样式 */
        .navbar {
            background-color: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            transition: all 0.3s ease;
        }
        
        .nav-link {
            position: relative;
            transition: all 0.3s ease;
        }
        
        .navActive::before {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 0;
            height: 2px;
            background-color: #fff;
            transition: width 0.3s ease;
        }
        .nav-link::after{
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 0;
            height: 2px;
            background-color: #bc2c2f;
            transition: width 0.3s ease;
        }
        
        .nav-link:hover::after {
            width: 100%;
        }
        
        /* 英雄区域样式 */
        .hero-section {
            color: white;
            position: relative;
            overflow: hidden;
        }
        
        .hero-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-image: url('data:image/svg+xml;charset=utf-8,%3Csvg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"%3E%3Cpath fill="%23ffffff" fill-opacity="0.1" d="M0,160L48,176C96,192,192,224,288,224C384,224,480,192,576,186.7C672,181,768,203,864,202.7C960,203,1056,181,1152,165.3C1248,149,1344,139,1392,133.3L1440,128L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"%3E%3C/path%3E%3C/svg%3E');
            background-size: cover;
            background-position: center;
        }
        
        /* 按钮样式 */
        .btn-primary {
            background-color: #1890ff;
            border-color: #1890ff;
            transition: all 0.3s ease;
        }
        
        .btn-primary:hover {
            background-color: #40a9ff;
            border-color: #40a9ff;
            transform: translateY(-2px);
            box-shadow: 0 8px 16px rgba(24, 144, 255, 0.3);
        }
        
        .btn-outline {
            border-color: #1890ff;
            color: #1890ff;
            transition: all 0.3s ease;
        }
        
        .btn-outline:hover {
            background-color: #1890ff;
            color: white;
            transform: translateY(-2px);
        }
        
        /* 服务卡片样式 */
        .service-card {
            transition: all 0.3s ease;
            border: 1px solid #e8e8e8;
            border-radius: 8px;
            overflow: hidden;
        }
        
        .service-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
            border-color: #1890ff;
        }
        
        /* 案例卡片样式 */
        .case-card {
            position: relative;
            overflow: hidden;
            border-radius: 8px;
        }
        
        .case-card::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.7) 100%);
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        
        .case-card:hover::after {
            opacity: 1;
        }
        
        .case-card .case-content {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            padding: 20px;
            color: white;
            transform: translateY(100%);
            transition: transform 0.3s ease;
            z-index: 1;
        }
        
        .case-card:hover .case-content {
            transform: translateY(0);
        }
        
        /* 统计数字样式 */
        .stat-number {
            font-size: 3rem;
            font-weight: bold;
            color: #1890ff;
        }
        
        /* 联系表单样式 */
        .contact-form input,
        .contact-form textarea {
            width: 100%;
            padding: 12px;
            border: 1px solid #e8e8e8;
            border-radius: 4px;
            margin-bottom: 16px;
            transition: border-color 0.3s ease;
        }
        
        .contact-form input:focus,
        .contact-form textarea:focus {
            outline: none;
            border-color: #1890ff;
            box-shadow: 0 0 0 2px rgba(24, 144, 255, 0.2);
        }
        
        /* 页脚样式 */
        .footer {
            background-color: #1a1a1a;
            color: #999;
        }
        
        .footer-link {
            color: #999;
            transition: color 0.3s ease;
        }
        
        .footer-link:hover {
            color: white;
        }
        
        /* 在线咨询悬浮按钮 */
        .floating-contact {
            position: fixed;
            bottom: 20px;
            right: 20px;
            z-index: 1000;
        }
        
        .contact-btn {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background-color: #1890ff;
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 10px;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 4px 12px rgba(24, 144, 255, 0.3);
        }
        
        .contact-btn:hover {
            transform: scale(1.1);
            box-shadow: 0 6px 16px rgba(24, 144, 255, 0.4);
        }
         /* 新闻动态页面样式 */
        .IndustryTrends {
            background-image: url('/assets/images/IndustryTrends.png');
            background-repeat: no-repeat;
            background-size: 500px 40px;
            background-position: center top;
            padding-top: 10px;
        }
        .CompanyNews {
            background-image: url('/assets/images/CompanyNews.png');
            background-repeat: no-repeat;
            background-size: 500px 40px;
            background-position: center top;
            padding-top: 10px;
        }
        .productBg {
            background-image: url('/assets/images/companews.png');
            background-repeat: no-repeat;
            background-size: 100% 500px;
            background-position: center top;
        }
        .border {
            border: 1px solid #cccccc;
        }
        .active-class {
            color: #bc2c2f !important;
        } .wordwrap-break-word {
          /* white-space: pre-wrap;  */
  word-break: break-all; 
        }