* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	height: 2000px;
	overflow-x: hidden;
	background-image: url(../JPG/9.jpg);
	background-size: cover;
	background-position: center;
	background-attachment: fixed;
	background-repeat: no-repeat;
	position: relative;
}

body::before {
	content: '';
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: rgba(255, 255, 255, 0.3);
	z-index: -1;
}

a {
	color: #9dbce8;
	text-decoration: none;
	transition: 0.3s;
}

a:hover {
	opacity: 0.7;
}

.logo {
	font-size: 24px;
	text-transform: uppercase;
	letter-spacing: 4px;
}

nav {
	display: flex;
	justify-content: space-around;
	align-items: center;
	background: rgba(35, 35, 46, 0.85);
	height: 8vh;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
	position: relative;
	z-index: 10;
}

.zy {
	position: right;
	padding: 40px 0;
	background: #bdd2ee;
	display: flex;
	border-radius: 200px;
	box-shadow: 0 5px 25px #9dbce8;
}

.zy li {
	list-style: none;
	text-align: center;
	display: block;
}

.zy li:not(:last-child) {
	border-right: 1px solid rgba(12, 11, 11, 0.2);
}

.zy li a {
	text-decoration: none;
	padding: 0 60px;
	display: block;
}

.zy li a .icon {
	min-width: 60px;
	height: 30px;
	text-align: center;
	margin: 0 auto;
	overflow: hidden;
}

.zy li a .icon img {
	width: 100%;
	height: 100%;
	line-height: 38px;
	font-size: 1.5em;
	transition: 0.5s;
	-webkit-text-stroke: 2px #9dbce8;
	color: transparent;
}

.zy li a .icon img:last-child {
	color: #2196f3;
	-webkit-text-stroke: 0px #bdd2ee;
	transform: translateY(-250%);
}

.zy li a:hover img {
	transform: translateY(100%);
}

.zy li a:hover img:last-child {
	transform: translateY(-100%);
}

.zy li a .text {
	position: relative;
	height: 25px;
	width: 100%;
	display: block;
	overflow: hidden;
	text-transform: uppercase;
	font-weight: 500;
}

.zy li a .text span {
	display: block;
	position: relative;
	color: #2e4b72;
	font-size: 1em;
	line-height: 20px;
	transition: 0.5s;
}

.zy li a .text span::before {
	content: attr(data-text);
	position: absolute;
	top: 100%;
	height: 100%;
	color: #2196f3;
}

.zy li a:hover .text span {
	transform: translateY(-20px);
}

@media (max-width:768px) {
	.zy {
		flex-direction: column;
		padding: 20px 30px;
		width: 300px;
	}
	.zy li a {
		display: flex;
		justify-content: center;
		gap: 10px;
		padding: 20px 0;
	}
	.zy li:not(:last-child) {
		border-right: none;
		border-bottom: 1px solid rgba(0, 0, 0, 0.2);
	}
	.zy li a .icon {
		margin: 0 auto;
	}
	.zy li a .text {
		text-align: start;
	}
}

.img {
	width: 100%;
	height: 100%;
	position: relative;
	overflow: hidden;
	background: url(../图1/主图2-1.JPG);
	background-size: cover;
	transform: scale(1);
	transition: transform 0.5s ease;
}

.box:nth-child(1n) .box-block { 
	background-image: url(../图1/背景1.jpg); 
} 

.box:nth-child(2n) .box-block { 
	background-image: url(../图1/背景.jpg); 
	background-position: 1000px 100px; 
}

.content-container {
	display: flex;
	flex-direction: column;
	align-items: center;
	width: 100%;
	margin: 30px 0;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	border-radius: 12px;
	padding: 20px;
	box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
	min-height: 250px;
	position: relative;
	background-color: rgba(255, 255, 255, 0.5);
}

.content-container::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: rgba(255, 255, 255, 0.1);
	border-radius: 12px;
	z-index: 0;
}

.content-container:hover {
	transform: scale(1.05);
	box-shadow: 0 8px 20px rgba(33, 150, 243, 0.2);
}

.content-row {
	display: flex;
	width: 100%;
	margin: 20px 0;
	position: relative;
	z-index: 1;
}

.text-section {
	flex: 1;
	padding: 20px;
	position: relative;
	z-index: 1;
}

.image-section {
	flex: 1;
	padding: 20px;
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
	z-index: 1;
}

.image-section img {
	max-width: 100%;
	height: auto;
	border-radius: 8px;
	box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

p {
	font-family: 楷体;
	font-size: 1.6rem;
	line-height: 1.4;
	margin: 0;
}
/* 导航 结束*/


/* 轮播图 */
:root {
    --primary-blue: #2196F3;
    --light-blue: #BBDEFB;
    --text-color: #ffffff;
}



.year-axis {
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    margin-bottom: 20px;
}

/* .year-marker {
    position: relative;
    color: var(--primary-blue);
    font-weight: bold;
    padding: 5px 0;
} */

.year-marker::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 15px;
    background: var(--light-blue);
}

.lunbo{
    overflow: hidden;
    border-radius: 8px;
    background: var(--primary-blue);
	padding: 20px 20px 20px 50px; 
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
	position: relative; 
}

.track {
    display: flex;
	top: 0;
	left: -1000px;
    transition: transform 0.5s ease-in-out;
	animation: slide 20s linear infinite;
	position: relative;
}

.item1 {
    min-width: 100%;
	padding: 20px 20px 20px 50px;
    color: var(--text-color);
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

.item1 {
    min-width: 100%;
    padding:  20px ;
    color: var(--text-color);
    opacity: 0.6;
    transition: opacity 0.3s ease;
	text-align: left; 
}

.item1.active {
    opacity: 1;
}

.item1 h3 {
    color: var(--text-color);
    margin-bottom: 15px;
    font-size: 18px;
}

.item1 p {
    margin: 8px 0;
    line-height: 1.5;
    font-size: 14px;
}

/* 自动轮播动画 */
@keyframes slide {
    0% { transform: translateX(0); }
    16.67% { transform: translateX(0); }
    33.33% { transform: translateX(-100%); }
    50% { transform: translateX(-100%); }
    66.67% { transform: translateX(-200%); }
    83.33% { transform: translateX(-200%); }
    100% { transform: translateX(-300%); }
}


/* 响应式设计 */
@media (max-width: 568px) {
    .carousel-item {
        font-size: 12px;
    }
    
    .year-axis {
        flex-wrap: wrap;
        justify-content: center;
		top: -10px;
    }
    
    .year-marker {
        margin: 0 10px;
    }
}
/* 横向轮播图结束 */

	
	.content-row {
		flex-direction: column;
	}
	
	.text-section, .image-section {
		width: 100%;
	}


.story-cards {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	margin: 30px 0;
}

.story-card {
	flex: 1;
	min-width: 300px;
	border-radius: 10px;
	overflow: hidden;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	background-color: #fff;
	transform: translateZ(0);
	will-change: transform, box-shadow;
	height: auto;
	display: flex;
	flex-direction: column;
}

.story-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.story-card-img {
	width: 100% !important;
	height: 200px !important;
	object-fit: cover;
	object-position: center;
	image-rendering: -webkit-optimize-contrast;
	image-rendering: crisp-edges;
	transform: translateZ(0);
	backface-visibility: hidden;
	filter: none;
	will-change: transform;
	transform-style: preserve-3d;
	transition: transform 0.3s ease;
	display: block;
	max-width: 100%;
	image-orientation: from-image;
}

.story-card:hover .story-card-img {
	transform: scale(1.03) translateZ(0);
}

.story-card-content {
	padding: 15px;
	background: #fff;
}

.story-card-title {
	color: #2e4b72;
	margin-top: 0;
	font-size: 1.2rem;
}

.story-card-text {
	color: #555;
	font-size: 0.95rem;
	line-height: 1.5;
}

@media screen and (max-width: 768px) {
	.story-cards {
		flex-direction: column;
	}
	
	.story-card {
		min-width: 100%;
	}
}

.migrant-stories {
	max-width: 1200px;
	margin: 50px auto;
	position: relative;
	background-color: rgba(255, 255, 255, 0.85);
	padding: 20px;
	border-radius: 15px;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.migrant-story-container {
	display: none;
	padding: 20px;
	background: #fff;
	border-radius: 10px;
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
	margin: 20px 0;
}

.migrant-story-container.active {
	display: flex;
	animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
	from { opacity: 0; }
	to { opacity: 1; }
}

.migrant-story-title {
	color: #2e4b72;
	font-size: 25px;
	margin-top: 0;
	border-bottom: 2px solid #2196f3;
	display: inline-block;
	padding-bottom: 5px;
}

.migrant-story-container-wrapper {
	display: flex;
	background-color: #ffffff;
	border-radius: 10px;
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
	margin: 20px 0;
	overflow: hidden;
}

.migrant-story-text-container {
	flex: 1;
	padding: 20px;
	position: relative;
}

.migrant-story-text {
	display: none;
	animation: fadeIn 0.5s ease;
}
.migrant-story-text p{
	
}

.migrant-story-text.active {
	display: block;
}

.migrant-story-carousel {
	flex: 1;
	position: relative;
	height: 400px;
}

.carousel-container {
	width: 100%;
	height: 100%;
	position: relative;
	overflow: hidden;
}

.carousel-track {
	height: 100%;
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	perspective: 1000px;
}

.main-content-wrapper:nth-of-type(2) .content-container:first-of-type {
	background-image: url("../图1/8.jpg") !important;
	background-size: cover !important;
	background-position: center !important;
	background-repeat: no-repeat !important;
	background-color: transparent !important;
	position: relative;
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3) !important;
	z-index: 1;
	transform: none !important;
	transition: box-shadow 0.3s ease;
	filter: saturate(1.2) contrast(1.1);
	padding: 25px !important;
}

.main-content-wrapper:nth-of-type(2) .content-container:first-of-type {
	background: url("../图1/8.jpg") center/cover no-repeat !important;
}

.main-content-wrapper:nth-of-type(2) .content-container:first-of-type::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(to bottom, 
		rgba(255, 255, 255, 0.05), 
		rgba(255, 255, 255, 0.1)) !important;
	border-radius: 12px;
	z-index: 0;
	pointer-events: none;
}

.main-content-wrapper:nth-of-type(2) .content-container:first-of-type .content-row {
	background-color: rgba(255, 255, 255, 0.15);
	border-radius: 8px;
	margin: 10px 0;
	padding: 20px;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
	position: relative;
	z-index: 2;
	backdrop-filter: blur(2px);
	-webkit-backdrop-filter: blur(2px);
	border: 1px solid rgba(255, 255, 255, 0.2);
}

.main-content-wrapper:nth-of-type(2) .content-container:first-of-type .text-section p {
	color: #000;
	font-weight: 600;
	text-shadow: 0 0 8px rgba(255, 255, 255, 1), 0 0 10px rgba(255, 255, 255, 0.8);
	font-size: 1.7rem;
	line-height: 1.5;
}

.carousel-card {
	position: absolute;
	width: 70%;
	height: 90%;
	transition: all 0.6s cubic-bezier(0.25, 0.1, 0.25, 1);
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
	border-radius: 10px;
	overflow: hidden;
	display: flex;
	justify-content: center;
	align-items: center;
	cursor: pointer;
}

.carousel-card:hover {
	transform: scale(1.05);
	box-shadow: 0 12px 25px rgba(0, 0, 0, 0.3);
}

.carousel-card img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.active-card {
	z-index: 3;
	transform: scale(1) translateX(0);
	opacity: 1;
}

.active-card:hover {
	transform: scale(1.05) translateX(0);
}

.prev-card {
	transform: scale(0.75) translateX(-80%);
	opacity: 0.6;
	z-index: 2;
}

.prev-card:hover {
	transform: scale(0.8) translateX(-75%);
	opacity: 0.8;
}

.next-card {
	transform: scale(0.75) translateX(80%);
	opacity: 0.6;
	z-index: 2;
}

.next-card:hover {
	transform: scale(0.8) translateX(75%);
	opacity: 0.8;
}

.hidden-card {
	transform: scale(0.7) translateX(0);
	opacity: 0;
	z-index: 1;
}

.carousel-controls {
	position: absolute;
	top: 50%;
	width: 100%;
	display: flex;
	justify-content: space-between;
	transform: translateY(-50%);
	z-index: 5;
	padding: 0 10px;
}

.carousel-btn {
	background-color: rgba(21, 65, 100, 0.7);
	color: white;
	border: none;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	font-size: 18px;
	display: flex;
	justify-content: center;
	align-items: center;
	cursor: pointer;
	transition: all 0.3s ease;
	box-shadow: 0 3px 5px rgba(0, 0, 0, 0.2);
}

.carousel-btn:hover {
	background-color: rgba(32, 91, 139, 0.9);
	transform: scale(1.1);
	box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
}

.carousel-btn:active {
	transform: scale(0.95);
}

.slider-image {
	transition: opacity 0.5s ease;
	max-width: 100%;
	height: auto;
}

@media screen and (max-width: 768px) {
	.migrant-story-container-wrapper {
		flex-direction: column;
	}
	
	.migrant-story-carousel,
	.migrant-story-text-container {
		width: 100%;
	}
}

.bottom-navigation {
	display: flex;
	justify-content: center;
	margin: 80px 0 40px;
	position: relative;
}

.bottom-navigation::before,
.bottom-navigation::after {
	content: '';
	position: absolute;
	top: 50%;
	width: 150px;
	height: 3px;
	background: linear-gradient(to right, transparent, rgba(33, 150, 243, 0.7));
	transform: translateY(-50%);
}

.bottom-navigation::before {
	right: calc(50% + 210px);
}

.bottom-navigation::after {
	left: calc(50% + 210px);
	background: linear-gradient(to left, transparent, rgba(33, 150, 243, 0.7));
}

.nav-item {
	background: linear-gradient(to bottom, rgba(255, 255, 255, 0.95), rgba(240, 247, 255, 0.95));
	padding: 25px 80px;
	border-radius: 40px;
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3), inset 0 2px 5px rgba(255, 255, 255, 0.4);
	position: relative;
	z-index: 1;
	cursor: pointer;
	transition: all 0.3s ease;
	border: 2px solid rgba(33, 150, 243, 0.4);
	transform: scale(1.15);
}

.nav-item:hover {
	transform: translateY(-7px) scale(1.18);
	box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3), inset 0 2px 7px rgba(255, 255, 255, 0.5);
	background: linear-gradient(to bottom, rgba(255, 255, 255, 0.98), rgba(233, 244, 255, 0.98));
}

.nav-title {
	font-size: 3rem;
	font-family: 楷体, KaiTi, "Microsoft YaHei", 微软雅黑;
	color: #2e4b72;
	font-weight: bold;
	position: relative;
	padding-bottom: 10px;
	letter-spacing: 6px;
	text-shadow: 0 3px 4px rgba(0, 0, 0, 0.15);
	display: inline-block;
	border-left: 5px solid #2196f3;
	border-right: 5px solid #2196f3;
	padding-left: 25px;
	padding-right: 25px;
}

.nav-title::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 5px;
	background: linear-gradient(to right, #1976d2, #64b5f6);
	border-radius: 3px;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
}

.nav-title::before {
	content: '★';
	color: #1976d2;
	margin-right: 12px;
	font-size: 2.2rem;
	vertical-align: middle;
	text-shadow: 0 2px 3px rgba(0, 0, 0, 0.2);
}

.main-content-wrapper {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

.highlight-text {
	color: #2196f3;
	font-weight: bold;
}

.horizontal-container {
    display: flex;
    flex-direction: column;
    width: 100%;
    margin: 30px 0;
    background-color: #f8fafd;
    border-radius: 12px;
    padding: 0;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.horizontal-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(33, 150, 243, 0.2);
}

.horizontal-container .image-section {
    flex: 1;
    padding: 0;
    width: 100%;
    height: 300px;
    overflow: hidden;
    display: block;
}

.horizontal-container .text-section {
    flex: 1;
    padding: 25px;
    background-color: #ffffff;
}

.horizontal-container .text-section h2 {
    font-family: 楷体;
    font-size: 2rem;
    margin-bottom: 15px;
    color: #2e4b72;
    border-left: 5px solid #2196f3;
    padding-left: 15px;
}

.horizontal-container .text-section p {
    font-family: 楷体;
    font-size: 1.4rem;
    line-height: 1.6;
    color: #333;
    text-align: justify;
}

.full-width-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.horizontal-container:hover .full-width-img {
    transform: scale(1.05);
}

@media screen and (max-width: 768px) {
    .horizontal-container {
        margin: 20px 0;
    }
    
    .horizontal-container .image-section {
        height: 200px;
    }
    
    .horizontal-container .text-section {
        padding: 15px;
    }
    
    .horizontal-container .text-section h2 {
        font-size: 1.5rem;
    }
    
    .horizontal-container .text-section p {
        font-size: 1.2rem;
    }
} 


 :root {
            --primary-blue: #2c3e50;
            --secondary-blue: #3498db;
            --hover-blue: #2980b9;
        }

        .container {
            max-width: 1000px;
            margin: 0 auto;
            padding: 20px;
            background: rgba(255, 255, 255, 0.9);
            border-radius: 15px;
            box-shadow: 0 0 20px rgba(0,0,0,0.1);
        }

        .timeline {
            display: flex;
            flex-direction: column;
            gap: 40px;
            padding: 30px;
        }

        .event {
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            border: 2px solid var(--secondary-blue);
            border-radius: 10px;
            padding: 25px;
            transition: transform 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .event:hover {
            background: linear-gradient(135deg, var(--hover-blue) 0%, var(--secondary-blue) 100%);
            color: white;
            transform: translateY(-5px);
        }

        .event::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, transparent 95%, rgba(255,255,255,0.1) 100%);
            transition: opacity 0.3s ease;
            opacity: 0;
        }

        .event:hover::before {
            opacity: 1;
        }

        .year {
            font-size: 2.5em;
            font-weight: bold;
            color: var(--secondary-blue);
            margin: 0 0 15px 0;
            text-align: center;
            position: relative;
        }

        .year::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 60%;
            height: 2px;
            background: var(--secondary-blue);
        }

        .content {
            line-height: 1.8;
            text-align: justify;
        }

        .image-container {
            width: 300px;
            height: 200px;
            background: #f0f0f0;
            margin: 20px auto;
            border-radius: 5px;
            overflow: hidden;
            position: relative;
        }

        .image-placeholder {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            color: #666;
            font-style: italic;
        }

        @media (max-width: 768px) {
            .container {
                margin: 10px;
                padding: 15px;
            }
            
            .year {
                font-size: 2em;
            }
        }

/* 历程 */
:root {
	--primary-blue: #2c3e50;
	--secondary-blue: #70b0db;
	--hover-blue: #1a4664;
}

.container {
	max-width: 1000px;
	margin: 0 auto;
	padding: 20px;
	background: rgba(255, 255, 255, 0.9);
	border-radius: 15px;
	box-shadow: 0 0 20px rgba(0,0,0,0.1);
}

.timeline {
	display: flex;
	flex-direction: column;
	gap: 40px;
	padding: 30px;
}

.event {
	background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
	border: 2px solid var(--secondary-blue);
	border-radius: 10px;
	padding: 25px;
	transition: transform 0.3s ease;
	position: relative;
	overflow: hidden;
}

.event:hover {
	background: linear-gradient(135deg, var(--hover-blue) 0%, var(--secondary-blue) 100%);
	color: white;
	transform: translateY(-5px);
}

.event::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, transparent 95%, rgba(255,255,255,0.1) 100%);
	transition: opacity 0.3s ease;
	opacity: 0;
}

.event:hover::before {
	opacity: 1;
}

.year {
	font-size: 2.5em;
	font-weight: bold;
	color: var(--secondary-blue);
	margin: 0 0 15px 0;
	text-align: center;
	position: relative;
}

.year::after {
	content: '';
	position: absolute;
	bottom: -10px;
	left: 50%;
	transform: translateX(-50%);
	width: 60%;
	height: 2px;
	background: var(--secondary-blue);
}

.content {
	line-height: 1.8;
	text-align: justify;
}

.image-container {
	width: 300px;
	height: 200px;
	background: #f0f0f0;
	margin: 20px auto;
	border-radius: 5px;
	overflow: hidden;
	position: relative;
}

.image-placeholder {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	color: #666;
	font-style: italic;
}

@media (max-width: 768px) {
	.container {
		margin: 10px;
		padding: 15px;
	}
	
	.year {
		font-size: 2em;
	}
}
/* 结束 */

.migrant-stories{
	background-color: rgba(88, 121, 146, 0.8);
}
.migrant-story-container-wrapper{
	background-color: rgba(140, 173, 199, 0.76);
}

/* 大标题 */
.title-line {
	font-size: 32px;
	color: #133f5f;
	text-align: center;
	padding: 15px 0;
	border-top: 2px solid #1d567f;;
	border-bottom: 2px solid #1d567f;;
	margin-bottom: 40px;
	font-weight: bold;
	letter-spacing: 5px;
	position: relative;
	background: linear-gradient(to right, transparent, rgba(122, 1, 1, 0.05), transparent);
  }

/* 1985 */
  .container1 {
	display: flex;
	justify-content: space-between;
	padding: 20px;
}

.box1 {
	width: 25%; /* 调整后的宽度 */
	background-color: rgba(73, 101, 133, 0.5); /* 改为蓝色背景 */
        border: 1px solid #357abd; /* 调整边框颜色以匹配蓝色背景 */
	/* background-color: #f4f4f4;
	border: 1px solid #ccc; */
	border-radius: 8px;
	padding: 20px;
	text-align: center;
	transition: all 0.3s ease; /* 添加过渡效果 */
}

.box1:hover {
	background-color: #e0e0e0; /* 悬停时改变背景颜色 */
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* 添加阴影 */
}

.box1 h3 {
	margin-top: 0;
	margin-bottom: 15px;
	font-size: 1.2em;
	font-weight: bold;
}

.box1 p {
	font-size: 1em;
	line-height: 1.6;
	text-align: left;
}
/* 结束 */

/* 2005 */
.container0 {
	display: flex;
	max-width: 1200px;
	margin: 20px auto;
	gap: 30px;
}

.sidebar0 {
	flex: 1;
	min-width: 400px;
}

.main-content0 {
	flex: 2;
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.info-card0 {
	display: flex;
	align-items: center;
	padding: 20px;
	background: #f5f5f5;
	border-radius: 8px;
	box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.mini-chart0 {
	width: 100px;
	height: 80px;
	margin-right: 25px;
	background: #fff;
	border-radius: 4px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.text-content0 {
	flex: 1;
	font-size: 0.5em;
}

.title0 {
	font-size: 1.2em;
	font-weight: bold;
	margin-bottom: 10px;
	color: #2c3e50;
}

.description0 {
	line-height: 1.6;
	color: #34495e;
}

/* 大图样式 */
.main-chart0 {
	width: 100%;
	height: 400px;
	background: #fff;
	border-radius: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.5em;
	color: #7f8c8d;
}

@media (max-width: 768px) {
	.container {
		flex-direction: column;
	}
	
	.sidebar, .main-content {
		width: 100%;
	}
}