        /* 英雄区域 */
        .hero {
            height: 861px;
            background-size: cover;
            background-position: center;
            position: relative;
            padding-top: 118px;
        }
        
        
        .hero-content {
            position: relative;
            z-index: 1;
            color: #fff;
            padding: 120px 0;
            max-width: 730px;
        }
        
        .hero-title {
            font-size: 64px;
            font-weight: 300;
            margin-bottom: 20px;
        }
        
        .hero-text {
            font-size: 20px;
            line-height: 24px;
            margin-bottom: 20px;
        }
        
        .contact-info {
            /* margin-top: 30px; */
            font-size: 20px;
        }
        
        .contact-info p {
            margin-bottom: 10px;
        }
        
        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background-color: #d8d8d8;
            color: #1e2b49;
            padding: 18px 15px;
            font-size: 16px;
            margin-top: 20px;
            transition: background-color 0.3s;
            border: none;
            cursor: pointer;
			width: 240px;
			height: 50px;
        }
        
        .btn i {
            margin-right: 8px;
        }
        
        .btn:hover {
            background-color: #1e2b49;
			color: #fff;
        }
        
        /* News Section */
        .news-section {
            padding: 80px 0;
            background-color: #fff;
        }
        
        .filter-bar {
            display: flex;
            margin-bottom: 30px;
            background-color: #fff;
            border-radius: 3px;
        }
        
        .filter-item {
            padding: 21.5px 13px 21px;
            font-size: 16px;
			line-height: 16px;
			width: 210px;
			height: 58px;
			margin-right: 15px;
            cursor: pointer;
            position: relative;
            border: solid 1px #d7d7d7;
        }
        
        .filter-item:last-of-type {
            /* border-right: 1px solid #000; */
        }
        
        .filter-item.active {
            background-color: #1a2b47;
            color: #fff;
            border-color: #1a2b47;
        }
        
        .filter-dropdown {
            padding: 21.5px 13px 21px;
            font-size: 16px;
			line-height: 16px;
			width: 200px;
			height: 58px;
			margin-right: 15px;
            cursor: pointer;
            position: relative;
            border: solid 1px #d7d7d7;
            display: flex;
            align-items: center;
        }
        
        .filter-dropdown i {
            margin-left: 5px;
        }
        
        .filter-dropdown-menu {
            position: absolute;
            top: 100%;
            left: 0;
            background-color: #fff;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            min-width: 100%;
            display: none;
        }
        
        .filter-dropdown:hover .filter-dropdown-menu {
            display: block;
            z-index: 10000;
			
        }
        
        .filter-dropdown-item {
            padding: 10px 15px;
            font-size: 14px;
            color: #666;
            border-bottom: 1px solid #eee;
        }
        
        .filter-dropdown-item:last-child {
            border-bottom: none;
        }
        
        .filter-dropdown-item:hover {
            background-color: #f5f5f5;
        }
        
        .search-bar {
            display: flex;
            margin-left: auto;
            border: 1px solid #d7d7d7;
        }
        
        .search-input {
            padding: 0 15px;
            border: none;
            outline: none;
            font-size: 14px;
            width: 430px;
        }
        
        .search-btn {
            background-color: #f5f5f5;
            border: none;
            padding: 20px 30px;
            cursor: pointer;
        }
        
        /* News Grid */
        .news-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 30px;
            margin-bottom: 60px;
            margin-top: 40px;
			border-bottom: solid 1px #d7d7d7;
			padding: 0 0 60px 0;
        }
        
        .news-card {
            display: flex;
            background-color: #fff;
            border-radius: 3px;
            overflow: hidden;
        }
        
        .news-card-img {
            width: 340px;
            height: 340px;
            object-fit: cover;
        }
        
        .news-card-content {
            padding: 0 30px;
            flex: 1;
        }
        
        .news-date {
            font-size: 16px;
            color: #999;
            margin-bottom: 10px;
        }
        
        .news-title {
            font-size: 32px;
			font-weight: 600;
            margin-bottom: 10px;
            line-height: 1.6;
        }
        
        .news-excerpt {
            font-size: 16px;
            color: #666;
            line-height: 32px;
            display: -webkit-box;
            -webkit-line-clamp: 3;
            -webkit-box-orient: vertical;
        }
        
        /* News List */
        .news-list {
            margin-bottom: 30px;
        }
        
        .news-list-item {
            display: flex;
            background-color: #fff;
            border-radius: 3px;
            overflow: hidden;
            margin-bottom: 20px;
			border-bottom: solid 1px #d7d7d7;
			padding: 0 0 60px 0;
			margin-bottom: 60px;
        }
        
        .news-list-img {
            width: 240px;
            height: 240px;
            object-fit: cover;
        }
        
        .news-list-content {
            padding: 0 130px 0 30px;
            flex: 1;
        }
        
        /* Pagination */
        .pagination {
            display: flex;
            justify-content: center;
            align-items: center;
            margin-top: 40px;
        }
        
        .page-item {
            margin: 0 5px;
        }
        
        .page-link {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 30px;
            height: 30px;
            font-size: 14px;
            color: #1a2b47;
            background-color: #fff;
        }
        
        .page-link.active {
            background-color: #1a2b47;
            color: #fff;
            border-color: #1a2b47;
        }
        
        .page-link:hover:not(.active) {
            background-color: #f5f5f5;
        }
        
        .page-prev, .page-next {
            width: auto;
            padding: 0 10px;
        }
        
        
        .back-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 40px;
            height: 40px;
            background-color: #fff;
            border-radius: 3px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #666;
            font-size: 20px;
            cursor: pointer;
            z-index: 99;
        }
        
        
        
        /* Responsive */
        @media (max-width: 992px) {
            .news-grid {
                grid-template-columns: 1fr;
            }
            
            .footer-container {
                flex-direction: column;
            }
            
            .footer-links {
                margin-top: 30px;
            }
            
            .footer-column {
                margin-left: 0;
                margin-right: 30px;
            }
            
            .footer-qrcode {
                margin-top: 30px;
            }
            
            .footer-bottom {
                flex-direction: column;
            }
            
            .footer-bottom-right {
                margin-top: 20px;
            }
        }
        
        @media (max-width: 768px) {
        /* 英雄区域 */
        .hero {
            height: 861px;
            background-size: cover;
            background-position: center;
            position: relative;
            padding-top: 118px;
        }
        
        .news-list-img {
            width: 100%;
            height: 240px;
            object-fit: cover;
        }
        
        .news-list-content {
            padding: 10px;
            flex: 1;
        }
        
        .hero-content {
            position: relative;
            z-index: 1;
            color: #fff;
            padding: 120px 0;
            max-width: 730px;
        }
        
        .hero-title {
            font-size: 32px;
            font-weight: 500;
            margin-bottom: 20px;
        }
        
        .hero-text {
            font-size: 14px;
            line-height: 30px;
            margin-bottom: 20px;
        }
        
        .contact-info {
            margin-top: 30px;
            font-size: 16px;
        }
        
        .contact-info p {
            margin-bottom: 10px;
        }
        
        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background-color: #d8d8d8;
            color: #1e2b49;
            padding: 18px 15px;
            border-radius: 3px;
            font-size: 16px;
            margin-top: 20px;
            transition: background-color 0.3s;
            border: none;
            cursor: pointer;
			width: 240px;
			height: 50px;
        }
        
        .btn i {
            margin-right: 8px;
        }
        
        .btn:hover {
            background-color: #1e2b49;
            color: #fff;
        }
		
        /* News Grid */
        .news-grid {
            display: grid;
            grid-template-columns: repeat(1, 1fr);
            gap: 30px;
            margin-bottom: 80px;
            margin-top: 80px;
			border-bottom: solid 1px #d7d7d7;
			padding: 0 0 60px 0;
        }
        
        .news-card {
            display: flex;
            background-color: #fff;
            border-radius: 3px;
            overflow: hidden;
        }
        
        .news-card-img {
            width: 340px;
            height: 340px;
            object-fit: cover;
        }
        
        .news-card-content {
            padding: 20px;
            flex: 1;
        }
        
        .news-date {
            font-size: 14px;
            color: #999;
            margin-bottom: 10px;
        }
        
        .news-title {
            font-size: 20px;
			font-weight: 500;
            margin-bottom: 10px;
            line-height: 2;
        }
        
        .news-excerpt {
            font-size: 14px;
            color: #666;
            line-height: 30px;
            display: -webkit-box;
            -webkit-line-clamp: 3;
            -webkit-box-orient: vertical;
        }
		
        .news-section {
            padding: 50px 0;
            background-color: #fff;
        }
        
        .filter-bar {
            display: flex;
            margin-bottom: 30px;
            background-color: #fff;
            border-radius: 3px;
        }
        
        .filter-item {
            padding: 10px;
            font-size: 14px;
			line-height: 16px;
			width: 32%;
			height: 45px;
			margin-right: 5px;
            cursor: pointer;
            position: relative;
            border: solid 1px #d7d7d7;
			margin-bottom: 10px;
        }
        
        .filter-item:last-of-type {
            border-right: 1px solid #000;
        }
        
        .filter-item.active {
            background-color: #1a2b47;
            color: #fff;
            border-color: #1a2b47;
        }
        
        .filter-dropdown {
            padding: 10px;
            font-size: 14px;
			line-height: 16px;
			width: 32%;
			height: 45px;
			margin-right: 15px;
            cursor: pointer;
            position: relative;
            border: solid 1px #d7d7d7;
            display: flex;
            align-items: center;
        }
        
        .filter-dropdown i {
            margin-left: 5px;
        }
        
        .filter-dropdown-menu {
            position: absolute;
            top: 100%;
            left: 0;
            background-color: #fff;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            min-width: 150px;
            display: none;
            z-index: 10000;
            border: 1px solid #000;
        }
        
        .filter-dropdown:hover .filter-dropdown-menu {
            display: block;
			z-index: 1000000;
        }
        
        .filter-dropdown-item {
            padding: 10px 15px;
            font-size: 14px;
            color: #666;
            border-bottom: 1px solid #eee;
        }
        
        .filter-dropdown-item:last-child {
            border-bottom: none;
        }
        
        .filter-dropdown-item:hover {
            background-color: #f5f5f5;
        }
        
        .search-bar {
            display: flex;
            margin-left: auto;
            border: 1px solid #d7d7d7;
        }
        
        .search-input {
            padding: 10px 15px;
            border: none;
            outline: none;
            font-size: 14px;
            width: 366px;
        }
        
        .search-btn {
            background-color: #d8d8d8;
            border: none;
            padding: 10px 30px;
            cursor: pointer;
        }
            .header-container {
                flex-wrap: wrap;
            }
            
            .nav-menu {
                order: 3;
                width: 100%;
                margin-top: 15px;
            }
            
            .nav-list {
                flex-wrap: wrap;
            }
            
            
            .news-card {
                flex-direction: column;
            }
            
            .news-card-img {
                width: 100%;
                height: 200px;
            }
            
            .footer-links {
                flex-wrap: wrap;
            }
            
            .footer-contact {
                flex-direction: column;
                align-items: flex-start;
            }
            
            .footer-contact-email {
                margin-left: 0;
                margin-top: 5px;
            }
            .footer-column {
                width: 50%;
            }
			
        }
        
        @media (max-width: 576px) {
            .filter-bar {
                flex-wrap: wrap;
            }
            .footer-column {
                width: 43%;
            }
			.footer-bottom1 {
				display: block;
			}
			.footer-bottom {
				display: none;
			}
            
            .search-bar {
                width: 100%;
                margin-top: 20px;
			margin-right:10px;
				
            }
            
            .search-input {
                flex: 1;
            }
            
            .news-list-item {
                flex-direction: column;
            }
            
            .news-list-img {
                width: 100%;
                height: 200px;
            }
        }
