* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    line-height: 1.8;
    color: #2c3e50;
    height: 100%;
}

body .kxk-qsjzc {
	background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

.edu-xkjyjs .banner-1 {
/* 	height: 300px; */
}

a:hover {
	color: #fff;
    text-decoration: underline;
}

.header {
    background: #4acfa0;
    color: white;
    padding: 60px 0;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.header h1 {
    font-size: 48px;
    font-weight: 300;
    margin-bottom: 10px;
    letter-spacing: 2px;
}

.header p {
    font-size: 20px;
    opacity: 0.9;
    font-weight: 300;
}

.banner {
    width: 100%;
    height: 300px;
    background: linear-gradient(rgba(45, 90, 61, 0.8), rgba(74, 124, 89, 0.8)), 
                url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 300"><rect fill="%234a7c59" width="1200" height="300"/><path fill="%232d5a3d" d="M0 150L50 125L100 150L150 125L200 150L250 125L300 150L350 125L400 150L450 125L500 150L550 125L600 150L650 125L700 150L750 125L800 150L850 125L900 150L950 125L1000 150L1050 125L1100 150L1150 125L1200 150V300H0V150Z"/></svg>');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 40px;
}

.banner-content {
    text-align: center;
    color: white;
}

.banner-content h2 {
    font-size: 36px;
    margin-bottom: 10px;
    font-weight: 300;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.section {
    background: white;
    margin-bottom: 40px;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    overflow: hidden;
}

#regional-policy {
	margin-bottom: 0;
}

.section-header {
    background: #4acfa0;
    color: white;
    padding: 16px;
    position: relative;
}

.section-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="10" cy="10" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="30" cy="30" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="10" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="70" cy="40" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="90" cy="20" r="1" fill="rgba(255,255,255,0.1)"/></svg>');
    opacity: 0.3;
}

.section-header h2 {
    font-size: 32px;
    font-weight: 400;
    position: relative;
    z-index: 1;
}

.section-content {
    padding: 0 30px;
}

.level-1 {
    font-size: 24px;
    color: #35cc99;
    margin: 30px 0 15px 0;
    padding: 0 0 16px;
    border-bottom: 2px solid #4a7c59;
    font-weight: 500;
}

.level-2 {
    font-size: 20px;
    color: #4a7c59;
    margin: 25px 0 10px 0;
    padding-left: 20px;
    position: relative;
}

.level-2::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 20px;
    background: #4acfa0;
    border-radius: 2px;
}

.content-text {
    font-size: 16px;
    color: #555;
    margin-bottom: 15px;
    padding-left: 24px;
}

.highlight-box {
    background: linear-gradient(135deg, rgba(74, 124, 89, 0.1), rgba(45, 90, 61, 0.1));
    border-left: 4px solid #4a7c59;
    padding: 20px;
    margin: 20px 0;
    border-radius: 5px;
}

.table-container {
    overflow-x: auto;
    margin: 20px 0;
}

table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

th {
    background: #4acfa0;
    color: white;
    padding: 15px;
    text-align: left;
    font-weight: 500;
}

.table-container th,
.table-container td {
    padding: 12px 15px;
    border-bottom: 1px solid #eee;
}

tr:hover {
    background: rgba(74, 124, 89, 0.05);
}

.policy-item {
    background: linear-gradient(135deg, rgba(74, 124, 89, 0.05), rgba(45, 90, 61, 0.05));
    padding: 20px;
    margin: 24px 0 0;
    border-radius: 10px;
    border-left: 4px solid #4acfa0;
}

.policy-title {
    font-size: 18px;
    color: #35cc99;
    font-weight: 600;
    margin-bottom: 10px;
}

.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #4acfa0;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(74, 124, 89, 0.3);
}

.back-to-top.show {
    opacity: 1;
}

.back-to-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 30px rgba(74, 124, 89, 0.4);
}

.kxk-qsjzc .policy-item {
    position: relative;
}

.kxk-qsjzc .policy-title,
.kxk-qsjzc .content-desc,
.kxk-qsjzc .policy-item-content {
	width: calc(100% - 130px);
}

.kxk-qsjzc .qr-code {
    width: 120px;
    height: 120px;
    position: absolute;
    top: 16px;
    right: 30px;
}

.kxk-qsjzc #regional-policy .policy-item {
    display: flex;
}

.kxk-qsjzc #regional-policy .qr-code {
	position: relative;
    top: 0;
    right: 0;
}

body .edu-xkjyjs {
	padding-bottom: 0;
}

@media (max-width: 768px) {
    .header h1 {
        font-size: 32px;
    }
    
    .section {
    	margin-bottom: 16px;
    }
    
    .nav-container {
        gap: 15px;
    }
    
    .nav-item {
        padding: 10px 20px;
        font-size: 14px;
    }
    
    .section-content {
        padding: 16px;
    }
    
    .level-1 {
        font-size: 20px;
    }
    
    .level-2 {
        font-size: 18px;
    }
    
    .table-container th, .table-container td {
    	padding: 8px 4px;
    	min-width: 66px;
    }
    
     .kxk-qsjzc .highlight-box,
     .kxk-qsjzc .policy-item {
    	padding: 16px;
        border: none;
    }
    
    .kxk-qsjzc #education-policy .policy-item,
    .kxk-qsjzc #national-policy .policy-item {
    	padding-bottom: 130px;
    }
    
    .kxk-qsjzc .content-text {
    	padding-left: 0;
    }
    
    .kxk-qsjzc #education-policy .qr-code,
    .kxk-qsjzc #national-policy .qr-code {
    	top: calc(100% - 130px);
    	right: 50%;
    	transform: translateX(50%);
    }
    
    .kxk-qsjzc .policy-title,
	.kxk-qsjzc .content-desc,
	.kxk-qsjzc .policy-item-content {
		width: 100%;
	}
    
    .kxk-qsjzc #regional-policy .policy-item {
    	flex-direction: column;
	}
	
	.kxk-qsjzc #regional-policy .qr-code {
    	margin: 0 auto;
	}
}