        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        
        }
      a { color:#666;
    text-decoration: none;
}



  .news-list {
            list-style: none;
        }
        
        .news-item { 
            background-color: #fff;
            border-radius: 8px;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
            margin-bottom:30px;
            overflow: hidden;
            transition: transform 0.3s ease;
        }
        
        .news-item:hover {
            transform: translateY(-5px);
        }
        
        .news-link {
            display: flex;
            text-decoration: none;
            color: inherit;
        }
        
        .news-image {
            width:300px;
            height:200px;
            object-fit: cover;
        }
        
        .news-content {
            padding:35px;
            flex: 1;
        }
        
        .news-title {
            font-size: 23px;
            font-weight: bold;
            margin-bottom: 10px;
            color: #222;
        }
        
        .news-desc {
            font-size: 14px;
            color: #666;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }
        
        .news-meta {
            margin-top: 10px;
            font-size: 12px;
            color: #999;
        }

        /* 手机端样式 */
        @media (max-width: 768px) {
            .news-link {
                flex-direction: column;
            }
            
            .news-image {
                width: 100%;
                height: auto;
            }
            
            .news-content {
                padding: 15px;
            }
            
            .news-title {
                font-size: 16px;
            }
            
            .news-desc {
                font-size: 13px;
            }
        }



.fonthss {font-size:30px;color: #db0d00; font-weight:bold;line-height: 40px; }
	  
 .gd{background-color:#000; color:#fff;   border-radius:30px; width:30%; max-width:400px; line-height:56px; height:56px; background-image: -webkit-linear-gradient(0deg, #d60000 1%, #ff6000 100%);
    background-image: -ms-linear-gradient(0deg, #000 1%, #000 100%);
    box-shadow: 0px 6px 6px 0px rgba(231, 39,0, 0.2); }
.gd:hover{  color:#FFFFFF; border-radius:30px; width:30%; max-width:400px; line-height:56px; height:56px;background-image: -webkit-linear-gradient(0deg, #ff6000 1%, #d60000 100%);
    background-image: -ms-linear-gradient(0deg, #000 1%, #000 100%); }
	
	#end { }
#end ul { list-style: none; display:inline-block;  }
#end ul li { font-size:14px;float:left;}
#end ul li a { display:block;  height:55px; padding-left:5px;   padding:0px 15px; margin-right:10px; float:left;line-height:55px; color:#333; }
#end ul li a:hover {  height:55px;  color:#fff;  background-image: -webkit-linear-gradient(0deg, #d60000 1%, #ff6000 100%);border-radius:30px;
    background-image: -ms-linear-gradient(0deg, #000 1%, #000 100%);
    box-shadow: 0px 6px 6px 0px rgba(0, 95,167, 0.2) }
	
	
	#dbfl { }
#dbfl ul { list-style: none; display:inline-block;  }
#dbfl ul li { font-size:14px;float:left;}
#dbfl ul li a { display:block;  height:55px; padding-left:5px;   padding:0px 25px; margin-right:10px; float:left;line-height:55px; color:#666; }
#dbfl ul li a:hover {  height:55px;  color:#fff;  background-image: -webkit-linear-gradient(0deg, #d60000 1%, #ff6000 100%);border-radius:30px;
    background-image: -ms-linear-gradient(0deg, #000 1%, #000 100%);
    box-shadow: 0px 6px 6px 0px rgba(219, 13,0, 0.2) }
 
 
        
        /* 导航栏样式 - 完全透明优化 */
        .navbar { border-bottom:1px solid rgba(255, 255, 255, 0.19);
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 5%;
            z-index: 1000;
            transition: all 0.4s ease;
            background: rgba(0,0,0,0) !important;
            backdrop-filter: none;
        }
        
        .navbar.scrolled {
            background: rgba(255, 255, 255, 0.96) !important;
            box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
            backdrop-filter: blur(8px);
            padding: 10px 5%;
        }
        
        /* LOGO样式优化 */
        .logo {
            display: flex;
            flex-direction: column;
            transition: all 0.3s ease;
            z-index: 1001;
            height: 60px;
        }
        
        .logo img {
            height: 100%;
            width: auto;
            object-fit: contain;
            transition: opacity 0.3s ease;
        }
        
        .logo-default {
            display: block;
        }
        
        .logo-scrolled {
            display: none;
        }
        
        .navbar.scrolled .logo-default {
            display: none;
        }
        
        .navbar.scrolled .logo-scrolled {
            display: block;
        }
        
        /* 导航菜单容器 */
        .nav-container {
            display: flex;
            justify-content: center;
            flex-grow: 1;
            padding: 0 20px;
        }
        
        .nav-links {
            display: flex;
            list-style: none;
            margin: 0;
            padding: 0;
            align-items: center;
        }
        
        .nav-links li {
            position: relative;
            margin: 20px 35px;
        }
        
        .nav-links a {
            color: white;
            text-decoration: none;
            font-size: 16px;
            font-weight: 500;
            transition: all 0.3s ease;
            padding: 10px 0;
            white-space: nowrap;
            text-shadow: 0 1px 3px rgba(0,0,0,0.5);
        }
        
        .navbar.scrolled .nav-links a {
            color: #333;
            text-shadow: none;
        }
        
        /* 新版横向下拉菜单 - 修改间距和悬停效果 */
        .dropdown {
            position: relative;
        }
        
        .dropdown-content {
            position: absolute;
            top: calc(100% + 20px); /* 修改为20px间距 */
            left: 0;
           
            background: rgba(255,255,255,0.98);
            display: none;
            padding: 30px 0;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            z-index: 999;
            border-top: 1px solid #f0f0f0;
        }
        
        /* 添加下拉菜单与导航项之间的间隙元素 */
        .dropdown-gap {
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            height: 20px; /* 与下拉菜单间距相同 */
            display: none;
        }
        
        .dropdown:hover .dropdown-content,
        .dropdown:hover .dropdown-gap {
            display: flex;
        }
        
        /* 确保鼠标可以从菜单移动到下拉框而不消失 */
        .dropdown-content:hover {
            display: flex;
        }
        
        .dropdown-column {
            padding: 0 30px;
            min-width: 200px;
        }
        
        .dropdown-column h3 {
            color: #0066cc;
            margin-bottom: 15px;
            font-size: 16px;
            padding-bottom: 5px;
            border-bottom: 1px solid #eee;
        }
        
        .dropdown-column a {
            color: #666 !important;
            display: block;
            padding: 8px 0;
            font-size: 14px;
            transition: all 0.2s ease;
            text-shadow: none !important;
        }
        
        .dropdown-column a:hover {
            color: #0066cc !important;
            transform: translateX(5px);
        }
        
        /* 电话区域优化 */
        .phone-section {
            display: flex;
            align-items: center;
            color: white;
            text-shadow: 0 1px 3px rgba(0,0,0,0.5);
            background: rgba(255,255,255,0.15);
            padding: 8px 15px;
            border-radius: 20px;
            transition: all 0.3s ease;
        }
        
        .navbar.scrolled .phone-section {
            color: #333;
            text-shadow: none;
            background: rgba(0,0,0,0.05);
        }
        
        .phone-icon {
            margin-right: 8px;
            font-size: 16px;
        }
        
        .phone-number {
            font-weight: 500;
        }
        
        /* 轮播图优化 */
        .banner {
            width: 100%;
            height: 100vh;
            position: relative;
            overflow: hidden;
        }
        
        .swiper {
            width: 100%;
            height: 100%;
        }
        
        .swiper-slide {
            position: relative;
        }
        
        .swiper-slide img {
            display: block;
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .swiper-slide::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to bottom, rgba(0,0,0,0.2) 0%, transparent 30%);
        }
        
        .swiper-pagination {
            bottom: 30px !important;
        }
        
        .swiper-pagination-bullet {
            width: 12px;
            height: 12px;
            background: white;
            opacity: 0.6;
            margin: 0 8px !important;
        }
        
        .swiper-pagination-bullet-active {
            opacity: 1;
            background: white;
        }
        
        /* 移动端样式优化 */
        .menu-toggle {
            display: none;
            cursor: pointer;
            color: white;
            font-size: 24px;
            background: transparent;
            border: none;
            outline: none;
            text-shadow: 0 1px 3px rgba(0,0,0,0.5);
            z-index: 1001;
        }
        
        .mobile-menu {
            position: fixed;
            top: 0;
            left: -100%;
            width: 80%;
            max-width: 320px;
            height: 100vh;
            background-color: white;
            transition: all 0.4s ease;
            z-index: 999;
            overflow-y: auto;
            padding: 80px 20px 30px;
            box-shadow: 2px 0 15px rgba(0, 0, 0, 0.1);
        }
        
        .mobile-menu.active {
            left: 0;
        }
        
        .mobile-nav-links {
            list-style: none;
        }
        
        .mobile-nav-links li {
            margin: 15px 0;
            border-bottom: 1px solid #f0f0f0;
        }
        
        .mobile-nav-links a {
            color: #333;
            text-decoration: none;
            font-size: 16px;
            display: block;
            padding: 12px 0;
            transition: all 0.2s ease;
        }
        
        .mobile-nav-links a:hover {
            color: #db0d00;
        }
        
        .mobile-dropdown-content {
            display: none;
            padding-left: 15px;
            background: #f9f9f9;
            margin: 10px -20px;
            padding: 10px 20px;
        }
        
        .mobile-dropdown.active .mobile-dropdown-content {
            display: block;
        }
        
        .mobile-dropdown-toggle {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .mobile-dropdown-toggle i {
            transition: transform 0.3s ease;
        }
        
        .mobile-dropdown.active .mobile-dropdown-toggle i {
            transform: rotate(180deg);
        }
        
        /* 响应式调整 */
        @media (max-width: 1200px) {
            .nav-links li {
                margin: 0 15px;
            }
        }
        
        @media (max-width: 992px) {
            .navbar {
                padding: 12px 20px;
            }
            
            .menu-toggle {
                display: block;
            }
            
            .nav-container {
                display: none;
            }
            
            .phone-section {
                display: none;
            }
            
            .banner {
                height: 60vh;
            }
            
            .swiper-slide img {
                object-position: center;
            }
            
            .mobile-menu .phone-section {
                display: flex;
                color: #333;
                margin-top: 20px;
                background: #f0f0f0;
                justify-content: center;
            }
        }
        
        @media (max-width: 576px) {
            .banner {
                height: 50vh;
            }
            
            .logo {
                height: 40px;
            }
            
            .mobile-menu {
                width: 85%;
            }
        }
		
		
		
		
		
		
		    .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 20px;
        }
        
        header {
            background: linear-gradient(135deg, #d60000, #ff6000);
            color: white;
            padding: 40px 20px;
            text-align: center;
            border-radius: 0 0 10px 10px;
            margin-bottom: 30px;
        }
        
        h1 { line-height:60px;
            font-size: 2.5rem;
            margin-bottom: 10px;
        }
        
        h2 {
            font-size: 1.8rem;
            margin: 25px 0 15px;
            color: #444;
        }
        
        .intro {
            font-size: 1.2rem;
            max-width: 800px;
            margin: 0 auto 30px;
        }
        
        /* 优势卡片布局 - 桌面 */
        .advantages {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 20px;
            margin-bottom: 40px;
        }
        
        .advantage-card {
            flex: 1 1 calc(25% - 20px);
            background: white;
            padding: 25px;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            transition: transform 0.3s ease;
        }
        
        .advantage-card:hover {
            transform: translateY(-5px);
        }
        
        .advantage-icon {
            font-size: 2.5rem;
            color: #e72700;
            margin-bottom: 15px;
        }
        
        .advantage-title {
            font-size: 1.3rem;
            margin-bottom: 10px;
            color: #555;
        }
        
        /* 响应式设计 - 平板 */
        @media (max-width: 992px) {
            .advantage-card {
                flex: 1 1 calc(50% - 20px);
            }
            
            h1 {
                font-size: 2rem;
            }
            
            h2 {
                font-size: 1.6rem;
            }
        }
        
        /* 响应式设计 - 手机 */
        @media (max-width: 768px) {
            header {
                padding: 30px 15px;
            }
            
            .advantage-card {
                flex: 1 1 100%;
            }
            
            h1 {
                font-size: 1.8rem;
            }
            
            h2 {
                font-size: 1.4rem;
            }
            
            .intro {
                font-size: 1rem;
            }
            
            .advantage-icon {
                font-size: 2rem;
            }
        }
		
		
		
		


        
        .company-card {
            display: flex;
            flex-wrap: wrap;
            background-color: white;
            border-radius: 5px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            margin-bottom: 40px;
            overflow: hidden;
        }
        
        .company-image {
            flex: 1;
            min-width: 300px;
        }
        
        .company-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }
        
        .company-info {
            flex: 2;
            min-width: 300px;
            padding: 30px;
        }
        
        .company-info p {
            margin-bottom: 15px;
            text-align: justify;
            text-indent: 2em;
        }
        
        .stats-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-around;
            margin-top: 40px;
        }
        
        .stat-item {
            position: relative;
            text-align: center;
            margin: 15px;
            flex: 1;
            min-width: 200px;
            background-color: white;
            padding: 20px;
            border-radius: 5px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s;
        }
        
        .stat-item:hover {
            transform: translateY(-5px);
        }
        
        .stat-number {
            font-size: 42px;
            font-weight: bold;
            color: #e72700;
            margin: 10px 0;
            height: 60px;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
        }
        
        .stat-number::after {
            content: "+";
            position: absolute;
            right:38px;
            top: 5px;
            font-size: 24px;
            color: #e72700;
        }
        
        .stat-label {
            font-size: 16px;
            color: #666;
        }
        
        @media (max-width: 768px) {
            .header h1 {
                font-size: 24px;
            }
            
            .company-card {
                flex-direction: column;
            }
            
            .company-info {
                padding: 20px;
            }
            
            .stat-item {
                min-width: 150px;
                margin: 10px;
            }
            
            .stat-number {
                font-size: 32px;
                height: 50px;
            }
            
            .stat-number::after {
                font-size: 18px;
                right: -5px;
                top: 2px;
            }
        }
		
		
		
		
		
		.article-link {
            display: block;
            text-decoration: none;
            color: inherit;
        }
        
        .article-card {
            background-color: white;
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            margin-bottom: 20px;
            overflow: hidden;
            transition: transform 0.3s ease;
        }
        
        .article-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }
        
        .article-image {
            width: 100%;
            height: 180px;
            background-color: #eee;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .article-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }
        
        .article-card:hover .article-image img {
            transform: scale(1.05);
        }
        
        .article-text {
            padding: 15px;
        }
        
        .article-title {
            font-size: 18px;
            font-weight: bold;
            margin-bottom: 10px;
            color: #333;
        }
        
        .article-content {
            font-size: 14px;
            color: #666;
            display: -webkit-box;
            -webkit-line-clamp: 3;
            -webkit-box-orient: vertical;
            overflow: hidden;
            text-overflow: ellipsis;
        }
        
        /* 电脑端样式 */
        @media (min-width: 768px) {
            .article-grid {
                display: grid;
                grid-template-columns: repeat(2, 1fr);
                gap: 20px;
            }
            
            .article-card {
                display: flex;
                height: 180px;
            }
            
            .article-image {
                width: 200px;
                min-width: 200px;
                height: 100%;
            }
            
            .article-text {
                padding: 20px;
                display: flex;
                flex-direction: column;
                justify-content: center;
            }
            
            .article-title {
                font-size: 18px;
            }
            
            .article-content {
                font-size: 14px;
            }
        }
        
        /* 手机端样式 */
        @media (max-width: 767px) {
            .article-grid {
                display: grid;
                grid-template-columns: 1fr;
                gap: 15px;
            }
            
            .article-image {
                height: 150px;
            }
            
            .article-title {
                font-size: 16px;
            }
            
            .article-content {
                font-size: 13px;
            }
        }
		
		
		
		 .foot { display:none;}
   #footpanel {
	position: fixed; display:block;
	bottom:0; left:auto; right:auto; max-width:750px; background-image: -webkit-linear-gradient(0deg, #d80600 1%, #f64b00 100%);
    background-image: -ms-linear-gradient(0deg, #000 1%, #000 100%);
    box-shadow: 0px 6px 6px 0px rgba(0, 95,167, 0.2)
	z-index: 9999; /*--Keeps the panel on top of all other elements--*/ border-bottom: none;  height:70px;	border-bottom: none; padding-top:14px; 
	width: 100%;
}
@media only screen and (min-width: 768px) {
.foot {background-color:#232323; overflow:hidden; display:block;}
#footpanel{ display:none;}
}




#contact{ width:100%; float:left; margin-bottom:2%;}
#contact ul{list-style-type:none; margin-left:-2%;}
#contact ul li{ width:48%; margin-top:1%; margin-bottom:1%; float:left; margin-left:2%; cursor:pointer;transition:all 0.4s ease-in-out 0s;}

#contact ul li:hover .nrc{ background-color:#db0d00; border:#db0d00 solid 1px;background:-webkit-linear-gradient(top, #bb0000 ,#db0d00);}
#contact ul li .nrc{ width:100%; padding:5%; display:block; border:#ddd solid 1px; background-color:#f4f4f4;border-radius:5px; overflow:hidden; float:left; transition:all 0.4s ease-in-out 0s; position:relative; z-index:1; }
#contact ul li .nrc dd{ width:100%; float:left; text-align:center;}
#contact ul li .nrc dd i{ width:100px; height:100px; background-color:#db0d00;border-radius:100%; font-size:40px; line-height:100px; color:#fff; transition:all 0.4s ease-in-out 0s; }
#contact ul li .nrc .bgf{ width:100%; height:100%; z-index:-1; position:absolute; left:0px; top:0px;filter: Alpha(Opacity=0);
-moz-opacity:0; 		opacity:0;transition:all 0.4s ease-in-out 0s; text-align:right;}
#contact ul li .nrc .bgf i{ font-size:350px; color:rgba(255,255,255,0.3); margin-top:5%; }
#contact ul li:hover .nrc dd i{ background-color:#fff; color:#db0d00;}
#contact ul li:hover .nrc .bgf{filter: Alpha(Opacity=100);
-moz-opacity:1; 		opacity:1;}
#contact ul li .nrc h4{ transition:all 0.4s ease-in-out 0s; 
	font-size:28px;
	color:#333;
	line-height:2;
	width:100%;
	float:left;
	 font-weight:normal; margin-top:10px; margin-bottom:10px; text-align:center;
}
#contact ul li .nrc .xq{font-family: Verdana, Arial, Helvetica, sans-serif; color:#888; line-height:25px;text-align:center; height:50px;width:100%; float:left; overflow-y:auto; transition:all 0.4s ease-in-out 0s; }
#contact ul li:hover .nrc .xq,#contact ul li:hover .nrc h4{ color:#FFFFFF}
#contact ul li .nrc .xq::-webkit-scrollbar {
    width: 4px;
    height: 4px;
    background-color:#288FE1
}
#contact ul li .nrc .xq::-webkit-scrollbar-track {
    border-radius: 10px;
    background-color: #E2E2E2
}
#contact ul li .nrc .xq::-webkit-scrollbar-thumb {
    border-radius: 4px;
    -webkit-box-shadow: inset 0 0 4px rgba(255,255,255, .6);
    background-color: #333;
}






   .grid-container {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
            max-width: 1400px;
            margin: 0 auto;
        }
        
        .grid-item { background-color: #fff; padding-top:8px;border-radius: 8px;box-shadow:0 2px 8px rgba(0, 0, 0, 0.1);
            display: block;
            text-decoration: none;
            color: #333;
            transition: transform 0.3s ease;
        }
        
        .grid-item:hover {
            transform: translateY(-5px);
        }
        
        .image-container {
            position: relative;
            width:95%;
            padding-top:90%; /* 1:1 宽高比 */
            overflow: hidden;
            border-radius: 8px;
            background-color: #f5f5f5;
        }
        
        .image-container img {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
        }
        
        .title {
            margin-top: 10px;
     
            text-align: center;
            padding: 0 5px;
            overflow: hidden;
            text-overflow: ellipsis;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            height: 40px;
            line-height:40px;
        }
        
        @media (max-width: 900px) {
            .grid-container {
                grid-template-columns: repeat(3, 1fr);
            }
        }
        
        @media (max-width: 768px) {
            .grid-container {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        
        @media (max-width: 480px) {
            .grid-container {
                gap: 15px;
            }
            
            .title {
                font-size: 14px;
                height: 36px;
                line-height: 18px;
            }
        }
		
		
		@media only screen and (max-width: 1000px){#contact ul li .nrc h4{ font-size:18px;}#contact ul li .nrc dd i{ width:80px; height:80px;font-size:24px; line-height:80px; }#contact ul li .nrc .bgf i{ font-size:200px; }#contact ul li .nrc .xq p{ font-size:12px; line-height:20px;}#contact ul li .nrc .xq{ height:60px;}#guesta p{ font-size:14px;}}
@media only screen and (max-width: 800px){#zxmap{ width:100%; position:relative; float:left; padding-bottom:65%;background-color:#000; margin-bottom:12px;}#contact ul li .nrc h4{ font-size:16px; font-weight:bold;}#guesta p{ font-size:12px;}#zxly{ width:100%;}}
@media only screen and (max-width: 600px){#contact ul li{ width:98%;margin-top:2%; margin-bottom:2%;}#contact ul li .nrc .xq{ height:40px;}
@media only screen and (max-width: 450px){#contact ul li .nrc dd i{ width:60px; height:60px;font-size:24px; line-height:60px; }#contact ul li .nrc .bgf i{ font-size:150px; }}
@media only screen and (max-width: 400px){}