*{ font-family:Arial;}
ul , li{padding:0px; margin:0px; list-style:none;}
body {color: #333;	cursor: default;padding:0px; margin:0px; background: #fff; font-size:14px;
      overflow-x:hidden;}
.page_body{ padding-top:37px;}
.clear {clear: both;padding: 0px;margin: 0px;height: 0px;}
a {	text-decoration: none;	cursor: pointer;	color: #333; font-size:14px;
	transition: all 0.4s; font-family:Arial;
}
a:hover {color: #d52123;}
.nowrap{display:block; white-space: nowrap; overflow: hidden; text-overflow: ellipsis;}
.hoverbig{transition: all 0.2s;}
.hoverbig:hover{transform: scale(1.05);}


 :root {
            --primary-blue: #0A3D62;
            --secondary-blue: #1E88E5;
            --light-blue: #E3F2FD;
            --dark-blue: #021B37;
            --gray-light: #F5F7FA;
            --gray-medium: #E4E7ED;
        }
        
        body {
            font-family: 'Segoe UI', 'Arial', sans-serif;
            color: #333;
            background-color: #f9f9f9;
        }
        
        .navbar {
            background-color: var(--primary-blue);
            border-bottom: 3px solid var(--secondary-blue);
            transition: all 0.3s ease;
            margin-bottom:0px;
        }
        
        .navbar-brand, .navbar-nav>li>a {
            color: white;
            font-size:16px;            
            transition: all 0.3s ease;
        }
        
        .navbar-brand:hover, .navbar-nav>li>a:hover {
            color: var(--light-blue);
        }
        
        .navbar-brand {
            font-size: 22px;
        }
        .navbar-nav li a{color:#fff !important;}
        .navbar-nav li.dropdown .dropdown-menu a{color:#333 !important;}
        
        .nav-top{margin-top:15px; margin-bottom:15px;}
        .nav-top b{color:#0a3d62; font-size:36px;}
        
        .hero-section {
            background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), 
                        url('../Images/zhbanner.jpg') no-repeat center center fixed;
            background-size: cover;
            color: white;
            min-height: 500px;
            display: flex;
            align-items: center;
        }
        
        .hero-content {
            max-width: 900px;
        }
        
        .section-title {
            color: var(--primary-blue);
            position: relative;
            padding-bottom: 15px;
            margin-bottom: 30px;
            font-size:36px; font-family:'Arial Black';
        }
        
        .section-title:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 60px;
            height: 3px;
            background-color: var(--secondary-blue);
        }
        
        .card {
            border: 1px solid var(--gray-medium);
            border-radius: 8px;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
        }
        
        .card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
            border-color: var(--secondary-blue);
        }
        
        .card-primary {
            border-top: 4px solid var(--secondary-blue);
            min-height:350px; background:#fff; padding-top:30px; margin-bottom:30px;
        }
        .card-text{line-height:26px; margin-top:30px;}
        
        .card-icon {
            font-size: 48px;
            color: var(--secondary-blue);
            margin-bottom: 20px;
        }
        .card-body{ padding:20px; min-height:270px;}
        .card-body h4{margin-top:20px;}
        .card-body h4 a{ color: var(--primary-blue); font-size:16px; font-weight:bold;}
        
        .process-step {
            position: relative;
            padding-left: 50px;
            margin-bottom: 30px;
        }
        
        .process-step:before {
            content: '';
            position: absolute;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
            width: 30px;
            height: 30px;
            border-radius: 50%;
            background-color: var(--secondary-blue);
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            font-size: 16px;
        }
        
        .step-1:before { content: '1'; }
        .step-2:before { content: '2'; }
        .step-3:before { content: '3'; }
        .step-4:before { content: '4'; }
        
        .news-item {
            margin-bottom: 30px;
            padding-bottom: 20px;
            border-bottom: 1px solid var(--gray-medium);
        }
        
        .news-item:last-child {
            border-bottom: none;
            padding-bottom: 0;
        }
        
        .news-date {
            color: var(--secondary-blue);
            font-weight: 600;
            margin-bottom: 10px;
        }
        .news-item h4 a{ font-size:16px; font-weight:bold;}
        
        .carousel-item {
            height: 400px;
        }
        
        .carousel-caption {
            background-color: rgba(0, 0, 0, 0.5);
            padding: 20px;
            border-radius: 8px;
        }
        
        .footer {
            background-color: var(--dark-blue);
            color: white;
        }
        
        .footer a {
            color: white;
            transition: color 0.3s ease;
        }
        
        .footer a:hover {
            color: var(--light-blue);
            text-decoration: none;
        }
        
        .social-icon {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background-color: rgba(255, 255, 255, 0.1);
            color: white;
            margin-right: 10px;
            transition: all 0.3s ease;
        }
        
        .social-icon:hover {
            background-color: var(--secondary-blue);
            transform: translateY(-3px);
        }
        
        .btn-primary {
            background-color: var(--secondary-blue);
            border-color: var(--secondary-blue);
            transition: all 0.3s ease;
        }
        
        .btn-primary:hover {
            background-color: #0D61B5;
            border-color: #0D61B5;
            transform: translateY(-2px);
        }
        
        .section-padding h3{ font-size:20px; font-weight:bold;}
        .section-padding .absintro{ font-size:16px; line-height:24px;}
        .list-unstyled{ font-size:16px; line-height:26px;}
        
        .about-sidebar {
    background-color: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 4px;
    padding: 20px;
    margin-bottom: 30px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

.sidebar-title {
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #e9ecef;
}

.sidebar-title h3 {
    color: #007bff;
    margin-top: 0;
    font-size: 1.5rem;
}

.about-subnav {
    margin-bottom: 0;
}

.about-subnav li {
    margin-bottom: 5px;
}

.about-subnav li a {
    padding: 8px 12px;
    border-radius: 4px;
    transition: all 0.3s ease;
    color: #495057;
    font-size: 16px;
}

.about-subnav li a:hover, 
.about-subnav li a:focus {
    background-color: #e9ecef;
    color: #007bff;
    text-decoration: none;
    padding-left: 15px;
}

.about-subnav li.active a {
    background-color: #007bff;
    color: white;
    font-weight: 500;
}

.about-content {
    padding: 0 20px;
}

.about-body {
    background-color: white;
    border: 1px solid #e9ecef;
    border-radius: 4px;
    padding: 30px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

.art_list{}
.art_list h2 a{color:var(--primary-blue); font-size:18px; font-weight:bold;}

.text_container{ font-size:16px; line-height:25px;}
        
        @media (max-width: 768px) {
            .hero-section {
                min-height: 400px;
            }
            
            .carousel-item {
                height: 250px;
            }
            
            .process-step {
                padding-left: 40px;
            }
            
            .process-step:before {
                width: 25px;
                height: 25px;
                font-size: 14px;
            }
            
             .about-sidebar {
        margin-bottom: 30px;
    }
    
    .about-content {
        padding: 0;
    }
            
            
            
        }