/*=======================footer=======================*/
.dropdown {
    position: relative;
    display: inline-block;
}
.dropbtn {
    color: #fff;
}
 
.dropdown-content {
    display: none;
    background-color: rgba(255, 255, 255, 0.1);
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
    overflow-y: auto;
    max-height: 150px;
}
 
.dropdown-content a {
    color: #fff;
    padding: 8px 12px;
    text-decoration: none;
    display: block;
}
 
/*.dropdown-content a:hover {background-color: #f1f1f1}*/
 
.dropdown:hover .dropdown-content {display: block;}


@media (max-width: 768px) {
    .dropdown-content {
        display: block;
    }
}

.down-arrow {
	position: relative;
	display: inline-block;
	padding: 0 22px 0 0;
	/*background: #2c3e50;
	color: white;*/
	color: #bbbbbb;
	border-radius: 4px;
	cursor: pointer;
	transition: all 0.3s ease;
	font-weight: 500;
	height: 36px;
	line-height: 36px;
	text-align: center;
}
	
.down-arrow.arrow-clip::after {
	content: "";
	position: absolute;
	right: 8px;
	top: 50%;
	transform: translateY(-50%);
	width: 10px;
	height: 10px;
	clip-path: polygon(50% 100%, 0 0, 100% 0);
	background: white;
}

/*=======================关于我们=======================*/

/* 模态框样式 */
.modal-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.92);
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 1000;
	opacity: 0;
	visibility: hidden;
	transition: all 0.4s ease-out;
}

.modal-overlay.active {
	opacity: 1;
	visibility: visible;
}

.modal-content {
	position: relative;
	width: 90%;
	max-width: 900px;
	background: rgba(255, 255, 255, 0.96);
	border-radius: 15px;
	box-shadow: 0 25px 80px rgba(0, 0, 0, 0.5);
	overflow: hidden;
	transform: scale(0.9);
	transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.modal-overlay.active .modal-content {
	transform: scale(1);
}

.modal-title {
	background: linear-gradient(90deg, #1a4f8e, #3498db);
	color: white;
	padding: 20px 25px;
	font-size: 1.5rem;
	font-weight: 500;
	text-align: center;
}

.modal-img {
	display: block;
	width: 100%;
	max-height: 70vh;
	object-fit: contain;
	padding: 30px;
}

.close-btn {
	position: absolute;
	top: 15px;
	right: 20px;
	width: 45px;
	height: 45px;
	background: white;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
	transition: all 0.3s;
}

.close-btn:hover {
	transform: rotate(90deg);
	background: #ff5252;
	color: white;
}

.close-btn::before, 
.close-btn::after {
	content: '';
	position: absolute;
	width: 22px;
	height: 2px;
	background: #1a4f8e;
}

.close-btn::before {
	transform: rotate(45deg);
}

.close-btn::after {
	transform: rotate(-45deg);
}

.close-btn:hover::before,
.close-btn:hover::after {
	background: white;
}

/*=======================search=======================*/

.fsous{
    margin: 0 auto;
    overflow: hidden;
}
.fsous h1{
    font-weight: normal;
    font-size: 0.3rem;
    color: #222;
    float: left;
}
.fsous .bt{
    font-size: 0.2rem;
    color: #222;
    float: left;
    margin-left: 40px;
    margin-top: 10px;
}
.fsous .bt span{
    color: #2f6c4a;
}
.fsous .yl{
    overflow: hidden;
    margin-top: 0.6rem;
}
.fsousa{
    border-bottom: 1px solid #eeeeee;
    box-sizing: border-box;
    padding: 30px 0;
    overflow: hidden;
}
.fsousa a{
    font-size: 0.2rem;
    color: #222;
    display: block;
    margin-bottom: 10px;
}
.fsousa p{
    text-indent: 2em;
    font-size: 0.18rem;
    color: #666666;
    line-height: 1.7;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    width: 100%;
    overflow: hidden;
}
@media screen and (max-width: 1044px) {
  .zhong{
     padding: 12px;
  }
}


/*=======================首页=======================*/

.stats-container {
		display: flex;
		justify-content: center;
		width: 100%;
		position: absolute;
		bottom: 130px;
	}
	
	.compact-stats {
		display: flex;
		justify-content: space-between;
		width: 100%;
		max-width: 1400px; /* 减少容器宽度使内容更紧凑 */
	}
	
	.stat-item {
		position: relative;
		flex: 1;
		text-align: center;
		min-width: 0; 
		z-index: 2;
	}
	
	/* 分隔线样式 */
	.stat-item + .stat-item:before {
		content: "";
		position: absolute;
		left: -7.5px; 
		top: 50%;
		transform: translateY(-50%);
		height: 70%;
		width: 2px;
		background: linear-gradient(to bottom, 
					transparent 0%, 
					rgba(255, 255, 255, 0.6) 25%, 
					rgba(255, 255, 255, 0.6) 75%, 
					transparent 100%);
	}
	
	.stat-value {
		font-size: 90px; 
		font-weight: 600;
		color: white;
		text-shadow: 0 2px 8px rgb(0 0 0 / 70%);
		letter-spacing: -1px;
	}
	
	.stat-title {
		font-size: 22px;
		font-weight: 500;
		text-transform: uppercase;
		letter-spacing: 0.8px;
		color: #fff;
		text-shadow: 0 2px 8px rgb(0 0 0 / 60%);
	}
	
	/* 响应式设计 */
	@media screen and (max-width: 900px) {
		.stats-container {
			position: absolute;
			bottom: 35px;
		}
		
		.compact-stats {
			max-width: 70%;
		}
		
		.stat-item {
			width: 100%;
		}
	}
	
	@media screen and (max-width: 600px) {
		.stat-value {
			font-size: 18px;
			margin-top: -4px;
		}
		
		.stat-title {
			font-size: 6px;
		}
	}