        /* Hero Section */
        .hero {
            height: 450px;
			background-image: url('/template/pc/image/sb.png');
            background-size: cover;
            background-position: center;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(74, 91, 118, 0.7);
        }
        .search-container {
            position: relative;
            z-index: 1;
            width: 100%;
            max-width: 750px;
			margin: 100px 1443px 0px 5px;
        }
        
        .search-input {
            width: 100%;
            padding: 24px;
            border: none;
            outline: none;
            font-size: 14px;
        }
        
        .search-btn {
            position: absolute;
            right: 0;
            top: 0;
            height: 100%;
            width: 80px;
            background-color: #e6e6e6;
            border: none;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        
        /* Results Section */
        .results-section {
            padding: 40px 0;
        }
        
        .results-title {
            font-size: 48px;
            font-weight: 500;
            margin-bottom: 20px;
        }
        
        .filter-tabs {
            display: flex;
            margin-bottom: 60px;
			padding-bottom: 60px;
            border-bottom: 1px solid #eee;
        }
        
        .filter-tab {
            padding: 14px 20px;
			width: 210px;
			text-align: center;
            font-size: 16px;
            cursor: pointer;
            background-color: #d8d8d8;
            margin-right: 30px;
        }
        
        .filter-tab.active {
            background-color: #2c3e50;
            color: #fff;
        }
        
        .article-list {
            margin-bottom: 40px;
        }
        
        .article-item {
            display: flex;
            margin-bottom: 60px;
            padding-bottom: 60px;
            border-bottom: 1px solid #eee;
        }
        
        .article-img {
            width: 240px;
            height: 240px;
            object-fit: cover;
            margin-right: 20px;
        }
        
        .article-content {
            flex: 1;
        }
        
        .article-date {
            font-size: 16px;
            color: #999;
            margin-bottom: 5px;
        }
        
        .article-title {
            font-size: 30px;
            font-weight: 500;
			line-height: 2;
            margin-bottom: 10px;
            color: #333;
        }
        
        .article-title.red {
            color: #a83232;
        }
        
        .article-text {
            font-size: 18px;
            color: #666;
            line-height: 2;
        }
        
        /* 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;
            border-radius: 3px;
            font-size: 14px;
            color: #666;
            background-color: #fff;
            border: 1px solid #ddd;
        }
        
        .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;
        }
        
        /* Related Section */
        .related-section {
            padding: 40px 0;
            background-color: #f9f9f9;
        }
        
        .related-title {
            font-size: 32px;
            font-weight: 500;
            margin-bottom: 30px;
            position: relative;
        }
        
        .related-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 30px;
        }
        
        .related-card {
            display: flex;
            align-items: flex-start;
        }
        
        .related-card-img {
            width: 270px;
            height: 165px;
            object-fit: cover;
            margin-right: 15px;
        }
        
        .related-card-content {
            flex: 1;
        }
        
        .related-card-date {
            font-size: 16px;
            color: #999;
            margin-bottom: 5px;
        }
        
        .related-card-title {
            font-size: 30px;
            font-weight: 400;
            line-height: 2;
            color: #333;
        }
        
        .related-card-title.red {
            color: #a83232;
        }
        

        
        /* Responsive */
        @media (max-width: 992px) {
            .related-grid {
                grid-template-columns: 1fr;
            }
            
            .footer-container {
                flex-direction: column;
            }
            
            .footer-links {
                margin-top: 30px;
            }
            
            .footer-column {
                margin-left: 0;
            }
            
            .footer-qrcode {
                margin-top: 30px;
            }
        }
        
        @media (max-width: 768px) {
        /* Hero Section */
        .hero {
            height: 350px;
			background-image: url('template/pc/image/sb.png');
            background-size: cover;
            background-position: center;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            background-color: rgba(74, 91, 118, 0.7);
        }
        .search-container {
            position: relative;
            z-index: 1;
            max-width: 100%;
			margin: 100px 5px 0;
			align-items: center;
        }
        
        .search-input {
            width: 300px;
            padding: 10px;
            border: none;
            outline: none;
            font-size: 12px;
        }
        
        .search-btn {
            position: absolute;
            right: 0;
            top: 0;
            height: 100%;
            width: 50px;
            background-color: #e6e6e6;
            border: none;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        
        /* Results Section */
        .results-section {
            padding: 40px 0;
        }
        
        .results-title {
            font-size: 18px;
            font-weight: normal;
            margin-bottom: 20px;
        }
        
        .filter-tabs {
            display: flex;
            margin-bottom: 30px;
			padding-bottom: 30px;
            border-bottom: 1px solid #eee;
        }
        
        .filter-tab {
            padding: 10px 5px;
			width: 30%;
			text-align: center;
            font-size: 14px;
            cursor: pointer;
            background-color: #d8d8d8;
            margin-right: 10px;
        }
        
        .filter-tab.active {
            background-color: #2c3e50;
            color: #fff;
        }
        
        .article-list {
            margin-bottom: 40px;
        }
        
        .article-item {
            display: flex;
            margin-bottom: 30px;
            padding-bottom: 30px;
            border-bottom: 1px solid #eee;
        }
        
        .article-img {
            width: 100%;
            height: 240px;
            object-fit: cover;
            margin-right: 20px;
        }
        
        .article-content {
            flex: 1;
        }
        
        .article-date {
            font-size: 12px;
            color: #999;
            margin-bottom: 5px;
        }
        
        .article-title {
            font-size: 18px;
            font-weight: 500;
			line-height: 2;
            margin-bottom: 10px;
            color: #333;
        }
        
        .article-title.red {
            color: #a83232;
        }
        
        .article-text {
            font-size: 14px;
            color: #666;
            line-height: 2;
        }
        /* Related Section */
        .related-section {
            padding: 40px 0;
            background-color: #f9f9f9;
        }
        
        .related-title {
            font-size: 24px;
            font-weight: 500;
            margin-bottom: 30px;
            position: relative;
        }
        
        .related-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 30px;
        }
        
        .related-card {
            display: flex;
            align-items: flex-start;
        }
        
        .related-card-img {
            width: 100%;
            height: 165px;
            object-fit: cover;
            margin-right: 15px;
        }
        
        .related-card-content {
            flex: 1;
        }
        
        .related-card-date {
            font-size: 12px;
            color: #999;
            margin-bottom: 5px;
        }
        
        .related-card-title {
            font-size: 18px;
            font-weight: 400;
            line-height: 2;
            color: #333;
        }
        
        .related-card-title.red {
            color: #a83232;
        }
		
            .header-container {
                flex-wrap: wrap;
            }
            
            .nav-menu {
                order: 3;
                width: 100%;
                margin-top: 15px;
            }
            
            .nav-list {
                flex-wrap: wrap;
            }
            
            .article-item {
                flex-direction: column;
            }
            
            .article-img {
                width: 100%;
                height: 200px;
                margin-right: 0;
                margin-bottom: 15px;
            }
            
            .related-card {
                flex-direction: column;
            }
            
            .related-card-img {
                width: 100%;
                height: 150px;
                margin-right: 0;
                margin-bottom: 10px;
            }
        }
        
        @media (max-width: 576px) {
            .filter-tabs {
                flex-wrap: wrap;
            }
            .footer-column {
                width: 50%;
            }
            
            .filter-tab {
                margin-bottom: 5px;
            }
        }
